:PROPERTIES: :ID: 20210801T064905.611874 :END: #+TITLE:REST API testing land #+AUTHOR:Chris Cochrun In this document, I'm testing and documenting how to work with the REST APIs we use at TFC for our DMAPP. * Seatable Let's test to make sure that the rest API is working. #+begin_src restclient GET https://table.tfcconnection.org/api2/ping/ #+end_src #+RESULTS: #+BEGIN_SRC js "pong" // GET https://table.tfcconnection.org/api2/ping/ // HTTP/1.1 200 OK // Allow: GET, HEAD, OPTIONS // Content-Language: en // Content-Length: 6 // Content-Type: application/json // Date: Wed, 23 Jun 2021 20:01:52 GMT // Server: Caddy // Server: nginx/1.18.0 // Vary: Accept, Accept-Language, Cookie // Request duration: 0.335206s #+END_SRC Now let's try to ping with our token. #+begin_src restclient POST https://table.tfcconnection.org/api2/auth-token/ { "username": "chris@tfcconnection.org", "password": "yiughei4Ei0deithie_Ngeu6aizu", } #+end_src #+RESULTS: #+BEGIN_SRC js { "detail": "Unsupported media type \"\" in request." } // POST https://table.tfcconnection.org/api2/auth-token/ // HTTP/1.1 415 Unsupported Media Type // Allow: POST, OPTIONS // Content-Language: en // Content-Length: 52 // Content-Type: application/json // Date: Tue, 12 Oct 2021 10:00:34 GMT // Server: Caddy // Server: nginx/1.20.1 // Vary: Accept-Language, Cookie // Request duration: 0.238521s #+END_SRC Here is the token 79466f33ae406153f537aab1194ab5f324760a2e #+begin_src restclient GET https://table.tfcconnection.org/api/v2.1/dtable/app-access-token/ Authorization: Token 79466f33ae406153f537aab1194ab5f324760a2e Accept: application/json; charset=utf-8; indent=4 #+end_src ** Events Website This token is for the website to access the Events Base #+begin_src restclient GET https://table.tfcconnection.org/api/v2.1/dtable/app-access-token/ Authorization: Token 260030d49704646d74e017ca212d0f9d6494e400 Accept: application/json; charset=utf-8; indent=4 #+end_src #+RESULTS: #+BEGIN_SRC js { "app_name": "website", "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MzIwODAyNzgsImR0YWJsZV91dWlkIjoiYmNlYjU2NTItZTIzNC00MzBhLTlhZTItZTc3MWZmYjJjODAyIiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IndlYnNpdGUifQ.l3mAQ65JvsNWhAIft4_6BmVfUNMWWa1ufv4bwj6nXS4", "dtable_uuid": "bceb5652-e234-430a-9ae2-e771ffb2c802", "dtable_server": "https://table.tfcconnection.org/dtable-server/", "dtable_socket": "https://table.tfcconnection.org/", "workspace_id": 3, "dtable_name": "Events" } // GET https://table.tfcconnection.org/api/v2.1/dtable/app-access-token/ // HTTP/1.1 200 OK // Allow: GET, HEAD, OPTIONS // Content-Language: en // Content-Type: application/json // Date: Thu, 16 Sep 2021 19:37:58 GMT // Server: Caddy // Server: nginx/1.20.1 // Vary: Accept, Accept-Language, Cookie // Content-Length: 539 // Request duration: 0.129425s #+END_SRC https://n8n.tfcconnection.org/webhook-test/event-calendar Let's send a request here on event changes... #+begin_src restclient :results value :wrap SRC js #+end_src #+BEGIN_SRC js { "events": [ { "id": 14848, "global_id": "www.tfcconnection.org?id=14848", "global_id_lineage": [ "www.tfcconnection.org?id=14848" ], "author": "5", "status": "publish", "date": "2021-09-16 15:13:09", "date_utc": "2021-09-16 20:13:09", "modified": "2021-09-16 15:13:09", "modified_utc": "2021-09-16 20:13:09", "url": "https://www.tfcconnection.org/event/test/", "rest_url": "https://www.tfcconnection.org/wp-json/tribe/events/v1/events/14848", "title": "test", "description": "", "excerpt": "", "slug": "test", "image": false, "all_day": false, "start_date": "2021-09-16 08:00:00", "start_date_details": { "year": "2021", "month": "09", "day": "16", "hour": "08", "minutes": "00", "seconds": "00" }, "end_date": "2021-09-16 17:00:00", "end_date_details": { "year": "2021", "month": "09", "day": "16", "hour": "17", "minutes": "00", "seconds": "00" }, "utc_start_date": "2021-09-16 13:00:00", "utc_start_date_details": { "year": "2021", "month": "09", "day": "16", "hour": "13", "minutes": "00", "seconds": "00" }, "utc_end_date": "2021-09-16 22:00:00", "utc_end_date_details": { "year": "2021", "month": "09", "day": "16", "hour": "22", "minutes": "00", "seconds": "00" }, "timezone": "America/Chicago", "timezone_abbr": "CDT", "cost": "", "cost_details": { "currency_symbol": "", "currency_position": "prefix", "values": [] }, "website": "", "show_map": true, "show_map_link": true, "hide_from_listings": false, "sticky": false, "featured": false, "categories": [], "tags": [], "venue": [], "organizer": [] } ], "rest_url": "https://www.tfcconnection.org/wp-json/tribe/events/v1/events/?page=1&per_page=10&start_date=2021-09-15 00:00:00&end_date=2023-09-16 23:59:59&status=publish", "total": 1, "total_pages": 1 } #+end_src #+begin_src restclient :results value :wrap SRC js GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/bceb5652-e234-430a-9ae2-e771ffb2c802/rows/?table_name=Events Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MzIwODAyNzgsImR0YWJsZV91dWlkIjoiYmNlYjU2NTItZTIzNC00MzBhLTlhZTItZTc3MWZmYjJjODAyIiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IndlYnNpdGUifQ.l3mAQ65JvsNWhAIft4_6BmVfUNMWWa1ufv4bwj6nXS4 Accept: application/json; charset=utf-8; indent=4 #+end_src #+RESULTS: #+begin_SRC js { "rows": [ { "_id": "PIUAANyOTsyNpJeqZDChVA", "_mtime": "2021-09-09T16:07:49.247+00:00", "_ctime": "2021-08-27T15:55:09.376+00:00", "Event": "See You At the Pole", "Description": "See you at the pole is a student led prayer event that happens on the last Wednesday of September before school.\n\n\n", "Start Time": "2021-09-22 07:00", "End Time": "2021-09-22 08:00", "Staff": [ "c3c43ec48b8541f18b9f611505e07465@auth.local" ], "Group": "All", "Students": [] } ] } #+end_SRC ** DTABLE-SERVER The dtable-server api will get us the tables and rows and information of what's in Seatable. Now that we have an access token, let's extract that info. #+begin_src restclient :results value :wrap SRC js GET https://table.tfcconnection.org/dtable-server/dtables/02bcc337-2b09-42c6-ae75-310599e710c6 Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjUxNzU4NDMsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.WKWiQ2Q3vZprjHXNphAlm09u9kQ_SpMrBQ763vb7J58 Accept: application/json; charset=utf-8; indent=4 #+end_src #+RESULTS: #+begin_SRC js { "tables": [ { "is_header_locked": false, "summary_configs": { "1N1z": "Max" }, "id_row_map": { }, "views": [ { "row_height": "default", "colors": { }, "summaries": { }, "link_rows": { }, "formula_rows": { }, "rows": [], "hidden_columns": [], "colorbys": { "color_by_rules": [], "color_by_column": "", "type": "" }, "groups": [], "group_rows": [], "groupbys": [], "sorts": [], "filters": [], "filter_conjunction": "And", "is_locked": false, "type": "table", "name": "Default View", "_id": "0000" }, { "colors": { }, "summaries": { }, "link_rows": { }, "formula_rows": { }, "rows": [], "hidden_columns": [], "colorbys": { }, "groups": [], "group_rows": [], "groupbys": [ { "sort_type": "up", "count_type": "", "column_key": "A3Vs" } ], "sorts": [], "filters": [], "filter_conjunction": "And", "is_locked": false, "type": "table", "name": "Grouped", "_id": "na7u" } ], "columns": [ { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 142, "editable": true, "name": "Name", "type": "text", "key": "0000" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 112, "editable": true, "name": "Picture", "type": "image", "key": "DTVy" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "format": "M/D/YYYY" }, "draggable": true, "resizable": true, "width": 123, "editable": true, "name": "BirthDate", "type": "date", "key": "Qeek" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "textColor": "#202428", "color": "#FFEAB6", "id": "404299", "name": "Male" }, { "textColor": "#202428", "color": "#DDFFE6", "id": "411620", "name": "Female" } ] }, "draggable": true, "resizable": true, "width": 103, "editable": true, "name": "Gender", "type": "single-select", "key": "1DNP" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "borderColor": "#4EB867", "textColor": "#FFFFFF", "color": "#59CB74", "id": "916473", "name": "Northern Valley" }, { "borderColor": "#E5C142", "textColor": "#FFFFFF", "color": "#FBD44A", "id": "904725", "name": "Phillipsburg" }, { "borderColor": "#DC556A", "textColor": "#FFFFFF", "color": "#F4667C", "id": "346806", "name": "Logan" }, { "borderColor": "#B4E4E9", "textColor": "#202428", "color": "#D8FAFF", "id": "739555", "name": "Atwood" }, { "borderColor": "#844BD2", "textColor": "#FFFFFF", "color": "#9860E5", "id": "168359", "name": "Southern Valley" }, { "id": "241721", "textColor": "#202428", "color": "#FFD9C8", "name": "Wakeeney" } ] }, "draggable": true, "resizable": true, "width": 152, "editable": true, "name": "Community", "type": "single-select", "key": "A3Vs" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 119, "editable": true, "name": "Phone", "type": "text", "key": "nZyg" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "textColor": "#FFFFFF", "color": "#46A1FD", "id": "184733", "name": "No" }, { "textColor": "#202428", "color": "#D7E8FF", "id": "920818", "name": "Yes" }, { "textColor": "#FFFFFF", "color": "#EAA775", "id": "702535", "name": "1.0.0-101-58bcd685" } ] }, "draggable": true, "resizable": true, "width": 104, "editable": true, "name": "Texting", "type": "single-select", "key": "xCVM" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Address", "type": "text", "key": "SvLe" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 127.5, "editable": true, "name": "City", "type": "text", "key": "jp7t" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "textColor": "#FFFFFF", "color": "#59CB74", "id": "389239", "name": "KS" }, { "textColor": "#202428", "color": "#FFFCB5", "id": "932789", "name": "NE" }, { "textColor": "#FFFFFF", "color": "#59CB74", "id": "909413", "name": "Both Kansas and nebraska" } ] }, "draggable": true, "resizable": true, "width": 84.5, "editable": true, "name": "State", "type": "single-select", "key": "J7M9" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 98, "editable": true, "name": "ZipCode", "type": "text", "key": "1N1z" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Image", "type": "text", "key": "UALv" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentName1", "type": "text", "key": "YDqP" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentName2", "type": "text", "key": "m9S6" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentName3", "type": "text", "key": "6cpg" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentName4", "type": "text", "key": "6fIG" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentPhone1", "type": "text", "key": "5Vbe" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentPhone2", "type": "text", "key": "Rcd9" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentPhone3", "type": "text", "key": "1WRC" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "ParentPhone4", "type": "text", "key": "q09J" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Hobbies", "type": "text", "key": "3paV" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 194, "editable": true, "name": "Email", "type": "email", "key": "vEOb" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 357, "editable": true, "name": "Notes", "type": "long-text", "key": "97uI" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "textColor": "#202428", "color": "#B7CEF9", "id": "711179", "name": "2" }, { "textColor": "#FFFFFF", "color": "#9F8CF1", "id": "648259", "name": "3" }, { "textColor": "#FFFFFF", "color": "#46A1FD", "id": "798822", "name": "1" } ] }, "draggable": true, "resizable": true, "width": 105, "editable": true, "name": "Chair", "type": "single-select", "key": "srV8" }, { "permitted_users": [], "permission_type": "", "data": { "link_id": "RH1t", "is_internal_link": true, "other_table_id": "p6v0", "table_id": "tXid", "display_column_key": "0000" }, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Camp Registration", "type": "link", "key": "VMT7" }, { "permitted_users": [], "permission_type": "", "data": { "link_id": "N9Zx", "is_internal_link": true, "other_table_id": "d1oI", "table_id": "p6v0", "display_column_key": "0000" }, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Action Steps", "type": "link", "key": "pL6G" }, { "permitted_users": [], "permission_type": "", "data": { "link_id": "5UNS", "is_internal_link": true, "other_table_id": "d1oI", "table_id": "p6v0", "display_column_key": "0000" }, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Steps Finished", "type": "link", "key": "1Ptr" } ], "rows": [ { "J7M9": "389239", "DTVy": [ "https://table.tfcconnection.org/workspace/3/asset/02bcc337-2b09-42c6-ae75-310599e710c6/images/2021-06/kai.jpg" ], "vEOb": null, "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "711179", "UALv": "/sites/TeensForChrist/StudentImages/Kai%20Cox%20thumb-compressed.jpg", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2004-04-16", "xIWm": "Cox", "0000": "Kai Cox", "_mtime": "2021-06-24T21:41:33.042+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.279+00:00", "_creator": "dtable-web", "_participants": [], "_id": "HRTFDECtTR6SYRTDot6wdQ" }, { "J7M9": "389239", "vEOb": null, "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "648259", "3paV": "Sports", "UALv": "/sites/TeensForChrist/StudentImages/Nathaniel%20Huntley%20thumb-compressed.jpg", "xCVM": "184733", "nZyg": "7853028028", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2002-12-21", "xIWm": "Huntley", "0000": "Nathaniel Huntley", "_mtime": "2021-05-06T21:51:09.957+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "cesjqqXyTH2SwQxM9I50Sw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "vEOb": "janspeer2003@gmail.com", "3paV": "Reading", "UALv": "/sites/TeensForChrist/StudentImages/Jayden%20Speer%20thumb-compressed.jpg", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "4999 Rd E 8", "xCVM": "184733", "nZyg": "7856697097", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2003-03-24", "xIWm": "Speer", "0000": "Jayden Speer", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "KqPZI7A5TLO4HDoN62vJlA" }, { "vEOb": null, "NOZU": null, "srV8": "648259", "97uI": { "preview": null, "text": null }, "3paV": "Football", "UALv": "/sites/TeensForChrist/StudentImages/Aaron%20Estes%20thumb-compressed.jpg", "1N1z": "67654", "J7M9": "389239", "jp7t": "Norton", "SvLe": "214 South Graves", "xCVM": "184733", "nZyg": "7852020585", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2003-10-26", "xIWm": "Estes", "0000": "Aaron Estes", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Q6FPrS04SzCGB_oecPk1OA" }, { "vEOb": null, "NOZU": null, "srV8": "798822", "97uI": { "preview": null, "text": null }, "3paV": "Youtube", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie View", "SvLe": "8896 RD E12", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2004-07-27", "xIWm": "Schemper", "0000": "Deacon Schemper", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "dY93UKvHTECxy9gUQNY7cQ" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "3paV": "Dance", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie View", "SvLe": "8896 RD E12", "xCVM": "184733", "nZyg": "7856697062", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2002-08-11", "xIWm": "Schemper", "0000": "Isabelle Schemper", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "CtBZZ6TdTiSR2qLzm1eJIg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "3paV": "Basketball", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "4999 Rd. E8", "xCVM": "184733", "nZyg": "7856647078", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2005-04-08", "xIWm": "Speer", "0000": "Tanea Speer", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "OVoW0ZAnR8q0rLsyJ0hiUw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "3paV": "Sports", "1N1z": "67654", "J7M9": "389239", "jp7t": "Norton", "SvLe": "12676 RD62", "xCVM": "184733", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2005-08-31", "xIWm": "Cox", "0000": "Braxton Cox", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "TlUKW-waTXWscnjOiPEgHA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "648259", "3paV": "Sports", "xCVM": "184733", "nZyg": "9706309678", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2004-12-25", "xIWm": "Bencomo", "0000": "Brian Bencomo", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Q2gRaLuLQSuOgdj6ylkI8A" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Sports", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "500 Washington", "xCVM": "184733", "nZyg": "7856697065", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2004-06-22", "xIWm": "Brands", "0000": "Foster Brands", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "OjBMmn9gRGS4HWRsB2-PnQ" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "407 Washington St", "xCVM": "184733", "nZyg": "7852020729", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2005-02-25", "xIWm": "Saenz", "0000": "Thayz Saenz", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.281+00:00", "_creator": "dtable-web", "_participants": [], "_id": "XVs1gY-HQxebCW1hMBmWpA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "131 Bryant St.", "xCVM": "184733", "nZyg": "7856697095", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2007-07-18", "xIWm": "Hansen", "0000": "Haley Hansen", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "ZsLVs-MWRX2pXiOFXNEgWg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "3paV": "Sports", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "131 Bryant St.", "xCVM": "184733", "nZyg": "7856697027", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2005-09-02", "xIWm": "Hansen", "0000": "Jeremiah Hansen", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "ENmwmqKTQ7S9iOOau4lz_w" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "608 Van Horn St", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2006-11-03", "xIWm": "Davis", "0000": "Jason Davis", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "O9NSg08nSbK_Sz5ODh7OhA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "3paV": "Video Games", "1N1z": "67654", "J7M9": "389239", "jp7t": "Norton", "SvLe": "214 South Graves", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2002-02-20", "xIWm": "Henrickson", "0000": "Seth Henrickson", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "YcY2yuUTTsOOkLTRR7Sm6g" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "798822", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2006-04-05", "xIWm": "Lowry", "0000": "Brady Lowry", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "TJjwEYvpQQCOx0Q1eRKtEQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "648259", "vEOb": "lmuhland@logan326.net", "3paV": "Singing", "5Vbe": "785-689-8017", "m9S6": "Lisa Uhland", "UALv": "/:i:/s/TeensForChrist/EZHyfxu2xGhLtYXMOg1HOk8BlQhOEFoc_OL0FbCID63tTA?e=UiEzML", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "506 N Douglas ", "xCVM": "184733", "nZyg": "7856898022", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2005-05-09", "xIWm": "Uhland", "0000": "Kylee Uhland", "_mtime": "2021-05-06T19:23:09.304+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "BLG-mxKDRRGSJsmyzeCWGw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "711179", "vEOb": "Lefteebrunow@yahoo.com", "3paV": "Horse", "1WRC": "7859738288", "5Vbe": "7859738287", "6fIG": "Rae Gilmore", "6cpg": "Kent Tien", "m9S6": "Jordan Rider", "YDqP": "Ashlee Tien", "UALv": "/:i:/s/TeensForChrist/EUerzbH4butFukxk2emH4FwBnq5xGXsUhRYLLqF6evus5w?e=XLTEnd", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie view ", "SvLe": "307 holland st", "xCVM": "184733", "nZyg": "719 688 7882", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2005-10-05", "xIWm": "Rider", "0000": "Cydnee Rider", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "bt0poXnXRMWAU7ukqtKmMQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "711179", "vEOb": "Cookiewiltfong3@gmail.com", "3paV": "Sports ", "Rcd9": "7852020016", "5Vbe": "7852020664", "m9S6": "Shaun Wiltfong", "YDqP": "Melissa Wiltfong ", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie View ", "SvLe": "507 holland st", "xCVM": "184733", "nZyg": "7858717640", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2006-04-09", "xIWm": "Wiltfong", "0000": "Brooke Wiltfong", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "HWoUl9BAQw6D5KQ4va6cxA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Savannah.f.moore @logan326.net", "5Vbe": "785 533 1136", "m9S6": "Adam Moore", "YDqP": "Kayla Moore", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "134 First Street", "xCVM": "184733", "nZyg": "785 208 8443", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2008-07-16", "xIWm": "Moore", "0000": "Savannah Moore", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "FLH9VFtoTpOmOwiMQ-egmg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "24eshwenn@logab326.net", "3paV": "Music", "5Vbe": "7855331136", "6fIG": "Stan", "6cpg": "Adam", "m9S6": "Nathan ", "YDqP": "Kayla", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg ", "SvLe": "134 first street", "xCVM": "184733", "nZyg": "785-208-8444", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2006-05-24", "xIWm": "Schwenn", "0000": "Emma Schwenn", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "JquaVzxqSt2gy11c1DspYQ" }, { "NOZU": null, "97uI": { "preview": null, "text": null }, "vEOb": "24hgottstine@logan326.net", "3paV": "farming hunting welding hanging with friends and family ", "Rcd9": "785-689-8075", "5Vbe": "785-689-8076", "m9S6": "Janet Gottstine ", "YDqP": "phil Gottstine ", "UALv": "/:i:/s/TeensForChrist/ETa-Tcxa26BJlgVTDYJTLNwBr7FZEoODNL18j2nLXaaz_w?e=YtzpUb", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan ", "SvLe": "1454 w yankee rd ", "xCVM": "920818", "nZyg": "785-689-8094", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2005-11-21", "xIWm": "Gottstine ", "0000": "Hayden Gottstine ", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "XMVGp2neQHmSChVXJIHQTw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Football", "m9S6": "Jorge lujan ", "YDqP": "Claudia parra", "1N1z": "67647", "J7M9": "389239", "jp7t": "Logan", "SvLe": "205 w logan", "xCVM": "184733", "nZyg": "5057958548", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2006-05-31", "xIWm": "Garcia", "0000": "Yaresly Garcia", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "bvJevWx_S0SVohnRZjmdNw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "24cmorgan@logan326.net", "3paV": "Fun", "Rcd9": "7853021445", "5Vbe": "7853021446", "m9S6": "Chantel ", "YDqP": "Kevin", "UALv": "/:i:/s/TeensForChrist/EWBCSVvz_aJAvYEwduc-AywBFOr-1KGmKWn2yhC2Gg5bxg?e=iGceH9", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillpsburg", "SvLe": "456 H St. ", "xCVM": "184733", "nZyg": "Dad 7853021446 me 7853021446", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2006-09-17", "xIWm": "Morgan", "0000": "Cameron Morgan", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "L-2_756mTeKJ08bELZBRPA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "24grudd@logan326.net", "3paV": "Frisbee golf, eating, and sleeping", "Rcd9": "785-302-1977", "5Vbe": "785-302-0148", "m9S6": "Brian Rudd", "YDqP": "Sarah Rudd", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillpsburg", "SvLe": "1005 2nd street", "xCVM": "184733", "nZyg": "I don't have one", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2005-10-23", "xIWm": "Rudd", "0000": "Gabriel Rudd", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "VUNki-sDS0Km9Yok07Q9TA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "25hmcclurg@logan326.net", "3paV": "Riding horses", "Rcd9": "7856898096", "5Vbe": "7856898091", "m9S6": "Dustin ", "YDqP": "Crystal", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "505 North mill street Logan ks", "xCVM": "184733", "nZyg": "7853021017", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2007-01-22", "xIWm": "Mcclurg", "0000": "Hailey Mcclurg", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.282+00:00", "_creator": "dtable-web", "_participants": [], "_id": "X5QH8vB5TqqCU1Xf1s6ggg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "25kalexander@logan326.net", "3paV": "Music/singing", "q09J": "7853021554", "1WRC": "7853021554", "Rcd9": "7853021554", "5Vbe": "7853021554", "6fIG": "Pamela post", "6cpg": "Pamela post", "m9S6": "Pamela post", "YDqP": "Pamela post", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie view", "SvLe": "507 first street", "xCVM": "184733", "nZyg": "7859738011", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2007-01-23", "xIWm": "Alexander", "0000": "Kaitlyn Alexander", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "csfN3Gr6SiW2Y7ojtKbpYA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "25kealexander@logan326.net", "3paV": "Horse riding", "5Vbe": "785-302-1554", "YDqP": "Pamela", "UALv": "/:i:/s/TeensForChrist/EWJ3Khubd2xClxugAzMFjhIBc0a57R2C2ZJd2bmc-VE-fg?e=TkMdUE", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie View", "SvLe": "507 1st street", "xCVM": "184733", "nZyg": "785-973-8047", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2007-01-23", "xIWm": "Alexander", "0000": "Kendra Alexander", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "MmAHp8k0SqakoMRJwAVTRQ" }, { "1DNP": "404299", "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "785-533-1193", "YDqP": "Kristen Pounds", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "817 8th St.", "xCVM": "184733", "nZyg": "785-533-1558", "A3Vs": "904725", "Qeek": "2004-01-04", "xIWm": "Jenkins", "0000": "Carter Jenkins", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "SZeCmRJAQVeWL7rLScBbKQ" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-1981", "5Vbe": "785-533-1331", "m9S6": "Jayson Hueneke", "YDqP": "Kelli Hueneke", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "265 S 6th St.", "xCVM": "184733", "nZyg": "785-533-1331", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2003-09-05", "xIWm": "Hueneke", "0000": "Olivia Hueneke", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "GlzXKQyaRfevw9khkEUIXw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-9096", "5Vbe": "785-533-1331", "m9S6": "Josh Schemper", "YDqP": "Kelli Hueneke", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "265 S 6th St.", "xCVM": "184733", "nZyg": "785-533-4012", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2002-12-10", "xIWm": "Schemper", "0000": "Nick Schemper", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "D1cZs4qGQJ6PjT1htpoiZQ" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-8306", "5Vbe": "785-543-4092", "m9S6": "Jerod Roth", "YDqP": "Amber Roth", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "1055 W 500 Rd", "xCVM": "184733", "nZyg": "785-533-1671", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2002-09-18", "xIWm": "Roth", "0000": "Abby Roth", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "RWLH5u3SRPm8LPWOs8G3sQ" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "785-533-1193", "YDqP": "Kristen Pounds", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "817 8th St.", "xCVM": "184733", "nZyg": "785-533-1576", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2005-03-10", "xIWm": "Jenkins", "0000": "Cameron Jenkins", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "N85mqIXsSrWoOnaBQgR5qw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-1918", "5Vbe": "785-953-0421", "m9S6": "Roy Jessup", "YDqP": "Bethany Jessup", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "PO Box 251", "xCVM": "184733", "nZyg": "785-302-1996", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2003-09-06", "xIWm": "Jessup", "0000": "Gracie Jessup", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "IjPt-OL3RlyhjzGYtuHSFg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-7680", "5Vbe": "785-543-7325", "m9S6": "Kelly Ford", "YDqP": "Tracie Ford", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "471 10th St.", "xCVM": "184733", "nZyg": "785-533-2666", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2003-09-16", "xIWm": "Ford", "0000": "Jeremy Ford", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "K9vIZCMnQny92st8vDe74g" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "785-533-1331", "m9S6": "Josh Schemper", "YDqP": "Kelli Hueneke", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "265 S 6th St.", "xCVM": "184733", "nZyg": "785-533-1164", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2005-04-18", "xIWm": "Schemper", "0000": "Heather Schemper", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "R6-0gDWnSQil3xb5VmPnVg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-1918", "5Vbe": "785-953-0421", "m9S6": "Roy Jessup", "YDqP": "Bethany Jessup", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "169 6th St.", "xCVM": "184733", "nZyg": "785-953-0421", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2008-03-25", "xIWm": "Jessup", "0000": "William Jessup", "_mtime": "2021-05-06T19:23:09.305+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "WtjQxrnFRSWPpLimUOYrqw" }, { "1DNP": "411620", "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "785-302-0059", "m9S6": "Richard/RJ", "YDqP": "Tamara", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "475 7th St.", "xCVM": "184733", "A3Vs": "904725", "Qeek": "2002-01-22", "xIWm": "Drullinger", "0000": "Victoria Drullinger", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "ZHLKUZCFQQKLWqZqgarrjQ" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "308-920-1368", "m9S6": "Curtis", "YDqP": "Angela", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "233 1st St.", "xCVM": "184733", "nZyg": "308-920-1368", "A3Vs": "904725", "Qeek": "2006-01-12", "xIWm": "Craig", "0000": "Kane Craig", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "EUCd9MD8QAuDKEYLrk2ORg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "785-302-0670", "m9S6": "Kerri Footh", "YDqP": "Kent Footh", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "848 7th St.", "xCVM": "184733", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2005-12-06", "xIWm": "Footh", "0000": "Christina Footh", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.283+00:00", "_creator": "dtable-web", "_participants": [], "_id": "SB_LVek1Rx-TE0AjRR-rog" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-302-0512", "5Vbe": "913-961-2415", "m9S6": "Nick Poels", "YDqP": "Tami Poels", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "xCVM": "184733", "nZyg": "785-302-1234", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2008-04-19", "xIWm": "Poels", "0000": "Gabby Poels", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "XUkQmxUdRz-sCIVJNo2jqA" }, { "J7M9": "389239", "vEOb": null, "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "798822", "m9S6": "Julie", "YDqP": "Brian", "xCVM": "184733", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2019-08-20", "xIWm": "Fischer", "0000": "Natalie Fischer", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "ahZpxWTfQkibDpkM4eq5LA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "798822", "m9S6": "Julie", "YDqP": "Brian", "J7M9": "389239", "xCVM": "184733", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2006-09-26", "xIWm": "Fischer", "0000": "Nathan Fischer", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "E5zE60RLSvGpo5dbufQ6yg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "785-302-0677", "6cpg": "Jim", "m9S6": "Eric", "YDqP": "Tara", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "515 West E St.", "xCVM": "184733", "nZyg": "785-302-0677", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2006-10-05", "xIWm": "Knowles", "0000": "Ethan Knowles", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "DERpc44lRuGTM0xi8rNLfg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "785-543-8544", "m9S6": "Sally Brandon", "YDqP": "Jay Brandon", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "365 E Hunter Rd.", "xCVM": "184733", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2006-08-15", "xIWm": "Brandon", "0000": "JJ Brandon", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "DC52EnNbReyvhogcToPrxA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-8544", "5Vbe": "785-543-0344", "m9S6": "Sally Brandon", "YDqP": "Jay Brandon", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "365 E Hunter Rd.", "xCVM": "184733", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2008-06-24", "xIWm": "Brandon", "0000": "Alex Brandon", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "VoBZzz_ESiWd3weGUQkNyw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "5Vbe": "7855331797", "m9S6": "Matt Chestnut", "YDqP": "Jennifer Chestnut", "1N1z": "67639", "J7M9": "389239", "jp7t": "Glade", "SvLe": "413 E Hwy 9", "xCVM": "184733", "nZyg": "7855331117", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2006-11-06", "xIWm": "Chestnut", "0000": "Clayton Chestnut", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "FC3hyDXCQfS9RwJzu5AQGA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-302-0114", "5Vbe": "785-543-4358", "m9S6": "Tiffany VanDerVeen", "YDqP": "Curtis VanDerVeen", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "21 E Limestone Rd", "xCVM": "184733", "nZyg": "785-302-1945", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2008-06-27", "xIWm": "VanDerVeen", "0000": "Chloe VanDerVeen", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "LgrK38pgR2q2SFmuLADuiw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "573-979-1804", "5Vbe": "573-979-9071", "m9S6": "Nathan McCollough (grandpa)", "YDqP": "Robin McCollough (grandma)", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "327 S. 6th St", "xCVM": "184733", "nZyg": "573-979-9071", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2006-03-18", "xIWm": "Wheeler", "0000": "Neveah Wheeler", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "PT_3_PLqT_ujDt7NurYf7w" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-543-8652", "5Vbe": "785-543-8240", "m9S6": "Jamie", "YDqP": "Sandy", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "685 Hwy 183", "xCVM": "184733", "nZyg": "785-533-0075", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2006-01-25", "xIWm": "Reimer", "0000": "Taylan Reimer", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "f1bSpoDIT_mWFXF9puMGqw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-302-0114", "5Vbe": "785-543-4358", "m9S6": "Tiffany", "YDqP": "Curtis", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "21 E Limestone", "xCVM": "184733", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2007-01-20", "xIWm": "VanDerVeen", "0000": "Michael VanDerVeen", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "RCk5xKW7QGuM-B1fCMU_dQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "maretivy@gmail.com", "3paV": "drawing, volleyball, watching memes", "Rcd9": "417-300-1580", "5Vbe": "308-350-0683", "m9S6": "Tonya Knapp", "YDqP": "India Maret", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "802 page st.", "xCVM": "184733", "nZyg": "785-259-6495", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2006-08-07", "xIWm": "Maret", "0000": "Ivy Maret", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "US0nBxreSIWUr8OljgmCaA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "kacidirks@student.usd105.org", "3paV": "volleyball, basketball, anything that involves Jenny :-)", "5Vbe": "785-626-9205", "YDqP": "Kristi Dirks", "1N1z": "67744", "J7M9": "389239", "jp7t": "Ludell", "SvLe": "25307 RD 28", "xCVM": "184733", "nZyg": "785-626-4026", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2005-09-28", "xIWm": "Dirks", "0000": "Kaci Dirks", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "F86jMhUbRlOoQxvgLD-LMg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "reecesmith2025@gmail.com", "3paV": "basketball, volleyball, 5ten", "Rcd9": "620-622-7304", "5Vbe": "620-622-7305", "m9S6": "Matt Smith", "YDqP": "Erica Smith", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "811 S. 1st", "xCVM": "184733", "nZyg": "620-622-7170", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2019-09-06", "xIWm": "Smith", "0000": "Reece Smith", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.284+00:00", "_creator": "dtable-web", "_participants": [], "_id": "AvBGTywqSiuuO5eJ3e2FlQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "clairwithington@student.usd105.org", "3paV": "Horses, volleyball, basketball", "Rcd9": "785-626-2168", "5Vbe": "785-626-3815", "m9S6": "Matthew Withington", "YDqP": "Jessica Withington", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "19286 RD 19", "xCVM": "184733", "nZyg": "785-626-3815", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2006-05-23", "xIWm": "Withington", "0000": "Clair Withington", "_mtime": "2021-05-06T19:23:09.306+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "awFlN_72Sx24GAAG0R5jUg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "horinekella@gmail.com", "3paV": "drawing, cooking", "5Vbe": "308-340-1587", "YDqP": "Heather Horinek", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "603 Sherman St.", "xCVM": "184733", "nZyg": "308-340-1519", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2005-12-19", "xIWm": "Horinek", "0000": "Ella Horinek", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "NxtlELoRTIKoY-cEZKS5sg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "kempergeorge@student@usd105.org", "3paV": "football, 5ten, drawing", "YDqP": "Jamie Roybal-George", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "Main St.", "xCVM": "184733", "A3Vs": "739555", "1DNP": "404299", "Qeek": "2006-06-22", "xIWm": "Roybal-George", "0000": "Kemper Roybal-George", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "SsRpwUHJQWmorW4FQ2zxeA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "sethgilbert@student.usd105.org", "3paV": "gaming", "YDqP": "Kim Ball-Gilbert", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "3rd St.", "xCVM": "184733", "A3Vs": "739555", "1DNP": "404299", "Qeek": "2003-05-01", "xIWm": "Gilbert", "0000": "Seth Gilbert", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Xp_Y6Pn5RXS573TNmACgpw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "wesleyreuber@student.usd105.org", "3paV": "gaming, football", "5Vbe": "785-626-7267", "YDqP": "Monica Reuber", "1N1z": "67744", "J7M9": "389239", "jp7t": "Ludell", "SvLe": "452 Elm St.", "xCVM": "184733", "A3Vs": "739555", "1DNP": "404299", "Qeek": "2006-10-01", "xIWm": "Reuber", "0000": "Wes Reuber", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Usq5Q_IwRxSBX_BI_eXkNA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "zoiehorinek@gmail.com", "3paV": "goats, reading, crafts", "5Vbe": "308-340-1587", "YDqP": "Heather Horinek", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "603 Sherman St.", "xCVM": "184733", "nZyg": "308-340-4653", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2004-04-22", "xIWm": "Horinek", "0000": "Zoie Horinek", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "PEgGykfuT26e04rRk_6I0A" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "nicolechumley@student.usd105.org", "3paV": "drawing, youtube", "5Vbe": "785-538-0013", "YDqP": "Peggy Mirto", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "607 Plum St.", "xCVM": "184733", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2004-10-31", "xIWm": "Chumley", "0000": "Nicole Chumley", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "KFMfFhSiRim54-vD_7k-ng" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "laurenmcquigg@student.usd105.org", "3paV": "watching movies", "5Vbe": "620-214-2123", "YDqP": "Jamie Tagtmeyer", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "xCVM": "184733", "nZyg": "620-260-0667", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2006-02-27", "xIWm": "Mcquigg", "0000": "Lauren Mcquigg", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "JOQAhZKKTJGjOFaWXC2jtA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "ashlynnwade@student.usd105.org", "3paV": "art", "5Vbe": "785-626-6696", "YDqP": "Lisa Chessmore", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "205 Vine St.", "xCVM": "184733", "A3Vs": "739555", "1DNP": "411620", "Qeek": "2006-04-29", "xIWm": "Wade", "0000": "Ashlynn Wade", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "DIgoJiw5SeujsWZxxnLOnQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "asapopp@student.usd105.org", "3paV": "gaming, drawing, sports", "Rcd9": "785-626-2608", "5Vbe": "785-626-2999", "m9S6": "Albert Popp", "YDqP": "Jenny Popp", "1N1z": "67730", "J7M9": "389239", "jp7t": "Atwood", "SvLe": "508 S. 1st", "xCVM": "184733", "nZyg": "785-443-4410", "A3Vs": "739555", "1DNP": "404299", "Qeek": "2005-11-14", "xIWm": "Popp", "0000": "Asa Popp", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "BuQrpNOdT6-Nl9yl4ns9wQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "minthorn.hannah@gmail.com", "3paV": "Band, Stats", "5Vbe": "308-999-9418", "YDqP": "Stacey Henry", "1N1z": "68967", "J7M9": "932789", "jp7t": "Oxford", "SvLe": "209 West Cambridge st.", "xCVM": "184733", "nZyg": "308-999-9194", "A3Vs": "168359", "1DNP": "411620", "Qeek": "2004-01-26", "xIWm": "Henry", "0000": "Hannah Henry", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "MLm0xgFyRwqYNDULIwoL8Q" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Volleyball and band", "Rcd9": "3083401646", "5Vbe": "3083408958", "m9S6": "Dan Dringman", "YDqP": "Raquel Dringman", "1N1z": "68926", "J7M9": "932789", "jp7t": "Beaver city", "SvLe": "P.O. Box 195 ", "xCVM": "184733", "nZyg": "3087379800", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2019-04-02", "xIWm": "Dringman", "0000": "Cierra Dringman", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "XajgWGy-RD-4Vk7M5Yp9_Q" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Carlzzz030@gmail.com", "3paV": "i’m a redhead. also, journalism ", "5Vbe": "7852022558", "YDqP": "Michelle Thompson", "1N1z": "68926", "J7M9": "932789", "jp7t": "Beaver City", "SvLe": "619 6th street", "xCVM": "184733", "nZyg": "3089202500", "A3Vs": "168359", "1DNP": "411620", "Qeek": "2002-07-05", "xIWm": "Thompson", "0000": "Carlee Thompson", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Re19SCIiSyK7NLw3D1yvGg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Ashley.autumn2003@gmail.com", "3paV": "Coloring", "1WRC": "308-464-0508", "Rcd9": "308-991-4971", "5Vbe": "308-991-6789", "6fIG": "Daniel Miner", "6cpg": "Shanon Miner", "m9S6": "Duane bishop", "YDqP": "Lois bishop", "1N1z": "68926", "J7M9": "932789", "jp7t": "Beaver city", "SvLe": "70625 road 431", "xCVM": "184733", "nZyg": "308-991-6789", "A3Vs": "168359", "1DNP": "411620", "Qeek": "2003-10-23", "xIWm": "Marcum", "0000": "Ashley Marcum", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.285+00:00", "_creator": "dtable-web", "_participants": [], "_id": "frZBaAc4Tk243wybw9h1tA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "megakolber@hotmail.com", "3paV": "Stop motion, drawing ", "Rcd9": "308 655 0173", "5Vbe": "308 962 4174", "m9S6": "Erika", "YDqP": "Ryan", "1N1z": "68926", "J7M9": "932789", "jp7t": "Beaver City", "SvLe": "71224 Rd 432", "xCVM": "184733", "nZyg": "308 655 0984", "A3Vs": "168359", "1DNP": "404299", "Qeek": "2004-03-13", "xIWm": "Hunt", "0000": "Kolby Hunt", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "XlAFSCvESKycze5XNqEBSw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "blakeburns2020@gmail.com", "3paV": "Working ", "m9S6": "Terrance", "YDqP": "Danielle", "1N1z": "68967", "J7M9": "932789", "jp7t": "Oxford", "SvLe": "902 Central", "xCVM": "184733", "nZyg": "3089957607", "A3Vs": "168359", "1DNP": "404299", "Qeek": "2001-11-06", "xIWm": "Burns", "0000": "Blake Burns", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "I74I55hDSUu5JvXG6sYu7Q" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "kenzikring@gmail.com", "3paV": "Softball, competitive swimming, and puzzles ", "Rcd9": "308-655-0149", "5Vbe": "308-627-3035", "m9S6": "Chuck Taylor", "YDqP": "Gerry Taylor", "1N1z": "68967", "J7M9": "932789", "jp7t": "Oxford", "SvLe": "605 central", "xCVM": "184733", "nZyg": "308-440-2044", "A3Vs": "168359", "1DNP": "411620", "Qeek": "2005-06-05", "xIWm": "Kring", "0000": "Kenzi Kring", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "C6OrYaHpQqCIZAI-b_iu7A" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Matthew.minthorn@icloud.com", "3paV": "Reading, Watching The Office, Band, Sleeping, Making Origami, Praising Jesus. ", "5Vbe": "308-999-9418", "YDqP": "Stacey Henry", "1N1z": "68967", "J7M9": "932789", "jp7t": "Oxford ", "SvLe": "209 W Cambridge St. ", "xCVM": "184733", "nZyg": "308-999-7052", "A3Vs": "168359", "1DNP": "404299", "Qeek": "2002-07-13", "xIWm": "Henry", "0000": "Matthew Henry", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "d4DW7QatQIuYh5TvYcK_lw" }, { "1DNP": "404299", "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Draw ", "Rcd9": "308-655-7966", "5Vbe": "306-655-0594", "m9S6": "James ", "YDqP": "Joanna ", "1N1z": "38967", "J7M9": "932789", "jp7t": "Oxford ", "SvLe": "909 Odell ", "xCVM": "184733", "nZyg": "308-655-1616", "A3Vs": "168359", "Qeek": "2020-07-26", "xIWm": "Schnider ", "0000": "Logan Schnider ", "_mtime": "2021-05-06T19:23:09.307+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Rr8tyPfmRsqlOfPv7qUWLg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "maggielammers10@gmail.com", "3paV": "Music, reading, speech/one act", "5Vbe": "3083794744", "YDqP": "Monica Lammers", "1N1z": "68967", "J7M9": "932789", "jp7t": "Oxford", "SvLe": "613 W Bothwell", "xCVM": "184733", "nZyg": "3089914172", "A3Vs": "168359", "1DNP": "411620", "Qeek": "2002-02-19", "xIWm": "Lammers", "0000": "Maggie Lammers", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "X-osdDfMQU2CouTedxBIVw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Peytondavid29@gmail.com", "3paV": "Football track hunting farming", "5Vbe": "7858748169", "m9S6": "Catrina", "YDqP": "Preston", "1N1z": "67632", "J7M9": "389239", "jp7t": "Almena", "SvLe": "914 Pratt ave", "xCVM": "184733", "nZyg": "7856697063", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2005-09-15", "xIWm": "David", "0000": "Peyton David", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "WN_VqAn9R7-7juI2xjwKoA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "798822", "3paV": "Basketball and football", "Rcd9": "7856648009", "5Vbe": "7856648007", "m9S6": "Mom", "YDqP": "Dad", "J7M9": "389239", "jp7t": "Almena", "SvLe": "Rd.", "xCVM": "184733", "nZyg": "7856697089", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2020-05-14", "xIWm": "Speer", "0000": "Johnel Speer", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "PM1VCQlbQOWt07ewBT2zSw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Cl.lowry@icloud.com", "3paV": "Light saber duel", "m9S6": "Calvin Lowry ", "YDqP": "Emily Lowry ", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie View", "SvLe": "1369 w hwy 36", "xCVM": "184733", "nZyg": "I do not have one yet next year ", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2007-04-25", "xIWm": "Lowry", "0000": "Caden Lowry", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "P7apfZ0VTmGixdS1kpVxHg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Schemperdrew@gmail.com", "3paV": "Basketball, watching TV, listening to music", "Rcd9": "785 669 7026", "5Vbe": "785 664 8333", "m9S6": "Julia Schemper", "YDqP": "Craig Schemper", "1N1z": "67664", "J7M9": "389239", "jp7t": "Prairie View", "SvLe": "8896 RD E 12", "xCVM": "184733", "nZyg": "7856697079", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2005-12-14", "xIWm": "Schemper", "0000": "Drew Schemper", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "f8dNZ-dtQjSxeycj1cc1mQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "neraht.cx202@gmail.com", "q09J": "Iwishiknew", "1WRC": "Iwishiknew", "Rcd9": "7858648022", "5Vbe": "3089202259", "6fIG": "Mike sander", "6cpg": "Jodi cox", "m9S6": "Chris Cox ", "YDqP": "Rachelle Sander", "1N1z": "86920", "J7M9": "909413", "jp7t": "Norton or alma", "SvLe": "Uhm my parents are divorced ", "xCVM": "184733", "nZyg": "7858548202", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2002-12-13", "xIWm": "Cox", "0000": "Tharen Cox", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "WdI5fqMTRki29LcrnNavbA" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Mbaird@icloud.com", "3paV": "Sports", "5Vbe": "785-664-8526", "YDqP": "Doyle Baird", "UALv": "/sites/TeensForChrist/StudentImages/Mary%20Baird%20thumb-compressed.jpg", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena ", "SvLe": "703 Cleveland street", "xCVM": "184733", "nZyg": "785-669-7053", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2005-09-26", "xIWm": "Baird", "0000": "Mary Baird", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "JbLc0JaeQ6Ou3_j-kZYSDQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "shayleev@icloud.com", "3paV": "Dance and sports ", "Rcd9": "8718748219", "5Vbe": "7858712394", "m9S6": "Laurie Vsetecka", "YDqP": "Charles Vsetecka", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "26999 Rd W", "xCVM": "184733", "nZyg": "17858717177", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2005-02-21", "xIWm": "Vsetecka", "0000": "Shaylee Vsetecka", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Ia6iJjXVRICygF_hxJ53Pg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Farming ", "1WRC": "785-664-8052", "Rcd9": "785-664-8053", "m9S6": "Kevin Sides ", "YDqP": "Joy Sides ", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena Kansas ", "SvLe": "709 pratt avenue, Almena KS ", "xCVM": "184733", "nZyg": "785-669-7083", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2019-11-09", "xIWm": "Sides", "0000": "Delaney Sides", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.286+00:00", "_creator": "dtable-web", "_participants": [], "_id": "d6dgXksZT7iiv5eKwA998Q" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Jasontroy2244@gmaio.com", "3paV": "Hunting farming", "q09J": "Idk", "1WRC": "Idk", "Rcd9": "3089302259", "5Vbe": "7858548022", "6fIG": "Mike", "6cpg": "Jodi", "m9S6": "Rachell", "YDqP": "Chris", "1N1z": "67654", "J7M9": "389239", "jp7t": "Norton", "SvLe": "Idk", "xCVM": "184733", "nZyg": "7858548204", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2006-04-22", "xIWm": "Cox", "0000": "Jason Cox", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "UR7Dvwh1QlOQ4REOQ0pVhA" }, { "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "798822", "vEOb": "Audreylillianbina@icloud.com", "3paV": "Run", "Rcd9": "6203386378", "5Vbe": "78520201523", "m9S6": "Byron", "YDqP": "Jodi", "J7M9": "389239", "jp7t": "Norton", "SvLe": "Norton road E2", "xCVM": "184733", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2009-02-18", "xIWm": "Bina", "0000": "Audrey Bina", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "bL0NwRKmQbOZ9ZMnWwsVxw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "c.russell63@icloud.com", "3paV": "Wrestling ", "5Vbe": "785-533-1021", "YDqP": "Jon Russell", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg ", "SvLe": "Idk", "xCVM": "184733", "nZyg": "785-302-1613", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2019-09-13", "xIWm": "Russell", "0000": "Chase Russell", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "fWSOGGbBT-q8nkF2oGrOGg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "13ericmoon@gmail.com", "3paV": "Sports, Singing, Video Games", "Rcd9": "7853028067", "5Vbe": "7853028066", "m9S6": "Stacey Moon", "YDqP": "Darin Moon", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg", "SvLe": "300 Morse Drive", "xCVM": "184733", "nZyg": "7852080121", "A3Vs": "904725", "1DNP": "404299", "Qeek": "2003-06-06", "xIWm": "Moon", "0000": "Eric Moon", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "WPUPTzZERNWS4teTIIlvDg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "stephwhitney@gmail.com", "3paV": "Cleaning", "Rcd9": "785-871-0748", "5Vbe": "785-664-8808", "m9S6": "Steven Whitney", "YDqP": "Stacy Whitney", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "3484 RD E8", "xCVM": "184733", "nZyg": "785-664-8811", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2005-06-30", "xIWm": "Whitney", "0000": "Stephanie Whitney", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "FlJIK7peT3yB0JVWk7wuIg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Videogames", "6cpg": "Hilery", "YDqP": "Matt", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almen", "SvLe": "708", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2019-05-06", "xIWm": "Vanpatten", "0000": "Clay Vanpatten", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "HMnGOdwjRkmanD1ggTyAWw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Games and biking", "m9S6": "Ryan", "YDqP": "Brandi", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "Ives", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2009-03-30", "xIWm": "Keith", "0000": "Ayden Keith", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "W0dn5IUXSUWXuBPsvhbzhw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Kylespeerjk@gmail.com", "3paV": "Playing computer, football, basketball, track, and TFC", "5Vbe": "17852020148", "6fIG": "Gerald", "6cpg": "Brenda", "m9S6": "Jay", "YDqP": "Kassandra", "1N1z": "67647", "J7M9": "389239", "jp7t": "Long Island", "SvLe": "481 wheeling st", "xCVM": "184733", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2005-11-03", "xIWm": "Speer", "0000": "Kyle Speer", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "dYnplgB-RAypsRnj_4uD1A" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "sydneymitchell2022@gmail.com", "3paV": "singing, dancing, cheerleading, reading, weight lifting", "5Vbe": "620-960-6725", "YDqP": "Season Kerns", "1N1z": "67661", "J7M9": "389239", "jp7t": "Phillipsburg ", "SvLe": "369 3rd street ", "xCVM": "184733", "nZyg": "785-259-7194", "A3Vs": "904725", "1DNP": "411620", "Qeek": "2004-04-22", "xIWm": "Mitchell", "0000": "Sydney Mitchell", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "BbIV9dyNQY61OgpkdF9kmg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "24adelimont@logan326.net", "3paV": "Sports ", "UALv": "/:i:/s/TeensForChrist/EaBH-VBgYORIjccSmKxF6aUB78dkC2ddhltREz7pq57nZg?e=ATYmlF", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan ", "SvLe": "204 east Main Street ", "xCVM": "184733", "nZyg": "785-688-8025", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2006-01-31", "xIWm": "Delimont", "0000": "Ansley Delimont", "_mtime": "2021-05-06T19:23:09.308+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "EJdVvXiUQ2W32HwleeqE_w" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "UALv": "/:i:/s/TeensForChrist/EQl9YdhZ5HBMrvHLu3P-F04B-71WvVRlhBQBuaa1Gdv_rQ?e=ferI8t", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "205 west logan", "xCVM": "184733", "nZyg": "5057958548", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2008-07-31", "xIWm": "Parra", "0000": "Yoselyne Parra", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "NSOcPHj1TPqHek_IJcf9Sw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "711179", "vEOb": "21htien@logan326.net", "UALv": "/:i:/s/TeensForChrist/Ee2W1eeuQRZKmsjkA_AD74EB1HyLg956QkYqX-Xr-eZwxw?e=zXF3my", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "212 E. Main St. ", "xCVM": "184733", "nZyg": "7853020695", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2002-10-23", "xIWm": "Tien", "0000": "Haylee Tien", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "CRMTTq_tQbqUC-b02Elp3w" }, { "97uI": { "preview": null, "text": null }, "Qeek": null, "NOZU": null, "srV8": "798822", "vEOb": "Spinke2003@gmail.com", "3paV": "Not dying", "UALv": "/:i:/s/TeensForChrist/EYdkzhclChFOkwo9PrzmwxgBrJbW6-m24nK5hnwjVKqXmQ?e=uCcSDP", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "1360 W Yankee rd", "xCVM": "184733", "nZyg": "7853021206", "A3Vs": "346806", "1DNP": "404299", "xIWm": "Pinkerton", "0000": "Sam Pinkerton", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Qa5eyz5cTRCVv6bd3i3Tug" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Gymnastics", "q09J": "6692588", "1WRC": "6692588", "Rcd9": "6697072", "5Vbe": "6648057", "6fIG": "Bob", "6cpg": "Linda", "m9S6": "Jasmine", "YDqP": "Julie", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "704 main St", "xCVM": "184733", "nZyg": "7856648057", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2019-08-01", "xIWm": "Moore", "0000": "Janee Moore", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.287+00:00", "_creator": "dtable-web", "_participants": [], "_id": "L1m--hy5T8m-8zcuQSMlIw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "25lgebhard@nvhuskies.org", "3paV": "Singing and acting", "Rcd9": "785-664-8231", "5Vbe": "785-854-8128", "m9S6": "Marvin Gebhard", "YDqP": "Jill Gebhard", "1N1z": "67647", "J7M9": "389239", "jp7t": "Long Island", "SvLe": "West1200 road", "xCVM": "184733", "nZyg": "785-854-8148", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2007-05-24", "xIWm": "Gebhard", "0000": "Landry Gebhard", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "XULpRARtSZ-o3jvk_SDjyg" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Vseteckar@icloud.cim", "3paV": "Idc", "YDqP": "Chuck Vsetecka", "1N1z": "67622", "J7M9": "389239", "jp7t": "Almena", "SvLe": "26999 Rd E ", "xCVM": "184733", "nZyg": "17858717679", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2006-10-03", "xIWm": "Vsetecka", "0000": "Robert Vsetecka", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "c9_A_CMWQj-IJg1FKix7VQ" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "Jdpreston2001@yahoo.com", "3paV": "Ridding my bike ", "Rcd9": "4054147409", "5Vbe": "4054147409", "6fIG": "Dad Preston", "6cpg": "Dad Preston", "m9S6": "Dad Preston", "YDqP": "Dad Preston", "1N1z": "67622", "J7M9": "389239", "jp7t": "Kansas ", "SvLe": "Almena brooks street 411", "xCVM": "184733", "nZyg": "4054147409", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2007-09-25", "xIWm": "Preston", "0000": "Brooke Preston", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "T3sPrsrtRXmcjAhZAeRN4Q" }, { "97uI": { "preview": null, "text": null }, "1N1z": null, "NOZU": null, "srV8": "798822", "vEOb": "Wendy.wendleadams@gmail.com", "3paV": "Pagents", "5Vbe": "7858748188", "m9S6": "Steven", "YDqP": "Melissa", "J7M9": "389239", "jp7t": "Almena", "SvLe": "406 Ives st ", "xCVM": "184733", "nZyg": "7858748501", "A3Vs": "916473", "1DNP": "411620", "Qeek": "2020-01-04", "xIWm": "Adams", "0000": "Wendy Adams", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "dqPNlG5HTPuZfB04N6YUXw" }, { "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "vEOb": "rprewo@gmail.com", "3paV": "Ballin’ and lifting ", "Rcd9": "785-689-8173", "5Vbe": "785-689-8172", "m9S6": "Michelle", "YDqP": "Paul", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "107 E Main St. ", "xCVM": "184733", "nZyg": "785-689-8299", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2006-07-10", "xIWm": "Prewo", "0000": "Ryan Prewo", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "KnuZUPAYQHikoetVD6q05w" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "3paV": "🏀 Clean ", "YDqP": "Shawna ", "1N1z": "765622", "J7M9": "389239", "jp7t": "Almena ", "SvLe": "201 bryant", "xCVM": "920818", "nZyg": "7856396723", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2005-05-26", "xIWm": "Black ", "0000": "Jonah Black ", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "bDJ77DyiTx-Rih0MaF3JGg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "3paV": "Baseball", "Rcd9": "7858548032", "5Vbe": "7858548033", "m9S6": "Trevor", "YDqP": "Shanna", "1N1z": "67647", "J7M9": "389239", "jp7t": "Long island", "SvLe": "567 Topeka ave", "xCVM": "920818", "nZyg": "7858548302", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2007-09-13", "xIWm": "Hammond", "0000": "Owen Hammond", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "WcNU0iSjR5O5bHrj4gOuHQ" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "3paV": "Hunting", "5Vbe": "7858548010", "m9S6": "Christopher Rogers", "YDqP": "Neva Rogers", "1N1z": "67647", "J7M9": "389239", "jp7t": "Long island", "SvLe": "359 West 1300 road long island", "xCVM": "920818", "A3Vs": "916473", "1DNP": "404299", "Qeek": "2019-11-30", "xIWm": "Rogers", "0000": "Maverick Rogers", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "G5eB7dclRf2--i-UbleAvw" }, { "NOZU": null, "97uI": { "preview": null, "text": null }, "vEOb": "26cashmore@logan326.net", "3paV": "football basketball ", "Rcd9": "7856501685", "5Vbe": "7856898210", "m9S6": "Jim Ashmore", "YDqP": "Elsie Ashmore", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "PO Box 273 ", "xCVM": "920818", "nZyg": "785-689-8111", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2008-04-13", "xIWm": "Ashmore", "0000": "Case Ashmore", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "AuqBLEgyRuiju9xxFUZxkw" }, { "NOZU": null, "97uI": { "preview": null, "text": null }, "vEOb": "25csparks@gmail.com", "3paV": "Sports", "m9S6": "Bob", "YDqP": "Jessica ", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "704 North Douglas ", "xCVM": "184733", "nZyg": "785-689-8018", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2006-11-06", "xIWm": "Sparks", "0000": "Caleb Sparks", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "YVJXuEW4SoeHCMyMxZitqg" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Volleyball, Basketball, Track", "Rcd9": "785-302-8465", "5Vbe": "785-302-8228", "m9S6": "Brandon Traxler", "YDqP": "Crystal White", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "P.O. Box 403", "xCVM": "920818", "nZyg": "785-533-0183", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2008-10-24", "xIWm": "Traxler", "0000": "Emma Traxler", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "fz7WXsfsRBS1PF4MM6Rp-w" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Volleyball, 4-H, Basketball, Track", "Rcd9": "785-689-8201", "5Vbe": "785-650-3627", "m9S6": "Jessica Aahmore", "YDqP": "Justin Ashmore", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "408 West Logan RD", "xCVM": "920818", "nZyg": "785-302-1570", "A3Vs": "346806", "1DNP": "411620", "Qeek": "2009-01-20", "xIWm": "Ashmore", "0000": "Cora Ashmore", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "Mn9GGqbaSNO71eV19mkEng" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "Rcd9": "785-302-0315", "5Vbe": "785/302-0186", "m9S6": "Joshua Vahling", "YDqP": "Sarah Vahling", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "302 W Logan", "xCVM": "920818", "nZyg": "785-302-8276", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2007-06-15", "xIWm": "Vahling", "0000": "Mayson Vahling", "_mtime": "2021-05-06T19:23:09.309+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.288+00:00", "_creator": "dtable-web", "_participants": [], "_id": "aGJAOaR9R-C-B3XE6_yzYA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Basketball", "Rcd9": "785/689/8253", "5Vbe": "785/689/8253", "m9S6": "Lonie Woods", "YDqP": "Desirae Woods", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "309 Commercial ST", "xCVM": "920818", "nZyg": "785/689/8082", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2009-08-07", "xIWm": "Woods", "0000": "Brayton Woods", "_mtime": "2021-05-06T19:23:09.310+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.289+00:00", "_creator": "dtable-web", "_participants": [], "_id": "BJXWHWCUR4y6jTdyvlHERw" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "NOZU": null, "srV8": "798822", "3paV": "Basketball", "Rcd9": "785/543/1993", "5Vbe": "785/543/1883", "m9S6": "Carolyn States", "YDqP": "Sam States", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "2556 West 1600 RD", "xCVM": "184733", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2009-04-03", "xIWm": "States", "0000": "Buster States", "_mtime": "2021-05-06T19:23:09.310+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.289+00:00", "_creator": "dtable-web", "_participants": [], "_id": "YfeWqLKhSVa95shKrjJGnA" }, { "vEOb": null, "97uI": { "preview": null, "text": null }, "Qeek": null, "NOZU": null, "srV8": "798822", "Rcd9": "785/689/6006", "5Vbe": "785/689/8005", "m9S6": "Tanya Gottsckalk", "YDqP": "Clint Gottschalk", "1N1z": "67646", "J7M9": "389239", "jp7t": "Logan", "SvLe": "603West Commercial", "xCVM": "920818", "nZyg": "785/689/4848", "A3Vs": "346806", "1DNP": "404299", "xIWm": "Gottschalk", "0000": "Gavin Gottschalk", "_mtime": "2021-05-06T19:23:09.310+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.289+00:00", "_creator": "dtable-web", "_participants": [], "_id": "feaXEr7hRNKaLQ10Slaahw" }, { "NOZU": null, "srV8": "798822", "97uI": { "preview": "262358", "text": "262358" }, "vEOb": "Ashlynnm.cramer@gmail.com", "3paV": "Choir, Band, Fall Play, Worship team", "Rcd9": "785/743/8607", "5Vbe": "785/743/8088", "m9S6": "Karon Cramer", "YDqP": "Craig Cramer", "1N1z": "67631", "J7M9": "389239", "jp7t": "Collyer", "xCVM": "920818", "nZyg": "785/734/8157", "A3Vs": "346806", "1DNP": "404299", "Qeek": "2004-08-05", "xIWm": "Cramer", "0000": "Ashlynn Cramer", "_mtime": "2021-05-06T19:23:09.310+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-04-30T18:55:30.289+00:00", "_creator": "dtable-web", "_participants": [], "_id": "W3wmuwSpTLKXrxFp7p4iMQ" } ], "name": "Students", "_id": "p6v0" }, { "is_header_locked": false, "summary_configs": { }, "id_row_map": { }, "views": [ { "colors": { }, "summaries": { }, "link_rows": { }, "formula_rows": { }, "rows": [], "hidden_columns": [], "colorbys": { }, "groups": [], "group_rows": [], "groupbys": [], "sorts": [], "filters": [], "filter_conjunction": "And", "is_locked": false, "type": "table", "name": "Default View", "_id": "0000" } ], "columns": [ { "frozen": false, "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "format": "M/D/YYYY" }, "draggable": true, "resizable": true, "width": 152, "editable": true, "name": "Date Received", "type": "date", "key": "0000" }, { "permitted_users": [], "permission_type": "", "data": { "link_id": "RH1t", "is_internal_link": true, "other_table_id": "p6v0", "table_id": "tXid", "display_column_key": "0000" }, "draggable": true, "resizable": true, "width": 148, "editable": true, "name": "Student", "type": "link", "key": "bAp1" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Last", "type": "text", "key": "BRFA" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "First", "type": "text", "key": "ZkoZ" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Street", "type": "text", "key": "RCmU" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 135, "editable": true, "name": "City", "type": "text", "key": "3J9G" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 93, "editable": true, "name": "State", "type": "text", "key": "rGUw" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 83, "editable": true, "name": "Zip", "type": "text", "key": "234c" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "thousands": "no", "decimal": "dot", "enable_precision": false, "precision": 2, "format": "number" }, "draggable": true, "resizable": true, "width": 90, "editable": true, "name": "Age", "type": "number", "key": "1Wg9" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "textColor": "#202428", "color": "#FFFCB5", "id": "687388", "name": "8" }, { "textColor": "#202428", "color": "#B7CEF9", "id": "30543", "name": "9" }, { "borderColor": "#EFBAA3", "textColor": "#202428", "color": "#FFD9C8", "id": "159494", "name": "10" }, { "textColor": "#FFFFFF", "color": "#F4667C", "id": "426422", "name": "7" }, { "textColor": "#FFFFFF", "color": "#4ECCCB", "id": "399074", "name": "11" }, { "borderColor": "#4EB867", "textColor": "#FFFFFF", "color": "#59CB74", "id": "439324", "name": "12" }, { "borderColor": "#DADADA", "textColor": "#202428", "color": "#E9E9E9", "id": "462406", "name": "6" }, { "textColor": "#FFFFFF", "color": "#ADDF84", "id": "939686", "name": "Fr/Co" }, { "borderColor": "#BBEBCD", "textColor": "#202428", "color": "#DDFFE6", "name": "Freshman", "id": "221760" } ] }, "draggable": true, "resizable": true, "width": 100, "editable": true, "name": "Grade", "type": "single-select", "key": "hxJg" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "textColor": "#FFFFFF", "color": "#FBD44A", "id": "140984", "name": "F" }, { "textColor": "#FFFFFF", "color": "#59CB74", "id": "827153", "name": "M" } ] }, "draggable": true, "resizable": true, "width": 106.5, "editable": true, "name": "Gender", "type": "single-select", "key": "amQR" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "thousands": "no", "decimal": "dot", "enable_precision": false, "precision": 2, "format": "dollar" }, "draggable": true, "resizable": true, "width": 138, "editable": true, "name": "Paid", "type": "number", "key": "cq4A" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "thousands": "no", "decimal": "dot", "enable_precision": false, "precision": 2, "format": "dollar" }, "draggable": true, "resizable": true, "width": 133, "editable": true, "name": "Scholarship", "type": "number", "key": "5WRt" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "T-Paid", "type": "text", "key": "93Kj" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "thousands": "no", "decimal": "dot", "enable_precision": false, "precision": 2, "format": "dollar" }, "draggable": true, "resizable": true, "width": 91.5, "editable": true, "name": "Owe", "type": "number", "key": "L433" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "textColor": "#202428", "color": "#FFD4FF", "id": "590718", "name": "M" }, { "textColor": "#202428", "color": "#DAD7FF", "id": "400963", "name": "L" }, { "textColor": "#FFFFFF", "color": "#4ECCCB", "id": "444289", "name": "S" }, { "textColor": "#202428", "color": "#E9E9E9", "id": "200454", "name": "XL" }, { "textColor": "#FFFFFF", "color": "#4ECCCB", "id": "924430", "name": "XXL" } ] }, "draggable": true, "resizable": true, "width": 96, "editable": true, "name": "T-size", "type": "single-select", "key": "x5JS" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "id": "542372", "textColor": "#202428", "color": "#DEF7C4", "name": "1" }, { "id": "843365", "textColor": "#202428", "color": "#D7E8FF", "name": "2" }, { "textColor": "#202428", "color": "#D7E8FF", "name": "Week 1 (July 19-23)", "id": "724025" }, { "textColor": "#202428", "color": "#FFEAB6", "name": "Week 2 (July 26-30)", "id": "15957" } ] }, "draggable": true, "resizable": true, "width": 80, "editable": true, "name": "Wk", "type": "single-select", "key": "oX1v" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "RL", "type": "text", "key": "YWVj" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "HF", "type": "text", "key": "INlR" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Notes", "type": "text", "key": "wABI" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Parent First", "type": "text", "key": "vD1f" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Parent Last", "type": "text", "key": "C8r5" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Emergency # ", "type": "text", "key": "U32i" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Emergency #2", "type": "text", "key": "o73L" } ], "rows": [ { "5WRt": null, "U32i": "785-656-3834", "C8r5": "Brown", "vD1f": "Jerod", "oX1v": "542372", "x5JS": "590718", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "140984", "hxJg": "687388", "1Wg9": 13, "234c": "67672", "rGUw": "KS", "3J9G": "WaKeeney", "RCmU": "437 N Main St.", "ZkoZ": "Morgan", "BRFA": "Brown", "0000": "", "_mtime": "2021-05-06T19:47:20.766+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.249+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "JsbBL7G2SXCie8RyPvmkJA" }, { "5WRt": null, "U32i": "316-617-2040", "C8r5": "Carver", "vD1f": "Rebekah", "oX1v": "542372", "x5JS": "400963", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "827153", "hxJg": "30543", "1Wg9": 14, "234c": "67147", "rGUw": "KS", "3J9G": "Valley Center", "RCmU": "214 N. Emporia Ave.", "ZkoZ": "Greg", "BRFA": "Carver", "0000": "", "_mtime": "2021-05-06T20:01:43.232+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.249+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "KgNLVh1FS8GxQVsiHG2gzA" }, { "5WRt": null, "U32i": "785-476-7035", "C8r5": "Cochrun", "vD1f": "Carla", "oX1v": "542372", "x5JS": "590718", "L433": null, "93Kj": "√", "cq4A": 145, "amQR": "140984", "hxJg": "30543", "1Wg9": 14, "234c": "67621", "rGUw": "KS", "3J9G": "Agra", "RCmU": "351 Kansas Ave.", "ZkoZ": "Jennifer", "BRFA": "Cochrun", "0000": "", "_mtime": "2021-05-06T20:01:43.232+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.250+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "Ht04dwDKQKW60ABK8cXoSg" }, { "5WRt": null, "U32i": "785-476-7035", "C8r5": "Cochrun", "vD1f": "Carla", "oX1v": "542372", "x5JS": "400963", "L433": null, "93Kj": "√", "cq4A": 145, "amQR": "140984", "hxJg": "159494", "1Wg9": 15, "234c": "67621", "rGUw": "KS", "3J9G": "Agra", "RCmU": "351 Kansas Ave.", "ZkoZ": "Starla", "BRFA": "Cochrun", "0000": "", "_mtime": "2021-05-06T20:01:43.232+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.250+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "N5rFSdpXTiafsFtKORS2hg" }, { "5WRt": null, "U32i": "913-522-6469", "C8r5": "Crouse", "vD1f": "Terese", "oX1v": "542372", "x5JS": "400963", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "140984", "hxJg": "30543", "1Wg9": 14, "234c": "67226", "rGUw": "KS", "3J9G": "Bel Aire", "RCmU": "4234 Saint James Court", "ZkoZ": "Scottie", "BRFA": "Crouse", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.250+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "f_54wdSeRM6j1Y8bXyCPGw" }, { "5WRt": null, "U32i": "913-522-6469", "C8r5": "Crouse", "vD1f": "Terese", "oX1v": "542372", "x5JS": "444289", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "140984", "hxJg": "426422", "1Wg9": 12, "234c": "67226", "rGUw": "KS", "3J9G": "Bel Aire", "RCmU": "4234 Saint James Court", "ZkoZ": "Serenity", "BRFA": "Crouse", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.250+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "EkXRtYIjSda8xFlf36R5Gw" }, { "5WRt": null, "U32i": "785-332-4565", "C8r5": "Culwell", "vD1f": "Toni", "oX1v": "542372", "x5JS": "590718", "L433": null, "93Kj": "√", "cq4A": 145, "amQR": "827153", "hxJg": "30543", "1Wg9": 14, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "25258 HWY 25", "ZkoZ": "Dorian", "BRFA": "Culwell", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.250+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "VP9koIRlSEW-t5qmI-Up1Q" }, { "5WRt": null, "U32i": "785-533-1588", "C8r5": "Craig", "vD1f": "Natasha", "oX1v": "542372", "x5JS": "400963", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "140984", "hxJg": "687388", "1Wg9": 13, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "388 2nd St.", "ZkoZ": "Mckenna", "BRFA": "Gardner", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.250+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "IEiMO8RwTQauTNJjuRSGtw" }, { "5WRt": null, "U32i": "316-665-0283", "C8r5": "Horst", "vD1f": "Chris", "oX1v": "542372", "x5JS": "590718", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "827153", "hxJg": "426422", "1Wg9": 12, "234c": "67212", "rGUw": "KS", "3J9G": "Wichita", "RCmU": "4221 W Edminster St.", "ZkoZ": "Jesse", "BRFA": "Horst", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.251+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "PxvyMbgCSxWXaS1lb00f5g" }, { "5WRt": null, "U32i": "316-665-0283", "C8r5": "Horst", "vD1f": "Chris", "oX1v": "542372", "x5JS": "400963", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "827153", "hxJg": "30543", "1Wg9": 14, "234c": "67212", "rGUw": "KS", "3J9G": "Wichita", "RCmU": "4221 W Edminster St.", "ZkoZ": "Seth", "BRFA": "Horst", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.251+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "WenkUJWOTby7q3NUw2rKNQ" }, { "U32i": "785-626-2999", "C8r5": "Popp", "vD1f": "Jenny", "oX1v": "542372", "x5JS": "444289", "L433": 50, "93Kj": "√", "5WRt": 50, "cq4A": 45, "amQR": "827153", "hxJg": "30543", "1Wg9": 14, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "508 S. 1st St.", "ZkoZ": "Asa", "BRFA": "Popp", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.251+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "JjIXusiyQmm7StfufViXSA" }, { "U32i": "785-626-2999", "C8r5": "Popp", "vD1f": "Jenny", "oX1v": "542372", "x5JS": "590718", "L433": 50, "93Kj": "√", "5WRt": 50, "cq4A": 45, "amQR": "827153", "hxJg": "399074", "1Wg9": 16, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "508 S. 1st St.", "ZkoZ": "Josh", "BRFA": "Popp", "0000": "", "_mtime": "2021-05-06T20:01:43.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.251+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "d-eRkQDiQ0aVW3Ai1O18qg" }, { "5WRt": null, "U32i": "785-656-0020", "C8r5": "Rothchild", "vD1f": "Kasiah", "oX1v": "542372", "x5JS": "590718", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "140984", "hxJg": "687388", "1Wg9": 13, "234c": "67672", "rGUw": "KS", "3J9G": "WaKeeney", "RCmU": "732 N 3rd St.", "ZkoZ": "Kallan", "BRFA": "Rothchild", "0000": "", "_mtime": "2021-05-06T19:47:29.232+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.251+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "L3ADLpUUQRiStCst7JUNDw" }, { "5WRt": null, "U32i": "785-626-2641", "C8r5": "Sayre", "vD1f": "Michael", "oX1v": "542372", "x5JS": "200454", "L433": null, "93Kj": "√", "cq4A": 145, "amQR": "827153", "hxJg": "159494", "1Wg9": 15, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "14696 Beaver Creek Rd", "ZkoZ": "Draven", "BRFA": "Sayre", "0000": "", "_mtime": "2021-05-06T19:47:29.232+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.251+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "EhYfn7boSCix2QKIqCpJFg" }, { "5WRt": null, "U32i": "316-644-9349", "C8r5": "Stark", "vD1f": "Tracy", "oX1v": "542372", "x5JS": "590718", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "140984", "hxJg": "687388", "1Wg9": 13, "234c": "67211", "rGUw": "KS", "3J9G": "Wichita", "RCmU": "1416 Greenwood", "ZkoZ": "Makenzie", "BRFA": "Stark", "0000": "", "_mtime": "2021-05-06T19:47:29.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.251+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "Gt-rppflRYitxkR8AsGRcA" }, { "5WRt": null, "U32i": "316-644-9349", "C8r5": "Stark", "vD1f": "Tracy", "oX1v": "542372", "x5JS": "590718", "L433": 100, "93Kj": "√", "cq4A": 45, "amQR": "140984", "hxJg": "159494", "1Wg9": 15, "234c": "67211", "rGUw": "KS", "3J9G": "Wichita", "RCmU": "1416 Greenwood", "ZkoZ": "Meghan", "BRFA": "Stark", "0000": "", "_mtime": "2021-05-06T19:47:29.233+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.252+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "Qk8uaxjKT-e7tayaAVWxNw" }, { "5WRt": null, "U32i": "785-769-3089", "C8r5": "Ziegler", "vD1f": "Lance & Libby", "oX1v": "542372", "x5JS": "444289", "L433": 95, "93Kj": "√", "cq4A": 50, "amQR": "140984", "hxJg": "426422", "1Wg9": 12, "234c": "67672", "rGUw": "KS", "3J9G": "Wakeeney", "RCmU": "137 N. 8th", "ZkoZ": "Bailey", "BRFA": "Ziegler", "0000": "", "_mtime": "2021-05-06T19:47:00.161+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-05-06T19:43:24.252+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "GzvSZeSAQruXxlQEsqHWcw" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:47:42.769+00:00", "_ctime": "2021-05-06T19:44:25.815+00:00", "_id": "WLPnKLgjTli0X2s8lYLI1w", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Blank", "vD1f": "Tyler & Emily", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "30543", "1Wg9": 14, "234c": "66951", "rGUw": "KS", "3J9G": "Kensington", "RCmU": "101 S. Adams St.", "ZkoZ": "KensLy", "BRFA": "Blank" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:47:51.620+00:00", "_ctime": "2021-05-06T19:44:25.815+00:00", "_id": "UbGVMRSUR4qLWodYqQu9MQ", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Branham", "vD1f": "Stephanie", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "200454", "L433": 100, "cq4A": 45, "amQR": "140984", "hxJg": "439324", "1Wg9": 17, "234c": "68967", "rGUw": "NE", "3J9G": "Oxford", "RCmU": "713 Ogden St.", "ZkoZ": "Kyleah", "BRFA": "Branham" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:47:53.367+00:00", "_ctime": "2021-05-06T19:44:25.815+00:00", "_id": "ZBlLZpMQT5SSW7WahsbH5Q", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Carlson", "vD1f": "Shane", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "444289", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "30543", "1Wg9": 14, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "711 S. First St.", "ZkoZ": "McKylie", "BRFA": "Carlson" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:47:54.091+00:00", "_ctime": "2021-05-06T19:44:25.816+00:00", "_id": "Yp6AUXhTSbiNIHqbG2p5lw", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Cochrun", "vD1f": "Carla", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "554267", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "30543", "1Wg9": 14, "234c": "67621", "rGUw": "KS", "3J9G": "Agra", "RCmU": "351 Kansas Ave.", "ZkoZ": "Jennifer", "BRFA": "Cochrun" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:47:54.603+00:00", "_ctime": "2021-05-06T19:44:25.816+00:00", "_id": "LfYMflIXTCmvfmXXSM93Tw", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Cochrun", "vD1f": "Carla", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "554267", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "159494", "1Wg9": 15, "234c": "67621", "rGUw": "KS", "3J9G": "Agra", "RCmU": "351 Kansas Ave.", "ZkoZ": "Starla", "BRFA": "Cochrun" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:47:55.376+00:00", "_ctime": "2021-05-06T19:44:25.816+00:00", "_id": "LLPJZOrDR0Goh2FaqPJ85A", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Coulson", "vD1f": "Jennifer", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": 100, "cq4A": 45, "amQR": "827153", "hxJg": "462406", "1Wg9": 11, "234c": "81212", "rGUw": "CO", "3J9G": "Canon City", "RCmU": "684 Brooke Ct.", "ZkoZ": "Jonathan", "BRFA": "Coulson" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:04.315+00:00", "_ctime": "2021-05-06T19:44:25.816+00:00", "_id": "RHc2PRYUSMaELXcEkwn8Sg", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Coulson", "vD1f": "Jennifer", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "400963", "L433": 100, "cq4A": 45, "amQR": "827153", "hxJg": "30543", "1Wg9": 14, "234c": "81212", "rGUw": "CO", "3J9G": "Canon City", "RCmU": "684 Brooke Ct.", "ZkoZ": "Samuel", "BRFA": "Coulson" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:04.315+00:00", "_ctime": "2021-05-06T19:44:25.816+00:00", "_id": "BWhYyfvAQGmS5PWOmnXfXQ", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Fischer", "vD1f": "Brian", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": null, "amQR": "140984", "hxJg": "687388", "1Wg9": 12, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "277 West. G St.", "ZkoZ": "Natalie", "BRFA": "Fischer" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:04.315+00:00", "_ctime": "2021-05-06T19:44:25.816+00:00", "_id": "Mt-pY0tmTAWv8RB3rPOhTw", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Fischer", "vD1f": "Brian", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": null, "amQR": "827153", "hxJg": "30543", "1Wg9": 14, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "277 West. G St.", "ZkoZ": "Nathan", "BRFA": "Fischer" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-14T15:56:27.690+00:00", "_ctime": "2021-05-06T19:44:25.817+00:00", "_id": "KLpdSueERUeN1dmdClV3XA", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Henry", "vD1f": "Stacey", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "924430", "L433": 100, "cq4A": 45, "amQR": "140984", "hxJg": "439324", "1Wg9": 17, "234c": "68967", "rGUw": "NE", "3J9G": "Oxford", "RCmU": "209 W Cambridge St.", "ZkoZ": "Hannah", "BRFA": "Henry" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:04.315+00:00", "_ctime": "2021-05-06T19:44:25.817+00:00", "_id": "csrHFyqoQYqfUuKdyTPrDQ", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Kalick", "vD1f": "Domenica", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "687388", "1Wg9": 13, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "225 West H St.", "ZkoZ": "Kaylee", "BRFA": "Kalick" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:04.315+00:00", "_ctime": "2021-05-06T19:44:25.817+00:00", "_id": "XmbDuIZzTwmVwjfsRDkwog", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Overmiller", "vD1f": "Tara", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": 100, "cq4A": 45, "amQR": "827153", "hxJg": "30543", "1Wg9": 14, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "515 West E St.", "ZkoZ": "Ethan", "BRFA": "Knowles" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.817+00:00", "_id": "WZkeG0z5QsyXKzMpq2qqOQ", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Bishop", "vD1f": "Lois", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": 100, "cq4A": 45, "amQR": "140984", "hxJg": "439324", "1Wg9": 17, "234c": "68926", "rGUw": "NE", "3J9G": "Beaver City", "RCmU": "70625 Rd 431", "ZkoZ": "Ashley", "BRFA": "Marcum" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.817+00:00", "_id": "QVoJsTYDQXG7f0mAHe05ug", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Moon", "vD1f": "Darin & Stacey", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "444289", "L433": 100, "cq4A": 45, "amQR": "827153", "hxJg": "439324", "1Wg9": 17, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "300 Morse Dr.", "ZkoZ": "Eric", "BRFA": "Moon" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.817+00:00", "_id": "TEkT5jMrT3m3UPR-IVQNFg", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Poels", "vD1f": "Tami", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "687388", "1Wg9": 13, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "50 Sunset Dr.", "ZkoZ": "Gabbi", "BRFA": "Poels" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.817+00:00", "_id": "e3Tsmr4GQImbCL8wx7klxw", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Quaring", "vD1f": "Philip & Julie", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": 145, "amQR": "827153", "hxJg": "426422", "1Wg9": 12, "234c": "68876", "rGUw": "NE", "3J9G": "Shelton", "RCmU": "19995 Sioux Rd", "ZkoZ": "Aaron", "BRFA": "Quaring" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.818+00:00", "_id": "XmstTSI7RTCkDzfxnHF5Uw", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Quaring", "vD1f": "Philip & Julie", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "400963", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "30543", "1Wg9": 14, "234c": "68876", "rGUw": "NE", "3J9G": "Shelton", "RCmU": "19995 Sioux Rd", "ZkoZ": "Anna", "BRFA": "Quaring" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.818+00:00", "_id": "W_Wnt3wCS2eIOMdb0ZYFwA", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Sayre", "vD1f": "Michael", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": 145, "amQR": "827153", "hxJg": "687388", "1Wg9": 13, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "14696 Beaver Creek Rd", "ZkoZ": "Malachi", "BRFA": "Sayre" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.818+00:00", "_id": "H8Yh3SalTQymmYXnpAdqfg", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Hueneke", "vD1f": "Kelli", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "400963", "L433": 100, "cq4A": 45, "amQR": "827153", "hxJg": "939686", "1Wg9": 18, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "265 S. 6th St.", "ZkoZ": "Nick", "BRFA": "Schemper" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-14T15:55:51.899+00:00", "_ctime": "2021-05-06T19:44:25.818+00:00", "_id": "WU9JhGdiSeCyTXN_XVpQ3A", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Flavin", "vD1f": "Jaime", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "939686", "1Wg9": 18, "234c": "67646", "rGUw": "KS", "3J9G": "Logan", "RCmU": "212 E Main St.", "ZkoZ": "Haylee", "BRFA": "Tien" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.818+00:00", "_id": "RJ3P6FN6SHqFofmTp2vgVg", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Tweedy", "vD1f": "Dylan & Deidra", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "444289", "L433": null, "cq4A": null, "amQR": "140984", "hxJg": "687388", "1Wg9": 13, "234c": "66951", "rGUw": "KS", "3J9G": "Kensington", "RCmU": "19072 A Rd.", "ZkoZ": "Peyton", "BRFA": "Tweedy" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.818+00:00", "_id": "UKXPBI1OSSCfumFeHeixHA", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "VanDerVeen", "vD1f": "Tiffany", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "444289", "L433": null, "cq4A": 145, "amQR": "140984", "hxJg": "687388", "1Wg9": 12, "234c": "67661", "rGUw": "KS", "3J9G": "Phillipsburg", "RCmU": "21 E. Limestone Rd", "ZkoZ": "Chloe", "BRFA": "VanDerVeen" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.819+00:00", "_id": "Rar2L9iaQnmbfULX0bEGKQ", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Webb", "vD1f": "Lauren", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "444289", "L433": 100, "cq4A": 45, "amQR": "140984", "hxJg": "687388", "1Wg9": 14, "234c": "66951", "rGUw": "KS", "3J9G": "Kensington", "RCmU": "117 S. Adams St.", "ZkoZ": "April", "BRFA": "Webb" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:11.354+00:00", "_ctime": "2021-05-06T19:44:25.819+00:00", "_id": "KiWdsCRkQKukrQpXu0MRQA", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Withington", "vD1f": "Mathew", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "444289", "L433": 100, "cq4A": 45, "amQR": "140984", "hxJg": "30543", "1Wg9": 14, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "19286 Rd 19", "ZkoZ": "Clair", "BRFA": "Withington" }, { "5WRt": null, "0000": null, "_mtime": "2021-05-06T19:48:16.901+00:00", "_ctime": "2021-05-06T19:44:25.819+00:00", "_id": "QS60jJowQEi-NCLtxV4lxw", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "C8r5": "Withington", "vD1f": "Mathew", "wABI": "", "INlR": "", "YWVj": "", "d6xz": "√", "oX1v": "843365", "x5JS": "590718", "L433": 100, "cq4A": 45, "amQR": "827153", "hxJg": "399074", "1Wg9": 16, "234c": "67730", "rGUw": "KS", "3J9G": "Atwood", "RCmU": "19286 Rd 19", "ZkoZ": "Drew", "BRFA": "Withington" }, { "_mtime": "2021-05-13T18:05:26.797+00:00", "_ctime": "2021-05-13T18:05:26.797+00:00", "_id": "MhFmtVPkT1SuH7IyHzUC8g", "oX1v": "843365", "C8r5": "Baggins", "vD1f": "Biblo", "x5JS": "590718", "amQR": "140984", "hxJg": "426422", "1Wg9": 99, "rGUw": "NE", "234c": "78978", "3J9G": "Hobbiton", "RCmU": "Shire", "0000": "2021-05-13", "ZkoZ": "Frodo", "BRFA": "Baggins" }, { "_mtime": "2021-05-14T16:48:14.064+00:00", "_ctime": "2021-05-14T16:48:14.064+00:00", "_id": "UIJigfrwSZiOhfDiqPizxg", "oX1v": "542372", "vD1f": "Rickky", "C8r5": "Micky", "x5JS": "200454", "amQR": "140984", "hxJg": "426422", "1Wg9": 89087, "234c": "78658", "rGUw": "KS", "3J9G": "Over the Rainbow", "RCmU": "Somewhere", "ZkoZ": "Frodo", "BRFA": "Braggins" }, { "_mtime": "2021-05-14T16:49:05.834+00:00", "_ctime": "2021-05-14T16:49:05.834+00:00", "_id": "EgMUvK7MSXGQLJNH5j1cUA", "0000": "2021-05-14", "oX1v": "542372", "vD1f": "Rickky", "C8r5": "Micky", "x5JS": "200454", "amQR": "140984", "hxJg": "426422", "1Wg9": 89087, "234c": "78658", "rGUw": "KS", "3J9G": "Over the Rainbow", "RCmU": "Somewhere", "ZkoZ": "Frodo", "BRFA": "Braggins" }, { "_mtime": "2021-05-14T21:41:56.394+00:00", "_ctime": "2021-05-14T21:41:56.394+00:00", "_id": "CLzNIoc6RCKGhQZUY3JgxQ", "0000": "2021-05-14", "oX1v": "542372", "vD1f": "THERE", "C8r5": "sldkfj", "x5JS": "590718", "amQR": "140984", "hxJg": "426422", "1Wg9": 987986789, "234c": "98697", "rGUw": "NE", "3J9G": "HERE", "RCmU": "TOOO", "ZkoZ": "Graggin", "BRFA": "Hobbit" } ], "name": "Camp Registration", "_id": "tXid" }, { "is_header_locked": false, "summary_configs": { "N25q": "Average" }, "id_row_map": { }, "views": [ { "colors": { }, "summaries": { }, "link_rows": { }, "formula_rows": { }, "rows": [], "hidden_columns": [], "colorbys": { "color_by_rules": [], "type": "" }, "groups": [], "group_rows": [], "groupbys": [ { "count_type": "", "sort_type": "up", "column_key": "N25q" } ], "sorts": [], "filters": [], "filter_conjunction": "And", "is_locked": false, "type": "table", "name": "Default View", "_id": "0000" } ], "columns": [ { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 276, "editable": true, "name": "Title", "type": "text", "key": "0000" }, { "permitted_users": [], "permission_type": "", "data": null, "draggable": true, "resizable": true, "width": 373, "editable": true, "name": "Description", "type": "text", "key": "35rA" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "thousands": "no", "decimal": "dot", "enable_precision": false, "precision": 2, "format": "number" }, "draggable": true, "resizable": true, "width": 101, "editable": true, "name": "Chair", "type": "number", "key": "N25q" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "borderColor": "#DC556A", "textColor": "#FFFFFF", "color": "#F4667C", "id": "392615", "name": "No" }, { "borderColor": "#4EB867", "textColor": "#FFFFFF", "color": "#59CB74", "id": "925568", "name": "Yes" } ] }, "draggable": true, "resizable": true, "width": 114, "editable": true, "name": "Identity", "type": "single-select", "key": "lJs0" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "borderColor": "#4EB867", "textColor": "#FFFFFF", "color": "#59CB74", "id": "511762", "name": "Yes" }, { "borderColor": "#DC556A", "textColor": "#FFFFFF", "color": "#F4667C", "id": "86147", "name": "No" } ] }, "draggable": true, "resizable": true, "width": 90, "editable": true, "name": "Walk", "type": "single-select", "key": "oSUH" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "borderColor": "#4EB867", "textColor": "#FFFFFF", "color": "#59CB74", "id": "359404", "name": "Yes" }, { "borderColor": "#DC556A", "textColor": "#FFFFFF", "color": "#F4667C", "id": "660686", "name": "No" } ] }, "draggable": true, "resizable": true, "width": 87, "editable": true, "name": "Talk", "type": "single-select", "key": "T8S2" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "borderColor": "#4EB867", "textColor": "#FFFFFF", "color": "#59CB74", "id": "792630", "name": "Yes" }, { "borderColor": "#DC556A", "textColor": "#FFFFFF", "color": "#F4667C", "id": "298667", "name": "No" } ] }, "draggable": true, "resizable": true, "width": 96, "editable": true, "name": "Feed", "type": "single-select", "key": "rMYG" }, { "formatter": { "_owner": null, "props": { }, "ref": null, "key": null }, "editor": { "_owner": null, "props": { }, "ref": null, "key": null }, "permitted_users": [], "permission_type": "", "data": { "options": [ { "borderColor": "#DC556A", "textColor": "#FFFFFF", "color": "#F4667C", "id": "530923", "name": "No" }, { "borderColor": "#4EB867", "textColor": "#FFFFFF", "color": "#59CB74", "id": "56990", "name": "Yes" } ] }, "draggable": true, "resizable": true, "width": 105, "editable": true, "name": "Clean", "type": "single-select", "key": "rTJ2" }, { "permitted_users": [], "permission_type": "", "data": { "link_id": "N9Zx", "is_internal_link": true, "other_table_id": "d1oI", "table_id": "p6v0", "display_column_key": "0000" }, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Students", "type": "link", "key": "L2DY" }, { "permitted_users": [], "permission_type": "", "data": { "link_id": "5UNS", "is_internal_link": true, "other_table_id": "d1oI", "table_id": "p6v0", "display_column_key": "0000" }, "draggable": true, "resizable": true, "width": 200, "editable": true, "name": "Students Finished", "type": "link", "key": "aYz0" } ], "rows": [ { "gu4x": "Chris Cochrun", "tT0Y": "6/5/2020 2:24 PM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "792630", "T8S2": "359404", "oSUH": "511762", "lJs0": "392615", "N25q": 3, "35rA": " Examples: Ice Cream outing, movies, camping trip. 3 times a month. Spend significant time with other teens with the supervision of a TFC Staff member. This will help to teach this student how to love on peers.", "0000": "\"Time With\" a leader and other/younger teens.", "_mtime": "2021-06-23T20:33:20.527+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.479+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "XUGHVOl-QumFYwP-CkEvkg" }, { "gu4x": "Chris Cochrun", "tT0Y": "6/5/2020 2:47 PM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "56990", "rMYG": "298667", "T8S2": "660686", "oSUH": "86147", "lJs0": "392615", "N25q": 1, "35rA": "Give a Gospel presentation to the student when they are ready and repentant. ", "0000": "Present the Gospel", "_mtime": "2021-06-23T20:28:46.479+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.479+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "LTifWMgGQK2m20m_7Mv2lg" }, { "gu4x": "Chris Cochrun", "tT0Y": "6/5/2020 2:50 PM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "792630", "T8S2": "660686", "oSUH": "86147", "lJs0": "392615", "N25q": 1, "35rA": "Examples: Something you're learning. Something you think would be encouraging to them. Do this once week for at least a month or two. When they are Responsive, Ready, or Repentant.", "0000": "Share scripture with them", "_mtime": "2021-06-23T20:28:46.479+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.479+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "JE1kgxuXSnWSS_gWl0TJTw" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:19 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "86147", "lJs0": "925568", "N25q": 1, "35rA": "Examples: To become aware of God's love. Receptive to the Gospel. Curious about Jesus. Attentive to the Word.", "0000": "Pray for them weekly", "_mtime": "2021-06-23T20:28:46.479+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.479+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "arwOYHQiSxm5WCWy-IWbwA" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:21 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "86147", "lJs0": "925568", "N25q": 1, "35rA": "Example: \"33 things that happen at Salvation Booklet\" Find out what they understand and how it should be changing them.", "0000": "Follow up from presenting the Gospel", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "Ci28j7ziSHOxKbreZkwAcA" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:22 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 1, "35rA": "Examples: Start a non-religious conversation with them. Sit with them at a meal. Encourage them on something they've done or are in. Send them a text telling them they did good at a ballgame. This is an ongoing task.", "0000": "Be their friend them in at least 3 ways this week", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "SVZBAJNeQEK36lQjzlKWSg" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:23 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 1, "35rA": "Examples: Build something or fix something. Getting groceries. Play disk golf. Coffee/Coke.", "0000": "Invite them to join you doing something", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "WdhPTDLqRdaQymy1xfUPew" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:23 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "359404", "oSUH": "86147", "lJs0": "392615", "N25q": 1, "35rA": "Examples: Pray with them on their birthdays. Pray with them when something hard is going on.", "0000": "Pray with them", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "VfbXWxLhRFiF6wgZ5D4OTw" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:24 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "86147", "lJs0": "925568", "N25q": 2, "0000": "Go through Disciplemaker Living Guide with someone in Chair 3", "_mtime": "2021-06-28T22:29:02.841+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "Wc45DYLDR_-aCDbfi97wFw" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:24 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "86147", "lJs0": "925568", "N25q": 2, "35rA": "Show them that they matter and help them to see how God sees them.", "0000": "Send a note of encouragement or text saying what you see in them", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "Xc3Bilw9SSCRIn6LQTwsUA" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:25 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 2, "0000": "Go through One Another Living Guide with someone in Chair 3", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "AGqrB5QWQGyGtiBHdssblw" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:26 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 2, "35rA": "Inviting them to be on a mission trip will help them to make a lot of good \"walking\" choices and teach them how Christians live day in and day out.", "0000": "Go on a Mission Trip", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "bTBuygp9TPet4PzCmLBGHw" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:26 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "359404", "oSUH": "511762", "lJs0": "392615", "N25q": 2, "35rA": "Inviting them to teach others is a great step at understanding that our faith is one to be shared and that others are incredibly important to Jesus.", "0000": "Devo leader in training at Camp", "_mtime": "2021-06-23T20:28:46.480+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.480+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "ACxNHZibTQWgmnh7kv-SxA" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:27 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "359404", "oSUH": "86147", "lJs0": "392615", "N25q": 2, "0000": "Go through John 3:16 Living Guide with someone in Chair 3", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "XOvhHXdmRxmpu3SZgnuaxQ" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:29 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "792630", "T8S2": "660686", "oSUH": "86147", "lJs0": "392615", "N25q": 2, "35rA": "Teaching them to feed themselves by reading scripture on their own is one of the most vital skills. Be ready to encourage them and check in with them over and over with this task. It is likely to be ongoing and one to pray for constantly.", "0000": "Personal Bible Reading Plan", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "TrH8QP0XQ323cNoIlkFo0g" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:30 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "792630", "T8S2": "660686", "oSUH": "86147", "lJs0": "392615", "N25q": 2, "35rA": "Doing a Bible study with you or another leader will help them to see HOW to read scripture. Since the Bible is such an old and complicated book, we forget that it is an acquired taste to be read.", "0000": "Bible study with a Leader", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "AKZTxyzHS8yrL4XKXOFqrg" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:31 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "792630", "T8S2": "660686", "oSUH": "86147", "lJs0": "392615", "N25q": 2, "35rA": "Inviting them to begin to lead forces teens to dive deeper. In order to help and lead others, they have to know their stuff. Ask them to step up.", "0000": "Ministry Team", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "aWCiB6AWR6KVSe-GP51uBg" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:31 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "86147", "lJs0": "925568", "N25q": 3, "0000": "Disciplemaking Is Relationships Training ", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "aA2ayDbhSJ-gdLxoHhzA1w" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:32 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "86147", "lJs0": "925568", "N25q": 3, "0000": "Disciplemaker Living Guide with someone in Chair 2/3", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "SOJk-Do9QX6NSV6fT6TVtg" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:32 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 3, "0000": "Ministry is Relationships Training", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "E1S7W09eQ7-FhMM46K3UjQ" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:34 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 3, "35rA": "The One Another Living guide is to help teens in chairs 2 and 3 to be able to share life well with their peers who are in chair 1 and the beginning stages of chair 2. The idea is mostly that they are a witness by the way they live. This guide assists them in understanding how to do that.", "0000": "One Another Living guide with someone in Chair 2/3,", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "D1EZ022pQzi0m2rw2sOwrg" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:35 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 3, "35rA": "Devo leaders at camp are one of the greatest places to learn to walk more like Jesus. Continue to encourage them to do this each year!", "0000": "Devo Leader at Camp", "_mtime": "2021-06-23T20:28:46.481+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.481+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "U7uDtr0UQ6ahQCw-ZbGDYg" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:35 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "660686", "oSUH": "511762", "lJs0": "392615", "N25q": 3, "35rA": "If they aren't on Ministry Team, get them there. As someone in chair 3 they should be sharing with others how walking like Christ is!", "0000": "Ministry Team", "_mtime": "2021-06-23T20:28:46.482+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.482+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "JjqGM7maQ-KjNIF8Om2o9A" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:36 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "359404", "oSUH": "86147", "lJs0": "392615", "N25q": 3, "35rA": "This training will help teens know how to share Jesus in the context of relationships.", "0000": "Evangelism is Relationships Training", "_mtime": "2021-06-23T20:28:46.482+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.482+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "AriBMWzPR_OMB0QJ-5e0Dg" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:37 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "359404", "oSUH": "86147", "lJs0": "392615", "N25q": 3, "35rA": "This guide is for those in chair 2 and 3 to teach them how to share with peers in chair 1 and the beginning stages of chair 3.", "0000": "John 3:16 Living Guide with someone in Chair 2/3", "_mtime": "2021-06-23T20:28:46.482+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.482+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "b74cz_oUREeR-8EblvPM0Q" }, { "gu4x": "Chris Cochrun", "tT0Y": "7/27/2020 11:38 AM", "YdOF": "Chris Cochrun", "D4Uf": "9/12/2020 5:18 PM", "rTJ2": "530923", "rMYG": "298667", "T8S2": "359404", "oSUH": "86147", "lJs0": "392615", "N25q": 3, "35rA": "As someone in chair 3 they should be consistently praying for their peers. Encourage them and check in with them weekly so this becomes a habit.", "0000": "Choose 3 people to pray for specifically", "_mtime": "2021-06-23T20:28:46.482+00:00", "_last_modifier": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_ctime": "2021-06-23T20:28:46.482+00:00", "_creator": "c3c43ec48b8541f18b9f611505e07465@auth.local", "_participants": [], "_id": "ArAr8ZygTHGAT2JE9lAMXQ" } ], "name": "Action Steps", "_id": "d1oI" } ], "scripts": [], "description": { "text": "This is the main student information base. It contains all info related specifically to students. All their registrations and other info is in the various tables here. " }, "links": [ { "table2_table1_map": { "PYlZheMSQia5Kda-5WyV4Q": [ "JbLc0JaeQ6Ou3_j-kZYSDQ" ] }, "table2_id": "vuE9", "table1_table2_map": { "JbLc0JaeQ6Ou3_j-kZYSDQ": [ "PYlZheMSQia5Kda-5WyV4Q" ] }, "table1_id": "p6v0", "_id": "5uSH" }, { "table2_table1_map": { "dYnplgB-RAypsRnj_4uD1A": [ "Oj2clOYUQ4ij4x0Fe6WBug" ] }, "table2_id": "p6v0", "table1_table2_map": { "Oj2clOYUQ4ij4x0Fe6WBug": [ "dYnplgB-RAypsRnj_4uD1A" ] }, "table1_id": "Im7V", "_id": "9hKp" }, { "table2_table1_map": { "IHlyZjUySi2CMmoD7kZl4A": [], "Mt-pY0tmTAWv8RB3rPOhTw": [ "E5zE60RLSvGpo5dbufQ6yg" ] }, "table2_id": "tXid", "table1_table2_map": { "UrCVN1yXRBCBOSErbwy6Vw": [], "E5zE60RLSvGpo5dbufQ6yg": [ "Mt-pY0tmTAWv8RB3rPOhTw" ] }, "table1_id": "p6v0", "_id": "RH1t" }, { "table2_table1_map": { "HRTFDECtTR6SYRTDot6wdQ": [ "Xc3Bilw9SSCRIn6LQTwsUA", "AGqrB5QWQGyGtiBHdssblw", "ACxNHZibTQWgmnh7kv-SxA", "bTBuygp9TPet4PzCmLBGHw", "TrH8QP0XQ323cNoIlkFo0g", "AKZTxyzHS8yrL4XKXOFqrg", "aWCiB6AWR6KVSe-GP51uBg", "XOvhHXdmRxmpu3SZgnuaxQ", "Wc45DYLDR_-aCDbfi97wFw" ] }, "table2_id": "p6v0", "table1_table2_map": { "Wc45DYLDR_-aCDbfi97wFw": [ "HRTFDECtTR6SYRTDot6wdQ" ], "XOvhHXdmRxmpu3SZgnuaxQ": [ "HRTFDECtTR6SYRTDot6wdQ" ], "aWCiB6AWR6KVSe-GP51uBg": [ "HRTFDECtTR6SYRTDot6wdQ" ], "AKZTxyzHS8yrL4XKXOFqrg": [ "HRTFDECtTR6SYRTDot6wdQ" ], "TrH8QP0XQ323cNoIlkFo0g": [ "HRTFDECtTR6SYRTDot6wdQ" ], "bTBuygp9TPet4PzCmLBGHw": [ "HRTFDECtTR6SYRTDot6wdQ" ], "ACxNHZibTQWgmnh7kv-SxA": [ "HRTFDECtTR6SYRTDot6wdQ" ], "AGqrB5QWQGyGtiBHdssblw": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Xc3Bilw9SSCRIn6LQTwsUA": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, "table1_id": "d1oI", "_id": "N9Zx" }, { "table2_table1_map": { "HRTFDECtTR6SYRTDot6wdQ": [ "LTifWMgGQK2m20m_7Mv2lg", "JE1kgxuXSnWSS_gWl0TJTw", "arwOYHQiSxm5WCWy-IWbwA", "Ci28j7ziSHOxKbreZkwAcA", "SVZBAJNeQEK36lQjzlKWSg", "WdhPTDLqRdaQymy1xfUPew", "VfbXWxLhRFiF6wgZ5D4OTw" ] }, "table2_id": "p6v0", "table1_table2_map": { "Wc45DYLDR_-aCDbfi97wFw": [], "VfbXWxLhRFiF6wgZ5D4OTw": [ "HRTFDECtTR6SYRTDot6wdQ" ], "WdhPTDLqRdaQymy1xfUPew": [ "HRTFDECtTR6SYRTDot6wdQ" ], "SVZBAJNeQEK36lQjzlKWSg": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Ci28j7ziSHOxKbreZkwAcA": [ "HRTFDECtTR6SYRTDot6wdQ" ], "arwOYHQiSxm5WCWy-IWbwA": [ "HRTFDECtTR6SYRTDot6wdQ" ], "JE1kgxuXSnWSS_gWl0TJTw": [ "HRTFDECtTR6SYRTDot6wdQ" ], "LTifWMgGQK2m20m_7Mv2lg": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, "table1_id": "d1oI", "_id": "5UNS" } ], "statistics": [ { "column_groupby_mutiple_numeric_column": false, "y_axis_label_color": "#2a67d1", "y_axis_show_label": true, "y_axis_summary_method": null, "y_axis_summary_type": "count", "y_axis_column_key": null, "x_axis_include_empty": null, "x_axis_geolocation_granularity": null, "x_axis_date_granularity": "year", "x_axis_column_key": "Qeek", "column_groupby_geolocation_granularity": null, "column_groupby_date_granularity": null, "column_groupby_column_key": null, "show_percent": true, "groupby_include_empty_cells": null, "show_legend": true, "summary_method": null, "summary_column_key": null, "summary_type": "count", "groupby_geolocation_granularity": null, "groupby_date_granularity": "year", "groupby_column_key": "Qeek", "view_id": "0000", "table_id": "p6v0", "type": "chart_pie", "name": "Age by Year", "_id": "mL6Q" }, { "column_groupby_numeric_column_keys": null, "column_groupby_mutiple_numeric_column": null, "column_groupby_geolocation_granularity": null, "column_groupby_date_granularity": null, "column_groupby_column_key": "1DNP", "x_axis_include_empty": null, "y_axis_use_stack": null, "y_axis_label_color": "#2a67d1", "y_axis_show_label": true, "y_axis_summary_method": null, "y_axis_column_key": null, "y_axis_summary_type": "count", "x_axis_geolocation_granularity": null, "x_axis_date_granularity": null, "x_axis_column_key": "A3Vs", "view_id": "0000", "table_id": "p6v0", "type": "chart_bar", "name": "Students by Group and Gender", "_id": "65Ct" } ], "format_version": 7, "version": 466 } #+end_SRC Now that we've got everything let's narrow it down to something that is more useful. This first one is to just get back the views of the Students table. #+begin_src restclient :results value :wrap SRC js GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/views/?table_name=Students Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjQ3Mzc3MjMsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.EdPVohSnV3QD8rGVXWnzUCT2pTDbqlahE0CuCgJEhq8 Accept: application/json; charset=utf-8; indent=4 #+end_src #+RESULTS: #+begin_SRC js { "views": [ { "_id": "0000", "name": "Default View", "type": "table", "is_locked": false, "filter_conjunction": "And", "filters": [], "sorts": [], "groupbys": [], "group_rows": [], "groups": [], "colorbys": { "type": "", "color_by_column": "", "color_by_rules": [] }, "hidden_columns": [], "rows": [], "formula_rows": {}, "link_rows": {}, "summaries": {}, "colors": {}, "row_height": "default" }, { "_id": "na7u", "name": "Grouped", "type": "table", "is_locked": false, "filter_conjunction": "And", "filters": [], "sorts": [], "groupbys": [ { "column_key": "A3Vs", "count_type": "", "sort_type": "up" } ], "group_rows": [], "groups": [], "colorbys": {}, "hidden_columns": [], "rows": [], "formula_rows": {}, "link_rows": {}, "summaries": {}, "colors": {} } ] } #+end_SRC Here we are getting all of the steps. #+begin_src restclient GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/rows/?table_name=Action Steps&view_id=0000 Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjUxNzU4NDMsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.WKWiQ2Q3vZprjHXNphAlm09u9kQ_SpMrBQ763vb7J58 Accept: application/json; charset=utf-8; indent=4 #+end_src #+RESULTS: #+BEGIN_SRC js { "rows": [ { "_id": "LTifWMgGQK2m20m_7Mv2lg", "_mtime": "2021-06-23T20:28:46.479+00:00", "Title": "Present the Gospel", "Description": "Give a Gospel presentation to the student when they are ready and repentant. ", "Chair": 1, "Identity": "No", "Walk": "No", "Talk": "No", "Feed": "No", "Clean": "Yes", "Students": [], "Students Finished": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, { "_id": "JE1kgxuXSnWSS_gWl0TJTw", "_mtime": "2021-06-23T20:28:46.479+00:00", "Title": "Share scripture with them", "Description": "Examples: Something you're learning. Something you think would be encouraging to them.\n\nDo this once week for at least a month or two. When they are Responsive, Ready, or Repentant.", "Chair": 1, "Identity": "No", "Walk": "No", "Talk": "No", "Feed": "Yes", "Clean": "No", "Students": [], "Students Finished": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, { "_id": "arwOYHQiSxm5WCWy-IWbwA", "_mtime": "2021-06-23T20:28:46.479+00:00", "Title": "Pray for them weekly", "Description": "Examples: To become aware of God's love. Receptive to the Gospel. Curious about Jesus. Attentive to the Word.", "Chair": 1, "Identity": "Yes", "Walk": "No", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, { "_id": "Ci28j7ziSHOxKbreZkwAcA", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Follow up from presenting the Gospel", "Description": "Example: \"33 things that happen at Salvation Booklet\"\nFind out what they understand and how it should be changing them.", "Chair": 1, "Identity": "Yes", "Walk": "No", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, { "_id": "SVZBAJNeQEK36lQjzlKWSg", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Be their friend them in at least 3 ways this week", "Description": "Examples: Start a non-religious conversation with them. Sit with them at a meal. Encourage them on something they've done or are in. Send them a text telling them they did good at a ballgame.\nThis is an ongoing task.", "Chair": 1, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, { "_id": "WdhPTDLqRdaQymy1xfUPew", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Invite them to join you doing something", "Description": "Examples: Build something or fix something. Getting groceries. Play disk golf. Coffee/Coke.", "Chair": 1, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, { "_id": "VfbXWxLhRFiF6wgZ5D4OTw", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Pray with them", "Description": "Examples: Pray with them on their birthdays. Pray with them when something hard is going on.", "Chair": 1, "Identity": "No", "Walk": "No", "Talk": "Yes", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [ "HRTFDECtTR6SYRTDot6wdQ" ] }, { "_id": "Wc45DYLDR_-aCDbfi97wFw", "_mtime": "2021-06-28T21:46:56.810+00:00", "Title": "Go through Disciplemaker Living Guide with someone in Chair 3", "Chair": 2, "Identity": "Yes", "Walk": "No", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "Xc3Bilw9SSCRIn6LQTwsUA", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Send a note of encouragement or text saying what you see in them", "Description": "Show them that they matter and help them to see how God sees them.", "Chair": 2, "Identity": "Yes", "Walk": "No", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "AGqrB5QWQGyGtiBHdssblw", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Go through One Another Living Guide with someone in Chair 3", "Chair": 2, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "bTBuygp9TPet4PzCmLBGHw", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Go on a Mission Trip", "Description": "Inviting them to be on a mission trip will help them to make a lot of good \"walking\" choices and teach them how Christians live day in and day out.", "Chair": 2, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "ACxNHZibTQWgmnh7kv-SxA", "_mtime": "2021-06-23T20:28:46.480+00:00", "Title": "Devo leader in training at Camp", "Description": "Inviting them to teach others is a great step at understanding that our faith is one to be shared and that others are incredibly important to Jesus.", "Chair": 2, "Identity": "No", "Walk": "Yes", "Talk": "Yes", "Feed": "No", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "XOvhHXdmRxmpu3SZgnuaxQ", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Go through John 3:16 Living Guide with someone in Chair 3", "Chair": 2, "Identity": "No", "Walk": "No", "Talk": "Yes", "Feed": "No", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "TrH8QP0XQ323cNoIlkFo0g", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Personal Bible Reading Plan", "Description": "Teaching them to feed themselves by reading scripture on their own is one of the most vital skills. Be ready to encourage them and check in with them over and over with this task. It is likely to be ongoing and one to pray for constantly.", "Chair": 2, "Identity": "No", "Walk": "No", "Talk": "No", "Feed": "Yes", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "AKZTxyzHS8yrL4XKXOFqrg", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Bible study with a Leader", "Description": "Doing a Bible study with you or another leader will help them to see HOW to read scripture. Since the Bible is such an old and complicated book, we forget that it is an acquired taste to be read.", "Chair": 2, "Identity": "No", "Walk": "No", "Talk": "No", "Feed": "Yes", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "aWCiB6AWR6KVSe-GP51uBg", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Ministry Team", "Description": "Inviting them to begin to lead forces teens to dive deeper. In order to help and lead others, they have to know their stuff. Ask them to step up.", "Chair": 2, "Identity": "No", "Walk": "No", "Talk": "No", "Feed": "Yes", "Clean": "No", "Students": [ "HRTFDECtTR6SYRTDot6wdQ" ], "Students Finished": [] }, { "_id": "XUGHVOl-QumFYwP-CkEvkg", "_mtime": "2021-06-23T20:33:20.527+00:00", "Title": "\"Time With\" a leader and other/younger teens.", "Description": " Examples: Ice Cream outing, movies, camping trip.\n\n3 times a month. Spend significant time with other teens with the supervision of a TFC Staff member. This will help to teach this student how to love on peers.", "Chair": 3, "Identity": "No", "Walk": "Yes", "Talk": "Yes", "Feed": "Yes", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "aA2ayDbhSJ-gdLxoHhzA1w", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Disciplemaking Is Relationships Training ", "Chair": 3, "Identity": "Yes", "Walk": "No", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "SOJk-Do9QX6NSV6fT6TVtg", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Disciplemaker Living Guide with someone in Chair 2/3", "Chair": 3, "Identity": "Yes", "Walk": "No", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "E1S7W09eQ7-FhMM46K3UjQ", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Ministry is Relationships Training", "Chair": 3, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "D1EZ022pQzi0m2rw2sOwrg", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "One Another Living guide with someone in Chair 2/3,", "Description": "The One Another Living guide is to help teens in chairs 2 and 3 to be able to share life well with their peers who are in chair 1 and the beginning stages of chair 2. The idea is mostly that they are a witness by the way they live. This guide assists them in understanding how to do that.", "Chair": 3, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "U7uDtr0UQ6ahQCw-ZbGDYg", "_mtime": "2021-06-23T20:28:46.481+00:00", "Title": "Devo Leader at Camp", "Description": "Devo leaders at camp are one of the greatest places to learn to walk more like Jesus. Continue to encourage them to do this each year!", "Chair": 3, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "JjqGM7maQ-KjNIF8Om2o9A", "_mtime": "2021-06-23T20:28:46.482+00:00", "Title": "Ministry Team", "Description": "If they aren't on Ministry Team, get them there. As someone in chair 3 they should be sharing with others how walking like Christ is!", "Chair": 3, "Identity": "No", "Walk": "Yes", "Talk": "No", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "AriBMWzPR_OMB0QJ-5e0Dg", "_mtime": "2021-06-23T20:28:46.482+00:00", "Title": "Evangelism is Relationships Training", "Description": "This training will help teens know how to share Jesus in the context of relationships.", "Chair": 3, "Identity": "No", "Walk": "No", "Talk": "Yes", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "b74cz_oUREeR-8EblvPM0Q", "_mtime": "2021-06-23T20:28:46.482+00:00", "Title": "John 3:16 Living Guide with someone in Chair 2/3", "Description": "This guide is for those in chair 2 and 3 to teach them how to share with peers in chair 1 and the beginning stages of chair 3.", "Chair": 3, "Identity": "No", "Walk": "No", "Talk": "Yes", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] }, { "_id": "ArAr8ZygTHGAT2JE9lAMXQ", "_mtime": "2021-06-23T20:28:46.482+00:00", "Title": "Choose 3 people to pray for specifically", "Description": "As someone in chair 3 they should be consistently praying for their peers. Encourage them and check in with them weekly so this becomes a habit.", "Chair": 3, "Identity": "No", "Walk": "No", "Talk": "Yes", "Feed": "No", "Clean": "No", "Students": [], "Students Finished": [] } ] } // GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/rows/?table_name=Action Steps&view_id=0000 // HTTP/1.1 200 OK // Access-Control-Allow-Headers: Content-Type, Authorization, Accept // Access-Control-Allow-Methods: DELETE,PUT,POST,GET,OPTIONS // Access-Control-Allow-Origin: * // Content-Type: application/json; charset=utf-8 // Date: Mon, 28 Jun 2021 21:47:50 GMT // Etag: W/"2634-ldyyRUGBlXOgEg9JWM7hxW3kCgM" // Server: Caddy // Server: nginx/1.18.0 // X-Powered-By: Express // X-Ratelimit-Limit: 3000 // X-Ratelimit-Remaining: 2999 // X-Ratelimit-Reset: 1624916930 // Transfer-Encoding: chunked // Request duration: 0.015997s #+END_SRC And this get's back rows from the Student table with the main view. Notice how the request url contains the query for the name of the table and the id for the view. Both are possible. Also, getting the rows back this way as opposed to the other gives us the actual value in the rows as opposed to the quirky names for some parts that seatable creates. #+begin_src restclient :results value :wrap SRC js GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/rows/?table_name=Students&view_id=0000 Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjQ3Mzc3MjMsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.EdPVohSnV3QD8rGVXWnzUCT2pTDbqlahE0CuCgJEhq8 Accept: application/json; charset=utf-8; indent=4 #+end_src #+RESULTS: #+begin_SRC js { "rows": [ { "_id": "HRTFDECtTR6SYRTDot6wdQ", "_mtime": "2021-05-06T21:51:07.300+00:00", "Name": "Kai Cox", "Picture": [ "https://table.tfcconnection.org/workspace/3/asset/02bcc337-2b09-42c6-ae75-310599e710c6/images/2021-05/OCC%2010%20year.jpg" ], "BirthDate": "2004-04-16", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "State": "KS", "ZipCode": null, "Image": "/sites/TeensForChrist/StudentImages/Kai%20Cox%20thumb-compressed.jpg", "Email": null, "Chair": "2", "Camp Registration": [], "Action Steps": [ "Xc3Bilw9SSCRIn6LQTwsUA", "AGqrB5QWQGyGtiBHdssblw", "ACxNHZibTQWgmnh7kv-SxA", "bTBuygp9TPet4PzCmLBGHw", "TrH8QP0XQ323cNoIlkFo0g", "AKZTxyzHS8yrL4XKXOFqrg", "aWCiB6AWR6KVSe-GP51uBg", "XOvhHXdmRxmpu3SZgnuaxQ", "Wc45DYLDR_-aCDbfi97wFw" ] }, { "_id": "cesjqqXyTH2SwQxM9I50Sw", "_mtime": "2021-05-06T21:51:09.957+00:00", "Name": "Nathaniel Huntley", "BirthDate": "2002-12-21", "Gender": "Male", "Community": "Phillipsburg", "Phone": "7853028028", "Texting": "No", "State": "KS", "ZipCode": null, "Image": "/sites/TeensForChrist/StudentImages/Nathaniel%20Huntley%20thumb-compressed.jpg", "Hobbies": "Sports", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "KqPZI7A5TLO4HDoN62vJlA", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Jayden Speer", "BirthDate": "2003-03-24", "Gender": "Female", "Community": "Northern Valley", "Phone": "7856697097", "Texting": "No", "Address": "4999 Rd E 8", "City": "Almena", "State": "KS", "ZipCode": "67622", "Image": "/sites/TeensForChrist/StudentImages/Jayden%20Speer%20thumb-compressed.jpg", "Hobbies": "Reading", "Email": "janspeer2003@gmail.com", "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "Q6FPrS04SzCGB_oecPk1OA", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Aaron Estes", "BirthDate": "2003-10-26", "Gender": "Male", "Community": "Northern Valley", "Phone": "7852020585", "Texting": "No", "Address": "214 South Graves", "City": "Norton", "State": "KS", "ZipCode": "67654", "Image": "/sites/TeensForChrist/StudentImages/Aaron%20Estes%20thumb-compressed.jpg", "Hobbies": "Football", "Email": null, "Notes": "
Notes on Aaron
", "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "dY93UKvHTECxy9gUQNY7cQ", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Deacon Schemper", "BirthDate": "2004-07-27", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "Address": "8896 RD E12", "City": "Prairie View", "State": "KS", "ZipCode": "67664", "Hobbies": "Youtube", "Email": null, "Notes": "
Dealing with the suffering of people and why God allows suffering. Maybe needs a philosophical answer that deals with that suffering.\n
\n
Really loves star wars.
", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "CtBZZ6TdTiSR2qLzm1eJIg", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Isabelle Schemper", "BirthDate": "2002-08-11", "Gender": "Female", "Community": "Northern Valley", "Phone": "7856697062", "Texting": "No", "Address": "8896 RD E12", "City": "Prairie View", "State": "KS", "ZipCode": "67664", "Hobbies": "Dance", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "OVoW0ZAnR8q0rLsyJ0hiUw", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Tanea Speer", "BirthDate": "2005-04-08", "Gender": "Female", "Community": "Northern Valley", "Phone": "7856647078", "Texting": "No", "Address": "4999 Rd. E8", "City": "Almena", "State": "KS", "ZipCode": "67622", "Hobbies": "Basketball", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "TlUKW-waTXWscnjOiPEgHA", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Braxton Cox", "BirthDate": "2005-08-31", "Gender": "Female", "Community": "Northern Valley", "Texting": "No", "Address": "12676 RD62", "City": "Norton", "State": "KS", "ZipCode": "67654", "Hobbies": "Sports", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "Q2gRaLuLQSuOgdj6ylkI8A", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Brian Bencomo", "BirthDate": "2004-12-25", "Gender": "Male", "Community": "Northern Valley", "Phone": "9706309678", "Texting": "No", "State": "", "ZipCode": null, "Hobbies": "Sports", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "OjBMmn9gRGS4HWRsB2-PnQ", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Foster Brands", "BirthDate": "2004-06-22", "Gender": "Male", "Community": "Northern Valley", "Phone": "7856697065", "Texting": "No", "Address": "500 Washington", "City": "Almena", "State": "KS", "ZipCode": "67622", "Hobbies": "Sports", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "XVs1gY-HQxebCW1hMBmWpA", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Thayz Saenz", "BirthDate": "2005-02-25", "Gender": "Female", "Community": "Northern Valley", "Phone": "7852020729", "Texting": "No", "Address": "407 Washington St", "City": "Almena", "State": "KS", "ZipCode": "67622", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "ZsLVs-MWRX2pXiOFXNEgWg", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Haley Hansen", "BirthDate": "2007-07-18", "Gender": "Female", "Community": "Northern Valley", "Phone": "7856697095", "Texting": "No", "Address": "131 Bryant St.", "City": "Almena", "State": "KS", "ZipCode": "67622", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "ENmwmqKTQ7S9iOOau4lz_w", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Jeremiah Hansen", "BirthDate": "2005-09-02", "Gender": "Male", "Community": "Northern Valley", "Phone": "7856697027", "Texting": "No", "Address": "131 Bryant St.", "City": "Almena", "State": "KS", "ZipCode": "67622", "Hobbies": "Sports", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "O9NSg08nSbK_Sz5ODh7OhA", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Jason Davis", "BirthDate": "2006-11-03", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "Address": "608 Van Horn St", "City": "Almena", "State": "KS", "ZipCode": "67622", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "YcY2yuUTTsOOkLTRR7Sm6g", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Seth Henrickson", "BirthDate": "2002-02-20", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "Address": "214 South Graves", "City": "Norton", "State": "KS", "ZipCode": "67654", "Hobbies": "Video Games", "Email": null, "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "TJjwEYvpQQCOx0Q1eRKtEQ", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Brady Lowry", "BirthDate": "2006-04-05", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "State": "", "ZipCode": null, "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "BLG-mxKDRRGSJsmyzeCWGw", "_mtime": "2021-05-06T19:23:09.304+00:00", "Name": "Kylee Uhland", "BirthDate": "2005-05-09", "Gender": "Female", "Community": "Logan", "Phone": "7856898022", "Texting": "No", "Address": "506 N Douglas ", "City": "Logan", "State": "KS", "ZipCode": "67646", "Image": "/:i:/s/TeensForChrist/EZHyfxu2xGhLtYXMOg1HOk8BlQhOEFoc_OL0FbCID63tTA?e=UiEzML", "ParentName2": "Lisa Uhland", "ParentPhone1": "785-689-8017", "Hobbies": "Singing", "Email": "lmuhland@logan326.net", "Chair": "3", "Camp Registration": [], "Action Steps": [] }, { "_id": "bt0poXnXRMWAU7ukqtKmMQ", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Cydnee Rider", "BirthDate": "2005-10-05", "Gender": "Female", "Community": "Logan", "Phone": "719 688 7882", "Texting": "No", "Address": "307 holland st", "City": "Prairie view ", "State": "KS", "ZipCode": "67664", "Image": "/:i:/s/TeensForChrist/EUerzbH4butFukxk2emH4FwBnq5xGXsUhRYLLqF6evus5w?e=XLTEnd", "ParentName1": "Ashlee Tien", "ParentName2": "Jordan Rider", "ParentName3": "Kent Tien", "ParentName4": "Rae Gilmore", "ParentPhone1": "7859738287", "ParentPhone3": "7859738288", "Hobbies": "Horse", "Email": "Lefteebrunow@yahoo.com", "Chair": "2", "Camp Registration": [], "Action Steps": [] }, { "_id": "HWoUl9BAQw6D5KQ4va6cxA", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Brooke Wiltfong", "BirthDate": "2006-04-09", "Gender": "Female", "Community": "Logan", "Phone": "7858717640", "Texting": "No", "Address": "507 holland st", "City": "Prairie View ", "State": "KS", "ZipCode": "67664", "ParentName1": "Melissa Wiltfong ", "ParentName2": "Shaun Wiltfong", "ParentPhone1": "7852020664", "ParentPhone2": "7852020016", "Hobbies": "Sports ", "Email": "Cookiewiltfong3@gmail.com", "Chair": "2", "Camp Registration": [], "Action Steps": [] }, { "_id": "FLH9VFtoTpOmOwiMQ-egmg", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Savannah Moore", "BirthDate": "2008-07-16", "Gender": "Female", "Community": "Logan", "Phone": "785 208 8443", "Texting": "No", "Address": "134 First Street", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Kayla Moore", "ParentName2": "Adam Moore", "ParentPhone1": "785 533 1136", "Email": "Savannah.f.moore @logan326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "JquaVzxqSt2gy11c1DspYQ", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Emma Schwenn", "BirthDate": "2006-05-24", "Gender": "Female", "Community": "Logan", "Phone": "785-208-8444", "Texting": "No", "Address": "134 first street", "City": "Phillipsburg ", "State": "KS", "ZipCode": "67661", "ParentName1": "Kayla", "ParentName2": "Nathan ", "ParentName3": "Adam", "ParentName4": "Stan", "ParentPhone1": "7855331136", "Hobbies": "Music", "Email": "24eshwenn@logab326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "XMVGp2neQHmSChVXJIHQTw", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Hayden Gottstine ", "BirthDate": "2005-11-21", "Gender": "Male", "Community": "Logan", "Phone": "785-689-8094", "Texting": "Yes", "Address": "1454 w yankee rd ", "City": "Logan ", "State": "KS", "ZipCode": "67646", "Image": "/:i:/s/TeensForChrist/ETa-Tcxa26BJlgVTDYJTLNwBr7FZEoODNL18j2nLXaaz_w?e=YtzpUb", "ParentName1": "phil Gottstine ", "ParentName2": "Janet Gottstine ", "ParentPhone1": "785-689-8076", "ParentPhone2": "785-689-8075", "Hobbies": "farming hunting welding hanging with friends and family ", "Email": "24hgottstine@logan326.net", "Notes": "


", "Chair": "", "Camp Registration": [], "Action Steps": [] }, { "_id": "bvJevWx_S0SVohnRZjmdNw", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Yaresly Garcia", "BirthDate": "2006-05-31", "Gender": "Female", "Community": "Logan", "Phone": "5057958548", "Texting": "No", "Address": "205 w logan", "City": "Logan", "State": "KS", "ZipCode": "67647", "ParentName1": "Claudia parra", "ParentName2": "Jorge lujan ", "Hobbies": "Football", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "L-2_756mTeKJ08bELZBRPA", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Cameron Morgan", "BirthDate": "2006-09-17", "Gender": "Male", "Community": "Logan", "Phone": "Dad 7853021446 me 7853021446", "Texting": "No", "Address": "456 H St. ", "City": "Phillpsburg", "State": "KS", "ZipCode": "67661", "Image": "/:i:/s/TeensForChrist/EWBCSVvz_aJAvYEwduc-AywBFOr-1KGmKWn2yhC2Gg5bxg?e=iGceH9", "ParentName1": "Kevin", "ParentName2": "Chantel ", "ParentPhone1": "7853021446", "ParentPhone2": "7853021445", "Hobbies": "Fun", "Email": "24cmorgan@logan326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "VUNki-sDS0Km9Yok07Q9TA", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Gabriel Rudd", "BirthDate": "2005-10-23", "Gender": "Male", "Community": "Logan", "Phone": "I don't have one", "Texting": "No", "Address": "1005 2nd street", "City": "Phillpsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Sarah Rudd", "ParentName2": "Brian Rudd", "ParentPhone1": "785-302-0148", "ParentPhone2": "785-302-1977", "Hobbies": "Frisbee golf, eating, and sleeping", "Email": "24grudd@logan326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "X5QH8vB5TqqCU1Xf1s6ggg", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Hailey Mcclurg", "BirthDate": "2007-01-22", "Gender": "Female", "Community": "Logan", "Phone": "7853021017", "Texting": "No", "Address": "505 North mill street Logan ks", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Crystal", "ParentName2": "Dustin ", "ParentPhone1": "7856898091", "ParentPhone2": "7856898096", "Hobbies": "Riding horses", "Email": "25hmcclurg@logan326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "csfN3Gr6SiW2Y7ojtKbpYA", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Kaitlyn Alexander", "BirthDate": "2007-01-23", "Gender": "Female", "Community": "Logan", "Phone": "7859738011", "Texting": "No", "Address": "507 first street", "City": "Prairie view", "State": "KS", "ZipCode": "67664", "ParentName1": "Pamela post", "ParentName2": "Pamela post", "ParentName3": "Pamela post", "ParentName4": "Pamela post", "ParentPhone1": "7853021554", "ParentPhone2": "7853021554", "ParentPhone3": "7853021554", "ParentPhone4": "7853021554", "Hobbies": "Music/singing", "Email": "25kalexander@logan326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "MmAHp8k0SqakoMRJwAVTRQ", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Kendra Alexander", "BirthDate": "2007-01-23", "Gender": "Female", "Community": "Logan", "Phone": "785-973-8047", "Texting": "No", "Address": "507 1st street", "City": "Prairie View", "State": "KS", "ZipCode": "67664", "Image": "/:i:/s/TeensForChrist/EWJ3Khubd2xClxugAzMFjhIBc0a57R2C2ZJd2bmc-VE-fg?e=TkMdUE", "ParentName1": "Pamela", "ParentPhone1": "785-302-1554", "Hobbies": "Horse riding", "Email": "25kealexander@logan326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "SZeCmRJAQVeWL7rLScBbKQ", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Carter Jenkins", "BirthDate": "2004-01-04", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-533-1558", "Texting": "No", "Address": "817 8th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Kristen Pounds", "ParentPhone1": "785-533-1193", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "GlzXKQyaRfevw9khkEUIXw", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Olivia Hueneke", "BirthDate": "2003-09-05", "Gender": "Female", "Community": "Phillipsburg", "Phone": "785-533-1331", "Texting": "No", "Address": "265 S 6th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Kelli Hueneke", "ParentName2": "Jayson Hueneke", "ParentPhone1": "785-533-1331", "ParentPhone2": "785-543-1981", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "D1cZs4qGQJ6PjT1htpoiZQ", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Nick Schemper", "BirthDate": "2002-12-10", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-533-4012", "Texting": "No", "Address": "265 S 6th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Kelli Hueneke", "ParentName2": "Josh Schemper", "ParentPhone1": "785-533-1331", "ParentPhone2": "785-543-9096", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "RWLH5u3SRPm8LPWOs8G3sQ", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Abby Roth", "BirthDate": "2002-09-18", "Gender": "Female", "Community": "Phillipsburg", "Phone": "785-533-1671", "Texting": "No", "Address": "1055 W 500 Rd", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Amber Roth", "ParentName2": "Jerod Roth", "ParentPhone1": "785-543-4092", "ParentPhone2": "785-543-8306", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "N85mqIXsSrWoOnaBQgR5qw", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Cameron Jenkins", "BirthDate": "2005-03-10", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-533-1576", "Texting": "No", "Address": "817 8th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Kristen Pounds", "ParentPhone1": "785-533-1193", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "IjPt-OL3RlyhjzGYtuHSFg", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Gracie Jessup", "BirthDate": "2003-09-06", "Gender": "Female", "Community": "Phillipsburg", "Phone": "785-302-1996", "Texting": "No", "Address": "PO Box 251", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Bethany Jessup", "ParentName2": "Roy Jessup", "ParentPhone1": "785-953-0421", "ParentPhone2": "785-543-1918", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "K9vIZCMnQny92st8vDe74g", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Jeremy Ford", "BirthDate": "2003-09-16", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-533-2666", "Texting": "No", "Address": "471 10th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Tracie Ford", "ParentName2": "Kelly Ford", "ParentPhone1": "785-543-7325", "ParentPhone2": "785-543-7680", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "R6-0gDWnSQil3xb5VmPnVg", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "Heather Schemper", "BirthDate": "2005-04-18", "Gender": "Female", "Community": "Phillipsburg", "Phone": "785-533-1164", "Texting": "No", "Address": "265 S 6th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Kelli Hueneke", "ParentName2": "Josh Schemper", "ParentPhone1": "785-533-1331", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "WtjQxrnFRSWPpLimUOYrqw", "_mtime": "2021-05-06T19:23:09.305+00:00", "Name": "William Jessup", "BirthDate": "2008-03-25", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-953-0421", "Texting": "No", "Address": "169 6th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Bethany Jessup", "ParentName2": "Roy Jessup", "ParentPhone1": "785-953-0421", "ParentPhone2": "785-543-1918", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "ZHLKUZCFQQKLWqZqgarrjQ", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Victoria Drullinger", "BirthDate": "2002-01-22", "Gender": "Female", "Community": "Phillipsburg", "Texting": "No", "Address": "475 7th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Tamara", "ParentName2": "Richard/RJ", "ParentPhone1": "785-302-0059", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "EUCd9MD8QAuDKEYLrk2ORg", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Kane Craig", "BirthDate": "2006-01-12", "Gender": "", "Community": "Phillipsburg", "Phone": "308-920-1368", "Texting": "No", "Address": "233 1st St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Angela", "ParentName2": "Curtis", "ParentPhone1": "308-920-1368", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "SB_LVek1Rx-TE0AjRR-rog", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Christina Footh", "BirthDate": "2005-12-06", "Gender": "Female", "Community": "Phillipsburg", "Texting": "No", "Address": "848 7th St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Kent Footh", "ParentName2": "Kerri Footh", "ParentPhone1": "785-302-0670", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "XUkQmxUdRz-sCIVJNo2jqA", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Gabby Poels", "BirthDate": "2008-04-19", "Gender": "Female", "Community": "Phillipsburg", "Phone": "785-302-1234", "Texting": "No", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Tami Poels", "ParentName2": "Nick Poels", "ParentPhone1": "913-961-2415", "ParentPhone2": "785-302-0512", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "ahZpxWTfQkibDpkM4eq5LA", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Natalie Fischer", "BirthDate": "2019-08-20", "Gender": "Female", "Community": "Phillipsburg", "Texting": "No", "State": "KS", "ZipCode": null, "ParentName1": "Brian", "ParentName2": "Julie", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "E5zE60RLSvGpo5dbufQ6yg", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Nathan Fischer", "BirthDate": "2006-09-26", "Gender": "Male", "Community": "Phillipsburg", "Texting": "No", "State": "KS", "ZipCode": null, "ParentName1": "Brian", "ParentName2": "Julie", "Email": null, "Chair": "1", "Camp Registration": [ "Mt-pY0tmTAWv8RB3rPOhTw" ], "Action Steps": [] }, { "_id": "DERpc44lRuGTM0xi8rNLfg", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Ethan Knowles", "BirthDate": "2006-10-05", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-302-0677", "Texting": "No", "Address": "515 West E St.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Tara", "ParentName2": "Eric", "ParentName3": "Jim", "ParentPhone1": "785-302-0677", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "DC52EnNbReyvhogcToPrxA", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "JJ Brandon", "BirthDate": "2006-08-15", "Gender": "Male", "Community": "Phillipsburg", "Texting": "No", "Address": "365 E Hunter Rd.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Jay Brandon", "ParentName2": "Sally Brandon", "ParentPhone1": "785-543-8544", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "VoBZzz_ESiWd3weGUQkNyw", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Alex Brandon", "BirthDate": "2008-06-24", "Gender": "Female", "Community": "Phillipsburg", "Texting": "No", "Address": "365 E Hunter Rd.", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Jay Brandon", "ParentName2": "Sally Brandon", "ParentPhone1": "785-543-0344", "ParentPhone2": "785-543-8544", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "FC3hyDXCQfS9RwJzu5AQGA", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Clayton Chestnut", "BirthDate": "2006-11-06", "Gender": "Male", "Community": "Phillipsburg", "Phone": "7855331117", "Texting": "No", "Address": "413 E Hwy 9", "City": "Glade", "State": "KS", "ZipCode": "67639", "ParentName1": "Jennifer Chestnut", "ParentName2": "Matt Chestnut", "ParentPhone1": "7855331797", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "LgrK38pgR2q2SFmuLADuiw", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Chloe VanDerVeen", "BirthDate": "2008-06-27", "Gender": "Female", "Community": "Phillipsburg", "Phone": "785-302-1945", "Texting": "No", "Address": "21 E Limestone Rd", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Curtis VanDerVeen", "ParentName2": "Tiffany VanDerVeen", "ParentPhone1": "785-543-4358", "ParentPhone2": "785-302-0114", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "PT_3_PLqT_ujDt7NurYf7w", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Neveah Wheeler", "BirthDate": "2006-03-18", "Gender": "Female", "Community": "Phillipsburg", "Phone": "573-979-9071", "Texting": "No", "Address": "327 S. 6th St", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Robin McCollough (grandma)", "ParentName2": "Nathan McCollough (grandpa)", "ParentPhone1": "573-979-9071", "ParentPhone2": "573-979-1804", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "f1bSpoDIT_mWFXF9puMGqw", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Taylan Reimer", "BirthDate": "2006-01-25", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-533-0075", "Texting": "No", "Address": "685 Hwy 183", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Sandy", "ParentName2": "Jamie", "ParentPhone1": "785-543-8240", "ParentPhone2": "785-543-8652", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "RCk5xKW7QGuM-B1fCMU_dQ", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Michael VanDerVeen", "BirthDate": "2007-01-20", "Gender": "Male", "Community": "Phillipsburg", "Texting": "No", "Address": "21 E Limestone", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Curtis", "ParentName2": "Tiffany", "ParentPhone1": "785-543-4358", "ParentPhone2": "785-302-0114", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "US0nBxreSIWUr8OljgmCaA", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Ivy Maret", "BirthDate": "2006-08-07", "Gender": "Female", "Community": "Atwood", "Phone": "785-259-6495", "Texting": "No", "Address": "802 page st.", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "India Maret", "ParentName2": "Tonya Knapp", "ParentPhone1": "308-350-0683", "ParentPhone2": "417-300-1580", "Hobbies": "drawing, volleyball, watching memes", "Email": "maretivy@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "F86jMhUbRlOoQxvgLD-LMg", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Kaci Dirks", "BirthDate": "2005-09-28", "Gender": "Female", "Community": "Atwood", "Phone": "785-626-4026", "Texting": "No", "Address": "25307 RD 28", "City": "Ludell", "State": "KS", "ZipCode": "67744", "ParentName1": "Kristi Dirks", "ParentPhone1": "785-626-9205", "Hobbies": "volleyball, basketball, anything that involves Jenny :-)", "Email": "kacidirks@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "AvBGTywqSiuuO5eJ3e2FlQ", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Reece Smith", "BirthDate": "2019-09-06", "Gender": "Female", "Community": "Atwood", "Phone": "620-622-7170", "Texting": "No", "Address": "811 S. 1st", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Erica Smith", "ParentName2": "Matt Smith", "ParentPhone1": "620-622-7305", "ParentPhone2": "620-622-7304", "Hobbies": "basketball, volleyball, 5ten", "Email": "reecesmith2025@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "awFlN_72Sx24GAAG0R5jUg", "_mtime": "2021-05-06T19:23:09.306+00:00", "Name": "Clair Withington", "BirthDate": "2006-05-23", "Gender": "Female", "Community": "Atwood", "Phone": "785-626-3815", "Texting": "No", "Address": "19286 RD 19", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Jessica Withington", "ParentName2": "Matthew Withington", "ParentPhone1": "785-626-3815", "ParentPhone2": "785-626-2168", "Hobbies": "Horses, volleyball, basketball", "Email": "clairwithington@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "NxtlELoRTIKoY-cEZKS5sg", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Ella Horinek", "BirthDate": "2005-12-19", "Gender": "Female", "Community": "Atwood", "Phone": "308-340-1519", "Texting": "No", "Address": "603 Sherman St.", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Heather Horinek", "ParentPhone1": "308-340-1587", "Hobbies": "drawing, cooking", "Email": "horinekella@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "SsRpwUHJQWmorW4FQ2zxeA", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Kemper Roybal-George", "BirthDate": "2006-06-22", "Gender": "Male", "Community": "Atwood", "Texting": "No", "Address": "Main St.", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Jamie Roybal-George", "Hobbies": "football, 5ten, drawing", "Email": "kempergeorge@student@usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "Xp_Y6Pn5RXS573TNmACgpw", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Seth Gilbert", "BirthDate": "2003-05-01", "Gender": "Male", "Community": "Atwood", "Texting": "No", "Address": "3rd St.", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Kim Ball-Gilbert", "Hobbies": "gaming", "Email": "sethgilbert@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "Usq5Q_IwRxSBX_BI_eXkNA", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Wes Reuber", "BirthDate": "2006-10-01", "Gender": "Male", "Community": "Atwood", "Texting": "No", "Address": "452 Elm St.", "City": "Ludell", "State": "KS", "ZipCode": "67744", "ParentName1": "Monica Reuber", "ParentPhone1": "785-626-7267", "Hobbies": "gaming, football", "Email": "wesleyreuber@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "PEgGykfuT26e04rRk_6I0A", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Zoie Horinek", "BirthDate": "2004-04-22", "Gender": "Female", "Community": "Atwood", "Phone": "308-340-4653", "Texting": "No", "Address": "603 Sherman St.", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Heather Horinek", "ParentPhone1": "308-340-1587", "Hobbies": "goats, reading, crafts", "Email": "zoiehorinek@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "KFMfFhSiRim54-vD_7k-ng", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Nicole Chumley", "BirthDate": "2004-10-31", "Gender": "Female", "Community": "Atwood", "Texting": "No", "Address": "607 Plum St.", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Peggy Mirto", "ParentPhone1": "785-538-0013", "Hobbies": "drawing, youtube", "Email": "nicolechumley@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "JOQAhZKKTJGjOFaWXC2jtA", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Lauren Mcquigg", "BirthDate": "2006-02-27", "Gender": "Female", "Community": "Atwood", "Phone": "620-260-0667", "Texting": "No", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Jamie Tagtmeyer", "ParentPhone1": "620-214-2123", "Hobbies": "watching movies", "Email": "laurenmcquigg@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "DIgoJiw5SeujsWZxxnLOnQ", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Ashlynn Wade", "BirthDate": "2006-04-29", "Gender": "Female", "Community": "Atwood", "Texting": "No", "Address": "205 Vine St.", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Lisa Chessmore", "ParentPhone1": "785-626-6696", "Hobbies": "art", "Email": "ashlynnwade@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "BuQrpNOdT6-Nl9yl4ns9wQ", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Asa Popp", "BirthDate": "2005-11-14", "Gender": "Male", "Community": "Atwood", "Phone": "785-443-4410", "Texting": "No", "Address": "508 S. 1st", "City": "Atwood", "State": "KS", "ZipCode": "67730", "ParentName1": "Jenny Popp", "ParentName2": "Albert Popp", "ParentPhone1": "785-626-2999", "ParentPhone2": "785-626-2608", "Hobbies": "gaming, drawing, sports", "Email": "asapopp@student.usd105.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "MLm0xgFyRwqYNDULIwoL8Q", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Hannah Henry", "BirthDate": "2004-01-26", "Gender": "Female", "Community": "Southern Valley", "Phone": "308-999-9194", "Texting": "No", "Address": "209 West Cambridge st.", "City": "Oxford", "State": "NE", "ZipCode": "68967", "ParentName1": "Stacey Henry", "ParentPhone1": "308-999-9418", "Hobbies": "Band, Stats", "Email": "minthorn.hannah@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "XajgWGy-RD-4Vk7M5Yp9_Q", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Cierra Dringman", "BirthDate": "2019-04-02", "Gender": "Female", "Community": "Northern Valley", "Phone": "3087379800", "Texting": "No", "Address": "P.O. Box 195 ", "City": "Beaver city", "State": "NE", "ZipCode": "68926", "ParentName1": "Raquel Dringman", "ParentName2": "Dan Dringman", "ParentPhone1": "3083408958", "ParentPhone2": "3083401646", "Hobbies": "Volleyball and band", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "Re19SCIiSyK7NLw3D1yvGg", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Carlee Thompson", "BirthDate": "2002-07-05", "Gender": "Female", "Community": "Southern Valley", "Phone": "3089202500", "Texting": "No", "Address": "619 6th street", "City": "Beaver City", "State": "NE", "ZipCode": "68926", "ParentName1": "Michelle Thompson", "ParentPhone1": "7852022558", "Hobbies": "i’m a redhead. also, journalism ", "Email": "Carlzzz030@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "frZBaAc4Tk243wybw9h1tA", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Ashley Marcum", "BirthDate": "2003-10-23", "Gender": "Female", "Community": "Southern Valley", "Phone": "308-991-6789", "Texting": "No", "Address": "70625 road 431", "City": "Beaver city", "State": "NE", "ZipCode": "68926", "ParentName1": "Lois bishop", "ParentName2": "Duane bishop", "ParentName3": "Shanon Miner", "ParentName4": "Daniel Miner", "ParentPhone1": "308-991-6789", "ParentPhone2": "308-991-4971", "ParentPhone3": "308-464-0508", "Hobbies": "Coloring", "Email": "Ashley.autumn2003@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "XlAFSCvESKycze5XNqEBSw", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Kolby Hunt", "BirthDate": "2004-03-13", "Gender": "Male", "Community": "Southern Valley", "Phone": "308 655 0984", "Texting": "No", "Address": "71224 Rd 432", "City": "Beaver City", "State": "NE", "ZipCode": "68926", "ParentName1": "Ryan", "ParentName2": "Erika", "ParentPhone1": "308 962 4174", "ParentPhone2": "308 655 0173", "Hobbies": "Stop motion, drawing ", "Email": "megakolber@hotmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "I74I55hDSUu5JvXG6sYu7Q", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Blake Burns", "BirthDate": "2001-11-06", "Gender": "Male", "Community": "Southern Valley", "Phone": "3089957607", "Texting": "No", "Address": "902 Central", "City": "Oxford", "State": "NE", "ZipCode": "68967", "ParentName1": "Danielle", "ParentName2": "Terrance", "Hobbies": "Working ", "Email": "blakeburns2020@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "C6OrYaHpQqCIZAI-b_iu7A", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Kenzi Kring", "BirthDate": "2005-06-05", "Gender": "Female", "Community": "Southern Valley", "Phone": "308-440-2044", "Texting": "No", "Address": "605 central", "City": "Oxford", "State": "NE", "ZipCode": "68967", "ParentName1": "Gerry Taylor", "ParentName2": "Chuck Taylor", "ParentPhone1": "308-627-3035", "ParentPhone2": "308-655-0149", "Hobbies": "Softball, competitive swimming, and puzzles ", "Email": "kenzikring@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "d4DW7QatQIuYh5TvYcK_lw", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Matthew Henry", "BirthDate": "2002-07-13", "Gender": "Male", "Community": "Southern Valley", "Phone": "308-999-7052", "Texting": "No", "Address": "209 W Cambridge St. ", "City": "Oxford ", "State": "NE", "ZipCode": "68967", "ParentName1": "Stacey Henry", "ParentPhone1": "308-999-9418", "Hobbies": "Reading, Watching The Office, Band, Sleeping, Making Origami, Praising Jesus. ", "Email": "Matthew.minthorn@icloud.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "Rr8tyPfmRsqlOfPv7qUWLg", "_mtime": "2021-05-06T19:23:09.307+00:00", "Name": "Logan Schnider ", "BirthDate": "2020-07-26", "Gender": "Male", "Community": "Southern Valley", "Phone": "308-655-1616", "Texting": "No", "Address": "909 Odell ", "City": "Oxford ", "State": "NE", "ZipCode": "38967", "ParentName1": "Joanna ", "ParentName2": "James ", "ParentPhone1": "306-655-0594", "ParentPhone2": "308-655-7966", "Hobbies": "Draw ", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "X-osdDfMQU2CouTedxBIVw", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Maggie Lammers", "BirthDate": "2002-02-19", "Gender": "Female", "Community": "Southern Valley", "Phone": "3089914172", "Texting": "No", "Address": "613 W Bothwell", "City": "Oxford", "State": "NE", "ZipCode": "68967", "ParentName1": "Monica Lammers", "ParentPhone1": "3083794744", "Hobbies": "Music, reading, speech/one act", "Email": "maggielammers10@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "WN_VqAn9R7-7juI2xjwKoA", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Peyton David", "BirthDate": "2005-09-15", "Gender": "Male", "Community": "Northern Valley", "Phone": "7856697063", "Texting": "No", "Address": "914 Pratt ave", "City": "Almena", "State": "KS", "ZipCode": "67632", "ParentName1": "Preston", "ParentName2": "Catrina", "ParentPhone1": "7858748169", "Hobbies": "Football track hunting farming", "Email": "Peytondavid29@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "PM1VCQlbQOWt07ewBT2zSw", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Johnel Speer", "BirthDate": "2020-05-14", "Gender": "Male", "Community": "Northern Valley", "Phone": "7856697089", "Texting": "No", "Address": "Rd.", "City": "Almena", "State": "KS", "ZipCode": null, "ParentName1": "Dad", "ParentName2": "Mom", "ParentPhone1": "7856648007", "ParentPhone2": "7856648009", "Hobbies": "Basketball and football", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "P7apfZ0VTmGixdS1kpVxHg", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Caden Lowry", "BirthDate": "2007-04-25", "Gender": "Male", "Community": "Northern Valley", "Phone": "I do not have one yet next year ", "Texting": "No", "Address": "1369 w hwy 36", "City": "Prairie View", "State": "KS", "ZipCode": "67664", "ParentName1": "Emily Lowry ", "ParentName2": "Calvin Lowry ", "Hobbies": "Light saber duel", "Email": "Cl.lowry@icloud.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "f8dNZ-dtQjSxeycj1cc1mQ", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Drew Schemper", "BirthDate": "2005-12-14", "Gender": "Male", "Community": "Northern Valley", "Phone": "7856697079", "Texting": "No", "Address": "8896 RD E 12", "City": "Prairie View", "State": "KS", "ZipCode": "67664", "ParentName1": "Craig Schemper", "ParentName2": "Julia Schemper", "ParentPhone1": "785 664 8333", "ParentPhone2": "785 669 7026", "Hobbies": "Basketball, watching TV, listening to music", "Email": "Schemperdrew@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "WdI5fqMTRki29LcrnNavbA", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Tharen Cox", "BirthDate": "2002-12-13", "Gender": "Male", "Community": "Northern Valley", "Phone": "7858548202", "Texting": "No", "Address": "Uhm my parents are divorced ", "City": "Norton or alma", "State": "Both Kansas and nebraska", "ZipCode": "86920", "ParentName1": "Rachelle Sander", "ParentName2": "Chris Cox ", "ParentName3": "Jodi cox", "ParentName4": "Mike sander", "ParentPhone1": "3089202259", "ParentPhone2": "7858648022", "ParentPhone3": "Iwishiknew", "ParentPhone4": "Iwishiknew", "Email": "neraht.cx202@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "JbLc0JaeQ6Ou3_j-kZYSDQ", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Mary Baird", "BirthDate": "2005-09-26", "Gender": "Female", "Community": "Northern Valley", "Phone": "785-669-7053", "Texting": "No", "Address": "703 Cleveland street", "City": "Almena ", "State": "KS", "ZipCode": "67622", "Image": "/sites/TeensForChrist/StudentImages/Mary%20Baird%20thumb-compressed.jpg", "ParentName1": "Doyle Baird", "ParentPhone1": "785-664-8526", "Hobbies": "Sports", "Email": "Mbaird@icloud.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "Ia6iJjXVRICygF_hxJ53Pg", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Shaylee Vsetecka", "BirthDate": "2005-02-21", "Gender": "Female", "Community": "Northern Valley", "Phone": "17858717177", "Texting": "No", "Address": "26999 Rd W", "City": "Almena", "State": "KS", "ZipCode": "67622", "ParentName1": "Charles Vsetecka", "ParentName2": "Laurie Vsetecka", "ParentPhone1": "7858712394", "ParentPhone2": "8718748219", "Hobbies": "Dance and sports ", "Email": "shayleev@icloud.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "d6dgXksZT7iiv5eKwA998Q", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Delaney Sides", "BirthDate": "2019-11-09", "Gender": "Female", "Community": "Northern Valley", "Phone": "785-669-7083", "Texting": "No", "Address": "709 pratt avenue, Almena KS ", "City": "Almena Kansas ", "State": "KS", "ZipCode": "67622", "ParentName1": "Joy Sides ", "ParentName2": "Kevin Sides ", "ParentPhone2": "785-664-8053", "ParentPhone3": "785-664-8052", "Hobbies": "Farming ", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "UR7Dvwh1QlOQ4REOQ0pVhA", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Jason Cox", "BirthDate": "2006-04-22", "Gender": "Male", "Community": "Northern Valley", "Phone": "7858548204", "Texting": "No", "Address": "Idk", "City": "Norton", "State": "KS", "ZipCode": "67654", "ParentName1": "Chris", "ParentName2": "Rachell", "ParentName3": "Jodi", "ParentName4": "Mike", "ParentPhone1": "7858548022", "ParentPhone2": "3089302259", "ParentPhone3": "Idk", "ParentPhone4": "Idk", "Hobbies": "Hunting farming", "Email": "Jasontroy2244@gmaio.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "bL0NwRKmQbOZ9ZMnWwsVxw", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Audrey Bina", "BirthDate": "2009-02-18", "Gender": "Female", "Community": "Northern Valley", "Texting": "No", "Address": "Norton road E2", "City": "Norton", "State": "KS", "ZipCode": null, "ParentName1": "Jodi", "ParentName2": "Byron", "ParentPhone1": "78520201523", "ParentPhone2": "6203386378", "Hobbies": "Run", "Email": "Audreylillianbina@icloud.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "fWSOGGbBT-q8nkF2oGrOGg", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Chase Russell", "BirthDate": "2019-09-13", "Gender": "Male", "Community": "Phillipsburg", "Phone": "785-302-1613", "Texting": "No", "Address": "Idk", "City": "Phillipsburg ", "State": "KS", "ZipCode": "67661", "ParentName1": "Jon Russell", "ParentPhone1": "785-533-1021", "Hobbies": "Wrestling ", "Email": "c.russell63@icloud.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "WPUPTzZERNWS4teTIIlvDg", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Eric Moon", "BirthDate": "2003-06-06", "Gender": "Male", "Community": "Phillipsburg", "Phone": "7852080121", "Texting": "No", "Address": "300 Morse Drive", "City": "Phillipsburg", "State": "KS", "ZipCode": "67661", "ParentName1": "Darin Moon", "ParentName2": "Stacey Moon", "ParentPhone1": "7853028066", "ParentPhone2": "7853028067", "Hobbies": "Sports, Singing, Video Games", "Email": "13ericmoon@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "FlJIK7peT3yB0JVWk7wuIg", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Stephanie Whitney", "BirthDate": "2005-06-30", "Gender": "Female", "Community": "Northern Valley", "Phone": "785-664-8811", "Texting": "No", "Address": "3484 RD E8", "City": "Almena", "State": "KS", "ZipCode": "67622", "ParentName1": "Stacy Whitney", "ParentName2": "Steven Whitney", "ParentPhone1": "785-664-8808", "ParentPhone2": "785-871-0748", "Hobbies": "Cleaning", "Email": "stephwhitney@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "HMnGOdwjRkmanD1ggTyAWw", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Clay Vanpatten", "BirthDate": "2019-05-06", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "Address": "708", "City": "Almen", "State": "KS", "ZipCode": "67622", "ParentName1": "Matt", "ParentName3": "Hilery", "Hobbies": "Videogames", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "W0dn5IUXSUWXuBPsvhbzhw", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Ayden Keith", "BirthDate": "2009-03-30", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "Address": "Ives", "City": "Almena", "State": "KS", "ZipCode": "67622", "ParentName1": "Brandi", "ParentName2": "Ryan", "Hobbies": "Games and biking", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "dYnplgB-RAypsRnj_4uD1A", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Kyle Speer", "BirthDate": "2005-11-03", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "Address": "481 wheeling st", "City": "Long Island", "State": "KS", "ZipCode": "67647", "ParentName1": "Kassandra", "ParentName2": "Jay", "ParentName3": "Brenda", "ParentName4": "Gerald", "ParentPhone1": "17852020148", "Hobbies": "Playing computer, football, basketball, track, and TFC", "Email": "Kylespeerjk@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "BbIV9dyNQY61OgpkdF9kmg", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Sydney Mitchell", "BirthDate": "2004-04-22", "Gender": "Female", "Community": "Phillipsburg", "Phone": "785-259-7194", "Texting": "No", "Address": "369 3rd street ", "City": "Phillipsburg ", "State": "KS", "ZipCode": "67661", "ParentName1": "Season Kerns", "ParentPhone1": "620-960-6725", "Hobbies": "singing, dancing, cheerleading, reading, weight lifting", "Email": "sydneymitchell2022@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "EJdVvXiUQ2W32HwleeqE_w", "_mtime": "2021-05-06T19:23:09.308+00:00", "Name": "Ansley Delimont", "BirthDate": "2006-01-31", "Gender": "Female", "Community": "Logan", "Phone": "785-688-8025", "Texting": "No", "Address": "204 east Main Street ", "City": "Logan ", "State": "KS", "ZipCode": "67646", "Image": "/:i:/s/TeensForChrist/EaBH-VBgYORIjccSmKxF6aUB78dkC2ddhltREz7pq57nZg?e=ATYmlF", "Hobbies": "Sports ", "Email": "24adelimont@logan326.net", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "NSOcPHj1TPqHek_IJcf9Sw", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Yoselyne Parra", "BirthDate": "2008-07-31", "Gender": "Female", "Community": "Logan", "Phone": "5057958548", "Texting": "No", "Address": "205 west logan", "City": "Logan", "State": "KS", "ZipCode": "67646", "Image": "/:i:/s/TeensForChrist/EQl9YdhZ5HBMrvHLu3P-F04B-71WvVRlhBQBuaa1Gdv_rQ?e=ferI8t", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "CRMTTq_tQbqUC-b02Elp3w", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Haylee Tien", "BirthDate": "2002-10-23", "Gender": "Female", "Community": "Logan", "Phone": "7853020695", "Texting": "No", "Address": "212 E. Main St. ", "City": "Logan", "State": "KS", "ZipCode": "67646", "Image": "/:i:/s/TeensForChrist/Ee2W1eeuQRZKmsjkA_AD74EB1HyLg956QkYqX-Xr-eZwxw?e=zXF3my", "Email": "21htien@logan326.net", "Chair": "2", "Camp Registration": [], "Action Steps": [] }, { "_id": "Qa5eyz5cTRCVv6bd3i3Tug", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Sam Pinkerton", "BirthDate": null, "Gender": "Male", "Community": "Logan", "Phone": "7853021206", "Texting": "No", "Address": "1360 W Yankee rd", "City": "Logan", "State": "KS", "ZipCode": "67646", "Image": "/:i:/s/TeensForChrist/EYdkzhclChFOkwo9PrzmwxgBrJbW6-m24nK5hnwjVKqXmQ?e=uCcSDP", "Hobbies": "Not dying", "Email": "Spinke2003@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "L1m--hy5T8m-8zcuQSMlIw", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Janee Moore", "BirthDate": "2019-08-01", "Gender": "Female", "Community": "Northern Valley", "Phone": "7856648057", "Texting": "No", "Address": "704 main St", "City": "Almena", "State": "KS", "ZipCode": "67622", "ParentName1": "Julie", "ParentName2": "Jasmine", "ParentName3": "Linda", "ParentName4": "Bob", "ParentPhone1": "6648057", "ParentPhone2": "6697072", "ParentPhone3": "6692588", "ParentPhone4": "6692588", "Hobbies": "Gymnastics", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "XULpRARtSZ-o3jvk_SDjyg", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Landry Gebhard", "BirthDate": "2007-05-24", "Gender": "Female", "Community": "Northern Valley", "Phone": "785-854-8148", "Texting": "No", "Address": "West1200 road", "City": "Long Island", "State": "KS", "ZipCode": "67647", "ParentName1": "Jill Gebhard", "ParentName2": "Marvin Gebhard", "ParentPhone1": "785-854-8128", "ParentPhone2": "785-664-8231", "Hobbies": "Singing and acting", "Email": "25lgebhard@nvhuskies.org", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "c9_A_CMWQj-IJg1FKix7VQ", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Robert Vsetecka", "BirthDate": "2006-10-03", "Gender": "Male", "Community": "Northern Valley", "Phone": "17858717679", "Texting": "No", "Address": "26999 Rd E ", "City": "Almena", "State": "KS", "ZipCode": "67622", "ParentName1": "Chuck Vsetecka", "Hobbies": "Idc", "Email": "Vseteckar@icloud.cim", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "T3sPrsrtRXmcjAhZAeRN4Q", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Brooke Preston", "BirthDate": "2007-09-25", "Gender": "Female", "Community": "Northern Valley", "Phone": "4054147409", "Texting": "No", "Address": "Almena brooks street 411", "City": "Kansas ", "State": "KS", "ZipCode": "67622", "ParentName1": "Dad Preston", "ParentName2": "Dad Preston", "ParentName3": "Dad Preston", "ParentName4": "Dad Preston", "ParentPhone1": "4054147409", "ParentPhone2": "4054147409", "Hobbies": "Ridding my bike ", "Email": "Jdpreston2001@yahoo.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "dqPNlG5HTPuZfB04N6YUXw", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Wendy Adams", "BirthDate": "2020-01-04", "Gender": "Female", "Community": "Northern Valley", "Phone": "7858748501", "Texting": "No", "Address": "406 Ives st ", "City": "Almena", "State": "KS", "ZipCode": null, "ParentName1": "Melissa", "ParentName2": "Steven", "ParentPhone1": "7858748188", "Hobbies": "Pagents", "Email": "Wendy.wendleadams@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "KnuZUPAYQHikoetVD6q05w", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Ryan Prewo", "BirthDate": "2006-07-10", "Gender": "Male", "Community": "Logan", "Phone": "785-689-8299", "Texting": "No", "Address": "107 E Main St. ", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Paul", "ParentName2": "Michelle", "ParentPhone1": "785-689-8172", "ParentPhone2": "785-689-8173", "Hobbies": "Ballin’ and lifting ", "Email": "rprewo@gmail.com", "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "bDJ77DyiTx-Rih0MaF3JGg", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Jonah Black ", "BirthDate": "2005-05-26", "Gender": "Male", "Community": "Northern Valley", "Phone": "7856396723", "Texting": "Yes", "Address": "201 bryant", "City": "Almena ", "State": "KS", "ZipCode": "765622", "ParentName1": "Shawna ", "Hobbies": "🏀 Clean ", "Email": null, "Chair": "", "Camp Registration": [], "Action Steps": [] }, { "_id": "WcNU0iSjR5O5bHrj4gOuHQ", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Owen Hammond", "BirthDate": "2007-09-13", "Gender": "Male", "Community": "Northern Valley", "Phone": "7858548302", "Texting": "Yes", "Address": "567 Topeka ave", "City": "Long island", "State": "KS", "ZipCode": "67647", "ParentName1": "Shanna", "ParentName2": "Trevor", "ParentPhone1": "7858548033", "ParentPhone2": "7858548032", "Hobbies": "Baseball", "Email": null, "Chair": "", "Camp Registration": [], "Action Steps": [] }, { "_id": "G5eB7dclRf2--i-UbleAvw", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Maverick Rogers", "BirthDate": "2019-11-30", "Gender": "Male", "Community": "Northern Valley", "Texting": "Yes", "Address": "359 West 1300 road long island", "City": "Long island", "State": "KS", "ZipCode": "67647", "ParentName1": "Neva Rogers", "ParentName2": "Christopher Rogers", "ParentPhone1": "7858548010", "Hobbies": "Hunting", "Email": null, "Chair": "", "Camp Registration": [], "Action Steps": [] }, { "_id": "AuqBLEgyRuiju9xxFUZxkw", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Case Ashmore", "BirthDate": "2008-04-13", "Gender": "Male", "Community": "Logan", "Phone": "785-689-8111", "Texting": "Yes", "Address": "PO Box 273 ", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Elsie Ashmore", "ParentName2": "Jim Ashmore", "ParentPhone1": "7856898210", "ParentPhone2": "7856501685", "Hobbies": "football basketball ", "Email": "26cashmore@logan326.net", "Notes": "


", "Chair": "", "Camp Registration": [], "Action Steps": [] }, { "_id": "YVJXuEW4SoeHCMyMxZitqg", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Caleb Sparks", "BirthDate": "2006-11-06", "Gender": "Male", "Community": "Logan", "Phone": "785-689-8018", "Texting": "No", "Address": "704 North Douglas ", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Jessica ", "ParentName2": "Bob", "Hobbies": "Sports", "Email": "25csparks@gmail.com", "Notes": "


", "Chair": "", "Camp Registration": [], "Action Steps": [] }, { "_id": "fz7WXsfsRBS1PF4MM6Rp-w", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Emma Traxler", "BirthDate": "2008-10-24", "Gender": "Female", "Community": "Logan", "Phone": "785-533-0183", "Texting": "Yes", "Address": "P.O. Box 403", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Crystal White", "ParentName2": "Brandon Traxler", "ParentPhone1": "785-302-8228", "ParentPhone2": "785-302-8465", "Hobbies": "Volleyball, Basketball, Track", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "Mn9GGqbaSNO71eV19mkEng", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Cora Ashmore", "BirthDate": "2009-01-20", "Gender": "Female", "Community": "Logan", "Phone": "785-302-1570", "Texting": "Yes", "Address": "408 West Logan RD", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Justin Ashmore", "ParentName2": "Jessica Aahmore", "ParentPhone1": "785-650-3627", "ParentPhone2": "785-689-8201", "Hobbies": "Volleyball, 4-H, Basketball, Track", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "aGJAOaR9R-C-B3XE6_yzYA", "_mtime": "2021-05-06T19:23:09.309+00:00", "Name": "Mayson Vahling", "BirthDate": "2007-06-15", "Gender": "Male", "Community": "Logan", "Phone": "785-302-8276", "Texting": "Yes", "Address": "302 W Logan", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Sarah Vahling", "ParentName2": "Joshua Vahling", "ParentPhone1": "785/302-0186", "ParentPhone2": "785-302-0315", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "BJXWHWCUR4y6jTdyvlHERw", "_mtime": "2021-05-06T19:23:09.310+00:00", "Name": "Brayton Woods", "BirthDate": "2009-08-07", "Gender": "Male", "Community": "Logan", "Phone": "785/689/8082", "Texting": "Yes", "Address": "309 Commercial ST", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Desirae Woods", "ParentName2": "Lonie Woods", "ParentPhone1": "785/689/8253", "ParentPhone2": "785/689/8253", "Hobbies": "Basketball", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "YfeWqLKhSVa95shKrjJGnA", "_mtime": "2021-05-06T19:23:09.310+00:00", "Name": "Buster States", "BirthDate": "2009-04-03", "Gender": "Male", "Community": "Logan", "Texting": "No", "Address": "2556 West 1600 RD", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Sam States", "ParentName2": "Carolyn States", "ParentPhone1": "785/543/1883", "ParentPhone2": "785/543/1993", "Hobbies": "Basketball", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "feaXEr7hRNKaLQ10Slaahw", "_mtime": "2021-05-06T19:23:09.310+00:00", "Name": "Gavin Gottschalk", "BirthDate": null, "Gender": "Male", "Community": "Logan", "Phone": "785/689/4848", "Texting": "Yes", "Address": "603West Commercial", "City": "Logan", "State": "KS", "ZipCode": "67646", "ParentName1": "Clint Gottschalk", "ParentName2": "Tanya Gottsckalk", "ParentPhone1": "785/689/8005", "ParentPhone2": "785/689/6006", "Email": null, "Chair": "1", "Camp Registration": [], "Action Steps": [] }, { "_id": "W3wmuwSpTLKXrxFp7p4iMQ", "_mtime": "2021-05-06T19:23:09.310+00:00", "Name": "Ashlynn Cramer", "BirthDate": "2004-08-05", "Gender": "Male", "Community": "Logan", "Phone": "785/734/8157", "Texting": "Yes", "City": "Collyer", "State": "KS", "ZipCode": "67631", "ParentName1": "Craig Cramer", "ParentName2": "Karon Cramer", "ParentPhone1": "785/743/8088", "ParentPhone2": "785/743/8607", "Hobbies": "Choir, Band, Fall Play, Worship team", "Email": "Ashlynnm.cramer@gmail.com", "Notes": "​Call Mom First / Last Resort is Dad
", "Chair": "1", "Camp Registration": [], "Action Steps": [] } ] } #+end_SRC Now let's get into some fun parts of this API. Let's get rows back by filtering them. Notice again how I've left off the views portion of the url. This is because if we want the "Default View" it is assumed if left blank. #+begin_src restclient :results value :wrap SRC js GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/filtered-rows/?table_id=p6v0 Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjU0OTk5OTksImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.fZu1z5F8mLoi6AdoGnrvKnEOqt5x4SInNB9kiJa0YcM Content-Type: application/json { "filters": [ { "column_name": "Name", "filter_predicate": "contains", "filter_term": "Kai", "filter_term_modifier": "" } ] } #+end_src #+RESULTS: #+begin_SRC js { "rows": [ { "_id": "HRTFDECtTR6SYRTDot6wdQ", "_mtime": "2021-06-24T21:41:33.042+00:00", "_ctime": "2021-04-30T18:55:30.279+00:00", "Name": "Kai Cox", "Picture": [ "https://table.tfcconnection.org/workspace/3/asset/02bcc337-2b09-42c6-ae75-310599e710c6/images/2021-06/kai.jpg" ], "BirthDate": "2004-04-16", "Gender": "Male", "Community": "Northern Valley", "Texting": "No", "State": "KS", "ZipCode": null, "Image": "/sites/TeensForChrist/StudentImages/Kai%20Cox%20thumb-compressed.jpg", "Email": null, "Notes": null, "Chair": "2", "Camp Registration": [], "Action Steps": [ "Xc3Bilw9SSCRIn6LQTwsUA", "AGqrB5QWQGyGtiBHdssblw", "ACxNHZibTQWgmnh7kv-SxA", "bTBuygp9TPet4PzCmLBGHw", "TrH8QP0XQ323cNoIlkFo0g", "AKZTxyzHS8yrL4XKXOFqrg", "aWCiB6AWR6KVSe-GP51uBg", "XOvhHXdmRxmpu3SZgnuaxQ", "Wc45DYLDR_-aCDbfi97wFw" ], "Steps Finished": [ "LTifWMgGQK2m20m_7Mv2lg", "JE1kgxuXSnWSS_gWl0TJTw", "arwOYHQiSxm5WCWy-IWbwA", "Ci28j7ziSHOxKbreZkwAcA", "SVZBAJNeQEK36lQjzlKWSg", "WdhPTDLqRdaQymy1xfUPew", "VfbXWxLhRFiF6wgZ5D4OTw" ], "Created Time": "2021-04-30T18:55:30.279+00:00" }, { "_id": "csfN3Gr6SiW2Y7ojtKbpYA", "_mtime": "2021-05-06T19:23:09.305+00:00", "_ctime": "2021-04-30T18:55:30.283+00:00", "Name": "Kaitlyn Alexander", "BirthDate": "2007-01-23", "Gender": "Female", "Community": "Logan", "Phone": "7859738011", "Texting": "No", "Address": "507 first street", "City": "Prairie view", "State": "KS", "ZipCode": "67664", "ParentName1": "Pamela post", "ParentName2": "Pamela post", "ParentName3": "Pamela post", "ParentName4": "Pamela post", "ParentPhone1": "7853021554", "ParentPhone2": "7853021554", "ParentPhone3": "7853021554", "ParentPhone4": "7853021554", "Hobbies": "Music/singing", "Email": "25kalexander@logan326.net", "Notes": null, "Chair": "1", "Camp Registration": [], "Action Steps": [], "Steps Finished": [], "Created Time": "2021-04-30T18:55:30.283+00:00" } ] } #+end_SRC We can even get the details of a specific row if we know it's ID. The ID goes in the url after /rows/ID. This means we are looking for this ID and then place the table query after. This is confusing because we may expect it to go in the query section after table, but not in this case. #+begin_src restclient :results value :wrap SRC js GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/rows/cesjqqXyTH2SwQxM9I50Sw/?table_id=p6v0 Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjU0OTk5OTksImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.fZu1z5F8mLoi6AdoGnrvKnEOqt5x4SInNB9kiJa0YcM #+end_src #+RESULTS: #+begin_SRC js { "_id": "cesjqqXyTH2SwQxM9I50Sw", "_mtime": "2021-05-06T21:51:09.957+00:00", "_ctime": "2021-04-30T18:55:30.281+00:00", "Name": "Nathaniel Huntley", "BirthDate": "2002-12-21", "Gender": "Male", "Community": "Phillipsburg", "Phone": "7853028028", "Texting": "No", "State": "KS", "ZipCode": null, "Image": "/sites/TeensForChrist/StudentImages/Nathaniel%20Huntley%20thumb-compressed.jpg", "Hobbies": "Sports", "Email": null, "Notes": null, "Chair": "3", "Camp Registration": [], "Action Steps": [], "Steps Finished": [], "Created Time": "2021-04-30T18:55:30.281+00:00" } #+end_SRC This will not return that single row and will instead return the whole table. #+begin_src restclient :results value :wrap SRC js GET https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/rows/?table_id=p6v0&row_id=cesjqqXyTH2SwQxM9I50Sw Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjEwOTEyNjIsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.kgGnYoA8jaFFgZEbiuqnegkNuDaTQpWytSO0RpEl0Hg #+end_src Now let's work on appending a row. This is powerful so we can add stuff to the database. #+begin_src restclient :results value :wrap SRC js POST https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/rows/ Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjEwOTEyNjIsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.kgGnYoA8jaFFgZEbiuqnegkNuDaTQpWytSO0RpEl0Hg Accept: application/json Content-Type: application/json { "row": { "Name": "Chris Cochrun" }, "table_name": "Students" } #+end_src #+RESULTS: #+begin_SRC js { "0000": "Chris Cochrun", "_id": "fADON1tdQfySRVUPpv9Dqg" } #+end_SRC Now I want to update a link, which is different from a rows normal columns. To do that, we'll use a POST request. #+begin_src restclient :results value :wrap SRC js POST https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/links/ Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjUxNzU4NDMsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.WKWiQ2Q3vZprjHXNphAlm09u9kQ_SpMrBQ763vb7J58 Accept: application/json Content-Type: application/json { "table_name": "Action Steps", "other_table_name": "Students", "link_id": "5UNS", "table_row_id": "Wc45DYLDR_-aCDbfi97wFw", "other_table_row_id": "HRTFDECtTR6SYRTDot6wdQ" } #+end_src #+RESULTS: #+begin_SRC js { "success": true } #+end_SRC Now I want to delete one of those links. We'll use a DELETE request. #+begin_src restclient :results value :wrap SRC js DELETE https://table.tfcconnection.org/dtable-server/api/v1/dtables/02bcc337-2b09-42c6-ae75-310599e710c6/links/ Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjUxNzU4NDMsImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.WKWiQ2Q3vZprjHXNphAlm09u9kQ_SpMrBQ763vb7J58 Accept: application/json Content-Type: application/json { "table_name": "Action Steps", "other_table_name": "Students", "link_id": "5UNS", "table_row_id": "Wc45DYLDR_-aCDbfi97wFw", "other_table_row_id": "HRTFDECtTR6SYRTDot6wdQ" } #+end_src #+RESULTS: #+begin_SRC js { "success": true } #+end_SRC Let's see if we can't get the picture of our student. #+begin_src restclient GET https://table.tfcconnection.org/workspace/3/asset/02bcc337-2b09-42c6-ae75-310599e710c6/images/2021-06/kai.jpg Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjU0OTk5OTksImR0YWJsZV91dWlkIjoiMDJiY2MzMzctMmIwOS00MmM2LWFlNzUtMzEwNTk5ZTcxMGM2IiwidXNlcm5hbWUiOiIiLCJwZXJtaXNzaW9uIjoicnciLCJhcHBfbmFtZSI6IkRpc2NpcGxlbWFraW5nIEFwcCJ9.fZu1z5F8mLoi6AdoGnrvKnEOqt5x4SInNB9kiJa0YcM #+end_src