From f11cc2b6d09e66268f3d7ae597ce786a836ad245 Mon Sep 17 00:00:00 2001 From: doobneek Date: Fri, 2 Jan 2026 15:27:20 -0500 Subject: [PATCH 1/2] Add copyedit script_updated_at tracking --- .../20260102153000-add-script-updated-at.js | 46 +++++++++++++++++++ src/controllers/validation/locations.js | 1 + src/controllers/validation/organizations.js | 1 + src/controllers/validation/services.js | 1 + src/models/location.js | 1 + src/models/organization.js | 1 + src/models/phone.js | 1 + src/models/physical-address.js | 1 + src/models/service.js | 1 + src/services/data-changes.js | 17 ++++++- 10 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 sequelize/migrations/20260102153000-add-script-updated-at.js diff --git a/sequelize/migrations/20260102153000-add-script-updated-at.js b/sequelize/migrations/20260102153000-add-script-updated-at.js new file mode 100644 index 0000000..75d8aa6 --- /dev/null +++ b/sequelize/migrations/20260102153000-add-script-updated-at.js @@ -0,0 +1,46 @@ +module.exports = { + async up(queryInterface, Sequelize) { + return queryInterface.sequelize.transaction(t => Promise.all([ + queryInterface.addColumn( + 'locations', + 'script_updated_at', + { type: Sequelize.DataTypes.DATE }, + { transaction: t }, + ), + queryInterface.addColumn( + 'services', + 'script_updated_at', + { type: Sequelize.DataTypes.DATE }, + { transaction: t }, + ), + queryInterface.addColumn( + 'phones', + 'script_updated_at', + { type: Sequelize.DataTypes.DATE }, + { transaction: t }, + ), + queryInterface.addColumn( + 'organizations', + 'script_updated_at', + { type: Sequelize.DataTypes.DATE }, + { transaction: t }, + ), + queryInterface.addColumn( + 'physical_addresses', + 'script_updated_at', + { type: Sequelize.DataTypes.DATE }, + { transaction: t }, + ), + ])); + }, + + async down(queryInterface) { + return queryInterface.sequelize.transaction(t => Promise.all([ + queryInterface.removeColumn('locations', 'script_updated_at', { transaction: t }), + queryInterface.removeColumn('services', 'script_updated_at', { transaction: t }), + queryInterface.removeColumn('phones', 'script_updated_at', { transaction: t }), + queryInterface.removeColumn('organizations', 'script_updated_at', { transaction: t }), + queryInterface.removeColumn('physical_addresses', 'script_updated_at', { transaction: t }), + ])); + }, +}; diff --git a/src/controllers/validation/locations.js b/src/controllers/validation/locations.js index d72f69b..688a502 100644 --- a/src/controllers/validation/locations.js +++ b/src/controllers/validation/locations.js @@ -4,6 +4,7 @@ import { SORT_OPTIONS, SORT_ORDER } from '../sort-by'; const updateMetadataSchema = Joi.object().keys({ source: Joi.string(), lastUpdated: Joi.date().iso(), + copyedit: Joi.boolean(), }); export default { diff --git a/src/controllers/validation/organizations.js b/src/controllers/validation/organizations.js index 860540f..f05dde3 100644 --- a/src/controllers/validation/organizations.js +++ b/src/controllers/validation/organizations.js @@ -3,6 +3,7 @@ import Joi from 'joi'; const updateMetadataSchema = Joi.object().keys({ source: Joi.string(), lastUpdated: Joi.date().iso(), + copyedit: Joi.boolean(), }); export default { diff --git a/src/controllers/validation/services.js b/src/controllers/validation/services.js index 98d5ac6..741f86a 100644 --- a/src/controllers/validation/services.js +++ b/src/controllers/validation/services.js @@ -15,6 +15,7 @@ const hourRegex = /^\d{2}:\d{2}$/; const updateMetadataSchema = Joi.object().keys({ source: Joi.string(), lastUpdated: Joi.date().iso(), + copyedit: Joi.boolean(), }); export default { diff --git a/src/models/location.js b/src/models/location.js index 11ac89a..9095460 100644 --- a/src/models/location.js +++ b/src/models/location.js @@ -17,6 +17,7 @@ module.exports = (sequelize, DataTypes, Op) => { hidden_from_search: DataTypes.BOOLEAN, slug: DataTypes.TEXT, last_validated_at: DataTypes.DATE, + script_updated_at: DataTypes.DATE, name_vector: DataTypes.TSVECTOR, streetview_url: DataTypes.TEXT, }, { diff --git a/src/models/organization.js b/src/models/organization.js index 4c6c0fa..029b445 100644 --- a/src/models/organization.js +++ b/src/models/organization.js @@ -13,6 +13,7 @@ module.exports = (sequelize, DataTypes, Op) => { email: DataTypes.TEXT, url: DataTypes.TEXT, partners: DataTypes.BOOLEAN, + script_updated_at: DataTypes.DATE, name_vector: DataTypes.TSVECTOR, }, { underscored: true, diff --git a/src/models/phone.js b/src/models/phone.js index edc068d..02c7bd0 100644 --- a/src/models/phone.js +++ b/src/models/phone.js @@ -13,6 +13,7 @@ module.exports = (sequelize, DataTypes) => { type: DataTypes.TEXT, language: DataTypes.TEXT, description: DataTypes.TEXT, + script_updated_at: DataTypes.DATE, }, { underscored: true, underscoredAll: true, diff --git a/src/models/physical-address.js b/src/models/physical-address.js index db16861..2ce19b7 100644 --- a/src/models/physical-address.js +++ b/src/models/physical-address.js @@ -26,6 +26,7 @@ module.exports = (sequelize, DataTypes) => { type: DataTypes.TEXT, allowNull: false, }, + script_updated_at: DataTypes.DATE, }, { underscored: true, underscoredAll: true, diff --git a/src/models/service.js b/src/models/service.js index 268c5dd..24d2e6d 100644 --- a/src/models/service.js +++ b/src/models/service.js @@ -15,6 +15,7 @@ module.exports = (sequelize, DataTypes) => { interpretation_services: DataTypes.TEXT, fees: DataTypes.TEXT, additional_info: DataTypes.TEXT, + script_updated_at: DataTypes.DATE, name_vector: DataTypes.TSVECTOR, description_vector: DataTypes.TSVECTOR, }, { diff --git a/src/services/data-changes.js b/src/services/data-changes.js index 665513b..44909a4 100644 --- a/src/services/data-changes.js +++ b/src/services/data-changes.js @@ -69,8 +69,21 @@ export const updateInstance = async (user, instance, values, options = {}) => const { metadata, ...updateOptions } = options; const previousValues = { ...instance.get({ plain: true }) }; + const metadataValues = { ...values }; + const updateValues = { ...values }; + const isCopyedit = Boolean(metadata && metadata.copyedit); + + if (isCopyedit) { + updateOptions.silent = true; + const rawAttributes = instance && + instance.constructor && + instance.constructor.rawAttributes; + if (rawAttributes && rawAttributes.script_updated_at) { + updateValues.script_updated_at = new Date(); + } + } - const newInstance = await instance.update(values, { + const newInstance = await instance.update(updateValues, { ...updateOptions, transaction: t, }); @@ -78,7 +91,7 @@ export const updateInstance = async (user, instance, values, options = {}) => await createMetadataForFields({ user, actionType: actionTypes.update, - values, + values: metadataValues, previousValues, newInstance, customMetadata: metadata, From 9d5be291bedb705cc90218a4c97bc568947a3402 Mon Sep 17 00:00:00 2001 From: doobneek Date: Mon, 12 Jan 2026 18:42:01 -0500 Subject: [PATCH 2/2] Add migration for cleaned text/phones and location updates --- .../20260112091500-clean-locations-data.js | 181 + .../data/20260112-clean-text-phones.json | 18205 ++++++++++++++++ .../data/20260112-location-pipeline.json | 2471 +++ 3 files changed, 20857 insertions(+) create mode 100644 sequelize/migrations/20260112091500-clean-locations-data.js create mode 100644 sequelize/migrations/data/20260112-clean-text-phones.json create mode 100644 sequelize/migrations/data/20260112-location-pipeline.json diff --git a/sequelize/migrations/20260112091500-clean-locations-data.js b/sequelize/migrations/20260112091500-clean-locations-data.js new file mode 100644 index 0000000..268970b --- /dev/null +++ b/sequelize/migrations/20260112091500-clean-locations-data.js @@ -0,0 +1,181 @@ +import fs from 'fs'; +import path from 'path'; +import models from '../../src/models'; +import { createInstance, updateInstance } from '../../src/services/data-changes'; + +const DATA_DIR = path.join(__dirname, 'data'); + +const readJson = filename => + JSON.parse(fs.readFileSync(path.join(DATA_DIR, filename), 'utf8')); + +const { + serviceUpdates = [], + phoneUpdates = [], +} = readJson('20260112-clean-text-phones.json'); + +const { locationUpdates = [] } = readJson('20260112-location-pipeline.json'); + +const METADATA = { source: 'migration' }; + +const buildAddressUpdate = (currentAddress, nextAddress) => { + const update = {}; + if (nextAddress.street != null && nextAddress.street !== currentAddress.address_1) { + update.address_1 = nextAddress.street; + } + if (nextAddress.city != null && nextAddress.city !== currentAddress.city) { + update.city = nextAddress.city; + } + if (nextAddress.region != null && nextAddress.region !== currentAddress.region) { + update.region = nextAddress.region; + } + if (nextAddress.state != null && nextAddress.state !== currentAddress.state_province) { + update.state_province = nextAddress.state; + } + if (nextAddress.postalCode != null && nextAddress.postalCode !== currentAddress.postal_code) { + update.postal_code = nextAddress.postalCode; + } + if (nextAddress.country != null && nextAddress.country !== currentAddress.country) { + update.country = nextAddress.country; + } + return update; +}; + +const updateServiceEventInfo = async (serviceId, eventRelatedInfo) => { + if (!eventRelatedInfo) { + return; + } + const event = eventRelatedInfo.event; + const information = eventRelatedInfo.information; + if (!event || information == null) { + return; + } + const existing = await models.EventRelatedInfo.findOne({ + where: { + service_id: serviceId, + event, + }, + }); + + if (existing) { + if (existing.information !== information) { + await updateInstance( + '', + existing, + { information }, + { metadata: METADATA }, + ); + } + return; + } + + await createInstance( + '', + models.EventRelatedInfo.create.bind(models.EventRelatedInfo), + { + service_id: serviceId, + event, + information, + }, + { metadata: METADATA }, + ); +}; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + for (const update of serviceUpdates) { + const serviceId = update.service_id; + const payload = update.payload || {}; + if (!serviceId || !payload) { + continue; + } + + const service = await models.Service.findByPk(serviceId); + if (!service) { + console.log('Skipping missing service', serviceId); + continue; + } + + if (payload.description != null && payload.description !== service.description) { + await updateInstance( + '', + service, + { description: payload.description }, + { metadata: METADATA }, + ); + } + + await updateServiceEventInfo(serviceId, payload.eventRelatedInfo); + } + + for (const update of phoneUpdates) { + const phoneId = update.phone_id; + const payload = update.payload || {}; + if (!phoneId || !payload) { + continue; + } + + const phone = await models.Phone.findByPk(phoneId); + if (!phone) { + console.log('Skipping missing phone', phoneId); + continue; + } + + if (payload.number != null && payload.number !== phone.number) { + await updateInstance( + '', + phone, + { number: payload.number }, + { metadata: METADATA }, + ); + } + } + + for (const update of locationUpdates) { + const locationId = update.location_id; + const payload = update.payload || {}; + if (!locationId || !payload) { + continue; + } + + const location = await models.Location.findByPk(locationId, { + include: [models.PhysicalAddress], + }); + + if (!location) { + console.log('Skipping missing location', locationId); + continue; + } + + if (payload.address) { + const addresses = location.PhysicalAddresses || []; + if (addresses.length !== 1) { + console.log('Skipping address update with invalid address count', locationId); + } else { + const addressUpdate = buildAddressUpdate(addresses[0], payload.address); + if (Object.keys(addressUpdate).length) { + await updateInstance( + '', + addresses[0], + addressUpdate, + { metadata: METADATA }, + ); + } + } + } + + if (payload.streetview_url != null && payload.streetview_url !== location.streetview_url) { + await updateInstance( + '', + location, + { streetview_url: payload.streetview_url }, + { metadata: METADATA }, + ); + } + } + }, + + async down(queryInterface, Sequelize) { + // No-op: original values were not captured for these data fixes. + }, +}; diff --git a/sequelize/migrations/data/20260112-clean-text-phones.json b/sequelize/migrations/data/20260112-clean-text-phones.json new file mode 100644 index 0000000..2ea93bd --- /dev/null +++ b/sequelize/migrations/data/20260112-clean-text-phones.json @@ -0,0 +1,18205 @@ +{ + "serviceUpdates": [ + { + "service_id": "0000ab62-9170-4726-9daa-2c641029df7b", + "location_id": "dbcb2040-6949-469d-9c44-0acaeab205a0", + "payload": { + "description": "Submit an online request for an at-home HIV test starprogram.nyc/star-health-center/services/home-hiv-testaccuracy of that test is less precise than a 4th -generation test done in labs that can reveal an infection starting at two weeks after the virus's entry into your system.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please call for an appointment at (347) 909-1680." + } + } + }, + { + "service_id": "00251f03-dac4-4ac3-8592-30e24b756c75", + "location_id": "18ab0ef9-03a2-4ec9-9ca6-660dfd076354", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "If you wish to get a bed here, ask your social worker to complete a referral form. Self-enrollment or walk-ins are not allowed; they usually accept people who age out (turn 21 years old) of the youth shelters across NYC." + } + } + }, + { + "service_id": "002e044c-f696-416c-8d8f-505f491bb193", + "location_id": "058a39a5-c0d0-4ea0-b331-10b85fefe8d5", + "payload": { + "description": "11-week career course. Participants are paid a $15 hourly wage. Certifications include:\n\u2022 4-hr DOT Site Safety Flagger\n\u2022 2-hr Drug/Alcohol Awareness\n\u2022 8-hr Fall Prevention\n\u2022 OSHA 30 Construction, and more." + } + }, + { + "service_id": "007aea06-ba7d-4ffd-a664-2555c0cbc69d", + "location_id": "b006d271-6738-42f7-a4f9-5407558cf565", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Serving residents in all of Staten Island" + } + } + }, + { + "service_id": "018595b6-160d-4469-b1f1-9f1fa5562035", + "location_id": "272bf16c-1483-4157-9bbf-c642f34ab75b", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Serving ZIP Codes: 11201, 11205, 11213, 11215, 11216, 11217, 11225, 11231, 11233, 11238" + } + } + }, + { + "service_id": "01b1477c-af97-4708-ba3b-a4afc5e616f1", + "location_id": "d58bf45e-75af-4980-ae50-35aae247bebe", + "payload": { + "description": "Services include:\n\u2022 Detoxification and Rehabilitation Referrals\n\u2022 Educational and Vocational Referrals\n\u2022 Individual Counseling\n\u2022 MOUD\n\u2022 Medication Evaluation\n\u2022 Mental Health Referrals", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk-ins are accepted\n\u2022 Call for more information\n\u2022 LMA specializes in Medications for Opioid Use Disorder (MOUD) using Methadone and Suboxone" + } + } + }, + { + "service_id": "01c386c3-dddc-4a66-aa4e-3cb88bd72862", + "location_id": "e2627807-d5cb-48e0-931e-f495ac84b239", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Age 18+\n\u2022 Must meet Mental Health requirements." + } + } + }, + { + "service_id": "01d57b99-79cf-4eea-96ee-a44351aeafab", + "location_id": "a86f9762-67d9-4fdc-8dba-6c2d9a1e76b5", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Lockers remain open for 30 minutes after scheduled closure.\n\u2022 For recreation activities at the facility, information, and accessible swimming pools, please visit this gonyuathletics.com/sports/2021/2/25/nyu-athletics-facilities-hours-access.aspx\n\u2022 Students have to be enrolled in the current semester to use the gym.\n\u2022 Bring your lock and dress appropriately" + } + } + }, + { + "service_id": "01fc6b2f-b9e6-4a7b-bb25-369569177263", + "location_id": "2e302015-6909-40de-85d4-9a84dc105d8c", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "For more information about this service, email director@meatloafkitchen.org." + } + } + }, + { + "service_id": "0226c222-4f0b-4506-890e-dfb2b5283618", + "location_id": "e19cd2bd-6804-4964-ab90-0b1ba6754260", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Behavioral Health\n\u2022 Cardiology\n\u2022 Counseling\n\u2022 Dental\n\u2022 HIV Testing\n\u2022 Infectious Diseases\n\u2022 Medication Assisted Treatment\n\u2022 OB/GYN\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 WIC\n\u2022 340B Prescription Drug Program", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Open every second Saturday of the month for primary care only for current patients" + } + } + }, + { + "service_id": "02f2b8f9-937f-4f9e-8721-9182972495ac", + "location_id": "1759c6ba-027b-4470-8ce6-9affcc76480d", + "payload": { + "description": "Free services include:\n\u2022 Alternative Therapy (Mediation, Hypnosis, Art Therapy, etc.)\n\u2022 Advocacy\n\u2022 Crisis intervention\n\u2022 Individual and Group Therapy\n\u2022 Psychiatric Evaluation" + } + }, + { + "service_id": "0341e51e-f6f8-49f0-84fc-22a6781ec520", + "location_id": "30f61959-fecc-450f-b59f-126a345aa8ea", + "payload": { + "description": "\u2022 Breakfast, $1.25 suggested donation\n\u2022 Lunch, $1.25 suggested donation\n\u2022 Recreational and educational activities are happening throughout the day\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "03433e7c-f77e-44b4-8140-d3df75a23798", + "location_id": "8a2c6050-b29a-474f-84ac-6aa5b1ce9e9b", + "payload": { + "description": "\u2022 Pieces of Training (OSHA, Food Handler, etc.)\n\u2022 Employment\n\u2022 Education\n\u2022 Tax Filing (during tax season)\n\u2022 Mental Health\n\u2022 Financial Coaching\n\u2022 Youth Development" + } + }, + { + "service_id": "035b039a-a084-4541-938f-01ed5f8550e7", + "location_id": "6541f292-94c0-46ba-a5ee-275224475941", + "payload": { + "description": "\u2022 If you, as a parent, are under investigation for child abuse or neglect by ACS and live in Manhattan South of 96th Street, the Bronx, or Queens, you may call to enroll in advocacy, case management, and navigation of the process.\n\u2022 The judge might assign you advocates from the Family Representation Center if you are already in family court proceedings. Only Article 10 cases are accepted\n\u2022 If there is a conflict of interest, you may contact this agency even if you are from another borough. If you are from Upper Manhattan, you should contact Neighborhood Defender Services; if you live in the Bronx, you can try Bronx Defenders; if you live in Brooklyn, try Brooklyn Defenders" + } + }, + { + "service_id": "03b72088-7697-4aa6-9bda-cc23c6375db7", + "location_id": "225aa5a4-f8ce-4f28-b024-c266d7311f44", + "payload": { + "description": "\u2022 College Connections, see eligibility and how to apply at meoccollegeconnections.org\n\u2022 Career Services, Tutoring, and Academic Advisement\n\u2022 See details about the following programs here (all are hybrid, ESOL in-person):\n\u2022 English for Speakers of Other Languages (ESOL)\n\u2022 College Preparation\n\u2022 High School Equivalency\n\u2022 Developmental Study Skills\n\u2022 Numeracy\n\u2022 Literacy Development" + } + }, + { + "service_id": "03fe0d8c-d17c-4492-b75a-edfe2c148471", + "location_id": "dd4c53bf-76cf-4005-bf4a-73c22449d850", + "payload": { + "description": "\u2022 Career Development\n\u2022 Classes on nutrition, crocheting, parenting, and dance classes.\n\u2022 Completing Housing Applications\n\u2022 Food Subsidies\n\u2022 Life Planning Goal Setting\n\u2022 Maternity Support (Doula Care)\n\u2022 Referrals to primary and prenatal care, free fitness center, child care, and mental health", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Spanish and French translations are available. To enroll, walk in during open hours, call (212) 665-2600 at extensions -387, -332, -347, -300 (main office), or email info@nmppcares.org." + } + } + }, + { + "service_id": "04d7f077-2e52-49da-9c8a-4028e2d2b1d3", + "location_id": "4e2998fc-9437-495e-a8c8-465bbebd08d2", + "payload": { + "description": "Services include:\n\u2022 Family Relationships and Email Coaching\n\u2022 Mediation\n\u2022 Parenting Coordination\n\u2022 Relationship Toolkit" + } + }, + { + "service_id": "055ef0d5-8052-46ab-8462-49a76e0004bd", + "location_id": "43a11a9e-9cb0-4810-8161-9fc1755cdcd8", + "payload": { + "description": "Services include:\n\u2022 Housing Placement Assistance Program\n\u2022 Long-Term Rental Assistance Program\n\u2022 Rental Assistance Program (RAP)" + } + }, + { + "service_id": "05a3c3d8-a51e-4be7-ad13-1b5d6bb1bd9e", + "location_id": "27befada-ca63-44f4-9393-c4e780a37a7f", + "payload": { + "description": "Services include:\n\u2022 ADHD Assessments\n\u2022 Child and Family Program (age requirement for the child is 6-17 (until their 18th birthday)\n\u2022 Couple's Therapy\n\u2022 Dual Diagnosis Program\n\u2022 Psychiatric Medication Management\n\u2022 Telemental Health Program (for those who are physically present in NYS; residents of other states have to come in person)" + } + }, + { + "service_id": "05a7e668-c4ab-4688-8beb-1798716f5739", + "location_id": "19cc2843-eb77-4b11-aad3-a49ef5ae3a1d", + "payload": { + "description": "Services include:\n\u2022 Annual physicals\n\u2022 GYN\n\u2022 HIV and STI Testing, Counseling, and Care\n\u2022 Immunizations and TB Screening\n\u2022 Insurance Enrollment\n\u2022 Medical Case Management\n\u2022 Smoking Cessation Counseling and Treatment\n\u2022 Transgender Care" + } + }, + { + "service_id": "0671016e-4c99-4185-9fb2-555d773a18c5", + "location_id": "4fd147da-0d99-4109-87cd-40840a2b2507", + "payload": { + "description": "Services include:\n\u2022 Connection to care\n\u2022 HIV and Hepatitis C testing\n\u2022 Support groups" + } + }, + { + "service_id": "06adfabe-77c1-41bb-9471-c7198162e2be", + "location_id": "1fbff053-0c39-40e0-9f8e-af5c6d6a44b2", + "payload": { + "description": "Services include:\n\u2022 Individual Counseling\n\u2022 Methadone Maintenance\n\u2022 Outpatient Treatment\n\u2022 Referrals\n\u2022 Skills Training\n\u2022 Support Groups" + } + }, + { + "service_id": "06cae51e-0d04-4dfc-bae0-3b9bc1d8fa0f", + "location_id": "17a0bea9-88df-4d9b-8e1e-779bba41ca9b", + "payload": { + "description": "\u2022 Referrals for legal support, asylum, health insurance, and benefits\n\u2022 OSHA 30+, SST 10 (both in Spanish), ESL Pieces of Training\n\u2022 Members can get information on Workers Corners for Day Laborers (gigs are paid in cash and are available to Spanish-speaking construction workers, with no legal paperwork usually requested)\n\u2022 Mexican consulate services (renewal of passports), IDNYC, DMV Appointments\n\u2022 Promise NYC \u2014 vouchers for childcare for 0-13-year-olds who are undocumented and live in NYC" + } + }, + { + "service_id": "06caf9dc-d105-4d31-85e2-73e7c6e542a2", + "location_id": "33582379-4d99-475e-aad5-40cbe3faf34b", + "payload": { + "description": "\u2022 Food and activities, walk in to enroll with an ID and to find out the calendar of the activities\n\u2022 Transportation is available to people with mobility issues, call to find out which center is closer to you\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "07605a57-ee50-49c2-9795-831665b18e66", + "location_id": "c79fbcf4-edb2-4252-a06f-7dead52a26ef", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Behavioral Health\n\u2022 Dental Care and Oral Surgery\n\u2022 Gynecology\n\u2022 Hospital Care\n\u2022 Pediatrics\n\u2022 Specialty Care" + } + }, + { + "service_id": "07624f27-663b-407c-82ca-779ce9644153", + "location_id": "b29ae897-9251-46ec-9aa6-57f63e7cd15c", + "payload": { + "description": "Services include:\n\u2022 Wellness Law - free family, benefit, and employment law for people living with HIV\n\u2022 HIV case management\n\u2022 Kinship case management for relatives caring for a child who is not their direct offspring\n\u2022 2010E Housing applications, HRA, affordable phone plans\n\u2022 Care coordination: finding a doctor, health insurance enrollment\n\u2022 Education and vocational services" + } + }, + { + "service_id": "07e02c21-7a3f-41fd-a1e9-3af21259c81f", + "location_id": "f726f98f-708f-44a0-b990-cf9002fc000f", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "This service is on the last Sunday of the month only. Email brooklynfriendlyfoodhelp@gmail.com for more details." + } + } + }, + { + "service_id": "07e6f2f9-60e2-4d17-94f3-c6bb3a64d1f3", + "location_id": "2bdca5ea-0198-4ee7-bf77-42c6da2a2d14", + "payload": { + "description": "Services include:\n\u2022 Crisis Management\n\u2022 External Referrals\n\u2022 Individual and Group Therapy\n\u2022 Medication Evaluations and Management\n\u2022 Personalized Mental Health Assessments and Psychiatric Evaluations" + } + }, + { + "service_id": "085b7e7b-17b4-45d5-bed0-e6054d3a4a19", + "location_id": "d6706f67-8235-4562-a014-2342e6932048", + "payload": { + "description": "\u2022 Step 1: any adult individual can call to get referred to Staten Island South Beach , The Bronx, or Los Angeles (flights are covered) in-patient recovery program with anonymous groups and a 12-step method for 14-28 days; insurance may be required. Assistance is offered in English and Russian\n\u2022 Step 2: if they have space (only 10 beds are available), you may stay for up to a year in the shelter while continuing groups and outpatient substance use treatment at Coney Island Hospital." + } + }, + { + "service_id": "09c8b973-be34-466b-95d5-dc5196cfcc5c", + "location_id": "a4e1ea35-ff1d-4378-8da3-b608cc382923", + "payload": { + "description": "Services include:\n\u2022 Free HIV testing Every 1st Thursday of the month 3:00 PM \u2014 6:00 PM\n\u2022 \u2022 Youth Education. Age requirement: 14-21 (until your 22nd birthday)\n\u2022 Cultural Awareness and LGBTQIA2S+ Services\n\u2022 Case management for adult Chinese speakers living with HIV and escorts to a doctor at Mount Sinai" + } + }, + { + "service_id": "0a514b1b-2518-4802-a060-1105aa32d2a2", + "location_id": "260222c1-9b34-43b5-9cdd-549f0cc1f633", + "payload": { + "description": "ESL and GED enrollment." + } + }, + { + "service_id": "0ae3d6aa-e7a5-4726-b2e0-706a873a301d", + "location_id": "b7af5a52-f273-43f5-9126-007c11bfc4c6", + "payload": { + "description": "Services include:\n\u2022 Medication management for opioid use disorder\n\u2022 Psychiatric services\n\u2022 Harm reduction education\n\u2022 Individual and group counseling\n\u2022 Medical services, including hepatitis C and HIV assessment and treatment\n\u2022 Career and education counseling" + } + }, + { + "service_id": "0b871cb4-e01b-44a7-970e-f66443913b52", + "location_id": "f8d52735-546b-41db-acd4-cc7d14e157fe", + "payload": { + "description": "Services include:\n\u2022 Medication management for opioid use disorder\n\u2022 Psychiatric services\n\u2022 Harm reduction education\n\u2022 Individual and group counseling\n\u2022 Medical services, including hepatitis C and HIV assessment and treatment\n\u2022 Career and education counseling" + } + }, + { + "service_id": "0b9093cf-2da9-4531-87f9-a7d004e90354", + "location_id": "07381fee-d70f-41ae-a309-7bada6584f74", + "payload": { + "description": "Services include:\n\u2022 Career Services Center\n\u2022 Math Development\n\u2022 Reading Comprehension\n\u2022 TASC (High School Equivalency Exam)\n\u2022 Writing Skills" + } + }, + { + "service_id": "0c07071e-b965-4554-8e21-420e6edc9590", + "location_id": "ce1819e7-2e43-4629-ae60-c16a545d1263", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call (212) 343-1122 for more information." + } + } + }, + { + "service_id": "0cb7b8f6-0e81-4798-bb81-4c18cfb06653", + "location_id": "6b750362-4337-402c-bb73-7936803e1f0b", + "payload": { + "description": "Meetings include:\n\u2022 Al-Anon\n\u2022 Alcoholics Anonymous (AA)\n\u2022 Narcotics Anonymous (NA)" + } + }, + { + "service_id": "0cff611c-7a2a-4693-858f-9385b194b0e6", + "location_id": "4dcd483d-eef8-4427-adb4-d6376f2ff1d8", + "payload": { + "description": "\u2022 Counseling, peer support, and groups.\n\u2022 Amenities:\n\u2022 Toiletries\n\u2022 Gender-neutral restrooms\n\u2022 Wi-Fi and charging stations" + } + }, + { + "service_id": "0de88e83-9303-4646-8370-010a95e114f8", + "location_id": "c4ff7ea3-93d3-4d45-b593-b8cd60c67d3f", + "payload": { + "description": "Services include:\n\u2022 Case Management\n\u2022 Employment and Vocational Referrals\n\u2022 Individual and Group Therapy\n\u2022 Legal Referrals\n\u2022 Medication- Assisted Treatment\n\u2022 MICA Treatment", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 The Fred Cooper outpatient program is located on the 10th floor\n\u2022 Sliding fee scales are available for uninsured individuals" + } + } + }, + { + "service_id": "0df46b3d-1899-4230-a566-2179f1da6fa1", + "location_id": "2b08a07b-bfe7-4ff5-a397-ac1fbd0468f5", + "payload": { + "description": "Services include:\n\u2022 Appointment Scheduling\n\u2022 Crisis Intervention\n\u2022 Education Referrals\n\u2022 Housing Referrals and Assessment\n\u2022 Integration of Medical and Behavioral Care\n\u2022 Peer and Family Counseling/Support" + } + }, + { + "service_id": "0e2bd5cd-37aa-4233-bbd4-6f85e5bad326", + "location_id": "fb7c0b56-3872-48af-8f38-8fd83f2f56c2", + "payload": { + "description": "Services include:\n\u2022 Naturalization\n\u2022 Certificates of citizenship\n\u2022 Renewal and replacement of immigration documents\n\u2022 Full and partial fee waivers requests\n\u2022 Family-based petitions\n\u2022 Deferred Action for Childhood Arrivals (DACA)\n\u2022 Temporary Protected Status (TPS)\n\u2022 Freedom of Information/Privacy Act Request (FOIA)\n\u2022 Adjustment of status\n\u2022 Consular processing.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "For more information on the services provided, go to ww1.cuny.edu/sites/citizenship-now, email citizenshipnowinfo@cuny.edu, text (929) 334-3784, call (646) 664-9400 and (212) 652-2071, or request a callback at ybephbsyus.formstack.com/forms/call_back_request. You do not have to be a student of CUNY to receive legal immigration help here." + } + } + }, + { + "service_id": "0ea53a9e-2a74-4af5-b0a0-167b3c43142b", + "location_id": "0d381537-31c4-4165-a5a0-4d7ffc02bace", + "payload": { + "description": "Free educational programs aimed towards helping you get your high school equivalency certificate and move on to a career, college, or vocational/training program. When enrolled in the job-readiness program or GED, participants may be eligible for incentives. Zoom instruction is available." + } + }, + { + "service_id": "0eaff9f5-3dcc-4d56-8b71-d21252a4534f", + "location_id": "fcfe3fe4-0ee5-4685-975e-07ee4856cce9", + "payload": { + "description": "\u2022 Food and activities, walk in to enroll with an ID and to find out the calendar of the activities\n\u2022 Transportation is available to people with mobility issues, call to find out which center is closer to you\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations", + "eventRelatedInfo": { + "event": "COVID19", + "information": "For program inquiries, please contact:\n
\n\u2022 Diane at (718) 651-0096 x213 or via email d.miller@elmcor.org\n\u2022 Danielle at (718) 651-0096 x207 or via email d.gabbin-burton@elmcor.org" + } + } + }, + { + "service_id": "0f32a063-52fa-41c2-9a2b-dd6f4082f687", + "location_id": "1e5ea5d1-2fd9-4ad0-b5a4-8614935b1e8e", + "payload": { + "description": "Services include:\n\u2022 Adult Day Health Care\n\u2022 Behavioral Health Services\n\u2022 Diabetes Care and Endocrinology\n\u2022 Eye Exams and Eyewear\n\u2022 Occupational Therapy\n\u2022 Podiatry\n\u2022 Primary Care Services" + } + }, + { + "service_id": "0f54b7cd-1185-4f1c-9cde-c051231f09e5", + "location_id": "87b928ff-f80a-4934-91d6-21702b8cddd0", + "payload": { + "description": "\u2022 Name change for people born in different Caribbean countries\n\u2022 Food assistance caribbeanequalityproject.org/food-justice\n\u2022 Asylum, and immigration services\n\u2022 Sexual and gender-affirming health referrals, mental health support, linkage to other healthcare and medical coverage\n\u2022 Support groups" + } + }, + { + "service_id": "0fe96122-3d5d-4b1e-b1c7-7cec61157f63", + "location_id": "85f17c89-ed89-4beb-a4ed-3200c9db4a7e", + "payload": { + "description": "Services include:\n\u2022 Family Planning\n\u2022 GYN, Prenatal Care, Mammography\n\u2022 Health Education\n\u2022 Nutrition\n\u2022 Optometry\n\u2022 Primary Care\n\u2022 Radiology\n\u2022 Social Services\n\u2022 Mental Health\n\u2022 Vaccines\n\u2022 Health Insurance Enrollment" + } + }, + { + "service_id": "0fec2c64-8b05-4599-9ca5-b67e14fdc6d6", + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "description": "Services include:\n\u2022 Anger and Stress Management\n\u2022 Depression and Anxiety\n\u2022 Grief Counseling\n\u2022 Individual and Group Counseling" + } + }, + { + "service_id": "10484de2-7bab-46db-aaff-687bed0509bb", + "location_id": "092547f4-10af-40b2-b80a-7e23da6dfc8c", + "payload": { + "description": "\u2022 Summer Health Internship Program (SHIP) for high schoolers and college freshmen\n\u2022 NERA MedPrep Health Careers Opportunity Program Academy for college freshmen and sophomores, apply at neramedprep.org" + } + }, + { + "service_id": "108a9fe7-f633-4636-a167-0ef3b486332d", + "location_id": "921708e1-330e-4423-9b7c-301b5003910f", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Dental\n\u2022 GYN\n\u2022 Pediatrics" + } + }, + { + "service_id": "10ccd938-1e51-4f29-8a65-ff06746d54ba", + "location_id": "8617dcea-4ea1-49ec-a225-3c124e458b50", + "payload": { + "description": "Services include:\n\u2022 Affordable Housing Applications\n\u2022 Eviction Prevention\n\u2022 Rental Assistance\n\u2022 Resident Services\n\u2022 Tenant Organizing\n\u2022 Tenants Rights Workshops" + } + }, + { + "service_id": "10d6b628-75cb-4266-b6a8-17a4b5b54d19", + "location_id": "8bdc072d-05ac-497a-b531-a00703d8da3e", + "payload": { + "description": "Free tax and preparation services" + } + }, + { + "service_id": "10e3bbab-5d57-4e52-a0ae-d269811342d4", + "location_id": "8990f94e-36a2-4726-8843-52549f803053", + "payload": { + "description": "\u2022 If you, as a parent, are under investigation for child abuse or neglect by ACS and live in Manhattan South of 96th Street, the Bronx, or Queens, you may call to enroll in advocacy, case management, and navigation of the process.\n\u2022 The judge might assign you advocates from the Family Representation Center if you are already in family court proceedings. Only Article 10 cases are accepted\n\u2022 If there is a conflict of interest, you may contact this agency even if you are from another borough. If you are from Upper Manhattan, you should contact Neighborhood Defender Services; if you live in the Bronx, you can try Bronx Defenders; if you live in Brooklyn, try Brooklyn Defenders" + } + }, + { + "service_id": "1106716b-b114-4b73-932f-4636c16ffa07", + "location_id": "72b77c76-2c23-478b-8104-ba2655aed8e7", + "payload": { + "description": "Services include:\n\u2022 Bronx High Need Re-Entry Health Project - Medicaid enrollment for releasees (for low-income people under 18 on probation in NYC, immigration status requirements might apply)\n\u2022 HIV, asthma, and Diabetes education workshops" + } + }, + { + "service_id": "110916be-d9d0-45d6-8d5c-299d4bd91ec9", + "location_id": "bd30eb3a-d7fd-49de-ac25-72de45c66001", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Medication Management\n\u2022 Psychiatry\n\u2022 Psychotherapy" + } + }, + { + "service_id": "116f40ce-8f45-4b48-8d5f-3b50940b0a9c", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "description": "Free food distribution is available to anyone in the space anytime upon request." + } + }, + { + "service_id": "11a79eb6-15f1-4c14-9012-105a6d7de127", + "location_id": "63aa4812-9df0-43af-98f0-216499fcb421", + "payload": { + "description": "The following services are free:\n\u2022 Full primary care services\n\u2022 Gender-affirming hormone therapy\n\u2022 Physical exams for work/school\n\u2022 STI/HIV/HCV lab screenings and PrEP/PEP services\n\u2022 Free or low-cost medications\n\u2022 Immunizations\n\u2022 Pelvic exams and Pap smears\n\u2022 Assistance applying to Medicaid and payment assistance programs and referrals\n\u2022 Note: privacy might be limited as there are woven shields instead of walls. The main clinic is on the 3rd floor, and there is no elevator. You may arrange for them to see you on the first floor. The visit takes 1.5 to 2 hours." + } + }, + { + "service_id": "1214986f-5043-40b9-890e-a9b83f071d44", + "location_id": "dc42b64b-12f2-42d3-ae25-9bf02f956a36", + "payload": { + "description": "Services for adults include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 GYN\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Pediatrics\n\u2022 Prescription Delivery\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Veteran's Services", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call to schedule an appointment" + } + } + }, + { + "service_id": "12323871-ad8e-48d9-a271-eda4ad639054", + "location_id": "12ef58c7-c1c8-4f50-9a2c-716be4f25fc0", + "payload": { + "description": "Service includes:\n\u2022 Coffee\n\u2022 Hot Meals\n\u2022 Snacks" + } + }, + { + "service_id": "1328435e-0150-45e3-8796-2b03325109bc", + "location_id": "53518396-af2a-49d3-b1ad-26619fe592a5", + "payload": { + "description": "Services include:\n\u2022 Anger Management, Domestic Violence, and Parenting Skills Workshops\n\u2022 Individual, Group, and Family Counseling\n\u2022 Medication Management\n\u2022 Psychological, Psychiatric, and Psychosocial Assessments and Diagnosis" + } + }, + { + "service_id": "1348afba-994a-47e7-b95a-3ee795b4e2ba", + "location_id": "b9c3a726-d253-4cba-a270-46c747b10051", + "payload": { + "description": "\u2022 Person-centered, trauma-informed treatment is provided to individuals with behavioral health issues.\n\u2022 Services include:\n\u2022 Family, Group, and Family Therapy\n\u2022 Medication Management\n\u2022 Telehealth" + } + }, + { + "service_id": "13da0121-96ee-49e5-8e60-ad0c0bd0a418", + "location_id": "579b7fce-cb99-4aba-bc82-fcfd61cb9891", + "payload": { + "description": "\u2022 Only Union County residents are served. Minors are referred to DCF | Child Protection and Permanency.\n\u2022 Clothing, food, shelter, and government assistance referrals are offered.\n\u2022 During the open hours, there is TV and recreation space." + } + }, + { + "service_id": "14afa469-a3ce-4177-9288-297b776f3823", + "location_id": "a554b78e-aed0-4f58-9955-11c7e9770250", + "payload": { + "description": "\u2022 This center offers culturally appropriate multilingual services. Mental health, inpatient, and outpatient substance use services.\n\u2022 They accept: Emblem Health Insurance Company, Empire Plan (NYSHIP), VNS Health, NY Medicaid and Medicare, 1199, Affinity/Molina, AmidaCare, Anthem, Fidelis Care, HealthFirst, Independent Health, MetroPlus, Unicare, United Healthcare, OSCAR, and OXFORD plans, Wellcare, and Local 6 NYHTC.\n\u2022 If you are a Medicaid or Medicare recipient, see if you qualify for a Round-Trip MetroCard upon your visit.\n\u2022 A residential youth mental health facility is available" + } + }, + { + "service_id": "14bdf121-dabe-4230-81ae-d74d29745514", + "location_id": "2bdca5ea-0198-4ee7-bf77-42c6da2a2d14", + "payload": { + "description": "Services include:\n\u2022 DUI/DWI Services\n\u2022 Individual, Group, and Family Counseling\n\u2022 Relapse Prevention\n\u2022 Teen/Adolescent Program for individuals aged 12-17 years old\n\u2022 Veteran's Program" + } + }, + { + "service_id": "14c70d5d-cc70-4444-8a0b-6f09f71ccb25", + "location_id": "4fd84824-013a-421d-b4b6-0ffb65c89972", + "payload": { + "description": "Services include:\n\u2022 Anger Management and Domestic Violence Prevention\n\u2022 Education and Job Counseling\n\u2022 Health Education\n\u2022 Housing Support\n\u2022 Individual, Group, and Family Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Opioid Overdose Prevention and Training\n\u2022 Parenting Skills\n\u2022 Psychiatric Evaluations and Medication\n\u2022 Trauma Recovery and Empowerment" + } + }, + { + "service_id": "14f4a4fd-7737-4424-8914-c93392a7a28a", + "location_id": "19dccab0-c3ec-4eb6-8138-2c56a3afead0", + "payload": { + "description": "Benefits enrollment and employment support, in-person parenting classes Parenting Journey for female-identified parents under 25 and male-identified parents under 30. Limited childcare spots are available to attendees; otherwise, please do not bring your child. Healthy Baby Program for pregnant females assigned at birth. You might be eligible for a $75 incentive upon completion, baby car seat pampers, and other essentials." + } + }, + { + "service_id": "1577c669-5859-44ca-b09a-a54942a9a990", + "location_id": "e2764c22-a814-4d16-b004-387efaaca6fe", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Art Therapy\n\u2022 Behavior Modification\n\u2022 Crisis Intervention\n\u2022 Family Therapy\n\u2022 Individual Therapy\n\u2022 Medication Evaluation and Management\n\u2022 Play Therapy\n\u2022 Psychiatric Evaluations", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Call (516) 620-2033 to schedule an appointment. Most health insurance plans, including Medicare, Medicaid, and Private Pay, are accepted. Sliding scale fees are available as needed.\n\u2022 24/7 crisis hotline operated; call 8446422435.\n\u2022 Only English-speaking providers are available, but the center has translation technologies." + } + } + }, + { + "service_id": "15b4d4d7-11d5-42b7-b33d-eb3d806b7586", + "location_id": "fcb5fdd7-f54d-4f79-b815-1d61c2d535f6", + "payload": { + "description": "Free OSHA 30, flagging, SST-NCCER, and plumbing", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please leave a message at (646) 542-1722 or email epacheco@strive.org to enroll. The services provide holistic support, paid pieces of training, and employment placement. MetroCards are provided upon your visits. Social services are also available." + } + } + }, + { + "service_id": "1608ce1e-6be5-412c-95d4-fa0b0f387379", + "location_id": "59ff1726-6260-454a-890c-37feda37524d", + "payload": { + "description": "In addition to several NYC District Offices, ACCES-VR by NYSED has satellite Offices, Please see more locations on YourPeer Map. Referrals, peer support, and independent living Reimbursement for career advancement training, reasonable accommodation (contact OHRMRA@NYSED.gov), and transportation (offered based on your income, might require you to have a Social Security Disability Insurance available to certain low-income people with disability that posses an eligible immigration status) Job development for those whose disability is an impediment to seeking employment (you must be legally allowed to work in the US) Applications for public benefits (immigration status and income requirements apply) Help is offered to NYC residents with physical and mental challenges. People with a criminal record of sexual violence are not served." + } + }, + { + "service_id": "1624c263-9523-469b-8fe5-23099619537b", + "location_id": "28c47a84-ff6c-4695-899a-b52de6ada8de", + "payload": { + "description": "Members can participate in various activities in and outside the Clubhouse to build relationships, socialize, and have fun. Venture House covers 50% of the cost for all outings." + } + }, + { + "service_id": "16650853-1f75-41aa-bbbe-e0ac4e94d755", + "location_id": "1e5308e5-dc25-4517-b216-e87393e86b61", + "payload": { + "description": "Services include:\n\u2022 Anger Management Groups\n\u2022 Group Work Program (Activities, Workshops, and Projects)\n\u2022 Mindfulness Groups\n\u2022 On-Site Medical Consultation\n\u2022 Referrals to other providers\n\u2022 Case management" + } + }, + { + "service_id": "16ef1a0d-9682-4fc8-8a98-f377f74dcc63", + "location_id": "f675daf9-8770-42e1-a76b-4d1239c5f832", + "payload": { + "description": "Snacks and activities for children." + } + }, + { + "service_id": "17868002-38df-435c-8234-85f28b7929c7", + "location_id": "11f4a2b0-d1bd-428d-9f2b-5694ae6e0b99", + "payload": { + "description": "\u2022 Contact the CRB to receive information and services on legal protections and obligations, pre-complaint interventions, events, workshops, and other programming that empowers citizens to better understand the City Human Rights Law and how to effectively assert their rights. You may also contact them to initiate an educational workshop at your location.\n\u2022 Call (212) 306-7450" + } + }, + { + "service_id": "17ca35c7-a899-4909-af6a-ec3d0070579d", + "location_id": "7c2cc058-8ad6-468a-944a-0fe635b676a1", + "payload": { + "description": "\u2022 At-home mentorship to children with higher social and emotional needs. Residents of Staten Island, Brooklyn, and Queens are accepted\n\u2022 They offer remote counseling for individuals 13-21 years old and in-person services for anyone 4-21 years old" + } + }, + { + "service_id": "17e76d77-acd1-44d2-b0be-cf8cf3861fd3", + "location_id": "34388965-5f1c-4229-a6ea-3cd27e6dc505", + "payload": { + "description": "Services include:\n\u2022 HIV and STI treatment and testing\n\u2022 Reproductive Health\n\u2022 Vaccinations\n\u2022 Oral PreP appointments, schedule at patienteducationgenius.com/dohmh-phone\n\u2022 Doxy PEP" + } + }, + { + "service_id": "17f3667f-35c8-42c1-a396-f131a89ad500", + "location_id": "a41e679f-bec5-4a0c-8bfe-14ef59f44c09", + "payload": { + "description": "\u2022 Bridge to Health Careers Class\n\u2022 Community Health Worker Training Program (held in Brooklyn)\n\u2022 Computer Literacy\n\u2022 Citizenship Class\n\u2022 English Class\n\u2022 Food Handlers Certification\n\u2022 Job Placement" + } + }, + { + "service_id": "181bc253-1524-4682-90bb-d2aaa67b6df6", + "location_id": "b48946e5-0fe2-463c-a614-06f8d145d124", + "payload": { + "description": "Services include:\n\u2022 Breast, cervical, and Colorectal Cancer Screening\n\u2022 Gynecological Checkups and Routine Care\n\u2022 Health Education\n\u2022 HIV and STI Testing and Treatment\n\u2022 Referrals to Specialty Care" + } + }, + { + "service_id": "18db159e-1b8d-4900-9b55-14c4ac12d36d", + "location_id": "b836e61d-7cbe-4711-a67d-f13463dcb3a3", + "payload": { + "description": "\u2022 Free services for survivors of domestic abuse, sexual violence, stalking, and human trafficking. FJC locations provide public access to community service providers and social and civil legal service providers.\n\u2022 The Brooklyn District Attorney\u2019s office is also on site.\n\u2022 YourPeer has many DV providers on the map.\n
 \u2014 If you need supportive housing, you might qualify for services from New Destiny (if your most recent DV incident occurred within the calendar year except December). Inquire about the immigration status and other criteria for eligibility at the FJC." + } + }, + { + "service_id": "18e27155-3e9b-4af4-8cd1-27cc6c2020cd", + "location_id": "8c001f45-47fd-4d3e-964f-fdce8111cd5a", + "payload": { + "description": "Immigration clinic for DACA and Green Card renewals, TPS applications, naturalization applications, and referrals." + } + }, + { + "service_id": "196f0644-b70d-4264-9659-31c2e0aa8b92", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "description": "\u2022 If you are staying for the morning services, you may not wait for the afternoon services. You must arrive between 9 AM and 10 AM and leave at 3 PM.\n\u2022 Services include:\n\u2022 Trauma-informed/Clinical services such as Crisis support, Counseling, LGBTQ+ Case Management, and Social workers\n\u2022 Supportive services such as Clothing, Life Skills Workshops, Computer Access, Referrals, and Social Activities." + } + }, + { + "service_id": "1a263a4b-db52-4274-888d-717159841fd9", + "location_id": "89df0afd-f75a-483d-a308-394e554103dd", + "payload": { + "description": "\u2022 Breakfast: 8:30 AM \u2013 9:30 AM\n
Lunch: 1:30 PM \u2013 2:30 PM\n
Dinner: 5:30 PM \u2013 7:00 PM" + } + }, + { + "service_id": "1a2a9dc0-6404-4b54-9a13-22bb642d62eb", + "location_id": "bb12417a-aae4-4c33-a25d-83f4dc2f4007", + "payload": { + "description": "grades K-6" + } + }, + { + "service_id": "1a5ef558-9736-4b0a-b11c-6f2c8ff52d20", + "location_id": "5f79e8eb-d243-45c8-8bdb-bbcff8b0b18c", + "payload": { + "description": "Business attire, casual clothing, and accessories. If you need to know ahead of your visit of their availability, please call (718) 410-3900" + } + }, + { + "service_id": "1a84a4cf-42c3-42cb-8d79-50135691c6f0", + "location_id": "e3d3e9a9-cd4c-4656-b21a-d204d68bbc31", + "payload": { + "description": "Services include:\n\u2022 Dental\n\u2022 Health Education\n\u2022 Internal Medicine\n\u2022 Mental Health\n\u2022 OB/GYN\n\u2022 Pediatrics\n\u2022 Social Work" + } + }, + { + "service_id": "1afa5a23-0688-479e-8f4e-797594a547d4", + "location_id": "312adc61-30ef-4216-8b60-91a9835cf977", + "payload": { + "description": "\u2022 Clothing available each week.\n\u2022
\n\u2022
\n\u2022 Services are only available for current employees of the Backstretch village in the New York thoroughbred horse racing industry." + } + }, + { + "service_id": "1b171dfe-fa2c-4eb8-aaa2-276d1fad54c0", + "location_id": "ce70795b-9bdd-4f8f-b95c-976c1919d672", + "payload": { + "description": "Services include:\n\u2022 Primary Care" + } + }, + { + "service_id": "1b1a7e16-ac76-4f46-b96c-989ae22b89a7", + "location_id": "8f435ede-77c7-4a5a-86d9-f2adeb80159e", + "payload": { + "description": "Services include:\n\u2022 Community Habilitation\n\u2022 Day Habilitation\n\u2022 Employment Services\n\u2022 Music Studio\n\u2022 Preschool Introduction\n\u2022 Residential Services\n\u2022 Recreation and Respite\n\u2022 Serenity Garden" + } + }, + { + "service_id": "1b91e2a5-9e76-424f-8483-44b1532872b5", + "location_id": "58c44e54-3a78-4f10-8c13-9771a313b21a", + "payload": { + "description": "Services include:\n\u2022 Cafe Prep (Culinary)\n\u2022 ESOL\n\u2022 GED" + } + }, + { + "service_id": "1bb08065-e1bc-4555-b81f-586f044a0ed0", + "location_id": "b8844c82-75b1-4d9c-889d-a5c15739cc46", + "payload": { + "description": "Free immigration consultations, SNAP/HRA, eviction prevention/houseless services, housing applications, and employment support." + } + }, + { + "service_id": "1c3d9d2c-939f-4bd6-9066-679dff2c15d7", + "location_id": "617a91d3-d06e-4f1a-99f3-fab19003de36", + "payload": { + "description": "Services include:\n\u2022 Financial and Vocational Counseling\n\u2022 Individual and Group Therapy\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Substance Use Treatment\n\u2022 Social Work" + } + }, + { + "service_id": "1c778119-75a7-4dde-93e0-055f806d7d71", + "location_id": "f50959fb-4143-4e2c-86f0-b75c15f7eedd", + "payload": { + "description": "Services include:\n\u2022 Benefits Support and Advocacy\n\u2022 Educational and Vocational Goals\n\u2022 Mental Health-Related Goals\n\u2022 Support obtaining Housing through the 2010e application\n\u2022 Working towards improving wellness practices", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 A referral form and supportive documents such as a Psychosocial and Psychiatric Evaluation must be completed and submitted.\n\u2022 Only adult New York City residents are accepted\n\u2022 An intake takes 2 hours\n\u2022 Ask your case manager to contact trivera@goodwillny.org or (347) 906-0861 to start" + } + } + }, + { + "service_id": "1ce549fb-8e99-4787-b883-040159ae5258", + "location_id": "7412c9dc-b461-476d-90c3-3141b15b3d59", + "payload": { + "description": "Services include:\n\u2022 Housing Assistance\n\u2022 New York State of Health (NYSoH) Insurance Services\n\u2022 SNAP Assistance\n\u2022 Translation Services\n\u2022 Voter Registration" + } + }, + { + "service_id": "1d149a56-45a2-4271-ac16-686b3c145b83", + "location_id": "a7f62f69-0b8e-4d7b-b624-808f35226cfc", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Care Coordination\n\u2022 Dental Care\n\u2022 Gender-Affirming Care\n\u2022 HIV/AIDS Services\n\u2022 Insurance Enrollment\n\u2022 GYN\n\u2022 Pediatrics\n\u2022 Primary Care" + } + }, + { + "service_id": "1d18f1ef-1b1b-4dbe-a8e9-112e26af2ea8", + "location_id": "c2f6b62f-3588-4c90-997a-bfa4f917f6ba", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You can walk in or call to enroll\n\u2022 If you need specialty services, you will be referred to El Nuevo San Juan/Simpson Pavilion" + } + } + }, + { + "service_id": "1d3384c5-740a-4045-84a6-0d4e210b192e", + "location_id": "d2598e8c-fadc-4d37-9592-5c0f16719344", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 3 pre-screening interviews are conducted before you are admitted to the program; you can expect a callback in about a month after the initial contact. The clinic is located in Flushing headquarters. Do not walk in without an appointment; the directions can be found here. To enroll, call the main number or email kcsmhc@kcsny.org.\n\u2022 Medicaid with or without Medicare, straight Medicare, and Cigna are not accepted, and MetroCards are not offered. A fee scale is available if you are not covered. See more details at kcsny.org/mental-health." + } + } + }, + { + "service_id": "1d384a74-d1af-4d07-a8c5-2658fc3cd0c3", + "location_id": "f530aa8e-3c8c-4954-bc63-c009d38deedf", + "payload": { + "description": "Services include:\n\u2022 Admissions Screening and Assessment\n\u2022 Ambulatory Withdrawal Services\n\u2022 Family Counseling\n\u2022 Health Workshops\n\u2022 Individual and Group Counseling (daily one-hour groups around 10:00 AM or 10:30 AM on anger management, relapse prevention, domestic violence, and parenting)\n\u2022 Mental Health Services\n\u2022 MOUD\n\u2022 Recreational and Cultural Alternatives", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk-ins are welcome, but if no one is available to conduct the intake, you will receive an appointment\n\u2022 Most health insurance plans are accepted, and people without insurance can receive a sliding fee scale\n\u2022 If you are a Medicaid or Medicare recipient, see if you qualify for a Round-Trip MetroCard upon your visit." + } + } + }, + { + "service_id": "1d9b036c-0165-4de0-92eb-970e824ab79f", + "location_id": "5d23acdd-3dc1-4fc1-af76-1982eace2933", + "payload": { + "description": "Services include:\n\u2022 Adult and Pediatric Medical and Mental Health Care\n\u2022 Benefits and Housing Assistance\n\u2022 Care Management\n\u2022 Education, Food, and Nutrition Services\n\u2022 Substance Use Treatment Services" + } + }, + { + "service_id": "1db5f484-95fe-43a9-ac71-c3937f767e1b", + "location_id": "8d935351-3a40-461e-bf99-6924e19eaeb5", + "payload": { + "description": "\u2022 Food pantry listings\n\u2022 Rent arrears and housing application referrals" + } + }, + { + "service_id": "1eb17648-c7b3-4e1a-9b7b-6fa61c9a2609", + "location_id": "7f7671f7-0183-43d4-9cf8-18fe018d5162", + "payload": { + "description": "Services include:\n\u2022 Cognitive Behavioral Interventions\n\u2022 Court Advocacy Services\n\u2022 Employment Services\n\u2022 Health Education\n\u2022 HIV and HEP C Testing\n\u2022 Individual and Group counseling, Anger Management\n\u2022 Medication-Assisted Treatment, Methadone Treatment\n\u2022 Mental Health Counseling\n\u2022 Toxicology Testing" + } + }, + { + "service_id": "1eb18df5-3e60-44b8-b1c9-856174c07ed0", + "location_id": "5d23acdd-3dc1-4fc1-af76-1982eace2933", + "payload": { + "description": "Services include:\n\u2022 Assessment and Treatment Planning\n\u2022 Group and Individual Counseling\n\u2022 Health Education, Support, and Aftercare\n\u2022 Life Skills, Educational, and Vocational Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Medication Monitoring\n\u2022 Mental Health Services\n\u2022 Psychiatric Assessment and Treatment" + } + }, + { + "service_id": "1eb50f06-15e0-4ff5-8e0c-5d2c73bb36f6", + "location_id": "3b9a0d70-d047-4b1a-b6cc-c854d0246c04", + "payload": { + "description": "\u2022 Rolling admissions. While enrolled in the program, students are able to take advantage of onsite GED testing, access to their own coach, daily Metrocards, job placement assistance, and more.\n\u2022 Adult Basic Education (ABE): Afternoon classes\n\u2022 High School Equivalency (HSE): Morning classes\n\u2022 Pre-HSE: Morning classes" + } + }, + { + "service_id": "1ec28b59-c4fd-4211-9abd-ba25bb3e1afa", + "location_id": "9dbed080-e2d7-4a87-b23d-86aa5e08da62", + "payload": { + "description": "Free services for low-income NYC residents include:\n\u2022 Tax preparation,\n\u2022 Rent arrears (rent support of up to $2,000, proofs of rent non-payment, and low-income NYC residents)\n\u2022 Financial coaching" + } + }, + { + "service_id": "1ecba3b3-d08f-4d3a-ad59-54a625dc5133", + "location_id": "318ccaf2-b9c4-44b9-bc02-5c3de46631a9", + "payload": { + "description": "Services include:\n\u2022 Individual and Group Therapy\n\u2022 Medical Services\n\u2022 Medication-Assisted Therapy\n\u2022 Recreational Programs\n\u2022 Vocational Support\n\u2022 Health insurance enrollment for people with mental health/substance use issues (call (631) 921-9002 Candace or email her at cciambra@phoenixhouseny.org)" + } + }, + { + "service_id": "1ed088f9-fa54-4fd5-a5ae-bd889290a450", + "location_id": "3513e180-63d6-4c21-a769-5b48d54cba41", + "payload": { + "description": "Services include:\n\u2022 Harm Reduction and Safe Use Kits, Medication-Assisted Treatment, SNAP, and health insurance enrollment for adults\n\u2022 Connections to PEP/PrEP, HIV, and 3-site (urine, oral, rectal) STI Testing\n\u2022 Mental Health Counseling\n\u2022 Overdose Prevention Training, Substance Use Counseling\n\u2022 Domestic Violence services" + } + }, + { + "service_id": "1f2e084f-cc12-48fa-9f17-8fd14a03428c", + "location_id": "78a01f99-b3a9-451a-b34d-0109f07f9376", + "payload": { + "description": "\u2022 The Center has a wide range of support groups dedicated to serving the LGBTQ population.\n\u2022 For more information check The Center's calendar at gaycenter.org/calendar or explore the headers on the main site to find a group for you!\n\u2022 Recurring Narcotics Anonymous (NA) groups:\n
 \u2014 The G.O.D. (Gift of Desperation) Wednesdays 10 AM - 11 AM\n
 \u2014 So Fresh & So Clean Thursdays 8 PM - 9:00 PM" + } + }, + { + "service_id": "1f4c094c-98b1-4e5e-af64-6e941c68f09d", + "location_id": "84f85d45-3d06-437c-8686-0ae29a5d5676", + "payload": { + "description": "Services include:\n\u2022 Representation for employment-based discrimination due to criminal record\n\u2022 Understanding the ongoing criminal proceedings against you\n\u2022 Check for I-card and outstanding arrest warrants against you" + } + }, + { + "service_id": "1f6bbd9e-1c70-4753-bc14-0ab679e9a72d", + "location_id": "aae16050-24f4-448c-b5e2-f3eb8181f9cc", + "payload": { + "description": "Survivors of domestic violence living in NYC between the ages of 16-24 can get the following services:\n\u2022 Legal and immigration services (U, T Visas and VAWA)\n\u2022 Counseling\n\u2022 Case management" + } + }, + { + "service_id": "20800649-7735-4bba-9108-320756142718", + "location_id": "352a2771-67b5-4ecf-8cd1-e4931cbee67b", + "payload": { + "description": "\u2022 1. Early Head Start: This program provides low-income families with comprehensive early childhood education and support services. Infants, toddlers, and pregnant women have access to high-quality education.\n
\n
\n\u2022 2. Head Start: This federal program provides early childhood education and social services to income-eligible children and their families. Children receive educational support and development opportunities to prepare them for kindergarten.\n
\n
\n\u2022 3. Child Care Services: This program helps parents find suitable childcare arrangements. They work closely with community organizations and providers to ensure that parents have access to quality care for their children.\n
\n
\n\u2022 4. Parenting Support: They provide parenting support programs, workshops, and resources to equip parents with the skills and tools they need to support their child's development and overall well-being.\n\u2022 5. Adult Literacy Programs: They provide adult literacy classes to adults who have limited reading or writing skills. Programs are designed to develop foundational literacy skills, enhance communication skills, and improve overall literacy proficiency.\n
\n
\n\u2022 6. Early Childhood Literacy Programs: These programs incorporate literacy activities, storytelling, and book distribution to encourage a love for reading from an early age." + } + }, + { + "service_id": "208e8b29-0834-44ff-b017-8843da9d4c03", + "location_id": "57a86bc0-2201-4953-96d3-408ece2b61dc", + "payload": { + "description": "\u2022 Contact the CRB to receive information and services on legal protections and obligations, pre-complaint interventions, events, workshops, and other programming that empowers citizens to better understand the City Human Rights Law and how to effectively assert their rights. You may also contact them to initiate an educational workshop at your location.\n\u2022 Call (212) 306-7450" + } + }, + { + "service_id": "20defa10-79da-428c-97bf-93c72308bcf3", + "location_id": "4d3a29d8-c439-4f4b-8d35-8b0d24e4d396", + "payload": { + "description": "Services include:\n\u2022 prevention of deportation and other immigration services for non-citizens with criminal involvement\n\u2022 family court cases involving criminal matters\n\u2022 all types of criminal cases\n\u2022 civil cases involving criminal cases\n\u2022 eviction prevention" + } + }, + { + "service_id": "210b5fe1-39ce-4088-a5b5-6fc69f2fc7b8", + "location_id": "a86f9762-67d9-4fdc-8dba-6c2d9a1e76b5", + "payload": { + "description": "Services include:\n\u2022 Gender-Affirming Care\n\u2022 GYN\n\u2022 HIV Testing and Counseling\n\u2022 Primary Care\n\u2022 Specialty Care\n\u2022 Physical Therapy (Gym and injury rehabilitation available for Student Health insurance and UnitedHealthcare holders." + } + }, + { + "service_id": "21303db1-744e-4910-8a61-cf2a004f4ffd", + "location_id": "fb34dcd5-0cae-4482-9d59-5b4e16799ada", + "payload": { + "description": "\u2022 Free clothing for everybody in the community\n\u2022 Gently used business attire, casual clothes, shoes, and accessories for men, women, and children\n\u2022 Contact queenscloset@probation.nyc.gov with any questions" + } + }, + { + "service_id": "217da4d4-fe5c-4005-8068-d91b5f9e411f", + "location_id": "8f71ce13-5374-4fd7-99c3-222a4260bdef", + "payload": { + "description": "Participants can use this space for:\n\u2022 Gatherings (TV room) and Harm-reduction groups\n\u2022 Shower and Laundry\n\u2022 Restroom (safe use allowed)\n\u2022 Drug check-in (Wednesdays before 3 PM)" + } + }, + { + "service_id": "225492d9-aa20-4069-b5e5-75a2d00f0b5a", + "location_id": "4eb7da4e-0fd0-4518-8d85-4dd982dfea11", + "payload": { + "description": "\u2022 Rental Assistance Program Referrals\n\u2022 Supportive Housing Referrals" + } + }, + { + "service_id": "22bf3b00-7ccc-43f4-9827-5babb4cb7c42", + "location_id": "9aaa0a91-1844-4f1c-a7ca-54d56deec641", + "payload": { + "description": "Services include:\n\u2022 Emergency\n\u2022 Endodontics\n\u2022 General Dentistry\n\u2022 Implant Dentistry\n\u2022 Oral and Maxillofacial Surgery\n\u2022 Oral Medicine and Pathology\n\u2022 Orofacial and Head Pain\n\u2022 Orthodontics\n\u2022 Pediatric Dentistry\n\u2022 Periodontics\n\u2022 Prosthodontics\n\u2022 Special Needs" + } + }, + { + "service_id": "22e02712-9534-4d41-828f-c8e06d2b48ac", + "location_id": "639a7b12-c0ac-40b6-973f-5cfeaf15065a", + "payload": { + "description": "Programs include:\n\u2022 Inpatient/Residential Treatment\n\u2022 MAT/Opioid Treatment Program\n\u2022 Outpatient Treatment Program" + } + }, + { + "service_id": "23126130-f8f1-45af-8775-6ff7b9a334ef", + "location_id": "43dc4f2e-cd77-4097-a80a-f40104ab5aca", + "payload": { + "description": "\u2022 The high school offers gardening, healthy eating and cooking classes, PSAL sports, dance and music classes, classes in global political awareness, and a mock trial team.\n\u2022 Through Goddard Riverside's Learning to Work Program partnership with West Side High School, they provide opportunities for students looking for a fresh start in a new learning environment. The program builds a positive and inclusive community by engaging youth in postsecondary planning, social-emotional support, career readiness, and paid internships." + } + }, + { + "service_id": "2321d524-4397-407a-b377-1b1ece0ae18e", + "location_id": "d47d6f20-a6d7-410f-a498-d6e3a600c021", + "payload": { + "description": "Services include:\n\u2022 Harm Reduction and Safe Use Kits, Medication-Assisted Treatment, SNAP, and health insurance enrollment for adults\n\u2022 Connections to PEP/PrEP, HIV, and 3-site (urine, oral, rectal) STI Testing\n\u2022 Mental Health Counseling\n\u2022 Overdose Prevention Training, Substance Use Counseling\n\u2022 Domestic Violence services", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Health insurance is not required. Call to schedule an appointment. Unemployed uninsured adults under 45 may qualify for Comprehensive Family Planning and Reproductive Health Services." + } + } + }, + { + "service_id": "2366f74a-0101-40ce-8628-efb7bfce60ec", + "location_id": "2ba39031-f115-43be-9c9e-1af7731a046f", + "payload": { + "description": "Services include:\n\u2022 Community Casework\n\u2022 Insurance Enrollment\n\u2022 Social Groups\n\u2022 Workforce Development" + } + }, + { + "service_id": "238bd679-f0e3-4179-8c09-c094d4fc4a49", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "description": "The shower is available to all members upon request." + } + }, + { + "service_id": "23962b74-52ec-46c4-a970-cfa4d1636cfa", + "location_id": "8c7fbe8b-a8b5-4258-b55e-6fd889e66f2b", + "payload": { + "description": "\u2022 Primary care\n\u2022 PrEP and PEP\n\u2022 HIV, STI testing, treatment, and prevention\n\u2022 Plan B and birth control\n\u2022 Pregnancy testing and counseling\n\u2022 Mental health care" + } + }, + { + "service_id": "23d4a0b0-1344-45cd-83e8-a08ea68a9e0c", + "location_id": "6229adeb-0857-4617-a72f-3e1656246c47", + "payload": { + "description": "Services include:\n\u2022 Case Management and\n\u2022 Free HIV and Hep-C Testing, STI treatment\n\u2022 Health Education\n\u2022 Medical and Mental Health\n\u2022 Medication-Assisted Treatment\n\u2022 Overdose Prevention\n\u2022 Syringe Exchange (there is an after-hours pop-in substance use program for clients, inquire within)" + } + }, + { + "service_id": "23edd095-be3e-4f86-bae3-4b5f02dc4633", + "location_id": "61160913-9093-4f0e-a92e-04abfdbdf272", + "payload": { + "description": "Services include:\n\u2022 Care Management\n\u2022 Children and Family Treatment and Support Services\n\u2022 Children, Adults, and Senior Services\n\u2022 Home and Community-Based Services\n\u2022 Home Visiting Services\n\u2022 School Programs" + } + }, + { + "service_id": "242b0314-60c5-4d02-b227-53deba5c3ec6", + "location_id": "e3813f9a-6b6b-4080-9281-a75bb4e4f06f", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 GYN\n\u2022 Health Homes\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Veteran Health" + } + }, + { + "service_id": "24c21505-8c2f-4a9a-a849-9794227eb7f8", + "location_id": "85f1f80e-0cc3-418a-8f8b-6d0cbd43d1c8", + "payload": { + "description": "Services that are currently offered includes:\n\u2022 After School Program\n\u2022 Chinese Cultural School\n\u2022 Summer Camp Program\n\u2022 Youth Guidance Service" + } + }, + { + "service_id": "258c186d-d699-4343-a2c9-31a8cd873ace", + "location_id": "f7e434c0-ef6b-425e-9886-317d4f83ae7a", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You should only contact them if you need representation concerning eviction, nonpayment, or holdover. Other matters are not being considered as the Legal Aid Society is over capacity. There is no guarantee they will be able to represent you. When you call the switchboard of the Legal Aid Society, your information will be taken, and you will receive a callback.\n
Alternatively, you may attend your first court/hearing date, either virtually or in person, whichever is indicated, to attempt to get connected with a legal service provider. It is your right to have your case go through the Right to Counsel program to determine if you are eligible for representation or advice." + } + } + }, + { + "service_id": "25c9f846-79d5-44d2-8a40-e6fb6fb558eb", + "location_id": "542d6cdc-7153-4503-afcf-fe817d919c38", + "payload": { + "description": "Services include:\n\u2022 English for Parents\n\u2022 High School Equivalency and Transition to College (For parents aged 16-24 who are students at Bronx Community College)\n\u2022 Reading for Adults\n\u2022 Workshops for Spanish Speaking Adults with Young Children" + } + }, + { + "service_id": "25e67eb5-d09f-4b17-bb9a-ba1e3b87a37b", + "location_id": "f3331e24-d107-4056-b048-a04656444c5e", + "payload": { + "description": "\u2022 Book an in-person STI testing here, you can add the following to your appointment: Health Insurance Enrollment, PEP, PreP, HIV Treatment, Substance Use Treatment, Emotional Support, and/or IDNYC Enrollment\n\u2022 Support group enrollment: Building Your Ideal Self, Welcoming to New York, Affirm, and Poder Latino\n\u2022 Tele Test HIV session: book here, add to your online appointment: PEP, PreP, HIV Treatment, and/or IDNYC Enrollment" + } + }, + { + "service_id": "2617e305-676d-444b-8ce1-c5dce2e04ad9", + "location_id": "6b750362-4337-402c-bb73-7936803e1f0b", + "payload": { + "description": "Free services include:\n\u2022 Dentistry (every 1st and 3rd Tuesday) an appointment is suggested, please call to ensure the scope of the dental work can be covered by this clinic\n\u2022 Occupational therapy (every 2nd and 4th Tuesday) subject to change\n\u2022 Medical and Mental health, Case Management (every Tuesday)" + } + }, + { + "service_id": "2645c18b-516d-40c7-b669-df481028a537", + "location_id": "daa6b745-a071-4ba3-9c87-6b94cf610b8a", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Entitlements Assistance\n\u2022 Mail and Phone Services\n\u2022 Therapeutic Recreational Activities\n\u2022 Referrals" + } + }, + { + "service_id": "26a24094-7896-4b66-a761-6adf560f299a", + "location_id": "67f62bc9-7304-4f2c-b034-5bb161470ccf", + "payload": { + "description": "English language classes" + } + }, + { + "service_id": "2703d2b6-2c8d-4dd8-82a0-34a7cc7b7d9c", + "location_id": "fe8c90f1-1d9c-4f64-9274-b5384b8d27d1", + "payload": { + "description": "Assistance with Health Insurance Enrollment", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Please call (646) 483-4270 Monday through Friday 9:00 AM - 5:00 PM, to determine eligibility for affordable health insurance\n\u2022 You may also be connected with a counselor by visiting nycdohmh.surveymonkey.com/r/7BB62M3" + } + } + }, + { + "service_id": "2711f96b-4ea1-43e3-af2c-bfffe613bb16", + "location_id": "f87b7094-2a23-4634-98f2-cd4a67cd23d8", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You should only contact them if you need representation concerning eviction, nonpayment, or holdover. Other matters are not being considered as the Legal Aid Society is over capacity. There is no guarantee they will be able to represent you. When you call the switchboard of the Legal Aid Society, your information will be taken, and you will receive a callback.\n
Alternatively, you may attend your first court/hearing date, either virtually or in person, whichever is indicated, to attempt to get connected with a legal service provider. It is your right to have your case go through the Right to Counsel program to determine if you are eligible for representation or advice." + } + } + }, + { + "service_id": "27171956-fa4c-4b2b-896f-f77f5914d96b", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "description": "Services include:\n\u2022 Apprenticeship Programs\n\u2022 Tuition Assistance Program", + "eventRelatedInfo": { + "event": "COVID19", + "information": "For more information, call the Bureau of Veterans Education at 1((888) 838-7697." + } + } + }, + { + "service_id": "2730d44b-072b-4f63-9aed-79ac81637d0f", + "location_id": "58ebbb13-092f-4847-8fac-045f9a4045d9", + "payload": { + "description": "Services include:\n\u2022 Buprenorphine/ Suboxone Treatment\n\u2022 Drug Testing\n\u2022 Family, Marriage, or Partner Counseling\n\u2022 Group Counseling\n\u2022 Individual Counseling\n\u2022 Psychiatric Treatment" + } + }, + { + "service_id": "277548bb-f7da-4e46-ba16-51b7e2944b9d", + "location_id": "0d381537-31c4-4165-a5a0-4d7ffc02bace", + "payload": { + "description": "Services include:\n\u2022 Dental\n\u2022 Gender-Affirmative\n\u2022 Mental Health\n\u2022 Primary Care\n\u2022 Reproductive Health Services\n\u2022 Sexual Health Services\n\u2022 Vision" + } + }, + { + "service_id": "27a60828-95e1-41f3-a45b-2ae81b1b03ba", + "location_id": "faf1d85e-56d1-4be9-8423-0f6debd37a55", + "payload": { + "description": "Services include:\n\u2022 Adult Care Coordination\n\u2022 Crisis Intervention\n\u2022 Individual, Family, and Group Counseling\n\u2022 Medication Management\n\u2022 Psychiatry", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Most insurance plans are accepted. If you are a Medicaid recipient, see if you qualify for a Round-Trip MetroCard upon your visit. Medicare is not accepted here." + } + } + }, + { + "service_id": "27cc7388-6923-4f12-b122-5abbeadd748b", + "location_id": "058a39a5-c0d0-4ea0-b331-10b85fefe8d5", + "payload": { + "description": "14-week career course. Participants are paid a stipend of $50 each week. Certifications include:\n\u2022 Asbestos Handler\n\u2022 Construction Site Safety Flag Person\n\u2022 DOB 4hr Supported Scaffold User\n\u2022 2-hr Drug/Alcohol Awareness\n\u2022 8-hr Fall Prevention\n\u2022 OSHA 10,1,6, and 30 General Industry, Confined Space, and Construction\n\u2022 Site Safety Training card, and more." + } + }, + { + "service_id": "28223c3a-128f-4a80-ab39-1d7f66bfa21b", + "location_id": "e37b048e-85b1-4a37-b9d6-5c0fef5d37ad", + "payload": { + "description": "Services include:\n\u2022 Primary Care\n\u2022 Mental Health\n\u2022 Optometry\n\u2022 Podiatry", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 The minimum age for a patient is one month. Underage patients must be escorted by their legal guardians.\n\u2022 Metrocards are offered to anyone who has an appointment regardless of insurance status. Shelter residents from across NYC can call to request transportation to their appointment" + } + } + }, + { + "service_id": "2833426d-aae7-4bbb-b73f-594ecf02ddff", + "location_id": "639a7b12-c0ac-40b6-973f-5cfeaf15065a", + "payload": { + "description": "Services Include:\n\u2022 Crisis Intervention\n\u2022 Group or Family Psychotherapy\n\u2022 Health Monitoring\n\u2022 Individual Therapy\n\u2022 Medication Management\n\u2022 Psychiatric Assessment\n\u2022 Talk Therapy" + } + }, + { + "service_id": "28699e50-918a-4e99-b9b4-090db0c7fc2a", + "location_id": "677ecc28-8773-4b26-bd4b-4b701518d43a", + "payload": { + "description": "\u2022 Please see more resources for parents on the list Child Care Resource and Referral Agencies (CCRRs) at ocfs.ny.gov/programs/childcare/referral-agencies.php.\n\u2022 This service is available to parents of a child 0-3 years old residing in NYC. No income or immigration status requirements apply." + } + }, + { + "service_id": "288deb00-7742-4749-89d8-991d7dc49609", + "location_id": "85be7fb0-e82c-46ff-a4b9-7b87233b864c", + "payload": { + "description": "Services include:\n\u2022 Transportation to the Center ($2 from zip codes 11209 and 11220)\n\u2022 Senior classes\n\u2022 Benefits Assistance\n\u2022 Book borrowing\n\u2022 Case Management\n\u2022 Computer Training\n\u2022 Lunch 12:00 PM \u2014 1:45 PM ($2 suggested donation)\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "28b09674-c736-428b-b93c-4f17afe3a5ed", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "description": "The washing machine and dryer are available to any member at the drop-in." + } + }, + { + "service_id": "28caf77c-de51-41ea-b70f-aa074cd84c1c", + "location_id": "fec41bea-3d5a-4048-aeb2-dea6bb699efe", + "payload": { + "description": "\u2022 In addition to several NYC District Offices, ACCES-VR by NYSED has satellite Offices, Please see more locations on YourPeer Map. Referrals, peer support, and independent living\n\u2022 Reimbursement for career advancement training, reasonable accommodation (contact OHRMRA@NYSED.gov), and transportation (offered based on your income, might require you to have a Social Security Disability Insurance available to certain low-income people with disability that posses an eligible immigration status)\n\u2022 Job development for those whose disability is an impediment to seeking employment (you must be legally allowed to work in the US)\n\u2022 Applications for public benefits (immigration status and income requirements apply)\n\u2022 This office helps vertically or mentally challenged residents of Manhattan and Staten Island specifically. People with a criminal record of sexual violence are not served.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You can call or mail them the application VR-04 in your preferred language. All participants are required to fill out VR-26 - Confidential Health Assessment and VR-21 General Health Impairments to verify your disability and other eligibility criteria.\n\u2022 Interpreter and ASL services are available. Picture ID is required to enter the building, which is ADA-compliant." + } + } + }, + { + "service_id": "28e4ffb9-8b31-493b-b330-586e7f3e24a4", + "location_id": "844c928e-3b3b-4152-ba43-c82e0fabf2dd", + "payload": { + "description": "Most of the services are provided by referral from court or other agencies, except:\n\u2022 YASEEP - Young Adult Supportive Education and Employment Program for 16-21-year-olds in school or in college:\n\u2022 \u2014 6 months to a year-long internship as a youth advocate and job placement\n\u2022 \u2014 must have a mental health diagnosis and be able to work in the US legally\n\u2022 Free Zoom Trainings, call Simone at (347) 695-7868 or email institute@fotmnyc.org:\n\u2022 \u2014 Circle of Security (COS) bonding parenting classes - 8 weeks\n\u2022 \u2014 Parenting Journey, exploring childhood traumas affecting your parenting style - 12 weeks\n\u2022 \u2014 Emotional Fitness - for parents with mentally challenged children - 12 weeks\n\u2022 \u2014 Intercultural classes\n\u2022 \u2014 DV, anger management classes\n\u2022 * people with different accessibility needs can get 1:1 services. Males who are batterers can get discounted referrals to United Activities Unlimited (UAU)" + } + }, + { + "service_id": "290eb2a8-91dc-4337-9ef5-16dbf6f43c60", + "location_id": "f06e329b-3034-461e-ab02-71f2d05271e4", + "payload": { + "description": "Affordable or free services include:\n\u2022 Immigration applications\n\u2022 Fingerprinting and Photography for documents\n\u2022 Notary Public" + } + }, + { + "service_id": "298e3742-a1df-42c3-8bba-46c3af7739af", + "location_id": "997e831e-cc84-48c1-a00e-5b82981a7574", + "payload": { + "description": "\u2022 Youth Peer Advocates, Licensed Clinicians, and Case Workers are available to help youth find and secure services that meet their needs.\n\u2022 Services include:\n\u2022 ID documents\n\u2022 Immediate needs support (food/clothing)\n\u2022 Linkage to medication-assisted treatment for substance use\n\u2022 Entitlement support\n\u2022 Behavioral health care\n\u2022 Ongoing supportive care and skills-building\n\u2022 Peer mentoring" + } + }, + { + "service_id": "2a12ebc6-a388-43c0-962a-85463dd469bb", + "location_id": "724eac26-16cb-4c7a-8f04-dea0e58584d9", + "payload": { + "description": "Services include:\n\u2022 Individual and Group Counseling\n\u2022 Mental Health\n\u2022 Methadone Treatment\n\u2022 Nutrition\n\u2022 Primary Care\n\u2022 Vocational and Educational Services" + } + }, + { + "service_id": "2acb87c9-0e3b-42e1-a8fb-f389882eb1a7", + "location_id": "d24b520d-499b-4bbd-a88a-7689fd5a1ee2", + "payload": { + "description": "Services include:\n\u2022 Methadone treatment\n\u2022 Buprenorphine treatment\n\u2022 Counseling\n\u2022 Case management\n\u2022 Annual physicals\n\u2022 General medical care\n\u2022 Psychiatric evaluation\n\u2022 Medication management\n\u2022 HIV counseling and testing\n\u2022 Hepatitis C testing\n\u2022 Women\u2019s-only clinic" + } + }, + { + "service_id": "2d28f7e5-f092-4822-a7f7-f2543a03a75e", + "location_id": "ce1819e7-2e43-4629-ae60-c16a545d1263", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Access the guides here." + } + } + }, + { + "service_id": "2d655bf4-2c2c-459c-94c6-cfa2950a65f1", + "location_id": "8b1c5992-89da-42a3-b5cc-101d4adfbf6f", + "payload": { + "description": "Services include:\n\u2022 HIV and STI treatment and testing. Also, open Tuesdays from 5:00 PM to 7:00 PM for asymptomatic testing\n\u2022 Reproductive Health\n\u2022 Vaccinations\n\u2022 Oral PreP appointments, schedule at patienteducationgenius.com/dohmh-phone\n\u2022 Doxy PEP" + } + }, + { + "service_id": "2d9d68ce-7177-4027-adda-e511bc6352c5", + "location_id": "f7d9b28f-14c7-4822-a280-c2ca2b87bc08", + "payload": { + "description": "Psychiatry and therapy", + "eventRelatedInfo": { + "event": "COVID19", + "information": "They are remote on Saturdays. Most types of insurance are accepted. All ages are welcome. Call to make an appointment." + } + } + }, + { + "service_id": "2eff0bcc-117b-423d-a831-0a9aace27ab7", + "location_id": "19ebfc7a-63e7-43e9-aecf-0da12a7070f7", + "payload": { + "description": "\u2022 Affordable housing and HRA public benefits\n\u2022 Domestic violence resources\n\u2022 Case management\n\u2022 Therapeutic counseling\n\u2022 Financial literacy\n\u2022 Criminal Record Repair Counseling and legal referrals" + } + }, + { + "service_id": "2f5afca0-4efa-4dcd-8dc6-7f847f2edf1b", + "location_id": "d136ffc7-1d56-4e95-bc3e-65c66f5dcec3", + "payload": { + "description": "\u2022 Safe Harbor Outreach for victims of human trafficking, rape, and sexual assault: (212) 227-3000\n\u2022 Crime victims: (866) 689-HELP\n\u2022 Domestic Violence: (800) 621-HOPE\n\u2022 Uptown Street Outreach 6 PM - 2 AM Monday, Tuesday, Thursday, and Friday call (the Bronx, Manhattan above 59th St., and Queens) at (917) 804-9758, Downtown Street Outreach (Brooklyn, Manhattan below 59th St., and Staten Island) at (646) 342-9861.\n\u2022 General Streetwork Hotline can be reached at (800) 708-6600" + } + }, + { + "service_id": "2f725e95-6e21-4193-bd8a-9eb4d00a28f8", + "location_id": "bb121992-2245-4ccb-a9cb-480634882815", + "payload": { + "description": "Applicants can call the Central Intake line at (800) 324-7055 and leave a message with their name, current mailing address, and which buildings they would like to receive applications for." + } + }, + { + "service_id": "2fd2bcec-4b6e-4220-a408-d011e0d9d2f4", + "location_id": "9f3bb245-24ee-4d69-96c9-c17c15bafe05", + "payload": { + "description": "The Child Advocacy Center Team consists of:\n\u2022 Child Protective Specialists from the Administration for Children\u2019s Services\n\u2022 Detectives from the New York City Police Department\n\u2022 Assistant District Attorneys from the borough District Attorneys\u2019 offices\n\u2022 Corporation Counsel from the NYC Law Department\n\u2022 Pediatricians from premier local hospitals\n\u2022 Clinical Forensic Specialists from Safe Horizon" + } + }, + { + "service_id": "2fda1a03-e21f-4078-ad4b-f9330a4b3742", + "location_id": "87cf2f91-0a9e-4b8d-9812-c574761a97f9", + "payload": { + "description": "Services include:\n\u2022 Comprehensive Medical Care\n\u2022 Computer Lab\n\u2022 Creative Arts Workshops\n\u2022 Family Services\n\u2022 Game Room\n\u2022 Individual and Group Counseling\n\u2022 Interactive Activities\n\u2022 Medication-Assisted Treatment\n\u2022 Psychiatric Assessments\n\u2022 Vocational and Educational Training" + } + }, + { + "service_id": "304aa189-0a33-4f64-84f5-4f5444988432", + "location_id": "bdd2da43-b2fd-47fd-bc79-802298afa6f1", + "payload": { + "description": "Supplemental nutrition program. Families who qualify can receive:\n\u2022 Free food assistance and baby formula\n\u2022 Nutrition education\n\u2022 Breastfeeding/Chestfeeding support\n\u2022 Referrals to support services\n\u2022 Breast pumps" + } + }, + { + "service_id": "3084af61-5e16-4655-831b-b4f552c4f3e2", + "location_id": "7c28c882-1126-422e-8c04-4ff15d6ae724", + "payload": { + "description": "Eviction Prevention for eligible low-income individuals." + } + }, + { + "service_id": "308786a2-bac6-45f7-b86b-7c34a951825e", + "location_id": "87cf2f91-0a9e-4b8d-9812-c574761a97f9", + "payload": { + "description": "Services include:\n\u2022 Individual and Group Counseling\n\u2022 Mental Health Services\n\u2022 Methadone Treatment\n\u2022 Nutritional Services\n\u2022 Primary Care\n\u2022 Vocational and Educational services" + } + }, + { + "service_id": "30a0d44d-1b60-4136-aa18-417214e6570e", + "location_id": "448f5a2a-81df-473e-8727-d8d6da0bbbbd", + "payload": { + "description": "You may stay for 2-3 years until you turn 21 in the following shelters with various supportive services for runaway individuals:\n\u2022 Mother's Gaining Hope - for pregnant and parenting females assigned at birth\n\u2022 The Connect House - for LGBTQIA2S+ males assigned at birth" + } + }, + { + "service_id": "30bfd1b6-4afd-416b-ae05-b0ed9768040e", + "location_id": "a6a042e1-4954-455f-9576-b8b344034bf4", + "payload": { + "description": "Overdose prevention and safe use kits." + } + }, + { + "service_id": "314e42e9-2f3f-4953-816b-a6085039b9ea", + "location_id": "63d30cae-f899-45f9-9c5a-9ecf4aaa3bd8", + "payload": { + "description": "Services include:\n\u2022 Bronx In-Home Behavior Management Team\n\u2022 Family Reimbursement\n\u2022 Habilitative Services\n\u2022 Individual, Group, and Family Counseling\n\u2022 Intensive Behavioral Services\n\u2022 Psychological Testing\n\u2022 Psychosocial Evaluation" + } + }, + { + "service_id": "32321fd3-17b6-4e8c-94d6-12e3964a0e94", + "location_id": "99ff93df-a1c4-40bf-ac9c-1fc399009bba", + "payload": { + "description": "Services include:\n\u2022 Primary care (physicals, vaccinations, etc)\n\u2022 Pediatrics\n\u2022 HIV/AIDS prevention and care\n\u2022 Women's health/gynecology\n\u2022 Dental care\n\u2022 Eye care\n\u2022 Gender-affirming care (hormone replacement therapy, legal documentation assistance, etc)\n\u2022 Emotional wellness (therapy, psychiatric evaluation, medication management, etc)\n\u2022 Sexual and reproductive care (STI testing, family planning, contraception, prenatal care, etc)" + } + }, + { + "service_id": "333fda31-6800-4a36-8309-2ca419761a2a", + "location_id": "74151e6b-630c-4214-9bbf-1f24671eeda7", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Behavioral Therapy\n\u2022 Community Services\n\u2022 Domestic Violence Counseling\n\u2022 Family Counseling\n\u2022 Group Therapy\n\u2022 Individual Counseling\n\u2022 Intensive and Non-Intensive Outpatient Substance Use Treatment\n\u2022 Medication-Assisted Treatment\n\u2022 Parenting Skills\n\u2022 Psychiatry\n\u2022 Referrals to Job Training" + } + }, + { + "service_id": "335b8042-924d-42ac-9d06-c275e0946360", + "location_id": "9ae0b313-4865-404d-8a46-ccace9a7f0eb", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Counseling" + } + }, + { + "service_id": "335e618d-9e21-4aa9-b487-9c3c0066508e", + "location_id": "d953b644-53a6-46d3-b7fb-ff41632c3291", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Care Management\n\u2022 Hep C and HIV Testing\n\u2022 Mental Health\n\u2022 Substance Use Treatment" + } + }, + { + "service_id": "33c759d0-ce83-4150-a921-ea0d82b09d6c", + "location_id": "2b5c05ee-70f2-43f8-ad50-3d12f1b1c70c", + "payload": { + "description": "Free pre-packed bags of groceries, including:\n\u2022 2 lbs of white rice\n\u2022 Vegetables, usually potatoes, onions, carrots\n\u2022 Fruit, usually bananas & apples\n\u2022 Bread (bagels, rolls, or baguettes)" + } + }, + { + "service_id": "34256a44-b83f-441e-8205-f2675a20347f", + "location_id": "72e2fe2a-e1df-49bc-9ce6-063942fceb8a", + "payload": { + "description": "Services include:\n\u2022 Job development and independent living services are offered by primary providers VISIONS, Helen Keller, and Lighthouse Guild" + } + }, + { + "service_id": "3466b72a-8530-456b-a9fb-733266751a7b", + "location_id": "0714d03f-98cb-400d-ab3c-5d54c6c01a40", + "payload": { + "description": "Women's health and leadership training cohort for youth and adults. To enroll, contact the coordinator via the contact form or at info@mcnny.org." + } + }, + { + "service_id": "3502ab32-32e6-4e75-9bb6-e54970b3e2ab", + "location_id": "d000ac49-5d40-43eb-94df-3e6b87713fbb", + "payload": { + "description": "Services include:\n\u2022 Anger Management, Domestic Violence, and Parenting Skills Groups\n\u2022 Assistance with NYC Courts, TASC, Probation/Parole, and ACS\n\u2022 Court-ordered DWI/DUI Assessments and Treatment Services\n\u2022 Dual Diagnosis Services\n\u2022 General Physical Exams and TB Testing Available\n\u2022 Group, Family, and Individual Counseling\n\u2022 Psycho-education, Recovery Skills Groups, and Relapse Prevention Groups\n\u2022 Toxicology Monitoring and more", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Age 17+\n\u2022 Please walk in during the hours above or call Mon-Fri 6 AM-6 PM\n\u2022 Medicaid recipients can receive MetroCards upon their visit" + } + } + }, + { + "service_id": "3524fa13-985a-46c3-bdf7-1b30311ee4e0", + "location_id": "3b9a0d70-d047-4b1a-b6cc-c854d0246c04", + "payload": { + "description": "\u2022 English language classes for those age 18-24\n\u2022 Offers MetroCards, free breakfast and lunch, and a path towards GED preparation" + } + }, + { + "service_id": "35c9fa1e-8333-4023-936c-af71ab279907", + "location_id": "7e31fccb-8435-44e5-b391-e480fc26cf0c", + "payload": { + "description": "Workshops are offered in:\n\u2022 Employment\n\u2022 Doodling and Sketching\n\u2022 Music\n\u2022 Creative Writing\n\u2022 Meditation and Relaxation\n\u2022 Anti-loneliness\n\u2022 Gratitude Journaling\n\u2022 Crocheting\n\u2022 Photography\n\u2022 Poetry\n\u2022 Anthropology\n\u2022 Support groups embracing appreciation and sobriety are also offered" + } + }, + { + "service_id": "35cb0cea-cbe9-4a9a-917b-811a061ff380", + "location_id": "0e945118-7533-4fa9-b5a5-b6e8739de3f1", + "payload": { + "description": "Services include:\n\u2022 Individual training grant covering licensing for CNA, CMA (12 months of related work experience required), and CASAC (all require GED and unemployment or income below $91K a year). An in-person application is required.\n\u2022 Job placement for LPN and RN, resume prep workshops, and job placement for healthcare workers" + } + }, + { + "service_id": "35fd2d57-62e4-4906-8499-dc16ba840f80", + "location_id": "0a215160-a8b4-4e61-968c-c9b492539b79", + "payload": { + "description": "Advocacy, integration, and referrals" + } + }, + { + "service_id": "363eaffb-db16-4ec7-91df-49a60548b4a4", + "location_id": "2e302015-6909-40de-85d4-9a84dc105d8c", + "payload": { + "description": "Services include:\n\u2022 Assistance with Public Assistance\n\u2022 Job-Seeking Assistance\n\u2022 Linkage to Substance Use Treatment Programs\n\u2022 Outreach\n\u2022 Referrals to Employment Services\n\u2022 Referrals to Healthcare Services" + } + }, + { + "service_id": "371f81f4-3471-4742-a6e2-8c7121815d87", + "location_id": "c8aefa4c-c511-4b4a-b6c2-2995757882f0", + "payload": { + "description": "Services included:\n\u2022 Community Aid and Outreach\n\u2022 Housing Counseling and Organizing\n\u2022 Health and Social Services\n\u2022 Immigration Services\n\u2022 Older Adult Center\n\u2022 Youth and Family Development" + } + }, + { + "service_id": "375ade06-e619-442c-b15f-86df9c45e7eb", + "location_id": "41549e32-22b1-46a5-8bcd-a9eda0a3cfe3", + "payload": { + "description": "It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "375d1ee7-c981-4ff6-ad79-b29af741a675", + "location_id": "08382ce5-06de-4c29-a337-1ff44cd3a132", + "payload": { + "description": "Community Help Center (CHC) on Fridays and Saturdays, 3:00 PM - 6:00 PM:\n
\u2014 Immigration\n
\u2014 Housing and Medicare\n
\u2014 SNAP\n
\u2014 Unemployment\n
*Contact (347) 207-7618, the main number, or mrahman@munassinc.org, info@munassinc.org for more information\n\u2022 Adult social club on Saturdays, 5:00 PM - 8:00 PM Age requirement: 50+. Snacks, lunch, and dinner are provided\n\u2022 Lifelong Learning Institute (LLI): Digital literacy for seniors, ESL, and spoken English classes for adults. Walk in on Tuesdays and Thursdays, 4:30 PM - 6:00 PM, and Saturdays and Sundays, 3:00 PM - 6:00 PM to enroll\n\u2022 Aim High Academy, walk in to enroll:\n
\u2014 After-school for grades 3-10, Tuesdays and Thursdays 4:30 PM - 6:30 PM\n
\u2014 Specialized High School Admissions Test (SHSAT) Program, Saturdays and Sundays 4:30 PM - 6:30 PM\n
*Contact (929) 591-9259 or tabrar@munassinc.org, info@munassinc.org for more information" + } + }, + { + "service_id": "37d06b94-62a7-4f11-811a-c0f932af8960", + "location_id": "f6f5e757-5ae8-4d44-bdae-0e485cef8f42", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 ID and proof of address required\n
 \u2014 Serving from 23rd Street to Lower Manhattan\n
 \u2014 Call (212) 337-7469 to make an appointment" + } + } + }, + { + "service_id": "382a81ef-441d-4be0-b1f8-b8698fc40ed0", + "location_id": "515a3940-3732-43e1-a939-fd5d859173e3", + "payload": { + "description": "\u2022 GED classes, fill out the form at forms.office.com/r/vPds7Hw7x4\n\u2022 Drop-in English classes are held on Tuesdays from 10 AM to 12 PM and Thursdays from 5:30 PM to 7:30 PM\n\u2022 ESOL classes, fill out the form at forms.office.com/r/K509ifNiLx\n\u2022 Citizenship Classes, call (212) 822-8314 or email veneciacamacho@nmic.org\n\u2022 Promise NYC \u2014 vouchers for childcare for 0-13-year-olds who are undocumented and live in NYC" + } + }, + { + "service_id": "385835c3-b324-4dd2-89ec-754dab8e81b7", + "location_id": "7f7671f7-0183-43d4-9cf8-18fe018d5162", + "payload": { + "description": "This Alternative to Incarceration (ATI) Program includes:\n\u2022 Anger Management\n\u2022 Curfew Monitoring\n\u2022 Domestic Violence\n\u2022 Employment and Vocational Services\n\u2022 Evidence-Based Groups\n\u2022 Individualized Housing Support\n\u2022 Mental Health Counseling\n\u2022 Mentoring Services\n\u2022 On-Site HIV Testing\n\u2022 Toxicology Screenings" + } + }, + { + "service_id": "385aae9b-3a87-4f8e-a9de-f9441c6c81c7", + "location_id": "26062d99-3ae2-4ea8-a941-638bc3fbf659", + "payload": { + "description": "Mental health is offered only to clients in the Program. If you are already a patient, make an appointment through MyChart if you have already registered for it at the Hospital. mychart.nychealthandhospitals.org." + } + }, + { + "service_id": "3865130d-4963-4000-8081-ee8450033554", + "location_id": "d136ffc7-1d56-4e95-bc3e-65c66f5dcec3", + "payload": { + "description": "You may use any name, please memorize it in order to obtain your mail/packages. If you do not pick up your mail within 30 days, it will be returned to sender. If you reside in a shelter, specifically associated with Safe Horizon, you may obtain a letter stating your income and services you receive here to prove your situation when applying for SNAP and other benefits." + } + }, + { + "service_id": "38758ad7-4ec4-47f9-beca-0d3e02a8abd6", + "location_id": "8a1e80f4-864d-4b83-9d5f-6cf59a9cc212", + "payload": { + "description": "Services include:\n\u2022 Hep C/HIV Testing\n\u2022 Individual/Group Therapy\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health\n\u2022 PrEP/PEP\n\u2022 STI Testing\n\u2022 Syringe Exchange Program" + } + }, + { + "service_id": "38e364ad-0284-478d-a829-5bf9753975c9", + "location_id": "bc233448-1227-40e4-b8b4-f6cf4c4673fa", + "payload": { + "description": "Once you enroll and receive help in Pro Se (DIY) application or legal representation in asylum, you can get support in:\n\u2022 Work Permit applications (renewed every 5 years now) and Advance Parole Applications (uscis.gov/i-131)\n\u2022 Citizenship and Green Card Paperwork\n
 \u2014 USCIS fees have increased and can be waived if you prove you are low-income" + } + }, + { + "service_id": "38faa3e5-d306-4794-b016-66caec6b9873", + "location_id": "9ae0b313-4865-404d-8a46-ccace9a7f0eb", + "payload": { + "description": "Services include:\n\u2022 Contraceptives\n\u2022 STI Testing and Treatment" + } + }, + { + "service_id": "39cbb9db-7bc8-45c0-80f6-e5beccb2c0d4", + "location_id": "d136ffc7-1d56-4e95-bc3e-65c66f5dcec3", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "The individual or family will sit with a caseworker for housing or shelter placement to assess the available options. Referrals are always the client's decision. Call the Harlem Streetwork Central Hotline at (800) 621-4673. Call the national hotline at (800) 799-7233 if you are outside New York City." + } + } + }, + { + "service_id": "3a8f433a-c9aa-4763-b58e-f25603d4960f", + "location_id": "ebc1954b-67ba-423d-bd0d-a679f7c9bc81", + "payload": { + "description": "If you lost a home due to a natural disaster or fire, please obtain an ID or other proof of your address (the hotline offers assistance to NYS and Greenwich CT), for NYC only feel free to call or walk in anytime to get a referral for temporary shelter and other supports" + } + }, + { + "service_id": "3a9822ad-a83b-4e77-8739-7c2b72ac0150", + "location_id": "8a1e80f4-864d-4b83-9d5f-6cf59a9cc212", + "payload": { + "description": "Pre-packed grocery bags are available on a first-come, first-served basis." + } + }, + { + "service_id": "3a988cd0-5c2d-40b9-afc2-e2c0457b7744", + "location_id": "5d685ae3-d368-4a05-9e42-71ef8e210b10", + "payload": { + "description": "\u2022 A five-day job readiness training, with case management to assess your readiness for the workforce and job referrals.\n\u2022 The Walking through the Wilderness Workshop provides job seekers with the skills needed to obtain employment and training through various partners, including OSHA 30 and Site Safety Training certification." + } + }, + { + "service_id": "3ac3e688-f033-40e3-bda3-d12e92fcba70", + "location_id": "b689a44f-0f1d-4cb5-9e5e-c02a2627db4f", + "payload": { + "description": "\u2022 Housing Connect (affordable rent and ownership lottery with priorities given to vulnerable populations and NYC residents with certain levels of income), SCRIE, Vouchers for eligible New Yorkers (low income, often citizenship/green card is a requirement), and veterans housing\n\u2022 Workshops for LGBTQIA2S+ individuals, visit stonewallvillagenyc.org for calendar" + } + }, + { + "service_id": "3b39f1ec-0904-4acb-b6b6-1a5a05a408e7", + "location_id": "a75bd017-3765-4298-9e32-1957b46c623b", + "payload": { + "description": "\u2022 Intake Center for Adult Families \u2013 for any family without children under 21, including\n\u2022 Legally married couples with a valid original marriage certificate\n\u2022 Domestic partners with an original domestic partnership certificate\n\u2022 Adults with proof of a medical dependence of one applicant upon another\n\u2022 Two or more adults with a parent and child or sibling family relationship, or a \"caretaking\" (emotionally or physically supportive) relationship.\n
\n\u2022 All applicants must be present during the intake.\n
\n
\n\u2022 If you have been processed as a \"new arrival\" at The Roosevelt Hotel and have a G-number, you are ineligible to come here; please go to Roosevelt Hotel for your shelter extension. New arrivals are non-US citizens who entered the country through the US-Mexico border after March 2022 and cannot return due to persecution. You are not obliged to disclose you immigration status. DHS respects the right to shelter for all applicants." + } + }, + { + "service_id": "3b9720e9-b242-4bf5-8790-10a1ea382f30", + "location_id": "e09fd1e4-93c1-4160-98a1-8aefef32b5b6", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk-ins are accepted, but the main number isn't available outside office hours\n\u2022 Call the Director of Programing at (646) 217-1858 or email Weston at wmuench@avenuesforjustice.org\n\u2022 Referrals for service enrollment can be submitted at avenuesforjustice.org/contact\n\u2022 Feel free to ask for a Round-Trip MetroCard upon your visit" + } + } + }, + { + "service_id": "3ccab7b9-57a5-42ca-a2d5-914c60f32ae2", + "location_id": "2b031044-63cf-4bdd-8bc7-015b035e3e79", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Family Counseling\n\u2022 Individual Therapy\n\u2022 Medication Management" + } + }, + { + "service_id": "3ce74f4b-3859-40fa-b4cb-3809c043481f", + "location_id": "c2d48e67-4673-4750-993c-2d2575b603da", + "payload": { + "description": "Website lists extensive information and guides on:\n\u2022 Bullying and internet safety\n\u2022 Community referrals\n\u2022 Stress management and social/emotional wellness\n\u2022 Substance use (prevention, drug information, harm reduction, treatment, recovery\n\u2022 Trauma, suicide, and mental health crises\n\u2022 Violence prevention" + } + }, + { + "service_id": "3d367ec0-f910-4009-8083-c522aac884c4", + "location_id": "f16deaaf-d664-4b35-9057-8fae8c04837f", + "payload": { + "description": "\u2022 Culinary Arts Training Program (CATP), visit projectrenewal.org/our_work/catp\n\u2022 Next Step Internship Program", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Culinary Arts: Please get in touch with Cylvenia Cherry at (212) 913-9993 x223\n\u2022 Next Step: Contact Andrea Moreno at (212) 620-0340 x349 or nextstep@projectrenewal.org" + } + } + }, + { + "service_id": "3e2482b8-74a9-4bc2-8f3b-c74748c5e7ac", + "location_id": "3ad2f80e-53b1-4da7-b862-60507ad3d2cd", + "payload": { + "description": "Services include:\n\u2022 Primary Care\n\u2022 Therapy for adults" + } + }, + { + "service_id": "3e8e4c4b-7b09-4cda-a8f2-ae148070f2d5", + "location_id": "c29e3cd3-ca53-49aa-bdff-6c3dea0dcb94", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Walk-ins are accepted" + } + } + }, + { + "service_id": "3ec5abb3-34b1-43f0-b27e-234471c2c3a5", + "location_id": "d62ca641-07cf-406e-82f4-b7801d21da8a", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Uninsured people are not billed. For physical health appointments, please call the main number or email AHCappointments@mountsinai.org\n\u2022 For mental health appointments, please call (212) 423-2981 or email Pedro.Gonzalez@mountsinai.org" + } + } + }, + { + "service_id": "3ec873c2-afba-40d4-b02e-cc661ac11563", + "location_id": "7b891073-568f-48af-b6ba-1524d19e70d9", + "payload": { + "description": "Services include:\n\u2022 DUI and DWI Assessment and Treatment\n\u2022 Individual and Group Therapy\n\u2022 Medical and Psychiatric Assessment\n\u2022 Medication-Assisted Treatment for Alcohol Use includes Vivitrol\n\u2022 MOUD for Opiate Use includes Buprenorphine\n\u2022 Psychiatric Evaluation\n\u2022 Referrals" + } + }, + { + "service_id": "3eef247e-1552-486f-a96a-bf0ea6ed348c", + "location_id": "6345f012-7490-42c6-ae51-85cbd44645a3", + "payload": { + "description": "Services include:\n\u2022 Acupuncture\n\u2022 ADD/ADHD Treatment\n\u2022 General Medicine\n\u2022 Gynecology\n\u2022 Health Education\n\u2022 HIV Testing\n\u2022 Laboratory\n\u2022 LGBTQIA+\n\u2022 Massage Therapy\n\u2022 Nutrition Counseling\n\u2022 PrEP and PEP\n\u2022 Project Stay\n\u2022 Sexual Assault and Domestic Violence Support\n\u2022 Smoking and Tobacco Cessation\n\u2022 Vaccinations" + } + }, + { + "service_id": "3f453018-14df-4b8b-aa8c-0e3e3039ab72", + "location_id": "d17409cb-7ca2-4f08-98c9-b43576a594d5", + "payload": { + "description": "Free immigration consultation with a lawyer from NYLAG, free 10-year (without conditions) Green Card renewals, free Naturalization forms N-400 and N-600. USCIS fees might be waived based on your income.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk in (2nd Floor) or call (212) 941-0030 or (212) 431-7800\n\u2022 to enroll. They are closed 12:00 PM \u2014 1:00 PM daily. NYS residents only." + } + } + }, + { + "service_id": "3f9484f5-442d-448e-9f9d-9a2d7fecfe9f", + "location_id": "c52f6199-bad5-4a6e-abf1-62147349ddb4", + "payload": { + "description": "Services include:\n\u2022 Couples and family therapy\n\u2022 Group therapy\n\u2022 Interpersonal therapy\n\u2022 Medication management\n\u2022 Parenting support\n\u2022 Play therapy\n\u2022 Psychoeducation", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Fill out contact form online to book appointment. Clinic responds in 1-2 business days.\n\u2022 Accepts clients from New York State\n\u2022 Sliding scale payment, nobody is denied services due to inability to pay\n\u2022 Translation services available\n\u2022 In-person, telehealth, and phone services" + } + } + }, + { + "service_id": "3fa05751-8560-494f-a03d-6bd97b241eda", + "location_id": "ae81d077-2835-4f4f-ab65-21e9ac212f83", + "payload": { + "description": "Parent Support (call or email parentcenter@henrystreet.org):\n
- 1:1 classes (for parents of any age with a child under 7)\n
- 3 types of group classes (for adult parents with a child under 7)\n
- baby shoes, clothes, and pampers\n
- Early Childhood Community Center (therapy)\n\u2022 Financial counseling\n\u2022 Rent arrears, Housing Applications and referrals for rental assistance programs (proof of low income, rent nonpayment, and, in some cases, immigration status, are required)\n\u2022 Public Benefits and Health Insurance applications (SNAP, Medicaid, and other types of government assistance are available to eligible low-income immigration status holders)\n\u2022 Legal referrals (criminal, civil, family, and immigration law)" + } + }, + { + "service_id": "3fc547d2-0837-4696-a977-9771345e7da3", + "location_id": "7eaf1e97-73c7-40e7-8acc-7735342fb853", + "payload": { + "description": "\u2022 Urgent medical care\n\u2022 HIV/STI screening and treatment\n\u2022 Family planning\n\u2022 PrEP/PEP treatment and counseling\n\u2022 Transgender hormone therapy\n\u2022 Vaccines\n\u2022 Crisis counseling and referrals\n\u2022 Insurance will be billed, and you might be responsible for a co-pay. If uninsured, you will be billed according to your income, and if you have no income, the services might be free." + } + }, + { + "service_id": "3fd436e3-357a-476e-a7d1-5bcefea6eec8", + "location_id": "6ddf2561-8058-4b26-aa5e-13f09909a1b2", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Dental\n\u2022 Hepatology\n\u2022 HIV Primary Care\n\u2022 Mental Health Services\n\u2022 Pediatric Medicine (only certain days, call to find out)\n\u2022 Pharmacy Assistance Program\n\u2022 Podiatry\n\u2022 PEP/PreP" + } + }, + { + "service_id": "3ffc9a08-b9af-49d9-8eef-8a35a18e5411", + "location_id": "28e28c54-1d73-4de0-b330-dbf786ce4164", + "payload": { + "description": "\u2022 Pro-Bono immigration services for some people recently arrived from Ukraine, Afghanistan, Cuba, Venezuela: resettlement in Long Island,\n\u2022 3 months of case management\n\u2022 1-time cash assistance\n\u2022 Low-bono immigration services for everyone else:\n\u2022 $25 consultation\n\u2022 $200 Work Permit (only if you qualify, a government fee applies, income and other exceptions can qualify for waiver)\n\u2022 $300 DACA, only renewals, the government does not accept new cases\n\u2022 $900 Asylum" + } + }, + { + "service_id": "40693dd6-5e5b-4834-abe6-f67bbce0fb69", + "location_id": "8c001f45-47fd-4d3e-964f-fdce8111cd5a", + "payload": { + "description": "\u2022 English classes, for books, in person\n\u2022 Anger management in Spanish, for materials, online\n\u2022 Parenting classes \"Families Forward\" in Spanish and English, $25 for books, in person and online\n\u2022 Stress management classes in Spanish are available several times a year" + } + }, + { + "service_id": "40f7b564-b733-4cb6-8da1-88e443932745", + "location_id": "07b640fd-79be-4541-8b71-3d35cb74a90d", + "payload": { + "description": "Veterinary services for cats and dogs. Services include:\n\u2022 Care for skin, eye and ear infections\n\u2022 Deworming\n\u2022 Humane euthanasia\n\u2022 Microchips\n\u2022 Physical exams\n\u2022 Spay/neuter surgery\n\u2022 Vaccines" + } + }, + { + "service_id": "413fb9d5-ed6c-44bd-837b-83e1db884c23", + "location_id": "5f1b22d2-f754-48d4-b705-a3427a788db5", + "payload": { + "description": "Pieces of training are offered in OSHA and SST. Please enroll at weact-forms.cenergy.io/we-act-application" + } + }, + { + "service_id": "4149fb6c-2b1d-4459-ba5b-1781bf000260", + "location_id": "c83b4470-6192-480b-b027-586402afadc5", + "payload": { + "description": "Distribution of various food items such as canned goods, dried goods, fresh and frozen vegetables, and sometimes frozen meats. Items given are whatever is available.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "It's open to everyone. You can pick up a ticket on Thursday mornings at 9:00 AM; food distribution begins that afternoon at noon." + } + } + }, + { + "service_id": "414db893-1397-40c7-aed8-822262aaa9b7", + "location_id": "5e077646-2307-4375-bc80-a4014cf23349", + "payload": { + "description": "Case management, mental health, and addiction referrals for survivors of sexual abuse and domestic violence." + } + }, + { + "service_id": "41addaca-3021-4aaa-b201-9b6c768ba939", + "location_id": "312adc61-30ef-4216-8b60-91a9835cf977", + "payload": { + "description": "\u2022 Emergency transportation during medical or legal difficulties.\n\u2022
\n\u2022
\n\u2022 Services are only available for current employees of the Backstretch village in the New York thoroughbred horse racing industry." + } + }, + { + "service_id": "41cc4ce3-da02-4b7e-a9f6-4363149dc28e", + "location_id": "3c3404c2-f014-42f1-b83a-b43597157a52", + "payload": { + "description": "Assistance with Immigration Applications" + } + }, + { + "service_id": "41d69ef2-9076-4656-8216-478920ef3c9d", + "location_id": "1b616044-260e-4c5e-9361-462d84123690", + "payload": { + "description": "\u2022 Buprenorphine Treatment\n\u2022 Educational/Vocational Referrals\n\u2022 Individual and Virtual Group Counseling\n\u2022 Integrated Medical, Psychiatric, and Preventative Services\n\u2022 Medication-Assisted Treatment\n\u2022 General medicine\n\u2022 Gynecology" + } + }, + { + "service_id": "422f840f-3469-4f86-8f5c-3a21ee8623f8", + "location_id": "d000ac49-5d40-43eb-94df-3e6b87713fbb", + "payload": { + "description": "Services include:\n\u2022 Methadone\n\u2022 Suboxone\n\u2022 Vivitrol", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Age 17+\n\u2022 Call or walk in to complete an intake" + } + } + }, + { + "service_id": "423c7f40-4501-4153-9f0a-678b44cf9cb1", + "location_id": "5ba38bdf-f38c-4a7e-a358-a0c485f48084", + "payload": { + "description": "Immigration Services:\n
 \u2014 ESL, entitlements, job development, immigration legal consultations and referrals\n\u2022 Afterschool programming" + } + }, + { + "service_id": "4241b1ea-1070-4a2c-b7e2-245b486de9a5", + "location_id": "e8d0e831-9620-4603-915c-2bbccb3c7c94", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Last Wednesday of the month across the street at 2 Allen Street" + } + } + }, + { + "service_id": "42d860b1-84bb-4ac5-8d86-de38d334c605", + "location_id": "b0c92b09-e5dd-40b2-a56c-5f435c75a141", + "payload": { + "description": "Services include:\n\u2022 Rehab referrals\n\u2022 Case management\n\u2022 Care navigation\n\u2022 Support services (groups counseling)" + } + }, + { + "service_id": "42da8ee5-a572-40ca-9990-44ca4377f9d3", + "location_id": "f46f0b75-4beb-47b1-a3b2-dd6fbc86c56b", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please call, text \"HopeLine\" at 972-6879,or walk in to enroll 9:00 AM \u2014 5:00 PM on Mondays, 2:00 PM \u2014 5:00 PM on Tuesdays, and Wednesdays" + } + } + }, + { + "service_id": "42e35d60-be4c-4d8c-ab50-dbda08197258", + "location_id": "99ff93df-a1c4-40bf-ac9c-1fc399009bba", + "payload": { + "description": "Supplemental nutrition program. Families who qualify can receive:\n\u2022 Free food assistance and baby formula\n\u2022 Nutrition education\n\u2022 Breastfeeding/Chestfeeding support\n\u2022 Referrals to support services\n\u2022 Breast pumps" + } + }, + { + "service_id": "43954581-4fee-447b-b18e-f2db29f354c5", + "location_id": "0c2c5490-01eb-49d9-8a06-19d05390e4c7", + "payload": { + "description": "\u2022 Confidential free hotline and an online form for analyzing your budget.\n\u2022 Free credit, budget, and housing counseling\n\u2022 $50 bankruptcy counseling\n\u2022 $165 student loan counseling\n\u2022 $180 reverse mortgage counseling\n\u2022 $149 buying a home certificate webinars" + } + }, + { + "service_id": "43a96da1-5d14-4ef5-8b47-e5ca628f5f7e", + "location_id": "18b6ffab-4f25-4814-ba64-659a25538acf", + "payload": { + "description": "\u2022 To qualify, you have to be proficient in English (speaking, reading, and writing), eligible to work in the US, and live in the NYC Metro\n\u2022 Two schedule options\u2014one for days and one for nights/weekends. You can expect to spend about 40 hours/week in class and 20 hours/week studying outside of class." + } + }, + { + "service_id": "43ad5e24-9518-4a02-aed4-cf6891aeeab8", + "location_id": "eae18ece-7ee1-4f3f-aa43-a8e2fe223500", + "payload": { + "description": "For students at the Grand High School services offered:\n\u2022 SAT and GED preparation (in works)\n\u2022 Homework Help\n\u2022 Career exploration\n\u2022 Community Center\n\u2022 For adults and youth accompanied by adults\n\u2022 Basketball (for groups that sign up in advance on Saturdays, not available yet as of December 2023)\n\u2022 ESL classes\n\u2022 Zumba (in works)" + } + }, + { + "service_id": "43cf55bc-a29e-431a-b61c-ecf29bc785b2", + "location_id": "75a87557-8f47-4fd1-9781-c03b49e948cb", + "payload": { + "description": "Services include:\n\u2022 Housing Assistance\n\u2022 New York State of Health (NYSoH) Insurance Services\n\u2022 SNAP Assistance\n\u2022 Translation Services\n\u2022 Voter Registration" + } + }, + { + "service_id": "447acade-2f88-4808-9ef8-d24cbb0f0839", + "location_id": "400ed3fd-c19a-451b-9dc1-d5fa1a608693", + "payload": { + "description": "Services include:\n\u2022 Counseling\n\u2022 Medical supplies\n\u2022 Benefit referrals" + } + }, + { + "service_id": "44b7abe0-3ca7-469e-9bf0-8d16c5d78e8c", + "location_id": "a41e679f-bec5-4a0c-8bfe-14ef59f44c09", + "payload": { + "description": "\u2022 College Application Support.\n\u2022 Creative Arts and Media Programs\n\u2022 Youth-Focused Political Education" + } + }, + { + "service_id": "44c78f88-9bd5-459f-8521-c278a4f54bf0", + "location_id": "20c951e9-e7fb-47a1-a01c-9c1333e3cab1", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Dental\n\u2022 Hepatology\n\u2022 HIV Care\n\u2022 Mental Health Service\n\u2022 Optometry\n\u2022 Pediatric Medicine\n\u2022 Pharmacy Assistance Program\n\u2022 Podiatry" + } + }, + { + "service_id": "455d41ea-9f67-4619-80f0-bfc4e72164f0", + "location_id": "2b5c05ee-70f2-43f8-ad50-3d12f1b1c70c", + "payload": { + "description": "Free items include:\n\u2022 Clothing\n\u2022 Shoes\n\u2022 Sheets/linens\n\u2022 Accessories" + } + }, + { + "service_id": "45aabe2c-6c06-4301-810d-fb732f2d8c2f", + "location_id": "9556f7ee-8de3-4c00-b951-10195106c6c3", + "payload": { + "description": "\u2022 Advocacy and Legal Representation\n\u2022 Housing Development\n\u2022 Landlord/Tenant Issues and Tenant Organizing\n\u2022 Weatherization" + } + }, + { + "service_id": "45d7a31c-b01d-451b-ab2c-9d8910cf5489", + "location_id": "4dcd483d-eef8-4427-adb4-d6376f2ff1d8", + "payload": { + "description": "Services include:\n\u2022 Gender-Affirming Surgery\n\u2022 HIV/Hep C Testing\n\u2022 PrEP\n\u2022 Primary Care\n\u2022 Syringe Exchange" + } + }, + { + "service_id": "4603079e-55b8-4fb4-95ed-222ea6619970", + "location_id": "f83a8b80-5063-412f-849e-5240ab7c6032", + "payload": { + "description": "\u2022 GED\n\u2022 Computer literacy (Microsoft and QuickBooks certifications and more)\n\u2022 Career exploration and training\n\u2022 Rosetta Stone language courses" + } + }, + { + "service_id": "4691b7e6-3dd5-428a-b81b-80af46f8e9fb", + "location_id": "fd220c74-4899-49f1-96b2-dfe5e0f56715", + "payload": { + "description": "Services are provided by walk-in:\n\u2022 Urgent medical care\n\u2022 HIV/STI screening and treatment\n\u2022 Family planning\n\u2022 PrEP/PEP treatment and counseling\n\u2022 Transgender hormone therapy\n\u2022 Vaccines\n\u2022 Crisis counseling and referrals\n\u2022 Insurance will be billed, and you might be responsible for a co-pay.\n\u2022 If uninsured, you will be billed according to your income, and the services might be free if you have no income.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You do not have to be a Streetwork client to receive medical services. Once you turn 24, they will start transitioning your care to adult providers by referring you to them. HOTT Van will stops here occasionally, try calling Streetwork to find out when they are coming.\n\u2022 Streetwork participants can also be referred to Mount Sinai Adolescent Health Center; an escort is provided if needed (in case they cannot make the times HOTT Van is available)." + } + } + }, + { + "service_id": "46c53ed9-b8b2-41f7-9a00-0ed5f6a31c8e", + "location_id": "cf6f8b7c-55b5-401e-b772-d15d1fbefe31", + "payload": { + "description": "\u2022 Scheduling for TASC exams at CUNY campuses\n\u2022 Family support, parenting workshops, men's groups, and employment assistance\n\u2022 One-on-one coaching and counseling, Access to tech devices, based on need\n\u2022 Stipends up to $1,755 for HSE and $1,215 for CCP participants (based on attendance and participation)\n\u2022 MetroCards, Alumni activities including referrals to occupational skills training (paid for by CFA), enrollment into CUNY (application fees covered), and guided pathway to CUNY ASAP.\n\u2022 Continuing Education and Workforce Development Department (CEWD) see the brochure, register for info session, call (718) 518-6656, and apply (many paid courses are shared, vouchers are accepted)" + } + }, + { + "service_id": "46ff950c-7ba2-4c74-b165-4bdccbcf3170", + "location_id": "67b94f47-36b0-41f5-b56e-221b08f20e19", + "payload": { + "description": "Services include:\n\u2022 Evening Programs\n\u2022 Individual and Group Counseling\n\u2022 Intensive Outpatient\n\u2022 Latino and Bilingual Services\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health Only Program\n\u2022 Psychiatric Evaluations\n\u2022 Specialized Programs\n\u2022 Vocational Training and Support" + } + }, + { + "service_id": "473f1793-d65d-4af5-8e39-6621c4d79341", + "location_id": "6781b53a-3706-4d90-a030-10eb640b66ad", + "payload": { + "description": "\u2022 This program is provided to colleges\n\u2022 Services include:\n\u2022 Advocacy for student survivors navigating Title IX investigations\n\u2022 Bystander intervention training\n\u2022 Sexual violence prevention programming\n\u2022 Support implementing trauma-informed practices in sexual violence response\n\u2022 Trauma-focused counseling and advocacy\n\u2022 Workshops and events that raise awareness about sexual assault, dating violence, and stalking" + } + }, + { + "service_id": "47879963-a3c0-4773-a6f6-8c3c8879e336", + "location_id": "ad067b1f-085a-456d-a9c2-4c442d9a0014", + "payload": { + "description": "Services include:\n\u2022 Benefits and Eligibility Assistance\n\u2022 Case Management\n\u2022 Clinical Social Workers\n\u2022 Referrals to Other Services" + } + }, + { + "service_id": "4789dd89-07f4-4a32-b7cc-b682163f40f0", + "location_id": "d4433462-4015-408f-837e-aa8032426c26", + "payload": { + "description": "Services include:\n\u2022 Augmentative and Alternative\n\u2022 Communication Evaluation and\n\u2022 Treatment\n\u2022 Nutrition\n\u2022 Occupational Therapy\n\u2022 Physical Therapy\n\u2022 Psychological Testing\n\u2022 (Including for OPWDD eligibility,\n\u2022 guardianship evaluation, and autism\n\u2022 assessment)\n\u2022 Psychosocial Evaluation\n\u2022 Psychotherapy\n\u2022 Sexual Consent Determination\n\u2022 Speech Therapy" + } + }, + { + "service_id": "4790bd57-7d23-48f3-99c9-ad4547c7e920", + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "description": "Services include:\n\u2022 Affordable Housing Lottery Preparation\n\u2022 First Time Home Buyers Education Course\n\u2022 Housing Counseling\n\u2022 Housing Search Tools\n\u2022 Housing Workshops\n\u2022 NYC Housing Connect Instructions" + } + }, + { + "service_id": "4830b998-12e2-44b1-bffe-5175391195cc", + "location_id": "ca9798df-f658-4188-aada-751931dafa72", + "payload": { + "description": "Services include:\n\u2022 Day Rehabilitation\n\u2022 Individual and Group Counseling\n\u2022 Intensive Outpatient Treatment\n\u2022 Medications for Opioid Use Disorder (MOUD)\n\u2022 Relapse Prevention" + } + }, + { + "service_id": "4846256d-98a4-488d-bfa6-9ce1e58e5cf0", + "location_id": "c1e3b264-65e6-4382-8316-28d3b64f3d80", + "payload": { + "description": "Services include:\n\u2022 Civil Rights/TGNCIQ Justice\n\u2022 Employment and Workplace Justice\n\u2022 Immigration and Action NYC\n\u2022 Housing Court Assistance" + } + }, + { + "service_id": "485c4a38-3d87-4582-8e40-7f4bb33dbd5a", + "location_id": "fcb5fdd7-f54d-4f79-b815-1d61c2d535f6", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Walk in on Tuesday and Thursday at 9:45 AM to start or register for an online session." + } + } + }, + { + "service_id": "48af3109-27e0-4904-8b24-3882e4ded985", + "location_id": "572aff2c-0105-4216-bbac-3147c4cf3de3", + "payload": { + "description": "The Adult Education Program and Project Comeback assist people who are experiencing homelessness. Services include:\n\u2022 Adult Education\n\u2022 Basic Skills Training\n\u2022 Financial Literacy and Paid Work Experience\n\u2022 Group and Individual counseling\n\u2022 Industry-Specific Certifications\n\u2022 Job Placement Assistance" + } + }, + { + "service_id": "48b2d616-583c-475f-abb2-b9dbc48eb7db", + "location_id": "6d4e679f-c603-4a59-aae5-15d7d064f039", + "payload": { + "description": "\u2022 Eviction Prevention \u2014 Assistance with rent and utility arrears and mediation to prevent eviction\n\u2022 Public Benefits Assistance\n\u2022 Education and Job Placement \u2014 HELP Works\n\u2022 Financial Counseling\n\u2022 Relocation Assistance" + } + }, + { + "service_id": "48caf5c9-0b2b-4121-809d-0257544c2ad2", + "location_id": "b41ce36f-81ca-4710-aec7-da6df8222251", + "payload": { + "description": "\u2022 TCAC is devoted to ensuring that students with disabilities are prepared to attend college, enter the workforce, and live independently.\n\u2022 Contact them at mntcac@schools.nyc.gov or (212) 609-8491" + } + }, + { + "service_id": "48de48ee-5c17-4249-9d25-bb1e368839cb", + "location_id": "0a9d4657-b95a-4f40-8206-00cb216547c1", + "payload": { + "description": "Services include:\n\u2022 Career Assistance\n\u2022 Employment\n\u2022 Vocational" + } + }, + { + "service_id": "49d23b8e-7785-4bc8-aedb-6d8dc6fcc101", + "location_id": "c932ec1b-0095-401a-89bf-e83a448bb534", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 If your child is 2 years old, walk in or call to enroll, preferably from 8:30 AM to 1:00 PM. Proof of income, two types of proof of address, a birth certificate, and immunizations are required.\n\u2022 If you are looking for extended day programming, apply at myschools.nyc. Households around the poverty line are prioritized, but anyone from NYC is welcome to apply." + } + } + }, + { + "service_id": "4a166e2e-33e5-41b8-9425-efa5d93ce4da", + "location_id": "df3f4053-562c-4883-9488-fb7f13f5528f", + "payload": { + "description": "Programs include:\n\u2022 Free short-term counseling\n\u2022 Peer support and referral resources\n\u2022 Connections to affirming providers\n\u2022 Family counseling\n\u2022 Caregiver support\n\u2022 Workshops for family and caregivers\n\u2022 Gender-affirming letters for care\n\u2022 and more\n
\n
\n\u2022 Please note that anyone in crisis will be referred to another provider.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 LGBTQIA2S+ New York State residents qualify for this service\n
\n\u2022 You may refer yourself or someone else who is willing." + } + } + }, + { + "service_id": "4ab6b3cf-87e1-4140-8879-c07df8a0605d", + "location_id": "4a08a3ed-301f-4aa2-87df-b213261cbaef", + "payload": { + "description": "Services include:\n\u2022 Group and Individual Therapy\n\u2022 Initial Intake Assessment\n\u2022 Marriage and Family Counseling\n\u2022 Medication Management\n\u2022 Mental Health Evaluations\n\u2022 Play Therapy" + } + }, + { + "service_id": "4ad50cc0-9e2d-46e9-866d-5a68ea5c597f", + "location_id": "438e5113-796f-4899-835a-767ed5f23368", + "payload": { + "description": "Services include:\n\u2022 Civil Court Project\n\u2022 Legal Referral Service\n\u2022 Moderate Means Program\n\u2022 Monday Night Law" + } + }, + { + "service_id": "4b16520d-d957-4c64-9006-3f849599eb12", + "location_id": "c3203656-9d47-4ab8-b3df-22018f786e1c", + "payload": { + "description": "\u2022 Free, privacy-first personal finance tracking and budgeting platform for individuals seeking financial literacy and spending awareness.\n
Service Features:\n
 \u2014 Real-time expense and income tracking with category-based organization\n
 \u2014 Visual spending analytics and budget monitoring tools\n
 \u2014 Bank account integration via Plaid for automated transactions sync\n
 \u2014 Calendar-based financial timeline with daily balance tracking\n
 \u2014 End-to-end encrypted data storage\u2014only you can access your records\n
 \u2014 Works entirely in your browser with no server-side data storage\n\u2022 ", + "eventRelatedInfo": { + "event": "COVID19", + "information": "
Access Requirements:\n
 \u2014 Must create and securely store a recovery phrase upon registration\n
 \u2014 Recovery phrase is the only way to restore access\u2014cannot be reset or recovered\n
 \u2014 Active email address required for account notifications\n
Eligibility and Usage Guidelines:\n
 \u2014 Free for all individuals seeking personal financial management\n
 \u2014 Only legitimate income and expenses permitted - no illicit financial activity\n
Getting Started:\n
 \u2014 Visit doobneek.org and create an account\n
 \u2014 Securely save your recovery phrase in a safe location\n
 \u2014 Connect bank accounts or manually log transactions\n
 \u2014 Set budget goals and monitor spending patterns, predict your debt and net worth changes, optimize and analyze your budget with AI.\n
Important Notes:\n
 \u2014 Your data never leaves your device unencrypted\n
 \u2014 Service providers cannot view your financial information\n
 \u2014 No recovery available if the recovery phrase is lost\n
 \u2014 For help, try using the AI chat. For issues chat cannot handle, contact doobneek at info@doobneek.org." + } + } + }, + { + "service_id": "4b6d0084-6cc5-4896-86c2-297a1a995e4a", + "location_id": "839f8fbd-74ab-46c9-9c82-02dfbba08e05", + "payload": { + "description": "Services include:\n\u2022 Primary Care. Age requirement: 3+\n\u2022 Nutrition. Age requirement: 1+\n\u2022 Pain Management, Physical Therapy, Infectious Disease, Podiatry, Pain Management, Physical Therapy, Trans Care, and MAT. Age requirement: 18+" + } + }, + { + "service_id": "4b9eb6f5-012e-43e7-ae1c-d6f36941bf91", + "location_id": "69a8ad2f-603f-4b62-aa39-1b324a5fe0ae", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Information and Referrals\n\u2022 Insurance Enrollment\n\u2022 Nutritional Education\n\u2022 On-Site SNAP Applications\n\u2022 Senior Center\n\u2022 Tax Preparation Assistance" + } + }, + { + "service_id": "4db16827-8159-4715-9f1f-e41a10bfee85", + "location_id": "32feb739-6cfb-4200-8dd4-6ef6c8d0fbdc", + "payload": { + "description": "\u2022 SUDZ for School Success: Free laundry program for families with children at Long Island City High School and I.S. 126Q Albert Shanker School Community School\n\u2022 Families have to apply for a card to participate\n\u2022 You may have to make an appointment for your application if the person available is unable to help" + } + }, + { + "service_id": "4dc10678-b59f-4231-b3da-039084f70b4f", + "location_id": "628f6461-5867-497a-b278-6f59f378c5f9", + "payload": { + "description": "Services include:\n\u2022 Children's Mental Health\n\u2022 Family Therapy\n\u2022 Group and Individual Therapy" + } + }, + { + "service_id": "4dfe6214-ad13-4f09-a0b5-368da9e8389e", + "location_id": "ed22bccf-40c1-4864-9045-77de64e0cf5d", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call (917) 902-1708 or email bosibanda2001@yahoo.com for reservations (Fridays and Saturdays midday) or join the line." + } + } + }, + { + "service_id": "4e09051d-c728-4216-837a-ef18cf46636e", + "location_id": "a76755a4-2254-4d4d-bb68-6ffcd8815001", + "payload": { + "description": "\u2022 They operate 7 elementary school programs, 6 middle school programs, beacons for middle- and high-schoolers\n\u2022 To qualify, your dependent should be enrolled in the school the program is located in, visit discoverdycd.dycdconnect.nyc to confirm eligibility and enroll." + } + }, + { + "service_id": "4e2606d0-2bc0-4a47-82ba-d6f841e4e721", + "location_id": "78cf1a4a-c13d-49aa-8cbc-5eadbafd7666", + "payload": { + "description": "\u2022 NY Connects \u2013 social services referrals for all New Yorkers through the Department for the Aging, call (347) 862-5200\n\u2022 Violence Intervention and Prevention (VIP) Elder Justice Program and Caregivers Program \u2013 Advocacy for seniors, call the main number at (718) 542-0006\n\u2022 Community Care Network Program (CCNP) (718) 620-4650\n\u2022 Meals on Wheels for homebound residents of community districts 1-6 over 60\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people over 60 only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "4eef7634-1b1f-4015-9a44-c5676e01b128", + "location_id": "bdb2ff04-2283-4d8b-a24d-2ba5e219488b", + "payload": { + "description": "Services include:\n\u2022 Individual and Group Counseling\n\u2022 Mental Health Services\n\u2022 Methadone Maintenance\n\u2022 Nutrition Services\n\u2022 Primary Care\n\u2022 Psychiatry and Psychotherapy\n\u2022 Vocational and Educational Services" + } + }, + { + "service_id": "4f4d38dc-f4e7-45b3-8f92-962464a88076", + "location_id": "c2128e56-99d0-4c8c-a4b5-1c31d089f5db", + "payload": { + "description": "\u2022 The Bridge Fund: only works by referrals by HCA. To qualify, you must have a low income, be able to pay for rent in the future, be in eviction proceedings, and have a moderate load of unpaid rent (or have approval from HRA to pay the arrears).\n
\u2014 New Yorkers who have been referred can call (646) 742-1465\n
\u2014 Westchester residents may call (914) 949-8146 (no referral needed)\n\u2022 Use the HCA hotline (open 8:30 AM - 5:00 PM Monday through Friday) to find rental assistance you are eligible for and:\n
\u2014 Attend Zoom workshops on tenants' rights, see the website for details\n
\u2014 Receive guidance on suing the landlord, getting clarification on lease terms, getting more time to move or pay rent" + } + }, + { + "service_id": "5053ca3b-50a3-4970-b0fe-1e57ba660f7f", + "location_id": "635d2e2d-1300-4a8e-9606-4143b7d8a066", + "payload": { + "description": "Service includes:\n\u2022 The free distribution of diapers, wipes, and baby food to families in need" + } + }, + { + "service_id": "515f1025-8d78-46f0-a7e4-80fd612dc68d", + "location_id": "e26dbb99-2732-4007-aa10-b9dd57c94876", + "payload": { + "description": "Services include:\n\u2022 Cafeteria with Three Meals Daily\n\u2022 Case Management\n\u2022 Clothing\n\u2022 Computers with free Wi-Fi\n\u2022 Dormitory Style Living\n\u2022 Dove Learning Center\n\u2022 Job-Readiness\n\u2022 Laundry\n\u2022 Mental Health\n\u2022 Showers" + } + }, + { + "service_id": "5175d10f-634f-4763-9662-07c7c2e67fca", + "location_id": "1ebd1a5d-c3a1-404d-aaf2-830552e4deea", + "payload": { + "description": "Help for tenants fighting evictions, obtaining repairs, combating tenant harassment, and succession rights." + } + }, + { + "service_id": "5197208e-4c55-4f93-bdc1-07dc1b247e1a", + "location_id": "ccfa050f-be8a-48c7-a86f-cec37244e2ad", + "payload": { + "description": "Primary Care for all ages", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 For primary care appointments, walk in or call (718) 405-7720\n\u2022 For social services, call (929) 220-8181\n\u2022 For Dentistry, see here\n\u2022 For Ophthalmology, call (718) 920-2020\n\u2022 Most types of insurance are accepted, a sliding fee scale schedule can be found here for people who are not covered" + } + } + }, + { + "service_id": "529a3bfd-6e08-4d25-aca0-a82f6c1776b0", + "location_id": "62789195-29ac-4a5b-9843-907fe7a267c2", + "payload": { + "description": "\u2022 A program for individuals facing charges\n\u2022 related to intimate partner violence." + } + }, + { + "service_id": "52bc3b1b-8bff-4aec-b3a9-3c2536e04289", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "description": "\u2022 Contact the CRB to receive information and services on legal protections and obligations, pre-complaint interventions, events, workshops, and other programming that empowers citizens to better understand the City Human Rights Law and how to effectively assert their rights. You may also contact them to initiate an educational workshop at your location.\n\u2022 Call (212) 306-7450" + } + }, + { + "service_id": "53214778-f0f6-43a1-9e30-2c2da1f7698d", + "location_id": "28c47a84-ff6c-4695-899a-b52de6ada8de", + "payload": { + "description": "Services include:\n\u2022 Collaboration with College Nursing Program (Queens)\n\u2022 Co-occurring Disorder Services\n\u2022 Group Fitness Classes\n\u2022 Menu Planning for Lunches\n\u2022 Wellness Center\n\u2022 Wellness Recovery Action Planning (WRAP)\n\u2022 Wellness Self-Management (WSM)" + } + }, + { + "service_id": "533f4528-609b-4fa1-bcc7-81a37b79e0c4", + "location_id": "b6beddf5-13a5-439f-8d1e-139714f8696b", + "payload": { + "description": "\u2022 ?Asian American Recovery Services (Substance use). Age requirement: 15+\n\u2022 PROSpect Place (PROS: Personalized Recovery Oriented Services): Recovery program for adults with psychiatric disabilities. Age requirement: 18+\n\u2022 Chinatown Family Consultation Center (Psychiatric clinic)\n\u2022 Gambling Prevention Program" + } + }, + { + "service_id": "53c3e8b7-d09a-4a9a-b603-e54cc76350fe", + "location_id": "f240d86e-a6f9-498b-9fe4-a5eb8021d115", + "payload": { + "description": "Services include:\n\u2022 Care coordination\n\u2022 Psychiatric services and medication management\n\u2022 Therapy and mental health education\n\u2022 Harm reduction education\n\u2022 Career and education counseling" + } + }, + { + "service_id": "542a04b5-f36e-4666-a5f7-66c40efe8980", + "location_id": "52c430b7-f032-430a-ba69-8d692eb13bf6", + "payload": { + "description": "Services include:\n\u2022 Addiction Education\n\u2022 Care Coordination Services\n\u2022 HIV testing once a month\n\u2022 Mandated Classes\n\u2022 Medication-Assisted Treatment\n\u2022 Personalized Counseling\n\u2022 Parenting Classes\n\u2022 Anger Management and Domestic Violence Prevention\n\u2022 Psychiatric and Medical Assessment\n\u2022 Relapse Prevention" + } + }, + { + "service_id": "543bf1c3-fa9e-46b4-84f0-e06f6f248125", + "location_id": "63da6e12-b827-4690-808d-7a03a811d6aa", + "payload": { + "description": "Services include:\n\u2022 Action NYC free legal screenings\n\u2022 Citizenship Preparation\n\u2022 DACA Renewals\n\u2022 ESOL Classes\n\u2022 Immigration Applications\n\u2022 Pragati - Tax-preparer training now employs six women graduates who are gaining on-the-job work experience" + } + }, + { + "service_id": "5448a1a0-0a97-4be5-90f3-39c7f8b47743", + "location_id": "19abc98f-1864-47b8-8e18-cc345426f6bd", + "payload": { + "description": "Services include:\n\u2022 Basic Health Evaluations\n\u2022 Hygiene Kits, Reusable Bags, Snacks, and Water\n\u2022 Overdose Prevention Kits and Training\n\u2022 Screening and Referrals for Substance Use Treatment\n\u2022 Vaccinations" + } + }, + { + "service_id": "544bd9d5-52d3-43ed-bb5e-d833be2756f2", + "location_id": "654105bf-81f7-4e88-962f-c2b69fab3f16", + "payload": { + "description": "Services include:\n\u2022 Adult Medicine\n\u2022 Case Management\n\u2022 Ear, Nose, and Throat\n\u2022 Family Planning\n\u2022 GYN\n\u2022 Health Insurance Enrollment\n\u2022 Mental Health\n\u2022 Nutrition\n\u2022 Pediatrics\n\u2022 Physical Therapy\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Social Services\n\u2022 Teen/Adolescent Health\n\u2022 TeleHealth\n\u2022 Urology" + } + }, + { + "service_id": "5474cf1d-d737-40d1-b6ce-69ae55fba665", + "location_id": "1907d2bd-8fb0-4bea-bb3e-319c5caf1b61", + "payload": { + "description": "Services include:\n\u2022 Gynecology\n\u2022 Nutrition\n\u2022 Podiatry\n\u2022 Prenatal\n\u2022 Primary Care\n\u2022 Social Services\n\u2022 Dentistry\n\u2022 Women, Infants, and Children Services (W.I.C)\n\u2022 Health Home Program\n\u2022 Vaccines\n\u2022 Health Insurance Enrollment\n\u2022 Mental Health and Psychotherapy\n\u2022 Family Planning" + } + }, + { + "service_id": "547f11a9-8a1e-42a0-a17d-6e0d119680ef", + "location_id": "10bb3e81-b889-4935-a355-7b30f0873886", + "payload": { + "description": "Services include:\n\u2022 Health Insurance Enrollment\n\u2022 Pediatric Care\n\u2022 Primary Care\n\u2022 OBGYN" + } + }, + { + "service_id": "54aecfaa-1631-46fd-9ef1-16b9ee5a5bea", + "location_id": "bf23bc60-35e5-426a-8dfb-60516dd567bb", + "payload": { + "description": "Brooklyn TASC:\n\u2022 Clients must have current involvement in the Criminal Justice System, be referred by their current advisor within the criminal justice system (Case Manager, Probation Officer, Parole Officer, etc.), score low to high based on the COMPAS Risk Assessment, compliant with all legal requirements, motivated to work, and willing to take the steps towards independence." + } + }, + { + "service_id": "5510305d-ea58-42bf-8126-0f8faf010090", + "location_id": "1a9a87b9-9564-4dcf-88cb-0513beff0b6b", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Cardiology\n\u2022 Dental\n\u2022 Gastroenterology\n\u2022 Gynecology\n\u2022 HIV Primary Care\n\u2022 Mental Health\n\u2022 Neurology\n\u2022 Optometry\n\u2022 Pain Management\n\u2022 Pediatric Medicine\n\u2022 Pharmacy Assistance Program\n\u2022 Physical Therapy\n\u2022 Podiatry" + } + }, + { + "service_id": "5518eefa-1b01-4a10-8706-8af4cbc2e50b", + "location_id": "9115cdb2-92aa-413c-ae5b-47f02ec6bd07", + "payload": { + "description": "Training and classes in:\n\u2022 Home Health Aide (HHA)\n\u2022 Emergency Medical Technician (EMT)\n\u2022 Medical Assistant (MA)\n\u2022 Master Barber (MB)\n\u2022 Patient Care Technician (PCT)\n\u2022 Certified Nursing Assistant (CNA)\n\u2022 Direct Support Professional (DSP)\n\u2022 Security Guard (SG)\n\u2022 HSE, GED, and college exploration" + } + }, + { + "service_id": "5526c629-7a41-467a-af64-49bb8134d4bd", + "location_id": "7958712a-13cf-4881-a21e-7a0edb58eda1", + "payload": { + "description": "Different activities are on their calendar here. See announcements on their Instagram at instagram.com/communityconnection.fec" + } + }, + { + "service_id": "557932e2-7c0c-4b36-9a93-737c5292272a", + "location_id": "da5b064e-9ca5-40c8-afcc-83f44acd4afc", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Walk in or call to enroll." + } + } + }, + { + "service_id": "55c36d4b-7cc4-4fca-b89f-a1c4d8669508", + "location_id": "ad1e09ed-b53b-416c-9519-9359c511f293", + "payload": { + "description": "Services include:\n\u2022 Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Psychiatry\n\u2022 Psychotherapy\n\u2022 Psychiatric Medication Management\n\u2022 Substance Use Treatment Referrals" + } + }, + { + "service_id": "568e973b-6fd6-47a0-88d5-6aec63369616", + "location_id": "41df1a49-0a2b-4f5c-a116-3a0e469654a6", + "payload": { + "description": "Eviction Prevention for eligible low-income individuals." + } + }, + { + "service_id": "56df9e6b-238d-44a3-91b7-bb8258a87704", + "location_id": "635d2e2d-1300-4a8e-9606-4143b7d8a066", + "payload": { + "description": "Services include:\n\u2022 Apply for, Petition, or Defend\n\u2022 Citizenship and Naturalization\n\u2022 Deportation, Removal and Cancellation\n\u2022 Employment Authorization\n\u2022 FOIA File Request or Counsel about Pending Immigration Case\n\u2022 Gender Violence and Petition for battered Spouses or Children\n\u2022 Immigration in Proceeding for Criminal Conviction\n\u2022 Motion to Reopen or Appeals\n\u2022 Removal Withholding\n\u2022 Status Adjustments\n\u2022 Temporary Protected Status and Asylum\n\u2022 Waivers" + } + }, + { + "service_id": "572ed79e-86dd-46bd-ab58-92d596e652be", + "location_id": "9ae0b313-4865-404d-8a46-ccace9a7f0eb", + "payload": { + "description": "Services include:\n\u2022 Annual GYN Pelvic Exams\n\u2022 Breast Exams\n\u2022 Routine PAP Smears" + } + }, + { + "service_id": "576f602b-105f-4054-af90-12521631b30b", + "location_id": "527f33ee-3fde-49ab-8bb2-36c837e48782", + "payload": { + "description": "\u2022 Drug and alcohol support groups\n\u2022 HIV and HCV testing 10:00 AM - 3:30 PM Monday through Friday for anyone regardless of insurance\n\u2022 Insurance eligibility screening for anyone" + } + }, + { + "service_id": "5796aea2-6e9a-410d-8b3d-99c95fc9dbe3", + "location_id": "2df1a32e-cfcd-415e-ba5c-7926bb10cd1e", + "payload": { + "description": "Services include:\n\u2022 Emergency Financial Assistance\n\u2022 Enhanced Case Management\n\u2022 Financial Management\n\u2022 Holocaust Education\n\u2022 International Conference for Professionals\n\u2022 Russian-Speaking Survivors\n\u2022 Social Programs\n\u2022 Subsidized Home Care\n\u2022 Volunteer Program\n\u2022 Witness Theater" + } + }, + { + "service_id": "5842385e-5d87-4b22-9550-b979238263ff", + "location_id": "dd8c851c-760e-4480-aecc-23bbaf43a5e2", + "payload": { + "description": "\u2022 ESL for adults\n\u2022 Different types of dance, pickleball and basketball for middle- and high schoolers\n\u2022 Elementary school homework help" + } + }, + { + "service_id": "5884bfe7-94b9-4b32-aa56-6d65276a4f81", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call (718) 584-9000 x5353 for eligibility and enrollment." + } + } + }, + { + "service_id": "59392ca6-adbd-4b87-99d6-d1af580ac7d4", + "location_id": "cfca724b-63f9-4a4c-8064-4ea248436667", + "payload": { + "description": "Services include:\n\u2022 Crisis Intervention\n\u2022 Individual Therapy\n\u2022 Medication Management", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Call or walk in to complete an intake\n\u2022 Telehealth services are offered" + } + } + }, + { + "service_id": "598d4be6-d16d-4d53-ada4-4e79cf2989d6", + "location_id": "a14f9d60-a576-4e05-9e11-f86584164bc4", + "payload": { + "description": "Services include:\n\u2022 Dentistry, 2+\n\u2022 GYN, all ages\n\u2022 Mental Health, 6+\n\u2022 Neurology, 18+\n\u2022 Podiatry, all ages\n\u2022 Primary Care, 2+\n\u2022 Psychiatry, 4+" + } + }, + { + "service_id": "59f259b1-e8af-4f79-aaf6-f33ea1618ffa", + "location_id": "da313ac3-44d7-4fd2-86ad-890f2d914a62", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Phone appointments are preferred, but at the following hours, you can be served on a first-come, first-served basis." + } + } + }, + { + "service_id": "5a3afa12-6f3e-48c9-876a-d0a70838c286", + "location_id": "2f893130-cad8-4c16-a907-8eb6df358bb6", + "payload": { + "description": "Services include:\n\u2022 Health Education\n\u2022 HIV/AIDS and Infectious Disease Services\n\u2022 Individual and Group Counseling\n\u2022 Medical/Physical Assessment\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health Assessment and Referral\n\u2022 Social Service Referral\n\u2022 Vocational Testing, Training, and Counseling" + } + }, + { + "service_id": "5a3d1bb7-31c0-43fd-8e08-3034a0bc0727", + "location_id": "6e924de6-cf63-408a-a6fe-0009dff3bfd5", + "payload": { + "description": "An outpatient chemical dependency program that provides individuals with treatment and case management services." + } + }, + { + "service_id": "5a45f6e3-7d4b-4fd5-bf07-ce30bb083fca", + "location_id": "d136ffc7-1d56-4e95-bc3e-65c66f5dcec3", + "payload": { + "description": "Services are provided by walk-in:\n\u2022 Urgent medical care\n\u2022 HIV/STI screening and treatment\n\u2022 Family planning\n\u2022 PrEP/PEP treatment and counseling\n\u2022 Transgender hormone therapy\n\u2022 Vaccines\n\u2022 Crisis counseling and referrals\n\u2022 Insurance will be billed, and you might be responsible for a co-pay.\n\u2022 If uninsured, you will be billed according to your income, and the services might be free if you have no income.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Here occasionally. Call Streetwork to find out when they are coming." + } + } + }, + { + "service_id": "5af7aa40-fe3a-4f17-9c72-d33078dc3393", + "location_id": "7427a973-7801-4b28-bdcc-6112ea923961", + "payload": { + "description": "A residential substance use treatment program for men struggling with chemical dependency issues. It is also an alternative to incarceration. The length of stay is 9-12 months" + } + }, + { + "service_id": "5b2116f3-62d8-4527-8a31-f4e490c3ac2b", + "location_id": "3b2dd175-f82b-4a62-8157-25ced7c4a6f0", + "payload": { + "description": "\u2022 Veterans Treatment Court.\n\u2022 \u2014 Call for referrals at (347) 404-9554 or (347) 404-9616.\n\u2022 \u2014 For more information on services, please see this brochure.\n\u2022 If you are charged with a misdemeanor or a first-time drug-related felony, ask your defender you to refer for advocacy by calling ?(347) 404-9000\n\u2022 Court-mandated DUI treatment, Alcohol Education Program (AEP)" + } + }, + { + "service_id": "5b628231-0268-4e03-a57f-df475d4f2098", + "location_id": "8349e6a9-4c15-4169-94f2-670c560f695e", + "payload": { + "description": "Exhibits include:\n\u2022 Auditorium\n\u2022 Brooklyn Voices\n\u2022 ColorLab Art Studio\n\u2022 Nature's Engineers\n\u2022 Neighborhood Nature\n\u2022 The Nest Rooftop\n\u2022 Totally Tots\n\u2022 Visiting Exhibits Gallery" + } + }, + { + "service_id": "5b703aa9-468f-4837-a351-5cb1e73de307", + "location_id": "04fb3edb-b994-4339-976f-9ac87c29e46b", + "payload": { + "description": "Services include:\n\u2022 Children's Therapy\n\u2022 Adult Psychotherapy\n\u2022 Medication Services" + } + }, + { + "service_id": "5b7b4722-c1cf-4808-a0bf-160b04886a4e", + "location_id": "f2b78ee8-468a-494f-8198-4fb2fe534cf7", + "payload": { + "description": "\u2022 Feel free to walk in to enroll in NYC care or HRA services.\n\u2022 This assistance is available to low-income New Yorkers.\n\u2022 Some services are available to certain immigration statuses.\n\u2022 Call to find out if you qualify.\n\u2022 Also available: Birth certificates and CURP for Mexican-born people and Mexican Citizens/Residents, call (646) 301-6842 and fill out this form to enroll" + } + }, + { + "service_id": "5b7cde0a-dc88-4af1-aec4-3f18c264483d", + "location_id": "85f1f80e-0cc3-418a-8f8b-6d0cbd43d1c8", + "payload": { + "description": "Services include:\n\u2022 Case management for crime survivors\n\u2022 Help in free credit reports for identity theft victims, police report assistance, and victim advocacy\n\u2022 SNAP and cash assistance applications\n\u2022 Affordable Housing Applications like\n\u2022 NYCHA and senior housing\n\u2022 Social Security Benefits applications\n\u2022 Early education daycare 3-4 PM\n\u2022 Passport renewals and citizenship applications" + } + }, + { + "service_id": "5b84567c-cd48-4acc-a125-7b08ece84364", + "location_id": "9c9e1059-93fc-4d7d-834f-fc7aa5778c33", + "payload": { + "description": "Primary Care for all ages" + } + }, + { + "service_id": "5b873e07-0440-45df-a871-9eefcfc555b8", + "location_id": "b767ac43-7711-4454-abda-0f2c074d82e2", + "payload": { + "description": "Services include:\n\u2022 Health Education\n\u2022 Individual and Group Counseling\n\u2022 Infectious Disease Services\n\u2022 Medical/Physical Assessment\n\u2022 Mental Health Assessment and Referrals\n\u2022 Social Service Referrals\n\u2022 Vocational Testing, Training, and Counseling" + } + }, + { + "service_id": "5c05f1fa-7d55-4c66-baa9-8acf3ed7c2d6", + "location_id": "0a9d4657-b95a-4f40-8206-00cb216547c1", + "payload": { + "description": "Services include:\n\u2022 Family Therapy\n\u2022 Group and Individual Therapy\n\u2022 Parent Guidance\n\u2022 Play Therapy\n\u2022 Psychiatric Evaluations" + } + }, + { + "service_id": "5c5e983a-32ac-4918-9a12-4c0dd3f1b90c", + "location_id": "cbe4c1fb-e3e8-44a8-85d2-01b08ab89b55", + "payload": { + "description": "\u2022 Multilingual tax prep (during tax season)\n\u2022 Citizenship classes (only with proof of Green Card) and ESL \u2014 call to enroll, in-person and remote versions are available\n\u2022 Immigration applications:\n\u2022 \u2014 DACA and Work Permit renewals (only)\n\u2022 \u2014 N-400 Citizenship (people from outside NYC are welcome)\n\u2022 \u2014 Travel document (for asylees and refugees)\n\u2022 \u2014 Removal of marriage-based Green Card conditions" + } + }, + { + "service_id": "5c9749df-b1d0-4b7f-a72c-f4304a058213", + "location_id": "fe0f768d-295d-4f6e-8766-ffc12e73943d", + "payload": { + "description": "Services include:\n\u2022 Alcohol and Substance Use Treatment\n\u2022 Family Counseling\n\u2022 Gender-Specific Groups\n\u2022 Individual and Group Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health\n\u2022 Primary Care\n\u2022 Relapse Prevention" + } + }, + { + "service_id": "5c9c9376-74da-4763-a18a-5efc3d92f850", + "location_id": "fa2041e3-2b4c-4a1a-8d8d-5d00387f45e0", + "payload": { + "description": "Services are available to any adult, except for the YASS Program:\n\u2022 HIV/Hep C/STI Testing, Prevention, and Treatment (injectable treatment is available even if you are not a primary care patient here)\n\u2022 Primary Care and referrals for:\n
 \u2014 Anal Cancer Prevention Program\n
 \u2014 Dentistry\n
 \u2014 Gender-Affirming Surgery\n
 \u2014 Hormonal Therapy\n
 \u2014 Psychiatry, Psychology, and Addiction Treatment\n
 \u2014 Nutrition\n
 \u2014 Acupuncture\n\u2022 Trans and queer cis men (mainly of color) 13-29 years old can submit a contact form at instagram.com/the_yass_program for HIV/STI testing, education, and linkage to prevention and treatment services, but no one is turned away" + } + }, + { + "service_id": "5cc53e3d-f3f2-4bd1-95eb-9088e5f13971", + "location_id": "89df0afd-f75a-483d-a308-394e554103dd", + "payload": { + "description": "Services include:\n\u2022 Benefits Assistance\n\u2022 Counseling\n\u2022 Crisis intervention (HOT is a certified crisis intervention program)\n\u2022 Medical and Psychiatric Services\n\u2022 Permanent housing placements\n\u2022 Referrals to Substance Use treatment centers and Emergency Shelters" + } + }, + { + "service_id": "5cd88ca9-c4cc-4c64-844c-9f451b4892b2", + "location_id": "e634301f-47ff-4796-877d-b757acc04359", + "payload": { + "description": "Services include:\n\u2022 Group and Individual Treatment\n\u2022 Pharmacological Treatment" + } + }, + { + "service_id": "5cdbe550-c69f-4498-b241-c5d89d7c37de", + "location_id": "5bc03326-ae2d-4e15-b516-0e1a8a5729e7", + "payload": { + "description": "This location offers only preventive services for families with ACS involvement, mental health, referrals, and childcare. For a full array of services, visit their Harlem Headquarters" + } + }, + { + "service_id": "5d227329-a6d9-4a00-9af2-5afc4a9fa0b0", + "location_id": "6f262eb1-ff7b-4711-bb9e-e6ddee3ffe93", + "payload": { + "description": "Services include:\n\u2022 Acupuncture\n\u2022 Cardiology\n\u2022 Dental\n\u2022 Gynecology\n\u2022 HIV Care\n\u2022 Mental Health\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Primary care" + } + }, + { + "service_id": "5d843c8d-9f67-48df-9625-fc9e2a119d88", + "location_id": "e9e92406-9cfe-4363-a2d4-ad30495d6de8", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Case management is available to all adults (Age 18+)\n\u2022 Senior center recreation is offered to people over 65\n\u2022 The food pantry is open to everyone on Wednesdays starting at 11 AM till around 2 PM and can be reached at (718) 684-8807\n\u2022 Urdu, English, and Russian assistance are available." + } + } + }, + { + "service_id": "5dc330cb-7772-4921-adcc-f80d73552090", + "location_id": "be1f8529-daa0-4806-af8c-11d3e4938448", + "payload": { + "description": "Services include:\n\u2022 Adolescent and Adult Criminal Defense\n\u2022 Advise pregnant women who are at risk of\n\u2022 child protection involvement\n\u2022 cases\n\u2022 Advocacy for families during a child\n\u2022 protection investigation\n\u2022 Representation for parents in abuse and neglect cases" + } + }, + { + "service_id": "5e4246b3-9f89-47c1-b782-100e04b1335b", + "location_id": "8d3af588-6062-4113-b0cd-7bb6e5d942cb", + "payload": { + "description": "Services include:\n\u2022 Pre-packaged pantry bag\n\u2022 Commodities Supplemental Food Program (CSFP), which provides a meal box (shelf-stable goods and a 2lb block of cheese) once a month to all seniors (60+) who qualify for the program" + } + }, + { + "service_id": "5f1317e7-bada-4b5c-87ec-1e8b5cf820ac", + "location_id": "8ea0f5f0-7097-42c2-93e8-fde1a674eb33", + "payload": { + "description": "Services include:\n\u2022 Primary Care\n\u2022 OBGYN" + } + }, + { + "service_id": "5f7a5de3-023a-42a2-afc6-e2c88cbd427f", + "location_id": "f3b469df-26ce-4389-b58d-5c48f117bfef", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please see other immigration resources on YourPeer. Fill out this form to request an appointment." + } + } + }, + { + "service_id": "5fa408db-ba90-42a3-96d8-03d05d7e8469", + "location_id": "d2598e8c-fadc-4d37-9592-5c0f16719344", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 There are no walk-ins; once you have an appointment (by calling (929) 300-8630 or (929) 341-8302), find directions here.\n\u2022 This service is open to NYC residents with low income, eligible to work; the income you receive after you undergo training and get placed is not taxed and does not affect your benefits. It costs $55 to sign up." + } + } + }, + { + "service_id": "604f0372-271f-4918-8a9b-7cbce6b5bef1", + "location_id": "5fcb2484-87de-4438-bff6-be549d8911df", + "payload": { + "description": "Services include:\n\u2022 Podiatry. Age requirement: 5+\n\u2022 Primary Care for all ages" + } + }, + { + "service_id": "60672ada-b170-40e1-ba8b-a99cadd24857", + "location_id": "4bcf6f68-25d8-45fa-8352-0d78b3756422", + "payload": { + "description": "Services include:\n\u2022 Adult Basic Education\n\u2022 Career and Technical Education\n\u2022 ESL Classes\n\u2022 GED Prep and Testing" + } + }, + { + "service_id": "60b958fe-3a8c-4682-8bf2-c39ede362f82", + "location_id": "ee60d902-bb2a-4345-9d0d-eb3aedb44f15", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Annual Health Exams\n\u2022 Chronic Disease Management\n\u2022 COVID-19 Testing and Vaccinations\n\u2022 Dental\n\u2022 GYN\n\u2022 Immunizations\n\u2022 Pediatrics\n\u2022 Podiatry" + } + }, + { + "service_id": "60d18222-75cf-4e90-99d3-7d35916d66a2", + "location_id": "592a1a16-6441-4405-945d-0826067da27a", + "payload": { + "description": "\u2022 The schedule is changing monthly, and there are a lot of spontaneous events. Please see the schedule at the reception. Social worker is available by appointment and recreational activities are available throughout opening hours including painting on Fridays, bingo on Tuesdays and Wednesdays, yoga on Wednesdays, and more\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "60fe8fe9-c63d-43d8-96b4-7504d3e630fe", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "description": "\u2022 Clients undertake a psychosocial assessment with a therapist to address their specific needs. If necessary, a referral to a psychologist can be made.\n\u2022 Translation services may be available." + } + }, + { + "service_id": "610545cd-8218-4307-8fcf-ae19be46de86", + "location_id": "128ab342-28e6-43c6-a590-cccbb92e3a16", + "payload": { + "description": "
Services include:\n\u2022 Benefits Assistance\n\u2022 Housing Information\n\u2022 HRA2010e\n\u2022 Individual Advocacy\n\u2022 Information and Referrals\n\u2022 NYC School Tax and NYS Renters' Credits\n\u2022 Peer Support" + } + }, + { + "service_id": "613da669-00ce-4ee7-9682-9e85f0448c3e", + "location_id": "6649f721-9570-477a-a38b-dadf9f243fed", + "payload": { + "description": "Services include:\n\u2022 Medication and surgical abortion until 15 weeks and 6 days of pregnancy\n\u2022 Ultrasound\n\u2022 Birth control\n\u2022 Vasectomy Consultations\n\u2022 General wart removal\n\u2022 Pap Smears and LEAP\n\u2022 Colposcopy\n\u2022 HPV Vaccines\n\u2022 GYN and Sexual\n\u2022 HIV Services\n\u2022 STI Services\n\u2022 Transgender Care" + } + }, + { + "service_id": "616723ad-c7de-4973-a79c-279275e6b6fd", + "location_id": "bcbda6f2-2da1-49c4-8c13-eb0d19820863", + "payload": { + "description": "Classes for:\n\u2022 Microsoft Suite\n\u2022 Certified Nursing Assistant (CNA)\n\u2022 Home Health Aide (HHA)\n\u2022 Culinary Arts\n\u2022 Health and Human Services\n\u2022 GED\n\u2022 QuickBooks" + } + }, + { + "service_id": "616e36d8-d408-4d2c-afa1-ccdaf7a2c931", + "location_id": "da5b064e-9ca5-40c8-afcc-83f44acd4afc", + "payload": { + "description": "Insurance enrollment:\n\u2022 Child Health Plus and Medicaid for children\n\u2022 Medicaid Essential Plan\n\u2022 ABD Medicaid plan for Aged, Blind, and Disabled over 65\n\u2022 Managed Care Consumer Assistance Program (MCCAP)\n\u2022 Obamacare" + } + }, + { + "service_id": "62073874-85aa-4dca-851b-fce588951e71", + "location_id": "a2c9e50d-6b5b-4d68-baf7-eb93472ee725", + "payload": { + "description": "\u2022 Hot weekday meal, with a vegetarian lunch and dinner option on request at least 15 minutes before the service.\n\u2022 Lunch check-in starts at 9.15 AM\n\u2022 All meals are served on a first-come, first-served basis until the end of mealtime or until all food has been distributed." + } + }, + { + "service_id": "6216b5ae-8ad3-42b0-affb-130d2e062816", + "location_id": "dd992aad-8e9f-414e-bb20-ecc6917f4457", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Must live between West 76th Street and West 179th Street\n\u2022 Enter at 91 Claremont Avenue\n\u2022 Pick up a ticket from the information desk, then proceed to the pantry" + } + } + }, + { + "service_id": "6231d169-7c5c-4ebc-b5e1-2cc8a81318cc", + "location_id": "8a1e80f4-864d-4b83-9d5f-6cf59a9cc212", + "payload": { + "description": "Services include:\n\u2022 Creative Writing\n\u2022 Gaming Systems\n\u2022 Open-Mic\n\u2022 Painting\n\u2022 Performance Arts\n\u2022 Friday Evening Transgender Program, on the 1st floor. Call Erica Vasquez at (718) 896-2500 x5713" + } + }, + { + "service_id": "6307cbbe-3766-4046-9611-7c5614ea704b", + "location_id": "1c0084b5-b5cc-4950-a924-db866b674ea7", + "payload": { + "description": "Treatment Services include:\n\u2022 Addiction\n\u2022 Anxiety\n\u2022 Bipolar Disorder\n\u2022 Depression\n\u2022 Military Sexual Trauma\n\u2022 OCD\n\u2022 PTSD\n\u2022 Schizophrenia\n\u2022 Trauma" + } + }, + { + "service_id": "63b7f9f3-1425-4036-97ed-8d5c5d86a9f7", + "location_id": "0ef55f80-6c88-4cbf-9e01-b01efa2f419f", + "payload": { + "description": "Events are often happening at Brooklyn Community Pride Center in Crown Heights and are geared towards queer individuals of age:\n\u2022 Workforce development\n\u2022 Nutrition self-management for type II diabetics\n\u2022 HIV treatment and prevention referrals with HIV self-testing kits deliveries to this address, any NYC residential address, and Brooklyn Community Pride Center in Crown Heights, order a kit at linktr.ee/CAMBABOP\n\u2022 Filmmaking and gender-affirming makeup workshops\n\u2022 LEAP \u2014 LGBTQIA2S+ education and acceptance project\n\u2022 Annual mural and art contests\n\u2022 Overdose prevention kits and training\n\u2022 Support groups for parents of queer youth\n\u2022 Safe recreational space" + } + }, + { + "service_id": "641b0faf-f089-4b37-9011-3c9fde820339", + "location_id": "ed817a5e-9490-435c-b97a-4acd5f3189cb", + "payload": { + "description": "\u2022 Contact the CRB to receive information and services on legal protections and obligations, pre-complaint interventions, events, workshops, and other programming that empowers citizens to better understand the City Human Rights Law and how to effectively assert their rights. You may also contact them to initiate an educational workshop at your location.\n\u2022 Call (212) 306-7450" + } + }, + { + "service_id": "6435c9fd-eb71-4806-abce-6fa0feb7124c", + "location_id": "68ac2b17-c9d0-40c6-88f9-923c02e82868", + "payload": { + "description": "Services Provided include:\n\u2022 Shelters,\n\u2022 FHEPS housing vouchers (income, state/city residency, and immigration status requirements apply)\n\u2022 Rent arrears (one-time payment) are offered to low-income NYC tenant with proven income loss and rent non-payment" + } + }, + { + "service_id": "645c4d17-7030-4e72-94be-035a42690c0f", + "location_id": "1edfab8e-0d7c-437e-a14c-6b9ca0eb5d93", + "payload": { + "description": "Services include:\n\u2022 HEAP\n\u2022 Housing Assistance\n\u2022 HRA\n\u2022 Legal Referrals\n\u2022 Medicaid and Medicare\n\u2022 SNAP\n\u2022 Social Security Benefits" + } + }, + { + "service_id": "647b6844-0c7b-48b9-b3b1-8c1473898dc6", + "location_id": "a41e679f-bec5-4a0c-8bfe-14ef59f44c09", + "payload": { + "description": "\u2022 Health Insurance Enrollment\n\u2022 Medicaid Assistance\n\u2022 SNAP Application Enrollment" + } + }, + { + "service_id": "6481b370-a8d0-411d-bbaf-c5c0f92fc88e", + "location_id": "b48946e5-0fe2-463c-a614-06f8d145d124", + "payload": { + "description": "Services include:\n\u2022 Assessments\n\u2022 Diagnosis\n\u2022 Medication Management\n\u2022 Psychotherapy" + } + }, + { + "service_id": "648c38c8-dc8d-499c-ab67-a2ea2a24dc9a", + "location_id": "3381cbe4-e884-43c2-9b98-6f8a2ede2b39", + "payload": { + "description": "\u2022 They offer FREE training in Office Administration (previously Administrative Professionals) and Healthcare Administration (previously Patient Services Representatives). A registration fee of $50 exists but can be waived if you cannot pay it.\n
The Office Administration Program curriculum includes:\n\u2022 Office administration\n\u2022 Business communication\n\u2022 Interview preparation\n\u2022 Business finances\n\u2022 Microsoft Office Suite\n\u2022 CRM\n\u2022 Teleconferencing\n
The Healthcare Administration Program includes:\n\u2022 Medical terminology\n\u2022 Scheduling\n\u2022 Professional communication\n\u2022 Ethics and confidentiality\n\u2022 Electronic medical record management\n\u2022 EPIC\n\u2022 Interview preparation\n\u2022 Microsoft Office Suite\n\u2022 After graduation, participants receive one year of job placement assistance, job-retention support, and lifetime access to post-graduate workshops, networking events, and professional development opportunities. Their Master's level student interns provide support during the training phases of the program, and our Alumnae Services team provides ongoing professional coaching after graduation.\n\u2022 If you have questions about the application process, please email: admissions@graceinstitute.org" + } + }, + { + "service_id": "64b313cc-76f2-4580-b7b8-895f1bfec7b3", + "location_id": "b8c4c221-d30e-4814-a842-61d5f3f6c93a", + "payload": { + "description": "\u2022 Advocacy\n\u2022 Arts and Craft\n\u2022 Benefits and Entitlement Assistance\n\u2022 Educational Discussions\n\u2022 Health and Wellness\n\u2022 Local Outings\n\u2022 SCRIE\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "64d97889-6163-4c56-a906-6f325856596a", + "location_id": "ad067b1f-085a-456d-a9c2-4c442d9a0014", + "payload": { + "description": "Services include:\n\u2022 Annual Health Exams\n\u2022 Chronic Disease Management\n\u2022 COVID-19 Testing and Vaccinations\n\u2022 Dental Care\n\u2022 GYN\n\u2022 Immunizations\n\u2022 Pediatrics\n\u2022 Primary Care" + } + }, + { + "service_id": "64e2cce6-ed10-4e3d-8ff6-56074bb8724d", + "location_id": "f4d6346d-2a60-48f9-8bce-561274dae07d", + "payload": { + "description": "Services include:\n\u2022 Crisis Intervention\n\u2022 DWI Assessments\n\u2022 Individual and Group Counseling\n\u2022 Medication-Assisted Treatment (MAT)\n\u2022 Overdose Prevention\n\u2022 Social Support Services" + } + }, + { + "service_id": "650c256b-6d7d-40a9-919e-6da3072a67f3", + "location_id": "c3203656-9d47-4ab8-b3df-22018f786e1c", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "For help, contact doobneek at info@doobneek.org." + } + } + }, + { + "service_id": "6593d85a-d2ec-4340-8704-66de677b5d69", + "location_id": "29301fb5-020f-473d-9cff-70584edad23c", + "payload": { + "description": "\u2022 A resting room that is available to clients during the day.\n\u2022 Two people per session. First come, first served. The light has to be on. Staff may look in the glass window in the door. No time restrictions or sign-up, only designated for sleeping. Napping is also permitted in the common area of comfortable couches, but music and TV are on, and people are talking." + } + }, + { + "service_id": "6624cb47-cdf1-4211-907d-c228c2a83317", + "location_id": "2f7c8af1-bc8c-4115-a5f9-1e3c250bfba7", + "payload": { + "description": "Social workers are available to homebound people who live on the East Side in the catchment between 56th Street and 96th Street." + } + }, + { + "service_id": "66e5e14e-43c7-48e3-a3da-7bf65de0fbca", + "location_id": "fe3355f3-0760-41a2-814d-b46ccb4583dd", + "payload": { + "description": "The following services are available to anyone:\n\u2022 Free Tax Prep (only New York State income, no business taxes, no income requirements) during tax season. Call to make an appointment at one of their 3 locations, and they will explain what to bring\n\u2022 Referrals to the social service department for:\n\u2022 \u2014 Civil cases\n\u2022 \u2014 Housing ( Section 8, FHEPS, SCRIE, DRIE)\n\u2022 \u2014 Government assistance and recertification, Immigration fee waivers" + } + }, + { + "service_id": "66ee840b-9b3d-4c6a-8e90-52dce8e9bcb3", + "location_id": "661c5f5d-adbe-4c26-95f0-e7f6595d1439", + "payload": { + "description": "Services include:\n\u2022 Detox\n\u2022 Methadone Maintenence\n\u2022 Methadone to Abstinence\n\u2022 Suboxone Maintenence\n\u2022 Brief Counseling" + } + }, + { + "service_id": "670f21c2-72a8-450e-815a-298a054f9066", + "location_id": "bc8442a9-d0de-49f4-9f06-527c2457e145", + "payload": { + "description": "Services include:\n\u2022 Diabetes Care\n\u2022 Insurance Enrollment\n\u2022 OB-GYN\n\u2022 Primary Care\n\u2022 Social Services" + } + }, + { + "service_id": "675a5e6e-0171-41d1-8459-8e0eefff6556", + "location_id": "64d5c437-be9c-45b2-835c-5cbad9fd6f16", + "payload": { + "description": "The following services are offered to people of all ages unless otherwise stated:\n\u2022 X-Rays\n\u2022 Allergology\n\u2022 Dermatology\n\u2022 Podiatry\n\u2022 Gastroenterology, hematology, endocrinology. Age requirement: 18+\n\u2022 Cardiology\n\u2022 Nephrology and pulmonology. Age requirement: under 18 (until your 19th birthday)\n\u2022 Infectious disease (no injectable prep is offered)" + } + }, + { + "service_id": "6791b136-169b-4854-997b-9dc84e3f3929", + "location_id": "aeb55886-1ae3-442b-9ff3-b0862b39acc1", + "payload": { + "description": "\u2022 The Bridge Fund: only works by referrals by HCA. To qualify, you must have a low income, be able to pay for rent in the future, be in eviction proceedings, and have a moderate load of unpaid rent (or have approval from HRA to pay the arrears).\n
\u2014 New Yorkers who have been referred can call (646) 742-1465\n
\u2014 Westchester residents may call (914) 949-8146 (no referral needed)\n\u2022 Use the HCA hotline (open 8:30 AM - 5:00 PM Monday through Friday) to find rental assistance you are eligible for and:\n
\u2014 Attend Zoom workshops on tenants' rights, see the website for details\n
\u2014 Receive guidance on suing the landlord, getting clarification on lease terms, getting more time to move or pay rent" + } + }, + { + "service_id": "67d97d78-5bf4-49f3-8943-120d2a6894bd", + "location_id": "9995419a-59d3-48df-aeb5-a6451aff0c7e", + "payload": { + "description": "\u2022 The Bridge Fund: only works by referrals by HCA. To qualify, you must have a low income, be able to pay for rent in the future, be in eviction proceedings, and have a moderate load of unpaid rent (or have approval from HRA to pay the arrears).\n
\u2014 New Yorkers who have been referred can call (646) 742-1465\n
\u2014 Westchester residents may call (914) 949-8146 (no referral needed)\n\u2022 Use the HCA hotline (open 8:30 AM - 5:00 PM Monday through Friday) to find rental assistance you are eligible for and:\n
\u2014 Attend Zoom workshops on tenants' rights, see the website for details\n
\u2014 Receive guidance on suing the landlord, getting clarification on lease terms, getting more time to move or pay rent" + } + }, + { + "service_id": "67dbb297-e458-445e-be1c-69acd8fc2f9f", + "location_id": "1fa57597-701c-4e48-b47f-c14590fd6b8b", + "payload": { + "description": "\u2022 Eviction Prevention \u2014 Assistance with rent and utility arrears and mediation to prevent eviction\n\u2022 Public Benefits Assistance\n\u2022 Education and Job Placement \u2014 HELP Works\n\u2022 Financial Counseling\n\u2022 Relocation Assistance" + } + }, + { + "service_id": "67f9d9a9-07c4-43a1-b8cb-f4f2d0c98cf4", + "location_id": "62e43dc5-810a-40a2-a0e0-090c0e4dcee4", + "payload": { + "description": "\u2022 Food assistance to low-income NYS residents with an eligible immigration status.\n\u2022 Crisis case management" + } + }, + { + "service_id": "681d517a-2bbf-42a9-afc0-becd5ce333dc", + "location_id": "2a2ae9b7-7bb4-4aa5-945b-cbdaacb43fde", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Benefits\n\u2022 Crisis Intervention\n\u2022 Education and Employment\n\u2022 Housing Assistance\n\u2022 Identification\n\u2022 Individual Counseling\n\u2022 Mental Health" + } + }, + { + "service_id": "687dbf2c-8ee8-40b1-ae08-81e094a33d73", + "location_id": "cab24732-03a4-47fb-a052-fd9235fb1665", + "payload": { + "description": "Patient advocacy and case management." + } + }, + { + "service_id": "68f01eb4-97f7-4286-8d19-43987af9c25b", + "location_id": "20519c2d-a0e4-431a-a83b-70cb00d8788a", + "payload": { + "description": "Services include:\n\u2022 Dental\n\u2022 Family Medicine\n\u2022 Gastroenterology\n\u2022 Podiatry" + } + }, + { + "service_id": "692f0230-9d8c-4e2b-9cea-151cf8655bb7", + "location_id": "75e5736e-0d5a-4230-b7cc-bc4159ad7e0e", + "payload": { + "description": "Services include:\n\u2022 Case Management\n\u2022 Crisis Intervention\n\u2022 Family, Group, and Individual Therapy\n\u2022 Medication Management\n\u2022 Play Therapy\n\u2022 Psychiatric Evaluations\n\u2022 Psychosocial Assessments\n\u2022 24-Hour Telephone Emergency Line" + } + }, + { + "service_id": "695e9538-986d-4524-bf9f-9d4f9e4e1faf", + "location_id": "1e03e854-8e5d-4655-8408-a602579f0927", + "payload": { + "description": "Services include:\n\u2022 Care Management\n\u2022 Children, Adults, and Senior Services\n\u2022 CFTSS Program (Children and Family Treatment and Support Services)\n\u2022 Home and Community-Based Services\n\u2022 Home Visiting Services\n\u2022 School Programs" + } + }, + { + "service_id": "6972acc5-2f57-43de-8685-57c9a2be4ba6", + "location_id": "793d9757-4d41-4725-90d8-e43eca9634b2", + "payload": { + "description": "Clubhouses offer free support to New Yorkers who have serious mental health conditions regardless of their insurance, immigration, housing status, or criminal justice involvement history. Clubhouse members take part in activities that help the Clubhouse run. Clubhouse benefits include:\n\u2022 Help getting benefits\n\u2022 Health, legal, education, and job services (available in person, by phone, or videoconference)\n\u2022 Productive and recreational activities with peers\n\u2022 Healthy meals and snacks\n\u2022 Members can qualify for supportive housing (living with roommates) via 2010E\n\u2022 Members can volunteer in communication, nutrition, horticulture, and maintenance units to socialize, attain skills, and get referrals\n
\n\u2022 For emergency support, call 988 or visit nyc.gov/988." + } + }, + { + "service_id": "6b073a5b-b06d-460e-9f4a-5d75ba6a9322", + "location_id": "312adc61-30ef-4216-8b60-91a9835cf977", + "payload": { + "description": "Services include:\n\u2022 Help with financial aid and scholarships\n\u2022 ESL, GED, and adult education programs\n\u2022 Citizenship preparation classes\n\u2022 School supply and backpack distribution\n\u2022
\n\u2022
\n\u2022 Services are only available for current employees of the Backstretch village in the New York thoroughbred horse racing industry." + } + }, + { + "service_id": "6b54b0ba-1fa6-4172-8cfb-00ea685ade7b", + "location_id": "f50959fb-4143-4e2c-86f0-b75c15f7eedd", + "payload": { + "description": "Services include:\n\u2022 Benefits Advisement\n\u2022 Evaluation and Assessment\n\u2022 Job Development and Placement\n\u2022 Off-site and On-site Job Coaching\n\u2022 One-on-one and Group Job Counseling\n\u2022 Ticket to Work\n\u2022 Work Advocate" + } + }, + { + "service_id": "6b7de9d7-206c-42ed-a566-b80d55956261", + "location_id": "ede4ddfe-cdd3-405c-8278-147c778ae01c", + "payload": { + "description": "\u2022 Free clothing for everybody in the community\n\u2022 Gently used business attire, casual clothes, shoes, and accessories for men, women, and children\n\u2022 Contact brooklyncloset@probation.nyc.gov with any questions" + } + }, + { + "service_id": "6dce5382-ac97-438c-80de-ad4a49b5b377", + "location_id": "0af52dea-e769-492e-992b-8c22aa84bb11", + "payload": { + "description": "\u2022 If you, as a parent, are under investigation for child abuse or neglect by ACS and live in Manhattan South of 96th Street, the Bronx, or Queens, you may call to enroll in advocacy, case management, and navigation of the process.\n\u2022 The judge might assign you advocates from the Family Representation Center if you are already in family court proceedings. Only Article 10 cases are accepted\n\u2022 If there is a conflict of interest, you may contact this agency even if you are from another borough. If you are from Upper Manhattan, you should contact Neighborhood Defender Services; if you live in the Bronx, you can try Bronx Defenders; if you live in Brooklyn, try Brooklyn Defenders" + } + }, + { + "service_id": "6dd67d64-466b-42d2-931c-6ea88b2ff104", + "location_id": "7ce33508-e033-49cf-8e50-6edeb2d36709", + "payload": { + "description": "Services include:\n\u2022 Dental Care\n\u2022 Eye Care\n\u2022 Gender-Affirming Care\n\u2022 GYN\n\u2022 HIV/AIDS Prevention and Care\n\u2022 Opioid Addiction Treatment\n\u2022 Pediatrics\n\u2022 Primary Care\n\u2022 Sexual and Reproductive Health\n\u2022 Specialty Care" + } + }, + { + "service_id": "6dda9f57-5d32-4220-8448-940eb22638c9", + "location_id": "515a3940-3732-43e1-a939-fd5d859173e3", + "payload": { + "description": "\u2022 Services include\n\u2022 Citizenship/naturalization/Green Card applications\n\u2022 Family-based petitions\n\u2022 Violence Against Woman Act (VAWA) petitions\n\u2022 T and U visas\n\u2022 Special Immigrant Juvenile Status (SIJS)\n\u2022 Temporary Protected Status (TPS)\n\u2022 Representation in immigration court." + } + }, + { + "service_id": "6de1465c-5840-4982-bb50-d238789e2fbc", + "location_id": "35dbdb4e-ad52-4c52-aa57-047048e30ceb", + "payload": { + "description": "Treatment of emotional problems and personal crises by working with family members" + } + }, + { + "service_id": "6de486a0-924e-4394-b74b-d65315d8d863", + "location_id": "1c0084b5-b5cc-4950-a924-db866b674ea7", + "payload": { + "description": "Services include:\n\u2022 Cancer Care\n\u2022 Dermatology\n\u2022 Gynecology\n\u2022 Hospice Care\n\u2022 Optometry\n\u2022 Pharmacy\n\u2022 Podiatry\n\u2022 Primary\n\u2022 Specialty Care\n\u2022 Rehabilitation" + } + }, + { + "service_id": "6de6e187-f09e-4994-8563-4d13d2386de3", + "location_id": "a4ab009c-8fab-4187-b10f-e31111b29c6c", + "payload": { + "description": "Food stamps and other assistance available to low-income NYC residents, immigration status requirements apply." + } + }, + { + "service_id": "6df1386d-cf5e-4210-a4ce-b4771524f178", + "location_id": "5a684cc5-7624-4f5c-b0e1-1178b880728f", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Family Counseling\n\u2022 Individual Therapy\n\u2022 Medication Management" + } + }, + { + "service_id": "6dfedecf-9313-4b45-b970-4ffb0a41ed54", + "location_id": "0e5a7b8e-0975-4873-aaae-9647e9a805ee", + "payload": { + "description": "\u2022 Domestic violence counseling and maternal-infant health workshops with incentives like car seats and diapers \u2014 visit them on Thursdays and Fridays\n\u2022 ESL classes for adults, walk-in for an assessment\n\u2022 Immigration services with affordable office fees. Government fees for applications can be waived based on your income. Walk in on Tuesdays and Fridays or call (929) 474-9422 or the main number for an appointment. For completely free services (on a first-come, first-served basis), visit the Brooklyn location's page\n\u2022 Citizenship classes questions distribution \u2014 just walk in\n\u2022 Insurance enrollment \u2014 just walk in (to expedite the process, call ahead to make sure you have required documents like immigration and income paperwork)" + } + }, + { + "service_id": "6ee383e9-cf01-47d3-b076-54e93f1a53c8", + "location_id": "cfca724b-63f9-4a4c-8064-4ea248436667", + "payload": { + "description": "Services include:\n\u2022 Abstinence and Harm Reduction Options\n\u2022 Anger Management\n\u2022 DUI Assessments\n\u2022 Individual and Group Counseling\n\u2022 Medication- Assisted Treatment\n\u2022 Parenting Services", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call to schedule an intake or forward a referral package for a client" + } + } + }, + { + "service_id": "6f8139e6-05ca-40a6-a576-68d95937e9ee", + "location_id": "a1067d64-2c3d-4fdf-a250-7a7da1dc7c8f", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 GYN\n\u2022 Health Homes\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Pediatrics\n\u2022 Pharmacy\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Veteran Health" + } + }, + { + "service_id": "6fc05ae8-b6ff-4cb8-b676-29cc9ef4e80f", + "location_id": "a760118b-7ff1-4ea4-890b-caa1094965b7", + "payload": { + "description": "\u2022 Pieces of Training (OSHA, Food Handler, etc.)\n\u2022 Employment\n\u2022 Education\n\u2022 Tax Filing (during tax season)\n\u2022 Mental Health\n\u2022 Financial Coaching" + } + }, + { + "service_id": "70078dd2-7757-4b63-8f14-0ed438539d7e", + "location_id": "e0e21b33-e7f9-4cf3-a290-eb6035a9a64c", + "payload": { + "description": "\u2022 Art and Music Therapy\n\u2022 Building Blocks: Nurturing Parent-Child Bonding Program\n\u2022 Comprehensive Psychiatric Evaluations\n\u2022 Complex Trauma Assessments\n\u2022 Individual, Group, and Family Psychotherapy\n\u2022 MST: Multisystemic Therapy\n\u2022 On-site and At-Home Care Management\n\u2022 Psychological and Neurodevelopmental Assessments and Consultations\n\u2022 Psychotropic Medication Management" + } + }, + { + "service_id": "701eb952-477e-448e-8ef2-010244fbb929", + "location_id": "a83f6d26-2e8c-4cbb-8b13-5f8800e3116d", + "payload": { + "description": "Member services:\n\u2022 Lunch daily\n\u2022 Vocational Training\n\u2022 Health Awareness\n\u2022 Education and Transitional Employment Assistance\n\u2022 Volunteering Opportunities, Work-Ordered Day, in Media and Culinary Units (for socialization and skill-building)" + } + }, + { + "service_id": "70b2733c-e788-43af-aca2-5efbf3fcc034", + "location_id": "833ca1bd-fb91-4308-b3e4-5feffc077731", + "payload": { + "description": "Services include:\n\u2022 Dermatology\n\u2022 Endocrinology\n\u2022 GYN\n\u2022 Neurology\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Psychiatry\n\u2022 Psychology" + } + }, + { + "service_id": "70e18baa-f4a1-405c-b93e-9ed630f9a7e4", + "location_id": "688c0cbf-b8fa-4fb0-9138-9a9bfc00039a", + "payload": { + "description": "Clients may still receive their mail at POTS. Please call (718) 220-4892 x101 to obtain your mail and leave a voicemail with your name and planned pick-up time. You have to check your mail at least once a week. Any mail not picked up within 30 days is returned to the sender." + } + }, + { + "service_id": "710ef03f-30a2-45ff-aa80-ebda37937568", + "location_id": "6b1c483b-3303-4efb-8837-32b8442c07ec", + "payload": { + "description": "Services include:\n\u2022 Adolescent Program\n\u2022 Co-Occurring Disorders Program\n\u2022 Criminal Justice Services\n\u2022 Day, Evening and Weekend Programming\n\u2022 DMV Evaluations and treatment\n\u2022 Drug Testing and Monitoring\n\u2022 Early Recovery Skills\n\u2022 Individual and Family Counseling\n\u2022 Parenting Program\n\u2022 Psychiatric Evaluation and Medication Management\n\u2022 Relapse Prevention\n\u2022 Suboxone/Vivitrol/Methadone Program" + } + }, + { + "service_id": "71123fe7-ff6f-4a2f-90b9-dee1ae81c9c7", + "location_id": "e72b0af1-3854-40de-9518-65d1fae7e85b", + "payload": { + "description": "Services include:\n\u2022 Family Services\n\u2022 Individual and Group Counseling\n\u2022 Methadone and Suboxone Maintenance\n\u2022 Telehealth\n\u2022 Therapeutic Services", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Call at the hours above to schedule an intake or to forward a referral package\n\u2022 Medicaid, Medicare, and most major medical insurance plans are accepted, including those from New York State Medicaid Managed Care providers" + } + } + }, + { + "service_id": "7136593b-f615-4eaf-b4d7-a970debc2660", + "location_id": "9ae0b313-4865-404d-8a46-ccace9a7f0eb", + "payload": { + "description": "Services include:\n\u2022 Individual Counseling\n\u2022 Medication Management" + } + }, + { + "service_id": "7160bafb-119e-48e8-8648-932da5dec9cf", + "location_id": "fe3051b8-09a1-436f-8516-97f4a8ebb9e5", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "People on probation or parole are referred to DHS intake locations." + } + } + }, + { + "service_id": "71ae19b2-b061-46af-b230-5e8482d325a7", + "location_id": "7f7671f7-0183-43d4-9cf8-18fe018d5162", + "payload": { + "description": "Up to one year of community-based supervision as an Alternative to Placement (ATP) for juvenile justice-involved youth. This program helps youth with pending juvenile delinquency petitions in Family Court live at home, remain in school, abide by court mandates, and stay out of further trouble." + } + }, + { + "service_id": "721cf020-5f95-4d76-9076-e74f5437060d", + "location_id": "4733b57b-c093-4a19-9a2f-57d3fa9ed3bb", + "payload": { + "description": "\u2022 Child Support and Divorce\n\u2022 Financial Freedom Project\n\u2022 Trafficking Survivors Resiliency Project\n\u2022 Immigrant Survivor Employment Access Project" + } + }, + { + "service_id": "72db0372-65d6-46f3-9b23-af06de7ca870", + "location_id": "3436c38f-f0dd-433f-ae2a-bb22f06dbf14", + "payload": { + "description": "Services include:\n\u2022 Academics\n\u2022 Community Skills\n\u2022 Occupational Therapy\n\u2022 Play and Leisure\n\u2022 Vocational" + } + }, + { + "service_id": "73e08fef-d6da-47b5-8a97-5ab90dc09ed2", + "location_id": "1c8c80b3-daa1-48a8-abd6-c48c04429274", + "payload": { + "description": "\u2022 Food\n\u2022 Pick up and drop off to shelters/drop-in centers or Uber gift cards/MetroCards\n\u2022 Toiletries\n\u2022 Clothes/shoes" + } + }, + { + "service_id": "740c98bf-5d91-40d7-bf77-eb97c1355f81", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "description": "Services include:\n\u2022 Addiction Treatment\n\u2022 Group Therapy\n\u2022 Individual Counseling\n\u2022 Smoking Cessation", + "eventRelatedInfo": { + "event": "COVID19", + "information": "You can call (718) 584-9000 to schedule an appointment." + } + } + }, + { + "service_id": "74356f0f-54fa-4e7f-ac80-8670da08b61d", + "location_id": "b4ff3925-ac14-41e4-b0d7-6c71be113ef0", + "payload": { + "description": "Services include:\n\u2022 Diagnostic Center\n\u2022 HIV Testing and Treatment\n\u2022 Pharmacy\n\u2022 Primary Care\n\u2022 STI Clinic" + } + }, + { + "service_id": "74476c73-704b-4cae-9b8a-89a6b9b1b9cc", + "location_id": "2c02ba83-77e4-4244-a09d-9c1c54906480", + "payload": { + "description": "Services include:\n\u2022 Assistance with transportation to appointments\n\u2022 Individual and Group support\n\u2022 Medical Case Management\n\u2022 PEP/ PrEP connections and care for HIV-negative partners" + } + }, + { + "service_id": "747d0135-0f7a-4603-a786-d2190109c696", + "location_id": "d3ed1194-9c4b-4ad1-8686-8eb54221bbbc", + "payload": { + "description": "Year-round enrollment at the Manhattan Educational Opportunity Center (MEOC) in Harlem for people impacted by the justice system.
Services include:\n\u2022 High School Equivalency diploma earning\n\u2022 Help with college applications\n\u2022 Workforce training\n\u2022 Case management for housing, employment, and public benefits" + } + }, + { + "service_id": "74831f77-1294-41aa-a867-20555b5c697d", + "location_id": "9d96aac3-96bb-4260-a3ad-d62fb65f9ec9", + "payload": { + "description": "Services include:\n\u2022 Assistance with Housing Applications\n\u2022 Benefit Assistance\n\u2022 Free Tax Preparation\n\u2022 Health Insurance Enrollment\n\u2022 Legal/Immigration Referrals\n\u2022 Senior Services" + } + }, + { + "service_id": "74f3cda6-7fc5-4e6c-8a13-361b85ca71ad", + "location_id": "d0b49a8c-c83d-46ec-b327-6b6ffeb05f81", + "payload": { + "description": "Services include:\n\u2022 Adult and Family Medicine\n\u2022 Behavioral Health\n\u2022 Dental\n\u2022 Infectious Disease\n\u2022 Insurance Enrollment\n\u2022 OB/GYN\n\u2022 On-Site Lab\n\u2022 On-Site Pharmacy\n\u2022 Pediatrics\n\u2022 Wellness and Social Services" + } + }, + { + "service_id": "7517f04b-27f0-4d95-a1dd-b59800bc742a", + "location_id": "48cf916d-214d-4aa1-8d40-bbbe84e18384", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Dental\n\u2022 GYN\n\u2022 Health Education\n\u2022 Primary Care\n\u2022 Urgent Care" + } + }, + { + "service_id": "75261740-cc89-4142-9d27-3c5f47d5ddba", + "location_id": "d62ca641-07cf-406e-82f4-b7801d21da8a", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call ahead for an appointment. For more questions, feel free to email at teenhealthcareorg@gmail.com" + } + } + }, + { + "service_id": "7533e638-e035-4866-a1b8-c9ae4a362359", + "location_id": "34a47a4d-7e7f-4923-8e96-e131c2abf4ae", + "payload": { + "description": "Services include:\n\u2022 Adult Medicine\n\u2022 Center for Respiratory and Specialty Medicine\n\u2022 Dental\n\u2022 Gastroenterology\n\u2022 Gynecology\n\u2022 Orthopedics\n\u2022 Radiology\n\u2022 Surgery Center" + } + }, + { + "service_id": "7534fc66-cc6c-4f95-8009-97485a7f4ab9", + "location_id": "2b031044-63cf-4bdd-8bc7-015b035e3e79", + "payload": { + "description": "Services include:\n\u2022 Diabetes Care\n\u2022 Free Clinic for the Uninsured\n\u2022 Healthcare for Teens\n\u2022 HIV/AIDS Services\n\u2022 Insurance Enrollment\n\u2022 OB-GYN\n\u2022 Primary Care" + } + }, + { + "service_id": "75dba88e-6683-4ab0-93b0-9b59fa6456eb", + "location_id": "d2598e8c-fadc-4d37-9592-5c0f16719344", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 NYS residents can call to make an appointment for a free consultation. NJ residents can see their NJ location in Palisades Park for Wednesday's immigration legal clinic (by appointment, call\n\u2022 (201) 446-5268)." + } + } + }, + { + "service_id": "75df2740-0876-4f92-aa8e-e9b82b4d0592", + "location_id": "ac70737b-3d9d-4aff-9aba-710d6289da12", + "payload": { + "description": "\u2022 Third Thursday of every month. Mental well-being sessions for youth.\n\u2022 New topics each month, such as emotional wellness, anger management, and stress awareness.\n
\n
\n\u2022 Sessions include:\n\u2022 panel discussions\n\u2022 workshops\n\u2022 Refreshments provided. Social activities available." + } + }, + { + "service_id": "760198e6-d78f-4475-ae90-971d40d2553d", + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "description": "Services include:\n\u2022 College Prep for Seniors\n\u2022 Junior Year/SAT Prep\n\u2022 Sophmore Skills/PSAT" + } + }, + { + "service_id": "76203e71-a3d1-469b-935b-848804fe2b49", + "location_id": "2abdbe81-4d47-419f-a339-ca5dc8ea4b82", + "payload": { + "description": "Services include:\n\u2022 Adult Medicine\n\u2022 Dentistry\n\u2022 Nutrition\n\u2022 OB/GYN\n\u2022 Social Services\n\u2022 Telehealth" + } + }, + { + "service_id": "76ba61f0-df72-4473-ad62-eab026f9dbe1", + "location_id": "a4e1ea35-ff1d-4378-8da3-b608cc382923", + "payload": { + "description": "Vouchers for childcare for 0-13-year-olds who are undocumented and live in NYC" + } + }, + { + "service_id": "76d94333-002d-4fb3-af9a-c5108e07f9da", + "location_id": "0a9d4657-b95a-4f40-8206-00cb216547c1", + "payload": { + "description": "Services include:\n\u2022 Co-occurring Disorder Treatment\n\u2022 Group and Individual Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Personalized Recovery Oriented Services (PROS)" + } + }, + { + "service_id": "7709ec1e-387f-4ac5-8a5e-a0693309593b", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "description": "Services include:\n\u2022 Academic Tutoring\n\u2022 Clothing\n\u2022 Computer Access\n\u2022 Job Readiness Training and Placement\n\u2022 Life Skills Training" + } + }, + { + "service_id": "770e0538-a64c-4936-a0a2-b67c2646bd57", + "location_id": "c8dbf9dd-4246-49a4-ae70-86878d29bb74", + "payload": { + "description": "\u2022 SYEP - summer youth employment minimum wage part-time opportunities for New Yorkers 16-25 years old offered by DYCD. Legal ability to work is required. See more at application.nycsyep.com/ApplicationPages/LFLEligibility\n\u2022 Senior Citizen Rent Increase Exemption (?SCRIE), Tenant workshops and organizing (tenant/block association), Housing Connect lotteries, Affordable housing\n\u2022 Job development (resume building, career fairs, and mock interviews)\n\u2022 Injury counseling", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please call the extension 223 to set up an appointment. To view opportunities, visit their Facebook @bridgestreetdev and Instagram @bsdcorp, as their official website is not updated." + } + } + }, + { + "service_id": "772b8c59-1cd2-40dd-ae7f-ad3ef173d0f1", + "location_id": "831ec192-b5aa-4ca4-b42e-63dca3ef4268", + "payload": { + "description": "Services include:\n\u2022 Annual Check-Ups\n\u2022 Chronic Disease Control\n\u2022 Dental\n\u2022 Immunizations\n\u2022 Pediatrics\n\u2022 Preventive Care\n\u2022 Primary Care" + } + }, + { + "service_id": "773320c6-7bb3-4e65-aafc-1636917cc263", + "location_id": "19665bd7-5785-4b15-88c3-35056be95ba5", + "payload": { + "description": "Services include:\n\u2022 Certificate of Good Conduct\n\u2022 Criminal Record Discrimination\n\u2022 Filing of Lawsuits for Discrimination\n\u2022 Record of Arrest and Prosecution (Rap Sheet)\n\u2022 Referrals for Marijuana Conviction Expungements" + } + }, + { + "service_id": "77753216-e358-49ec-ac7a-84683f761a5d", + "location_id": "3046cdb2-042a-416e-ba31-b229cc94fc54", + "payload": { + "description": "A residential substance use treatment program for women struggling with chemical dependency issues. It is also an alternative to incarceration. The length of stay is 9-12 months" + } + }, + { + "service_id": "77de8d23-3e41-45da-9c3d-e860d0075edc", + "location_id": "e9b58317-815a-4875-a6bb-dbd2cfbbfc66", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 The Community Closet distributes items from 3 PM- 4 PM\n\u2022 Please enter Laughlin Hall via the courtyard by walking to Barrow Street and entering halfway into the block" + } + } + }, + { + "service_id": "77dee0fc-0a21-4ac2-8973-07d386eaee4b", + "location_id": "9df2dfa1-6cd8-47e5-b597-01aa517826f9", + "payload": { + "description": "\u2022 Some asylum pro se (self-representation applications) and the Ukrainian Parolee Program\n\u2022 Special Immigrant Juvenile Status (SIJS)\n\u2022 Adjustment of Status (Green Card)\n\u2022 Citizenship Applications\n\u2022 Fingerprinting" + } + }, + { + "service_id": "780a0c15-92c4-4478-bb29-89816cc55023", + "location_id": "53646062-6c3d-4026-a1f5-41e89b8abf47", + "payload": { + "description": "Services include:\n\u2022 Family Support Services\n\u2022 Healthy Homes\n\u2022 Immigrant Services\n\u2022 K-5 Enrichment\n\u2022 Mental Health Services\n\u2022 Parents and Young Children\n\u2022 The Sharing Place Thrift Store" + } + }, + { + "service_id": "7813c241-f705-4b97-b4c8-90438b2804e3", + "location_id": "5981cfd9-d813-44eb-ab8f-f65bd5a0b072", + "payload": { + "description": "\u2022 Homework help and required physical, music, and STEM activities\n\u2022 Summer rising summer camp" + } + }, + { + "service_id": "7866f966-3b43-4e11-850f-f24a8e44a4de", + "location_id": "aa79f5ad-d354-4368-8255-0c71dbf686c9", + "payload": { + "description": "\u2022 Overdose Prevention and Reversal\n\u2022 Prevention Education\n\u2022 Rapid Hep C Testing\n\u2022 Rapid HIV Testing\n\u2022 Syringe Exchange" + } + }, + { + "service_id": "78bb3905-a110-429c-aa0b-7efa63477d3f", + "location_id": "1eb590ab-9251-4f3d-84ab-1ee93bbda99f", + "payload": { + "description": "\u2022 Adult literacy, certifications, and job readiness.\n\u2022 For educational programs, register here" + } + }, + { + "service_id": "7911fcae-cab5-4a07-88b3-e4005df58c78", + "location_id": "b3de0ec3-23c3-4f3e-9ac9-d97acc21178e", + "payload": { + "description": "\u2022 Senior programming activities and case management and Medicaid and Medicare enrollment for New Yorkers over 65\n\u2022 Career Services for adult residents of zip codes 11223, 11229, and 11223:\n
 \u2014 Resume building\n
 \u2014 Computer classes\n\u2022 Health counseling for everyone over Zoom or in-person" + } + }, + { + "service_id": "79552555-3d4f-4b5c-b4e5-d7d973d4e2f0", + "location_id": "84f13826-8ccd-4afe-ba55-2a927262421c", + "payload": { + "description": "Services include:\n\u2022 Adolescent and Primary Care\n\u2022 Gender-Affirming Surgeries\n\u2022 HIV/STI Testing and Treatment\n\u2022 Hormone Therapy\n\u2022 OB/GYN\n\u2022 Preventative Care\n\u2022 Psychiatry and Social Work\n\u2022 Specialty Referrals" + } + }, + { + "service_id": "7a0aed74-1558-44db-b24a-8e9941909726", + "location_id": "2208860c-f8c5-4198-87ed-6d2bf95e4e1c", + "payload": { + "description": "Services include:\n\u2022 Free Tax Prep Referrals and housing counseling\n\u2022 Health Insurance Enrollment, substance use, and mental health referrals\n\u2022 Rental Assistance (SCRIE, DRIE, and more)\n\u2022 SNAP and WIC\n\u2022 Access-A-Ride\n\u2022 Referrals for legal and immigration matters\n\u2022 Child Care\n\u2022 ESL Classes\n\u2022 Job Training and Resume Assistance\n\u2022 Resources for Special Needs" + } + }, + { + "service_id": "7a308e05-8932-4156-af34-1b081c428472", + "location_id": "fe0f768d-295d-4f6e-8766-ffc12e73943d", + "payload": { + "description": "Services include:\n\u2022 After-care Referrals\n\u2022 Benefits Enrollment\n\u2022 Educational and Vocational Services\n\u2022 Individual and Group Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Primary Care Referrals", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 This facility is for female-identified individuals\n\u2022 The duration of Residential Treatment can be 6-12 months" + } + } + }, + { + "service_id": "7a77e04a-4a5d-40c5-8c84-a39373ec9e6a", + "location_id": "64e74071-a7dd-4554-9b7c-85f221073d76", + "payload": { + "description": "Services include:\n\u2022 Adult Inpatient Unit Evaluation and Referral\n\u2022 Child and Adolescent Inpatient Unit\n\u2022 Comprehensive Psychiatric Emergency Program\n\u2022 Developmental Disability Program\n\u2022 Gamblers Treatment Program\n\u2022 Mobile Crisis Outreach Service\n\u2022 Psychiatric Disorder Program\n\u2022 Substance Use Program" + } + }, + { + "service_id": "7aa2ec49-1227-476c-b664-1d585a298791", + "location_id": "12ef58c7-c1c8-4f50-9a2c-716be4f25fc0", + "payload": { + "description": "Services include:\n\u2022 Hot and Cold Weather Kits\n\u2022 Hygiene Kits\n\u2022 Menstruation Kits" + } + }, + { + "service_id": "7b9e57ba-572c-43ef-8c9f-f58e981b1659", + "location_id": "0bf0af17-e1b7-4601-8cb0-86f5a1a51278", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Dental\n\u2022 GYN\n\u2022 HIV care\n\u2022 Infectious Disease\n\u2022 Nutrition\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Specialty Care:\n\u2022 \u2014 Eye Van, stops here on 2nd and 4th Thursday 9 AM - 5 PM, see calendar at chnnyc.org/medical-mobile-van\n\u2022 Suboxone maintenance" + } + }, + { + "service_id": "7c578450-e939-4187-92c8-2d621aef5e57", + "location_id": "92da6003-ba28-47c8-bf77-54f609ed86b6", + "payload": { + "description": "The Pantry operates every Friday from 10:00 AM through 11:00 AM. Clients receive enough food to feed a family of four for three days." + } + }, + { + "service_id": "7ca4d3a4-b793-482d-86da-6875e1b17321", + "location_id": "533884a5-0751-40b5-9823-205eeee7febc", + "payload": { + "description": "Services include:\n\u2022 Arts and Crafts\n\u2022 Case Management\n\u2022 Computer Classes\n\u2022 Daily Recreation\n\u2022 Education\n\u2022 Field Trips\n\u2022 Health Promotion Activities\n\u2022 Hot Lunch\n\u2022 Supportive Counseling\n\u2022 Yoga" + } + }, + { + "service_id": "7cb7e243-ea23-4d1b-b9c9-18fc013c9de4", + "location_id": "5cf85c94-0989-434a-a1ca-bcccfbccedb2", + "payload": { + "description": "Free legal services in any language:\n\u2022 Legal advice on issues of divorce, custody, visitation, child support, spousal support\n\u2022 Advice and drafting for Order of Protection\n\u2022 Brief services, such as drafting papers and helping prepare court documents, on a limited basis\n\u2022 Representation for family and domestic violence-related immigration law matters on a limited basis\n\u2022 Extensive personalized safety planning\n\u2022 Referrals include but are not limited to: counseling, shelter services, housing resources, tax services, health services, and other support services" + } + }, + { + "service_id": "7cb85270-b822-497d-bde1-1fc53246520c", + "location_id": "f69c5067-736c-421e-a4b6-aa8688ac7d9d", + "payload": { + "description": "\u2022 ATTAIN Lab: Rosetta Stone language courses, GED, and computer literacy for any NYS resident over 17; see calendar at bkl.sunyattain.org/calendar and apply here\n\u2022 Brooklyn EOC, free courses for NYS adults (17+ if they have a high school diploma) meeting income guidelines and other requirements like having no more than 33 college credits except for ESL or living in NYS for more than a year, apply online here and then attend an enrollment session:\n
\u2014 College Connections Initiative (CCI), email munchez-jacksons@beoc.cuny.edu and collegeconnections@beoc.cuny.edu\n
\u2014 Medical Assisting, Medical Billing and Coding, Office Administrative Professional, OSHA Certification, Patient Care Technician, Security Guard Training, Tourism and Hospitality Operations, email admissions@beoc.cuny.edu if you have any questions and to receive a flyer" + } + }, + { + "service_id": "7ccf7c8e-d8b9-49ed-b2fc-456707e0a120", + "location_id": "ceececc1-d4fc-4f39-9668-e36bff5b1fcc", + "payload": { + "description": "Low-income New Yorkers can get free assistance in the following areas:\n\u2022 Children in Family Court and Foster Care Visit Legalaid.org for numbers of Juvenile Rights Trial Offices in your borough.\n\u2022 Consumer Debt, Bankruptcy, and Taxes call (212) 417-3839 for tax matters or 311 for more resources or Visit NYC.gov\n\u2022 Family, Domestic Violence, and Divorce call the main number Monday, Wednesday, or Friday, 9 AM \u2013 11 AM\n\u2022 Benefits and Employment, call the helpline at (888) 663-6880 Monday through Friday from 10:00 AM to 3:00 PM\n\u2022 Health, Disability, and HIV\n\u2022 Housing, Foreclosure and Homelessness\n\u2022 Immigration\n\u2022 Juvenile Delinquency, and Detention." + } + }, + { + "service_id": "7cedfd5d-284f-48e0-b262-ec16d2505c5d", + "location_id": "eb415fcd-8766-45bb-ab47-221710292c09", + "payload": { + "description": "\u2022 Asylum Pro Se online resources. Please visit nylag.org/immigration/pro-se-plus-project for more locations, email pspp@nylag.org or leave a voice message at (212) 514-4274, a callback is not guaranteed. Immigrant protection unit also can be reached at ipuintake@nylag.org. Ukrainian citizens who recently arrived to the US may be eligible for Temporary Protected Status and can request assistance via UkraineTPS@nylag.org or (212) 659-6187\n\u2022 LGBTQIA2S+ civil matters unit. Sexual orientation discrimination, Asylum, name and gender marker change and other non-criminal cases.\n\u2022 Many units have different requirements but income guidelines are similar: the services are available to NYC residents or people with Cases based in NYC earning under $30K a year per person in the household. For intake, call (212) 659-6161\n\u2022 Medicaid, Medicare, and Home Care Services Issues Affecting People over 65 and People with Disabilities \u2014 Evelyn Frank Legal Resources Program (EFLRP). See details at nylag.org/evelyn-frank-legal-resources, call them at (212) 613-7310 on Mondays 10:00 AM \u2013 2:00 PM, or email them at EFLRP@nylag.org\n\u2022 Mediation for divorces via the main number, except if there is: action pending in court, present or past domestic violence, current drug/alcohol abuse\n\u2022 Legal Clinic for Pro Se Litigants in Federal Court in New York City or Westchester for civil cases involving civil rights, employment discrimination, labor law, social security benefits, foreclosure, and tax, complete intake at tinyurl.ocm/nylag-prose-oi\n\u2022 Free legal services for patients of certain hospitals, see the list and directions at legalhealth.org/find-us. Cancer Patient Advocacy can be reached at (212) 946-0357\n\u2022 Free financial counseling (no legal issues) for adults by NYLAG and other organizations across the city, call 311 or visit a866-dcwpwb.nyc.gov/talkmoney/book-appointment\n\u2022 Public Benefits, Social Security and SSI Disability Appeals, Homeless Shelter Access, and Healthcare via the main number, Monday, Wednesday, and Thursday 9:00 AM \u2013 3:00 PM\n\u2022 Public Housing Legal Issues, call (212) 946-0353 or email phreferrals@nylag.org\n\u2022 Special Education Issues: call the main number, choose the option for a new case intake, then Special Education, and leave a voice message\n\u2022 Tenant lawyer: call (929) 356-9582 Monday \u2013 Friday 7:00 AM \u2013 1:00 PM\n\u2022 Veterans' Legal Issues: call (212) 946-0343 Monday \u2013 Friday 9:00 AM \u2013 5:00 PM or email vethelp@nylag.org\n\u2022 Workers' Rights are available via the main number, except for union issues (labor law), workers' compensation, disability insurance, tax issues related to employment, pensions, most severance issues, and bankruptcy issues\n\u2022 Mobile Legal Van: make an appointment at nylag.org/van\n\u2022 Domestic and Sexual Violence Support, via main number or this intake form\n\u2022 Independent Consumer Advocacy Network (ICAN) starting September 3, 2024, on Mondays 10:00 AM \u2013 2:00 PM, see other locations Across NYS at icannys.org/meet-in-person/agency-finder\n\u2022 Holocaust compensation, call (212) 613-7306" + } + }, + { + "service_id": "7d057cad-b099-47b7-bef9-34b0a8bb598e", + "location_id": "ad104e38-048e-43b0-b4b7-ba2cd2f7c18c", + "payload": { + "description": "\u2022 Comprehensive medical and mental support for politically persecuted people and forensic and psychological affidavits for asylum seekers. Support groups and events are available for clients.\n\u2022 You do not have to be an asylum seeker to receive support here. The first step is an eligibility interview with the center; an interpreter is provided as needed." + } + }, + { + "service_id": "7d23891d-bc0e-475a-9ef4-a14a80573349", + "location_id": "12eb3d00-10bb-47aa-ad3f-688f9117ddd9", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Individual Counseling\n\u2022 Medication Management\n\u2022 Mental Health Services\n\u2022 Medications for Opioid Use Disorder\n\u2022 Peer Advocacy\n\u2022 Relapse Prevention" + } + }, + { + "service_id": "7db33418-a86e-414e-bdb5-105b0a1065f7", + "location_id": "6d858ff2-2e40-40f1-b86d-167f0810cbcf", + "payload": { + "description": "Groups with linkage to resources are segregated by gender:\n\u2022 Female-identifying groups. New participants can walk in Monday through Friday from 11:00 AM to 12:00 PM, email womensprogram@alliance.nyc, or contact Markeyda at markeyda@alliance.nyc or (646) 372-0494 to enroll.\n\u2022 Male-identifying groups. Call the front desk numbat extension 301 to enroll.\n\u2022 Breakfast and lunch are offered to participants of all genders" + } + }, + { + "service_id": "7db3c1d3-c2ba-43d6-8828-f53a307277df", + "location_id": "b6751aa1-1e9c-47ac-b153-b17a7cf5d2a2", + "payload": { + "description": "Services include:\n\u2022 Doula Services\n\u2022 Family Peer Support\n\u2022 Health Insurance Enrollment\n\u2022 Homebase Prevention\n\u2022 Maternal Infant Care Initiative\n\u2022 Youth Peer Advocates" + } + }, + { + "service_id": "7df1809c-d0dd-474b-b3d4-83e0cbd9786e", + "location_id": "352a2771-67b5-4ecf-8cd1-e4931cbee67b", + "payload": { + "description": "\u2022 1. Job Training: They offer training programs tailored to various industries, including healthcare and education. The training programs provide individuals with the necessary skills and knowledge to secure employment.\n
\n
\n\u2022 2. Career Counseling: Career counselors help individuals explore their career options, develop job search strategies, and navigate the employment landscape. They provide guidance and support throughout the entire employment journey." + } + }, + { + "service_id": "7e208660-e932-4c5f-9bd2-bacedb3a3d3d", + "location_id": "2fb7b97d-f310-4d72-aebf-532e8e636688", + "payload": { + "description": "Primary Care for all ages" + } + }, + { + "service_id": "7e448614-e3ea-4279-95ea-a15f38ebecf7", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "description": "\u2022 STEP TOGETHER provides trauma-informed care, harm reduction, and preventive services such as support groups, individual counseling, and HIV testing to all men of color who have sex with men.\n\u2022 HOME AND COMMUNITY-BASED SERVICES (HCBS) helps individuals 21+ with Medicaid to get Psychosocial Rehabilitation, Community Psychiatric Service Treatment, Peer Empowerment, and Habilitation.\n\u2022 ASSERTIVE COMMUNITY TEAM (ACT) is for adults with Severe and Persistent Mental Health Diagnoses.\n\u2022 Youth and family programming for individuals 12-21 years old living with HIV and their families" + } + }, + { + "service_id": "7eb0cfd4-cf17-4304-9d99-f80abcf27761", + "location_id": "ec90f131-1fd1-47f3-b4b3-4921a061e9b4", + "payload": { + "description": "Services include:\n\u2022 Assessments\n\u2022 Couples and Family Therapy\n\u2022 Individual and Group Therapy\n\u2022 Medical and Wellness Assessment\n\u2022 MOUD\n\u2022 Psychiatric Consultation\n\u2022 Relapse Prevention Groups", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 New intakes interested in the FAIR program can call (646) 992-3357 and press option 5\n\u2022 The entrance is at West 165th Street and the corner of St. Nicholas" + } + } + }, + { + "service_id": "7efa01d2-0de2-4190-8acf-0d022f1f9616", + "location_id": "312adc61-30ef-4216-8b60-91a9835cf977", + "payload": { + "description": "\u2022 Furniture available weekly.\n\u2022
\n\u2022
\n\u2022 Services are only available for current employees of the Backstretch village in the New York thoroughbred horse racing industry." + } + }, + { + "service_id": "7f0c8616-c14e-427b-a09e-810249d9abf5", + "location_id": "f47eaeac-cd59-4536-a31d-033c983a1ea1", + "payload": { + "description": "Services include:\n\u2022 Adult Medicine\n\u2022 Case Management\n\u2022 Family Planning\n\u2022 GYN\n\u2022 Health Education\n\u2022 Health Home Program\n\u2022 Health Insurance Enrollment\n\u2022 Mental Health\n\u2022 Nutrition\n\u2022 Ophthalmology\n\u2022 Optometry\n\u2022 Podiatry\n\u2022 Prenatal Care\n\u2022 Psychology\n\u2022 Social Services\n\u2022 Teen/Adolescent Program\n\u2022 W.I.C." + } + }, + { + "service_id": "7f923259-d5eb-4e7f-87ba-ad537e114ab8", + "location_id": "c29e3cd3-ca53-49aa-bdff-6c3dea0dcb94", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Bring your bag or shopping cart\n\u2022 Call (212) 864-6100 x123 if you have any questions." + } + } + }, + { + "service_id": "7fa433aa-6b3e-4bb3-bb87-9c7ff1938e8b", + "location_id": "c306521f-26e1-4318-b669-2d1a3870e76b", + "payload": { + "description": "Services include:\n\u2022 Individual/Group Counseling\n\u2022 Methadone Treatment\n\u2022 Referrals to higher level of care" + } + }, + { + "service_id": "7fc75529-edc7-4ae7-8ab5-de0d93c3c017", + "location_id": "eb71ee24-5158-4357-9698-1bcef10c36ed", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Domestic Violence Program\n\u2022 DWI/DUI Assessment\n\u2022 Family, Group, and Individual Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 NYC Substance Abuse Rehabilitation and Recovery\n\u2022 Parenting Group\n\u2022 Relapse Prevention\n\u2022 Specific Criminal Justice Track" + } + }, + { + "service_id": "7fdc7e85-731a-4729-9446-77a0eab645ec", + "location_id": "ce1819e7-2e43-4629-ae60-c16a545d1263", + "payload": { + "description": "\u2022 The Family Legal Care Tech Hubs provide access to technology and assistance to help you attend virtual Family Court hearings, download and submit Family Court forms, and navigate online court systems.\n
Family Legal Care can support your technology needs with computers, internet, phones, scanners, and printers, related to:\n\u2022 Child Support\n\u2022 Custody and Visitation\n\u2022 Guardianship\n\u2022 Paternity\n\u2022 Orders of Protection", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 No walk-ins; appointments must be made for specific locations by calling (646) 496-0046\n\u2022 or emailing techhub@familylegalcare.org\n
\n
Locations:\n\u2022 Brooklyn\n
\n\u2022 Queens\n
\n\u2022 Bronx\n
" + } + } + }, + { + "service_id": "804ef056-0a65-4924-9e7a-0dcd674db96a", + "location_id": "ad067b1f-085a-456d-a9c2-4c442d9a0014", + "payload": { + "description": "Services include:\n\u2022 Crisis Intervention\n\u2022 Medication Management\n\u2022 Psychiatry\n\u2022 Psychotherapy\n\u2022 Referrals for Inpatient/Outpatient Substance Use Services\n\u2022 Specialized Services for Children and Veterans" + } + }, + { + "service_id": "80cc05ed-4631-494b-90ab-badb0e95a049", + "location_id": "9d171514-c862-4551-955f-6b2e5856b87c", + "payload": { + "description": "Psychiatry and therapy" + } + }, + { + "service_id": "8157e301-cc82-461b-893e-48c725cd9cf6", + "location_id": "da13bdce-6def-473b-a0b2-8208d177eeee", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 GYN\n\u2022 Health Homes\n\u2022 HIV Care\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Veteran Health", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 All ages\n\u2022 Patients are welcome no matter their immigration status or ability to pay\n\u2022 Telephone translation services are available" + } + } + }, + { + "service_id": "818041b4-46b5-428f-b79b-c3db168e6a24", + "location_id": "f3553062-3058-4b97-8a35-759165134941", + "payload": { + "description": "Services include:\n\u2022 Benefits Screening\n\u2022 Computer Lab\n\u2022 Educational Workshops\n\u2022 Financial Planning\n\u2022 Resume and Job Search\n\u2022 Skill Building and Certification Courses\n\u2022 Special Interest Courses" + } + }, + { + "service_id": "819ca0e8-91f7-4206-9f73-df64fa6aec75", + "location_id": "96e91e0f-5d5c-49e2-9384-44f39a9d5ecd", + "payload": { + "description": "\u2022 Community Re-entry Assistance Network (CRAN) services are available for people released from Rikers within two years. Help obtain an ID, enroll in benefits, get a job, or get an education.\n\u2022 If you are a non-citizen, please see if you might qualify for public benefits.\n\u2022 If you are a non-citizen with a criminal record, please see if you might be at risk of deportation." + } + }, + { + "service_id": "81bee83f-a322-462d-8a46-e4f312d261bd", + "location_id": "c31cf015-ead3-4942-98aa-05569b0c1364", + "payload": { + "description": "Services include:\n\u2022 GYN\n\u2022 HIV Testing and Treatment\n\u2022 Infectious Disease Management\n\u2022 Pediatrics\n\u2022 Primary Care\n\u2022 Specialty Services", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call to schedule an appointment" + } + } + }, + { + "service_id": "82bf3515-f264-4860-a7ee-df1d53b3f6a1", + "location_id": "01c41e86-3392-4513-85db-791b03a16bfe", + "payload": { + "description": "The shelter is assigned according to how a person presents. If your gender expression does not match your appearance, a decision can be made on a case-by-case basis." + } + }, + { + "service_id": "8317abb5-3d95-4277-aa52-0830ed1e7d75", + "location_id": "c29e3cd3-ca53-49aa-bdff-6c3dea0dcb94", + "payload": { + "description": "Services include:\n\u2022 Job Application Assistance\n\u2022 Interview Preparation\n\u2022 Resume and Cover Letter Writing" + } + }, + { + "service_id": "83349cef-2681-425a-906d-909b7cb320d6", + "location_id": "8c29ca39-9f59-412a-ba1d-dd5dc601997c", + "payload": { + "description": "Services include:\n\u2022 Family Services\n\u2022 Individual and Group Counseling\n\u2022 Medications for Opioid Use Disorder (MOUD)\n\u2022 Therapeutic Services" + } + }, + { + "service_id": "835d32c0-0f0f-48ae-bac6-e201687e0351", + "location_id": "87afb9d3-d705-4c6c-be43-10ded404a5f6", + "payload": { + "description": "MRNY typically enrolls students in Citizenship classes 4 times a year and 3 times a year for English and Food Handlers:\n
Late December/early January for all classes starting in January;\n\u2022 Late March for all classes starting in April;\n\u2022 Late June/early July for Citizenship classes starting in July;\n\u2022 Mid-July/August for English and Food Handler classes starting in September and Citizenship classes starting in October." + } + }, + { + "service_id": "83e207c9-91c6-4060-8f0b-bb0b5d74af25", + "location_id": "6f262eb1-ff7b-4711-bb9e-e6ddee3ffe93", + "payload": { + "description": "Services Include:\n\u2022 Adult Day Health Care\n\u2022 Food and Nutrition Services\n\u2022 Health Homes\n\u2022 Vocational Education" + } + }, + { + "service_id": "841ceed3-b459-4d38-93aa-3533383cae8d", + "location_id": "793f3da8-8e3a-4697-b84b-3fc100d2c852", + "payload": { + "description": "\u2022 Free food for all\n\u2022 In front of 3 Hands Deli\n\u2022 Social media accounts are not active. While no information has been provided about its potential closure, keep in mind that there is no recent information about this fridge online when planning potential visits." + } + }, + { + "service_id": "84495ed5-304a-41a0-8bb1-0861e2e8a571", + "location_id": "38e98511-9b19-4793-8173-1573be319268", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Care Coordination\n\u2022 Dental\n\u2022 GYN\n\u2022 Health Insurance Enrollment\n\u2022 Pediatrics\n\u2022 Primary Care\n\u2022 WIC Program" + } + }, + { + "service_id": "84b1eba0-6db1-45b6-87d4-9c3e77cbb109", + "location_id": "cabc9e2c-5149-473f-be6a-b425afaa255f", + "payload": { + "description": "\u2022 Benefits management and assistance, workshops, and activities.\n\u2022 A social worker and a nurse are on staff." + } + }, + { + "service_id": "8505bc64-6065-4656-a2e7-f2727e722be2", + "location_id": "fb0195b2-4d90-4fb4-9749-7eb5ded0630e", + "payload": { + "description": "Clinical Services include:\n\u2022 Crisis Debriefing and Bereavement Program\n\u2022 Student Intern Program\n\u2022 Therapeutic Supervision\n\u2022 Trauma Recovery Program" + } + }, + { + "service_id": "851e0082-c6a8-49b5-89bb-2e4ba36e58da", + "location_id": "ad624d3e-d2f0-48fc-be03-19098c89310c", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Ketamine-Assisted Therapy\n\u2022 Psychopharmacology\n\u2022 Psychotherapy\n\u2022 Transcranial Magnetic Stimulation" + } + }, + { + "service_id": "8551289b-0628-40db-b8c9-2249416a11fe", + "location_id": "54ea83e9-b461-485a-9bfb-c9c7a80382b1", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Dental\n\u2022 HIV Primary Care\n\u2022 Mental Health Service\n\u2022 Pharmacy Assistance Program\n\u2022 Podiatry" + } + }, + { + "service_id": "85c81ec3-ee1e-4546-879b-5cd603d1d1fa", + "location_id": "37c9162f-1f26-43c7-9029-110eed8b6947", + "payload": { + "description": "Services include:\n\u2022 Couples and family therapy\n\u2022 Group therapy\n\u2022 Interpersonal therapy\n\u2022 Medication management\n\u2022 Parenting support\n\u2022 Play therapy\n\u2022 Psychoeducation" + } + }, + { + "service_id": "865ed66d-6e9b-418d-9ec7-fdbefa091462", + "location_id": "421d2792-3c6a-4759-8ac4-4190e810ddc5", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health Services\n\u2022 Dental\n\u2022 Health Insurance Enrollment\n\u2022 HIV Prevention and Care\n\u2022 OBGYN\n\u2022 Pediatrics\n\u2022 Pharmacy\n\u2022 Primary Care\n\u2022 Sexual and Reproductive Health\n\u2022 Substance Use Services\n\u2022 Transgender and Gender-Affirming Care" + } + }, + { + "service_id": "867ea2aa-68c4-44ae-a9c8-fc721cf9d059", + "location_id": "fbd337f8-3c86-42d9-9ef8-cc506c456a30", + "payload": { + "description": "Services include:\n\u2022 Dentistry, 2+\n\u2022 GYN, all ages\n\u2022 Mental Health, 6+\n\u2022 Neurology, 18+\n\u2022 Podiatry, all ages\n\u2022 Primary Care, 2+\n\u2022 Psychiatry, 4+", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call to schedule an appointment. If you are a Medicaid or Medicare recipient, see if you qualify for a Round-Trip MetroCard upon your visit." + } + } + }, + { + "service_id": "869630c6-e32b-4984-9c54-33e1153376cc", + "location_id": "4a584dd5-6152-4890-bfb3-335556da8b13", + "payload": { + "description": "Services include:\n\u2022 Emergency Department\n\u2022 GYN\n\u2022 Neonatal Intensive Care\n\u2022 Pediatrics\n\u2022 Preventative Care\n\u2022 Primary Care\n\u2022 Specialty Care" + } + }, + { + "service_id": "874721f1-b00b-44b1-bd24-09ebf6c736bb", + "location_id": "3b14d00b-eaea-4be6-9c49-95053ec6dad0", + "payload": { + "description": "\u2022 SYEP (Summer Youth Employment) and WLGP (Work, Learn, Grow) low-paid internships\n\u2022 Summer camps and play streets (pedestrian-only sections of the streets for children to play on) are offered from July 1 - August 16\n\u2022 After school at PS 366, please contact (212) 942-0043 x151\n\u2022 felixm@inwoodcs.org" + } + }, + { + "service_id": "8789ecaf-b42a-4a77-b6f7-714ca6468221", + "location_id": "97016f6c-6e51-4ecf-8c78-27b42cf3efa1", + "payload": { + "description": "Services include:\n\u2022 Assistance with Household Repairs\n\u2022 Entitlements\n\u2022 Household Budgeting Skills\n\u2022 Landlord mediation\n\u2022 Legal Services\n\u2022 Referrals\n\u2022 Short-Term Financial Assistance" + } + }, + { + "service_id": "87dd0922-7b60-4ab9-a17d-bb391d0ae5e9", + "location_id": "a5812581-6d5f-464e-a8b7-e74b0998cff2", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 Dental\n\u2022 GYN\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Veteran Health" + } + }, + { + "service_id": "8871f85d-6f81-47c3-b18a-078a783a699f", + "location_id": "fcaa0052-cc70-4e46-b555-717c3104bfa0", + "payload": { + "description": "\u2022 Primary care\n\u2022 PrEP and PEP\n\u2022 HIV, STI testing, treatment, and prevention\n\u2022 Plan B and birth control\n\u2022 Pregnancy testing and counseling\n\u2022 Mental health care", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 All types of insurance, or lack thereof, are welcome. See their website for additional stops. You may contact them by calling/texting (347) 853-4120 or WhatsApp*, (646) 661-0182 or WhatsApp*.\n\u2022 * WhatsApp installation is required." + } + } + }, + { + "service_id": "88bdcc4e-1bbb-444a-b0eb-73f62ae4b2a5", + "location_id": "a2c9e50d-6b5b-4d68-baf7-eb93472ee725", + "payload": { + "description": "\u2022 Walk-in Social service appointments during service hours.\n\u2022 You may also schedule an appointment at (212) 218-0569. Leave your name, phone number, a brief message, and a team member will return your call." + } + }, + { + "service_id": "891b434a-8b0f-464f-8db4-8069f259db98", + "location_id": "b48946e5-0fe2-463c-a614-06f8d145d124", + "payload": { + "description": "Services include:\n\u2022 Benefits Assistance\n\u2022 Case Management and Care Coordination\n\u2022 Crisis Intervention\n\u2022 Individual and Family Supportive Counseling" + } + }, + { + "service_id": "8920caa3-aff8-4a67-80df-56ff935180ff", + "location_id": "dcce38d4-1500-4eea-98ee-5403deb98739", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 To be hired at any job placement, you need an original of your Social Security card, proof of US citizenship or residency, and an unexpired work authorization. A Certificate of Disposition may be required for clients with criminal records; pending cases may suspend your licenses (like a security license allowing you to work as a security guard).\n\u2022 If the number is not working, try calling Mr. Holmes, the director, at (718) 865-9541." + } + } + }, + { + "service_id": "896f20dc-5f6b-4c53-aa10-6e781f986595", + "location_id": "41c44f81-264d-46e9-9cef-805933f0845d", + "payload": { + "description": "Services are available to any adult, except for the YASS Program:\n\u2022 HIV/Hep C/STI Testing, Prevention, and Treatment (injectable treatment is available)\n\u2022 Primary Care and referrals for:\n
 \u2014 Psychiatry, Psychology, and Addiction Treatment\n
 \u2014 Nutrition\n
 \u2014 Acupuncture\n\u2022 Trans and queer cis men (mainly of color) 13-29 years old can submit a contact form at instagram.com/the_yass_program for HIV/STI testing, education, and linkage to prevention and treatment services, but no one is turned away" + } + }, + { + "service_id": "89be8255-c59d-44e8-992d-1cbce4aa8893", + "location_id": "28949a75-93aa-44ca-802d-bad6eadebf9a", + "payload": { + "description": "Services include:\n\u2022 Medication management for opioid use disorder\n\u2022 Psychiatric services\n\u2022 Harm reduction education\n\u2022 Individual and group counseling\n\u2022 Medical services, including hepatitis C and HIV assessment and treatment\n\u2022 Career and education counseling" + } + }, + { + "service_id": "8a10e096-9b07-4b0e-b685-a852559949e6", + "location_id": "9bc3e184-820a-4d75-9674-cd34a21c83ed", + "payload": { + "description": "\u2022 This is an intake and processing center; single adult women must come to apply for shelter placement.\n\u2022 If you have been processed as a new arrival at Roosevelt Hotel and have a G-number, you are ineligible to come here; please go to Roosevelt Hotel for your shelter extension. New arrivals are non-US citizens who entered the country through the US-Mexico border after March 2022 and cannot return due to persecution. You are not obligated to disclose if you are not in the system and trying to get into DHS. They respect the right to shelter for anyone who asks." + } + }, + { + "service_id": "8a250a76-8416-4473-8b7a-edc871089f96", + "location_id": "c2d48e67-4673-4750-993c-2d2575b603da", + "payload": { + "description": "\u2022 Program aims to develop coping skills and prevent substance use in high-risk youth.\n\u2022 Services include:\n\u2022 Crisis intervention\n\u2022 Group counseling\n\u2022 Individual counseling\n\u2022 Youth counseling with family involvement" + } + }, + { + "service_id": "8a79e5ac-70db-4d41-a510-b1f76a304156", + "location_id": "c6f1b357-5642-474d-bc79-ebcd35c0c191", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Domestic Violence Counseling\n\u2022 DWI Program\n\u2022 Family Counseling\n\u2022 Group Therapy\n\u2022 Individual Counseling\n\u2022 Integrated Treatment for Dually Diagnosed\n\u2022 Medication-Assisted Treatment\n\u2022 Parenting Skills\n\u2022 Psychiatry\n\u2022 Re-Entry and Community Justice", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Intake Hours are Mon-Fri, 8:30 AM- 4 PM\n\u2022 Most major insurance plans are accepted, as well as Medicaid and Medicare\n\u2022 Sliding fee scales are available to people ineligible for insurance\n\u2022 Referral packages can be forwarded to the intake department" + } + } + }, + { + "service_id": "8b198dd5-16c0-44e3-98ee-8718227a6ffc", + "location_id": "fea9a01c-414a-4432-8026-36f69f8d464a", + "payload": { + "description": "Services include:\n\u2022 Care Coordination\n\u2022 Dental\n\u2022 Family Medicine\n\u2022 Health Insurance Enrollment\n\u2022 Nutrition\n\u2022 Pediatrics\n\u2022 Primary Care\n\u2022 Social Supports\n\u2022 WIC", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk in or call to schedule an appointment\n\u2022 MetroCards are provided to those with NYS Medicaid if they aren't eligible for medical transportation\n\u2022 Sliding fee scales are available to people without health insurance" + } + } + }, + { + "service_id": "8b20497c-2343-455f-b4c8-949692748904", + "location_id": "0b32cf73-5bb3-4916-ae58-59a66444ae9d", + "payload": { + "description": "Services include:\n\u2022 Civic classes (Citizenship classes)\n\u2022 ESL (English as a Second Language) - waitlist enrollment" + } + }, + { + "service_id": "8b2c896d-6ab8-43f6-b127-e530e0e58a6a", + "location_id": "dd5741e0-dee8-4ba9-8496-50dd5bf3a289", + "payload": { + "description": "Services include:\n\u2022 Financial, tax, and rental counseling 18+\n
 \u2014 For appointments across NYC offered by other organizations, please visit Consumer and Worker Protection at a866-dcwpwb.nyc.gov/talkmoney/book-appointment\n\u2022 Benefits and affordable housing assistance (for low-income NYC/NYS residents with an eligible immigration status; other eligibility criteria apply)\n\u2022 Landlord/tenant legal mediation\n\u2022 Mental Health\n\u2022 Job Search assistance (primarily for people legally allowed to work in the US)\n
 \u2014 Youth Job services application (18-25-year-old Brooklyn residents, not employed or at school)", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Schedule an appointment in your preferred language through this form." + } + } + }, + { + "service_id": "8b5ff649-09bd-40de-bbb0-64dfc7194efc", + "location_id": "78a01f99-b3a9-451a-b34d-0109f07f9376", + "payload": { + "description": "\u2022 Condoms, lube, etc. are available.\n\u2022 Sexual Health Support Group is offered to Youth 13-23 years old." + } + }, + { + "service_id": "8b68eb01-5634-4a51-b5cc-64c7b8b194d1", + "location_id": "cb9ab449-4745-436f-9fcc-725df2b81f09", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 This service is temporarily suspended. You are encouraged to call to find out if it has resumed. Must be at least 18 or be with a parent/guardian if younger than 18.\n\u2022 Please only come if you are nearby and cannot find a better resource, as this church has no website or phone number." + } + } + }, + { + "service_id": "8ba49437-22b7-485a-8b6f-0c349db0e9d8", + "location_id": "c0526e4d-d008-4bde-b82c-6126ab93b957", + "payload": { + "description": "The following services are offered via referral only, no community members can access these:\n\u2022 Visitations for children in foster care separated from their parents by ACS\n\u2022 First-time youthful offender probation program\n\u2022 Impact classes: court-mandated parenting classes and anger management" + } + }, + { + "service_id": "8bb8db64-603a-449b-ac96-72e0f9baae4a", + "location_id": "9a569e7a-a52f-42d5-855c-e52da9fc3528", + "payload": { + "description": "\u2022 Services Include\n\u2022 Crisis Intervention\n\u2022 Group Counseling\n\u2022 Individual Psychotherapy\n\u2022 Medication Management\n\u2022 Psychiatric Evaluations\n\u2022 Referrals to Primary Care" + } + }, + { + "service_id": "8c1ae284-815e-4ba8-b7f2-fa200072826d", + "location_id": "81ebb6f5-8b82-4290-b85a-632265cd1e10", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Individual Psychotherapy\n\u2022 Individualized Treatment Planning\n\u2022 Intake and Treatment Evaluation\n\u2022 Medication Management" + } + }, + { + "service_id": "8c3dc442-6296-447e-ba54-87432331ec49", + "location_id": "63da6e12-b827-4690-808d-7a03a811d6aa", + "payload": { + "description": "Services include:\n\u2022 Free Tax Preparation" + } + }, + { + "service_id": "8c5b6c95-1df8-4ba2-970c-93603f868327", + "location_id": "2ba39031-f115-43be-9c9e-1af7731a046f", + "payload": { + "description": "Services include:\n\u2022 Group Counseling\n\u2022 LGBT-Friendly Health Referrals\n\u2022 Private Therapy Referrals\n\u2022 Short-Term Individual Counseling" + } + }, + { + "service_id": "8cb0db97-6002-4f79-9613-24da686ea26a", + "location_id": "cc7eaaab-c2c6-48b3-aa5f-5a851f0548a8", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "DO NOT WALK IN. This is not their actual address. Call (212) 714-9153 and leave a message. An intake specialist will call back for screening. Out-of-state survivors can get referrals. They also have text line at (305) 204-1809 and email at advocate@sakhi.org, and sexual assault and other helplines at sakhi.org." + } + } + }, + { + "service_id": "8def6192-4cc1-4a38-b05c-0f01ab310ceb", + "location_id": "89156c9f-c37b-4c85-8a48-ee2d4c5fff4e", + "payload": { + "description": "\u2022 GYN\n\u2022 Primary Care\n\u2022 Podiatry\n\u2022 Dentistry\n\u2022 Neurology\n\u2022 Psychiatry (free psychosocial evaluations for people with disabilities and their parents, given they have Medicaid or a combination of Medicaid and private insurance, to access this service, call Angela at (718) 797-2020 x8015)" + } + }, + { + "service_id": "8e2c4b5b-e687-4f29-b0e9-65ac620c4962", + "location_id": "b8b34f30-7ad3-455f-97ba-8fdd41bccc9c", + "payload": { + "description": "Services include:\n\u2022 Homelessness prevention" + } + }, + { + "service_id": "8eac020e-1689-4603-8690-1cc9649843e1", + "location_id": "5d635727-29de-44df-b67d-ab75c8c6d7fb", + "payload": { + "description": "Services include:\n\u2022 Adult Medicine\n\u2022 Asthma and Allergies\n\u2022 Behavioral Health\n\u2022 Clinical Social Work\n\u2022 Dentistry\n\u2022 Endocrinology\n\u2022 ENT/ Head and Neck Surgery\n\u2022 Gastroenterology\n\u2022 General Surgery\n\u2022 Nutrition\n\u2022 OB/GYN\n\u2022 Optometry\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Specialty Care" + } + }, + { + "service_id": "8f38bcbf-e81d-4103-8ea3-449c23ee9be9", + "location_id": "43a11a9e-9cb0-4810-8161-9fc1755cdcd8", + "payload": { + "description": "Services include:\n\u2022 Free HIV Testing and linkage to PrEP and PEP" + } + }, + { + "service_id": "8f5d45ec-e6ad-42cd-bfa2-1db5db643287", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "description": "\u2022 UPWISE is for women who are formerly or currently homeless, formerly incarcerated, low-income, or non-citizens to succeed in the workplace and society.\n\u2022 BE BETTER BROOKLYN \u2013 YOUTH is a school-based/afterschool program that aims to prevent alcohol, tobacco, marijuana use, and violence.\n\u2022 MEN TO KINGS provides health services through community outreach, group, and individual interventions, counseling, and health education for LGBTQIA2S+ people.\n\u2022 INTERACTIVE WORKSHOPS include Parenting Journey, Making The Connection (MTC), VOICES/VOCES, Healthy Relationships, WILLOW, Sister To Sister, and Alternative to Violence (ATV)." + } + }, + { + "service_id": "8f94a598-d6b4-4a26-87e3-4e861e3a068b", + "location_id": "ede4ddfe-cdd3-405c-8278-147c778ae01c", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Take elevator # 6 or # 8 to the 6th floor\n\u2022 Line starts to form at 7:00 AM on Pearl Street\n\u2022 Only prepared and frozen foods are available" + } + } + }, + { + "service_id": "8fad3d98-3331-4cb5-b171-ce2b94b055b8", + "location_id": "6b750362-4337-402c-bb73-7936803e1f0b", + "payload": { + "description": "Donations of new or clean, gently used clothing and housewares may be available." + } + }, + { + "service_id": "8fcc957b-d228-4443-8d1e-94193238bab4", + "location_id": "7206f0fe-0fab-4bc3-b74c-2d302391acc2", + "payload": { + "description": "\u2022 GYN\n\u2022 Mental Health\n\u2022 LGBTQIA2S+ Care\n\u2022 Case Management\n\u2022 Primary Care\n\u2022 Renaissance?Project for YMSM (young men who have sex with men)\n\u2022 Project Harmony for queer individuals of color\n\u2022 Prep, text Damian at (347) 762-2134\n\u2022 The Goddess Project for cis-women" + } + }, + { + "service_id": "902bdf92-db20-469f-897f-e9be83efca35", + "location_id": "4046998d-f122-4821-9238-12ec1795ec98", + "payload": { + "description": "\u2022 Summer Youth Employment Program (SYEP) - a Citywide lottery of minimum-wage employment for young New Yorkers through DYCD, for individuals aged 16-25 years old\n\u2022 CNH - a 4-week internship with a $700 stipend with the perspective to work at New York Presbyterian (NYP) or Montefiore Medical Center with career assistance (resume building) and paid MAA and PCT certificates - required drug test and HSE, for adults under 30 years old\n\u2022 Career Network Building Service/Maintenance at Phipps Houses with a $1,100 stipend, paid OSHA-30, and flagger certificates for adults" + } + }, + { + "service_id": "90cdc041-ad54-49e3-b096-53dab2a6a615", + "location_id": "5cb6687f-b5d5-4142-8e4f-e08ab632893c", + "payload": { + "description": "\u2022 Food and activities, walk in to enroll with an ID and to find out the calendar of the activities\n\u2022 Transportation is available to people with mobility issues, call to find out which center is closer to you\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "9230be24-5aad-4ce4-beab-f88357355934", + "location_id": "60345ee8-707c-4ae0-9dc4-9636448ea1ab", + "payload": { + "description": "Mental health volunteer-advocate that would support emotionally and guide you though the process." + } + }, + { + "service_id": "92b0f7cd-fc1c-4191-9850-6033aa30f6b2", + "location_id": "76848b0c-c623-4cc9-8702-30a7ea457975", + "payload": { + "description": "\u2022 Offered by appointment or first-come, first-served basis.\n\u2022 Acupuncture Ear Seed. Foot reflexology is occasionally available.\n\u2022 Reiki \u2014 a Japanese form of energy healing, a type of alternative medicine\n\u2022 Tai Chi \u2014 An Internal Chinese martial art practiced for self-defense and health.\n\u2022 Yoga\n\u2022 Overdose prevention kits are distributed, but no drug testing supplies are available. Instructions to use are offered." + } + }, + { + "service_id": "92f8475c-3a98-4544-8cc6-c036498d115b", + "location_id": "40e165a4-24d0-4fde-91bb-d635e9a1d16c", + "payload": { + "description": "The following services are offered to people of all ages unless otherwise stated:\n\u2022 Primary Care\n\u2022 Gastroenterology, hematology, endocrinology. Age requirement: 18+\n\u2022 Neurology and pulmonology. Age requirement: under 18 (until your 19th birthday)\n\u2022 Physical and Occupational Therapy\n\u2022 Social Work\n\u2022 Cardiology\n\u2022 Wound Care\n\u2022 Allergology\n\u2022 Dermatology\n\u2022 Podiatry\n\u2022 Ophthalmology" + } + }, + { + "service_id": "932d35b6-66a9-44a1-a5c6-a5657c91d99c", + "location_id": "8dafb345-8b13-4f8c-8825-764db1acb55e", + "payload": { + "description": "\u2022 Provide both transitional and long-term options for individuals with mental health needs.\n\u2022 Provide apartments directly in the community. These apartments, known as \u201cscatter-site\u201d apartments, enable individuals to live independently in the community while still accessing responsive, wraparound care coordination.\n\u2022 Assist specialized populations, such as young adults and the formerly homeless, live in community residences, which are home-like sites that focus on reintegration into the community, psychiatric stability, wellness, and educational and vocational goals.\n\u2022 Staff work with individuals in their homes and communities to support goals, build skills for independence, link to neighborhood resources, and ensure a strong network of treatment and support." + } + }, + { + "service_id": "9356e381-fa60-4ea7-ad8c-2e342496f607", + "location_id": "62342032-3812-4e27-a36b-2054dbb52354", + "payload": { + "description": "Advocacy for youth 16-24 years old who are in Rikers Island and youth who were released from New York City's youth detention facilities. Fatherhood classes and other educational opportunities are available." + } + }, + { + "service_id": "93a0ed0f-e494-4479-ba7e-1a98bda4619e", + "location_id": "e3788ddd-6c02-4c55-b447-8ce45192a83a", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please call to make an appointment. The entrance is on 90 Beaver St. Call intake specialists at (347) 295-3738 (Bushwick), (929) 299-6904, or (718) 366-4300 (Williamsburg). Call Prevention Hotline: (718) 210-2767. Text (718) 215-0214 or email prevention@riseboro.org. It only serves low-income people residing in Bushwick, Bed-Stuy, Brownsville, East New York, Crown Heights, and East Flatbush. They have four offices. They also offer assistance to parents residing in zip code 11212 and have a child that attends School Districts 23 or 17 (call (929) 297-0209 or (917) 819-3196). Some government assistance might require a legal immigration status." + } + } + }, + { + "service_id": "93baddcb-cdca-4541-a218-ae1f92a18e69", + "location_id": "19cc2843-eb77-4b11-aad3-a49ef5ae3a1d", + "payload": { + "description": "Services include:\n\u2022 Health Home Coordination\n\u2022 Housing Support\n\u2022 Legal Services\n\u2022 Medical Case Management\n\u2022 Re-Entry Program" + } + }, + { + "service_id": "9439263b-00cd-4007-b801-83ea1d1d8cb1", + "location_id": "8bdc072d-05ac-497a-b531-a00703d8da3e", + "payload": { + "description": "Free fruits and vegetables distributed" + } + }, + { + "service_id": "94823c07-e57f-4a67-8612-7f4ca3645af3", + "location_id": "71fd332a-13ea-41f7-954e-966f12d1b2c1", + "payload": { + "description": "\u2022 Exercise\n\u2022 Games\n\u2022 Recreation\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "949cd36d-c515-4cdb-a998-df1e3219c247", + "location_id": "11af51c1-7489-4b22-858f-75db42510842", + "payload": { + "description": "Services include:\n\u2022 Diagnostic Radiology Services\n\u2022 Heart Care\n\u2022 Lung Care and Supplemental Oxygen\n\u2022 Mental Health Services\n\u2022 Rooms with Special Technology to Safely\n\u2022 Isolate Patients" + } + }, + { + "service_id": "94b288bd-af35-4ff6-8ce4-b7be03cb9343", + "location_id": "0530fd0f-d0c9-49e7-be5b-1936945178c2", + "payload": { + "description": "\u2022 GED is not provided.\n\u2022 Pieces of training offered in English and Spanish:\n\u2022 ESL, call (929) 810-7913 during open hours to sign up\n\u2022 OSHA in Spanish\n\u2022 Nanny Training\n\u2022 Computer Classes\n\u2022 Members can get information on Workers Corners for Day Laborers" + } + }, + { + "service_id": "94e92529-ee1e-43ff-90ec-25601bb60c3d", + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "description": "Services include:\n\u2022 Career Preparation\n\u2022 Education\n\u2022 Exploration\n\u2022 Financial Counseling\n\u2022 Job Retention\n\u2022 Training" + } + }, + { + "service_id": "95470673-cf8d-44f2-8a29-b508cbf36456", + "location_id": "147ae6f6-0830-4d90-939b-e413199a26bf", + "payload": { + "description": "Individual and group counseling" + } + }, + { + "service_id": "9547c862-ff22-4f7f-abde-17582949a635", + "location_id": "eb38da64-a136-4865-953a-f9170bfb6518", + "payload": { + "description": "Services include:\n\u2022 Care Coordination\n\u2022 Employment Services\n\u2022 Health Insurance\n\u2022 Maternal Health\n\u2022 Substance Use Disorder Services\n\u2022 Workforce Initiative Nassau (WIN)" + } + }, + { + "service_id": "954ed9a2-678c-4756-a455-617301d80c07", + "location_id": "5bae4b6c-dabf-41b3-9ff8-2fd851837285", + "payload": { + "description": "Services include:\n\u2022 Chronic Disease Support\n\u2022 Health Insurance Enrollment\n\u2022 HIV Care and Prevention\n\u2022 Maternal Infant Health\n\u2022 Mental Health Services" + } + }, + { + "service_id": "95dc49aa-941c-42d3-b8b5-cbf78a3631a4", + "location_id": "b176e873-d7f3-4909-85b6-7ac19178d72c", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Art Therapy\n\u2022 Behavior Modification\n\u2022 Crisis Intervention\n\u2022 Family Therapy\n\u2022 Individual Therapy\n\u2022 Medication Evaluation and Management\n\u2022 Play Therapy\n\u2022 Psychiatric Evaluations" + } + }, + { + "service_id": "96d7a9ce-cac5-4251-90ab-b09357630329", + "location_id": "c3bfe14c-59c5-4800-954f-e250cfa41811", + "payload": { + "description": "\u2022 CIDNY has three offices across NYC. Residents 14 and older (parental consent is required for underage participants) of any NYC borough with disabilities, regardless of immigration status (some reimbursement and benefit programs are tied to SSDI and are unavailable to some non-citizens) can be served. Many programs are tied to employment, so a valid work permit, Green Card, or US citizenship is required.\n\u2022 Services Include* and are available in many languages with accommodation for the deaf, blind, and people with other challenges. All facilities are ADA-compliant:\n\u2022 Information and referral, nutritional outreach, job readiness, peer support, and independent living (for example, during readjustment after returning home from a nursing facility)\n\u2022 Free training, reasonable accommodation, transportation expense reimbursement, affordable housing, and benefits (compensated through Social Security only for people with a qualified disability, income, and immigration status)\n\u2022 * People convicted of a sex crime are not served." + } + }, + { + "service_id": "96dc59e4-4711-44e7-8dde-b418439e4d43", + "location_id": "6408d71d-6b43-4dbc-891b-e4f4902d84da", + "payload": { + "description": "Services include:\n\u2022 Annual check-ups\n\u2022 Chronic disease control\n\u2022 Immunizations\n\u2022 Preventive care\n\u2022 Primary care\n\u2022 Specialty programs" + } + }, + { + "service_id": "97094195-e1bf-448b-ab9c-1d66c8aec046", + "location_id": "eb8061de-7dfd-4788-90aa-62c4458e9dc3", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "It doesn't matter where you loge or if you have ID. Come as often as weekly, call during the week if you have food emergency and they can see what they can do. They also have AA meetings, email Menzi at pastor.stmathewsjc@gmail.com for more information." + } + } + }, + { + "service_id": "971e82f3-257f-4353-bc16-4d234ec52022", + "location_id": "cb680c09-9b42-43c2-aa5f-c2b8a8cf725b", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Must come with required documents\n\u2022 Income recertification is every year\n\u2022 Call if you have any questions at (718) 240-0470" + } + } + }, + { + "service_id": "97f8267f-f586-44d4-bec5-2b27432281cf", + "location_id": "2c709f55-7ca7-495c-b748-6e4072e18616", + "payload": { + "description": "\u2022 Free or low-cost veterinary urgent care facility.\n\u2022 Services include:\n\u2022 Cat and dog end of life services\n\u2022 Veterinary services for cats and dogs" + } + }, + { + "service_id": "99810373-280f-45d0-ba85-f1385d6d5962", + "location_id": "c1e3b264-65e6-4382-8316-28d3b64f3d80", + "payload": { + "description": "\u2022 College Application Support\n\u2022 Creative Arts and Media Programs\n\u2022 Youth-Focused Political Education" + } + }, + { + "service_id": "99939e90-f756-416f-81b5-54196113fe3b", + "location_id": "a2d3da15-27ec-46ee-9ea7-6e853eb8debb", + "payload": { + "description": "\u2022 Referrals for legal support, asylum, health insurance, and benefits\n\u2022 OSHA 30+, SST 10 (both in Spanish), ESL Pieces of Training\n\u2022 Members can get information on Workers Corners for Day Laborers (gigs are paid in cash and are available to Spanish-speaking construction workers, with no legal paperwork usually requested)\n\u2022 Mexican consulate services (renewal of passports), IDNYC, DMV Appointments\n\u2022 Promise NYC \u2014 vouchers for childcare for 0-13-year-olds who are undocumented and live in NYC" + } + }, + { + "service_id": "999808f6-109a-4b23-8148-a2b4420110c3", + "location_id": "d7a68921-1414-4aaa-b9cc-245612e2b0d1", + "payload": { + "description": "Supplemental food assistance for pregnant and parenting people with a child under five years old. The nutritionist will let you know what products you can get. Most stores accept WIC cards. Any custodian (even a foster parent, with proofs) can access this program given they are income-eligible from the moment when they discover pregnancy to the moment their child turns 5 years old", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call (212) 939-2730 or email HarlemWIC@nychhc.org to make an appointment. No food is provided at the location, and the card to get your food is available after your application is approved." + } + } + }, + { + "service_id": "9a88b3df-6e4a-429b-a671-4c6d9dccf70a", + "location_id": "6f3e13c5-92a4-4b17-8191-decdb9921935", + "payload": { + "description": "\u2022 A CASAC Counselor will assess your needs and refer you to stress, anger, or alcoholism management treatment at the facility.\n\u2022 Screening/Brief Intervention\n\u2022 Individualized Treatment and Discharge Planning\n\u2022 Individual and Group Counseling\n\u2022 Peer Support\n\u2022 Psychiatric and Psychotherapy Services\n\u2022 Substance Use and Recovery Education\n\u2022 Self-Help Group (AA/NA on site)\n\u2022 Relapse Prevention Education and Planning\n\u2022 Vocational Counseling Services and referrals EPRA, Access-VR, referrals for job placement and educational opportunities\n\u2022 HIV Referrals\n\u2022 Smoking Cessation Education and Nicotine Replacement Therapy (NRT)\n\u2022 General Medical and Psychiatric\n\u2022 Coordination of Community Services and Advocacy\n\u2022 Entitlement Counseling\n\u2022 GROUPS AVAILABLE\n\u2022 Early Recovery\n\u2022 Relapse Prevention\n\u2022 Anger Management\n\u2022 Life Skills\n\u2022 Coping Skills\n\u2022 Understanding Trauma\n\u2022 Employment Readiness\n\u2022 Building Social Network\n\u2022 Domestic Violence\n\u2022 Parenting\n\u2022 DUI/DWI\n\u2022 Art Therapy" + } + }, + { + "service_id": "9a9efe9b-4e00-494e-990b-3f8c3a3f6cab", + "location_id": "5d9e39bd-01b1-4103-9091-b30371f3fd4f", + "payload": { + "description": "Services include:\n\u2022 Care Coordination\n\u2022 Dental\n\u2022 GYN/Reproductive Health\n\u2022 HIV Services\n\u2022 Pharmacy\n\u2022 Sexual Health\n\u2022 Transgender Healthcare" + } + }, + { + "service_id": "9ae58c96-1d81-41f1-9158-f3a4e5fe77b0", + "location_id": "0ed9bbe1-d2f4-4995-a09d-f1200cf0d5e7", + "payload": { + "description": "Services include:\n\u2022 Insurance Enrollment Counselors are available Tuesdays and Wednesdays from 11:00 AM to 3:00 PM. To enroll, call (718) 637-5222 or visit nyc.gov/health/healthcoverage.\n\u2022 This location provides Summer Youth Employment. They offer internships for youth and young adults and summer camp, see details at concretesafaris.org/city-surfers.\n\u2022 ABC Children's Mobile Crisis Team responds to an active crisis situation anywhere in Manhattan within two hours. Crisis teams serve anyone under 20 24/7. Call 988 to speak to a crisis counselor. For Early Intervention and Special Education, psychoeducation, evaluations, and system navigation support, email: clora@a-b-c.org\n\u2022 Thursdays, 10:00 AM - 5:00 PM Legal Hand volunteers are here for residents of 10029 zip code, call or text (646) 604-2709 or email eastharlemhelp@legalhand.org for an appointment. All ages, no legal advice, only referrals.\n\u2022 Harlem Health Advocacy Partners: Peer Support Wellness Groups for adults, Health Coaching for people with diabetes, asthma, or hypertension are offered 11:00 AM - 12:00 PM at Corsi Houses and Tuesdays, 2:00 PM to 3:00 PM at Lehman Senior Center\n\u2022 For more information, email HHAP@healthsolutions.org or call (646) 619-6737." + } + }, + { + "service_id": "9aeeaf14-7e2d-4ba3-8b39-ca6e0c7b3937", + "location_id": "abfb2d01-35c4-407e-8ae8-2c6cf02a1552", + "payload": { + "description": "Only available to NYC residents 17 years and 6 months (so that they can turn 18 during the school year) to 20 (up to their 21st birthday) years old:\n\u2022 GED Classes\n\u2022 ESL Classes\n\u2022 Get career counseling\n\u2022 Learn about your student rights\n\u2022 Understand your high school transcript\n\u2022 Get referrals for childcare, counseling, substance abuse\n\u2022 treatment, and additional programs" + } + }, + { + "service_id": "9b553b6f-7638-497e-b5f2-18b36d32d5be", + "location_id": "bf9e6447-3aa5-4034-8285-9c3f8f6558cf", + "payload": { + "description": "Services include:\n\u2022 Assistance with Housing Applications\n\u2022 Benefit Assistance\n\u2022 Free Tax Preparation\n\u2022 Health Insurance Enrollment\n\u2022 Legal/Immigration Referrals\n\u2022 Senior Services" + } + }, + { + "service_id": "9bc7d6f4-32a6-4235-abbd-eb14ef16afc2", + "location_id": "d18f7ced-64d5-4124-ba29-51ccf8f5071b", + "payload": { + "description": "Services include:\n\u2022 Alternative to Incarceration\n\u2022 Co-occurring Disorders Treatment\n\u2022 Medication-Assisted Treatment\n\u2022 Parenting Skills\n\u2022 Program for female-identified individuals" + } + }, + { + "service_id": "9bf6a9e3-3dba-4295-a792-62f7bde68ef9", + "location_id": "b55c2919-d2ca-4862-bccd-6a178396744f", + "payload": { + "description": "\u2022 Food and activities, walk in to enroll with an ID and to find out the calendar of the activities\n\u2022 Transportation is available to people with mobility issues, call to find out which center is closer to you\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "9c8333e2-2954-4408-a173-feb55cd5c7ec", + "location_id": "4bd3585b-4a00-4f56-85f9-fbd5529a1d11", + "payload": { + "description": "Services include:\n\u2022 Medication and surgical abortion until 19 weeks and 6 days of pregnancy\n\u2022 Ultrasound\n\u2022 Birth control\n\u2022 Vasectomy Consultations\n\u2022 General wart removal\n\u2022 Pap Smears and LEAP\n\u2022 Colposcopy\n\u2022 HPV Vaccines\n\u2022 GYN and Sexual\n\u2022 HIV Services\n\u2022 STI Services\n\u2022 Transgender Care" + } + }, + { + "service_id": "9e3fb03c-0793-4c3a-9ba2-63fe979613c1", + "location_id": "b80fb553-8948-4d50-8854-7aa2b4d72f01", + "payload": { + "description": "Services include:\n\u2022 Adult and Family Medicine\n\u2022 Behavioral Health\n\u2022 Cardiology\n\u2022 Chronic Disease Management\n\u2022 Dental (no oral surgery)\n\u2022 Endocrinology\n\u2022 HIV/AIDS Services\n\u2022 Infectious Disease\n\u2022 Insurance Enrollment\n\u2022 Nutrition\n\u2022 On-Site Lab\n\u2022 On-Site Pharmacy\n\u2022 Pediatrics\n\u2022 Primary Care\n\u2022 WIC" + } + }, + { + "service_id": "9e821bc0-0a9f-43ca-b2b6-4628e81ca2fc", + "location_id": "f4ba0237-801c-49ab-b6f7-75054ec682da", + "payload": { + "description": "Services include:\n\u2022 Education and Training\n\u2022 Job Training Workshops\n\u2022 Personal Development\n\u2022 Recreational and Cultural Enrichment\n\u2022 Transitional Housing" + } + }, + { + "service_id": "9e856135-13b7-410b-ae13-c6866c5e1fa3", + "location_id": "e9159f84-b277-4885-83d1-cb6b0378c96d", + "payload": { + "description": "Services include:\n\u2022 After-School Program\n\u2022 College Readiness and Test Prep (SAT/ACT/Regents)\n\u2022 Health Services\n\u2022 Internships\n\u2022 Ravenswood Cornerstone\n\u2022 Ris Academy- Info Tech\n\u2022 Summer Rising Summer Camp\n\u2022 Summer Youth Employment Program\n\u2022 Tutoring\n\u2022 Youth Workforce Development" + } + }, + { + "service_id": "9e8f5dbc-81c4-4dd0-9944-5176c318d8b8", + "location_id": "836d9f72-2544-4030-87e3-d3adceb797ed", + "payload": { + "description": "Services include:\n\u2022 Child and Adolescent Therapy\n\u2022 Couples and Family Therapy\n\u2022 Intake Assessment\n\u2022 Individual Psychotherapy\n\u2022 Medication Management\n\u2022 Parent Education\n\u2022 Psychiatric Evaluations\n\u2022 Referrals to other services" + } + }, + { + "service_id": "9f16246e-678a-4785-8fef-0f98d3ff7427", + "location_id": "86d780d0-941a-44d0-9a70-77d57e8ec921", + "payload": { + "description": "Services are offered to people with disability impeding their ability to work:\n\u2022 Workplace Readiness Training (to develop social skills and independent living)\n\u2022 Job Exploration Counseling\n\u2022 Work-Based Learning Experiences\n\u2022 Post-Secondary Options Counseling\n\u2022 Income and SSDI-based financial assistance in transportation, reasonable accommodation, and other expenses\n\u2022 In addition to several NYC District Offices, ACCES-VR by NYSED has satellite Offices. Please see more locations on YourPeer Map. Referrals, peer support, and independent living Reimbursement for career advancement training, reasonable accommodation (contact OHRMRA@NYSED.gov), and transportation (offered based on your income, might require you to have a Social Security Disability Insurance available to certain low-income people with disability that posses an eligible immigration status) Job development for those whose disability impedes seeking employment (you must be legally allowed to work in the US) Applications for public benefits (immigration status and income requirements apply) Help is offered to NYC residents with physical and mental challenges. People with a criminal record of sexual violence are not served." + } + }, + { + "service_id": "9f1d2c6e-b666-45f7-9f2c-f14e18f0e44c", + "location_id": "828dc64e-d631-49aa-afc9-1a4e4619c2c3", + "payload": { + "description": "\u2022 The Bridge Fund: only works by referrals by HCA. To qualify, you must have a low income, be able to pay for rent in the future, be in eviction proceedings, and have a moderate load of unpaid rent (or have approval from HRA to pay the arrears).\n
\u2014 New Yorkers who have been referred can call (646) 742-1465\n
\u2014 Westchester residents may call (914) 949-8146 (no referral needed)\n\u2022 Use the HCA hotline (open 8:30 AM - 5:00 PM Monday through Friday) to find rental assistance you are eligible for and:\n
\u2014 Attend Zoom workshops on tenants' rights, see the website for details\n
\u2014 Receive guidance on suing the landlord, getting clarification on lease terms, getting more time to move or pay rent" + } + }, + { + "service_id": "9f362c73-9939-4d44-9a1d-a00d9679a5ed", + "location_id": "8b29b797-dde3-4b19-90a0-d4730b3c1dbb", + "payload": { + "description": "\u2022 CIDNY has three offices across NYC. It can serve NYC residents with disabilities regardless of immigration status (some reimbursement and benefit programs are tied to SSDI and are unavailable to some non-citizens). Parental consent is required for underage participants. Many programs are tied to employment, so a valid work permit or US citizenship/residency is required.\n\u2022 Services Include* and are available in many languages with accommodation for the deaf, blind, and people with other challenges. All facilities are ADA-compliant:\n\u2022 Information and referral, nutritional outreach, job readiness, peer support, and independent living (for example, during readjustment after returning home from a nursing facility)\n\u2022 Free training, reasonable accommodation, transportation expense reimbursement, affordable housing, and benefits (compensated through Social Security only for people with a qualified disability, income, and immigration status)\n\u2022 *People convicted of a sex crime are not served." + } + }, + { + "service_id": "9f8625d1-3ad9-4d3f-b4c7-ade37c6bbd03", + "location_id": "f240d86e-a6f9-498b-9fe4-a5eb8021d115", + "payload": { + "description": "Services include:\n\u2022 Medication management for opioid use disorder\n\u2022 Psychiatric services\n\u2022 Harm reduction education\n\u2022 Individual and group counseling\n\u2022 Medical services, including hepatitis C and HIV assessment and treatment\n\u2022 Career and education counseling", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 For intake, call (800) 211-0996 Monday \u2013 Friday: 7:00 AM \u2014 3:30 PM or email intake@startny.org your contact information. If you are representing a client, submit a referral form at startcare.org/service-referral-form or request an appointment for yourself at startcare.org/access-care\n\u2022 Most insurance types are accepted\n\u2022 Dispensing hours: Monday \u2013 Friday: 6:45 AM \u2014 11:45 AM, Saturday: 7:15 AM \u2014 11:15 AM\n\u2022 Clinic hours: Monday \u2013 Friday: 6:30 AM \u2014 3:00 PM, Saturday: 7:00 AM \u2014 12:00 PM" + } + } + }, + { + "service_id": "9fb9f6e0-1279-409f-be54-0edf102a7b55", + "location_id": "31dc0ce1-6a9b-401c-97f3-f8fcdddbe37e", + "payload": { + "description": "Services include:\n\u2022 Arts and Crafts\n\u2022 Benefits Assistance\n\u2022 Computer\n\u2022 Conversational ESL\n\u2022 Field Trips\n\u2022 Mental Health Workshop\n\u2022 Nutrition\n\u2022 Recreational Activities" + } + }, + { + "service_id": "9fede248-d0e6-4549-b243-42196c78c997", + "location_id": "f51630fa-a991-4f8b-a35a-058c6d54b1ba", + "payload": { + "description": "\u2022 You will need to make an appointment for free notary services.\n\u2022 A valid photo ID with a signature is required (a current driver's license or passport is necessary).\n\u2022 The individual whose signature is being notarized must be present with the appropriate ID." + } + }, + { + "service_id": "a04f20c7-0aad-4ea1-a2d6-de9532ef5a05", + "location_id": "0e3e87e8-68db-458b-953a-74a2afb21822", + "payload": { + "description": "\u2022 Tax preparation for low-income New Yorkers during tax season\n\u2022 Financial counseling. Call Mr Green at (917) 697-2477 for an appointment. He is here on Mondays and Thursdays\n\u2022 Rental arrears and other social services are for residents of the Twin Parks West apartment building" + } + }, + { + "service_id": "a0d82a20-ceed-4e17-9887-3a34a5c093a5", + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "description": "Services include:\n\u2022 Computer Lab\n\u2022 Job Readiness\n\u2022 One on One Career Counseling\n\u2022 Referrals\n\u2022 Retention Services\n\u2022 Vocational Services" + } + }, + { + "service_id": "a1087aba-fc21-417f-bb83-e1652e777839", + "location_id": "e3c96bc9-b22c-4f46-807d-a9120d558f39", + "payload": { + "description": "\u2022 After successful completion of one of their education programs, they will assist you in attaining employment.\n\u2022 The office is located across the street at 1792 1 Ave, call (646) 381-9249 for an appointment.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Program Includes:\n\u2022 High School Equivalency Classes\n\u2022 Case Management and Social Support\n\u2022 Employment Training Programs\n\u2022 Advance & Earn / Culinary Arts Training\n\u2022 Community Healthcare\n\u2022 Youth Development / Human Services\n\u2022 Information Technology (IT)\n\u2022 Isaacs Scholars Program" + } + } + }, + { + "service_id": "a12de616-fcdb-4be7-8124-8d806125cb1a", + "location_id": "eaeb9bb7-d030-40aa-a0cd-9e51e708da00", + "payload": { + "description": "Mental health volunteer-advocate that would support emotionally and guide you though the process." + } + }, + { + "service_id": "a24c713c-6fde-4ab4-8a9a-93990b0c6557", + "location_id": "e68347fc-c7de-43a1-ad1c-378ab1d96f85", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Market is held TWICE A MONTH (not every week) on the 2ND WEDNESDAY and the 4TH SATURDAY of the month. [9:30 AM to 11:30 AM]\n\u2022 Near Dyckman Street, between Nagle Avenue and 10th Avenue.\n\u2022 Must be a Manhattan resident." + } + } + }, + { + "service_id": "a28fb10d-1d4a-4936-92a8-8344ff32b483", + "location_id": "da5c2313-97aa-4292-9ce1-37deed890253", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Walk in as long as you are a resident of Senate District 26." + } + } + }, + { + "service_id": "a2b58c2f-a77a-4a19-9c71-201d3998f626", + "location_id": "4da505d4-c7e8-408c-8052-ef8649d14824", + "payload": { + "description": "Services include:\n\u2022 Dentistry, 2+\n\u2022 GYN, all ages\n\u2022 Mental Health, 6+\n\u2022 Neurology, 18+\n\u2022 Podiatry, all ages\n\u2022 Primary Care, 2+\n\u2022 Psychiatry, 4+" + } + }, + { + "service_id": "a2c04368-c466-4a18-a895-96ced3294d76", + "location_id": "0208f380-20d6-461e-9f0f-01ea7adfb9bd", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Domestic Violence Program\n\u2022 DWI/DUI Assessment\n\u2022 Family, Group, and Individual Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 NYC Substance Abuse Rehabilitation and Recovery\n\u2022 Parenting Group\n\u2022 Relapse Prevention\n\u2022 Specific Criminal Justice Track" + } + }, + { + "service_id": "a2e65f9c-dd13-4344-bb95-1d8513730357", + "location_id": "2f40c4fd-a40a-474c-a035-19bda8379e67", + "payload": { + "description": "Services include:\n\u2022 Call to sign up for services\n\u2022 Case Management\n\u2022 Counseling and Referral Program\n
 \u2014 Referral required through a social service provider\n\u2022 Housing Search and Free Clothing (Uptown Wagon)\n
 \u2014 Clothing store opens each season\n
 \u2014 Follow @uptownwagon on Instagram\n\u2022 Food Justice and Immigrant Rights Workshops in Spanish\n
 \u2014 Text or WhatsApp Emilia: (917) 742-0533\n
 \u2014 Covers family-based petitions and spousal info.\n\u2022 Help with work permits, green card renewals, adjustment of status, and U visa cases.\n
 \u2014 Waitlist: about 1 month\n\u2022 Weekly nutrition and wellness sessions for parents of young children.\n
 \u2014 Offered Fridays in Spanish\n\u2022 Community dance classes are open to all ages.\n
 \u2014 Start in September\n\u2022 Angel Fund Scholarships\n
 \u2014 English classes and beauty school scholarships for young adults.\n
 \u2014 For those under 35\n
 \u2014 Opens in December and July\n
 \u2014 Call the front desk to apply" + } + }, + { + "service_id": "a32e4e83-a2ff-44a6-8ac4-8a5922be5605", + "location_id": "e5a8cb81-8069-43e3-9652-4f8d88becbdf", + "payload": { + "description": "Services include:\n\u2022 Support groups\n\u2022 Peer education\n\u2022 Sex and addiction education\n\u2022 Overdose prevention and safe use training and distribution" + } + }, + { + "service_id": "a38261b7-5d3e-40b9-bcc9-e4ab588163f5", + "location_id": "91a347f6-ba11-416a-ba87-3d202dc616cc", + "payload": { + "description": "Services include:\n\u2022 Citizenship Exams\n\u2022 ESL classes\n\u2022 Job Application Assistance\n\u2022 Job Readiness\n\u2022 Resume Preparation" + } + }, + { + "service_id": "a39cefc3-9e50-44c5-8956-e8dc96273b81", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "description": "\u2022 FIRST STEP is an OASAS-licensed outpatient substance use treatment program.\n\u2022 BRIDGE TO RECOVERY is an OMH-licensed outpatient mental health clinic with psychiatric and psychosocial evaluations, ongoing Individual and group psychotherapy, and health monitoring and medication management." + } + }, + { + "service_id": "a3a5763f-6d56-42b2-93ed-9e701a42b734", + "location_id": "0dd659fb-1f8f-43af-a93d-ab8d750760c8", + "payload": { + "description": "Services include:\n\u2022 Grab-And-Go Pantry\n\u2022 FNS Monthly Client Choice Pantry\n\u2022 NHE Monthly $100 Key Food Gift Cards for Grocery Shopping" + } + }, + { + "service_id": "a3a8971d-a9e1-4499-af01-2b38c41cdb67", + "location_id": "eae69d86-804c-40d8-b77a-dc1836f10215", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Primary Care\n\u2022 Psychiatry" + } + }, + { + "service_id": "a3f132e6-6ea6-4eda-9afa-e546391cb430", + "location_id": "e4a3b4e4-192e-4b96-a9a9-d2f3a210c76d", + "payload": { + "description": "Services include:\n\u2022 Primary care (physicals, vaccinations, etc)\n\u2022 Pediatrics\n\u2022 HIV/AIDS prevention and care\n\u2022 Women's health/gynecology\n\u2022 Gender-affirming care (hormone replacement therapy, legal documentation assistance, etc)\n\u2022 Dental care\n\u2022 Eye care\n\u2022 Emotional wellness (therapy, psychiatric evaluation, medication management, etc)\n\u2022 Opioid addiction treatment\n\u2022 Sexual and reproductive care (STI testing, family planning, contraception, prenatal care, etc)\n\u2022 Specialty care (dermatology, gastroenterology, cardiology, radiology, nutrition)", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You can call the number above to schedule an appointment, but the wait time is long. There is an option to schedule online.\n
Ryan Health offers sliding scale payment. Accepted forms of insurance can be viewed here. A full list of services can be viewed here." + } + } + }, + { + "service_id": "a3f8a2c0-c1c7-47dc-ab91-b71717624a09", + "location_id": "fcb5fdd7-f54d-4f79-b815-1d61c2d535f6", + "payload": { + "description": "\u2022 Adult programs: nonclinical hospital support and construction\n\u2022 For individuals over 25 released within the last 180 days or currently on parole/probation: construction\n\u2022 For justice-involved Upper-Manhattan adults under 25: nonclinical hospital support and construction\n\u2022 Anyone interested in the above programs, has to apply online and attend an info session in-person at 10 AM on Tuesdays and Thursdays; or via Zoom on Wednesdays at 1:00 PM, register at zoom.us/j/82399864270" + } + }, + { + "service_id": "a408629b-f900-4e17-8b52-6e8420463ecf", + "location_id": "96ce8dfb-7666-40bb-a926-2b30ffd30371", + "payload": { + "description": "Services include:\n\u2022 Anger Management and Domestic Violence Counseling\n\u2022 Family Counseling\n\u2022 Group and Individual Counseling\n\u2022 Health Workshops\n\u2022 Mental Health Evaluations\n\u2022 Relapse Prevention\n\u2022 Toxicology Testing" + } + }, + { + "service_id": "a4128865-984b-43d7-8a29-8501a0356777", + "location_id": "e2627807-d5cb-48e0-931e-f495ac84b239", + "payload": { + "description": "Services include:\n\u2022 Collaboration with College Nursing Program (Queens)\n\u2022 Co-occurring Disorder Services\n\u2022 Group Fitness Classes\n\u2022 Menu Planning for Lunches\n\u2022 Wellness Center\n\u2022 Wellness Recovery Action Planning (WRAP)\n\u2022 Wellness Self-Management (WSM)", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Must meet the Mental Health requirements listed online\n\u2022 It is not a clinical or medical service. It is free\n\u2022 No insurance or OPWDD referral is needed\n\u2022 To apply, visit venturehouse.org/application-tree" + } + } + }, + { + "service_id": "a44666aa-ed23-4adc-bcbd-1d1b6d7b9610", + "location_id": "fcfcc6d6-d5a0-427e-8cc4-741b19efe95a", + "payload": { + "description": "Primary Care" + } + }, + { + "service_id": "a4745f12-bc23-488c-b12d-43c717c186b2", + "location_id": "fb0a7188-b103-4afc-8bf6-3881087edab6", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "A photo ID is preferred but not required. For more information, call Robert, the director of the food pantry, at (212) 316-7584." + } + } + }, + { + "service_id": "a4963108-770b-4c21-8733-b2a5c16d03f7", + "location_id": "8545b5ba-6ab6-43eb-abb9-b5a9caa7aefa", + "payload": { + "description": "Services include:\n\u2022 Individual Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Treatment Services" + } + }, + { + "service_id": "a4a5d8f2-3350-4aa0-a055-d1b2efa90880", + "location_id": "1927c62b-6e47-49c8-bc72-e9126239d43c", + "payload": { + "description": "\u2022 Community partners listed on their website provide referrals for you to pick up diapers.\n\u2022 See the website for upcoming parenting classes" + } + }, + { + "service_id": "a4b83701-d776-4ea8-af79-ee6891c3f4b2", + "location_id": "3b14d00b-eaea-4be6-9c49-95053ec6dad0", + "payload": { + "description": "\u2022 Civics\n\u2022 Employment Skills\n\u2022 English Language Class (ESL is for adults only)\n\u2022 Further Education\n\u2022 Self-sufficiency Program" + } + }, + { + "service_id": "a5165d0d-c66e-471e-846e-305f2bbc7e59", + "location_id": "34ac3d9d-b79e-4f41-8d93-ef81192a52c4", + "payload": { + "description": "Eviction Prevention for eligible low-income individuals." + } + }, + { + "service_id": "a5263c95-42cd-40e7-9e7d-98358c85541e", + "location_id": "cc7bca47-9066-415c-892c-1f9e0f79732f", + "payload": { + "description": "Services include:\n\u2022 Adult Medicine\n\u2022 Case Management\n\u2022 Dental\n\u2022 Family Planning/Reproductive Health\n\u2022 Health Education\n\u2022 Health Insurance Enrollment\n\u2022 HIV Clinic\n\u2022 Lab\n\u2022 Mental Health\n\u2022 Nutrition\n\u2022 OB/GYN\n\u2022 Pediatric Care\n\u2022 Social Services\n\u2022 Specialty Services\n\u2022 Telehealth\n\u2022 Vaccinations" + } + }, + { + "service_id": "a563295d-f314-4ffa-a742-995c02e080c6", + "location_id": "044a0f34-0c9c-4794-896b-a4ddde9b7881", + "payload": { + "description": "Services include:\n\u2022 Optometry\n\u2022 Primary Care" + } + }, + { + "service_id": "a5bc1a9f-c7db-4133-87f7-e21bbcec4db1", + "location_id": "35f175c2-a5e5-41b4-9d09-b20595ea61cc", + "payload": { + "description": "\u2022 Affordable breakfast and lunch served fresh every day\n\u2022 Free Transportation to and from the center\n\u2022 Cultural programs led by professional instructors, including multimedia art and writing courses\n\u2022 Educational workshops and events\n\u2022 Field trips and special events\n\u2022 Exercise classes, including yoga, Zumba, chair aerobics and more\n\u2022 Access to a wide variety of FREE services, including Adult ESOL\n\u2022 Classes, Immigration Support Services, Housing and eviction Prevention Assistance, Afterschool Programs and camps\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "a5e0294b-7e36-44a7-8cb3-a20a779518fb", + "location_id": "efb25352-8655-4e9d-bcd3-e6544db9cf09", + "payload": { + "description": "Services include:\n\u2022 Benefits Counseling\n\u2022 Care Management\n\u2022 Health Insurance Enrollment\n\u2022 HIV Testing\n\u2022 Individual Counseling\n\u2022 Medical Referrals\n\u2022 Mental Health Referrals\n\u2022 MOUD\n\u2022 Overdose Prevention Training via Zoom on Friday\n\u2022 Substance Use Treatment\n\u2022 Syringe Exchange", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Please call extension 100 to schedule an intake appointment\n\u2022 You can call for hours of specific services\n\u2022 MetroCards are available to NYS Medicaid Holders upon their visit" + } + } + }, + { + "service_id": "a62cade5-77e2-41d1-86c8-e8d8917d1a15", + "location_id": "7f7671f7-0183-43d4-9cf8-18fe018d5162", + "payload": { + "description": "\u2022 Gender-Specific Substance Use Treatment\n\u2022 Re-entry Programs\n\u2022 Youth Advocacy Services" + } + }, + { + "service_id": "a67d84d7-95c4-40e4-84d8-1ed37ca4fe5b", + "location_id": "dfc1a074-92ee-4393-bb7e-fad66ffb5907", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 First come, first served\n\u2022 Food donations must be non-perishable.\n\u2022 Open to everyone\n\u2022 They are usually closed on the three Saturdays following Christmas [this year: December 27, 2025 \u2014 January 10, 2026]" + } + } + }, + { + "service_id": "a7201f74-6bd6-4d4f-9f64-6cd6f8860274", + "location_id": "852ffb1f-0e24-4a43-8bdc-f211bde52224", + "payload": { + "description": "A mental health volunteer-advocate who would support emotionally and guide you through the process." + } + }, + { + "service_id": "a72ee8ca-aaf5-4260-bf41-1e7f50aa0477", + "location_id": "7def96cc-999b-48c1-bdf0-d00b45da993a", + "payload": { + "description": "\u2022 A bed in a congregate setting or an overflow space - a chair to stay in overnight\n\u2022 Food and showers are offered\n\u2022 Case management is offered to those who have a bed" + } + }, + { + "service_id": "a76a9c80-fa7d-4435-ab90-e41aee5684f7", + "location_id": "e209cafb-3cc9-4832-bad0-1bb20070393b", + "payload": { + "description": "\u2022 Evening programming like gym, workshops, ESL, self-defense, and basketball are starting after 6 PM for all people of age\n\u2022 Afterschool with pick up from the area is for grades K through 8 and stops at 6 PM, email bcasillas@grandsettlement.org to see if your dependent can be picked up\n\u2022 Benefits assistance is available to participants, email bcasillas@grandsettlement.org for an appointment\n\u2022 Events are announced through posted flyers in the neighborhood or through parent coordinators in the closest school" + } + }, + { + "service_id": "a7907765-9503-482a-994e-640c98cb9adf", + "location_id": "d6b41325-d939-4241-ba64-499b3093239e", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Walk-ins are available Monday through Friday 1:00 PM \u2014 4:00 PM" + } + } + }, + { + "service_id": "a7fd4f74-fb96-4f6e-a146-888c79d4cad7", + "location_id": "83992ac7-4582-4156-9598-e3392fe4fd97", + "payload": { + "description": "Services include:\n\u2022 Case management\n\u2022 English classes\n\u2022 Legal Services" + } + }, + { + "service_id": "a823e3ac-17eb-4dd0-815c-05c344811f9c", + "location_id": "3163b1c9-4564-4cd5-b747-0c831c80293a", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Psychiatry\n\u2022 Psychotherapy" + } + }, + { + "service_id": "a84307f5-cde6-4bc4-b6e6-50bbd8ff2e76", + "location_id": "c2f8cb57-7631-45b1-aaa4-40f3f85a4f32", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Cardiology\n\u2022 Endocrinology\n\u2022 Gynecology\n\u2022 HIV/AIDS Services\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Nephrology\n\u2022 Nutrition" + } + }, + { + "service_id": "a84a636c-f88e-497f-888e-76386a16d206", + "location_id": "d65efbfd-6374-4723-a2c3-696934380299", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Domestic Violence Counseling\n\u2022 DWI Program\n\u2022 Family Counseling\n\u2022 Group Therapy\n\u2022 Individual Counseling\n\u2022 Integrated Treatment for Dually Diagnosed\n\u2022 Medication-Assisted Treatment\n\u2022 Parenting Skills\n\u2022 Psychiatry\n\u2022 Re-Entry and Community Justice", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Intake Hours are Mon-Fri, 8:30 AM- 4 PM\n\u2022 Most major insurance plans are accepted, as well as Medicaid and Medicare\n\u2022 Sliding fee scales are available to people ineligible for insurance\n\u2022 Referral packages can be forwarded to the intake department" + } + } + }, + { + "service_id": "a8f1fba8-2894-45c0-8054-f075ee7e92ae", + "location_id": "bfc34b94-e898-410e-a36f-4802851b6b2d", + "payload": { + "description": "Programs include:\n\u2022 Case Management\n\u2022 Drug Testing Strips and Plan B\n\u2022 Group Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health Services\n\u2022 Nutrition\n\u2022 Residential and outpatient addiction treatment\n\u2022 Overdose Prevention Kits and Education without a prescription or age minimum" + } + }, + { + "service_id": "a9491ec1-dac5-4a26-a9a9-8e8ff9b342fb", + "location_id": "c5f91b44-3cca-4967-a1b5-7ba8fd7257b2", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 The program is open to currently enrolled Brooklyn College students.\n\u2022 Appointment only. Go to the website to schedule an appointment.\n\u2022 Students must complete a brief intake form." + } + } + }, + { + "service_id": "a980143e-5958-488f-8878-01631a22fcd9", + "location_id": "d3ed1194-9c4b-4ad1-8686-8eb54221bbbc", + "payload": { + "description": "\u2022 Free training program for justice-involved people. Curriculum teaches entry-level skills used in addition to lived experience for a career of helping others.\n\u2022
\n\u2022
\n\u2022 Program benefits include:\n\u2022 Upon completion, awarding of a Navigator Certificate in Human Services and Community Justice\n\u2022 Career planning\n\u2022 Help applying to college\n\u2022 Rap sheet clean-up", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Read more online\n\u2022 Contact JustOppInfo@jjay.cuny.edu for more information\n\u2022
\n\u2022
\n\u2022 Eligibility includes:\n\u2022 Valid New York State ID\n\u2022 High school diploma or equivalent\n\u2022 Lived experience in the criminal legal system\n\u2022 Currently employed in an entry-level human services position (e.g., peer mentor, community navigator, credible messenger, violence interrupter, outreach specialist, or reentry specialist) or seeking employment in human services\n\u2022 Is stable in the community and has the ability to commit to full attendance and participation\n\u2022 Has basic technology skills (prospective students who need an introduction to technology are encouraged to enroll in the Institute\u2019s Tech 101 program)\n\u2022 Complete an online application and in-person interview" + } + } + }, + { + "service_id": "a989cc28-8d47-495f-adcf-6ef27b9f2448", + "location_id": "8b2392a3-e083-4a59-8a66-01db0993d808", + "payload": { + "description": "\u2022 Free board games, Virtual Reality, Arts and Crafts\n\u2022 Services for individuals 12-19 years old: resume help, workshops on videography, podcast recording\n\u2022 Youth Justice programming is offered at the main Far Rockaway location\n\u2022 GED for individuals 16-24 years old\n\u2022 Computers, free printing up to 20 pages, Wi-Fi," + } + }, + { + "service_id": "a9d7fdd9-1c8d-4020-8163-7b78ad542619", + "location_id": "33aaa49d-e67a-4627-9d6b-eacd6c055975", + "payload": { + "description": "Services include:\n\u2022 Acupuncture\n\u2022 Adult Day Health CarePrimary care\n\u2022 Behavioral Health GYN\n\u2022 Case Management\n\u2022 Free Hep C and HIV/AIDS testing\n\u2022 Harm reduction supplies\n\u2022 Pain Management\n\u2022 Pharmacy\n\u2022 Sexual Health Services\n\u2022 Substance Use Treatment\n\u2022 Telehealth\n\u2022 Youth and prevention and other services are available at other Housing Works locations \u2013 call (347) 473-7400 for further information." + } + }, + { + "service_id": "a9dfd6e2-4b96-4d76-ada2-797105404591", + "location_id": "2ba39031-f115-43be-9c9e-1af7731a046f", + "payload": { + "description": "Toiletries are available to members at no cost." + } + }, + { + "service_id": "aa09c70d-67f4-459a-a8d6-1e2307358bc0", + "location_id": "e33d1d3a-929a-41ee-ac79-14b92b080d88", + "payload": { + "description": "Services are available to any adult, except for the YASS Program:\n\u2022 HIV/Hep C/STI Testing, Prevention, and Treatment (injectable treatment is available)\n\u2022 Primary Care and referrals for:\n
 \u2014 Psychiatry, Psychology, and Addiction Treatment\n
 \u2014 Nutrition\n
 \u2014 Acupuncture and massage\n
 \u2014 Dentistry\n
 \u2014 Gynecology\n
 \u2014 LGBTQ+ care, affirmative surgery, and hormone replacement therapy\n
 \u2014 Pharmacy\n
 \u2014 Prevention of Anogenital Cancer\n
 \u2014 Nephrology\n
 \u2014 Neurology\n
 \u2014 Pain management\n
 \u2014 Social work guidance\n\u2022 Trans and queer cis men (mainly of color) 13-29 years old can submit a contact form at instagram.com/the_yass_program for HIV/STI testing, education, and linkage to prevention and treatment services, but no one is turned away", + "eventRelatedInfo": { + "event": "COVID19", + "information": "No walk-ins. Call to enroll. Uninsured and uninsurable people are not turned away. If you are a Medicaid recipient, see if you qualify for a Round-Trip MetroCard upon your visit. Insurance types not accepted: Molina, United Community Plan Medicaid, HealthFirst, Affinity. Adults only. Minors are referred to the Teen Health Center." + } + } + }, + { + "service_id": "aa38b317-04ca-4a0e-9ffb-d9ef52b8082d", + "location_id": "85fbde2c-22cc-42d6-9d35-fbb1f48a05ea", + "payload": { + "description": "Primary Care for all ages" + } + }, + { + "service_id": "aa3d0e89-30bf-4a4c-8e5b-48d7bb12b05e", + "location_id": "2e12f561-34d2-48a6-8cd5-d03cc97664d2", + "payload": { + "description": "Services include:\n\u2022 Evening Programs\n\u2022 Intensive Day Treatment\n\u2022 Latino/Bi-lingual Services\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health\n\u2022 Psychiatric Evaluations\n\u2022 Relapse Prevention\n\u2022 Vocational Training Support" + } + }, + { + "service_id": "aa785207-f42d-4e5f-87f6-bb46cd41e42b", + "location_id": "38867464-ba7f-4a13-948d-986f588d4a04", + "payload": { + "description": "Services include:\n\u2022 Benefits Advisement and Advocacy\n\u2022 Deaf/Hard of Hearing Services\n\u2022 Disability Awareness Program\n\u2022 Health Insurance Enrollment\n\u2022 Housing Advocacy, help with CityFHEPS, 2010-E Supportive Housing Applications, and Section-8 Applications. If you are a non-citizen, please see if you might qualify for this service.\n\u2022 Independent Living Skills Training Program\n\u2022 Information and Referrals\n\u2022 Transitional Support Program\n\u2022 Youth Services Program" + } + }, + { + "service_id": "aa928f44-3812-46ed-8da7-150f57e0456e", + "location_id": "93091124-350e-4a2f-9b77-e2e49fca12b1", + "payload": { + "description": "Services include:\n\u2022 Job development, anger management, clothing pantry, and case management for adults who are currently in criminal proceedings, on probation, or on parole in New York State\n\u2022 Support groups for current clients are offered weekly at:\n
 \u2014St. Mary\u2019s Episcopal Church Thursdays, 6:00 PM - 7:50 PM\n
 \u2014St. Ambrose Episcopal Church Tuesdays, 6:00 PM - 7:50 PM\n
 \u2014All Souls Episcopal Church Wednesdays, 6:00 PM - 7:50 PM" + } + }, + { + "service_id": "aaa614b2-4f43-4be0-9715-7ec7da9be489", + "location_id": "19cc2843-eb77-4b11-aad3-a49ef5ae3a1d", + "payload": { + "description": "Services include:\n\u2022 Couples and Family therapy\n\u2022 Group and Individual Counseling\n\u2022 Substance Use Support" + } + }, + { + "service_id": "aac81741-be4c-4d53-9f25-b3997203ec71", + "location_id": "d37a24e3-4ddc-4015-8def-4611d32c9dd4", + "payload": { + "description": "You can get referrals for:\n\u2022 Medical\n\u2022 Counseling\n\u2022 Other\n\u2022 For ages as young as thirteen depending on the need." + } + }, + { + "service_id": "ab14ddb4-27e2-4c54-afd0-2083e12cf793", + "location_id": "28d92749-853d-4d33-886e-875f0fcdff9c", + "payload": { + "description": "Services include:\n\u2022 Family, Group, and Individual Counseling\n\u2022 Methadone Treatment\n\u2022 Psychiatric Medication Management\n\u2022 Suboxone Maintenance" + } + }, + { + "service_id": "ab32e04e-5ddd-43bf-aa9f-bdc5a49bc947", + "location_id": "d136ffc7-1d56-4e95-bc3e-65c66f5dcec3", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Additional items like gender-affirming wigs and bras can be ordered from the Uptown location. All services are provided to existing clients via walk-in." + } + } + }, + { + "service_id": "ab4e1866-8892-4c2f-9cc2-426f200294ab", + "location_id": "936cc24c-01a9-40b1-9d54-94f3f6357b12", + "payload": { + "description": "Services include:\n\u2022 Fitness Program\n\u2022 Individual Counseling\n\u2022 Insurance Enrollment\n\u2022 Support Groups\n\u2022 Yoga Classes" + } + }, + { + "service_id": "abb4c374-c6f5-4245-a646-d11b4314a43b", + "location_id": "0eebc5d2-12d9-402b-b17b-3db9a40cd026", + "payload": { + "description": "Services include:\n\u2022 Activities, food, and more.\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point). See locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "ac450d84-1f41-4229-8c13-4fff9ef223b9", + "location_id": "e8d0e831-9620-4603-915c-2bbccb3c7c94", + "payload": { + "description": "Services include:\n\u2022 Case Management\n\u2022 Green Card Fee Waivers (for people on public assistance)\n\u2022 Medicaid Applications and Entitlements\n\u2022 Naturalization Applications\n\u2022 Passport Applications\n\u2022 Senior Transportation\n\u2022 Visa Workshops" + } + }, + { + "service_id": "ac6a2902-be91-4fbc-844f-dfb24df0bb74", + "location_id": "7eb85bc0-aa9c-4365-b340-5efd967606ff", + "payload": { + "description": "Services for patients of all ages include:\n\u2022 Dentistry\n\u2022 Primary Care\n\u2022 Mental Health\n\u2022 Women's Health Care\n\u2022 HIV/AIDS Services\n\u2022 Diabetic Care" + } + }, + { + "service_id": "ac6c537c-8e2f-44f6-b1a2-b5c492a31651", + "location_id": "51851d4d-dd1f-4c4a-b549-4e40eca3ba4f", + "payload": { + "description": "Services include:\n\u2022 Upper Manhattan, Bronx, and Downtown Chapter Meetings, see the calendar to sign up at metcouncilonhousing.org/calendar\n\u2022 No-legal-advice tenant hotline at (212) 979-0611 on Mondays and Wednesdays, 1:30 PM - 8:00 PM, Tuesdays, 5:30 PM - 8:00 PM, and Fridays, 1:30 PM - 5:00 PM\n\u2022 Walk-in clinics:\n
1rst and 3rd Tuesday 6:30 PM \u2013 at this location\n
2nd and 4th Tuesday 6:00 PM \u2013 5030 Broadway\n
\u2014 email peace@metcouncilonhousing.org or jermaya@metcouncilonhousing.org for more information" + } + }, + { + "service_id": "ace0b846-81e3-401a-9ef4-bc70d0d11c55", + "location_id": "0bbd2e2c-c722-4521-a657-d51dd46bf71c", + "payload": { + "description": "Services include:\n\u2022 Mental Health Counseling\n\u2022 Pastoral Counseling" + } + }, + { + "service_id": "ace9a9e9-a670-44d1-b7cf-dfea3624e329", + "location_id": "c4ff7ea3-93d3-4d45-b593-b8cd60c67d3f", + "payload": { + "description": "Services include:\n\u2022 Detoxification\n\u2022 Individual and Group Counseling\n\u2022 Medication-Assisted Treatment\n\u2022 Medical and Psychiatric Services\n\u2022 Substance Use Treatment\n\u2022 Therapeutic Activities", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk-ins are accepted and are first come, first served\n\u2022 Sliding fee scales are available to those ineligible for health insurance" + } + } + }, + { + "service_id": "ad32d05f-d0f0-40ce-b940-746a28a7e5ed", + "location_id": "1ebd1a5d-c3a1-404d-aaf2-830552e4deea", + "payload": { + "description": "First come, first served, more details are at nycommonpantry.org/project-dignity." + } + }, + { + "service_id": "ad337ca1-228b-4347-be38-3ad790d7c139", + "location_id": "4dcd483d-eef8-4427-adb4-d6376f2ff1d8", + "payload": { + "description": "\u2022 Interviewing Skills\n\u2022 Professional Development Training\n\u2022 Resume Writing\n\u2022 Transportation Assistance" + } + }, + { + "service_id": "adc6946c-d831-4249-b5ce-8e98af5c3689", + "location_id": "e6608940-1767-4e2a-9cc3-8f1c2ea2fa2c", + "payload": { + "description": "Green Card physical exams for under-19-year-old individuals only, conducted at 714 31st St, Union City, they have 9 locations across Hudson County (see specialties, hours and addresses at nhcac.org/about/sites-locations, but they are offering general primary care to all ages and vaccines to adults, but not immigration medical exams." + } + }, + { + "service_id": "addb2caa-e18d-4fb4-8361-1a709e2144d6", + "location_id": "dd992aad-8e9f-414e-bb20-ecc6917f4457", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Must live between West 76th Street and West 179th Street.\n\u2022 Enter at 91 Claremont Avenue\n\u2022 Pick up a ticket from the information desk, then proceed to the pantry" + } + } + }, + { + "service_id": "ae4c722d-f7a2-4a91-80d5-b63d06622e01", + "location_id": "4ee6122f-983e-48f0-8d83-e3fb782311db", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Art Therapy\n\u2022 Behavior Modification\n\u2022 Crisis Intervention\n\u2022 Family Therapy\n\u2022 Individual Therapy\n\u2022 Medication Evaluation and Management\n\u2022 Play Therapy\n\u2022 Psychiatric Evaluations" + } + }, + { + "service_id": "ae6c8dd4-cc14-4996-94f5-8d53e3dd6944", + "location_id": "c6c0635d-dfa4-4d35-9d70-f62ce04bb1ac", + "payload": { + "description": "Services include:\n\u2022 Dentistry, 2+\n\u2022 GYN, all ages\n\u2022 Mental Health, 6+\n\u2022 Neurology, 18+\n\u2022 Podiatry, all ages\n\u2022 Primary Care, 2+\n\u2022 Psychiatry, 4+" + } + }, + { + "service_id": "af000703-51b8-4e92-8ec3-fab59a6f725b", + "location_id": "779192f5-570c-49ca-a95b-ae8b57cc646e", + "payload": { + "description": "Education, food, parent workshops, mental heath" + } + }, + { + "service_id": "af24bbdf-9a15-40f8-8a91-6aeedfff300a", + "location_id": "b9c3a726-d253-4cba-a270-46c747b10051", + "payload": { + "description": "\u2022 Person-centered, recovery-oriented, behavioral health support.\n\u2022 Services include:\n\u2022 Empowerment Services and Peer Support (Non-Clinical)\n\u2022 Family Support and Training (FST)\n\u2022 Psychosocial Rehabilitation (PSR)" + } + }, + { + "service_id": "af66cd3d-4a40-4404-bb5b-c7083ec79c99", + "location_id": "19011b56-474b-4acf-983b-38c9c980dafd", + "payload": { + "description": "Virtual services include:\n\u2022 4-6 week Intensive Outpatient Program\n\u2022 Domestic Abuse and Abusive Partners Intervention Program\n\u2022 DUI program\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Therapy and Counseling\n\u2022 Parenting Classes\n\u2022 Anger Management" + } + }, + { + "service_id": "b0a23a66-75f4-4f1c-81df-ce0a85d7b736", + "location_id": "9dc672a8-1796-4366-9d1f-7fa0261dfe22", + "payload": { + "description": "Services include:\n\u2022 Adult Medicine Care\n\u2022 Behavioral Healthcare\n\u2022 Dental Care (all ages)\n\u2022 Pharmacy Services\n\u2022 PrEP Program\n\u2022 Substance Use Treatment" + } + }, + { + "service_id": "b0b922e7-c6b7-4911-8670-3fd6640b1169", + "location_id": "83a01c33-8b83-42d4-887e-6794cfced947", + "payload": { + "description": "\u2022 Este grupo est\u00e1 dise\u00f1ado para mujeres que hablan espa\u00f1ol para hablar sobre los problemas que est\u00e1n enfrentando.\n
\n
\n\u2022 This group is designed for women who speak Spanish to discuss issues they are facing." + } + }, + { + "service_id": "b107090a-fc9c-4ba0-a065-d0e99f8a63db", + "location_id": "2b5c05ee-70f2-43f8-ad50-3d12f1b1c70c", + "payload": { + "description": "Provided supplies include:\n\u2022 Wipes\n\u2022 Kirkland (Costco) diapers\n\u2022 Pull Ups for toddlers\n\u2022 Adult diapers\n\u2022 Panty liners\n\u2022 Baby food\n\u2022 Baby formula\n\u2022 Other pregnancy supplies received" + } + }, + { + "service_id": "b1434d1f-8b50-4593-9f79-25536cd8e4b9", + "location_id": "046d2f31-51ea-4e87-b98e-cb8b97e96604", + "payload": { + "description": "\u2022 Counseling referrals to the Jewish Board\n\u2022 Basic benefit applications for SNAP and HEAP (for low-income NYS residents over 60 with an eligible immigration status):\n
Contact Linda at (718) 475-5293 or lmulligan@sijcc.com, Natalya (bilingual-Russian) at (718) 517-7448 or ntrejos@sijcc.com\n\u2022 Legal referrals to NYLAG and Financial Counseling, call (718) 475-5236\n\u2022 Career Connections, call (718) 475-5228 or email careerconnections@sijcc.com. Staten Island residents only\n\u2022 CLLD Senior Center. Individuals over 60 can call (718) 475-5245, (718) 475-5289, (718) 517-7449 or (718) 517-7445 to register. The wait time to enroll is several weeks. Visit clld.sijcc.org for more information. Existing members can register for events here. Lunch is 12:00 PM \u2014 2:00 PM. Open Gym and Swim are 12:00 PM \u2014 1:00 PM on Tuesdays. Open Swim is 1:00 PM \u2014 2:00 PM on Thursdays. Open Gym is 1:00 PM \u2014 2:00 PM on Fridays\n\u2022 GED for adults, call (718) 508-3895 or (646) 369-6276" + } + }, + { + "service_id": "b17463ee-0ad6-46ff-82c3-110e591308c0", + "location_id": "e155bbbd-4859-4be3-96c8-077f4c326a97", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Any ID required for registration\n
 \u2014 Bring bags for groceries\n
 \u2014 Open to all Bronx residents" + } + } + }, + { + "service_id": "b1765988-13f1-4e32-a659-72cd0139aa04", + "location_id": "bc8442a9-d0de-49f4-9f06-527c2457e145", + "payload": { + "description": "Services include:\n\u2022 Group Therapy\n\u2022 Family Counseling\n\u2022 Individual Therapy\n\u2022 Medication Management" + } + }, + { + "service_id": "b1ce47b5-b144-4168-91ad-3de5ad6219f4", + "location_id": "b41ce36f-81ca-4710-aec7-da6df8222251", + "payload": { + "description": "Morning and afternoon classes are available in:\n\u2022 GED\n\u2022 ESL\n\u2022 Barbering\n\u2022 Welding\n\u2022 Medical Billing\n\u2022 Electric\n\u2022 Carpentry\n\u2022 Cisco software" + } + }, + { + "service_id": "b2757906-9930-43e3-8a5c-1285bd9066ac", + "location_id": "72648a32-3dc1-432e-a27e-e35e06a37e3b", + "payload": { + "description": "Services include:\n\u2022 Domestic Violence shelter\n\u2022 Immigration and family court legal services for victims of crimes\n\u2022 Financial empowerment\n\u2022 Counseling for people under 21\n\u2022 Afterschool for children of participants' junior high school ages" + } + }, + { + "service_id": "b2b368aa-31a9-468e-8d4d-e22deceb2e90", + "location_id": "b84fbb62-2de3-432a-a57d-c83b4ec01ab5", + "payload": { + "description": "Free used necessities, including:\n\u2022 Clothing\n\u2022 Shoes\n\u2022 Hats, gloves, and scarves\n\u2022 Jewelry\n\u2022 Bags\n\u2022 Linens\n\u2022 Small toys\n\u2022 Cooking pots, pans, dishes and silverware" + } + }, + { + "service_id": "b2b7adc7-fdaf-4bf3-a504-bb7b977e93cd", + "location_id": "d65e6248-2637-4009-a5e9-933c155407c8", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 Dental\n\u2022 GYN\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Prescription Delivery\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Veteran Health" + } + }, + { + "service_id": "b2e8e9e0-15e1-451c-9031-2b768a218d1d", + "location_id": "ec1e5fd9-ec02-482c-b734-017f986e2604", + "payload": { + "description": "Get food and receive Tiered Engagement Network (TEN) referral for Medicaid and Food Stamps through Food Bank. Immigration status can be a barrier, even if you are income-eligible, see more here.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Prepackaged grocery bags including fresh produce and shelf-stable items\n
 \u2014 Home delivery available for seniors (60+) upon request. Call to set up delivery.\n\u2022 You may use this service once a month. New registrations are done before 11:30 AM." + } + } + }, + { + "service_id": "b3120da9-0fe9-47c4-a51e-be4ee803c68f", + "location_id": "0d381537-31c4-4165-a5a0-4d7ffc02bace", + "payload": { + "description": "\u2022 Located inside the RHY office on the first floor.\n\u2022 Only four clothing items per month. In addition, you can get one new pair of socks and one new piece of undergarments. Shoes are often available." + } + }, + { + "service_id": "b378abb2-c039-4c7c-8ee7-434e45b1d7ec", + "location_id": "b11401ba-ceb7-406b-8157-b71c9015b049", + "payload": { + "description": "Services include:\n\u2022 24 Hour Inpatient Psychiatric Treatment\n\u2022 Individual and Group Therapy\n\u2022 Medication Management\n\u2022 Psychotherapy" + } + }, + { + "service_id": "b42caed2-1a8b-4773-98f3-982e921380ce", + "location_id": "3163b1c9-4564-4cd5-b747-0c831c80293a", + "payload": { + "description": "Services include:\n\u2022 Counseling\n\u2022 Individual and Therapy\n\u2022 Medication-Assisted Treatment\n\u2022 Psychiatry" + } + }, + { + "service_id": "b5840016-e913-40e6-8bdf-374b4daa1cb1", + "location_id": "4c207642-b437-4d76-92ed-2ae03cdd3abe", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Dental\n\u2022 HIV Primary Care\n\u2022 Mental Health\n\u2022 Pediatrics\n\u2022 Pharmacy Assisted Programs" + } + }, + { + "service_id": "b64b94db-8b15-4559-9734-336e72881798", + "location_id": "19aadb92-49f5-4195-b1ac-c600f7f1920d", + "payload": { + "description": "Services include:\n\u2022 HIV Testing and Prevention\n\u2022 Immunizations\n\u2022 LGBTQ Mental Health\n\u2022 OB/GYN\n\u2022 Ophthalmology\n\u2022 PrEP and PEP\n\u2022 Primary Care\n\u2022 STI Testing and Treatment\n\u2022 Urgent Care Visits\n\u2022 Young Adult Care" + } + }, + { + "service_id": "b6a55293-27ea-4421-8dbf-6db1170d9dba", + "location_id": "adf4bb75-8ab3-4a6d-ac5b-bcb91b600faa", + "payload": { + "description": "Services include:\n\u2022 Dental/Oral Surgery\n\u2022 Emergency Care\n\u2022 Gynecology\n\u2022 Mental Health\n\u2022 Primary Care\n\u2022 Specialty Care\n\u2022 Employment support" + } + }, + { + "service_id": "b7159928-c4f1-4ff0-8cd1-b20df75e8c9e", + "location_id": "f615c19b-0235-44ea-996e-dd4b3d4573c2", + "payload": { + "description": "Financial Counseling:\n
 \u2014 tax prep (for current members New Yorkers during tax season)\n
 \u2014 how to save, open a bank account, get out of debt\n\u2022 Job Development:\n
 \u2014 interview prep and resume-building\n
 \u2014 job interview clothing\n\u2022 Mental Health Referrals" + } + }, + { + "service_id": "b74f6cb4-6342-458b-8104-0a523115f82f", + "location_id": "fb58573d-e43d-4537-be26-a0a71c00832c", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You can submit a new patient form, make an appointment for an existing patient or you can call to enroll/make an appointment\n\u2022 Most health insurance types are accepted\n\u2022 A sliding fee scale is offered to people without insurance\n\u2022 If you are a Medicaid or Medicare recipient, see if you qualify for a Round-Trip MetroCard upon your visit." + } + } + }, + { + "service_id": "b776c148-db4b-4c49-aeee-6c7c46df0f90", + "location_id": "e1d7abf8-ec0b-41d2-a404-91ebcdea351c", + "payload": { + "description": "\u2022 ESL\n\u2022 GED\n\u2022 CNA training\n\u2022 OSHA electric classes\n\u2022 Automotive classes" + } + }, + { + "service_id": "b8520f93-cec8-4c36-8dc8-4dd1dbe5ecbd", + "location_id": "fc5edf0d-f2be-4151-814c-6e2b6608044c", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk in with the required documentation\n\u2022 For more information, you can call (212) 238-7145\n\u2022 Food is not provided at this location. You will receive a WIC card after the approval of your application\n\u2022 Yearly income recertification is required" + } + } + }, + { + "service_id": "b859645c-9b9e-4a12-8d8c-88da340754db", + "location_id": "6e09c73d-bb21-4bfa-90f6-b96b297c9fcd", + "payload": { + "description": "Veterinary services for cats and dogs. Services include:\n\u2022 Care for skin, eye and ear infections\n\u2022 Deworming\n\u2022 Humane euthanasia\n\u2022 Microchips\n\u2022 Physical exams\n\u2022 Spay/neuter surgery\n\u2022 Vaccines" + } + }, + { + "service_id": "b8cb00f9-5e39-4c3c-90c3-ccbcc6434a03", + "location_id": "ae7b2c48-d644-4b99-8322-27adf6863e29", + "payload": { + "description": "\u2022 Notary public (free for any community member), call Kahlii for more information at ?(929) 529-0630?\n\u2022 Senior services: fitness recreation, breakfast, and lunch\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "b8ef8b9e-8115-486f-904f-33a0d05e9aa9", + "location_id": "f9581ab5-404b-4222-bf39-365dda6d91de", + "payload": { + "description": "If you are a resident of New York City and need to register, reenroll, or transfer your child for grades K-12, English and Spanish-speaking staff will help you. An online interpreter is available to assist speakers of other languages." + } + }, + { + "service_id": "b9a621a4-e376-4aea-b57c-b210be5bb3bf", + "location_id": "6e5bcb0f-42ed-4ed9-afd8-746ff988ced1", + "payload": { + "description": "\u2022

Mitigation, Government Assistance, and Job Development

\n

If you are a non-citizen, you may have access to various resources and protections. Explore the following:

\n

\n\u2022 Immigration Benefits for Crime Survivors:\n\u2022 \n\u2022 See if you might qualify\n\u2022 .\n\u2022

\n

\n\u2022 Government Assistance for Non-Citizens:\n\u2022 \n\u2022 See if you might qualify\n\u2022 .\n\u2022

\n

\n\u2022 Criminal Record and Deportation Risk:\n\u2022 \n\u2022 See if you might be at risk\n\u2022 .\n\u2022

" + } + }, + { + "service_id": "b9c1859e-e018-45e2-aa34-eed47108861b", + "location_id": "e771a7cc-d7eb-43f2-9451-4fe49e00f51d", + "payload": { + "description": "In-patient substance use treatment lasting 6-9 months.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Ask your counselor to enroll you if they see fit. Most types of health insurance are accepted. A phone assessment is scheduled if you are approved or a referral is made. Only individuals with a stable or manageable mental health state are accepted." + } + } + }, + { + "service_id": "b9cdd00a-c191-43db-b4e3-886f6562eb1c", + "location_id": "12ef58c7-c1c8-4f50-9a2c-716be4f25fc0", + "payload": { + "description": "Service includes:\n\u2022 Laundry\n\u2022 Shower" + } + }, + { + "service_id": "b9e2313e-aa31-4c0e-bf52-b4e59b6d554d", + "location_id": "a9ca5988-d1b7-4441-9647-9cb7531c58bf", + "payload": { + "description": "\u2022 Winter clothing is available from the beginning of November to the end of March. One visit per person, per month is permitted.\n
Email rmm@rmmnyc.org or call (212) 594-4464 to find the exact start and end dates." + } + }, + { + "service_id": "b9fd6e10-0dd8-4a65-87da-9628ba26e8f0", + "location_id": "933467c2-741f-4f43-820f-69a0e3497675", + "payload": { + "description": "Services include:\n\u2022 Dentistry\n\u2022 Emergency Department\n\u2022 Pediatrics\n\u2022 Primary Care\n\u2022 Specialty Care\n\u2022 Surgical Services" + } + }, + { + "service_id": "ba303044-ac17-4be8-85eb-a90d481de393", + "location_id": "d4516998-cca4-4780-b215-23c9ec3ae1c2", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Serving ZIP Codes: 11206, 11211, 11221, 11222, 11237, 11249, and 11251" + } + } + }, + { + "service_id": "ba807e37-1b21-4506-b4f2-a838a33733b3", + "location_id": "15b78950-fb7e-4352-adac-8a8fbbb454b0", + "payload": { + "description": "Services include:\n\u2022 Psychiatry/Therapy\n\u2022 Play therapy for children: clay and sand therapy, CBT, EBT, and EMDR" + } + }, + { + "service_id": "babe9263-93a2-4666-a362-01d69a4c2bd8", + "location_id": "5ad292c7-af3f-41e7-bece-7711edbd1aa7", + "payload": { + "description": "Services include:\n\u2022 Couples Communication\n\u2022 Family Counseling\n\u2022 Group Psychotherapy\n\u2022 Individual Psychotherapy\n\u2022 Medication Management\n\u2022 Parenting Counseling\n\u2022 Play Therapy\n\u2022 Psychological Testing" + } + }, + { + "service_id": "bac0fc49-d3b3-418e-b0b5-6ccd4e33c658", + "location_id": "2ba39031-f115-43be-9c9e-1af7731a046f", + "payload": { + "description": "Services include:\n\u2022 Case Management and Housing Assistance\n\u2022 Individual and Group Counseling\n\u2022 Insurance and Navigation\n\u2022 Linkage to PrEP, PEP, and Medical care\n\u2022 Sexual Health and Education" + } + }, + { + "service_id": "bb928a41-0fd7-481e-95a7-6cbcb1176d29", + "location_id": "be4d39a1-b658-4900-ad1a-9e5132f109fa", + "payload": { + "description": "A community-led hub in East Flatbush that provides free resources, family support, and engaging programs. The Yard focuses on strengthening families through social connections, concrete support, and community events, while creating a welcoming space where children, youth, adults, and seniors can thrive." + } + }, + { + "service_id": "bb9a35ad-c71a-41e8-adc5-685d6ef19fe0", + "location_id": "04de8f32-b2c5-4206-9543-bcc6c8e4a1a5", + "payload": { + "description": "Virtual services include:\n\u2022 4-6 week Intensive Outpatient Program\n\u2022 Domestic Abuse and Abusive Partners Intervention Program\n\u2022 DUI program\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Therapy and Counseling\n\u2022 Parenting Classes\n\u2022 Anger Management" + } + }, + { + "service_id": "bbb91ddd-c3bb-4e8b-a5ae-4c029aacba08", + "location_id": "91b4f962-8065-4f87-be04-15f475dc064f", + "payload": { + "description": "Services include:\n\u2022 Emergency Department\n\u2022 Hospital Care\n\u2022 Specialty Care\n\u2022 Surgical" + } + }, + { + "service_id": "bbe2b316-161f-4f3f-a9f6-c78085df8bba", + "location_id": "95c668f1-8c59-430f-a1ae-e64d396a7f5d", + "payload": { + "description": "Services include:\n\u2022 Educational and Vocational services\n\u2022 Group Therapy\n\u2022 Individual Psychotherapy\n\u2022 Psychiatric Evaluation and Medication Treatment\n\u2022 Random Urine Toxicology\n\u2022 Relapse Prevention" + } + }, + { + "service_id": "bc04a399-a348-490b-9c45-e868dbbef879", + "location_id": "c1e3b264-65e6-4382-8316-28d3b64f3d80", + "payload": { + "description": "Services include:\n\u2022 Bridge to Health Careers Class\n\u2022 Community Health Worker Training Program\n\u2022 Computer Literacy\n\u2022 Citizenship Class\n\u2022 English Class\n\u2022 Food Handlers Certification\n\u2022 Job Placement\n\u2022 OSHA Training" + } + }, + { + "service_id": "bc2056c2-c14e-4a58-a351-4cc37eb861a0", + "location_id": "427ee11f-771b-49a6-8a6f-2112a24c7166", + "payload": { + "description": "Services include:\n\u2022 12- Step Meetings\n\u2022 Chemical Dependence Treatment\n\u2022 Independent Living Skills\n\u2022 Individual and Group Counseling\n\u2022 Job/Educational Placement\n\u2022 Peer Support\n\u2022 Relapse Prevention\n\u2022 Vocational Counseling" + } + }, + { + "service_id": "bd96cba0-b5a8-4d87-a35b-178c843f9e7a", + "location_id": "1cacb16b-b9b1-436d-80d3-38ba79ccfc85", + "payload": { + "description": "Services include:\n\u2022 Child and Adolescent Therapy\n\u2022 Couples Counseling\n\u2022 Family Therapy\n\u2022 Individual Therapy\n\u2022 Mindfulness Therapy\n\u2022 Online Counseling\n\u2022 Support Groups" + } + }, + { + "service_id": "be24c93b-a05b-485a-955a-a3bdfdb3371e", + "location_id": "f7494efd-a752-4c74-9773-0a58bda9ddaf", + "payload": { + "description": "Virtual services include:\n\u2022 4-6 week Intensive Outpatient Program\n\u2022 Domestic Abuse and Abusive Partners Intervention Program\n\u2022 DUI program\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Therapy and Counseling\n\u2022 Parenting Classes\n\u2022 Anger Management" + } + }, + { + "service_id": "be335b17-7c0f-4840-8495-0dac89fe9fd2", + "location_id": "2f0e7060-391b-4086-b987-23ff7c113fbb", + "payload": { + "description": "\u2022 If you, as a parent, are under investigation for child abuse or neglect by ACS and live in Manhattan South of 96th Street, the Bronx, or Queens, you may call to enroll in advocacy, case management, and navigation of the process.\n\u2022 The judge might assign you advocates from the Family Representation Center if you are already in family court proceedings. Only Article 10 cases are accepted\n\u2022 If there is a conflict of interest, you may contact this agency even if you are from another borough. If you are from Upper Manhattan, you should contact Neighborhood Defender Services; if you live in the Bronx, you can try Bronx Defenders; if you live in Brooklyn, try Brooklyn Defenders" + } + }, + { + "service_id": "be376a7f-ea73-4c27-b2d3-52c509973b35", + "location_id": "dbd4ab89-a2f4-4263-a035-7f0b2afa0b96", + "payload": { + "description": "\u2022 Activities are changing monthly and are available throughout the day. A nurse and a case manager are available on-site.\n\u2022 Case Management and Friendly Visiting Program for homebound Bronx residents, call (718) 328-3536\n\u2022 It is a designated cooling center during the Summer when a Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "be5ec4b8-5ea1-48ca-b7d4-9440d88826bb", + "location_id": "2cca7a42-9590-4259-ae48-0f4778e79001", + "payload": { + "description": "Services include:\n\u2022 Comprehensive Screening and Assessment\n\u2022 Family, Group, and Individual Counseling\n\u2022 Medication Administration\n\u2022 Nursing and Psychiatric Care\n\u2022 Referrals to Outpatient Substance Use and Mental Health Aftercare" + } + }, + { + "service_id": "beaba719-8ec2-4192-b2f0-f3a793d513b2", + "location_id": "d2598e8c-fadc-4d37-9592-5c0f16719344", + "payload": { + "description": "Applications for:\n\u2022 MetroCards with Senior Discounts\n\u2022 Fair Fares for 18-64-year-old low-income NYC residents, ineligible for other discounts. More details are at nyc.gov/fairfares\n\u2022 HEAP (utility assistance)\n\u2022 Medicare insurance for people over 65 with a disability regardless of income, possessing an eligible immigration status" + } + }, + { + "service_id": "bebeeeb2-0726-431c-95e0-d6ff9b890fdf", + "location_id": "266556e6-52b6-4c0c-a55f-e06fb1b13639", + "payload": { + "description": "Application for VA health benefits and other services." + } + }, + { + "service_id": "becf1947-a0b1-4b40-b9dd-9a084d0895a4", + "location_id": "f93033ed-aae3-4353-b2e6-71d2fd4431d5", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Send the filled-out Consent for Release and Referral Form to Deborah at dkaplan@goddard.org, fax it to (646) 505-1096, mail it to 61 W 87th St, Basement, New York, NY 10024, or email it to topop@goddard.org." + } + } + }, + { + "service_id": "bed8c30c-f0a0-4b57-b49f-2fb6aeb0fb96", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "description": "\u2022 HEALTH HOMES coordinates medical, mental health, and substance use treatment services to help clients achieve better health outcomes.\n\u2022 BAC also offers medication assistance, housing, and social services.\n\u2022 LINKAGE/NAVIGATION assists individuals who are HIV-positive or high-risk negative to obtain timely and appropriate medical, prevention, and support services.\n\u2022 HARM REDUCTION MENTAL HEALTH SERVICES are available for HIV-positive individuals with past or present substance use disorder issues. Treatment focuses on substance use education, relapse prevention, and stress management." + } + }, + { + "service_id": "bf4c282e-6233-4a57-970e-a4001c68ca98", + "location_id": "994713ca-474b-4834-bf95-8076aa58e1c0", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 Geriatric Care\n\u2022 GYN\n\u2022 HIV Care\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Pharmacy\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Social Services\n\u2022 Veteran Health" + } + }, + { + "service_id": "bfaf233c-bf8c-44b4-85f1-9d47a0774ca9", + "location_id": "cbfe4d8b-cbfd-4f93-9b08-efe6b7a956b1", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Art Therapy\n\u2022 Behavior Modification\n\u2022 Crisis Intervention\n\u2022 Family Therapy\n\u2022 Individual Therapy\n\u2022 Medication Evaluation and Management\n\u2022 Play Therapy\n\u2022 Psychiatric Evaluations", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Call to schedule an appointment\n\u2022 Most health insurance plans, including Medicare, Medicaid, and Private Pay, are accepted\n\u2022 Sliding scale fees are available as needed" + } + } + }, + { + "service_id": "c049405e-a53a-4184-9da2-c67bcb935a76", + "location_id": "dc5bf4f1-8eb6-4370-a3c2-1bbcc3dc702b", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please leave a voicemail, walk in, or email crownheightsconnect@innovatingjustice.org. No legal advice is offered; referrals are only for NYC residents." + } + } + }, + { + "service_id": "c0629260-42ce-4f17-a2f4-7ffb25ff90df", + "location_id": "4b9589f9-b4c3-41fd-b6c9-0a5f5ccffde0", + "payload": { + "description": "Virtual services include:\n\u2022 4-6 week Intensive Outpatient Program\n\u2022 Domestic Abuse and Abusive Partners Intervention Program\n\u2022 DUI program\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Therapy and Counseling\n\u2022 Parenting Classes\n\u2022 Anger Management" + } + }, + { + "service_id": "c131db95-548e-4af9-a5d1-49b8275994b0", + "location_id": "bfbc9e7f-1cc9-43b0-a87c-d0b1efdbb725", + "payload": { + "description": "Older adult centers (there is another in Manhattan and in Upstate) help visually impaired and blind people navigate the Braille language and use computers and other accessibility tools. Priority is given to people over 60, but everyone is welcome to receive education." + } + }, + { + "service_id": "c1398ace-b2e0-44b8-9888-aad0dcc2ceed", + "location_id": "699fc06c-eff8-4fab-926b-4e995daa2be7", + "payload": { + "description": "Services include:\n\u2022 Asthma\n\u2022 Clinical Social Work Primary Adult and Pediatric Care\n\u2022 Dermatology\n\u2022 Diaspora Medical Practice\n\u2022 ENT/ Head & Neck Surgery\n\u2022 General Surgery\n\u2022 Hypertension Clinic\n\u2022 Neurology\n\u2022 Nutrition\n\u2022 OB/GYN\n\u2022 Optometry and Optical Shop\n\u2022 Podiatry\n\u2022 Psychiatry and Clinical Social Services" + } + }, + { + "service_id": "c1613a92-b263-422f-a8f5-ef9dc98ea86a", + "location_id": "6310d772-9d84-433b-84e9-077b09c58599", + "payload": { + "description": "Services include:\n\u2022 Basic and Intermediate ESOL Classes\n\u2022 Basic Computer Skills\n\u2022 OSHA Training" + } + }, + { + "service_id": "c1bebd7b-23ad-4f71-b21f-ec80096b6c42", + "location_id": "6f59c3df-faa3-4b05-8467-3f188b65a725", + "payload": { + "description": "\u2022 Fill out the Application for a Parking Permit or License Plates for Persons with Severe Disabilities here\n\u2022 before mailing it to the address above and read the eligibility requirements in the document." + } + }, + { + "service_id": "c2563b00-3bf0-4314-90bb-6f80c3f7fc21", + "location_id": "444c42b1-205a-4a67-9755-9fca6ff949e0", + "payload": { + "description": "Services include:\n\u2022 Medication and surgical abortion until 19 weeks and 6 days of pregnancy\n\u2022 Ultrasound\n\u2022 Birth control\n\u2022 Vasectomy\n\u2022 General wart removal\n\u2022 Pap Smears and LEAP\n\u2022 Colposcopy\n\u2022 HPV Vaccines\n\u2022 GYN and Sexual\n\u2022 HIV Services\n\u2022 STI Services\n\u2022 Transgender Care" + } + }, + { + "service_id": "c2bbc1bc-48b6-4d79-b5ad-dd688c6b94ac", + "location_id": "f240d86e-a6f9-498b-9fe4-a5eb8021d115", + "payload": { + "description": "Services include:\n\u2022 Anger and stress management\n\u2022 Therapy\n\u2022 Psychiatric services and medication management\n\u2022 Care coordination\n\u2022 Career and education counseling\n\u2022 Ancillary withdrawal services\n\u2022 Continuing care\n\u2022 Harm reduction education" + } + }, + { + "service_id": "c2bda53f-82c5-4e50-b89a-0c01ac8ef256", + "location_id": "ac6e3b0b-8fb8-4a7e-a507-9a32bd72f4ea", + "payload": { + "description": "Services include:\n\u2022 Adult Basic Education\n\u2022 Anger Management\n\u2022 Dental\n\u2022 Fitness, Wellness, and Cultural Activities\n\u2022 Housing Support\n\u2022 Job Training and Employment Assistance\n\u2022 Medication-Assisted Therapy\n\u2022 Motivational Enhancement Therapy\n\u2022 Parent Program\n\u2022 Recovery and Empowerment\n\u2022 Substance Use Treatment" + } + }, + { + "service_id": "c3ff798c-e801-41d7-9f20-9d8ef6dd014a", + "location_id": "4a9395be-687a-4328-a65b-66fda390e4cb", + "payload": { + "description": "\u2022 Services include\n\u2022 At-Home HIV Test Delivery\n\u2022 Behavioral Health Services\n\u2022 Buprenorphine Treatment\n\u2022 HCV Care and HIV Care\n\u2022 LGBTQIA2S+ Health Initiative\n\u2022 PrEP/PEP\n\u2022 Primary Care\n\u2022 Re-Entry Services" + } + }, + { + "service_id": "c460bfbc-aad7-47a2-ac84-b7fc4a12dac0", + "location_id": "3bbbdaae-f3e6-4686-ab99-a113d799d824", + "payload": { + "description": "Group counseling on topics like:\n
\u2014 Grief\n
\u2014 LGBTQIA2S+ issues\n
\u2014 Anger\n
\u2014 Stress\n
\u2014 Domestic Violence\n
\u2014 Relationships\n\u2022 Medication management and psychiatry" + } + }, + { + "service_id": "c4787536-edba-4ef8-b86a-4dda878e83dc", + "location_id": "e87e4304-d058-4d7c-bbf7-9521dce8a464", + "payload": { + "description": "Some clothing items are under two dollars." + } + }, + { + "service_id": "c478e310-90d9-44d5-b8bc-03bd89cdbba0", + "location_id": "530ec271-e566-4a11-aded-157e25a77703", + "payload": { + "description": "\u2022 If you were denied SNAP Food Stamps or cash assistance, they might be able to help you\n\u2022 NYCHA problems can also be addressed here.\n\u2022 If you are a non-citizen, please see if you might qualify for this service." + } + }, + { + "service_id": "c4aa4b9e-81cb-42bb-82aa-6e66da41ee9b", + "location_id": "28c47a84-ff6c-4695-899a-b52de6ada8de", + "payload": { + "description": "Services include:\n\u2022 Independent Employment\n\u2022 Supported Education\n\u2022 Supported Employment\n\u2022 Transitional Employment" + } + }, + { + "service_id": "c4f988b6-02d9-43b6-941c-2fe8ca91e0a5", + "location_id": "be46598c-225a-4609-bea0-bd3d5c38eb92", + "payload": { + "description": "Services include:\n\u2022 Blood Pressure Readings\n\u2022 HIV, Hep C, and STI Testing\n\u2022 Medical Linkage and Navigation\n\u2022 Medication Assistance\n\u2022 Substance Use Screenings\n\u2022 Trauma Screenings" + } + }, + { + "service_id": "c5300207-bc93-4a9b-a077-849ceedc4238", + "location_id": "d62ca641-07cf-406e-82f4-b7801d21da8a", + "payload": { + "description": "\u2022 Dedicated pediatricians who provide primary and sexual, and reproductive health care for the parents and well-child care for the children.\n\u2022 Social workers who perform mental health assessments and help families navigate various psychosocial hurdles, including housing and food insecurity.\n\u2022 A psychology team that performs both developmental assessments for the children (who are at risk for developmental delays) and attachment therapy.\n\u2022 A nutritionist who works with each family to promote healthy lifestyle choices." + } + }, + { + "service_id": "c5491192-3000-480e-a563-617c76f5ba3d", + "location_id": "43743951-951a-4acf-837d-f79075917e1b", + "payload": { + "description": "PLEASE DO NOT TRAVEL TO THIS OFFICE, it is operating remotely. If you require more immediate help, try using the following resources endorsed by HIAS: immi.org, (407) 591-3963 International Rescue Committee\u2019s Uniting 4 Ukraine Support Line (rescue.org), immigrationlawhelp.org." + } + }, + { + "service_id": "c5b2050b-a765-42db-ae39-7be88bcdc3ff", + "location_id": "cf77b0eb-8391-420e-aa8a-2bf09691f50c", + "payload": { + "description": "\u2022 Advocacy, referrals, and compensation for innocent victims and their dependents or relatives. Only crimes in NYS are considered and claims are made through The NYS Office of Victim Services (OVS).\n\u2022 If you are a non-citizen and survived a crime, please see if you might qualify for some immigration benefits." + } + }, + { + "service_id": "c5d48531-2c52-4837-81dc-199830988ec7", + "location_id": "058a39a5-c0d0-4ea0-b331-10b85fefe8d5", + "payload": { + "description": "10-week career course. Participants are paid a $15 hourly wage. Certifications include:\n\u2022 CPR and First Aid\n\u2022 DOT 4hr Site Safety Flagger\n\u2022 2hr Drug/Alcohol Awareness\n\u2022 8hr Fall Prevention\n\u2022 NYC DOB 4hr Supported Scaffold User\n\u2022 OSHA 30 Construction\n\u2022 Site Safety Training card\n\u2022 Solar PV Installation" + } + }, + { + "service_id": "c615a4b5-38a6-4a5b-9ff6-7a1378cb182c", + "location_id": "c0f35a80-5950-4618-a733-5704f7d99872", + "payload": { + "description": "Psychiatry and therapy" + } + }, + { + "service_id": "c6164962-1f9b-4760-9c43-e50e92b2fcc6", + "location_id": "f74ea3f7-4322-432a-af07-cb89b275ca3a", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Market is held TWICE A MONTH (not every week) on 1ST SATURDAY and 3RD THURSDAY of the month.\n\u2022 On the basketball court off of Astoria Boulevard in the Astoria Houses.\n\u2022 Must be a Queens resident." + } + } + }, + { + "service_id": "c644ff45-ae3a-4c3e-9b92-8647db24530e", + "location_id": "983312ac-bf17-4099-867e-70b50d577dcc", + "payload": { + "description": "Services include:\n\u2022 Affordable Housing and Section 8 Applications\n\u2022 Cash Assistance\n\u2022 Disability Benefits\n\u2022 HEAP\n\u2022 Medicaid/Medicare Application and Renewal\n\u2022 Metro Card\n\u2022 Social Security and Supplemental Social Security\n\u2022 Daycare for adults with eligible health insurance and a disability (doctor's referrals are required). You can sign up to come and use the facilities either 9:00 AM \u2014 1:00 PM or 1:00 PM \u2014 5:00 PM" + } + }, + { + "service_id": "c64f7584-1d54-4683-9d93-76f458454fbc", + "location_id": "97016f6c-6e51-4ecf-8c78-27b42cf3efa1", + "payload": { + "description": "Services include:\n\u2022 Cash Assistance\n\u2022 Health Insurance Enrollment\n\u2022 Public Benefits Applications\n\u2022 SNAP Enrollment" + } + }, + { + "service_id": "c65341b5-21b3-4c34-9367-bac362518630", + "location_id": "bb4ce3a6-89ad-4e72-996c-d8a794e282a1", + "payload": { + "description": "Zoom groups, call (718) 592-5757 to enroll:\n
 \u2014 TYME AWAY\n
 \u2014 LIFT (Living Independently with Friendship and Togetherness) for people in early stages of Alzheimer" + } + }, + { + "service_id": "c6c89a27-72dd-4066-a3fc-fdc7f5e0bf86", + "location_id": "530ec271-e566-4a11-aded-157e25a77703", + "payload": { + "description": "For an annual $100 fee with a free initial consultation, a prospective NYC street vendor can get legal advice regardless of immigration status on:\n\u2022 Attaining a vendor license, fighting summonses, avoiding situations that can put one at risk of an arrest, and preparing for court hearings.\n\u2022 Setting app Zelle and other payment methods and social media for business\n\u2022 Union organizing" + } + }, + { + "service_id": "c724afdc-32fa-4cb7-a609-6aa6604e2fa7", + "location_id": "d73cdec8-00ad-4eda-9fee-a9411fb94ec9", + "payload": { + "description": "Snacks and activities for children.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "If you have a child from 6 weeks to 12 years of age and are visiting the court, feel free to drop them off here." + } + } + }, + { + "service_id": "c7455ca8-17c3-4e8e-9820-7a810aa203c1", + "location_id": "45f1444c-d5b8-421a-94de-af4a53f29d35", + "payload": { + "description": "Free Representation in English and Korean is available for:\n\u2022 Form N-400, Application for Naturalization\n\u2022 Form N-565, Application for Replacement of Naturalization Certificate\n\u2022 Form N-600, Application for Certificate of Citizenship\n\u2022 Form I-90, Application to Replace Permanent Resident Card\n\u2022 Form I-821D, Consideration of Deferred Action for Childhood Arrivals\n\u2022 Form I-485, Application to Register Permanent Residence or Adjust Status\n\u2022 Form I-130, Petition for Alien Relative\n\u2022 Form I-131, Application for Travel Document\n\u2022 Form I-601, Application for Waiver of Grounds of Inadmissibility\n\u2022 Form I-864, Affidavit of Support Under Section 213A of the INA\n\u2022 Form I-589, Application for Asylum and for Withholding of Removal\n\u2022 Form I-914, Application for T Nonimmigrant Status\n\u2022 Form I-918 and I-918 Supplement B, Petition for U Nonimmigrant Visa\n\u2022 Form I-360, Adjustment of Status for VAWA, SIJS self-petitioners\n\u2022 Form I-751, Joint Petition and Self-Petition to Remove Conditions on Residence\n\u2022 Form I-192, Application for Advance Permission to Enter as a Nonimmigrant\n\u2022 Form I-601A, Application for Provisional Unlawful Presence Waiver Form I-212, Application for Permission to Reapply for Admission into the United States After Deportation or Removal\n\u2022 Form I-765, Application for Employment Authorization\n\u2022 Form I-912, Request for Fee Waiver\n\u2022 Form G-28, Notice of Entry of Appearance as Attorney or Accredited Representative\n\u2022 Form G-1145, E-Notification of Application/Petition (\n\u2022 Form G-1450, Authorization for Credit Card Transactions\n\u2022 Form G-325A, Biographic Information\n\u2022 Form G-639, Freedom of Information Act\n\u2022 ?" + } + }, + { + "service_id": "c779d16d-221a-49bb-a517-9b48d0e5e3dd", + "location_id": "ea0fd370-c236-427d-9834-0fba99f5f971", + "payload": { + "description": "Services include:\n\u2022 Individual Counseling\n\u2022 Methadone Maintenance\n\u2022 Outpatient Treatment\n\u2022 Referrals\n\u2022 Skills Training\n\u2022 Support Groups", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call or walk in with an ID and health insurance card to schedule an appointment" + } + } + }, + { + "service_id": "c7cf9fd1-d981-45c5-aa2e-d36d2cc74d93", + "location_id": "811cc915-69f7-4b20-b875-13bd9848fb04", + "payload": { + "description": "\u2022 Free services for survivors of domestic abuse, sexual violence, stalking, and human trafficking. FJC locations provide public access to community service providers and social and civil legal service providers\n\u2022 The Queens District Attorney\u2019s office is also on site\n\u2022 YourPeer has many DV providers on the map\n
 \u2014 If you need supportive housing, you might qualify for services from New Destiny (if your most recent DV incident occurred within the calendar year except December). Inquire about the immigration status and other criteria for eligibility at the FJC." + } + }, + { + "service_id": "c83156ac-c0b6-4b5f-9475-d305545e183d", + "location_id": "13dfd64b-48db-4224-88ec-ac49636d0187", + "payload": { + "description": "Services include:\n\u2022 Free HIV Testing\n\u2022 Linkage to PrEP and PEP" + } + }, + { + "service_id": "c845d18f-1678-4d4a-a33e-bcce026ebc99", + "location_id": "0ccfc78d-e4a1-42d2-87ed-e4d36befb333", + "payload": { + "description": "Veterinary services for cats and dogs. Services include:\n\u2022 Care for skin, eye and ear infections\n\u2022 Deworming\n\u2022 Humane euthanasia\n\u2022 Microchips\n\u2022 Physical exams\n\u2022 Spay/neuter surgery\n\u2022 Vaccines" + } + }, + { + "service_id": "c8552fcf-d949-44f0-9809-ae212ea33e49", + "location_id": "60a5bc8f-18c9-410e-accc-e6eef585b79b", + "payload": { + "description": "Services include:\n\u2022 Job development and independent living services are offered by primary providers VISIONS, Helen Keller, and Lighthouse Guild" + } + }, + { + "service_id": "c89c8952-199b-4a4b-b117-70a299af42c4", + "location_id": "ff9772d0-e2c8-4698-8cf6-e9a4f79879c9", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Walk in for a tour. You can use the space two times before intake is required." + } + } + }, + { + "service_id": "c8f50d57-b980-45f5-85db-c1184c7dbb57", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "description": "Services include:\n\u2022 Assistance obtaining Vital Records\n\u2022 Case Management\n\u2022 Counseling\n\u2022 Financial Counseling\n\u2022 School Assistance\n\u2022 Shelter and Housing Referrals\n\u2022 Social Work\n\u2022 Therapy" + } + }, + { + "service_id": "c98809bb-b248-4831-8582-50f4d67bc0f9", + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "description": "Services include:\n\u2022 Acquiring Financial Assets\n\u2022 Budgeting and Savings\n\u2022 Building Credit\n\u2022 Public Benefits\n\u2022 Reducing Debt" + } + }, + { + "service_id": "c9d4d132-bd92-4370-905d-c604bb27c6f2", + "location_id": "e2627807-d5cb-48e0-931e-f495ac84b239", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Age 18+\n\u2022 Must meet the Mental Health requirements" + } + } + }, + { + "service_id": "c9ebf8a2-722b-4e4b-9667-27078e09ac14", + "location_id": "5a8df7b6-8679-4a20-9f94-6e6de7593d84", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Anti-Sigma\n\u2022 Education\n\u2022 Support" + } + }, + { + "service_id": "ca2710fc-ed5f-43be-9001-26b1a6bfa222", + "location_id": "b8ee981f-bf48-4c1b-8589-8f72b57bd12d", + "payload": { + "description": "Admissions, readmissions, and transfers for grades K-12." + } + }, + { + "service_id": "ca49473b-24d5-4704-ac30-821a035f9746", + "location_id": "c6ad35e2-2755-469c-ac68-d999a1a2debd", + "payload": { + "description": "Services include:\n\u2022 Advocacy and Case Management\n\u2022 Child-Parent Psychotherapy\n\u2022 Criminalized Survivors Program\n\u2022 Economic Empowerment Program\n\u2022 Parenting Journey\n\u2022 Parenting in America\n\u2022 Trauma-Focused Cognitive Behavioral Therapy", + "eventRelatedInfo": { + "event": "COVID19", + "information": "For more information, contact (877) 783-7794 or STEPSHelpline@RisingGround.org." + } + } + }, + { + "service_id": "ca5f5d54-709c-4130-a131-09bc240563d0", + "location_id": "c7503ad1-abf2-47e0-9918-e5530d1712be", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Feel free to call (929) 996-4754 or submit a referral via email at LIP@comunilife.org\n\u2022 To be eligible, a participant must have the consent of a legal guardian, be in school and see a mental health professional, or be open to seeing one (a formal diagnosis is required)" + } + } + }, + { + "service_id": "cbaf3e54-0f34-47c4-8e66-0970c13e7713", + "location_id": "306c3bd8-5c32-4913-96b6-36f7f4ff3f97", + "payload": { + "description": "\u2022 Train-and-earn through DYCD for people 18-24. Please see the list of additional providers with different internships around you here and here.\n
\n\u2022 This location offers a paid 25-hour-a-week internship in construction and digital marketing." + } + }, + { + "service_id": "cc07b7e3-3fbb-41c0-bc63-aa02dcfcca4a", + "location_id": "25b0a10e-fe3f-4bee-9aa4-ce8af0eca8b7", + "payload": { + "description": "Services include:\n\u2022 Housing Assistance\n\u2022 New York State of Health (NYSoH) Insurance Services\n\u2022 SNAP Assistance\n\u2022 Translation Services\n\u2022 Voter Registration" + } + }, + { + "service_id": "cc1ae740-9bd9-494e-99e7-08f1e86dbc73", + "location_id": "34ac3d9d-b79e-4f41-8d93-ef81192a52c4", + "payload": { + "description": "Service includes:\n\u2022 Care Coordination\n\u2022 Case Management Services\n\u2022 Medication Evaluation\n\u2022 Medication Management\n\u2022 Mental Health Therapy" + } + }, + { + "service_id": "ccab2eed-3b3b-4d7f-916b-a76aa3ebbd7e", + "location_id": "e75f1dc7-79d0-460f-967f-f2360679addc", + "payload": { + "description": "\u2022 Academic and Career Development\n\u2022 High School and College students can utilize the Elmhurst Center or Remote Service\n\u2022 Identity, Social, and Emotional Learning\n\u2022 Leadership building\n\u2022 Youth programming is offered to Public Schools from Elementary to High School" + } + }, + { + "service_id": "ccd1d375-44e8-4a1a-b4f2-ff1c89fd5ccf", + "location_id": "5c7182da-54b5-45b6-8be5-aee9c25177cb", + "payload": { + "description": "Services include:\n\u2022 Food\n\u2022 Case management\n\u2022 Activities" + } + }, + { + "service_id": "cd315193-3279-465b-b9b7-9aee1082be2f", + "location_id": "3a72f664-70c8-4908-a051-7beb19deb299", + "payload": { + "description": "Services include:\n\u2022 Community Support\n\u2022 Dementia Friendly Services\n\u2022 Food Services\n\u2022 Health and Wellness\n\u2022 Housing Assistance\n\u2022 Information and Assistance\n\u2022 In-Home Services\n\u2022 Meals on Wheels\n\u2022 Public Benefits\n\u2022 Senior Activity Centers\n\u2022 Social Activities" + } + }, + { + "service_id": "cd62ea24-0960-4522-9486-254691e7ae6c", + "location_id": "11782808-9cc5-438a-b5e2-6563eb1b3d9d", + "payload": { + "description": "Services include:\n\u2022 Family Therapy\n\u2022 Group Psychotherapy\n\u2022 Individual Psychotherapy\n\u2022 Long-Acting Injectables\n\u2022 Medication Management" + } + }, + { + "service_id": "cd67a262-1dde-4e32-aecb-e0a2199d63c1", + "location_id": "799840d3-74b5-415f-9435-87b33e72bf34", + "payload": { + "description": "Services include:\n\u2022 Individual Therapy\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Substance Use Treatment" + } + }, + { + "service_id": "cd87a558-efb3-4931-9e4e-dc389d3848fe", + "location_id": "93a8bac2-d3a3-43f3-acd6-674f9da98886", + "payload": { + "description": "Canned food and vegetables" + } + }, + { + "service_id": "cdd8b2eb-9520-4113-b3d3-91d900b72533", + "location_id": "2b3bce93-7598-46f2-b62f-e18d3f00bf2d", + "payload": { + "description": "\u2022 Afterschool for grades k through 8 before 6 PM\n\u2022 HUB programming for 13+ after 6 PM: Wi-Fi, computers, games, and music" + } + }, + { + "service_id": "ce30f082-ba04-4c60-917a-5ec7db91511d", + "location_id": "e9b9e4e5-eb30-4671-ac9a-ab59d76e07a3", + "payload": { + "description": "Services include:\n\u2022 Individual and Group Counseling\n\u2022 Mental Health Services\n\u2022 Methadone Treatment\n\u2022 Nutritional Services\n\u2022 Primary Care\n\u2022 Vocational and Educational Services", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Applications can be completed at any time during office hours\n\u2022 A sliding fee scale is available for low-income, uninsured individuals" + } + } + }, + { + "service_id": "ce6f7460-b6ab-4675-8332-4cc01d6e6e33", + "location_id": "7bb96b28-cdc2-48c9-83dd-2c955b63b602", + "payload": { + "description": "\u2022 Free food for all\n\u2022 Prioritizes healthy food" + } + }, + { + "service_id": "ce967005-5225-4846-92b4-07fa8b6101aa", + "location_id": "84f13826-8ccd-4afe-ba55-2a927262421c", + "payload": { + "description": "Services include:\n\u2022 Allergy/Immunology\n\u2022 Ambulatory Surgery\n\u2022 Audiology\n\u2022 Breast Surgery\n\u2022 Bronchoscopy\n\u2022 Cardiology (All Ages)\n\u2022 CASA (Age requirement: under 20 (until your 21st birthday)\n\u2022 Colorectal Surgery\n\u2022 Dermatology\n\u2022 Developmental Evaluation (Kids)\n\u2022 Diagnostic Cardiology\n\u2022 Diagnostic Neurology/Vascular\n\u2022 Endocrinology\n\u2022 ENT\n\u2022 Gastroenterology\n\u2022 General Surgery\n\u2022 Genetics\n\u2022 Oncology\n\u2022 Hand Surgery\n\u2022 Hematology\n\u2022 Infusion Center\n\u2022 Mobile Crisis\n\u2022 Nephrology\n\u2022 Neurology/Neurosurgery\n\u2022 OBGYN\n\u2022 Ophthalmology\n\u2022 Orthopedics\n\u2022 Pain Management\n\u2022 Palliative Care\n\u2022 PAT Department\n\u2022 Psychiatry\n\u2022 Physical Therapy and Rehabilitation\n\u2022 Plastic Surgery\n\u2022 Podiatry\n\u2022 Pride Center\n\u2022 Primary Care\n\u2022 Pulmonology\n\u2022 Tuberculosis\n\u2022 Rheumatology\n\u2022 Speech Therapy\n\u2022 Surgical Oncology\n\u2022 Thoracic Surgery\n\u2022 Urology\n\u2022 Vascular Surgery\n\u2022 Virology\n\u2022 Urgent care\n\u2022 WIC" + } + }, + { + "service_id": "cf6cf326-4398-472c-beeb-866a77cbcbdb", + "location_id": "de3f2864-a8d2-4be7-ae82-f629008c03c9", + "payload": { + "description": "Services include:\n\u2022 Benefits and Entitlements Assistance\n\u2022 Care Coordination\n\u2022 Caregiving Issues\n\u2022 General Assistance\n\u2022 Information and Referrals", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Care Managers are available by appointment Monday through Friday only. Please call (212) 741-3590 to make an appointment." + } + } + }, + { + "service_id": "cf707c4a-860a-4235-b0c2-59ad936d477e", + "location_id": "b9da05c0-8889-4f80-8bcd-378f355eacb2", + "payload": { + "description": "Services include:\n\u2022 Addressing Trauma and Learning Coping Skills\n\u2022 Assistance with Goal Setting\n\u2022 Individual and Group Mentoring\n\u2022 Life Skills Workshops\n\u2022 $10 stipend." + } + }, + { + "service_id": "d01e480f-506d-42f6-8fe5-9eef96dd81bd", + "location_id": "87cf2f91-0a9e-4b8d-9812-c574761a97f9", + "payload": { + "description": "Services include:\n\u2022 Individual and Group Counseling\n\u2022 Intensive and Non-intensive Treatment\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health\n\u2022 Nutrition\n\u2022 Vocational and Educational Services" + } + }, + { + "service_id": "d0ba17a9-cb50-48bf-97ff-b9de3d68a2b3", + "location_id": "c4c84c68-0a19-4b13-a1ba-4ce4d64955f9", + "payload": { + "description": "Services include:\n\u2022 Adolescent Program\n\u2022 Co-Occurring Disorders Program\n\u2022 Criminal Justice Services\n\u2022 Day, Evening and Weekend Programming\n\u2022 DMV Evaluations and treatment\n\u2022 Drug Testing and Monitoring\n\u2022 Early Recovery Skills\n\u2022 Individual and Family Counseling\n\u2022 Parenting Program\n\u2022 Psychiatric Evaluation and Medication Management\n\u2022 Relapse Prevention\n\u2022 Suboxone/Vivitrol/Methadone Program" + } + }, + { + "service_id": "d0d12098-2b06-4a46-bed6-f61512f23e72", + "location_id": "6b9093ab-10f4-4397-b6c4-e229cc0e23f4", + "payload": { + "description": "\u2022 Bike rehab \u2014 for commuters to receive a free used bike with a helmet, only for some of Hudson County clients of Community Action Partnership (see hopes.org/location) or Family Services (see and apply: hcnj.us/family-services/social-services), apply at hudsontma.org/bike-rehab-program\n\u2022 Free recycling and paper shredding events, see hcia.org/index.php/recycling/calendar-of-events-2\n\u2022 Free transportation assistance like mass transit discounts at hudsontma.org/smt-registration or vanpool ride sharing to work, call the main number or email info@hudsontma.org." + } + }, + { + "service_id": "d1838fba-6ff2-4181-bd7f-4252ffe0e254", + "location_id": "ce1819e7-2e43-4629-ae60-c16a545d1263", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Their community partnerships focus on under-resourced communities and underserved populations, including:\n\u2022 Spanish-speaking and immigrant families\n\u2022 Previously incarcerated and incarcerated parents\n\u2022 Veterans and active service members\n\u2022 Domestic violence survivors\n
Common presentation topics include:\n\u2022 Child Support\n\u2022 Custody and Visitation\n\u2022 Guardianship\n\u2022 Parentage\n\u2022 Orders of Protection\n
If you are a New York community-based organization interested in partnering with Family Legal Care, please reach out to our Associate Director of Advocacy, Policy, and Community Engagement, Molly Burke, at mburke@familylegalcare.org or (646) 613-9633 X220." + } + } + }, + { + "service_id": "d199da1f-7a35-448b-815e-9e4742ef1111", + "location_id": "d3ed1194-9c4b-4ad1-8686-8eb54221bbbc", + "payload": { + "description": "\u2022 College preparation program for justice-impacted people\n\u2022
\n\u2022 Services include:\n\u2022 Academic counseling\n\u2022 Support with enrollment and financial aid applications\n\u2022 Peer mentoring\n\u2022 Workshops\n\u2022 Professional development opportunities\n\u2022 Community building events\n\u2022 10-week College Exploration (CE) course", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 If you are interested in joining, please fill out the interest form\n\u2022 Contact JustOppInfo@jjay.cuny.edu for more information" + } + } + }, + { + "service_id": "d1b21970-3a1b-4c9d-bad5-d46b3f7ce616", + "location_id": "9ae0b313-4865-404d-8a46-ccace9a7f0eb", + "payload": { + "description": "Primary and Preventative Care" + } + }, + { + "service_id": "d1bd1112-ff41-4635-a41c-aad591e60964", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 All ages\n\u2022 A sliding fee scale is available to people without health insurance\n\u2022 You must be a current patient to meet with a Social Worker or Mental Health provider" + } + } + }, + { + "service_id": "d25b232c-09bd-41ff-8288-5b187f7032fa", + "location_id": "9b365096-fed1-426c-a45f-b8aa0c331f99", + "payload": { + "description": "Services include, butare are not limited to:\n\u2022 Housing Assistance\n\u2022 Landlord/Tenant Issues\n\u2022 Immigration Matters\n\u2022 Entitlements\n\u2022 Housing Issues\n\u2022 Public Benefits\n\u2022 Credit/Debt Counseling\n\u2022 Financial Literacy/\n\u2022 Budgeting\n\u2022 Housing Counseling\n\u2022 including Foreclosure\n\u2022 Prevention\n\u2022 Business Plan Preparation\n\u2022 Referrals to Low Cost\n\u2022 Business Services\n\u2022 Obtaining Licenses and Permits" + } + }, + { + "service_id": "d3424ce8-7213-4fe5-9c53-7d906434317f", + "location_id": "686f6669-e09b-4726-8bb5-715bbcabe19b", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Contraception\n\u2022 Family Planning\n\u2022 Gender-affirming services\n\u2022 HIV Care Primary Care\n\u2022 Mental Health Services\n\u2022 Nutrition\n\u2022 OB/GYN\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Sexual Health\n\u2022 Social Services" + } + }, + { + "service_id": "d3442655-4460-4a22-ba21-a31fc10a4d53", + "location_id": "c055cf23-083e-47e9-b03c-b6cce5a8fd9c", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 GYN\n\u2022 Health Homes\n\u2022 HIV Care\n\u2022 LGBTQIA+ Services\n\u2022 Nutrition\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Refugee Health\n\u2022 Sexual Health\n\u2022 Veteran Health", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 All ages\n\u2022 Please call or walk in to make an appointment\n\u2022 Sliding fee scales are available to people without health insurance" + } + } + }, + { + "service_id": "d3555bac-cdcf-4ad8-b2b5-287eee64cb75", + "location_id": "1d968ea2-8422-4a07-9658-1c100325fc7d", + "payload": { + "description": "Services include:\n\u2022 Counseling\n\u2022 DUI\n\u2022 Educational Services\n\u2022 Group and Individual Therapy\n\u2022 Medical Services\n\u2022 Medication-Assisted Treatment\n\u2022 Outpatient Substance Use Treatment\n\u2022 Referrals to Higher Levels of Care" + } + }, + { + "service_id": "d4332d20-8740-42ae-9878-8e689ae16095", + "location_id": "4fd214ad-2a96-4392-a820-949059fbafbb", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Annual Health Exams\n\u2022 Case Management\n\u2022 Chronic Disease Management\n\u2022 COVID-19 Testing and Vaccinations\n\u2022 Dental\n\u2022 GYN\n\u2022 Immunizations\n\u2022 Mental Health\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 WIC" + } + }, + { + "service_id": "d4393000-61d0-4dbc-9de6-be7d939c224b", + "location_id": "ae141704-4e85-48b5-b94b-102fbdc58745", + "payload": { + "description": "Services include:\n\u2022 A Nurse practitioner is here to refer people to services. To make an appointment, call your insurance to transfer your primary care to this facility\n\u2022 Jamaica Community Adolescents Program - an inpatient addiction treatment program available only by referral" + } + }, + { + "service_id": "d44598f7-d811-4794-8213-6f9b46c9a5d0", + "location_id": "93dc7a44-3f9a-4ce1-83f2-995b3f93ddea", + "payload": { + "description": "\u2022 Call to become a client and get an advocate assigned to your case, whether you are pursuing housing or following up on a case you have against your abuser.\n\u2022 Legal and immigration consultations are available." + } + }, + { + "service_id": "d473cb4d-9a05-4346-99b4-fa57bceb681a", + "location_id": "b082c423-560e-4b78-a0c2-22e0a91a3d5e", + "payload": { + "description": "Services include:\n\u2022 BLIP small business patent assistance for low-income people\n\u2022 LGBTQIA2S+ (civil rights challenges based on their identity\n\u2022 incarceration advocacy, and LGBTQIA2S+ asylum assistance)\n\u2022 Criminal defense advocacy clinic (for people convicted of quality-of-life crimes or wrongfully convicted)\n\u2022 Survivors' justice (for survivors of a crime)\n\u2022 Employment clinic is closed (please visit workersdefenseleague.org for more information)\n\u2022 Resentencing hearing assistance\n\u2022 Civil rights disability clinic (removal of guardianship for adults),\n\u2022 Housing clinic\n\u2022 Immigration referrals" + } + }, + { + "service_id": "d551faac-fd7f-4d2b-a0a6-dec99205eac8", + "location_id": "dea3138c-6b76-480f-89e8-b6aafec39c27", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please sign up with your ID proving your age and NYC residency" + } + } + }, + { + "service_id": "d57ed576-88d3-4d12-acb8-31d0ab916867", + "location_id": "f4ae3631-02d9-4180-abd1-324f363c505d", + "payload": { + "description": "Primary Care for all ages", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 For primary care appointments, walk in or call (718) 405-7720\n\u2022 For social services, call (929) 220-8181\n\u2022 For Dentistry, see here\n\u2022 For Ophthalmology, call (718) 920-2020\n\u2022 Most types of insurance are accepted, a sliding fee scale schedule can be found here for people who are not covered" + } + } + }, + { + "service_id": "d595e58b-38bb-4dcf-bb5c-0570943ee963", + "location_id": "70f3ebe9-aab7-4294-86a4-d5f6d53d0555", + "payload": { + "description": "Mental health volunteer-advocate that would support emotionally and guide you though the process." + } + }, + { + "service_id": "d5a6ae91-55b4-44ad-9242-15a84e1b77a0", + "location_id": "2e302015-6909-40de-85d4-9a84dc105d8c", + "payload": { + "description": "Volunteer attorneys are available on select Saturdays to assist guests with legal services, which include:\n\u2022 Benefits\n\u2022 Housing\n\u2022 Immigration\n\u2022 Tenants Rights" + } + }, + { + "service_id": "d5c1a91e-9273-401d-b998-9086e49f2a9b", + "location_id": "f96da677-82bc-4859-8101-68ef86a124e6", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 No walk-ins; appointments must be made for specific locations by calling (646) 496-0046\n\u2022 or emailing techhub@familylegalcare.org\n\u2022 Hours are subject to change\n\u2022 Other languages supported through interpreter service" + } + } + }, + { + "service_id": "d5ef7a46-d563-4c70-af13-75ec4130ccdf", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "description": "Services include:\n\u2022 Cardiology\n\u2022 Dental\n\u2022 Emergency Care\n\u2022 Homeless Veteran Care\n\u2022 LGBTQ+ Veteran Care\n\u2022 Primary Care\n\u2022 Social Work\n\u2022 Specialty Care", + "eventRelatedInfo": { + "event": "COVID19", + "information": "You can call (718) 584-9000 to schedule an appointment." + } + } + }, + { + "service_id": "d63055b4-c678-4813-9728-c214fc26849f", + "location_id": "8bf9d47b-1e0c-45f4-8d1c-a09ff60ea210", + "payload": { + "description": "If you are a resident of New York City and need to register your child for grades K-12, 3-K, and Pre-K, English and Spanish-speaking staff will help you. An online interpreter is available to assist speakers of other languages." + } + }, + { + "service_id": "d6538753-394d-40e2-a571-43546ae0af37", + "location_id": "7396b45b-3ae9-43ba-bb94-0af8b5bbc7bb", + "payload": { + "description": "\u2022 GYN\n\u2022 Internal Medicine\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Dentistry" + } + }, + { + "service_id": "d6d63cf3-354a-46b2-9549-d1e8a8a577aa", + "location_id": "c29e3cd3-ca53-49aa-bdff-6c3dea0dcb94", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "You can call for more information" + } + } + }, + { + "service_id": "d6fc437e-2ede-453b-a6d1-3c2316abbe9d", + "location_id": "d0486845-8d68-483b-81a1-2da93a957526", + "payload": { + "description": "\u2022 Naturalization\n\u2022 Certificates of citizenship\n\u2022 Renewal and replacement of immigration documents\n\u2022 Full and partial fee waiver requests\n\u2022 Family-based petitions\n\u2022 Deferred Action for Childhood Arrivals (DACA), only renewals, the government does not accept new cases\n\u2022 Temporary Protected Status (TPS)\n\u2022 Freedom of Information/Privacy Act Request (FOIA)\n\u2022 Adjustment of status\n\u2022 Consular processing.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 For more information on the services provided, email citizenshipnowinfo@cuny.edu, text (929) 334-3784\n\u2022 , submit a call-back form, or call (646) 664-9400 and (212) 652-2071 (only call during opening hours). You do not have to be a student of CUNY to receive legal immigration help here." + } + } + }, + { + "service_id": "d7404952-ff43-46d5-af63-d66fb99b22be", + "location_id": "89d77a63-0123-47bb-9eb6-48487f819b29", + "payload": { + "description": "The Tech Lab has sewing machines, Arduino microcontrollers, crafting supplies, and Little Bits electronics kits for customer use. Learn how to use our tools during structured classes and create your own projects during our drop-in hours. Call the Tech Lab at (718) 937-6266 or explore their calendar to see the upcoming workshop schedule." + } + }, + { + "service_id": "d741ad0c-d85d-4b31-a425-139ac412abbb", + "location_id": "732b84fd-2262-4b90-93c6-734ef3163782", + "payload": { + "description": "\u2022 Eviction Prevention \u2014 Assistance with rent and utility arrears and mediation to prevent eviction\n\u2022 Public Benefits Assistance\n\u2022 Education and Job Placement \u2014 HELP Works\n\u2022 Financial Counseling\n\u2022 Relocation Assistance" + } + }, + { + "service_id": "d77f21d5-ef47-40b1-9446-a14b46e98645", + "location_id": "b821b278-505b-4190-a0d3-66c84311e5a5", + "payload": { + "description": "\u2022 Free childcare includes breakfast, lunch, and snacks. There is also a rooftop/park and other activities and games throughout the day.\n\u2022 Under ACS, some low-income households, regardless of immigration status, can receive free childcare if they are in temporary housing, working, going to school, or looking for a job. Head Start is free childcare for eligible individuals. See the list of eligibility criteria at schools.nyc.gov/enrollment/enroll-grade-by-grade/head-start or for more extended guide on application, visit enrollmentsupport.schools.nyc/app/answers/detail/a_id/3704" + } + }, + { + "service_id": "d7a3f526-54dd-496b-a804-6cbcfb0c5bc8", + "location_id": "437c1ae0-b892-4a00-8680-06dfd918d798", + "payload": { + "description": "This location provides legal services around housing issues for Bronx residents, including assistance with rent arrears and eviction proceedings." + } + }, + { + "service_id": "d7eeaaff-3700-4c98-bc92-4ae87fb10b74", + "location_id": "f7790b46-9f3e-41f3-ba78-dce936ce154f", + "payload": { + "description": "Outpatient therapy and health monitoring for the following substances:\n\u2022 Opioids: Heroin, Painkillers\n\u2022 Alcohol\n\u2022 Marijuana\n\u2022 Nicotine", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Please visit their website, email stars.info@nyspi.columbia.edu, or call to make an appointment. No insurance is required." + } + } + }, + { + "service_id": "d7fc5c14-46f4-4371-a401-34d274e19d47", + "location_id": "3b4c3003-bec1-455f-afb9-e307d335674f", + "payload": { + "description": "Services include:\n\u2022 Career Counseling\n\u2022 English Language Courses\n\u2022 Industry Certifications\n\u2022 Professional Licenses" + } + }, + { + "service_id": "d8016f92-29e7-4976-86d0-b2b011a575da", + "location_id": "e9159f84-b277-4885-83d1-cb6b0378c96d", + "payload": { + "description": "Services include:\n\u2022 Case Management\n\u2022 Citizen Preparation Classes\n\u2022 Community Advisory Board\n\u2022 ESOL Classes\n\u2022 Immigration Legal Services\n\u2022 Older Adult Center\n\u2022 Older Adult Programs\n\u2022 Pregnancy and New Parent Program" + } + }, + { + "service_id": "d8f3da31-2f84-4cde-b716-f47ddec842aa", + "location_id": "a41e679f-bec5-4a0c-8bfe-14ef59f44c09", + "payload": { + "description": "\u2022 Civil Rights/TGNCIQ Justice\n\u2022 Employment and Workplace Justice\n\u2022 Immigration and Action NYC\n\u2022 Housing Court Assistance" + } + }, + { + "service_id": "d92b9e8b-a52d-4545-a33b-94d9b87b720a", + "location_id": "639a7b12-c0ac-40b6-973f-5cfeaf15065a", + "payload": { + "description": "Services include:\n\u2022 Adult Education and Literacy Classes\n\u2022 Business Startup\n\u2022 Computer Lab for Skills Assessments and Training\n\u2022 GED Prep in with Bronx Community College\n\u2022 Interviewing Skills\n\u2022 Job Fairs\n\u2022 Opening a bank account\n\u2022 Resume Writing" + } + }, + { + "service_id": "d933e5b5-2aff-4925-bc2b-1353982f5560", + "location_id": "19aadb92-49f5-4195-b1ac-c600f7f1920d", + "payload": { + "description": "Services include:\n\u2022 Cosmetic Dentistry\n\u2022 Dental Implants\n\u2022 Endodontic Treatment\n\u2022 General Dentistry\n\u2022 Periodontal Care\n\u2022 Restorative Dentistry" + } + }, + { + "service_id": "d9577143-835d-4196-9578-fafd2c64181b", + "location_id": "fe7bea5e-b634-4667-beef-8df7d20194df", + "payload": { + "description": "Services include:\n\u2022 Affordable Housing and Section 8 Applications\n\u2022 Cash Assistance\n\u2022 Disability Benefits\n\u2022 HEAP\n\u2022 Medicaid/Medicare Application and Renewal\n\u2022 Metro Card\n\u2022 Social Security and Supplemental Social Security", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Case management is available to all adults with mental or developmental disabilities approved by their doctor; insurance types accepted are VillageCare, Senior Whole Health, RiverSpring, and Anthem. CenterLight and the Centers Plan are accepted by the Main Location and the Coney Island Avenue Location. Insurance is going to decide if your pick-up and drop-off are covered based on the distance and what days you can attend.\n\u2022 This is a social adult day care center with food, where people gather for 3-4 hours a day and have physical, spiritual, and Islamic activities\n\u2022 The food pantry is open to everyone on Wednesdays starting at 11:00 AM till around 2:00 PM and can be reached at (718) 684-8807\n\u2022 Urdu, English, and Russian assistance are available." + } + } + }, + { + "service_id": "d98435cd-1005-42a5-a775-60b86ff7a080", + "location_id": "36bc721b-fd3a-4193-afe5-6f60ae22ad1d", + "payload": { + "description": "\u2022 Golden Rainbow for individuals over 50, see drop-in schedulet at pridecentersi.org/golden-rainbow-senior-programming and contact Nicholas at (718) 808-1359 or at nrobinson@pridecentersi.org for food and care management (through Sage) questions\n\u2022 Support groups for different populations over 13 years old, see more at pridecentersi.org/support-groups\n\u2022 Services for individuals 13-25-years-old, see the website for the calendar" + } + }, + { + "service_id": "d98d96de-d055-4066-a224-ddae60548df1", + "location_id": "a500982e-c7bc-49af-baf0-0831cf873ec7", + "payload": { + "description": "Services include:\n\u2022 HIV and STI treatment and testing\n\u2022 Medication Abortion\n\u2022 Reproductive Health\n\u2022 Vaccinations\n\u2022 Oral PreP appointments, schedule at patienteducationgenius.com/dohmh-phone" + } + }, + { + "service_id": "d9a03500-06c0-4362-bac2-987a806064d0", + "location_id": "e2dbd70e-44e3-4cc2-9c55-58331a42c568", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Waitlist for new clients, but call to join.\n\u2022 Priority is given to local residents.\n\u2022 Please bring an ID and proof of income, and indicate the family size at your first appointment." + } + } + }, + { + "service_id": "d9f16945-2efe-4a36-ac2d-731832659d5f", + "location_id": "3e832d88-c033-403d-8e7d-29c4808ff92c", + "payload": { + "description": "Members can receive:\n\u2022 Home-delivered meals through CityMeals or New York Foundation for Senior Citizens (NYFSC), call Encore, or them directly at (212) 687-1234 or (212) 962-7559, available only to homebound people\n\u2022 Lunch, optional donation is $2\n\u2022 Financial navigator and case manager:\n\u2022 \u2014 Ask your case manager to enroll you in friendly visiting, if you reside in 4th Community District\n\u2022 It is a designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "da45dc2f-fa57-4ce5-8459-a2e530e3603a", + "location_id": "5d9e39bd-01b1-4103-9091-b30371f3fd4f", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health Consultation\n\u2022 Psychiatric Services\n\u2022 Short-term Individual Counseling\n\u2022 Substance Use Assessment and Referral\n\u2022 Transgender Counseling and Education" + } + }, + { + "service_id": "da7e8568-6919-4027-ae76-5ea1ba09a05c", + "location_id": "3d732b69-ab24-4a29-9471-72c9e0936290", + "payload": { + "description": "\u2022 Free services for survivors of domestic abuse, sexual violence, stalking, and human trafficking. FJC locations provide public access to community service providers and social and civil legal service providers\n\u2022 The Staten Island District Attorney\u2019s office is also on-site\n\u2022 YourPeer has many DV providers on the map\n
 \u2014 If you need supportive housing, you might qualify for services from New Destiny (if your most recent DV incident occurred within the calendar year except December). Inquire about the immigration status and other criteria for eligibility at the FJC." + } + }, + { + "service_id": "dab0f905-c703-409c-a299-65c5c5b22925", + "location_id": "312adc61-30ef-4216-8b60-91a9835cf977", + "payload": { + "description": "\u2022 Perishable and non-perishable items provided each week.\n\u2022
\n\u2022
\n\u2022 Services are only available for current employees of the Backstretch village in the New York thoroughbred horse racing industry." + } + }, + { + "service_id": "dab70750-1687-4b41-8e21-3f5d42a18153", + "location_id": "bf0b127c-c889-4eaf-99f5-abdb2db7763a", + "payload": { + "description": "Services include:\n\u2022 HIV and STI treatment and testing\n\u2022 Medication Abortion\n\u2022 Reproductive Health\n\u2022 Vaccinations\n\u2022 Oral PreP appointments, schedule at patienteducationgenius.com/dohmh-phone\n\u2022 Doxy PEP" + } + }, + { + "service_id": "dad40508-831f-448d-a70c-fe5c14f257ad", + "location_id": "7b3ffdaa-cb5a-4e1c-b0ae-e86c133a926b", + "payload": { + "description": "Older adult centers (there are others in Manhattan and Upstate) help visually impaired and blind individuals navigate the Braille language and utilize computers and other accessibility tools. Priority is given to people over 60." + } + }, + { + "service_id": "dae7cfe9-59e2-4342-8c06-0012d02c2d4e", + "location_id": "635d2e2d-1300-4a8e-9606-4143b7d8a066", + "payload": { + "description": "Service includes:\n\u2022 Free distribution of food bags to individuals and families in need" + } + }, + { + "service_id": "daf7abf0-f5fe-4191-a794-235b420596df", + "location_id": "812de1b3-5a53-4eb8-af78-8c00e0d03bcb", + "payload": { + "description": "\u2022 Child Care for custodians visiting the court Monday through Friday 8:30 AM - 1:00 PM and 2:00 PM - 4:30 PM. Only available to children from 6 weeks to 12 years of age. Call (718) 618-2191\n\u2022 or walk in\n\u2022 Orders of protection, safety planning, and case management for survivors of domestic violence. The age requirement is 17+. Come early if you wish to walk in, or call (718) 590-2371 to enroll\n\u2022 Crime victim assistance. Assistance to clients living in the Bronx of NYCHA and Homebase by providing letters of support for emergency transfer. Call (718) 590-2355 to inquire" + } + }, + { + "service_id": "db59996f-e376-432c-a6f0-3d7c6a63f7d9", + "location_id": "7f7671f7-0183-43d4-9cf8-18fe018d5162", + "payload": { + "description": "CCA\u2019s Mitigation Services assists criminal defense attorneys with advocacy at all stages of the criminal justice process, including equities, sentencing memoranda, and other functions upon request." + } + }, + { + "service_id": "db5fdd1c-6a48-4bba-8fac-77555f8816f8", + "location_id": "5074cb6a-cdc2-406d-86fa-a19fbc923609", + "payload": { + "description": "\u2022 NYS AHEC Scholars is a year-round program offered to people enrolled in health-related undergraduate degrees graduating in two years. Apply here\n\u2022 Summer programs, apply at bwahec.org/apply-now:\n\u2022 Summer Health Internship Program (SHIP) for high-schoolers to intern at a hospital and be shown different medical specialties they might pursue later\n\u2022 Community Health Experience (CHE) for graduate medical students and public health students, call to see if your degree qualifies" + } + }, + { + "service_id": "dbce7349-9b03-4fd1-a860-20e2058c487d", + "location_id": "7cc41f0a-b476-4146-9b3f-15397a586519", + "payload": { + "description": "Services include:\n\u2022 Art Class\n\u2022 Chess\n\u2022 Computer Class\n\u2022 Fitness Classes\n\u2022 Gardening\n\u2022 Martial Arts Classes\n\u2022 Meals\n\u2022 Movies" + } + }, + { + "service_id": "dc7a726a-dc93-4237-a5e2-71ee4b3303d5", + "location_id": "28bf9cc3-d00f-4a08-aa30-19ba0dd976d7", + "payload": { + "description": "Services include:\n\u2022 After School\n\u2022 Aquatics\n\u2022 Disability Services\n\u2022 Early Childhood\n\u2022 Jewish Life Services\n\u2022 Social Services\n\u2022 Sports and Fitness\n\u2022 Summer Camp\n\u2022 Youth Services" + } + }, + { + "service_id": "dd0de86b-0c6d-4bf2-b473-e4dd7443ee34", + "location_id": "e264284e-35bf-4894-8a8c-140e5cba1ce2", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Free for New York City residents of all ages. Walk-in or call. Email info@adhikaar.org for more information." + } + } + }, + { + "service_id": "dd279810-ed55-4fa3-9d82-4a687e89ee37", + "location_id": "e341510d-cd66-4be9-acb1-dfc28e96be33", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Anyone of age can join: walk in with an ID. Email Urantia, Director, at uramirez@riseboro.org, if you have any questions." + } + } + }, + { + "service_id": "dd2e09f7-00f9-4822-aeba-d6a59a7e019f", + "location_id": "058a39a5-c0d0-4ea0-b331-10b85fefe8d5", + "payload": { + "description": "\u2022 12-week career course. Participants are paid a stipend of up to $125 per week.\n\u2022 Certifications include:\n\u2022 2-hr Drug/Alcohol Awareness\n\u2022 EPA 608\n\u2022 8-hr Fall Prevention\n\u2022 GPRO Mechanical\n\u2022 OSHA 30 Construction" + } + }, + { + "service_id": "dd733e25-1442-4306-b745-db3c2dc9b2da", + "location_id": "e26dbb99-2732-4007-aa10-b9dd57c94876", + "payload": { + "description": "The transitional housing programs provide customized care. Housing Programs include:\n\u2022 Nancy's Place is for youth whose mental illness is an obstacle to their independence\n\u2022 Raphael\u2019s Life House is for pregnant and parenting female-identifying youth with infants\n\u2022 Rights of Passage Program is a supportive housing environment for youth" + } + }, + { + "service_id": "dd9905af-a33e-4ae1-bf5e-9f5fd4fa7594", + "location_id": "e14e7016-de10-4dbb-8630-25be9b5a186b", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Fresh food boxes will be distributed on a first-come-first-serve basis and one box per household\n
 \u2014 Please wear mask/face covering" + } + } + }, + { + "service_id": "ddb2aa28-1e88-4769-b255-ae74f6021d1b", + "location_id": "d6a2ae56-c8ea-4659-98ff-9891aec5b35d", + "payload": { + "description": "Services include:\n\u2022 Case Management\n\u2022 Health and Nutrition Education\n\u2022 Mental Health Services\n\u2022 Prenatal Care\n\u2022 Primary Care\n\u2022 Telehealth", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call to schedule an appointment" + } + } + }, + { + "service_id": "ded2c0e7-f151-4d60-b31a-66e67fea89e0", + "location_id": "8a3136e8-75fc-49fd-abd0-7a76566de7d5", + "payload": { + "description": "Services include:\n\u2022 Assessment and Treatment Planning\n\u2022 Clinical Support Services\n\u2022 Crisis Intervention\n\u2022 Health Screenings and Referrals\n\u2022 Medication Education and Therapy\n\u2022 Post-Discharge Follow-Up\n\u2022 Referral and Discharge Planning\n\u2022 Rehabilitative Readiness Development\n\u2022 Symptom Management" + } + }, + { + "service_id": "ded99257-e46c-4d50-8126-629c6aedf9e3", + "location_id": "b8daa8cd-d6cf-40b3-b162-07aceb9a304b", + "payload": { + "description": "Services include:\n\u2022 Emergency Department\n\u2022 Pride Center for anyone over 16, call (718) 334-LGBT ((718) 334-5428) or walk in Monday through Friday 9:00 AM - 5:00 PM:\n
\u2014 HIV and STI testing\n
\u2014 Gender Affirmative Hysterectomy, Facial Feminization, and HRT\n\u2022 Infectious disease clinic: HIV treatment, injectable and oral PreP, PEP. Tuberculosis treatment. Monday through Friday 9:00 AM - 5:00 PM, no walk-ins. To enroll, call the health educator at (718) 334-5277, for appointments, call (718) 334-3969\n\u2022 Pharmacy\n\u2022 WIC\n\u2022 ACT Treatment\n\u2022 Allergy (All Ages)\n\u2022 Ambulatory Surgery\n\u2022 Anticoagulation\n\u2022 Audiology\n\u2022 Blood Donor Program\n\u2022 Breast Care Surgery\n\u2022 Breast Procedures\n\u2022 Cardiology (All Ages)\n\u2022 Cardiac Cath Lab\n\u2022 Neurology\n\u2022 Diagnostics\n\u2022 Clinic\n\u2022 Employee Occupational Health\n\u2022 Endocrinology (All Ages)\n\u2022 ENT\n\u2022 Faculty Practice\n\u2022 Gastroenterology\n\u2022 General Surgery\n\u2022 Genetics (Pediatrics)\n\u2022 OBGYN Surgery\n\u2022 OBGYN\n\u2022 Hand Surgery\n\u2022 Hematology\n\u2022 Oncology (All Ages)\n\u2022 Infusion Center\n\u2022 IR Clinic\n\u2022 Methadone Maintenance\n\u2022 Mobile Crisis\n\u2022 Nephrology (All Ages)\n\u2022 Neurology (All Ages)\n\u2022 Neurosurgery\n\u2022 Nuclear Medicine\n\u2022 Nutrition\n\u2022 Occupational Therapy\n\u2022 Ophthalmology\n\u2022 Oral Surgery\n\u2022 Orthopedics\n\u2022 Outpatient Lab\n\u2022 Pain Management\n\u2022 Palliative Care\n\u2022 PCC Department\n\u2022 Psychiatry\n\u2022 Physical Medicine & Rehab\n\u2022 Physical Therapy\n\u2022 Plastic Surgery\n\u2022 Podiatry\n\u2022 Pride Center\n\u2022 Primary Care (All Ages)\n\u2022 Pulmonary (All Ages)\n\u2022 Pulmonary Function\n\u2022 Pulmonary Tuberculosis\n\u2022 Rheumatology\n\u2022 School Health\n\u2022 Behavioral Health\n\u2022 Social Work (Kids)\n\u2022 Speech Therapy\n\u2022 Surgery (Kids)\n\u2022 Urology (All Ages)\n\u2022 Vascular Surgery\n\u2022 Virology" + } + }, + { + "service_id": "df1c4e2e-80d4-4ef0-8d31-004663b0442f", + "location_id": "bd078a40-e921-46d6-93f6-a829ae003c7a", + "payload": { + "description": "Services include:\n\u2022 Individual Counseling\n\u2022 Methadone Maintenance\n\u2022 Outpatient Treatment\n\u2022 Referrals\n\u2022 Skills Training\n\u2022 Support Groups" + } + }, + { + "service_id": "df55a55b-f6e4-45a5-9492-eef2f05a6004", + "location_id": "12ef58c7-c1c8-4f50-9a2c-716be4f25fc0", + "payload": { + "description": "Available food, showers, laundry, personal care supplies, and respite" + } + }, + { + "service_id": "dfb21556-5e01-496d-99e3-a99c6c6dfbef", + "location_id": "ffcb6459-4835-4e36-ba98-01a9400b29eb", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "For information about this program, email Raquel Torres at rt2049@hunter.cuny.edu" + } + } + }, + { + "service_id": "e00da016-abb5-43d6-bce0-3211007842a1", + "location_id": "fe8c90f1-1d9c-4f64-9274-b5384b8d27d1", + "payload": { + "description": "Services include:\n\u2022 HIV and STI treatment and testing. Also, open Tuesdays from 5:00 PM to 7:00 PM for asymptomatic testing\n\u2022 Reproductive Health\n\u2022 Vaccinations\n\u2022 Oral PreP appointments, schedule at patienteducationgenius.com/dohmh-phone" + } + }, + { + "service_id": "e06ad9d2-d874-4d81-97d2-ffc5a84139b5", + "location_id": "32e551e3-5f4b-4d2a-bbce-72de2ac663df", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Counseling\n\u2022 Detoxification\n\u2022 Individual, Group and Family Therapy\n\u2022 Medication-Assisted Treatment\n\u2022 Psychiatric Treatment\n\u2022 Services for Adolescents" + } + }, + { + "service_id": "e0abf270-e940-4fd7-bf41-6a1f2f35a0e8", + "location_id": "2d36a0a0-cdc9-44b6-89e8-eb5ddc6b2068", + "payload": { + "description": "Services include:\n\u2022 Annual Check-Ups\n\u2022 Immunizations\n\u2022 Pediatrics\n\u2022 Primary Care" + } + }, + { + "service_id": "e0db6923-6fec-4e65-a8e2-395f8dff6ad4", + "location_id": "f2b78ee8-468a-494f-8198-4fb2fe534cf7", + "payload": { + "description": "\u2022 Cold tacos, you can take to-go or reheat here.\n\u2022 If you need a pantry, you have to be an active participant (use their classes) and make an appointment. You have to attend a class on how to cook food on a budget and then come in for the pantry." + } + }, + { + "service_id": "e1055dda-a0bb-47a0-9340-05be729d54f3", + "location_id": "a9ca5988-d1b7-4441-9647-9cb7531c58bf", + "payload": { + "description": "\u2022 Client choice of groceries, depending on availability. This service is typically available on the 1st and 3rd Saturday of the month. You must email or call to make an appointment at food@rmmnyc.org or (212) 594-4464. It is RECOMMENDED to make a weekday appointment via the Plentiful system; please text \u201cFOOD\u201d to 726-879 (\u201cPANTRY\u201d) or use the Plentiful mobile app.\n
Walk-ins are permitted from 11:15 AM to 11:45 AM on a first come, first served basis. However, after all appointments have been met, no food may be available." + } + }, + { + "service_id": "e109b45c-0958-4a06-bbe0-66602b26942f", + "location_id": "6d698d15-4573-4d13-8e08-d81bfe51ef5b", + "payload": { + "description": "All immigration cases are considered." + } + }, + { + "service_id": "e12e6896-a51c-4997-a00b-0e86451b1849", + "location_id": "ff310f36-b476-4426-b238-6e0cf97828fa", + "payload": { + "description": "Services include:\n\u2022 Annual Physical Examinations\n\u2022 Health Education\n\u2022 Individual and Group Counseling\n\u2022 Infectious Disease Services\n\u2022 Medication-Assisted Treatment\n\u2022 Mental Health Assessment and Referral\n\u2022 Primary Care\n\u2022 Testing and Lab Work\n\u2022 Vocational Testing, Training, and Counseling", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk in or call during opening hours to schedule an intake appointment\n\u2022 You can contact the intake department Monday through Friday, 6:00 AM \u2014 2:00 PM\n\u2022 Opioid treatment options include Methadone and Suboxone" + } + } + }, + { + "service_id": "e135b498-6127-4fb7-9edc-6d4983cd018c", + "location_id": "7f7671f7-0183-43d4-9cf8-18fe018d5162", + "payload": { + "description": "\u2022 Academic Tutoring\n\u2022 Acting and Drama Therapy\n\u2022 Literacy and Writing Workshops\n\u2022 One-on-one and Group Counseling\n\u2022 Workshops focused on character development, conflict resolution, and more" + } + }, + { + "service_id": "e1d02ee7-2a29-4b8f-8b1f-87895f434411", + "location_id": "204b6b1e-df30-414c-b288-03c2a6e47f1e", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 HIV Primary Care\n\u2022 Mental Health Services\n\u2022 Pharmacy Assistance Program" + } + }, + { + "service_id": "e286213a-3665-497f-811e-3a60697de053", + "location_id": "1cbf6d43-8be6-44ab-8750-056e1a41d0f7", + "payload": { + "description": "Programs (virtual and in-person) include:\n\u2022 Free mental health support and short-term counseling\n\u2022 Peer-led support and referral resources\n\u2022 Connections to affirming providers\n\u2022 Family counseling\n\u2022 Caregiver support\n\u2022 Workshops for family and caregivers\n\u2022 Gender-affirming letters for care\n\u2022 and more\n
\n
\n\u2022 Please note that anyone in crisis will be referred to another provider or may dial or text 988." + } + }, + { + "service_id": "e29dd1bd-69f5-405a-8615-6428fcd3f489", + "location_id": "dd48591b-ae2d-4abc-a985-f5a7a0697994", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Walk in, call ?extension 151?, or email cpayton@etny.org to enroll. Adults only" + } + } + }, + { + "service_id": "e2b3c22d-96e4-4cca-a4df-da13950048d2", + "location_id": "36bc721b-fd3a-4193-afe5-6f60ae22ad1d", + "payload": { + "description": "\u2022 Behavioral Health, see interest form and details at pridecentersi.org/counseling\n\u2022 and contact Ana (718) 808-1358 or River at (718) 808-1354\n\u2022 Case Management, see interest form and details at pridecentersi.org/tge-support-services\n\u2022 HIV Testing and Counseling, see interest form and details at pridecentersi.org/hiv-prevention and contact Nick Robinson at (718) 8081359 or at nrobinson@pridecentersi.org" + } + }, + { + "service_id": "e2d54368-38e1-4134-8163-518a8bd936fe", + "location_id": "e9b58317-815a-4875-a6bb-dbd2cfbbfc66", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Meals are distributed between 2 PM- 3 PM" + } + } + }, + { + "service_id": "e300b20d-0951-46ce-94fb-c515b49d4ea4", + "location_id": "5cb6687f-b5d5-4142-8e4f-e08ab632893c", + "payload": { + "description": "\u2022 Soccer, basketball, open gym\n\u2022 Trips, arts and crafts, game room, workshops\n\u2022 Employment, education (GED, college exploration), sexual education, substance use prevention" + } + }, + { + "service_id": "e342be32-fb0c-4a3a-bf10-88d92377822e", + "location_id": "e29cbd00-5b10-4c36-af94-48beaa377a48", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Must register to receive food" + } + } + }, + { + "service_id": "e3869544-9266-4210-a27a-2a0756bd1ed8", + "location_id": "394e2430-e328-49b6-8d4e-03479afa2fb6", + "payload": { + "description": "\u2022 Asylum affirmative cases and court representation\n\u2022 WAVA, Green Card, Special Juvenile Status (SJS), Deferred Action for Childhood Arrivals (DACA), only renewals, the government does not accept new cases, and Citizenship petitions\n\u2022 Housing consultations (tenant representation in court is possible)\n\u2022 Employment consultation and representation. Call (877) 52-LABOR (52267) (undocumented workers are welcome and Spanish language is available)\n
 \u2014 Cases involving ICE incarceration are not accepted\n
 \u2014 For more information, visit catholicmigration.org." + } + }, + { + "service_id": "e41a55f1-577c-4bc7-be28-608af7e0dcad", + "location_id": "3b9a0d70-d047-4b1a-b6cc-c854d0246c04", + "payload": { + "description": "\u2022 20-week cohort that provides both academic instruction and internship opportunities to young people looking to obtain their high school equivalency diploma.\n\u2022 There are two cohorts each year in February and September.\n\u2022 Young People enrolled in this program can earn up to $375 weekly based on their internship attendance." + } + }, + { + "service_id": "e4b5351c-0cae-4179-9ee8-5648da3ac08f", + "location_id": "ce1819e7-2e43-4629-ae60-c16a545d1263", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Access Guided Court Forms: Allows users to answer easy-to-understand questions in plain language. Their answers are mapped onto the fields of the form, generating a completed document in the PDF format accepted by the court\u2019s electronic portal\u2014making completing and uploading essential court documentation possible from any web-connected device.\n\u2022 Access Family Law Navigator: Parents and caregivers answer questions about their family law topic and are given a detailed, customized report with next steps they should take \u2014 including forms and petitions they need to fill out." + } + } + }, + { + "service_id": "e4bdbb1d-53e8-400e-84a5-32d1fd710206", + "location_id": "58a25cc2-13e0-4372-bd3c-070b04882a6e", + "payload": { + "description": "\u2022 It is free childcare for eligible individuals.\n\u2022 See the list of eligibility criteria at schools.nyc.gov/enrollment/enroll-grade-by-grade/head-start or for more extended guide on application, visit enrollmentsupport.schools.nyc/app/answers/detail/a_id/3704" + } + }, + { + "service_id": "e4c93a22-0903-412d-a62c-93c34af3bf1f", + "location_id": "cb3d9003-ce74-41e8-bb57-c961b94f80fc", + "payload": { + "description": "Services include:\n\u2022 Breast Imaging\n\u2022 Nutrition\n\u2022 OBGYN\n\u2022 Ophthalmology\n\u2022 Podiatry\n\u2022 Primary Care (All Ages)\n\u2022 Dental" + } + }, + { + "service_id": "e5a2b5ff-8fce-4c9f-a90a-36efe1f01ffb", + "location_id": "db8bee0a-a962-4833-94d3-1945c1971fbb", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Food is available by appointment only. Guests must register before they make appointments.\n\u2022 Register by coming to the office or calling.\n\u2022 After business hours, call (347) 852-2306.\n\u2022 Open weekly and closed in late August. The schedule may change during the holidays." + } + } + }, + { + "service_id": "e5c7d8b6-a1e2-47fe-80de-eb5f6de2e654", + "location_id": "933467c2-741f-4f43-820f-69a0e3497675", + "payload": { + "description": "A mental health volunteer-advocate who would support emotionally and guide you through the process." + } + }, + { + "service_id": "e64e0d22-72ea-49e5-b616-7a6e4bad160c", + "location_id": "3b14d00b-eaea-4be6-9c49-95053ec6dad0", + "payload": { + "description": "\u2022 Family Psychotherapy\n\u2022 Group Therapy\n\u2022 Individual Therapy\n\u2022 Medication Management\n\u2022 AMFMHC is licensed by the Office of Mental Health (OMH)" + } + }, + { + "service_id": "e69bf678-c862-4a9e-b98a-760fa21529e7", + "location_id": "62789195-29ac-4a5b-9843-907fe7a267c2", + "payload": { + "description": "\u2022 Osborne offers OSHA training, janitorial, and maintenance weekend jobs. If you are qualified to do jobs that require more skills, case managers at Osborne can help you get a referral and prepare your resume. Employment requires authorization to work in the U.S.\n\u2022 A computer lab might be available." + } + }, + { + "service_id": "e6f29dc7-1d23-42e8-9aaf-c716aa82df36", + "location_id": "a15ef6b6-832a-40bc-af9b-ab877bb71926", + "payload": { + "description": "\u2022 Job fair invitations\n\u2022 Housing Connect NYCHA applications (US citizenship might be required)\n\u2022 Legal aid referrals for housing, immigration, and criminal matters" + } + }, + { + "service_id": "e7e6a54b-e5a8-4c24-b32d-901ac01fee88", + "location_id": "daa99106-a612-485d-86cc-621e1dad64d4", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Art Therapy\n\u2022 Behavior Modification\n\u2022 Crisis Intervention\n\u2022 Family Therapy\n\u2022 Individual Therapy\n\u2022 Medication Evaluation and Management\n\u2022 Play Therapy\n\u2022 Psychiatric Evaluations", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Call to schedule an appointment\n\u2022 Most health insurance plans, including Medicare, Medicaid, and Private Pay, are accepted\n\u2022 Sliding scale fees are available as needed" + } + } + }, + { + "service_id": "e8469aa8-c9ed-4d23-93dd-1c54ada7782c", + "location_id": "c2d48e67-4673-4750-993c-2d2575b603da", + "payload": { + "description": "Services include:\n\u2022 Adult assessments on substance use level\n\u2022 Referrals to further treatment\n\u2022 Teen intervention program for individuals in the early stage of substance use who do not demonstrate dependence or daily use\n\u2022 Youth assessments on substance use level" + } + }, + { + "service_id": "e86a61a9-189d-4ce4-b995-d10b7259ff15", + "location_id": "de3c23b0-1050-43a1-a8d5-80fc9c7969b9", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 On your first visit, you must register with a New York State ID. After that, you will be given appointments.\n\u2022 Bring a shopping cart" + } + } + }, + { + "service_id": "e86a982d-8de0-4175-aa11-b81b644652d2", + "location_id": "af2f0bd3-6a66-4322-896e-f8b8ae67208b", + "payload": { + "description": "\u2022 Career Readiness and Training Programs for young adults' educational and employment pursuits.\n\u2022 Populations served include:\n\u2022 High-school-aged youth (age 14+) who wish to explore options for work\n\u2022 Out-of-school youth ages 16-25 in need of educational and employment supports\n\u2022 People with limited work history\n\u2022 Young adults transitioning from school to work\n\u2022 Young adults with legal issues needing alternative programs" + } + }, + { + "service_id": "e86b1ac1-9b1f-42cb-a9a6-0b71df0ddc37", + "location_id": "8bdc072d-05ac-497a-b531-a00703d8da3e", + "payload": { + "description": "Benefits Screenings include:\n\u2022 Child Care\n\u2022 General Assistance\n\u2022 Health Insurance\n\u2022 Home Energy Assistance Program (HEAP)\n\u2022 SNAP\n\u2022 SSI and SSD\n\u2022 WIC" + } + }, + { + "service_id": "e90dafad-b162-4e92-ab3d-3078e37d4c51", + "location_id": "a6640482-5d4d-425b-88d4-c6da1a5d2b37", + "payload": { + "description": "\u2022 A temporary solution for female-identifying persons, struggling with substance use. You do not have to bring substance use history documents or be currently using them.\n\u2022 Eligibility will be determined during an interview. The length of stay is 9 months and the goal is to find employment and stable housing." + } + }, + { + "service_id": "e9b025b4-d90b-439a-9e6c-2c3ad6d13ff0", + "location_id": "bc8ff479-9c1f-4d6d-98a5-ba457ff07240", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Benefit and Entitlement Counseling\n\u2022 Case Management\n\u2022 Information and Referrals\n\u2022 In-Home Assessments and Home Visits" + } + }, + { + "service_id": "e9c1bbb3-f21a-48a7-9148-65c155e65ece", + "location_id": "95c668f1-8c59-430f-a1ae-e64d396a7f5d", + "payload": { + "description": "Services include:\n\u2022 Alternatives to Incarceration\n\u2022 Benefits Assistance\n\u2022 Dual Diagnosis Program\n\u2022 Family Counseling\n\u2022 Individual and Group Therapy\n\u2022 Medication Treatment\n\u2022 Psychiatric Evaluation\n\u2022 Vocational and Educational Referral Services" + } + }, + { + "service_id": "e9c4915b-7c80-4196-9b67-ec1715489793", + "location_id": "4dcd483d-eef8-4427-adb4-d6376f2ff1d8", + "payload": { + "description": "\u2022 College Prep\n\u2022 Entrepreneurship\n\u2022 Financial Literacy\n\u2022 GED\n\u2022 Life Skills" + } + }, + { + "service_id": "ea1fb09f-1fed-4b3f-b121-9d8ff645117a", + "location_id": "5465bc20-996d-4ec3-a8b8-363a6c0a5787", + "payload": { + "description": "\u2022 \u2014 Fee-based mild-moderate dementia treatment \"Social Adult Day Care\" for everyone (all ages and counties) 9/9:30 AM - 2 PM\n\u2022 \u2014 Free services for members from community districts 8, 11, and 13:\n\u2022 Case management:\n\u2022 * You can request home-delivered meals $2 voluntary donation\n\u2022 Entitlements (Tax rebates, Medicaid HEAP). If you are a non-citizen, please see if you might qualify for this service.\n\u2022 Transportation to medical appointments within Eastern Queens/Nassau County ($10 voluntary donation), Transportation to Stop&Shop and other stores around\n\u2022 Breakfast is at 9, Lunch is at 11, $2.50 voluntary donation\n\u2022 Exercises, seminars, and other activities throughout the day" + } + }, + { + "service_id": "eae9cd79-e5fb-4e55-a338-9061f36197dc", + "location_id": "ff9772d0-e2c8-4698-8cf6-e9a4f79879c9", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "(718) 508-3107 call to enroll." + } + } + }, + { + "service_id": "eaecdd3c-3ed8-4548-b651-109d6c503e99", + "location_id": "3ea8f079-8943-4c7e-9060-c0c83ca4e494", + "payload": { + "description": "Services include:\n\u2022 Psychiatry and individual and group therapy" + } + }, + { + "service_id": "eaee5e3d-3432-4e36-85f2-96dc52e338d3", + "location_id": "2b5c05ee-70f2-43f8-ad50-3d12f1b1c70c", + "payload": { + "description": "\u2022 People can take whatever they need from the fridge\n\u2022 Typically operated by community volunteers, so not always reliable" + } + }, + { + "service_id": "ec26bbe0-6bd3-402e-b88a-57206d4ccc5a", + "location_id": "12ef58c7-c1c8-4f50-9a2c-716be4f25fc0", + "payload": { + "description": "OnPoint is a safe place to forward and retrieve mail." + } + }, + { + "service_id": "ec64eb5c-d35b-4c92-9c91-28fee4ee8ae4", + "location_id": "26062d99-3ae2-4ea8-a941-638bc3fbf659", + "payload": { + "description": "\u2022 Primary care health facility focused on caring for the health needs of the LGBTQ2IA+ community.\n\u2022 Services include:\n\u2022 Birth control and pregnancy testing\n\u2022 HIV and STI treatment, testing, and prevention\n\u2022 Hormone therapy\n\u2022 GYN\n\u2022 Pap smears\n\u2022 Referrals for gender-affirming surgery" + } + }, + { + "service_id": "ecae7186-2a27-4f33-8dce-7c09be22fb57", + "location_id": "898c0d4a-96d9-4e40-92e0-a380795050c4", + "payload": { + "description": "\u2022 Older Adults (60+) / VOLS Senior Law Project Help Line: (347) 521-5704; seniorlaw@volsprobono.org\n\u2022 Veterans (60+)/VOLS Senior Law Project Help Line: (347) 521-5704; veteranslaw@volsprobono.org\n\u2022 Immigrant Youth/ VOLS Immigration Project Email: iph@volsprobono.org\n\u2022 Benefits Law Project Help Line: (347)-521-5720" + } + }, + { + "service_id": "ed34bb13-93c1-4567-95cc-7addc01f1c7d", + "location_id": "8ddb49a3-a9a3-4c74-9491-0cdfe630feac", + "payload": { + "description": "\u2022 $200 fee in addition to the government fee to apply for citizenship\n\u2022 $80 fee to process a fee waiver application for low-income applicants\n\u2022 Additional cases are considered: Work Permit, TPS, Travel Document, Green Card, Family Petition\n\u2022 Citizenship classes are offered via registration over a span of five Wednesdays 6 PM - 8 PM\n\u2022 ESL and GED classes are offered Thursday and Friday from 7 PM to 9 PM via registration" + } + }, + { + "service_id": "ed9dec29-8662-4727-ab72-dbd606a30126", + "location_id": "4e54acef-b0a0-450a-8b05-f30b44866120", + "payload": { + "description": "Services include:\n\u2022 Pro Se asylum support (no legal representation), email immigration@masany.org or submit this form\n\u2022 Free Legal Services for Undocumented Individuals*\n\u2022 Immigration Application Review\n\u2022 *DACA update: only renewals are available, the government does not process new cases, but can accept your application" + } + }, + { + "service_id": "eda9b697-061e-42f8-bfea-e4364e1a45c0", + "location_id": "49875c1b-89fd-4c3a-8b16-4dda33995e01", + "payload": { + "description": "Services include:\n\u2022 Residential: group homes (brownstones for 3 people in every borough except Staten Island), ISS (Independent Support Services) apartments with limited support, like instruction on how to cook, only available to individuals who are able to work. NYS is offering a $2,100 stipend or \"voucher\" to cover the rent.\n\u2022 Day Rehab\n\u2022 Community Rehab\n\u2022 Employment\n\u2022 Behavior Analysis\n\u2022 Grief Counseling" + } + }, + { + "service_id": "ee0113c0-d1de-41c9-8aee-5b2daadb0923", + "location_id": "ed360813-9f1f-4964-b7e3-cb72a5813db5", + "payload": { + "description": "Services include:\n\u2022 Medication management for opioid use disorder\n\u2022 Psychiatric services\n\u2022 Harm reduction education\n\u2022 Individual and group counseling\n\u2022 Medical services, including hepatitis C and HIV assessment and treatment\n\u2022 Career and education counseling" + } + }, + { + "service_id": "ee102637-ce0c-4571-83f6-15e50899d637", + "location_id": "cecb5edb-7da6-4523-b158-c44aa3f0a03f", + "payload": { + "description": "A designated cooling center during the Summer when the Code Red is declared (when the temperatures are > 95\u00b0F/35\u00b0C for 2 or more days or 100\u00b0F/37\u00b0C at any point) for people of age only, see locations allowing pets and people of other ages at finder.nyc.gov/coolingcenters/locations" + } + }, + { + "service_id": "ee2d6c39-cb11-44a2-8232-e5b3f65ec59e", + "location_id": "cb308a32-7a53-43b3-853c-a7df79b173d4", + "payload": { + "description": "\u2022 Services include\n\u2022 At-Home HIV Test Delivery\n\u2022 Behavioral Health Services\n\u2022 Buprenorphine Treatment\n\u2022 HCV Care and HIV Care\n\u2022 LGBTQIA2S+ Health Initiative\n\u2022 PrEP/PEP\n\u2022 Primary Care\n\u2022 Re-Entry Services", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 No walk-ins\n\u2022 Please call during open hours to schedule an appointment\n\u2022 The latest time appointments start is 3:45 PM\n\u2022 Round-trip MetroCards are provided to Medicaid recipients" + } + } + }, + { + "service_id": "eeb0ddea-5e1a-4059-b86c-92c19e21cb3b", + "location_id": "6781b53a-3706-4d90-a030-10eb640b66ad", + "payload": { + "description": "Services include:\n\u2022 Advocacy\n\u2022 Case Management\n\u2022 Information and Referrals\n\u2022 Safety Planning\n\u2022 Support Groups\n\u2022 Supportive Counseling" + } + }, + { + "service_id": "ef1f1ea6-3fed-4776-a3fb-7502cba3734f", + "location_id": "32e551e3-5f4b-4d2a-bbce-72de2ac663df", + "payload": { + "description": "Services include:\n\u2022 Detox\n\u2022 Discussion Groups\n\u2022 Family Programs\n\u2022 HIV Support Groups\n\u2022 Individual, Group, and Family Therapy\n\u2022 Lectures and Multimedia Education Programs\n\u2022 Medical Supervision\n\u2022 Psychiatric Services\n\u2022 Rehabilitation\n\u2022 Spiritual Care\n\u2022 Weekend Visits with Family and Friends" + } + }, + { + "service_id": "ef270870-54b7-4e92-a14e-d34412417aa9", + "location_id": "43c6d99f-4280-4010-85cb-8d7339d045dd", + "payload": { + "description": "In addition to several NYC District Offices, ACCES-VR by NYSED has satellite Offices, Please see more locations on YourPeer Map. Referrals, peer support, and independent living, Reimbursement for career advancement training, reasonable accommodation (contact OHRMRA@NYSED.gov), and transportation (offered based on your income, might require you to have a Social Security Disability Insurance available to certain low-income people with disability that has an eligible immigration status), Workforce Development for those whose disability is an impediment to seeking employment (you must be legally allowed to work in the US) Applications for public benefits (immigration status and income requirements apply) Help is offered to NYC residents with physical and mental challenges. People with a criminal record of sexual violence are not served." + } + }, + { + "service_id": "ef36d45a-da17-4f6c-9f4f-0b453b241708", + "location_id": "d8c94dc6-8248-4e22-86e9-9d0eea4407d1", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Counseling\n\u2022 Dental\n\u2022 OB/GYN\n\u2022 Pediatrics\n\u2022 Podiatry\n\u2022 Preventative Care\n\u2022 Psychiatry\n\u2022 Ophthalmology", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 People of all ages are welcome\n\u2022 Walk-ins are accepted Monday - Friday 9:00 AM \u2014 11:00 AM\n\u2022 Runaway youth can consent to healthcare if they are wards of New York State's houseless system" + } + } + }, + { + "service_id": "efab2544-9dc1-4b14-b8ce-a7b92ee9b693", + "location_id": "1a8bf546-e2a1-487f-81c2-7be38cffc2cf", + "payload": { + "description": "Services include:\n\u2022 Medication and surgical abortion until 15 weeks and 6 days of pregnancy\n\u2022 Ultrasound\n\u2022 Birth control\n\u2022 Vasectomy\n\u2022 General wart removal\n\u2022 Pap Smears and LEAP\n\u2022 Colposcopy\n\u2022 HPV Vaccines\n\u2022 GYN and Sexual\n\u2022 HIV Services\n\u2022 STI Services\n\u2022 Transgender Care" + } + }, + { + "service_id": "f0950bd0-e250-456e-9f12-547559dc52ca", + "location_id": "bdd2da43-b2fd-47fd-bc79-802298afa6f1", + "payload": { + "description": "Services include:\n\u2022 Primary care (physicals, vaccinations, etc)\n\u2022 Pediatrics\n\u2022 HIV/AIDS prevention and care\n\u2022 Women's health/gynecology\n\u2022 Dental care\n\u2022 Eye care\n\u2022 Emotional wellness (therapy, psychiatric evaluation, medication management, etc)\n\u2022 Opioid addiction treatment\n\u2022 Sexual and reproductive care (STI testing, family planning, contraception, prenatal care, etc)" + } + }, + { + "service_id": "f0ab87a7-3f7a-4c86-a230-fae18a77b63d", + "location_id": "49875c1b-89fd-4c3a-8b16-4dda33995e01", + "payload": { + "description": "Services include:\n\u2022 Houseless prevention,\n\u2022 Shelters,\n\u2022 Outreach services for individuals with HIV/AIDS\n\u2022 Transitional housing services and Homebase, contact sushomebase@sus.org" + } + }, + { + "service_id": "f110d4c9-f114-4b99-aaf4-4ba36955294e", + "location_id": "4764402b-c6a3-4e16-a928-5ff1455682e9", + "payload": { + "description": "Job placement, resume building, and certificate training in:\n\u2022 Online medical billing\n\u2022 Encoding\n\u2022 QuickBooks\n\u2022 English Classes morning and evening (2-3 month waitlist)" + } + }, + { + "service_id": "f15cfea2-1705-47c8-91eb-6205d02dc8a6", + "location_id": "2adb1430-2eb7-47d9-a951-871e369e8a35", + "payload": { + "description": "Services include:\n\u2022 Computer Basics\n\u2022 Creating Presentations, and Multimedia Basics\n\u2022 Remote Learning Basics (Google Classroom, Zoom Features)\n\u2022 Using Excel Spreadsheets\n\u2022 Word Processing" + } + }, + { + "service_id": "f1f9f156-c51e-444b-ac1b-a975913935d8", + "location_id": "45c04f29-8e29-41cd-a7b1-1b0071b7327b", + "payload": { + "description": "\u2022 Providing free food for anyone in need through the Pantry at Evangel Church, or Grocery Delivery for those unable to attend.\n\u2022 Please note that the current wait time can be up to 4 hours.\n\u2022 Clients are advised to bring:\n\u2022 A cart that can carry 50 pounds\n\u2022 Water for hydration if waiting on line\n\u2022 An umbrella, for shade or rain protection" + } + }, + { + "service_id": "f1fb148c-51a6-4b7d-b0d4-1c7f0c95078f", + "location_id": "2cf321f3-0348-4aec-a4f0-1b45a4b2227d", + "payload": { + "description": "\u2022 The drop-in center is open during school year every Thursday 6:30 PM - 9:30 PM, see the calendar at jqy.org/events and at instagram.com/jewishqueeryouth/ . They are off one Thursday a month usually during holidays\n\u2022 Free therapy for 13-23-year-olds, schedule at jqy.org/jeremy" + } + }, + { + "service_id": "f24252b9-f60f-4a53-93f4-100dcfa08f05", + "location_id": "f93033ed-aae3-4353-b2e6-71d2fd4431d5", + "payload": { + "description": "\u2022 Prevocational work units\n\u2022 Employment, education, and\n\u2022 housing assistance\n\u2022 Socialization opportunities\n\u2022 Community integration supports" + } + }, + { + "service_id": "f2b6c16c-a77c-47fe-a460-58387bedc894", + "location_id": "488f5ec5-76c3-4cb2-84ac-d07db19b2e8c", + "payload": { + "description": "Services include:\n\u2022 Academic Support\n\u2022 Creative Activities\n\u2022 English classes (Tuesdays and Thursdays)\n\u2022 GED (Mondays and Wednesdays)\n\u2022 Karate Classes for Middle School Levels\n\u2022 Recreation" + } + }, + { + "service_id": "f300259f-60d5-4077-aef0-c6e92a47f25a", + "location_id": "07381fee-d70f-41ae-a309-7bada6584f74", + "payload": { + "description": "Services include:\n\u2022 Arches\n\u2022 Books to Jails Program\n\u2022 Family Matters\n\u2022 Friends to Fathers\n\u2022 Youth Leadership" + } + }, + { + "service_id": "f384db95-b914-466d-b947-b22859fdd8b8", + "location_id": "9556f7ee-8de3-4c00-b951-10195106c6c3", + "payload": { + "description": "Services include:\n\u2022 Adjustment of Status\n\u2022 Battered Spouse Waivers\n\u2022 Citizenship/Naturalization\n\u2022 Deferred Action for Childhood Arrivals (DACA), only renewals, the government does not accept new cases.\n\u2022 Family-Based Petitions\n\u2022 Representation in Immigration Court\n\u2022 Special Immigrant Juvenile Status (SIJS)\n\u2022 Temporary Protected Status (TPS)\n\u2022 T Visas and U Visas\n\u2022 Violence Against Women Act (VAWA) Petitions" + } + }, + { + "service_id": "f3d6bbed-b8b4-4b1d-88c7-6c349a6ed5ab", + "location_id": "fec234de-9b00-447d-b2fd-74c722628bc2", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Please make an appointment here or call (800) 290-7189 or 311.\n\u2022 Other locations available, NYC residents only, income requirements apply. Only available from January to April.\n\u2022 More filing options are at singlestop.org/how-to-make-an-appointment." + } + } + }, + { + "service_id": "f3ebf1e9-c74c-4050-8e6d-89490472784e", + "location_id": "ebcb060d-e1f0-4a00-b086-fbcdf8e62a77", + "payload": { + "description": "\u2022 Families can get a car seat for their infant if they need one. The pregnancy term to be eligible is 27 weeks to 6 months. Playpen eligibility is pregnancy term from 38 weeks to 6 months\n
 \u2014 The Haitian Creole classes are on the first and third Wednesday of each month from 1:30 PM to 3:00 PM.\n
 \u2014 English classes are every month on the second and last Tuesday from 1:30 PM to 3:00 PM.\n\u2022 Fatherhood Development Class, register here. Classes meet for 1.5 hours on Tuesdays and Thursdays for 16 sessions.\n\u2022 Certified Lactation Consultations Mondays, Thursdays, Fridays 10:00 AM - 2:00 PM. Call (718) 312-6136 for an appointment for postpartum and prenatal families\n\u2022 Healing Pathways to Parenting, a compassionate parenting class that will focus on psycho-educational information as well as the emotional aspects of parenting a child. Tuesdays 10:00 AM - 12:00 PM. For more information, call (718) 312-6134" + } + }, + { + "service_id": "f43cc1b4-a244-4399-be1d-6bbab8c67fb5", + "location_id": "c2e24ba7-6adf-4c87-8c7e-f11d0c44d476", + "payload": { + "description": "OASAS Services include:\n\u2022 Medication-assisted treatment (MAP) Detox, intensive and non-intensive\n\u2022 Case Management\n\u2022 Co-Occurring Disorder Counseling\n\u2022 DUI/DWI Group\n\u2022 Gender-Specific Services\n\u2022 Individual and Group Counseling\n\u2022 Psychiatric Medication Management", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Appointment only\n\u2022 Walk-ins are welcome to begin the intake process if they don't have an appointment\n\u2022 A legal guardian must accompany underage patients for their first appointment for the signature of consent\n\u2022 Uninsured people can be placed on a sliding scale\n\u2022 All sessions with the Doctor are conducted via Zoom, and evening group sessions are available\n\u2022 If you are a Medicaid or Medicare recipient, see if you qualify for a Round-Trip MetroCard upon your visit or other forms of transportation via Medical Answering Services (MAS)" + } + } + }, + { + "service_id": "f48f7d9c-646c-4f23-814d-0f2a667e2267", + "location_id": "83a01c33-8b83-42d4-887e-6794cfced947", + "payload": { + "description": "\u2022 Different education offerings are available on a changing schedule.\n
\n
\n\u2022 Some offerings include:\n\u2022 summer youth entrepreneurship\n\u2022 culinary classes\n\u2022 food handling license\n
\n
\n\u2022 Please refer to their Instagram for details." + } + }, + { + "service_id": "f4d1ef68-b094-4717-a93c-0708bc1bf8b0", + "location_id": "cb7132e8-6ef0-45e0-885c-88cb32e55910", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Please bring a bag/shopping cart\n\u2022 You may visit only once per month" + } + } + }, + { + "service_id": "f4f73390-a1db-4d61-88d3-3bd3cc59be79", + "location_id": "b7e89cc4-f8f3-4530-9fd2-cec461fc97aa", + "payload": { + "description": "\u2022 Rent arrears through HRA Homebase. You have to have a documented need (back rent) and income\n\u2022 Referrals for housing vouchers\n\u2022 Tax help January-April\n\u2022 Employment development (help to obtain security license)\n\u2022 New York City residents of all ages are eligible. Income requirements apply. Immigration status requirements apply to some of the above services. See more details here." + } + }, + { + "service_id": "f4fc8191-e32f-4c39-b85d-a04aab2c4065", + "location_id": "48ed059e-e571-40cf-8611-2011cdec7ea6", + "payload": { + "description": "\u2022 Please see their Instagram for updates on the services.\n\u2022 Crochet classes, college readiness, tax prep, and clothing pantry pop-ups.\n\u2022 Call or email nyceastharlemfec@gmail.com or eastharlemcpp@unionsettlement.org." + } + }, + { + "service_id": "f56e6b88-ae9c-4535-a9ef-abd874d084e5", + "location_id": "724c0dc9-f214-4cad-b0b6-8e8852bf0c8c", + "payload": { + "description": "Services include:\n\u2022 Family counseling, non-citizen parent support groups, and family crisis help. Families with children under 18 and pregnant women are eligible if they reside in Bay Ridge, Bensonhurst, or Sunset Park. Single adults may be considered.\n\u2022 No insurance is needed.\n\u2022 Promise NYC \u2014 vouchers for childcare for 0-13-year-olds who are undocumented and live in NYC" + } + }, + { + "service_id": "f57d20be-4afa-448b-8304-9fc06da00284", + "location_id": "11782808-9cc5-438a-b5e2-6563eb1b3d9d", + "payload": { + "description": "Services include:\n\u2022 Art Therapy\n\u2022 Family Therapy\n\u2022 Group Therapy\n\u2022 Individual Psychotherapy\n\u2022 Medication Management\n\u2022 Psychological Testing" + } + }, + { + "service_id": "f58e2d70-21ec-4b56-8bc0-c718b835017f", + "location_id": "dcda3fd8-c438-4b89-b5e8-c2e142be1adc", + "payload": { + "description": "Services include:\n\u2022 Family Medicine\n\u2022 Health Insurance Enrollment\n\u2022 Nutrition\n\u2022 Pediatrics\n\u2022 Primary Care", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Walk in or call to schedule an appointment\n\u2022 MetroCards are provided to those with NYS Medicaid if they aren't eligible for medical transportation\n\u2022 Sliding fee scales are available to people without health insurance" + } + } + }, + { + "service_id": "f58eaad6-5fdd-4ce4-a626-4b5b11d9016f", + "location_id": "66ec92eb-37bc-4be5-91b5-f4bc1288db24", + "payload": { + "description": "Services include:\n\u2022 Civil Justice\n\u2022 Community Engagement\n\u2022 Criminal Defense\n\u2022 Family Defense\n\u2022 Immigration\n\u2022 Policy, Advocacy, and Reform\n\u2022 Social Work" + } + }, + { + "service_id": "f5b66438-6d78-4f46-9072-6fd8f6675874", + "location_id": "38c82a69-a713-48a0-b2cd-6e07b675d94a", + "payload": { + "description": "\u2022 Asylum affirmative cases and court representation\n\u2022 WAVA, Green Card, Special Juvenile Status (SJS), Deferred\n\u2022 \u2022\n\u2022 Action for Childhood Arrivals (DACA) only renewals, the government does not accept new cases, and Citizenship petitions\n\u2022 Housing consultations (tenant representation in court is possible)\n\u2022 Employment consultation and representation. Call (877) 52-LABOR (52267) (undocumented workers are welcome and Spanish language is available)\n
 \u2014 Cases involving ICE incarceration are not accepted\n\u2022 Pro Se Asylum Clinic: submit intake here or find another location at proseplusnyc.org" + } + }, + { + "service_id": "f68c5536-afa6-4f59-be89-76c2b21858fc", + "location_id": "bb4ce3a6-89ad-4e72-996c-d8a794e282a1", + "payload": { + "description": "\u2022 English classes, contact englishschool@qchnyc.org\n\u2022 Immigration applications, contact (347) 369-2867 or (347) 965-1213, cleon@qchnyc.org or cgutierrez@qchnyc.org" + } + }, + { + "service_id": "f6bffee2-4073-488c-a144-91e07cf703ee", + "location_id": "052c0b24-b0ca-4260-b80f-f0b7313182b2", + "payload": { + "description": "Services include:\n\u2022 Lender - homeowner mortgage issues\n\u2022 Rent-freezes for low-income individuals: \u2014 DRIE (18-61 years old with a disability, living in certain types of apartments and immigration-status eligible)\n\u2022 \u2014 SCRIE (for people over 62, living in certain types of apartments and immigration-status eligible)\n\u2022 Apartment search assistance (they provide you with a management list)" + } + }, + { + "service_id": "f6dda1ca-7acf-4408-94a5-e79a5dd172a7", + "location_id": "4e54acef-b0a0-450a-8b05-f30b44866120", + "payload": { + "description": "Services include:\n\u2022 Individualized Support to Parents\n\u2022 Individualized Support to Children and Youth\n\u2022 Mental Health\n\u2022 Social Service Referrals" + } + }, + { + "service_id": "f6e14897-cbd9-4b98-a145-3f56cd9cd8c3", + "location_id": "d428c9b2-9fa9-47ff-8827-9dd8cc49f2f4", + "payload": { + "description": "Services include:\n\u2022 Adult Primary Care\n\u2022 Behavioral Health\n\u2022 Case Management\n\u2022 Dental\n\u2022 Family Planning\n\u2022 Health Insurance Enrollment\n\u2022 HIV Care and Prevention\n\u2022 OB/GYN\n\u2022 Pediatrics\n\u2022 Podiatry w/Acupuncture\n\u2022 Prenatal Care" + } + }, + { + "service_id": "f6f8ba6d-212a-4496-96e2-8bba17fe9bef", + "location_id": "3276b16e-7659-469f-b5dc-1a9d7e65ad3b", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health and Psychiatry\n\u2022 Nutritional Counseling\n\u2022 Occupational Therapy\n\u2022 Physical Therapy\n\u2022 Psychological Assessment\n\u2022 Psychosocial Evaluation\n\u2022 Psychotherapy/Counseling\n\u2022 Sexuality Assessment\n\u2022 Speech Therapy" + } + }, + { + "service_id": "f720773c-2557-4af5-bfe2-8031c4ff392f", + "location_id": "c8c4a498-e671-433a-89a6-930a4b7c7435", + "payload": { + "description": "Member day services:\n\u2022 Case management\n\u2022 Free breakfast and lunch\n\u2022 Community resources\n\u2022 Training (volunteering for Work-Ordered Day) in the following units:\n
\u2014 Business\n
\u2014 Maintenance\n
\u2014 Culinary\n
\u2014 Education\n
\u2014 Employment" + } + }, + { + "service_id": "f7623cd5-2726-4e8f-bb56-5a613096e746", + "location_id": "da5b064e-9ca5-40c8-afcc-83f44acd4afc", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call/text to enroll ?(646) 369-6276" + } + } + }, + { + "service_id": "f775f692-e8c6-4f83-9b0e-e331b7e69958", + "location_id": "b1bd74d3-6683-49c2-b119-f928e1a6f6db", + "payload": { + "description": "Services include:\n\u2022 Housing Assistance\n\u2022 New York State of Health (NYSoH) Insurance Services\n\u2022 SNAP Assistance\n\u2022 Translation Services\n\u2022 Voter Registration" + } + }, + { + "service_id": "f77d9f47-2b78-4b6d-97c8-9234182ac7eb", + "location_id": "e3c1c9dd-5da2-4f42-be63-cd03338de320", + "payload": { + "description": "Services include:\n\u2022 Children and Youth Services\n\u2022 Health Promotion\n\u2022 Housing\n\u2022 Reception and Placement\n\u2022 Refugee Cash Assistance\n\u2022 Support Services\n\u2022 Ukrainian Humanitarian Assistance\n\u2022 Afghan Legal Assistance Program\n\u2022 Unaccompanied Children Program", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Please call to schedule an appointment or send an email to cwsjerseycity@cwsglobal.org or jclegal@cwsglobal.org\n\u2022 Walk-ins are not accepted" + } + } + }, + { + "service_id": "f7df4156-d852-497e-abff-e2d05af87e19", + "location_id": "a0ceabdb-a43c-4fb1-8ced-b6338f115ad1", + "payload": { + "description": "Services include:\n\u2022 Free testing, PeP, and PreP enrollment\n\u2022 Condom distribution" + } + }, + { + "service_id": "f80525b0-48c3-490a-a347-7267d773ab3c", + "location_id": "dca671b4-6395-4948-ae91-aa9a194df3fb", + "payload": { + "description": "\u2022 Low-vision exams and prescriptions\n\u2022 Job placement, traveling training, assisting technology, independence skills" + } + }, + { + "service_id": "f8909f4d-cd23-4fd6-8276-adf37cffafdd", + "location_id": "cb9ab449-4745-436f-9fcc-725df2b81f09", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Emergency food service is available any time by phone. For emergency food, no ID is required.\n\u2022 Must be at least 18 to pick up food, or be with a parent/guardian if younger than 18\n\u2022 Pantry is open from 9 AM to 5 PM Monday through Friday by appointment only\n\u2022 Please only come if you are nearby and cannot find a better resource, as this church has no website or phone number." + } + } + }, + { + "service_id": "f8af9137-e68a-4872-929c-f921cb253e3b", + "location_id": "d9fb94fd-a0bd-452e-82cf-01de86b5644f", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Assessment and Referrals\n\u2022 Buprenorphine Detox\n\u2022 Couples and Family Therapy\n\u2022 Department of Motor Vehicle Evaluations\n\u2022 Individual Treatment and Group Therapy\n\u2022 Psychiatric Evaluation\n\u2022 Psycho-Education Group\n\u2022 Stress Reduction Group", + "eventRelatedInfo": { + "event": "COVID19", + "information": "To schedule an intake, call (212) 481-1055 x11 or email bptsw@earthlink.net" + } + } + }, + { + "service_id": "f8edfe69-8a08-4bf0-8020-420af15a4c81", + "location_id": "ef279dfe-6bbc-4a6d-a8e6-8bb5cecf7131", + "payload": { + "description": "Free distribution of fresh produce, packaged food, meat, frozen items, and more to families in NYC." + } + }, + { + "service_id": "f8fa4786-6bb2-4944-8d45-be9cac984e9d", + "location_id": "ed56854f-e8ec-40dd-83d5-8857b6386410", + "payload": { + "description": "Services include:\n\u2022 Behavioral Health\n\u2022 Children's Hospital\n\u2022 Emergency Department\n\u2022 Hospital Care and Services\n\u2022 Outpatient Substance Use Treatment\n\u2022 Primary Care\n\u2022 Specialty Medicine", + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call for primary care and specialty clinic hours" + } + } + }, + { + "service_id": "f951c642-9b8d-428e-b030-59cf78b55b19", + "location_id": "1c3a6dc6-eb27-4692-8759-08ee53b417b2", + "payload": { + "description": "Activities include:\n\u2022 Basketball\n\u2022 Chess\n\u2022 Dance\n\u2022 Drums\n\u2022 Math\n\u2022 Performing Arts\n\u2022 Piano\n\u2022 Science\n\u2022 Swimming" + } + }, + { + "service_id": "fa32cd67-acaf-44c8-8b73-8da009847bd8", + "location_id": "c5118a27-a6eb-4421-9800-6268722ae8a2", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 Open to everyone, you can come in as often as weekly.\n\u2022 Chicken and fish are often available in addition to canned goods and produce." + } + } + }, + { + "service_id": "fa3c10d6-77f5-4e69-899f-223f62ab7ac0", + "location_id": "d18f7ced-64d5-4124-ba29-51ccf8f5071b", + "payload": { + "description": "Services include:\n\u2022 Parenting Skills (12-week program for ages 12-18)\n\u2022 Youth Anger Management (12-week program for ages 12-17)", + "eventRelatedInfo": { + "event": "COVID19", + "information": "\u2022 You can walk in for an intake before the intake hours end for the day.\n\u2022 Call to get this location's intake hours.\n\u2022 Bring your health insurance card, social security number, and proof of income of the person who is supporting you financially.\n\u2022 Youth Services Intakes are by appointment. If a counselor is available at this North Shore location, you can make an appointment faster by contacting the South Shore YMCA." + } + } + }, + { + "service_id": "fa43b0fe-876a-47d3-ab75-4bb81833ebbc", + "location_id": "0dd659fb-1f8f-43af-a93d-ab8d750760c8", + "payload": { + "description": "\u2022 Resume Building: click here to receive assistance\n\u2022 Computer literacy" + } + }, + { + "service_id": "fa55ecae-f85d-4661-98a7-2c4a1095b212", + "location_id": "774de666-60bb-41b0-b062-cc8b9c35984d", + "payload": { + "description": "\u2022 HHA (Home Health Aide) and CNA (Certified Nursing Assistant) pieces of training, computer literacy, ESL, and GED\n\u2022 For access to SUNY ATTAIN (Advanced Technology Training and Information Networking) Lab, sign up here." + } + }, + { + "service_id": "fa86b3a2-27fa-4d43-ad9c-df9ee66d29aa", + "location_id": "8e815d12-3a5d-430a-8575-bba6d173a226", + "payload": { + "description": "\u2022 2:45 - 5:45 PM they pick up youth from the surrounding schools, or their parents can drop them off. Participants are divided by grades and offered activities and homework help.\n\u2022 5:45-8 PM teen programming for 11-17-year-olds: dance and photography, basketball for 11-24-year-olds.\n\u2022 Tuesday and Thursday morning senior programming for over 65: bridge and knitting.\n\u2022 Free gym is offered" + } + }, + { + "service_id": "fbd2ad7d-6180-4b1c-9dd5-18c2cf03c8f1", + "location_id": "cdf65bab-cd8d-4d79-b363-2558b570ca67", + "payload": { + "description": "Services include:\n\u2022 Addiction Services\n\u2022 Behavioral Health\n\u2022 GYN\n\u2022 Health Homes\n\u2022 Nutrition\n\u2022 Podiatry\n\u2022 Primary Care\n\u2022 Sexual Health" + } + }, + { + "service_id": "fc1f5b42-d981-402a-9937-95f2c4a74e63", + "location_id": "210cdc6e-fab9-45fd-9ef2-59c1f35ec95e", + "payload": { + "description": "Services include:\n\u2022 Anger Management\n\u2022 Cognitive Behavioral Therapy\n\u2022 Individual and Group Therapy\n\u2022 Medication-Assisted Treatment\n\u2022 Psychiatric Assessments, Treatment and\n\u2022 Medical Management\n\u2022 Relapse Prevention\n\u2022 Skills Building and more" + } + }, + { + "service_id": "fc233c5b-52e8-4e65-a6c2-6a4044c86f99", + "location_id": "29301fb5-020f-473d-9cff-70584edad23c", + "payload": { + "description": "Families are referred to the DHS PATH Intake" + } + }, + { + "service_id": "fc5850db-184b-4b73-a897-96348da63764", + "location_id": "2b315ff5-ada3-4afc-bd32-de1fbfa1e0cc", + "payload": { + "description": "Call to schedule an appointment for assistance in applying for the Housing Connect lottery, NYCHA, and Wavecrest Rentals (income and immigration status requirements apply), and tenant advocacy is also offered" + } + }, + { + "service_id": "fc6e4ccc-7811-4971-8e82-cba80b293d22", + "location_id": "7fb1ee2b-7787-4351-a5d6-5f84b9d0e8e3", + "payload": { + "description": "During the School Year:\n\u2022 6 PM - 10 PM Programming for high schoolers\n\u2022 2:30 PM- 6 PM Afterschool for K-5th grade levels\n\u2022 Saturdays candlemaking\n
\n
\n\u2022 Weekends During the Summer:\n\u2022 8 AM - 6 PM K-5\n\u2022 6 PM - 11 PM M-F, 3 PM - 11 PM Weekends for middle and high schoolers" + } + }, + { + "service_id": "fc7c1fa8-507b-4a4c-97af-90d6ef6ce384", + "location_id": "53518396-af2a-49d3-b1ad-26619fe592a5", + "payload": { + "description": "The following services are offered to male-identified individuals (if you are a male assigned at birth, call them to see if you qualify regardless of your gender identity):\n\u2022 Access to PrEP and PEP\n\u2022 Advocacy\n\u2022 Benefits\n\u2022 Counseling\n\u2022 Health Coordination and Navigation\n\u2022 HRA 2010e Applications\n\u2022 Medical Treatment of HIV and Hepatitis\n\u2022 Mental Health Services\n\u2022 Other Referrals and Follow-Up\n\u2022 Rapid Testing\n\u2022 Substance Abuse Treatment\n\u2022 Support Groups" + } + }, + { + "service_id": "fc810ed7-d4d4-42e6-a877-fd6b64470a27", + "location_id": "c17db0ff-e6c7-4f84-8b5f-6df0c917fe88", + "payload": { + "description": "Services include:\n\u2022 HIV Testing and Care\n\u2022 Mental Health\n\u2022 Primary Care\n\u2022 Case Management\n\u2022 GYN" + } + }, + { + "service_id": "fc985ef0-81ac-423f-b72f-9b9e3856e7a1", + "location_id": "b19ba1ab-6035-45b8-855f-7eb4f497e2f2", + "payload": { + "description": "\u2022 Individuals struggling with behavioral health and their families may receive care. Home of Integrated Behavioral Health at New York Foundling may bill your insurance but will not charge you a co-pay. Their social workers can help you obtain insurance if you qualify.\n\u2022 The Identity and Acceptance Program is for LGBTQIA2S+ individuals. Insurance and parental consent may be discussed on a case-by-case basis. Walk in or call to enroll." + } + }, + { + "service_id": "fca6d951-50e8-44e2-8097-2b78e100ffe7", + "location_id": "ce1819e7-2e43-4629-ae60-c16a545d1263", + "payload": { + "eventRelatedInfo": { + "event": "COVID19", + "information": "Call the helpline at (212) 343-1122" + } + } + }, + { + "service_id": "fd6f8369-d779-42ce-9649-c50fd64221fe", + "location_id": "0a9d4657-b95a-4f40-8206-00cb216547c1", + "payload": { + "description": "Housing services include:\n\u2022 Community Residences\n\u2022 Congregate Housing\n\u2022 Scattered Site Supportive Housing" + } + }, + { + "service_id": "fd785ae7-ccd5-4a62-a5ec-a80e34477c7a", + "location_id": "1fc6a9ce-943f-4e7e-8c6b-085e9184c74b", + "payload": { + "description": "Services include:\n\u2022 Cataract and Glaucoma Screening\n\u2022 Diabetic Eye Disease Screening\n\u2022 Glasses and Medication Prescriptions\n\u2022 Surgery\n\u2022 Vision Screening" + } + }, + { + "service_id": "fd7ae61a-3e71-4130-abf9-bfd4770186dd", + "location_id": "c5a50b6c-f3b4-4f7e-943d-9588c0aab544", + "payload": { + "description": "\u2022 HIV prevention and treatment are offered at the Union City Satellite Office: Minority AIDS Initiative | Ryan White HIV/AIDS Program \u2013 case management for HIV-positive adult trans individuals\n\u2022 Hormone Replacement Therapy, gender maker and name change, and gender surgery short-term counseling with referrals for long-term counseling\n\u2022 Beyond the Binary \u2013 a drop-in group for queer individuals that is offered on the 1st Tuesday of the month virtually, the 3rd Tuesday of the month In-Person, and the 2nd and 4th Tuesdays Hybrid, contact gabby@hudsonpride.org (she/her) to enroll\n\u2022 Youth Connect \u2013 a health group for individuals aged 13-25\n\u2022 Rainbow Elders of NJ by SAGE \u2013 groups for individuals over 50 (but not only) meeting virtually on Tuesdays from 6 PM to 7:30 PM and In-person at the Hudson Pride Center from 6:00 PM\n\u2022 to 8:00 PM on the second and fourth Thursday of the month, contact gordon@hudsonpride.org (he/him) to enroll" + } + }, + { + "service_id": "fe39b78f-cb2e-4af8-afc8-49cb19937ef0", + "location_id": "b48946e5-0fe2-463c-a614-06f8d145d124", + "payload": { + "description": "Services include:\n\u2022 Annual Exams\n\u2022 Health Education\n\u2022 Immunizations\n\u2022 Referrals to Specialty Care\n\u2022 Sick Visits" + } + }, + { + "service_id": "fe4fbf51-477a-4ef8-9c16-6f0d897a1dc4", + "location_id": "0a307d85-38d6-408d-84ea-1b02a91d2d7f", + "payload": { + "description": "\u2022 Cis-and trans-women actively participating in the program by meeting with their counselor may request fee waivers for their college applications, books, fees, and recertification reimbursements (up until they hit their designated limit)\n\u2022 Services include:\n\u2022 1:1 college counseling, loan and financial aid exploration (FAFSA has immigration status and income requirements)\n\u2022 MetroCards are provided for those actively in college, caretaker classes, mentorship programs (with a stipend), and health science and tech field post-graduate certifications." + } + }, + { + "service_id": "fe760528-a574-4806-93bd-017f06f80fcd", + "location_id": "adcf0a49-d6d4-41fb-a668-1f92dc52e994", + "payload": { + "description": "\u2022 Free halal and vegetarian food\n\u2022 Fridge stocked weekly" + } + }, + { + "service_id": "fed2258a-19c5-44a2-b3e7-3685fbfc1b65", + "location_id": "eea0a5fb-aef5-48be-99b9-c5ae203da53d", + "payload": { + "description": "They offer emergency placement in a Single-Room Occupancy or a Transitional Shelter. If you are houseless, arrive before 1 PM to complete an intake. If you can complete form W488X, fax it to (212) 971-0820.", + "eventRelatedInfo": { + "event": "COVID19", + "information": "If you have any questions, call during office hours at (212) 971-0626 or use the TTY (Teletypewriter) machine for people who are deaf or hard of hearing (212) 971-2731" + } + } + }, + { + "service_id": "fee40e1d-683e-4481-86a5-5e07de125fe1", + "location_id": "ce666e74-ae97-4f38-a99f-2c580fbef125", + "payload": { + "description": "Services include:\n\u2022 OBGYN\n\u2022 Primary Care (Kids)" + } + }, + { + "service_id": "ff999019-b943-4a56-96db-ca7f368947e2", + "location_id": "4e714a45-e3ad-4f6e-bfec-1039d90c266d", + "payload": { + "description": "Services include:\n\u2022 Upper Manhattan, Bronx, and Downtown Chapter Meetings, see the calendar to sign up at metcouncilonhousing.org/calendar\n\u2022 No-legal-advice tenant hotline at (212) 979-0611 on Mondays and Wednesdays, 1:30 PM - 8:00 PM, Tuesdays, 5:30 PM - 8:00 PM, and Fridays, 1:30 PM - 5:00 PM\n\u2022 Walk-in clinics:\n
1st and 3rd Tuesday 6:30 PM \u2013 76 Trinity Pl\n
2nd and 4th Tuesday 6:00 PM \u2013 at this location\n
\u2014 email peace@metcouncilonhousing.org or jermaya@metcouncilonhousing.org for more information" + } + } + ], + "phoneUpdates": [ + { + "phone_id": "0012e63d-b407-43b8-ad8b-3ec9f83a97f9", + "location_id": "8bfd0922-b75b-48da-a464-cc8502f4844f", + "payload": { + "number": "3474866413" + } + }, + { + "phone_id": "002cb628-ad08-4c40-bbd3-32468903bf9e", + "location_id": "3a72f664-70c8-4908-a051-7beb19deb299", + "payload": { + "number": "2013367400" + } + }, + { + "phone_id": "00312219-84b9-4903-86d0-4569b211f1e7", + "location_id": "19011b56-474b-4acf-983b-38c9c980dafd", + "payload": { + "number": "7183885950" + } + }, + { + "phone_id": "00373eac-4366-45fd-88bf-56f6cf95a397", + "location_id": "cfed4cf7-bfb6-422b-a09b-879cdc488330", + "payload": { + "number": "6467760117" + } + }, + { + "phone_id": "003d381c-1311-4597-a8cf-6252d72f5f6a", + "location_id": "688c0cbf-b8fa-4fb0-9138-9a9bfc00039a", + "payload": { + "number": "7182204892" + } + }, + { + "phone_id": "0049c285-ed63-43f2-b5c6-fb94b70c1877", + "location_id": "4cb407c7-cd9f-440e-875b-184816203f07", + "payload": { + "number": "7183420060" + } + }, + { + "phone_id": "0074c932-dd6f-4ff9-8386-51337bed687b", + "location_id": "cc39d150-e48d-47b2-a316-614847e9c8ad", + "payload": { + "number": "7187082868" + } + }, + { + "phone_id": "007ad74b-4c5e-4af9-aa84-affecddf3520", + "location_id": "c8aefa4c-c511-4b4a-b6c2-2995757882f0", + "payload": { + "number": "7189610888" + } + }, + { + "phone_id": "00d13b5c-55dd-4e89-884c-520d2e2b1114", + "location_id": "204b6b1e-df30-414c-b288-03c2a6e47f1e", + "payload": { + "number": "3475715922" + } + }, + { + "phone_id": "00e5c7ea-c3f7-4770-a2ea-d9a7460a929b", + "location_id": "04fb3edb-b994-4339-976f-9ac87c29e46b", + "payload": { + "number": "7182721600" + } + }, + { + "phone_id": "0149975c-6a81-4830-9292-b47935dc54ab", + "location_id": "ede86492-dd37-4192-9f8a-067f8d48b739", + "payload": { + "number": "7186716200" + } + }, + { + "phone_id": "0164aa38-2d82-455c-b109-1a8e8d9dfc35", + "location_id": "d18f7ced-64d5-4124-ba29-51ccf8f5071b", + "payload": { + "number": "7189814382" + } + }, + { + "phone_id": "01cdc3df-b8ff-4f1c-ab3e-2bcd2469597c", + "location_id": "c4ae3669-60a9-4e25-bcb4-9de26af81fdb", + "payload": { + "number": "7187791660" + } + }, + { + "phone_id": "01d68da2-f1de-4104-a49c-27fac45881c5", + "location_id": "a3cd6847-8344-4df6-924c-54934ea73553", + "payload": { + "number": "7184269369" + } + }, + { + "phone_id": "01f43541-a6dc-48f0-8fc6-a4bd16e8f815", + "location_id": "6455680b-11b2-4df1-bfa1-d1d752a4ce24", + "payload": { + "number": "8002826684" + } + }, + { + "phone_id": "01fc1dd2-894e-40c9-a3c7-17fde3ad0e41", + "location_id": "93091124-350e-4a2f-9b77-e2e49fca12b1", + "payload": { + "number": "3475848601" + } + }, + { + "phone_id": "0213a443-344d-46f1-b6ab-b9cdf779c905", + "location_id": "cd20e6f3-b060-44ed-8740-248593096af4", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "02145931-7173-41fc-ae7a-213e521deb18", + "location_id": "6f59c3df-faa3-4b05-8467-3f188b65a725", + "payload": { + "number": "7184333100" + } + }, + { + "phone_id": "02375391-1603-4f08-b452-86c88dab5da6", + "location_id": "0c82a663-eb8d-4df6-bb00-7ef0bdd86d70", + "payload": { + "number": "9177720802" + } + }, + { + "phone_id": "02636836-5dcb-4b65-935b-6612f586b762", + "location_id": "dcf43bee-f30d-423d-adb8-92bfb5a85e97", + "payload": { + "number": "2129623408" + } + }, + { + "phone_id": "029fde6f-f4fe-4575-b01c-81ef9e7488dd", + "location_id": "225aa5a4-f8ce-4f28-b024-c266d7311f44", + "payload": { + "number": "2129614049" + } + }, + { + "phone_id": "02fa9e52-14d7-40aa-9789-12fbb5689b27", + "location_id": "1c1a6284-4463-4b7b-805c-b64139f1bf9f", + "payload": { + "number": "5165285426" + } + }, + { + "phone_id": "0313d9ec-d412-4942-8cee-b84ed39e726c", + "location_id": "41f753d7-3d2f-4bc0-bf9c-cf0671783b39", + "payload": { + "number": "7184201966" + } + }, + { + "phone_id": "0342b24e-4267-4b6e-b350-4d9a09c0f6f8", + "location_id": "82fc28d6-54f3-494e-83f0-1e40ee7a7754", + "payload": { + "number": "7189519009" + } + }, + { + "phone_id": "0370d5ef-f92c-4589-9bd1-0db9a459bd92", + "location_id": "e209cafb-3cc9-4832-bad0-1bb20070393b", + "payload": { + "number": "2124738152" + } + }, + { + "phone_id": "038750bb-d937-432b-a64a-ff7bf098a91d", + "location_id": "c789e7d9-7570-42f6-b919-250971acc270", + "payload": { + "number": "7187523700" + } + }, + { + "phone_id": "03a25dfb-1b4f-4953-bcce-abfd8df6e662", + "location_id": "9f8fe620-2d2c-4372-b460-cb6beda558ce", + "payload": { + "number": "3475922200" + } + }, + { + "phone_id": "03a39013-f2ca-4ed6-8cda-d33600eaa63c", + "location_id": "f726f98f-708f-44a0-b990-cf9002fc000f", + "payload": { + "number": "2127778866" + } + }, + { + "phone_id": "03e92c65-0315-43d5-a43e-b7df70494d2b", + "location_id": "a4e1ea35-ff1d-4378-8da3-b608cc382923", + "payload": { + "number": "2129410041" + } + }, + { + "phone_id": "03ecd6a1-5f7b-4216-b9ad-eb0ba56d8733", + "location_id": "3da86cc9-e734-403b-87b9-5a0a9e2f876a", + "payload": { + "number": "7182386044" + } + }, + { + "phone_id": "040822a5-17e3-44c6-8363-64a81c04363e", + "location_id": "0e3e87e8-68db-458b-953a-74a2afb21822", + "payload": { + "number": "3472701710" + } + }, + { + "phone_id": "04ce4581-0149-4f36-b1e1-e32460a66a8a", + "location_id": "8b2392a3-e083-4a59-8a66-01db0993d808", + "payload": { + "number": "7184712573" + } + }, + { + "phone_id": "04fea4aa-aefc-43ef-86d6-22a3c28d2d9d", + "location_id": "7396b45b-3ae9-43ba-bb94-0af8b5bbc7bb", + "payload": { + "number": "2012100200" + } + }, + { + "phone_id": "051936ed-0b43-46c6-b926-9bd0367064fa", + "location_id": "92da6003-ba28-47c8-bf77-54f609ed86b6", + "payload": { + "number": "2123696643" + } + }, + { + "phone_id": "05bf48b7-edf5-4cc3-8eef-495ca48d7cea", + "location_id": "45820373-eb17-4cc5-9076-66ea96487068", + "payload": { + "number": "2123751765" + } + }, + { + "phone_id": "05c21923-9265-40fb-80b3-b37660d60c1b", + "location_id": "27caeadd-e195-4e7e-a969-a8ec73b600f5", + "payload": { + "number": "9176770723" + } + }, + { + "phone_id": "05f50403-97cc-4fcc-a7b5-e30967b62767", + "location_id": "184c417a-4810-446c-a173-9c9769599bef", + "payload": { + "number": "7183125800" + } + }, + { + "phone_id": "060ecb07-bc2e-4d2e-b193-ce16ea505777", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "2122269339" + } + }, + { + "phone_id": "0664c5e4-f866-47d7-8b18-d3ff7b921cfa", + "location_id": "eabe34af-33e4-44fb-94f2-7363b7050bc1", + "payload": { + "number": "2122891742" + } + }, + { + "phone_id": "066e6b52-485d-4779-a450-4223b4b56381", + "location_id": "2b6a0cfc-a31a-40f6-a04d-d8c262ac4bde", + "payload": { + "number": "7187587744" + } + }, + { + "phone_id": "06872ce9-7146-44ab-841f-8eb7ed9647be", + "location_id": "1560c8ed-546e-45a1-8b1f-bbe977ee58c8", + "payload": { + "number": "7185195000" + } + }, + { + "phone_id": "06f1d7f7-82fe-49e9-a372-13fbd8e0de8f", + "location_id": "8a25f9bb-d7e3-46cf-b37f-c0fce810c039", + "payload": { + "number": "2123423232" + } + }, + { + "phone_id": "06fa9bc1-1fa1-4869-8517-eb37a7b37d99", + "location_id": "6229adeb-0857-4617-a72f-3e1656246c47", + "payload": { + "number": "9293701491" + } + }, + { + "phone_id": "07244214-9d13-4b9d-9bfc-6e4ceb70b662", + "location_id": "eabe34af-33e4-44fb-94f2-7363b7050bc1", + "payload": { + "number": "3478036822" + } + }, + { + "phone_id": "07a68a79-6658-4efc-8d24-08a08b01fdd5", + "location_id": "515a3940-3732-43e1-a939-fd5d859173e3", + "payload": { + "number": "2128228300" + } + }, + { + "phone_id": "07cc1939-dded-4f41-88af-9a79ea954eca", + "location_id": "352a2771-67b5-4ecf-8cd1-e4931cbee67b", + "payload": { + "number": "9294149190" + } + }, + { + "phone_id": "07df0264-689f-4d63-8cb7-596098ae61e6", + "location_id": "0a9d4657-b95a-4f40-8206-00cb216547c1", + "payload": { + "number": "2126651860" + } + }, + { + "phone_id": "07e05b2f-c07c-4cc6-96ab-04b16ab58b95", + "location_id": "3381cbe4-e884-43c2-9b98-6f8a2ede2b39", + "payload": { + "number": "2128327605" + } + }, + { + "phone_id": "07ffc45f-55b1-4bc7-ab7b-8b85ea48b744", + "location_id": "cd7a0777-6dd8-4d53-8afd-86e3dfc82980", + "payload": { + "number": "9296010063" + } + }, + { + "phone_id": "085f58ea-e415-476a-906f-0b850b1d90ec", + "location_id": "cc7eaaab-c2c6-48b3-aa5f-5a851f0548a8", + "payload": { + "number": "2127149153" + } + }, + { + "phone_id": "08636f5c-482f-4382-a879-7e4b3dc0085c", + "location_id": "bc21dcab-665d-4188-9ff3-995d83339851", + "payload": { + "number": "7184477740" + } + }, + { + "phone_id": "08640304-127d-478f-a44f-4712d500086a", + "location_id": "128ab342-28e6-43c6-a590-cccbb92e3a16", + "payload": { + "number": "7189983000" + } + }, + { + "phone_id": "08bd5b32-eeea-46aa-b89a-a006a2e713bd", + "location_id": "16b235a3-ad3d-4f6d-96df-28d1e49faab3", + "payload": { + "number": "7189313500" + } + }, + { + "phone_id": "0968c039-a649-4756-9eb1-2fd9a96aec93", + "location_id": "c5a50abb-9098-45a7-9c45-46599b3f784a", + "payload": { + "number": "7185521120" + } + }, + { + "phone_id": "0972ce8f-9af4-4e86-8ff3-d33126c9169f", + "location_id": "400ed3fd-c19a-451b-9dc1-d5fa1a608693", + "payload": { + "number": "9175661961" + } + }, + { + "phone_id": "097c22ef-d370-4897-9caa-f31f14c28789", + "location_id": "33aaa49d-e67a-4627-9d6b-eacd6c055975", + "payload": { + "number": "7182770386" + } + }, + { + "phone_id": "09ea0031-42cb-426d-be8e-9657383e9629", + "location_id": "5185b796-8945-4a22-a01e-b86350764fb1", + "payload": { + "number": "7185979220" + } + }, + { + "phone_id": "0a0039c5-8bfd-4f3d-83c7-324535dc3606", + "location_id": "d136ffc7-1d56-4e95-bc3e-65c66f5dcec3", + "payload": { + "number": "6466026404" + } + }, + { + "phone_id": "0a049f4f-7bcc-447f-ae63-80c25696c859", + "location_id": "b9c3a726-d253-4cba-a270-46c747b10051", + "payload": { + "number": "2126633000" + } + }, + { + "phone_id": "0a1cbfbf-c23c-4904-b69b-c80f9ed07b32", + "location_id": "c7b814d8-d41c-4fb9-a942-6587bba62225", + "payload": { + "number": "7188962500" + } + }, + { + "phone_id": "0a4f9a91-4635-48a1-9b13-a6e9a5921669", + "location_id": "8990f94e-36a2-4726-8843-52549f803053", + "payload": { + "number": "2126910950" + } + }, + { + "phone_id": "0ac8d4ef-17ce-41b0-b1e9-f177951d71b8", + "location_id": "6193fbcf-47fc-48ab-8bb7-211bf67a0034", + "payload": { + "number": "7182974860" + } + }, + { + "phone_id": "0b02ffb3-8337-4838-a11d-a674a174cf67", + "location_id": "3f8cb0ba-6190-48cd-9b8b-01bcf98969ec", + "payload": { + "number": "3473183383" + } + }, + { + "phone_id": "0b068a13-d4c4-401b-ab04-f42bdb936439", + "location_id": "8d3af588-6062-4113-b0cd-7bb6e5d942cb", + "payload": { + "number": "2128948060" + } + }, + { + "phone_id": "0b3e054f-52fe-4c7c-bf43-a5e635d1ff76", + "location_id": "ea055ba4-717a-42cf-8ada-220dcb89b6a5", + "payload": { + "number": "2012100200" + } + }, + { + "phone_id": "0b74c2b5-502e-4095-a6b7-44e81061c9f5", + "location_id": "3590a72b-e244-4123-a3b1-489d085326a7", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "0b7791ba-a805-42b2-b7f9-738d5e221c02", + "location_id": "3513e180-63d6-4c21-a769-5b48d54cba41", + "payload": { + "number": "7188081350" + } + }, + { + "phone_id": "0b859f2d-de46-442b-a2ff-d9fb79ab9e4a", + "location_id": "49258f8b-5bd0-4125-b9f9-7dd44c011074", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "0c1757e6-8b19-4119-a749-87e5494fca38", + "location_id": "fe3051b8-09a1-436f-8516-97f4a8ebb9e5", + "payload": { + "number": "2129724613" + } + }, + { + "phone_id": "0c3350a4-72e4-451f-88bd-647cdf5933ed", + "location_id": "47dd2bf9-561c-428c-9a95-325215342c36", + "payload": { + "number": "2016042600" + } + }, + { + "phone_id": "0c382a1a-84f5-4bf3-8260-ca3abb4327c5", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "7188164499" + } + }, + { + "phone_id": "0c5ec7cd-eb80-4577-8f7e-1abe5e089f3a", + "location_id": "9bc3e184-820a-4d75-9674-cd34a21c83ed", + "payload": { + "number": "7184837700" + } + }, + { + "phone_id": "0c722326-9d98-472e-b7c6-3992d9fb3813", + "location_id": "6ddf2561-8058-4b26-aa5e-13f09909a1b2", + "payload": { + "number": "3475057000" + } + }, + { + "phone_id": "0ceb99de-0d6e-4606-b457-207d219c8bc0", + "location_id": "8bdc072d-05ac-497a-b531-a00703d8da3e", + "payload": { + "number": "7183685411" + } + }, + { + "phone_id": "0ceba87e-f988-49e5-949d-4282527c0de9", + "location_id": "3524aa05-0d6d-4d4e-878c-ceb64006e8c5", + "payload": { + "number": "7182929321" + } + }, + { + "phone_id": "0cf0bd5e-09d5-499c-bca7-48a2c26e66d8", + "location_id": "6b23c0e4-5b5b-4263-87c6-28627fcd7134", + "payload": { + "number": "6462927710" + } + }, + { + "phone_id": "0d2af908-6433-48f5-a330-a51593b076de", + "location_id": "cecb5edb-7da6-4523-b158-c44aa3f0a03f", + "payload": { + "number": "2127372720" + } + }, + { + "phone_id": "0da6983a-fc88-4ba5-94d9-a9affd969f1d", + "location_id": "bdd2da43-b2fd-47fd-bc79-802298afa6f1", + "payload": { + "number": "2127491820" + } + }, + { + "phone_id": "0e1ca375-56ec-461d-81bc-70e224684151", + "location_id": "e87e4304-d058-4d7c-bbf7-9521dce8a464", + "payload": { + "number": "7184334724" + } + }, + { + "phone_id": "0e323caf-25a2-4ed6-8549-a90d1d28a81e", + "location_id": "04de8f32-b2c5-4206-9543-bcc6c8e4a1a5", + "payload": { + "number": "7183282605" + } + }, + { + "phone_id": "0e5b062c-077d-42ee-b006-94e2db85b66d", + "location_id": "9a84d1ed-e940-4c08-92f0-05457505af4f", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "0e8928e4-35e1-40e4-9adc-e623c9f1aee3", + "location_id": "2abdbe81-4d47-419f-a339-ca5dc8ea4b82", + "payload": { + "number": "7185969800" + } + }, + { + "phone_id": "0ebbcd6f-7075-4b90-a779-17eb2b906033", + "location_id": "727fccdd-b89e-4eae-a6fe-5879788e3c2e", + "payload": { + "number": "2123480488" + } + }, + { + "phone_id": "0f012b0c-70b4-4275-b234-a90994451523", + "location_id": "f47eaeac-cd59-4536-a31d-033c983a1ea1", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "0f3a5e27-95c1-4be9-9e3f-8f44c98bce7c", + "location_id": "8abe8605-ea5b-4145-ae05-c857c0f6ec26", + "payload": { + "number": "7184201475" + } + }, + { + "phone_id": "0f4096f8-abd8-4cdf-a614-7c11256170c5", + "location_id": "2cf321f3-0348-4aec-a4f0-1b45a4b2227d", + "payload": { + "number": "6468667662" + } + }, + { + "phone_id": "0f690292-3243-4b4d-8068-03198cd57c1b", + "location_id": "7eaf1e97-73c7-40e7-8acc-7735342fb853", + "payload": { + "number": "2126742400" + } + }, + { + "phone_id": "0f6fe6e1-fd10-4cd1-93f4-df1a2eb24764", + "location_id": "20519c2d-a0e4-431a-a83b-70cb00d8788a", + "payload": { + "number": "7189927669" + } + }, + { + "phone_id": "0f86ae22-7c20-4d22-ad20-5cc4a7bac4d8", + "location_id": "f51630fa-a991-4f8b-a35a-058c6d54b1ba", + "payload": { + "number": "7182413571" + } + }, + { + "phone_id": "0f892fc4-23aa-41ca-ae34-e9579a15b822", + "location_id": "0e945118-7533-4fa9-b5a5-b6e8739de3f1", + "payload": { + "number": "3479264355" + } + }, + { + "phone_id": "0f90e8b2-4be2-4413-8e7f-231b2cfbdcbe", + "location_id": "2b031044-63cf-4bdd-8bc7-015b035e3e79", + "payload": { + "number": "2122065200" + } + }, + { + "phone_id": "0fae5efa-7343-48b1-8298-7e99decca833", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "7183673500" + } + }, + { + "phone_id": "0fafa7df-1f49-463b-afb3-94ea240814c4", + "location_id": "6ba95790-e76f-4a98-a7fa-057b08f21d24", + "payload": { + "number": "9293991394" + } + }, + { + "phone_id": "0fd41be0-95bb-42d1-ae08-faf1f35d538b", + "location_id": "bf4577fd-fef0-498f-bd58-db342fee8aff", + "payload": { + "number": "3479486835" + } + }, + { + "phone_id": "0fdebfea-0c13-4599-9511-30e5d993151e", + "location_id": "b7e89cc4-f8f3-4530-9fd2-cec461fc97aa", + "payload": { + "number": "2127771010" + } + }, + { + "phone_id": "1010fa1e-3e97-4d9c-93da-159a17a14554", + "location_id": "d8c94dc6-8248-4e22-86e9-9d0eea4407d1", + "payload": { + "number": "7184432428" + } + }, + { + "phone_id": "1018eec1-f294-45dc-a9f7-2214828d7dd4", + "location_id": "a6640482-5d4d-425b-88d4-c6da1a5d2b37", + "payload": { + "number": "7182929808" + } + }, + { + "phone_id": "102a419e-66d5-458a-879b-0bdefdea070e", + "location_id": "cb45bcb0-9602-47e7-bef4-e48254a4f95e", + "payload": { + "number": "9148132896" + } + }, + { + "phone_id": "103bc337-0ed3-405c-bbd4-3b14fc401102", + "location_id": "01d4f89a-36c4-4b65-a873-063be6828835", + "payload": { + "number": "5705920083" + } + }, + { + "phone_id": "10a2e5c6-a3d5-44bd-98b6-a198dac4f75a", + "location_id": "03add1be-614d-48f4-94a7-616c24aef90e", + "payload": { + "number": "2127609800" + } + }, + { + "phone_id": "10c2133f-be31-47da-a550-a7bbd0bdcc29", + "location_id": "1ebd1a5d-c3a1-404d-aaf2-830552e4deea", + "payload": { + "number": "9177209700" + } + }, + { + "phone_id": "10d4151e-55d9-4ca8-a92a-f00043ff3915", + "location_id": "8bad2f7e-440d-4eb9-b1a3-0c6820d8e6d6", + "payload": { + "number": "7183873600" + } + }, + { + "phone_id": "10d5c238-512c-4c6b-846a-379859aadb2f", + "location_id": "261aeda6-9363-49ac-a90f-0d8322cd9c56", + "payload": { + "number": "6468822000" + } + }, + { + "phone_id": "10da760f-2a24-4c8a-bae1-4bab3bb00d1b", + "location_id": "a5c08ab4-d0a2-45cc-8124-9c00a6a8f620", + "payload": { + "number": "7818880866" + } + }, + { + "phone_id": "10f54a0f-8e1f-4bd6-a195-983d3760e0d3", + "location_id": "fc5edf0d-f2be-4151-814c-6e2b6608044c", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "111ab1e4-cb78-4b45-b837-1dbca8a256d2", + "location_id": "02c7f6a7-0916-47b2-a17d-d1dd604d6eb8", + "payload": { + "number": "2125173012" + } + }, + { + "phone_id": "11372698-4fb2-4bed-b2ae-aaa5d43cc199", + "location_id": "0d381537-31c4-4165-a5a0-4d7ffc02bace", + "payload": { + "number": "2129419090" + } + }, + { + "phone_id": "114aca4c-ae47-4522-a509-270314b4a360", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "7183908506" + } + }, + { + "phone_id": "114c2840-6503-4f0c-9ddc-3e84944ad641", + "location_id": "62342032-3812-4e27-a36b-2054dbb52354", + "payload": { + "number": "7186535301" + } + }, + { + "phone_id": "11576608-e5db-4f15-bf7b-1a20e19076eb", + "location_id": "4da505d4-c7e8-408c-8052-ef8649d14824", + "payload": { + "number": "2122095102" + } + }, + { + "phone_id": "117892a1-1fe7-4548-80ad-cadbc0df4a62", + "location_id": "50d7b96f-b675-4024-b324-b75e9e66a53d", + "payload": { + "number": "7183126850" + } + }, + { + "phone_id": "11c97cfd-2098-482e-901b-1a575d7435d4", + "location_id": "b47dab4d-bafc-4578-a643-715d3939d9fe", + "payload": { + "number": "7183851043" + } + }, + { + "phone_id": "11e01095-ea97-4708-8b47-b20e890963b4", + "location_id": "4e54acef-b0a0-450a-8b05-f30b44866120", + "payload": { + "number": "6464815890" + } + }, + { + "phone_id": "11fd8e66-8ec5-42e6-b83d-02751d522341", + "location_id": "df3f4053-562c-4883-9488-fb7f13f5528f", + "payload": { + "number": "9179529766" + } + }, + { + "phone_id": "123d107d-745f-44ec-acd5-009e9ea2ec42", + "location_id": "e33d1d3a-929a-41ee-ac79-14b92b080d88", + "payload": { + "number": "9294007739" + } + }, + { + "phone_id": "1269e5cd-a789-4583-9d31-5622fccdb143", + "location_id": "8349e6a9-4c15-4169-94f2-670c560f695e", + "payload": { + "number": "7187354400" + } + }, + { + "phone_id": "12b61ce1-59f0-4b9b-8467-50638947d94d", + "location_id": "dbb1f953-db9a-403e-b07e-98b2386faa75", + "payload": { + "number": "3475885080" + } + }, + { + "phone_id": "12d446b1-bc2d-46db-ba60-7ab916e79c38", + "location_id": "62342032-3812-4e27-a36b-2054dbb52354", + "payload": { + "number": "7187392999" + } + }, + { + "phone_id": "12fd6e25-bea6-47bb-9abd-c817e7ae00ea", + "location_id": "f16deaaf-d664-4b35-9057-8fae8c04837f", + "payload": { + "number": "2126200340" + } + }, + { + "phone_id": "1301e95c-5a9a-401e-bfe7-4f01d8431627", + "location_id": "ad624d3e-d2f0-48fc-be03-19098c89310c", + "payload": { + "number": "2129823470" + } + }, + { + "phone_id": "132f3478-4cee-4149-83e0-0acf427373a5", + "location_id": "8593c948-69ec-4ed7-9cdc-30ab36648420", + "payload": { + "number": "7182405363" + } + }, + { + "phone_id": "133f2efb-68d9-4ee2-bc49-33a1b5b71444", + "location_id": "833ca1bd-fb91-4308-b3e4-5feffc077731", + "payload": { + "number": "7184344600" + } + }, + { + "phone_id": "1343be40-a64b-45cb-912e-2034a977ebd1", + "location_id": "bd00614a-6e4b-4d9b-85e4-cb9e8c0e33db", + "payload": { + "number": "7184432428" + } + }, + { + "phone_id": "1347afb6-fb87-48e9-b8c4-33c8dd31efdf", + "location_id": "ae95f7eb-3c21-4235-ba99-7c88f5c035ff", + "payload": { + "number": "3479515572" + } + }, + { + "phone_id": "13595689-eba1-41aa-861f-7a53dda94471", + "location_id": "c3bfe14c-59c5-4800-954f-e250cfa41811", + "payload": { + "number": "6464424145" + } + }, + { + "phone_id": "138423e2-08e6-4f4d-adc6-3464645c9fbf", + "location_id": "1b616044-260e-4c5e-9361-462d84123690", + "payload": { + "number": "6469629222" + } + }, + { + "phone_id": "13a76866-a9f8-4bea-be4a-444bbbb02b7f", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "number": "3475055000" + } + }, + { + "phone_id": "13d17078-8103-4a68-a2c0-427e3d80e1d9", + "location_id": "283754b1-794d-47f9-836c-9560b488581d", + "payload": { + "number": "3473908701" + } + }, + { + "phone_id": "13fb8e4d-cacc-4968-9b0c-e9344e7b971d", + "location_id": "3046cdb2-042a-416e-ba31-b229cc94fc54", + "payload": { + "number": "7188020572" + } + }, + { + "phone_id": "1443a67b-5626-4b07-a0d6-7db30ab2dd0b", + "location_id": "19ebfc7a-63e7-43e9-aecf-0da12a7070f7", + "payload": { + "number": "3473742455" + } + }, + { + "phone_id": "146e26bb-6e3f-4a67-95c7-a79b3829a399", + "location_id": "fcb5fdd7-f54d-4f79-b815-1d61c2d535f6", + "payload": { + "number": "2123601100" + } + }, + { + "phone_id": "149e6302-a219-4b3f-9043-28277e6231a4", + "location_id": "9c17cd86-63e0-42bc-93f5-fd1157b250f4", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "14dd08d2-226f-448d-9200-f77d52a240e4", + "location_id": "f16faa5c-c42e-4e15-b8ae-30acb490ecde", + "payload": { + "number": "7184992151" + } + }, + { + "phone_id": "14e66035-595e-47bb-9ad4-324cd4c0440b", + "location_id": "91b4f962-8065-4f87-be04-15f475dc064f", + "payload": { + "number": "6469297870" + } + }, + { + "phone_id": "14ec6566-61d1-4201-ba6f-12493570cbf6", + "location_id": "377aa11d-b8b5-49c1-a495-be491803a93e", + "payload": { + "number": "7187840877" + } + }, + { + "phone_id": "151d1efe-7227-413b-8ad0-e7d6954fbf39", + "location_id": "db685d45-8fe5-4a29-aa70-e28858288c0d", + "payload": { + "number": "7188571393" + } + }, + { + "phone_id": "1533ee1f-e768-418f-b245-0f1fc0d59d7c", + "location_id": "68683fdc-a17c-47a6-b0c9-34088471c566", + "payload": { + "number": "7184000545" + } + }, + { + "phone_id": "1563a350-34ca-4177-baca-3a467b72572e", + "location_id": "0b5b29db-a1ea-40da-bae0-d747383f3a9c", + "payload": { + "number": "9294153990" + } + }, + { + "phone_id": "15697661-d570-4f62-b0f5-44aeac0dc941", + "location_id": "27261749-2033-4c6f-8415-368e1b4bae6f", + "payload": { + "number": "6466822100" + } + }, + { + "phone_id": "15945c57-1ff3-479f-b906-540a0b8ee8fc", + "location_id": "7c560661-5f54-4ed8-b97d-642654b5b79f", + "payload": { + "number": "7184411125" + } + }, + { + "phone_id": "15ade6b0-1e9b-49ca-89b2-6674a805a2f2", + "location_id": "1876f065-b5b6-4a17-8a55-c1a70314bbe9", + "payload": { + "number": "7186372955" + } + }, + { + "phone_id": "15bbe044-e0dd-4d1c-8a51-84ea7c172a93", + "location_id": "fcfe3fe4-0ee5-4685-975e-07ee4856cce9", + "payload": { + "number": "7186510096" + } + }, + { + "phone_id": "15e44c58-5625-4f29-a073-2c2981020084", + "location_id": "c6f1b357-5642-474d-bc79-ebcd35c0c191", + "payload": { + "number": "7183426700" + } + }, + { + "phone_id": "16413415-7d86-4ffe-bc42-2f168c31e43c", + "location_id": "7e19c841-515b-4b75-a83f-3bd4de4f9dc4", + "payload": { + "number": "7187372398" + } + }, + { + "phone_id": "16622bf7-5bb0-486e-bef4-e82daa1c2d0a", + "location_id": "bfbc9e7f-1cc9-43b0-a87c-d0b1efdbb725", + "payload": { + "number": "8882458333" + } + }, + { + "phone_id": "16a328dc-f371-403c-aba4-6e3a72d096c7", + "location_id": "5c6bb145-b329-48df-95d0-62b3aa519c5b", + "payload": { + "number": "9174719188" + } + }, + { + "phone_id": "16aa6392-c889-455f-a804-4e15b827766f", + "location_id": "6a9641a6-ba63-4eba-993b-9e6c4fe05c2f", + "payload": { + "number": "3476216100" + } + }, + { + "phone_id": "172631eb-f011-468f-a46b-2a56f3fbbb40", + "location_id": "ae7b3ff7-3eb3-4f04-b596-8fd9c6ec074c", + "payload": { + "number": "3478252086" + } + }, + { + "phone_id": "17af2190-be1e-47b1-86f7-75e3c2e0f421", + "location_id": "f8a37ef2-eb29-4002-aec1-324c77b88f53", + "payload": { + "number": "2122417181" + } + }, + { + "phone_id": "17b544a2-a169-46e9-9d9f-d42e2164db46", + "location_id": "08382ce5-06de-4c29-a337-1ff44cd3a132", + "payload": { + "number": "9172678136" + } + }, + { + "phone_id": "180c8c4b-9506-4fc1-8b4e-df8f05131817", + "location_id": "61160913-9093-4f0e-a92e-04abfdbdf272", + "payload": { + "number": "7183751200" + } + }, + { + "phone_id": "185ed5dc-14e7-43d9-9275-14edfde9d5c0", + "location_id": "ede9e25d-be49-469b-8950-e6a1fd1519bd", + "payload": { + "number": "7189457150" + } + }, + { + "phone_id": "18a1d1ce-96b5-4867-abe2-efcb1a17ac4b", + "location_id": "628f6461-5867-497a-b278-6f59f378c5f9", + "payload": { + "number": "7183723300" + } + }, + { + "phone_id": "18a6a240-f178-4f6e-a82a-c196438b5452", + "location_id": "ca9798df-f658-4188-aada-751931dafa72", + "payload": { + "number": "7186576195" + } + }, + { + "phone_id": "18a6cfdb-c7c2-4394-b243-611b1e94259c", + "location_id": "7f7671f7-0183-43d4-9cf8-18fe018d5162", + "payload": { + "number": "7188589658" + } + }, + { + "phone_id": "18b67149-a7cb-43ff-9ed7-347399fc3740", + "location_id": "82616973-310e-41ef-badd-e7d7a2cd751d", + "payload": { + "number": "2125820340" + } + }, + { + "phone_id": "19169dd5-07f2-42f1-8418-da6f11abcc4b", + "location_id": "ab91a5b5-5994-4188-8a8d-269cfcd34044", + "payload": { + "number": "9174772480" + } + }, + { + "phone_id": "1926cb4e-e101-4616-8496-45bc357e8f7f", + "location_id": "1560c8ed-546e-45a1-8b1f-bbe977ee58c8", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "192f1625-7edd-42b4-a423-f4f5ae9856d5", + "location_id": "75392adb-7415-458f-9292-aefc6ee55377", + "payload": { + "number": "7185846250" + } + }, + { + "phone_id": "1944ffd6-ed41-4780-b09b-2810aae092e3", + "location_id": "0c68bb39-2b7c-4e5a-ac3b-bfa524ff49ef", + "payload": { + "number": "6462404288" + } + }, + { + "phone_id": "19658a74-57d3-4a37-beb0-629028bf0c5e", + "location_id": "ad1e09ed-b53b-416c-9519-9359c511f293", + "payload": { + "number": "7187342539" + } + }, + { + "phone_id": "196a0815-b383-417d-9c14-926bacd02a08", + "location_id": "83befe96-0764-436f-88be-f2adc43a842c", + "payload": { + "number": "2127877120" + } + }, + { + "phone_id": "196a570a-6799-4c39-a35b-ec3731d4452c", + "location_id": "bfc34b94-e898-410e-a36f-4802851b6b2d", + "payload": { + "number": "6463954400" + } + }, + { + "phone_id": "199e9b1e-38f2-4a62-82e6-ed6df73086bd", + "location_id": "3cbead11-c455-41f2-8a90-40322413f845", + "payload": { + "number": "7186659340" + } + }, + { + "phone_id": "19a00e66-2c45-4e66-9279-ee4b065d8fc4", + "location_id": "c1e3b264-65e6-4382-8316-28d3b64f3d80", + "payload": { + "number": "7187271222" + } + }, + { + "phone_id": "19dd9a7c-de75-4315-8522-e4d536aba5b7", + "location_id": "1bc6a125-e8f4-4fe6-a395-4478c3b62a77", + "payload": { + "number": "2123377544" + } + }, + { + "phone_id": "19f1ea42-2e53-4f2e-b6b1-5ebba14ec47f", + "location_id": "ed360813-9f1f-4964-b7e3-cb72a5813db5", + "payload": { + "number": "2125432782" + } + }, + { + "phone_id": "1a8745c4-d37d-4656-9b62-477c24840cdb", + "location_id": "0bbd2e2c-c722-4521-a657-d51dd46bf71c", + "payload": { + "number": "2128601523" + } + }, + { + "phone_id": "1aa2e279-3d20-4652-99cf-463e03185189", + "location_id": "e3788ddd-6c02-4c55-b447-8ce45192a83a", + "payload": { + "number": "9178103156" + } + }, + { + "phone_id": "1afb11bb-d725-47ac-bbfe-01f2db770616", + "location_id": "654105bf-81f7-4e88-962f-c2b69fab3f16", + "payload": { + "number": "7185891600" + } + }, + { + "phone_id": "1b121dbb-dfcb-41ca-8f58-f6a186ff8318", + "location_id": "d15969db-ee3b-4856-955e-a8cab9720ffe", + "payload": { + "number": "7186039080" + } + }, + { + "phone_id": "1b19de8a-12c3-48e9-8bc4-ea112f036f88", + "location_id": "058a39a5-c0d0-4ea0-b331-10b85fefe8d5", + "payload": { + "number": "3477734623" + } + }, + { + "phone_id": "1b264a41-f5f9-4640-b448-379daef50d6c", + "location_id": "0ed9bbe1-d2f4-4995-a09d-f1200cf0d5e7", + "payload": { + "number": "6466822100" + } + }, + { + "phone_id": "1b4f3de7-ada6-4c6e-91db-885a7a6f4543", + "location_id": "c6985a09-e40c-4276-82a5-12563430ee62", + "payload": { + "number": "9172249566" + } + }, + { + "phone_id": "1b502b3a-ca33-4eae-8150-1f1d95f22600", + "location_id": "3c3404c2-f014-42f1-b83a-b43597157a52", + "payload": { + "number": "7188805737" + } + }, + { + "phone_id": "1b53cbd9-ef9a-41bc-b2b8-977edee5c965", + "location_id": "aad125b4-e714-45b7-8d74-b0aab7c72f7e", + "payload": { + "number": "7186021000" + } + }, + { + "phone_id": "1ba5ab43-2048-4312-a1e3-8d9e27961750", + "location_id": "3b9a0d70-d047-4b1a-b6cc-c854d0246c04", + "payload": { + "number": "6462301037" + } + }, + { + "phone_id": "1c06cc6a-aa2f-4599-9760-dbd67e95b499", + "location_id": "b25caa04-dbf4-490e-8f62-642e749a2767", + "payload": { + "number": "2125295252" + } + }, + { + "phone_id": "1c28b342-019c-4d4b-92e1-eb04109f6d3d", + "location_id": "75e1f030-0c1c-47f5-a081-66607a1a8061", + "payload": { + "number": "7187881775" + } + }, + { + "phone_id": "1c4be159-4b88-4c0a-9338-9aee6e6f3704", + "location_id": "2bbacc24-0949-4bd8-ad82-cdc9b1a67301", + "payload": { + "number": "2128757725" + } + }, + { + "phone_id": "1c4f762d-b95a-49e9-91ce-0b371a9d2c38", + "location_id": "3d732b69-ab24-4a29-9471-72c9e0936290", + "payload": { + "number": "7186974300" + } + }, + { + "phone_id": "1c8bf363-a3f2-4030-8afe-818925aec4dd", + "location_id": "e1d7abf8-ec0b-41d2-a404-91ebcdea351c", + "payload": { + "number": "7182402770" + } + }, + { + "phone_id": "1c9dae26-6a5b-41b2-afc1-f49ba6302997", + "location_id": "6345f012-7490-42c6-ae51-85cbd44645a3", + "payload": { + "number": "2122174130" + } + }, + { + "phone_id": "1cb5b803-3bb6-48c8-b7dc-d3069c598d1e", + "location_id": "bf0b127c-c889-4eaf-99f5-abdb2db7763a", + "payload": { + "number": "3473967959" + } + }, + { + "phone_id": "1cc75d3d-75fd-431d-9394-b6263cc04eae", + "location_id": "215c933d-05f2-4ba1-9dc6-80535a498fe3", + "payload": { + "number": "9179385405" + } + }, + { + "phone_id": "1cd56660-f9f2-4bb7-9cd2-b998568d7058", + "location_id": "b19ba1ab-6035-45b8-855f-7eb4f497e2f2", + "payload": { + "number": "9174857280" + } + }, + { + "phone_id": "1cf9d9ea-3a30-4b33-a63c-c589fda5e65f", + "location_id": "99b7f4ee-03ad-49c3-940b-c7bdf9ac13d7", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "1d17336d-332f-4720-9215-b1dbf71428b5", + "location_id": "5185b796-8945-4a22-a01e-b86350764fb1", + "payload": { + "number": "4245675770" + } + }, + { + "phone_id": "1d62bf4a-8964-4feb-9c9d-bf3f35a6ee08", + "location_id": "fd3e7430-950d-4570-a0ec-0d240e45be6d", + "payload": { + "number": "9179451152" + } + }, + { + "phone_id": "1da4e8a2-e5ff-4f75-afad-e3953a2b82d4", + "location_id": "28d3e03c-647d-462c-a78c-d71e33092075", + "payload": { + "number": "7186448523" + } + }, + { + "phone_id": "1dcf1c41-e630-4bfc-a095-0c1c55a291d1", + "location_id": "6d853a10-d0a9-4279-be3e-a9d6aca793fc", + "payload": { + "number": "7185839000" + } + }, + { + "phone_id": "1ddc2d9a-2742-4410-8697-67e0cb9f0047", + "location_id": "1cbf6d43-8be6-44ab-8750-056e1a41d0f7", + "payload": { + "number": "6467385131" + } + }, + { + "phone_id": "1e069af6-ad0c-4fe3-b2b7-523dcef46ceb", + "location_id": "13ee9e1d-5eda-4629-a872-4c5b1677d759", + "payload": { + "number": "9174888413" + } + }, + { + "phone_id": "1e3e1f57-753f-4ade-b344-a17c11ce75aa", + "location_id": "0a215160-a8b4-4e61-968c-c9b492539b79", + "payload": { + "number": "3477357103" + } + }, + { + "phone_id": "1e6419d9-9d47-4117-b051-b55bab7d104c", + "location_id": "5074cb6a-cdc2-406d-86fa-a19fbc923609", + "payload": { + "number": "6469748527" + } + }, + { + "phone_id": "1e7027c6-5094-4a25-96ca-e684978b0e3f", + "location_id": "fe684007-cb09-4c17-963f-378df3c0b135", + "payload": { + "number": "7187861550" + } + }, + { + "phone_id": "1e77b3d0-3443-4c67-a4fa-68f4863ff49c", + "location_id": "448f5a2a-81df-473e-8727-d8d6da0bbbbd", + "payload": { + "number": "7183990200" + } + }, + { + "phone_id": "1e826cc2-3019-414a-8458-e7dc83960a58", + "location_id": "8a2c6050-b29a-474f-84ac-6aa5b1ce9e9b", + "payload": { + "number": "7185719682" + } + }, + { + "phone_id": "1e981184-82eb-4399-8e0e-59cafd4bc2d8", + "location_id": "3b14d00b-eaea-4be6-9c49-95053ec6dad0", + "payload": { + "number": "2129420043" + } + }, + { + "phone_id": "1eb8d666-0775-4570-96e5-22d85304a2db", + "location_id": "e634301f-47ff-4796-877d-b757acc04359", + "payload": { + "number": "2122735272" + } + }, + { + "phone_id": "1ed85ede-0d66-47c0-b0c8-3264e3caab3d", + "location_id": "80e7d879-7944-4244-9598-ab2c1efa3873", + "payload": { + "number": "9149971570" + } + }, + { + "phone_id": "1ed993e7-5964-41c6-b039-9fe5418d1888", + "location_id": "4d70929c-e4d1-44be-9a03-a1816c73d387", + "payload": { + "number": "2125355530" + } + }, + { + "phone_id": "1ef35dc8-9ecb-49ae-a3ea-031414172039", + "location_id": "95c668f1-8c59-430f-a1ae-e64d396a7f5d", + "payload": { + "number": "7186580010" + } + }, + { + "phone_id": "1ef7f291-7e57-45ce-a966-23158184a0a5", + "location_id": "a1cfb784-afa6-4dbf-bda4-efdc066c2fc1", + "payload": { + "number": "2122463540" + } + }, + { + "phone_id": "1f474a99-6419-41ed-8d0a-f679a61876a4", + "location_id": "3bbbdaae-f3e6-4686-ab99-a113d799d824", + "payload": { + "number": "7189402200" + } + }, + { + "phone_id": "1f47d1e1-2fa1-4d20-8c9e-bcb93651dee4", + "location_id": "b8a8e460-0ad3-47c5-a158-a03e68896b10", + "payload": { + "number": "2125771270" + } + }, + { + "phone_id": "1f496144-4649-45a0-ab7a-5bc367264ef2", + "location_id": "686f6669-e09b-4726-8bb5-715bbcabe19b", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "1f900b85-8e78-4f61-8a2a-b623e5f1d6cf", + "location_id": "11782808-9cc5-438a-b5e2-6563eb1b3d9d", + "payload": { + "number": "7183047050" + } + }, + { + "phone_id": "1fb5cf28-f75f-44f1-9abc-69144abf9bfe", + "location_id": "9995419a-59d3-48df-aeb5-a6451aff0c7e", + "payload": { + "number": "2129624795" + } + }, + { + "phone_id": "1fec74df-b0f5-408c-bf64-85c5702c55f0", + "location_id": "70a9e299-a416-4c87-aa4b-923d0f999551", + "payload": { + "number": "2129240562" + } + }, + { + "phone_id": "2074b5ea-e2c9-4d97-8c9d-b679a7d73b49", + "location_id": "b822f623-0818-43d7-b3d1-272015b149cc", + "payload": { + "number": "2128514516" + } + }, + { + "phone_id": "20758e1a-4f67-4c9c-b23c-012ea18ed14a", + "location_id": "41549e32-22b1-46a5-8bcd-a9eda0a3cfe3", + "payload": { + "number": "2127412247" + } + }, + { + "phone_id": "2092eb36-c663-4380-a874-16f858a29d0f", + "location_id": "eb415fcd-8766-45bb-ab47-221710292c09", + "payload": { + "number": "2126135000" + } + }, + { + "phone_id": "20c914bc-fac0-41a8-b7eb-fb1833fe211c", + "location_id": "83a01c33-8b83-42d4-887e-6794cfced947", + "payload": { + "number": "6463852454" + } + }, + { + "phone_id": "20e05887-83a7-46d6-bbea-6161beaa9e7f", + "location_id": "4ab21ad0-0d1e-41ee-9271-e7e5daeb6142", + "payload": { + "number": "7183223455" + } + }, + { + "phone_id": "2101ae83-1aad-4231-9296-91428a4c077b", + "location_id": "d5cdb0d1-42dc-4dd9-8315-e860076bbce9", + "payload": { + "number": "7185383344" + } + }, + { + "phone_id": "210aef54-4bbc-49d3-baaf-4e89c68ecb22", + "location_id": "ec90f131-1fd1-47f3-b4b3-4921a061e9b4", + "payload": { + "number": "2125430777" + } + }, + { + "phone_id": "211adb1b-5913-4ce2-a18b-5ad50a951530", + "location_id": "94a324ee-3618-4a70-8a37-a7471631df40", + "payload": { + "number": "7184920409" + } + }, + { + "phone_id": "2131a6ad-473a-49db-904a-f244ea5e7a67", + "location_id": "11782808-9cc5-438a-b5e2-6563eb1b3d9d", + "payload": { + "number": "7183047100" + } + }, + { + "phone_id": "21324f5f-f808-49b3-88ec-24eed4750061", + "location_id": "6707bd3d-c161-45cf-b6f0-0e3b3c208757", + "payload": { + "number": "7184495000" + } + }, + { + "phone_id": "21a20aae-e0b0-40db-aed5-ede26daadf35", + "location_id": "06b616d6-6cef-4727-b21e-6a95d4516cc0", + "payload": { + "number": "7184015700" + } + }, + { + "phone_id": "21af07ec-6a50-42fd-8d7b-3ae2e34b852e", + "location_id": "e9b9e4e5-eb30-4671-ac9a-ab59d76e07a3", + "payload": { + "number": "7189204067" + } + }, + { + "phone_id": "21be3135-6838-46a4-b6bb-091bfcd5dcb7", + "location_id": "4733b57b-c093-4a19-9a2f-57d3fa9ed3bb", + "payload": { + "number": "2126953800" + } + }, + { + "phone_id": "21d274ad-9091-4007-bce8-e1ac7fbb0e09", + "location_id": "10bb3e81-b889-4935-a355-7b30f0873886", + "payload": { + "number": "7186303220" + } + }, + { + "phone_id": "21e043eb-6523-4bc5-98ea-a436a65c03ef", + "location_id": "8a5ebb9c-6944-4a2c-b92e-bb4fd7de17a2", + "payload": { + "number": "9175331679" + } + }, + { + "phone_id": "21fc218c-5da8-493f-a081-0edf43d99a5a", + "location_id": "046d2f31-51ea-4e87-b98e-cb8b97e96604", + "payload": { + "number": "7184755200" + } + }, + { + "phone_id": "22049cc7-1d38-4b0c-b664-74a586de4f0c", + "location_id": "b8844c82-75b1-4d9c-889d-a5c15739cc46", + "payload": { + "number": "7185083040" + } + }, + { + "phone_id": "22068970-cf26-4b2b-90ec-e5ab9fd24f38", + "location_id": "1a8bf546-e2a1-487f-81c2-7be38cffc2cf", + "payload": { + "number": "2129657000" + } + }, + { + "phone_id": "220756f6-2898-4cb0-a93b-d65fb3c9f5c8", + "location_id": "f06e329b-3034-461e-ab02-71f2d05271e4", + "payload": { + "number": "7189568218" + } + }, + { + "phone_id": "2210907f-91e4-414c-a81b-6b2975c9e8ea", + "location_id": "9b872356-711b-43b8-a11c-20698b1025ba", + "payload": { + "number": "7186652486" + } + }, + { + "phone_id": "2276a686-a1de-45e3-999b-414e8333f628", + "location_id": "70c0060f-108a-484b-a997-973adc6753d7", + "payload": { + "number": "6465186370" + } + }, + { + "phone_id": "22a64b50-cda2-4ec0-8570-e516543f007b", + "location_id": "f93033ed-aae3-4353-b2e6-71d2fd4431d5", + "payload": { + "number": "2128736600" + } + }, + { + "phone_id": "22b2e274-5010-48c9-a7c6-6304b2d06a02", + "location_id": "5d685ae3-d368-4a05-9e42-71ef8e210b10", + "payload": { + "number": "9174920990" + } + }, + { + "phone_id": "22b898df-6c01-4ffe-8bf9-48374472be2d", + "location_id": "1a3c5628-5231-46d4-ae14-1802f2a1a05b", + "payload": { + "number": "2128693850" + } + }, + { + "phone_id": "22d0f18f-eaba-46f7-9101-95e2e00af2b0", + "location_id": "a6abed34-fe54-4ed5-b0eb-57eae766e280", + "payload": { + "number": "8557337628" + } + }, + { + "phone_id": "22e42f0d-0694-42c0-81d8-3c7e90721c85", + "location_id": "3d732b69-ab24-4a29-9471-72c9e0936290", + "payload": { + "number": "7184103900" + } + }, + { + "phone_id": "22eab195-7f4b-4422-99bd-4a9b1d50c918", + "location_id": "84f13826-8ccd-4afe-ba55-2a927262421c", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "235989f9-253a-4fed-9168-c1af6a9405d1", + "location_id": "3b9a0d70-d047-4b1a-b6cc-c854d0246c04", + "payload": { + "number": "2129419090" + } + }, + { + "phone_id": "23bcd559-cdd0-4700-9096-b5d99a93bff1", + "location_id": "10c43be8-41b8-49b2-a4ae-61a07fdad79a", + "payload": { + "number": "8665697233" + } + }, + { + "phone_id": "23c79edb-0129-4bcb-96bc-3210ca6f2341", + "location_id": "30a751de-1981-4388-ab57-257fedbe3b76", + "payload": { + "number": "7182604670" + } + }, + { + "phone_id": "23dd0343-868d-41f6-8aa0-6b3f4c9594a3", + "location_id": "d2b90c61-f38b-4d01-bc31-616c4e9e903e", + "payload": { + "number": "8334234273" + } + }, + { + "phone_id": "244b2491-2455-4023-9ddc-7a401fc27895", + "location_id": "23657c92-c80c-4c14-9c18-9eada43acefa", + "payload": { + "number": "2124263000" + } + }, + { + "phone_id": "246a54ee-6440-4dcc-9824-8c1caab3a69b", + "location_id": "31ae2756-2f7f-4806-9f41-2c376267d638", + "payload": { + "number": "7186217960" + } + }, + { + "phone_id": "24a9628e-ad78-41e0-bd0a-378dd38252e9", + "location_id": "d65e6248-2637-4009-a5e9-933c155407c8", + "payload": { + "number": "7182778303" + } + }, + { + "phone_id": "24d9f96b-5f14-42f1-8ea4-367ba08218bb", + "location_id": "1c0d9c7d-3905-4038-95e3-bb69b8f5fb2e", + "payload": { + "number": "9177223800" + } + }, + { + "phone_id": "24fa5711-f7fd-44e9-b459-85e9fbd04515", + "location_id": "396c40df-6466-4cdd-bc5b-3b0826b1e235", + "payload": { + "number": "6464319729" + } + }, + { + "phone_id": "25260f96-17de-44ad-8f1e-3b790ecb01b3", + "location_id": "37c9162f-1f26-43c7-9029-110eed8b6947", + "payload": { + "number": "7185208000" + } + }, + { + "phone_id": "257a5eab-5547-4faf-ad34-2273fe472fba", + "location_id": "9c6b6ea4-47fe-4670-9fb7-cfdb94f7f371", + "payload": { + "number": "7183285622" + } + }, + { + "phone_id": "258cad9b-ac2d-42bf-969d-2f2935a454d3", + "location_id": "69d496ed-0a4e-4bd3-be04-4e4ade16c5fe", + "payload": { + "number": "6467772274" + } + }, + { + "phone_id": "25ac220b-5339-48fd-bbbd-b8ea49c18927", + "location_id": "9eb890ff-35a2-4cd6-acad-319bfc314ea1", + "payload": { + "number": "7189458640" + } + }, + { + "phone_id": "25c9ada1-00ab-4715-8eed-a073ed831a89", + "location_id": "f52b0d1a-04e0-43c7-8cf6-680afaa6c5b6", + "payload": { + "number": "7186510096" + } + }, + { + "phone_id": "2605def4-632a-4e63-8495-233c70e5b9c0", + "location_id": "52c79659-583d-4ac1-a3fc-bb2cf3e39fc7", + "payload": { + "number": "9292187359" + } + }, + { + "phone_id": "263e3ec2-93e8-4c71-a1ae-dbc254337a5c", + "location_id": "aa4e72b3-9e47-4e19-b7ee-61fdb79690d6", + "payload": { + "number": "7189457150" + } + }, + { + "phone_id": "266780cf-dcea-49ae-b2fc-d9b940cac50c", + "location_id": "1eda09ee-cb69-4625-98e5-39ee3c44d3e2", + "payload": { + "number": "7186376560" + } + }, + { + "phone_id": "268b69a9-b606-416f-9395-3f92cee493df", + "location_id": "c31d0801-091b-42d7-9ae4-2055b8bd9344", + "payload": { + "number": "3478422905" + } + }, + { + "phone_id": "2695aa82-d739-45a4-9cdd-c7ab37f6194b", + "location_id": "b8149033-7db8-4fa4-84d5-1ba673002e3f", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "26afaf60-34d0-4b0d-93eb-0ae1bb2df2c7", + "location_id": "da5c2313-97aa-4292-9ce1-37deed890253", + "payload": { + "number": "9179744946" + } + }, + { + "phone_id": "26bc5c84-dfe7-4d67-a0e1-b7bc14015ee2", + "location_id": "69059940-7a13-4d9a-b150-07ed827f3eff", + "payload": { + "number": "7184476362" + } + }, + { + "phone_id": "26bdf8eb-a2d9-4f1f-b9f6-8fc33d0ce0f5", + "location_id": "36bc721b-fd3a-4193-afe5-6f60ae22ad1d", + "payload": { + "number": "7188081360" + } + }, + { + "phone_id": "26c6c49c-1c74-4c97-baa4-5e256075a8cb", + "location_id": "8f144d32-5e3d-4d1f-be99-e5b30554e77c", + "payload": { + "number": "7183647700" + } + }, + { + "phone_id": "26e6ed5c-ad63-4faf-bc36-a3763cf4c4e8", + "location_id": "9115cdb2-92aa-413c-ae5b-47f02ec6bd07", + "payload": { + "number": "7185307039" + } + }, + { + "phone_id": "26fdaa1f-4f3c-40f5-8d15-1252258bf3c6", + "location_id": "f2b78ee8-468a-494f-8198-4fb2fe534cf7", + "payload": { + "number": "9176001644" + } + }, + { + "phone_id": "27446ada-e749-4ced-bfbd-c7e4048b9163", + "location_id": "b3de0ec3-23c3-4f3e-9ac9-d97acc21178e", + "payload": { + "number": "7187871100" + } + }, + { + "phone_id": "277969f1-bdeb-45fb-96f3-0f86bcb778c4", + "location_id": "6baeaddb-4030-4e8a-88c4-b639af1df4e0", + "payload": { + "number": "3473183313" + } + }, + { + "phone_id": "2787277b-d8cc-4df5-a028-00b3d375fbbc", + "location_id": "f7dd312c-0a8d-4110-a6c2-2a38e4693eae", + "payload": { + "number": "7188221818" + } + }, + { + "phone_id": "27c37697-0777-4580-882d-99b74e465dca", + "location_id": "0714d03f-98cb-400d-ab3c-5d54c6c01a40", + "payload": { + "number": "3475192755" + } + }, + { + "phone_id": "281c7461-cd57-451b-afff-c6a32f6c7bcc", + "location_id": "7d3980b3-8ace-4929-8051-6d745809d62c", + "payload": { + "number": "2126207800" + } + }, + { + "phone_id": "286ea79a-4e76-4a4f-92fd-5c360978d687", + "location_id": "84f13826-8ccd-4afe-ba55-2a927262421c", + "payload": { + "number": "7185795000" + } + }, + { + "phone_id": "28ce77ac-2a45-4f3e-8941-619adad80e30", + "location_id": "02ac8152-746a-4ce0-aa54-d8d0c706cf9f", + "payload": { + "number": "7188522584" + } + }, + { + "phone_id": "2927a5bc-f1a9-48e7-a04f-75ce0064ab6e", + "location_id": "abd8b179-f1c6-433f-94c6-ab5d85400225", + "payload": { + "number": "7182465219" + } + }, + { + "phone_id": "292e94a3-3df3-4f6f-899f-2de60c149102", + "location_id": "fec41bea-3d5a-4048-aeb2-dea6bb699efe", + "payload": { + "number": "3475103100" + } + }, + { + "phone_id": "29366959-c456-4acd-8473-1f2d473e9e1d", + "location_id": "e2dbd70e-44e3-4cc2-9c55-58331a42c568", + "payload": { + "number": "7187430575" + } + }, + { + "phone_id": "29582254-739b-4ba9-8f5f-5e85deddd47e", + "location_id": "31eed5bb-6a9d-4be4-87f6-ca0f746fc36f", + "payload": { + "number": "2127274220" + } + }, + { + "phone_id": "295cce53-b351-45cf-bef9-0fee196f738c", + "location_id": "f70e1a27-def7-450f-824c-d61192e4d091", + "payload": { + "number": "6467442900" + } + }, + { + "phone_id": "295d36fa-de30-43ca-b44a-86cc51b1c82f", + "location_id": "a4e2f702-b7ce-4c11-8472-ac9966b0ec6c", + "payload": { + "number": "2126743456" + } + }, + { + "phone_id": "295f6304-c631-493c-b225-1d92b6030d6b", + "location_id": "b0c92b09-e5dd-40b2-a56c-5f435c75a141", + "payload": { + "number": "7186456400" + } + }, + { + "phone_id": "296d5c3f-91cc-45c8-9550-05ccd86caaf0", + "location_id": "fcfcc6d6-d5a0-427e-8cc4-741b19efe95a", + "payload": { + "number": "7185792500" + } + }, + { + "phone_id": "29f8e068-7e83-4abe-b58a-047ea1be2d4b", + "location_id": "ee939397-b7e6-4957-9ea7-bf61d1236ddf", + "payload": { + "number": "2123493724" + } + }, + { + "phone_id": "2a6fc7e8-b561-4de4-992a-494ea7636e2d", + "location_id": "df3f4053-562c-4883-9488-fb7f13f5528f", + "payload": { + "number": "9177964296" + } + }, + { + "phone_id": "2a8eb5d0-b8c7-4703-b326-e5f1e0c0df7c", + "location_id": "11f4a2b0-d1bd-428d-9f2b-5694ae6e0b99", + "payload": { + "number": "2123067450" + } + }, + { + "phone_id": "2a9090ae-3214-4ec2-90e4-62fe57b1dc72", + "location_id": "34a47a4d-7e7f-4923-8e96-e131c2abf4ae", + "payload": { + "number": "7185901800" + } + }, + { + "phone_id": "2ad1c3c3-8264-4a01-97d5-e5fbc4f4a955", + "location_id": "b11401ba-ceb7-406b-8157-b71c9015b049", + "payload": { + "number": "7182217259" + } + }, + { + "phone_id": "2ae4cbed-5da8-4fe7-84f7-d49447750728", + "location_id": "da362d29-6b8a-4376-b3c1-5c23354f4d9f", + "payload": { + "number": "2126471680" + } + }, + { + "phone_id": "2b2c0023-9a8f-4e22-9c1f-f60935dc9fc0", + "location_id": "52d7bc0d-f77e-4d07-9e5a-2245baea592e", + "payload": { + "number": "7189252259" + } + }, + { + "phone_id": "2b703760-efdb-49aa-8b67-606878576aef", + "location_id": "73e6dd66-d788-4d48-ac05-a8df81557c47", + "payload": { + "number": "9734812300" + } + }, + { + "phone_id": "2b88a0a8-2b03-4125-8c46-b72456e8cee0", + "location_id": "069dee8a-7b35-4326-b194-6a1110d7bc77", + "payload": { + "number": "7183602906" + } + }, + { + "phone_id": "2bb515fe-6e5c-420e-9267-c72fc7806485", + "location_id": "d4cf3bb8-0fa8-4658-b593-68674779841e", + "payload": { + "number": "2123602600" + } + }, + { + "phone_id": "2be9298b-26c0-4a10-83bb-8b56cbf7f287", + "location_id": "dc5bf4f1-8eb6-4370-a3c2-1bbcc3dc702b", + "payload": { + "number": "7186194248" + } + }, + { + "phone_id": "2c398d7b-32b1-4e67-a58d-34d13e4d23d9", + "location_id": "58a25cc2-13e0-4372-bd3c-070b04882a6e", + "payload": { + "number": "3472972900" + } + }, + { + "phone_id": "2c498995-353b-47aa-865f-882293514577", + "location_id": "0bf0af17-e1b7-4601-8cb0-86f5a1a51278", + "payload": { + "number": "7183880390" + } + }, + { + "phone_id": "2c57e553-cfe0-46c7-a1bd-0413ad6e5657", + "location_id": "790e8513-fdc7-4677-b801-08793f9c45e9", + "payload": { + "number": "2127609800" + } + }, + { + "phone_id": "2cfe7bac-8d45-4c56-90b7-cd00e707c6d7", + "location_id": "e33d1d3a-929a-41ee-ac79-14b92b080d88", + "payload": { + "number": "3322430100" + } + }, + { + "phone_id": "2d205525-dc9d-49c1-adb4-3e72339efe14", + "location_id": "c79fbcf4-edb2-4252-a06f-7dead52a26ef", + "payload": { + "number": "7182836000" + } + }, + { + "phone_id": "2d760db5-768e-4584-bc6d-d63de735d481", + "location_id": "bb4ce3a6-89ad-4e72-996c-d8a794e282a1", + "payload": { + "number": "7185925757" + } + }, + { + "phone_id": "2d9c9865-a9e5-42f3-958e-add906020506", + "location_id": "b55c2919-d2ca-4862-bccd-6a178396744f", + "payload": { + "number": "7186510096" + } + }, + { + "phone_id": "2de0d6d0-b245-411c-a094-db1005cf9d3d", + "location_id": "a9dbdf24-2c3b-4d73-bec8-8216f9136ca6", + "payload": { + "number": "2129801888" + } + }, + { + "phone_id": "2e04ee1e-f0c8-4082-92cb-72affc2a426c", + "location_id": "bd30eb3a-d7fd-49de-ac25-72de45c66001", + "payload": { + "number": "7187055190" + } + }, + { + "phone_id": "2e08de31-564a-4411-be27-b8e0a50d7b3d", + "location_id": "34388965-5f1c-4229-a6ea-3cd27e6dc505", + "payload": { + "number": "3473967959" + } + }, + { + "phone_id": "2e287e23-ba77-4566-ac84-9cd81dbd6bf6", + "location_id": "34ac3d9d-b79e-4f41-8d93-ef81192a52c4", + "payload": { + "number": "7183376800" + } + }, + { + "phone_id": "2e2d8e3a-bdb8-4828-a7d6-a7bcde7663a1", + "location_id": "552ae6a9-617c-40ae-a2ed-bc9f695d8a22", + "payload": { + "number": "2123589922" + } + }, + { + "phone_id": "2e48a608-02ba-496d-b0ac-939a39149157", + "location_id": "85be7fb0-e82c-46ff-a4b9-7b87233b864c", + "payload": { + "number": "7187480650" + } + }, + { + "phone_id": "2e6a9bf6-0fef-40ab-95dc-93371eee7cd3", + "location_id": "89df0afd-f75a-483d-a308-394e554103dd", + "payload": { + "number": "7188933606" + } + }, + { + "phone_id": "2e6da389-e2d3-4608-aeca-246b700a4d5f", + "location_id": "6c27f44b-410e-4b87-9da3-326c19bbd200", + "payload": { + "number": "7185831765" + } + }, + { + "phone_id": "2e84d3fa-55db-414e-ab87-dd2c9dfe893b", + "location_id": "4a851236-89b9-4b4e-a0c4-a42b4e8410cc", + "payload": { + "number": "7189823119" + } + }, + { + "phone_id": "2e89469c-f87d-4bb3-8f43-caf0c36d7dce", + "location_id": "358f9384-e42c-4e86-9c7e-524eb39b42a4", + "payload": { + "number": "2123378550" + } + }, + { + "phone_id": "2f6140e2-56ad-40c0-a685-0307bc2dd4c9", + "location_id": "f985e463-c3b7-48b1-854c-272ef9664422", + "payload": { + "number": "7186764063" + } + }, + { + "phone_id": "2f8c51e3-0684-4891-bedb-b96e2e463982", + "location_id": "bff25688-1fe5-4e34-afa2-667ca9300fe3", + "payload": { + "number": "2127997171" + } + }, + { + "phone_id": "2f98ea1b-dc07-4a90-b7c9-dc532b727bec", + "location_id": "c8988da0-acc8-4298-91c6-88bfcaff789c", + "payload": { + "number": "9292275493" + } + }, + { + "phone_id": "2fb4965c-61c2-4b53-b135-e00e6272fd61", + "location_id": "b1bd74d3-6683-49c2-b119-f928e1a6f6db", + "payload": { + "number": "7167991781" + } + }, + { + "phone_id": "2fd40f93-7d16-40ef-a743-49c2bc2c3ed1", + "location_id": "7546f873-2f11-47da-b0e1-bd4d5f99fdbb", + "payload": { + "number": "7187485709" + } + }, + { + "phone_id": "2fe177a0-b0ba-4088-8b4e-e9ce1755a0ab", + "location_id": "b689a44f-0f1d-4cb5-9e5e-c02a2627db4f", + "payload": { + "number": "9292094070" + } + }, + { + "phone_id": "30227498-e342-4a60-8f1a-c55155af8477", + "location_id": "945b646a-f3e8-412f-9718-b06a6d6a77f4", + "payload": { + "number": "7183134357" + } + }, + { + "phone_id": "3056ad4e-7146-4dc2-add5-d031451ddc8e", + "location_id": "70b22690-bd6d-4c76-896f-66cbd787f0b4", + "payload": { + "number": "7184470526" + } + }, + { + "phone_id": "30947147-815f-4150-9e90-30321875d768", + "location_id": "c4ff7ea3-93d3-4d45-b593-b8cd60c67d3f", + "payload": { + "number": "2125296320" + } + }, + { + "phone_id": "30cb5774-d675-4fbe-a270-192190d9e428", + "location_id": "a6a042e1-4954-455f-9576-b8b344034bf4", + "payload": { + "number": "7182490755" + } + }, + { + "phone_id": "30eed1c3-e584-4250-90a3-e9bb8941c125", + "location_id": "c0dd5712-af42-47a0-a88b-29bc7f62a282", + "payload": { + "number": "7185521120" + } + }, + { + "phone_id": "31026c5b-95ee-4d15-b2e4-757ebd968192", + "location_id": "e3c1c9dd-5da2-4f42-be63-cd03338de320", + "payload": { + "number": "2016590467" + } + }, + { + "phone_id": "31152cd5-f7bb-4293-8a3b-589e7efb2485", + "location_id": "0589a5d4-0828-4778-ace9-4ad450599a33", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "311bf147-85c9-45c7-b3a5-4728b2626df8", + "location_id": "41549e32-22b1-46a5-8bcd-a9eda0a3cfe3", + "payload": { + "number": "2127412247" + } + }, + { + "phone_id": "3135f206-db50-4f17-81c1-6f2010802219", + "location_id": "6b750362-4337-402c-bb73-7936803e1f0b", + "payload": { + "number": "2128644013" + } + }, + { + "phone_id": "319403fe-643c-47fc-a681-72a0bfed8d37", + "location_id": "c5f91b44-3cca-4967-a1b5-7ba8fd7257b2", + "payload": { + "number": "7189515059" + } + }, + { + "phone_id": "31a3aeba-cc39-483c-a83c-c98ba2afbed8", + "location_id": "b7af5a52-f273-43f5-9126-007c11bfc4c6", + "payload": { + "number": "7185741400" + } + }, + { + "phone_id": "31e35daa-29a8-4de8-bb27-24b5dfaef632", + "location_id": "be1f8529-daa0-4806-af8c-11d3e4938448", + "payload": { + "number": "7188387878" + } + }, + { + "phone_id": "3214173c-4f89-4224-a3c3-8037786b054b", + "location_id": "51f65e21-4f90-4bab-a767-c939b6de0ccb", + "payload": { + "number": "7182553410" + } + }, + { + "phone_id": "323361f6-c928-4992-b4e0-b3769a7cc051", + "location_id": "7be2bf70-1542-4d55-b96e-90510e364dc9", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "3255ecea-c086-4f40-8563-f7e190d00e8c", + "location_id": "15b78950-fb7e-4352-adac-8a8fbbb454b0", + "payload": { + "number": "7188756900" + } + }, + { + "phone_id": "325b1dc8-d668-4f9e-b0e0-3c2caa61cb6d", + "location_id": "da7db63c-11c4-4a06-a259-a2ed2c394ca2", + "payload": { + "number": "7186163000" + } + }, + { + "phone_id": "32796b2e-8c81-4b23-9386-9ce4a0d85b90", + "location_id": "8a25f9bb-d7e3-46cf-b37f-c0fce810c039", + "payload": { + "number": "8664632778" + } + }, + { + "phone_id": "32a68ee5-819d-4878-8062-4cd2f8af71a2", + "location_id": "c133053e-2026-48a4-9466-83adcfd29500", + "payload": { + "number": "7184342090" + } + }, + { + "phone_id": "32d35d73-c58f-4512-804b-8ee47e00e082", + "location_id": "1e5ea5d1-2fd9-4ad0-b5a4-8614935b1e8e", + "payload": { + "number": "6468474615" + } + }, + { + "phone_id": "32dc6410-7bfa-450c-abbd-c456e86749f6", + "location_id": "aeb55886-1ae3-442b-9ff3-b0862b39acc1", + "payload": { + "number": "2129624795" + } + }, + { + "phone_id": "32eee34e-5cae-4ffb-8086-755cbf8d1132", + "location_id": "076ae17e-189e-463a-a65d-c181c92ac8c1", + "payload": { + "number": "7185852323" + } + }, + { + "phone_id": "32f39c2d-c45b-447e-b9bb-b846ceff7815", + "location_id": "d17409cb-7ca2-4f08-98c9-b43576a594d5", + "payload": { + "number": "2129410920" + } + }, + { + "phone_id": "330adbfa-f88b-4fe6-8a1c-8df513ca9244", + "location_id": "b41ce36f-81ca-4710-aec7-da6df8222251", + "payload": { + "number": "7185572568" + } + }, + { + "phone_id": "331f71e8-e040-4885-bc4a-7b3168a9b7ed", + "location_id": "ad104e38-048e-43b0-b4b7-ba2cd2f7c18c", + "payload": { + "number": "7183346209" + } + }, + { + "phone_id": "334729d9-aa03-4d9a-b3c3-b04da87e6bb7", + "location_id": "9dc672a8-1796-4366-9d1f-7fa0261dfe22", + "payload": { + "number": "7186307942" + } + }, + { + "phone_id": "335a2e99-333f-4735-a35f-2ff17d8fa5d1", + "location_id": "709cd6dc-6922-4f38-87e0-b81be4799a5c", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "336abbd5-bfe2-4f61-a31d-7b4d8f5df367", + "location_id": "312adc61-30ef-4216-8b60-91a9835cf977", + "payload": { + "number": "5162165196" + } + }, + { + "phone_id": "338e9b5c-6535-4222-bcc4-cd55d8a02983", + "location_id": "c2f6b62f-3588-4c90-997a-bfa4f917f6ba", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "33c948a6-56d8-4f76-903f-abcc782a3464", + "location_id": "a7f78f1b-a66b-4ce1-983a-f1852b1a1c27", + "payload": { + "number": "2125632499" + } + }, + { + "phone_id": "340b2e70-821f-44b3-917f-9237d4d9896d", + "location_id": "e155bbbd-4859-4be3-96c8-077f4c326a97", + "payload": { + "number": "3476181162" + } + }, + { + "phone_id": "341b159e-5ee4-4d22-a336-a9fc55d9f405", + "location_id": "4e714a45-e3ad-4f6e-bfec-1039d90c266d", + "payload": { + "number": "2129796238" + } + }, + { + "phone_id": "34671642-2746-4e00-8b31-014e7140db8b", + "location_id": "6d858ff2-2e40-40f1-b86d-167f0810cbcf", + "payload": { + "number": "2126450875" + } + }, + { + "phone_id": "3470bb24-07bc-4b47-ae93-6ce7fbb8d0d7", + "location_id": "3ad2f80e-53b1-4da7-b862-60507ad3d2cd", + "payload": { + "number": "7182991100" + } + }, + { + "phone_id": "348d67d4-30f2-43af-830c-f37b5e5cb52e", + "location_id": "dcda3fd8-c438-4b89-b5e8-c2e142be1adc", + "payload": { + "number": "7187164400" + } + }, + { + "phone_id": "348ee7de-c4ff-4073-bdc4-40103a36bd87", + "location_id": "1d369109-9428-4235-acb0-b75409273704", + "payload": { + "number": "7183259485" + } + }, + { + "phone_id": "34c62eaf-100c-407f-a838-a8187a9caf01", + "location_id": "f9581ab5-404b-4222-bf39-365dda6d91de", + "payload": { + "number": "7187593900" + } + }, + { + "phone_id": "34f91183-a4d2-4abf-871a-ba4305c2db31", + "location_id": "2a2ae9b7-7bb4-4aa5-945b-cbdaacb43fde", + "payload": { + "number": "7183000133" + } + }, + { + "phone_id": "352de56e-09ee-43c6-b59a-2cf452f877cc", + "location_id": "732b84fd-2262-4b90-93c6-734ef3163782", + "payload": { + "number": "3472264540" + } + }, + { + "phone_id": "356155f7-aa12-4812-acd7-49e0938213a1", + "location_id": "b50bed26-da08-499d-b5ba-e40be45d6669", + "payload": { + "number": "7188756900" + } + }, + { + "phone_id": "358952a8-60bd-482a-b459-16ef0cc791b5", + "location_id": "a1067d64-2c3d-4fdf-a250-7a7da1dc7c8f", + "payload": { + "number": "7185232123" + } + }, + { + "phone_id": "35c1daf8-6aae-4f14-bc22-0faf79fb6e2f", + "location_id": "af78d1fa-73b9-45b1-92d2-43ae9a21703b", + "payload": { + "number": "2126784667" + } + }, + { + "phone_id": "35d47096-9636-461b-b06d-c14e6325bdd0", + "location_id": "33451e08-ec8b-4c4f-9746-a68f3d6b6dc7", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "35fa0751-e7e8-423c-9fc8-3e41d76f464b", + "location_id": "5a574484-8ba1-41b5-a5f2-49f278c96303", + "payload": { + "number": "7186658472" + } + }, + { + "phone_id": "360c7a15-b5ba-42f1-b410-639300871ddf", + "location_id": "5abd0071-8df7-48d7-a6f5-890a4fd0a9d2", + "payload": { + "number": "3478652769" + } + }, + { + "phone_id": "360d8fae-f714-4c6e-b63b-b7900ec480b8", + "location_id": "2c98e689-30c4-43d7-a9a5-eb85fb007ee5", + "payload": { + "number": "7188661055" + } + }, + { + "phone_id": "362f3b58-a10e-401d-be21-b76f60009c13", + "location_id": "54efdd76-d383-49c1-a367-c25c7e4e8a29", + "payload": { + "number": "2125696200" + } + }, + { + "phone_id": "36787e24-a00e-4135-859c-57f418edd7c5", + "location_id": "44ac9f14-45d7-4795-8c09-52b0bb7c8ef0", + "payload": { + "number": "2127815500" + } + }, + { + "phone_id": "36825edd-646e-41d1-9003-82b85db6b09d", + "location_id": "45f1444c-d5b8-421a-94de-af4a53f29d35", + "payload": { + "number": "7184605600" + } + }, + { + "phone_id": "36835066-ab4d-4072-a3fd-4aac3dc82826", + "location_id": "a98e33ec-ba03-4728-b1f5-0f1eb81ba501", + "payload": { + "number": "7189088000" + } + }, + { + "phone_id": "36a5e5fb-2b1d-4dc8-9613-3c04859ce21f", + "location_id": "25d83df6-bf29-418f-b1ec-b4188412d683", + "payload": { + "number": "6466663040" + } + }, + { + "phone_id": "36a9dac4-4408-44bd-b1f6-9ec3e9626d98", + "location_id": "b176e873-d7f3-4909-85b6-7ac19178d72c", + "payload": { + "number": "7187386800" + } + }, + { + "phone_id": "36aee690-575a-40cb-b196-adbfd727d2b6", + "location_id": "0a307d85-38d6-408d-84ea-1b02a91d2d7f", + "payload": { + "number": "6463807777" + } + }, + { + "phone_id": "36cf58a9-47e8-4f98-b526-858a01496db9", + "location_id": "72b77c76-2c23-478b-8104-ba2655aed8e7", + "payload": { + "number": "7185858585" + } + }, + { + "phone_id": "36de8ea0-d22f-4d27-8826-6e93413610c1", + "location_id": "872f19de-23a9-4dbc-bba6-01bc93aab1e0", + "payload": { + "number": "9135153189" + } + }, + { + "phone_id": "375f28cd-958a-4cd6-9de2-177f9ff05527", + "location_id": "5d9e39bd-01b1-4103-9091-b30371f3fd4f", + "payload": { + "number": "7182151818" + } + }, + { + "phone_id": "379f374c-d9e6-4c00-a8d0-c75911d1d05d", + "location_id": "4eb7da4e-0fd0-4518-8d85-4dd982dfea11", + "payload": { + "number": "2122223882" + } + }, + { + "phone_id": "37dee5bf-9837-46eb-a5ee-6d7a4b8c83ba", + "location_id": "c8508d18-da90-4070-ad39-10c951425fda", + "payload": { + "number": "7188821212" + } + }, + { + "phone_id": "37e9cc5a-7118-49cb-a853-837c4fc34bb5", + "location_id": "8023cc39-5dd7-4200-93f7-0bca4185eb04", + "payload": { + "number": "7182403601" + } + }, + { + "phone_id": "37f5a2ba-288b-416f-9b47-5b4f5e20ac88", + "location_id": "58ebbb13-092f-4847-8fac-045f9a4045d9", + "payload": { + "number": "2127645178" + } + }, + { + "phone_id": "38269ef2-cc01-49d1-ad6f-6e4ae586a04f", + "location_id": "38c82a69-a713-48a0-b2cd-6e07b675d94a", + "payload": { + "number": "3474723500" + } + }, + { + "phone_id": "39030935-6264-4d4a-b69e-2f28cd2fbd67", + "location_id": "7575b300-c7e2-41d9-9190-d60f72190753", + "payload": { + "number": "6466060301" + } + }, + { + "phone_id": "391069d1-3bf9-4747-95b6-5e973e28c665", + "location_id": "3b4c3003-bec1-455f-afb9-e307d335674f", + "payload": { + "number": "9293996423" + } + }, + { + "phone_id": "3943c0de-7438-45ef-96c4-5c650c7630a3", + "location_id": "d58bf45e-75af-4980-ae50-35aae247bebe", + "payload": { + "number": "2124316177" + } + }, + { + "phone_id": "39648f5c-fbb7-4530-ae7d-583a953c79c0", + "location_id": "902536a1-5adf-4b49-bb34-e96d315eebb6", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "396dc2ef-e150-4681-9235-3266c6c4865f", + "location_id": "8c4f22ac-b452-4842-9ab0-d28a86c60884", + "payload": { + "number": "2016878185" + } + }, + { + "phone_id": "397cfce4-0164-4b99-aa05-721534a1c25c", + "location_id": "bb99debb-293e-4810-bf67-6b0363825f9d", + "payload": { + "number": "7188840279" + } + }, + { + "phone_id": "39959bd5-3b9c-4e07-83a3-236174fa207a", + "location_id": "ceececc1-d4fc-4f39-9668-e36bff5b1fcc", + "payload": { + "number": "7187279722" + } + }, + { + "phone_id": "39d6fbe5-f321-4278-980b-ae162ca72a98", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "7186572465" + } + }, + { + "phone_id": "39dc3b20-eb7e-439d-bb59-95068425ef0c", + "location_id": "5a574484-8ba1-41b5-a5f2-49f278c96303", + "payload": { + "number": "2128623900" + } + }, + { + "phone_id": "3a69cc37-3fdb-42b9-8e5f-d9d760426771", + "location_id": "fcaa0052-cc70-4e46-b555-717c3104bfa0", + "payload": { + "number": "2123584119" + } + }, + { + "phone_id": "3a7c79b8-c29b-4d06-9283-9341c32350ef", + "location_id": "4f11e4d6-b0b6-4a79-9a95-e7961c3bd8a6", + "payload": { + "number": "7183009725" + } + }, + { + "phone_id": "3a80ff34-542d-4a78-a15e-3c909ddf6c9a", + "location_id": "95888a0f-c6a4-4294-ad9c-90852c330a3a", + "payload": { + "number": "7182260496" + } + }, + { + "phone_id": "3a9f7448-3d10-4b40-b29e-8f23517641ea", + "location_id": "b598b624-02f1-482a-81ec-16e264cc637e", + "payload": { + "number": "7185252800" + } + }, + { + "phone_id": "3abb5672-239f-4023-88fd-680dd483600b", + "location_id": "d81379a2-88e5-49d1-8cc3-e2155d535eb6", + "payload": { + "number": "7188845900" + } + }, + { + "phone_id": "3abcc21a-b821-430e-b4b8-e573dfa5311e", + "location_id": "ff85d967-5c64-4eb7-8980-39cb08ea8e12", + "payload": { + "number": "2124279010" + } + }, + { + "phone_id": "3acf7ed0-a947-4299-bd33-5506f59241c2", + "location_id": "3ada4162-ca1e-4d94-a178-e4e09aec0ab6", + "payload": { + "number": "2127779617" + } + }, + { + "phone_id": "3aea16e9-3615-4b82-bf13-afac1f8035cf", + "location_id": "de3f2864-a8d2-4be7-ae82-f629008c03c9", + "payload": { + "number": "2127413590" + } + }, + { + "phone_id": "3af2fb7e-7b3a-46a3-8816-11bb221e4f1e", + "location_id": "b3ec24b6-7fc0-4146-99ed-b6fd44260397", + "payload": { + "number": "6318928637" + } + }, + { + "phone_id": "3af769c0-fb92-4c79-a384-dc9e698fbc8f", + "location_id": "aefab018-0f08-4ed8-901c-f019b4dcc09f", + "payload": { + "number": "2126130300" + } + }, + { + "phone_id": "3b202aca-7b20-44cd-8c0e-c95cc3fc2c53", + "location_id": "e8cf48aa-b092-46ee-92e6-bc8a837101f0", + "payload": { + "number": "7187719000" + } + }, + { + "phone_id": "3b5408eb-c182-41d8-ac80-620a5c73c38e", + "location_id": "1c6de80e-42ba-4bc8-b5cf-37c314aa15f5", + "payload": { + "number": "2125358008" + } + }, + { + "phone_id": "3b620d0d-fd16-4910-9f0e-422a3b51df9f", + "location_id": "87edbfe0-06dc-4dfc-8eba-b4f3c7fd30ca", + "payload": { + "number": "7188833000" + } + }, + { + "phone_id": "3b9ebb24-4981-4fd4-8b6d-49e5e86562ab", + "location_id": "ed56854f-e8ec-40dd-83d5-8857b6386410", + "payload": { + "number": "7189204321" + } + }, + { + "phone_id": "3bcac029-7cb1-4f19-9a2e-628dc40f39d1", + "location_id": "836d9f72-2544-4030-87e3-d3adceb797ed", + "payload": { + "number": "7182820010" + } + }, + { + "phone_id": "3be51e62-a383-447f-a044-d6603630f768", + "location_id": "e6be7dd5-9309-44da-88f4-a7fd91954d9a", + "payload": { + "number": "7183565412" + } + }, + { + "phone_id": "3bee17e2-4cef-4515-b2f0-3de2a294a42b", + "location_id": "da2ab990-e4db-451c-ac04-fb9436924e98", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "3c1dac97-970f-45e0-83ef-c6b0f8c86204", + "location_id": "ec055315-f5ee-46d7-9a36-bbd6fdd2b8c5", + "payload": { + "number": "7188751858" + } + }, + { + "phone_id": "3c2e1ef5-94b6-4f9c-9077-788fec25eb38", + "location_id": "a83ad0cc-5f6c-421b-9110-b6d524aee2f9", + "payload": { + "number": "2127799207" + } + }, + { + "phone_id": "3c419415-8c3e-4d91-8a3d-9e4a5ea4f414", + "location_id": "3c010ccc-ba90-4b93-a4ba-5c16850182cc", + "payload": { + "number": "7184205617" + } + }, + { + "phone_id": "3c59396e-5e73-4289-897c-bfca49507aa8", + "location_id": "e29cbd00-5b10-4c36-af94-48beaa377a48", + "payload": { + "number": "7189512302" + } + }, + { + "phone_id": "3c6de3c1-2d0b-462a-88df-1c586a7e0166", + "location_id": "04271866-060a-42dc-a988-d6dcd6cd391c", + "payload": { + "number": "2126276252" + } + }, + { + "phone_id": "3c6f1a8c-c672-4059-9c4b-fb9b8e1e9af5", + "location_id": "e3813f9a-6b6b-4080-9281-a75bb4e4f06f", + "payload": { + "number": "2124771120" + } + }, + { + "phone_id": "3c76f0e9-79f2-436e-b2f9-f49a507d5f00", + "location_id": "ccfc9914-f0bc-4aac-9e2e-78b663fc7429", + "payload": { + "number": "7187127495" + } + }, + { + "phone_id": "3ca71026-11bf-4b5a-8bf9-bd72595577e6", + "location_id": "f048547a-1a3f-478b-b26f-bb28cc9fcbc2", + "payload": { + "number": "3476021832" + } + }, + { + "phone_id": "3cadcbf0-f322-4897-b110-fcf4ce7fe3cd", + "location_id": "e264284e-35bf-4894-8a8c-140e5cba1ce2", + "payload": { + "number": "7189371117" + } + }, + { + "phone_id": "3d3dea17-f30c-4d70-bc0d-1a4a7a25df29", + "location_id": "4fd214ad-2a96-4392-a820-949059fbafbb", + "payload": { + "number": "7187342539" + } + }, + { + "phone_id": "3d72f2bd-465b-42f4-8575-ddb48e67c8fd", + "location_id": "19cc2843-eb77-4b11-aad3-a49ef5ae3a1d", + "payload": { + "number": "7182770386" + } + }, + { + "phone_id": "3d74ed9b-5274-4218-a4af-2d68452af73b", + "location_id": "bf9e6447-3aa5-4034-8285-9c3f8f6558cf", + "payload": { + "number": "7184483470" + } + }, + { + "phone_id": "3d7c5570-e740-4342-bf46-a8b74744f86b", + "location_id": "ef810d68-8f62-4d90-b837-aa3dbb6b30a2", + "payload": { + "number": "7182956800" + } + }, + { + "phone_id": "3db07311-7e3a-4993-ae8f-f64ca987bf29", + "location_id": "58c44e54-3a78-4f10-8c13-9771a313b21a", + "payload": { + "number": "2128541492" + } + }, + { + "phone_id": "3dc186cf-5d44-4b82-baa3-d5ac248292ca", + "location_id": "5f883f7a-dd27-45ad-b761-f3371190f8e0", + "payload": { + "number": "7186497979" + } + }, + { + "phone_id": "3dcc2b69-0c20-4a46-9612-9885d62caef2", + "location_id": "3b4c3003-bec1-455f-afb9-e307d335674f", + "payload": { + "number": "7182051687" + } + }, + { + "phone_id": "3e0466a8-e580-4506-9b48-323779e34345", + "location_id": "a500982e-c7bc-49af-baf0-0831cf873ec7", + "payload": { + "number": "3473967959" + } + }, + { + "phone_id": "3e056158-7f3c-4f1a-b81c-68a6bb7cbb9a", + "location_id": "e2df8d84-1c4d-4fbf-8ed0-d0e53d1c6ef7", + "payload": { + "number": "2129871777" + } + }, + { + "phone_id": "3e11be8a-4e9a-41b9-94ef-a2065c2b7dd4", + "location_id": "f38c27ff-25de-4ea8-ae4b-0889644429b3", + "payload": { + "number": "7185476655" + } + }, + { + "phone_id": "3e6f551f-13bd-4b0d-8b10-f6f0c780d509", + "location_id": "1c0084b5-b5cc-4950-a924-db866b674ea7", + "payload": { + "number": "7185261000" + } + }, + { + "phone_id": "3e8db4ce-2ab4-4a61-88ca-1afffd71e592", + "location_id": "6e2e14ab-0b0b-4ba2-8dff-ddc91af4626a", + "payload": { + "number": "7185594400" + } + }, + { + "phone_id": "3e9355d7-fc88-4a0d-8f7c-e8c232f405bf", + "location_id": "b3ec24b6-7fc0-4146-99ed-b6fd44260397", + "payload": { + "number": "6315666216" + } + }, + { + "phone_id": "3ec52877-56e2-4332-8004-17c77bd45a99", + "location_id": "488f5ec5-76c3-4cb2-84ac-d07db19b2e8c", + "payload": { + "number": "7186812361" + } + }, + { + "phone_id": "3f16182b-5751-4f31-8650-18c4f6c3a137", + "location_id": "0b80d7d5-93e1-457d-9653-a9a97d1fb2e0", + "payload": { + "number": "7185855632" + } + }, + { + "phone_id": "3f2eb8b3-b61e-44ee-add1-599bb7c0b145", + "location_id": "1cbf6d43-8be6-44ab-8750-056e1a41d0f7", + "payload": { + "number": "9179529766" + } + }, + { + "phone_id": "3f2f3ba9-a5c1-406e-b886-16f15bd3e4d1", + "location_id": "6bb7a827-c517-485f-94fb-0eca0ba13aa3", + "payload": { + "number": "2122435470" + } + }, + { + "phone_id": "3f48d8bd-e635-4cc6-887e-03f226239578", + "location_id": "9fc4c057-119a-4c1e-a3ed-5814a8a4a8f4", + "payload": { + "number": "2125648799" + } + }, + { + "phone_id": "3f680f88-1628-4417-8c5f-045eee220d28", + "location_id": "a7f62f69-0b8e-4d7b-b624-808f35226cfc", + "payload": { + "number": "7182391610" + } + }, + { + "phone_id": "3f76811e-83a1-49ed-99b6-7342a5d37762", + "location_id": "fb0a7188-b103-4afc-8bf6-3881087edab6", + "payload": { + "number": "2123167583" + } + }, + { + "phone_id": "3f92639c-5c42-4523-8311-601f708c2878", + "location_id": "dc897b40-15d8-4e81-bdb6-4835aff85824", + "payload": { + "number": "8007721213" + } + }, + { + "phone_id": "3f9abb30-2aac-4413-a304-c8a44785bba5", + "location_id": "7ccf57c2-e647-4b08-a220-f0011c80b4a7", + "payload": { + "number": "6462014293" + } + }, + { + "phone_id": "3fc6cdab-422b-481e-a11e-1b16a06eb874", + "location_id": "7427a973-7801-4b28-bdcc-6112ea923961", + "payload": { + "number": "3477708650" + } + }, + { + "phone_id": "3fd893fc-38ad-4780-a5e0-167cb4c46fc0", + "location_id": "b198e2d1-830f-41df-928a-5ce3082be9fd", + "payload": { + "number": "3322430100" + } + }, + { + "phone_id": "40031dc7-9003-4685-8939-a39b356f61d8", + "location_id": "78a01f99-b3a9-451a-b34d-0109f07f9376", + "payload": { + "number": "2126207310" + } + }, + { + "phone_id": "40088d61-33f4-4b05-89ce-4f592869d507", + "location_id": "0af52dea-e769-492e-992b-8c22aa84bb11", + "payload": { + "number": "2126910950" + } + }, + { + "phone_id": "4016fd20-169c-4c51-979a-973820bea9fc", + "location_id": "bb121992-2245-4ccb-a9cb-480634882815", + "payload": { + "number": "2123899300" + } + }, + { + "phone_id": "40305441-c5dc-4d76-9386-d13d87594592", + "location_id": "cf6f8b7c-55b5-401e-b772-d15d1fbefe31", + "payload": { + "number": "7185186831" + } + }, + { + "phone_id": "4036b1ec-58f2-4650-bec2-412ff8b4b0b6", + "location_id": "34ffd43e-d898-4137-b8d0-19a97509891e", + "payload": { + "number": "2012100200" + } + }, + { + "phone_id": "40b8f2ce-ea46-4fee-9aa9-9e798221796e", + "location_id": "26062d99-3ae2-4ea8-a941-638bc3fbf659", + "payload": { + "number": "2129255000" + } + }, + { + "phone_id": "41066855-b5f1-4f38-b399-3b6ab1a484e5", + "location_id": "ec5bf617-ee77-43ce-83fa-6a445d305246", + "payload": { + "number": "6465181202" + } + }, + { + "phone_id": "418095ab-dcb9-4087-ab58-604b925f17ae", + "location_id": "b29ae897-9251-46ec-9aa6-57f63e7cd15c", + "payload": { + "number": "7182301379" + } + }, + { + "phone_id": "41859157-ef64-4bff-bcca-5c1d94a9a451", + "location_id": "4b9589f9-b4c3-41fd-b6c9-0a5f5ccffde0", + "payload": { + "number": "8664812547" + } + }, + { + "phone_id": "419bcc84-6768-42f2-b210-b0cc48be6a2e", + "location_id": "1d0c702d-544c-4544-a9f7-6bd029b75fbd", + "payload": { + "number": "6465992440" + } + }, + { + "phone_id": "41a8ebed-1e8a-4191-b3ea-259922d0aeb0", + "location_id": "3f3a6015-d99f-4125-b40d-ebd78129984b", + "payload": { + "number": "9292884334" + } + }, + { + "phone_id": "41b6c8e8-b173-4047-8b5f-f83a7c22ffb0", + "location_id": "5426de21-4e1b-4e6e-bcf1-6bf334de56b5", + "payload": { + "number": "2128076799" + } + }, + { + "phone_id": "41fa72ec-f7a6-4a81-aab5-d19333eee99f", + "location_id": "af78d1fa-73b9-45b1-92d2-43ae9a21703b", + "payload": { + "number": "2127999400" + } + }, + { + "phone_id": "423121bc-539a-4b4e-ac05-8b9354bedd9f", + "location_id": "d8c94dc6-8248-4e22-86e9-9d0eea4407d1", + "payload": { + "number": "7186364500" + } + }, + { + "phone_id": "424b5cf9-cadd-42c7-9dbc-2d639bbbb03a", + "location_id": "fbb13969-057b-44b2-a097-d84ef4872be9", + "payload": { + "number": "7182823082" + } + }, + { + "phone_id": "42883660-f839-4189-b756-8ffd61aa2646", + "location_id": "fd3e7430-950d-4570-a0ec-0d240e45be6d", + "payload": { + "number": "7189758618" + } + }, + { + "phone_id": "431c9ab4-ca89-4472-89a5-c3477dbaed67", + "location_id": "bd078a40-e921-46d6-93f6-a829ae003c7a", + "payload": { + "number": "7182264990" + } + }, + { + "phone_id": "43502c35-7dea-47d0-b4a6-68344ff54e46", + "location_id": "023a599f-aa77-4dad-ac47-f198e1f61929", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "4452dc83-ce14-4c99-a196-514627f2e781", + "location_id": "7ce33508-e033-49cf-8e50-6edeb2d36709", + "payload": { + "number": "2127491820" + } + }, + { + "phone_id": "44a0e8c9-a421-427c-ae2a-df80472ed696", + "location_id": "81ebb6f5-8b82-4290-b85a-632265cd1e10", + "payload": { + "number": "2127645644" + } + }, + { + "phone_id": "44d2dd0a-907e-448e-87fe-3acbad113116", + "location_id": "0264f2a4-d929-46b9-a0af-934bcd5113fa", + "payload": { + "number": "2128283953" + } + }, + { + "phone_id": "44efd2a6-3d93-40c0-afbe-a1b5c0347b58", + "location_id": "4a4d0f96-3df0-4d7d-86de-fb923eda95cc", + "payload": { + "number": "3472815362" + } + }, + { + "phone_id": "4525af8d-58a7-4236-812f-a0a21bb6bedc", + "location_id": "0dd659fb-1f8f-43af-a93d-ab8d750760c8", + "payload": { + "number": "2123671000" + } + }, + { + "phone_id": "453e54e0-a194-4e68-ae6d-1a5bc2e7d6e9", + "location_id": "530ec271-e566-4a11-aded-157e25a77703", + "payload": { + "number": "6466025600" + } + }, + { + "phone_id": "4550b5c2-9ef6-4618-bc34-b94a8cc29574", + "location_id": "2822099f-d574-4494-a8b0-957120828f33", + "payload": { + "number": "9292342866" + } + }, + { + "phone_id": "455f068b-bfbf-4e2b-bb13-d93f0b7b57fa", + "location_id": "bbf61da4-d46f-49b9-96cc-a2bb671402f3", + "payload": { + "number": "8446632255" + } + }, + { + "phone_id": "45bac122-cd0c-4f75-bbc8-ef8c9c9e89a9", + "location_id": "ed0abdbb-5137-4ab8-984d-088dcf05de99", + "payload": { + "number": "2125649070" + } + }, + { + "phone_id": "45e8c5fa-351e-4793-92f0-feca0db00f58", + "location_id": "c31cf015-ead3-4942-98aa-05569b0c1364", + "payload": { + "number": "7186136800" + } + }, + { + "phone_id": "45fef954-ac35-47da-92f7-3fcb6c84f0f3", + "location_id": "48ed059e-e571-40cf-8611-2011cdec7ea6", + "payload": { + "number": "3156166881" + } + }, + { + "phone_id": "46162793-81fd-4aae-8cf6-02e0e9e5de38", + "location_id": "8f71ce13-5374-4fd7-99c3-222a4260bdef", + "payload": { + "number": "7188029540" + } + }, + { + "phone_id": "4619c2fd-97d2-4a41-8ea1-1ab38b7b07f3", + "location_id": "da7b41cd-c057-444d-bf48-3d074fba5ea0", + "payload": { + "number": "3472165909" + } + }, + { + "phone_id": "46219e97-586d-4cd1-9c37-fdc90e7e4eb6", + "location_id": "bff25688-1fe5-4e34-afa2-667ca9300fe3", + "payload": { + "number": "2128736600" + } + }, + { + "phone_id": "46230a16-e16b-4e42-af02-d82c858868d1", + "location_id": "89d77a63-0123-47bb-9eb6-48487f819b29", + "payload": { + "number": "7189376266" + } + }, + { + "phone_id": "466aa046-20e7-485e-9ca5-67d2dd89ac9f", + "location_id": "27befada-ca63-44f4-9393-c4e780a37a7f", + "payload": { + "number": "8556984677" + } + }, + { + "phone_id": "469e67b8-7b97-49d2-af7b-72b39dca8cd8", + "location_id": "b6beddf5-13a5-439f-8d1e-139714f8696b", + "payload": { + "number": "2123493724" + } + }, + { + "phone_id": "46d760f6-868a-4582-ad1d-df168c25a63e", + "location_id": "3ce642f0-e12e-45dd-b504-ca7aaa2ca4f5", + "payload": { + "number": "2127491820" + } + }, + { + "phone_id": "4707f1e0-6337-4b90-b1bd-549ce36e73ba", + "location_id": "c46355e7-7db4-428a-b323-f978ff912a8b", + "payload": { + "number": "2125995627" + } + }, + { + "phone_id": "4764a365-1b44-4032-ae88-0284e4ad6951", + "location_id": "dd8c851c-760e-4480-aecc-23bbaf43a5e2", + "payload": { + "number": "9172612900" + } + }, + { + "phone_id": "4778472b-b2fc-45ee-9576-fb39968ef254", + "location_id": "ceececc1-d4fc-4f39-9668-e36bff5b1fcc", + "payload": { + "number": "7182862450" + } + }, + { + "phone_id": "477e98e0-c504-47ef-ae62-52f99e1576f8", + "location_id": "8b384df7-2124-4bbe-b193-bd7db30d416c", + "payload": { + "number": "2129473211" + } + }, + { + "phone_id": "478aa953-a5a6-410d-be55-d1f6486e7f7a", + "location_id": "a6d61819-76b6-4738-8bfd-e882b2a6a01a", + "payload": { + "number": "7184009290" + } + }, + { + "phone_id": "47c3930d-3565-41a4-a1f8-a9939d9dcedb", + "location_id": "8b1caf03-b5ce-4b2b-9720-24d279f2f79a", + "payload": { + "number": "7182101633" + } + }, + { + "phone_id": "48034328-76f9-44c6-83fa-b2cc2fee33f9", + "location_id": "f9d878cc-6a44-4601-89e1-ea478276f220", + "payload": { + "number": "3474953113" + } + }, + { + "phone_id": "48872d57-4416-4308-a05b-a4e9314aea3d", + "location_id": "56c61b82-0366-4b41-9b60-e373d2751e50", + "payload": { + "number": "2127954779" + } + }, + { + "phone_id": "48dd8089-fe3f-436a-bce8-7e26aa56275d", + "location_id": "b8daa8cd-d6cf-40b3-b162-07aceb9a304b", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "48ea8e13-c491-44eb-9e1a-4f79abd24391", + "location_id": "4a76c354-b913-4144-9e26-6a1a2cb92c10", + "payload": { + "number": "6466189797" + } + }, + { + "phone_id": "48f2c92b-4afe-41d6-9ac1-78e46c26e498", + "location_id": "8f6a4426-bcbb-4174-be01-26e422edb5d9", + "payload": { + "number": "7186243770" + } + }, + { + "phone_id": "48fca324-d37c-4587-8447-48d9bb8906fe", + "location_id": "e081a84e-d8e1-4216-9482-eb49103a1741", + "payload": { + "number": "7186788209" + } + }, + { + "phone_id": "4905503d-0f65-4786-b6d5-a5c76312b8d2", + "location_id": "ce666e74-ae97-4f38-a99f-2c580fbef125", + "payload": { + "number": "7188836648" + } + }, + { + "phone_id": "49089139-795b-4861-8303-1445db9c3e6b", + "location_id": "6760f854-6df6-4e72-9f48-d6844eb05f01", + "payload": { + "number": "2129471471" + } + }, + { + "phone_id": "4951a1fe-c258-4f84-8569-1e9342256abc", + "location_id": "3ad2f80e-53b1-4da7-b862-60507ad3d2cd", + "payload": { + "number": "7187342539" + } + }, + { + "phone_id": "49570ca0-012d-4fd2-91cc-7c60c5abaa62", + "location_id": "6d698d15-4573-4d13-8e08-d81bfe51ef5b", + "payload": { + "number": "7189438632" + } + }, + { + "phone_id": "497c8a5d-9a47-4634-8d75-c9ee1fa3de43", + "location_id": "87b29391-2abe-41e8-a29b-f3112e451bc7", + "payload": { + "number": "3473201344" + } + }, + { + "phone_id": "4984ef33-eeef-4cf7-a0cb-94a584e60cb2", + "location_id": "4955d5ed-05c1-4ea0-867d-df00ccf9c4d2", + "payload": { + "number": "7189602777" + } + }, + { + "phone_id": "4a05bc99-5c8b-4c51-9afa-90e5ddfb5db4", + "location_id": "2c709f55-7ca7-495c-b748-6e4072e18616", + "payload": { + "number": "8446927722" + } + }, + { + "phone_id": "4a4f40ca-acbe-4dff-8a9a-054ff0eaecab", + "location_id": "68edae28-4b59-45fa-9150-a594c1630810", + "payload": { + "number": "7186979672" + } + }, + { + "phone_id": "4a7ddd9c-b4b0-4902-a645-5f421913ff30", + "location_id": "ad067b1f-085a-456d-a9c2-4c442d9a0014", + "payload": { + "number": "7188421412" + } + }, + { + "phone_id": "4a810ebe-a3d8-4401-9a82-d9268015c077", + "location_id": "8c7fbe8b-a8b5-4258-b55e-6fd889e66f2b", + "payload": { + "number": "2123584119" + } + }, + { + "phone_id": "4a8c6d50-cf20-44db-b80b-661a049cd79e", + "location_id": "9968bde5-3f5a-4bb6-b681-082ddd2ff3a4", + "payload": { + "number": "5033415570" + } + }, + { + "phone_id": "4a8fc7a0-77c0-426d-a904-fb5e927bedcd", + "location_id": "4a58bcbe-53d0-4f4b-8367-bda074562212", + "payload": { + "number": "7184151170" + } + }, + { + "phone_id": "4ab8bf25-71f3-4237-a633-552df10a609d", + "location_id": "32feb739-6cfb-4200-8dd4-6ef6c8d0fbdc", + "payload": { + "number": "7187260724" + } + }, + { + "phone_id": "4ad9bf7f-0d86-4005-a6fe-21d0f1d516b4", + "location_id": "cfed4cf7-bfb6-422b-a09b-879cdc488330", + "payload": { + "number": "3479730580" + } + }, + { + "phone_id": "4ae755cb-68f9-45f6-8beb-0d7057a21291", + "location_id": "936cc24c-01a9-40b1-9d54-94f3f6357b12", + "payload": { + "number": "7184343266" + } + }, + { + "phone_id": "4af8bacf-de85-4697-bccb-7e4fa2b3217d", + "location_id": "01456731-16a1-4768-9275-ba7054b787e5", + "payload": { + "number": "7182697274" + } + }, + { + "phone_id": "4b0fac10-c325-4610-8f18-04dd9b5bc043", + "location_id": "bd7b1b09-384e-4ab9-b76c-432b266bf9f3", + "payload": { + "number": "7185754545" + } + }, + { + "phone_id": "4b12c975-86d2-4b5e-8676-34a9c59d198c", + "location_id": "2b08a07b-bfe7-4ff5-a397-ac1fbd0468f5", + "payload": { + "number": "7182353100" + } + }, + { + "phone_id": "4b5acee2-e1c0-4b23-b754-16f94b7d1ec5", + "location_id": "e37eee4e-22a4-4972-b024-55ce08acf64c", + "payload": { + "number": "7184411125" + } + }, + { + "phone_id": "4b6a1d7e-aaa9-4879-8530-2a6932b9884a", + "location_id": "c8c4a498-e671-433a-89a6-930a4b7c7435", + "payload": { + "number": "3472269015" + } + }, + { + "phone_id": "4bed9877-eb78-436c-ac71-511a59383ab9", + "location_id": "1ca2ca1b-5c5a-449f-bd8f-5f51c501ba6e", + "payload": { + "number": "7186365151" + } + }, + { + "phone_id": "4c03d413-cc02-498e-916c-4a9ea11a9a22", + "location_id": "9322852b-da74-4f1f-8e86-e0c7a2a8107b", + "payload": { + "number": "5164151192" + } + }, + { + "phone_id": "4c18ccf9-7fa6-4600-935d-81b84813f3ad", + "location_id": "5f445789-63ed-4ddb-b364-86ceab0c51ab", + "payload": { + "number": "2122812202" + } + }, + { + "phone_id": "4c689942-7830-4e9f-b968-15280ff1624c", + "location_id": "774de666-60bb-41b0-b062-cc8b9c35984d", + "payload": { + "number": "7185471001" + } + }, + { + "phone_id": "4c6986bd-a042-466f-bb01-f425030c8c29", + "location_id": "4a08a3ed-301f-4aa2-87df-b213261cbaef", + "payload": { + "number": "7183980800" + } + }, + { + "phone_id": "4c9e6e74-4d89-4c96-8cae-4350cde8b7ad", + "location_id": "41c44f81-264d-46e9-9cef-805933f0845d", + "payload": { + "number": "2124202620" + } + }, + { + "phone_id": "4ca92b9f-759c-40c1-a168-fafdae972313", + "location_id": "e72b0af1-3854-40de-9518-65d1fae7e85b", + "payload": { + "number": "7182924640" + } + }, + { + "phone_id": "4cb6ab25-6f0f-4d19-9f8f-b56893f9f0a5", + "location_id": "c306521f-26e1-4318-b669-2d1a3870e76b", + "payload": { + "number": "7189933397" + } + }, + { + "phone_id": "4cbd561f-babc-4e02-8805-f58cd6a78548", + "location_id": "370f85dc-40bc-4063-a515-1eb904973b9e", + "payload": { + "number": "7189088000" + } + }, + { + "phone_id": "4ccd4953-ee23-4a2a-b2c5-0d379c31ba14", + "location_id": "d37a24e3-4ddc-4015-8def-4611d32c9dd4", + "payload": { + "number": "7185142155" + } + }, + { + "phone_id": "4d2538bd-c306-4bd6-b36d-e056b2cc7c71", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "7185796900" + } + }, + { + "phone_id": "4d301202-7c9f-4eab-845b-542e29597723", + "location_id": "faf1d85e-56d1-4be9-8423-0f6debd37a55", + "payload": { + "number": "7189634430" + } + }, + { + "phone_id": "4d3a5c9a-d5bf-42e1-9485-bbbe233ecb33", + "location_id": "9556f7ee-8de3-4c00-b951-10195106c6c3", + "payload": { + "number": "3472695186" + } + }, + { + "phone_id": "4d65e0c6-7e74-4121-a6db-89a0ba5069f7", + "location_id": "c306521f-26e1-4318-b669-2d1a3870e76b", + "payload": { + "number": "7186657500" + } + }, + { + "phone_id": "4d802074-c661-43a9-8675-d234d5bee8b6", + "location_id": "7427a973-7801-4b28-bdcc-6112ea923961", + "payload": { + "number": "7183980096" + } + }, + { + "phone_id": "4dd52a3d-e58f-4886-bf2f-8f7c363c3906", + "location_id": "ac70737b-3d9d-4aff-9aba-710d6289da12", + "payload": { + "number": "7185262400" + } + }, + { + "phone_id": "4de20dd6-477e-4671-82c3-aa5bc5b01342", + "location_id": "96f50850-6e4d-419f-8b9b-e4a9bc5c8942", + "payload": { + "number": "2123490616" + } + }, + { + "phone_id": "4e7f3858-4b9d-4c9e-a19d-17b9f647e013", + "location_id": "7281095b-9215-4efa-91c1-caf5ce955fe1", + "payload": { + "number": "7186655250" + } + }, + { + "phone_id": "4ea3e144-f3a2-4374-bf4d-c1a915007dff", + "location_id": "1ebd1a5d-c3a1-404d-aaf2-830552e4deea", + "payload": { + "number": "9177209709" + } + }, + { + "phone_id": "4ee40c13-7a5f-4ed5-8af4-67de02ef11cc", + "location_id": "bc73faeb-2a99-4a93-8296-dd0187d6f0a7", + "payload": { + "number": "6464779842" + } + }, + { + "phone_id": "4f0f7fc8-ce50-469c-b749-721f812e7f07", + "location_id": "199a2bd5-9983-4c57-afb7-e61221bb11fa", + "payload": { + "number": "7182860644" + } + }, + { + "phone_id": "4f20edd9-de31-4268-b5ca-5bf59f81589f", + "location_id": "ceececc1-d4fc-4f39-9668-e36bff5b1fcc", + "payload": { + "number": "8662476585" + } + }, + { + "phone_id": "4f25f39b-e7e0-4905-8c39-01754b6b9a73", + "location_id": "4f11e4d6-b0b6-4a79-9a95-e7961c3bd8a6", + "payload": { + "number": "3478346235" + } + }, + { + "phone_id": "4f3264e7-bb8a-4a08-84ee-5cc611424016", + "location_id": "779192f5-570c-49ca-a95b-ae8b57cc646e", + "payload": { + "number": "2124279010" + } + }, + { + "phone_id": "4f76cf71-89b5-440e-a25b-802d1d5429bf", + "location_id": "efde98f2-5e95-40bf-b8a6-ad4864c069fa", + "payload": { + "number": "7185449033" + } + }, + { + "phone_id": "4fcd8681-e486-4924-afd1-bb918f5330c9", + "location_id": "449d4ead-7f2d-499c-a43b-f1e974c4fa53", + "payload": { + "number": "7183732562" + } + }, + { + "phone_id": "500baaef-6ee8-4a71-8158-3a521f749127", + "location_id": "1927c62b-6e47-49c8-bc72-e9126239d43c", + "payload": { + "number": "3476892327" + } + }, + { + "phone_id": "5068ee2e-a946-4d63-861c-f9860468874e", + "location_id": "8545b5ba-6ab6-43eb-abb9-b5a9caa7aefa", + "payload": { + "number": "2123433533" + } + }, + { + "phone_id": "506c586f-44f3-4f0a-ac86-e76a352f02d3", + "location_id": "0b32cf73-5bb3-4916-ae58-59a66444ae9d", + "payload": { + "number": "7185454040" + } + }, + { + "phone_id": "5075d2b1-baaa-435d-a6b8-b5295791c5f7", + "location_id": "df42156e-9eea-4c9f-89b8-ac3ac208ff90", + "payload": { + "number": "9173370523" + } + }, + { + "phone_id": "50d2112f-e78d-4bc5-857c-62e15cd1171e", + "location_id": "f39f7492-d3ac-47cb-a940-3c6b3200873b", + "payload": { + "number": "7183734565" + } + }, + { + "phone_id": "50e10bd8-eeb2-4105-b394-3303e4c52de4", + "location_id": "96ce8dfb-7666-40bb-a926-2b30ffd30371", + "payload": { + "number": "7185424127" + } + }, + { + "phone_id": "51572630-64e7-4cef-84f7-4ac2763d7a6e", + "location_id": "eaeb9bb7-d030-40aa-a0cd-9e51e708da00", + "payload": { + "number": "6466656000" + } + }, + { + "phone_id": "5164e767-3988-4f9d-8116-373b0d833f81", + "location_id": "a47a9a63-2015-4776-b821-067cd0cbb20b", + "payload": { + "number": "7185675200" + } + }, + { + "phone_id": "516fca52-09ef-4f77-b290-53eb7852ef0e", + "location_id": "6408d71d-6b43-4dbc-891b-e4f4902d84da", + "payload": { + "number": "7189188850" + } + }, + { + "phone_id": "5172d02d-9e8a-4680-9bcb-cb8b2ab275fb", + "location_id": "ca9798df-f658-4188-aada-751931dafa72", + "payload": { + "number": "7182061990" + } + }, + { + "phone_id": "519955c9-420d-4dc6-898e-47a5fca1eecb", + "location_id": "38867464-ba7f-4a13-948d-986f588d4a04", + "payload": { + "number": "2122227122" + } + }, + { + "phone_id": "51b4ab54-7dcc-477e-ab18-502473264d7e", + "location_id": "13dfd64b-48db-4224-88ec-ac49636d0187", + "payload": { + "number": "7183284188" + } + }, + { + "phone_id": "51bb5013-fd99-44d3-a956-34eb15f7d57d", + "location_id": "19dccab0-c3ec-4eb6-8138-2c56a3afead0", + "payload": { + "number": "3479515572" + } + }, + { + "phone_id": "51e5fdf7-a5c1-40df-a93c-70300004d49c", + "location_id": "7267cae9-fa66-49f5-90e4-0cbe2480941e", + "payload": { + "number": "2123603255" + } + }, + { + "phone_id": "52382690-d7d9-4422-ab56-bcbff3a13b79", + "location_id": "197ce322-55e3-4f91-b68e-b9fdfa15d7e0", + "payload": { + "number": "3475473626" + } + }, + { + "phone_id": "524168d2-5ad2-4c18-a2c2-ac4dcb0fbf45", + "location_id": "8c470506-1228-40c1-a970-581887734acd", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "524690d6-cb43-4c34-ba73-a54c74efb9fc", + "location_id": "82616973-310e-41ef-badd-e7d7a2cd751d", + "payload": { + "number": "6464855203" + } + }, + { + "phone_id": "524d60e2-b5a6-4479-b364-8015a963fb03", + "location_id": "cb4c9704-55bf-43d5-8ca1-53605604580d", + "payload": { + "number": "7186799862" + } + }, + { + "phone_id": "526dc6ed-153c-468e-bcee-325be2fbb1ec", + "location_id": "3ea8f079-8943-4c7e-9060-c0c83ca4e494", + "payload": { + "number": "8446632255" + } + }, + { + "phone_id": "52c01708-ad70-44ba-ab9a-2f9824d9fc98", + "location_id": "c1e3b264-65e6-4382-8316-28d3b64f3d80", + "payload": { + "number": "6312312220" + } + }, + { + "phone_id": "52c8cce7-ec16-4b29-ba88-e4db2d74f525", + "location_id": "fb28878e-3f97-4085-99a7-4723a7c2689b", + "payload": { + "number": "7187426594" + } + }, + { + "phone_id": "52eeecd8-4b6f-46db-96fb-63cd9a8e7465", + "location_id": "994713ca-474b-4834-bf95-8076aa58e1c0", + "payload": { + "number": "7184827772" + } + }, + { + "phone_id": "53118128-0f8d-415c-9742-cb562844ec4d", + "location_id": "51909381-e65e-47b8-837e-3db156e07777", + "payload": { + "number": "7183777757" + } + }, + { + "phone_id": "532042e7-be77-4426-9677-786c3bfda26e", + "location_id": "f048547a-1a3f-478b-b26f-bb28cc9fcbc2", + "payload": { + "number": "7182300229" + } + }, + { + "phone_id": "5348960a-2c8e-488e-ae21-654e60113f4d", + "location_id": "7206f0fe-0fab-4bc3-b74c-2d302391acc2", + "payload": { + "number": "7186138543" + } + }, + { + "phone_id": "53504a08-566e-4d59-b86f-b1f228ffa264", + "location_id": "5bc03326-ae2d-4e15-b516-0e1a8a5729e7", + "payload": { + "number": "7186584580" + } + }, + { + "phone_id": "53521bbf-1940-437b-a69b-4f0e61dc830c", + "location_id": "f87b7094-2a23-4634-98f2-cd4a67cd23d8", + "payload": { + "number": "7189914600" + } + }, + { + "phone_id": "536f18d5-fb56-4458-bcec-7e8044d100f6", + "location_id": "cdfc2cc5-39fb-4bb7-80f1-140799399073", + "payload": { + "number": "9174263001" + } + }, + { + "phone_id": "539541eb-c109-4f50-b6c3-29eebb3d9d0d", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "2124160197" + } + }, + { + "phone_id": "53adb8bf-c066-4b4a-b700-5803c497b330", + "location_id": "ab394e8b-948f-4f56-876d-61e111a0a716", + "payload": { + "number": "7183455000" + } + }, + { + "phone_id": "53cff5c7-fdd5-4faf-88bb-14ed7a30f12d", + "location_id": "f615c19b-0235-44ea-996e-dd4b3d4573c2", + "payload": { + "number": "2122544333" + } + }, + { + "phone_id": "53de089d-9831-46a6-b370-836f1101d728", + "location_id": "2cca7a42-9590-4259-ae48-0f4778e79001", + "payload": { + "number": "7185015700" + } + }, + { + "phone_id": "53fc636d-d6aa-4d65-89ce-7eedb28ea7ee", + "location_id": "1fc6a9ce-943f-4e7e-8c6b-085e9184c74b", + "payload": { + "number": "2122338483" + } + }, + { + "phone_id": "54276cb8-599d-4b94-a005-b3133d5b9224", + "location_id": "178ca90c-f13b-4b80-93a8-95d95f26995c", + "payload": { + "number": "7187202585" + } + }, + { + "phone_id": "546cca55-cda2-4c8c-adb0-b036bb128e8c", + "location_id": "7039901c-a6c6-418d-b1df-1f58ef4f977a", + "payload": { + "number": "7187396600" + } + }, + { + "phone_id": "54a154fe-4f37-4789-806d-90794577d6d5", + "location_id": "4a4d0f96-3df0-4d7d-86de-fb923eda95cc", + "payload": { + "number": "9144142697" + } + }, + { + "phone_id": "54a64016-0367-4066-a32f-7eab4c41ca60", + "location_id": "b80fb553-8948-4d50-8854-7aa2b4d72f01", + "payload": { + "number": "7189457150" + } + }, + { + "phone_id": "54bb4feb-32a2-4b1c-a418-fe6f8136c7e2", + "location_id": "de81ba13-a41b-401e-9bf4-508b9f94a09c", + "payload": { + "number": "7187689000" + } + }, + { + "phone_id": "54c5bf92-e6ce-4ea9-bf55-e504ca0d1cec", + "location_id": "4fd84824-013a-421d-b4b6-0ffb65c89972", + "payload": { + "number": "7188602994" + } + }, + { + "phone_id": "54ce94e1-f808-4ef5-86af-dbd74115377c", + "location_id": "feea0a18-f587-40ea-a7b8-79c8aac69446", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "54d19c01-87c3-4e8c-9708-2438cbc400a8", + "location_id": "964177e6-75a9-4d75-b167-e88dbc2dd8d3", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "54f5f087-7be6-405b-bf8b-72b19e4447aa", + "location_id": "6f3e13c5-92a4-4b17-8191-decdb9921935", + "payload": { + "number": "2126631596" + } + }, + { + "phone_id": "5506f4d5-1d0a-40b4-b4d9-937672003435", + "location_id": "d84f98d7-a885-41e9-96df-51912c9f1d1d", + "payload": { + "number": "7189018400" + } + }, + { + "phone_id": "550d5c99-c6eb-4135-a56a-ce010ec4cc1a", + "location_id": "e90229f2-d3ce-4345-8824-bdd3bd98b3b0", + "payload": { + "number": "2122338930" + } + }, + { + "phone_id": "55183b83-623d-4db2-bf87-e3b5e76b2b37", + "location_id": "cb3d9003-ce74-41e8-bb57-c961b94f80fc", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "55273d10-7161-4870-a72c-58749761b8a3", + "location_id": "c932ec1b-0095-401a-89bf-e83a448bb534", + "payload": { + "number": "3475698443" + } + }, + { + "phone_id": "5592b9b0-0cea-42e8-a7b6-a4c2f2901354", + "location_id": "9657bb7b-4986-40fd-ab69-86467c5c78d9", + "payload": { + "number": "9173300310" + } + }, + { + "phone_id": "561b3b74-1975-4fe9-9a74-02c7753406d6", + "location_id": "b7a02c6a-4f56-4502-bdd6-b0d6653ddf93", + "payload": { + "number": "3476308401" + } + }, + { + "phone_id": "56805d75-c4e2-4e32-a8d0-9bd08449955d", + "location_id": "5733f8d7-dd68-4a5a-bbe6-1a1fd7f9a761", + "payload": { + "number": "7189188850" + } + }, + { + "phone_id": "56e64697-b382-44fc-ae19-74674b3538ae", + "location_id": "339cf037-2f09-4827-9ee8-296a473f0820", + "payload": { + "number": "7187786454" + } + }, + { + "phone_id": "56ec0c10-9cf7-419f-8011-54911f07f422", + "location_id": "cc39d150-e48d-47b2-a316-614847e9c8ad", + "payload": { + "number": "6469227997" + } + }, + { + "phone_id": "571fb422-e849-4236-a4d3-d37748bbaf83", + "location_id": "3d732b69-ab24-4a29-9471-72c9e0936290", + "payload": { + "number": "7185081222" + } + }, + { + "phone_id": "573b91fc-5cb2-49b9-a299-39731156df16", + "location_id": "a4ab009c-8fab-4187-b10f-e31111b29c6c", + "payload": { + "number": "7189750955" + } + }, + { + "phone_id": "5740c0cc-0bb0-4595-a559-4eb8774db919", + "location_id": "29ccb897-54ee-4557-9382-d33931f352b9", + "payload": { + "number": "7188525552" + } + }, + { + "phone_id": "5786258e-57be-4377-b477-98561f8e34a2", + "location_id": "e3c96bc9-b22c-4f46-807d-a9120d558f39", + "payload": { + "number": "2123607620" + } + }, + { + "phone_id": "57a635aa-fa71-44dd-a09a-6126ba263f9c", + "location_id": "818bc265-4b78-4831-a067-b29c998bb59a", + "payload": { + "number": "7188021111" + } + }, + { + "phone_id": "57fe3c10-e263-4bcb-8d84-0db1de11f53c", + "location_id": "bb0e5e9f-5503-434e-b53f-1d5be77a5a89", + "payload": { + "number": "7184431903" + } + }, + { + "phone_id": "583f228a-1909-489d-b708-d4e0eb939a4f", + "location_id": "ee8963f9-b3b3-49c0-bbd2-f5115f565b3b", + "payload": { + "number": "2099104566" + } + }, + { + "phone_id": "587233c8-cdd2-4ac1-ae87-6680cf166533", + "location_id": "983312ac-bf17-4099-867e-70b50d577dcc", + "payload": { + "number": "7186484300" + } + }, + { + "phone_id": "58d8764d-394b-408e-80fc-3b8fdb503c8c", + "location_id": "d73cdec8-00ad-4eda-9fee-a9411fb94ec9", + "payload": { + "number": "3476401536" + } + }, + { + "phone_id": "58fefc6e-0a49-473e-9790-ffa67db0e488", + "location_id": "6277e2fe-01a3-4699-afcf-f084e67da640", + "payload": { + "number": "2126917554" + } + }, + { + "phone_id": "593e93ba-fccb-4b30-9910-86215d818536", + "location_id": "4d8dec20-f4a3-44a4-9d04-7335ed37f1e3", + "payload": { + "number": "2125647631" + } + }, + { + "phone_id": "594f7890-f425-46b9-8e6c-5f24d721e8eb", + "location_id": "bf277308-d728-421e-92be-fccd22981466", + "payload": { + "number": "7186611200" + } + }, + { + "phone_id": "597ad786-d686-43b8-ae73-e4a187ae1bc8", + "location_id": "efb25352-8655-4e9d-bcd3-e6544db9cf09", + "payload": { + "number": "2126450875" + } + }, + { + "phone_id": "59889c39-2233-4a8d-8f20-67379a7a7745", + "location_id": "cf77b0eb-8391-420e-aa8a-2bf09691f50c", + "payload": { + "number": "7182041200" + } + }, + { + "phone_id": "59c82643-a974-407a-a4a4-5d3ce4ef9f5d", + "location_id": "c4d90c0f-b872-4f00-a502-47f5f8c34052", + "payload": { + "number": "7183243039" + } + }, + { + "phone_id": "5a13438e-8397-4855-99a8-1d337efa3ca9", + "location_id": "9c9e1059-93fc-4d7d-834f-fc7aa5778c33", + "payload": { + "number": "7188428040" + } + }, + { + "phone_id": "5a25f5f6-853c-4f33-90b8-08a415eddedb", + "location_id": "9a569e7a-a52f-42d5-855c-e52da9fc3528", + "payload": { + "number": "6462249300" + } + }, + { + "phone_id": "5aa5325c-6dce-4edd-a4bb-f693a492c1e0", + "location_id": "9bca1d6f-87de-477f-bade-ac5a4f56c53c", + "payload": { + "number": "7187332557" + } + }, + { + "phone_id": "5ad195fc-f624-409e-a11b-0aae1eae25dd", + "location_id": "1c7ec67a-8167-4d43-8466-dfca088dd912", + "payload": { + "number": "2122812100" + } + }, + { + "phone_id": "5aee674c-e6c9-4627-b9a3-76d5a46bb9df", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "number": "3475055146" + } + }, + { + "phone_id": "5b0a9366-d35d-4cf6-a934-d2e4af734fa7", + "location_id": "5c31b128-397c-432e-b9d4-75571544589d", + "payload": { + "number": "7184538116" + } + }, + { + "phone_id": "5b5bda83-fc04-4ece-ab97-5c3963fac70e", + "location_id": "9d96aac3-96bb-4260-a3ad-d62fb65f9ec9", + "payload": { + "number": "6464171204" + } + }, + { + "phone_id": "5b7b8559-68bf-4e5e-8f7b-7ebe132d9cce", + "location_id": "c3bfe14c-59c5-4800-954f-e250cfa41811", + "payload": { + "number": "6464414186" + } + }, + { + "phone_id": "5b9fdda4-7018-4340-b814-7c1c86f80944", + "location_id": "70c0060f-108a-484b-a997-973adc6753d7", + "payload": { + "number": "2123697890" + } + }, + { + "phone_id": "5bc3fce5-4ecd-4217-9f42-6e0c77f1cbb6", + "location_id": "3b2dd175-f82b-4a62-8157-25ced7c4a6f0", + "payload": { + "number": "7182502340" + } + }, + { + "phone_id": "5bc81cfe-2cb5-47be-b1b0-70bab549e7b2", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "2124160197" + } + }, + { + "phone_id": "5bcf8986-f2a6-4da5-be32-03e393ce015c", + "location_id": "dca671b4-6395-4948-ae91-aa9a194df3fb", + "payload": { + "number": "7185222122" + } + }, + { + "phone_id": "5bdb6e7d-5ffb-4d0a-a11b-859429705b4f", + "location_id": "793a9ec2-6f16-4504-ba9c-e00b9e8b8682", + "payload": { + "number": "7184972908" + } + }, + { + "phone_id": "5c2270af-4fc9-4989-87b5-9a6958f210bf", + "location_id": "639a7b12-c0ac-40b6-973f-5cfeaf15065a", + "payload": { + "number": "7185835150" + } + }, + { + "phone_id": "5c31f2d1-ec81-4b45-8777-1a3b1f63a213", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "7185849000" + } + }, + { + "phone_id": "5c3b4921-3be7-4166-9767-ad3703541914", + "location_id": "6781b53a-3706-4d90-a030-10eb640b66ad", + "payload": { + "number": "3474915845" + } + }, + { + "phone_id": "5cb8342c-835c-4b63-bc9b-aa3a31998bc6", + "location_id": "9aaa0a91-1844-4f1c-a7ca-54d56deec641", + "payload": { + "number": "2129989800" + } + }, + { + "phone_id": "5cc51878-4914-464d-9db9-c27139a655c6", + "location_id": "ad7502d3-623b-4b68-b1c1-e5f2b5b3024f", + "payload": { + "number": "7184103766" + } + }, + { + "phone_id": "5cf2b5e8-91b7-4032-88a0-3e3af1c15836", + "location_id": "029514a5-579f-4ec1-b16c-85574306ed64", + "payload": { + "number": "2129231803" + } + }, + { + "phone_id": "5d4796be-db88-4a5c-9f35-8ae60c771a30", + "location_id": "fcd8f0d1-9660-4ed3-92ef-ddbc4520628b", + "payload": { + "number": "2125691002" + } + }, + { + "phone_id": "5d5f82f2-f28c-4dcd-b99d-232bd8645970", + "location_id": "dda25a8f-f4d6-4844-bfc8-91a843f13d70", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "5d71e097-fa2b-486d-8cd7-99a633a23f46", + "location_id": "54e88269-2e19-48e1-b03f-dc61c181c29e", + "payload": { + "number": "6463296898" + } + }, + { + "phone_id": "5da130c2-3235-4bb4-b899-8911db435fd9", + "location_id": "654f3db8-a64a-404e-a53e-2ec584ac49bc", + "payload": { + "number": "2128774050" + } + }, + { + "phone_id": "5de14bf9-e81a-4492-bdd6-1eea7a580bec", + "location_id": "7958712a-13cf-4881-a21e-7a0edb58eda1", + "payload": { + "number": "3473087762" + } + }, + { + "phone_id": "5e02032c-8839-4d21-8136-5565c5c93331", + "location_id": "0a9a0eda-a31c-4c06-a73a-86c6d982083b", + "payload": { + "number": "2129517030" + } + }, + { + "phone_id": "5e43cfd6-cd3b-44b1-914f-2b563a1db008", + "location_id": "53002048-cca2-440c-a4c8-9f60f46aa359", + "payload": { + "number": "7184481544" + } + }, + { + "phone_id": "5ecb02bb-69e2-42dd-893e-5798347aa341", + "location_id": "8eda4ca7-67d0-4eb2-bba3-95df14064a15", + "payload": { + "number": "7186724848" + } + }, + { + "phone_id": "5f070e49-8360-46df-bd4f-cba7049cba09", + "location_id": "e1c2693e-afdd-422f-9b15-adeada2bc85e", + "payload": { + "number": "9149635118" + } + }, + { + "phone_id": "5f160402-9883-4dfd-81c5-d36b51eb62c2", + "location_id": "090e9ca1-7c86-4501-97e5-79d31020a926", + "payload": { + "number": "2128289800" + } + }, + { + "phone_id": "5f2b2548-cdb7-43ce-8c28-b8bc2cd706ca", + "location_id": "828dc64e-d631-49aa-afc9-1a4e4619c2c3", + "payload": { + "number": "2129624795" + } + }, + { + "phone_id": "5f311d65-62b0-4c11-bff1-b047f7492988", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "2127429591" + } + }, + { + "phone_id": "5f317fdd-62b8-4952-8a28-6012c67c1707", + "location_id": "2e4952df-aaca-4a4b-b472-905f84f9fa0e", + "payload": { + "number": "2125624141" + } + }, + { + "phone_id": "5f36b50a-8cbb-43e5-9d99-0efdf6501339", + "location_id": "2fa1dd48-fca8-4cee-a507-c4db262efcaf", + "payload": { + "number": "7183298046" + } + }, + { + "phone_id": "5f64698a-f291-4930-b70a-223c6cdb8c77", + "location_id": "8a3136e8-75fc-49fd-abd0-7a76566de7d5", + "payload": { + "number": "7183277002" + } + }, + { + "phone_id": "5fc7704e-b2e9-45ee-8cbd-9381ea8d00a6", + "location_id": "6e09c73d-bb21-4bfa-90f6-b96b297c9fcd", + "payload": { + "number": "8446927722" + } + }, + { + "phone_id": "5fd22c3c-73f5-4314-bd74-5abce0487b83", + "location_id": "6ba95790-e76f-4a98-a7fa-057b08f21d24", + "payload": { + "number": "7183202066" + } + }, + { + "phone_id": "5ff42a25-9d62-4fce-8cea-a6138cf1a52c", + "location_id": "3f1a4aed-9f14-4ea0-8676-d361622d8305", + "payload": { + "number": "2129331815" + } + }, + { + "phone_id": "6008b6d5-efb6-4507-aba4-d3e06ff54a90", + "location_id": "9fc4c057-119a-4c1e-a3ed-5814a8a4a8f4", + "payload": { + "number": "2125648799" + } + }, + { + "phone_id": "6013ff06-b74d-4b3e-8da0-4da5edc32de8", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "8008271000" + } + }, + { + "phone_id": "604816a3-ccfd-4dde-9eaf-333dfbbb4b0a", + "location_id": "709cd6dc-6922-4f38-87e0-b81be4799a5c", + "payload": { + "number": "2124236262" + } + }, + { + "phone_id": "60c6b2cb-d99b-40e5-b45b-111007525ccf", + "location_id": "639a7b12-c0ac-40b6-973f-5cfeaf15065a", + "payload": { + "number": "7184668244" + } + }, + { + "phone_id": "60dce8d4-6400-4b15-99ea-688edd7742bf", + "location_id": "7c314113-0222-43c3-8ec1-35bc009d50ad", + "payload": { + "number": "9179163537" + } + }, + { + "phone_id": "60e1d6e2-6ab6-4a8b-9705-5a2acc69f3da", + "location_id": "70f3ebe9-aab7-4294-86a4-d5f6d53d0555", + "payload": { + "number": "2125233336" + } + }, + { + "phone_id": "611654a0-1ce9-4490-b861-eae9f38db520", + "location_id": "e19cd2bd-6804-4964-ab90-0b1ba6754260", + "payload": { + "number": "7183455000" + } + }, + { + "phone_id": "611eb56f-9e82-4931-a0f0-17433b4cb50b", + "location_id": "2208860c-f8c5-4198-87ed-6d2bf95e4e1c", + "payload": { + "number": "2123623662" + } + }, + { + "phone_id": "6125e8b0-09db-43fd-95f4-4da50b26b7a5", + "location_id": "740de556-1e84-4a8c-9b14-6e2ecd07e972", + "payload": { + "number": "7187863131" + } + }, + { + "phone_id": "61345671-6b8b-4cdb-a735-46d6a1b6c4d9", + "location_id": "ee19a52f-0e0e-4587-b6cb-8923b8823216", + "payload": { + "number": "3478896340" + } + }, + { + "phone_id": "613dd63b-776d-4678-858f-7e5e43f93b7c", + "location_id": "7af602c1-d4e6-48a7-bc87-c6f0a1e5a667", + "payload": { + "number": "3477893988" + } + }, + { + "phone_id": "615e7e28-4238-488f-a554-2017868a723f", + "location_id": "af811187-e4b3-44c6-a070-852796569486", + "payload": { + "number": "7183760999" + } + }, + { + "phone_id": "6167c659-1865-4957-ad98-65d9e2310d5b", + "location_id": "103107bf-9e2d-47c0-99a0-b9ca42b76ee3", + "payload": { + "number": "7189423400" + } + }, + { + "phone_id": "61c59b94-f565-4af1-a21b-fd16fa19742a", + "location_id": "3a72f664-70c8-4908-a051-7beb19deb299", + "payload": { + "number": "8772223737" + } + }, + { + "phone_id": "61e98a93-f2ec-45e4-b29d-a1218dd12e8e", + "location_id": "94eeaff4-980c-47d8-beb7-e92f42c94f49", + "payload": { + "number": "2122812100" + } + }, + { + "phone_id": "62062f5b-6135-4f13-b07d-903045e4b3b4", + "location_id": "78f0a935-65a2-497c-b453-90aa4393995e", + "payload": { + "number": "7189483232" + } + }, + { + "phone_id": "623aef5f-c057-4a20-a9a2-4f62af474f55", + "location_id": "29bd0c7a-89e0-4724-9578-4f7e389852b7", + "payload": { + "number": "2122222700" + } + }, + { + "phone_id": "62a6819d-4c74-445c-94d3-c0035d84dbcd", + "location_id": "fb0195b2-4d90-4fb4-9749-7eb5ded0630e", + "payload": { + "number": "2122335500" + } + }, + { + "phone_id": "62b259b2-e5df-4ad1-9136-9d39a69ae76f", + "location_id": "17bd886f-22b1-40a6-841d-f1d79fc44b51", + "payload": { + "number": "7187780485" + } + }, + { + "phone_id": "62e2f3eb-7e8f-4147-896e-533e0b99224f", + "location_id": "12714af7-140d-4426-9339-adaceaf36672", + "payload": { + "number": "7182934352" + } + }, + { + "phone_id": "62f04daa-5eda-4bc2-af3b-5298b03dc246", + "location_id": "0c68bb39-2b7c-4e5a-ac3b-bfa524ff49ef", + "payload": { + "number": "2124630629" + } + }, + { + "phone_id": "62fb2bae-6c6e-4221-ab59-deb64ddc6d9b", + "location_id": "1c8c80b3-daa1-48a8-abd6-c48c04429274", + "payload": { + "number": "8888831123" + } + }, + { + "phone_id": "630f91a7-ff9e-4f55-90e1-528c412051f8", + "location_id": "f7e434c0-ef6b-425e-9886-317d4f83ae7a", + "payload": { + "number": "7187223100" + } + }, + { + "phone_id": "6392b83c-2773-4387-8fa5-5910fbcefd1a", + "location_id": "fe6ce9fa-86a9-4d47-a760-7dfbb11b03c2", + "payload": { + "number": "7184533243" + } + }, + { + "phone_id": "63da211b-0a0a-4139-8356-43752234a7f7", + "location_id": "444c42b1-205a-4a67-9755-9fca6ff949e0", + "payload": { + "number": "2129657000" + } + }, + { + "phone_id": "64265665-7da5-4bcc-975a-16df04828b04", + "location_id": "fb34dcd5-0cae-4482-9d59-5b4e16799ada", + "payload": { + "number": "7185202142" + } + }, + { + "phone_id": "6455fb7a-a934-4e6c-9634-1eeab4eeaf5a", + "location_id": "84f85d45-3d06-437c-8686-0ae29a5d5676", + "payload": { + "number": "6467598080" + } + }, + { + "phone_id": "64684413-b706-4948-b14d-8238ec308301", + "location_id": "c17db0ff-e6c7-4f84-8b5f-6df0c917fe88", + "payload": { + "number": "2123629300" + } + }, + { + "phone_id": "646afab5-a1c1-4dc3-8956-2f843306bada", + "location_id": "e09db8c7-bbe9-4b3c-8b58-c83902b15a9a", + "payload": { + "number": "7188586631" + } + }, + { + "phone_id": "647cdaa4-087d-492f-ac29-e3bcae572f7e", + "location_id": "dd992aad-8e9f-414e-bb20-ecc6917f4457", + "payload": { + "number": "2128706700" + } + }, + { + "phone_id": "64835915-bf13-4bc4-9493-e88e239a8cf2", + "location_id": "f7790b46-9f3e-41f3-ba78-dce936ce154f", + "payload": { + "number": "2129233031" + } + }, + { + "phone_id": "64c16a21-3063-4b45-8e31-a89c43889642", + "location_id": "7a2ad158-afb0-49b1-a106-1041d28ffb95", + "payload": { + "number": "9174518954" + } + }, + { + "phone_id": "6521562e-e6cc-4a72-a76b-2e6fc1098232", + "location_id": "43008ab9-672e-452e-8f96-a7de05f119df", + "payload": { + "number": "6466016040" + } + }, + { + "phone_id": "6532fff5-d2f7-4a96-ae64-bc26658e4e25", + "location_id": "e8d0e831-9620-4603-915c-2bbccb3c7c94", + "payload": { + "number": "2129798988" + } + }, + { + "phone_id": "65801754-6073-4716-b077-10f72803ab1b", + "location_id": "2bdca5ea-0198-4ee7-bf77-42c6da2a2d14", + "payload": { + "number": "7188496300" + } + }, + { + "phone_id": "6582949c-2b1f-405d-947b-82fbad034170", + "location_id": "9804a84b-e1ba-467b-92d1-a99cc6028c33", + "payload": { + "number": "7184141050" + } + }, + { + "phone_id": "65968e3f-8cdb-44e8-90c9-c732fe9280cd", + "location_id": "5e077646-2307-4375-bc80-a4014cf23349", + "payload": { + "number": "6465170222" + } + }, + { + "phone_id": "659ce045-e323-45fd-9fc9-fcafebd06491", + "location_id": "19aadb92-49f5-4195-b1ac-c600f7f1920d", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "6604db23-63b4-4669-992e-b2d4a57c71d5", + "location_id": "b8daa8cd-d6cf-40b3-b162-07aceb9a304b", + "payload": { + "number": "7183344000" + } + }, + { + "phone_id": "6653a258-a3e1-4ed1-9ad5-837dd699af49", + "location_id": "9d36d866-13db-4927-9445-2e757830305a", + "payload": { + "number": "7183619480" + } + }, + { + "phone_id": "66dc4bf2-cd63-4aec-abed-28d38c49357e", + "location_id": "438e5113-796f-4899-835a-767ed5f23368", + "payload": { + "number": "9176343609" + } + }, + { + "phone_id": "66dde0af-2cf4-4863-b6eb-8f39ccd95761", + "location_id": "efa2c81d-11d2-42a5-82fb-1b176bd80e41", + "payload": { + "number": "9342169201" + } + }, + { + "phone_id": "66ee6bae-59be-498e-811a-fde8677166e9", + "location_id": "efd50d5f-c6af-47a8-ac47-0793014a0a0f", + "payload": { + "number": "7189924256" + } + }, + { + "phone_id": "671c1cd5-ca8b-481b-96fa-cd968f61f8f1", + "location_id": "e9e92406-9cfe-4363-a2d4-ad30495d6de8", + "payload": { + "number": "7189758282" + } + }, + { + "phone_id": "674113e4-9f0c-4d4c-9895-1a6a240b925b", + "location_id": "5efb0bb8-df0c-466e-a210-a565c9bc44d9", + "payload": { + "number": "2122346714" + } + }, + { + "phone_id": "6744ef85-0069-4c4f-ae10-24956b7fe2ac", + "location_id": "21375620-596c-4b2d-8d5c-da6ea7014208", + "payload": { + "number": "9179748261" + } + }, + { + "phone_id": "67640795-54f2-41b6-92ce-83a3ba8ed228", + "location_id": "c6c0635d-dfa4-4d35-9d70-f62ce04bb1ac", + "payload": { + "number": "7186657565" + } + }, + { + "phone_id": "676d55d5-b7eb-46ec-942a-0340ab8f57c5", + "location_id": "534af3d7-3f6e-427f-8eb3-d2d15ad76657", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "67b2a03f-b525-4f9a-9bee-0caff50c4f56", + "location_id": "7b3ffdaa-cb5a-4e1c-b0ae-e86c133a926b", + "payload": { + "number": "8882458333" + } + }, + { + "phone_id": "67d05d2f-f5d4-4515-a1e6-977c566d11cc", + "location_id": "dbd4ab89-a2f4-4263-a035-7f0b2afa0b96", + "payload": { + "number": "7185420222" + } + }, + { + "phone_id": "68570ee2-7b56-491d-9ca5-4f87434e71a2", + "location_id": "6310d772-9d84-433b-84e9-077b09c58599", + "payload": { + "number": "7189654795" + } + }, + { + "phone_id": "68944d68-fb7b-4c3d-bbf9-042a96d6f4ae", + "location_id": "e26dbb99-2732-4007-aa10-b9dd57c94876", + "payload": { + "number": "9736218705" + } + }, + { + "phone_id": "68b30fcc-03e7-40aa-af60-f502f95b5766", + "location_id": "1b721fa0-b47d-4a13-9156-7d9b1fb82d70", + "payload": { + "number": "7189931078" + } + }, + { + "phone_id": "68bafc68-c31e-4ca4-b40b-a86072adcaf5", + "location_id": "8f435ede-77c7-4a5a-86d9-f2adeb80159e", + "payload": { + "number": "7184475200" + } + }, + { + "phone_id": "68e1a41a-f851-4bfa-9cd3-150995659b45", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "9293623006" + } + }, + { + "phone_id": "6904ec9b-2bd2-4bb9-9d42-b63010318e3c", + "location_id": "40e165a4-24d0-4fde-91bb-d635e9a1d16c", + "payload": { + "number": "7183872408" + } + }, + { + "phone_id": "693f6618-8c63-4fa7-b40f-066463009eec", + "location_id": "c1bedf46-2db3-4f26-b2b1-de0fe184aba1", + "payload": { + "number": "7182595576" + } + }, + { + "phone_id": "695e6375-755f-4900-bac0-7310da2f8072", + "location_id": "1bbaae64-86b4-41c5-beed-ff1976971a45", + "payload": { + "number": "7183854000" + } + }, + { + "phone_id": "69845f02-8d16-4a79-ad36-eecee48e3550", + "location_id": "ce18a686-57a7-46aa-a54d-5368c1ba45ee", + "payload": { + "number": "6463934000" + } + }, + { + "phone_id": "69a86462-8d70-4007-a8fa-129fbb8464bc", + "location_id": "1d00d44b-2af5-4c73-8c98-21b0c1d2f931", + "payload": { + "number": "2012100200" + } + }, + { + "phone_id": "6a2e4b3a-584c-4b5a-bafa-ed4f557243e9", + "location_id": "634ad0ad-709e-4a6b-90b2-0c8b1feed8e8", + "payload": { + "number": "7184872300" + } + }, + { + "phone_id": "6a3c42d9-bdc6-45f4-a64a-2eb10b02211c", + "location_id": "0a660b8a-ecdb-44e3-8556-00b32ab76915", + "payload": { + "number": "2127762000" + } + }, + { + "phone_id": "6a591133-6495-4f16-9f6d-e3a8074d9f05", + "location_id": "2b3bce93-7598-46f2-b62f-e18d3f00bf2d", + "payload": { + "number": "7182260429" + } + }, + { + "phone_id": "6a742f40-e4f6-4b94-89f3-490ecede28c8", + "location_id": "bb4ce3a6-89ad-4e72-996c-d8a794e282a1", + "payload": { + "number": "7186991010" + } + }, + { + "phone_id": "6ab69a5e-a77f-4492-8219-ca55751c7feb", + "location_id": "7e96599f-b9a9-42e1-8e33-649efd261677", + "payload": { + "number": "2126625536" + } + }, + { + "phone_id": "6b1842c2-4b34-4796-98d5-fde53b2f992d", + "location_id": "cf39e0b3-e361-44a1-8600-ba14a99861af", + "payload": { + "number": "7183616266" + } + }, + { + "phone_id": "6bbf6816-ddc8-4e54-9fb5-088aab231743", + "location_id": "f5b023c3-057c-4a2e-9b5d-045fa99853e5", + "payload": { + "number": "7188764040" + } + }, + { + "phone_id": "6bd8080d-6b4e-4ce2-a029-01d5229caf68", + "location_id": "93c8e50e-e2d4-4854-b307-ac6b946e3717", + "payload": { + "number": "2127811113" + } + }, + { + "phone_id": "6bebad01-0f24-4f3a-87bd-6f23ed823737", + "location_id": "c827622d-7874-4d90-b6b4-a6676721eb46", + "payload": { + "number": "2122891900" + } + }, + { + "phone_id": "6beeab48-9a4b-49ba-a90b-343ce4cc547d", + "location_id": "03922916-eb5e-44ce-83ac-d340ba81cca8", + "payload": { + "number": "7186364500" + } + }, + { + "phone_id": "6c3b999e-701f-4f7f-aa22-be199eaeaa1f", + "location_id": "e751bcb1-9dd7-434b-9d86-8025f98ff37a", + "payload": { + "number": "2129972869" + } + }, + { + "phone_id": "6c57efa4-574b-4eff-823b-e7d04b842d79", + "location_id": "1bfa88b2-2b3f-4ff9-a18f-5845049bafdf", + "payload": { + "number": "7182228632" + } + }, + { + "phone_id": "6c648393-faac-43d4-89b6-20de05a968f9", + "location_id": "4278d4ec-e73f-4ff5-a38c-ceea8a5f7daa", + "payload": { + "number": "7188526004" + } + }, + { + "phone_id": "6c93a1ad-6216-43bd-afd8-e9f2938bdf06", + "location_id": "793d9757-4d41-4725-90d8-e43eca9634b2", + "payload": { + "number": "7187429884" + } + }, + { + "phone_id": "6ca42eaf-b823-4f44-9f17-a1b4414d09a7", + "location_id": "5c7182da-54b5-45b6-8be5-aee9c25177cb", + "payload": { + "number": "7188811758" + } + }, + { + "phone_id": "6cbcce74-c4b6-4bbd-be36-d17333101efc", + "location_id": "b6751aa1-1e9c-47ac-b153-b17a7cf5d2a2", + "payload": { + "number": "7186438258" + } + }, + { + "phone_id": "6ce18c8f-1336-4d63-a087-4443bdebab9d", + "location_id": "67f62bc9-7304-4f2c-b034-5bb161470ccf", + "payload": { + "number": "7183105600" + } + }, + { + "phone_id": "6d0ae533-b16e-4727-a086-fc05bc3e148b", + "location_id": "8844289c-4b95-4969-9c6b-c5c0ec46feb7", + "payload": { + "number": "9178922564" + } + }, + { + "phone_id": "6d22257b-2b8b-4483-817c-8cadf99ddfcf", + "location_id": "6d4e679f-c603-4a59-aae5-15d7d064f039", + "payload": { + "number": "7182156453" + } + }, + { + "phone_id": "6d4463a8-6aeb-421d-b0d7-40b3c975f8d0", + "location_id": "c8988da0-acc8-4298-91c6-88bfcaff789c", + "payload": { + "number": "6463704558" + } + }, + { + "phone_id": "6d5d3c78-62e5-4fd1-bc3b-a17b1b6d0de8", + "location_id": "b036558f-f8fd-46e3-af00-977d62e890f0", + "payload": { + "number": "2122470490" + } + }, + { + "phone_id": "6d847f4d-e2cd-438b-811a-ea233dd5176a", + "location_id": "5d23acdd-3dc1-4fc1-af76-1982eace2933", + "payload": { + "number": "7184045700" + } + }, + { + "phone_id": "6d9a29a3-447b-40f8-9bfb-85013918317f", + "location_id": "4c207642-b437-4d76-92ed-2ae03cdd3abe", + "payload": { + "number": "3472014669" + } + }, + { + "phone_id": "6da24ff3-cd76-40e9-8375-b8e33817f263", + "location_id": "670d087f-a834-4829-ac3f-9681c7be3db1", + "payload": { + "number": "7187269790" + } + }, + { + "phone_id": "6dfcab85-7ced-4312-8cb9-0a80ed4f3122", + "location_id": "928a3005-929f-40e7-8e6c-562c788ca374", + "payload": { + "number": "6468129500" + } + }, + { + "phone_id": "6dffd3e9-3e94-4cd5-8d4a-596cd08e11ed", + "location_id": "c6985a09-e40c-4276-82a5-12563430ee62", + "payload": { + "number": "2124730044" + } + }, + { + "phone_id": "6e136f24-33e0-4a81-b0ef-5b92d890f478", + "location_id": "3163b1c9-4564-4cd5-b747-0c831c80293a", + "payload": { + "number": "7182756010" + } + }, + { + "phone_id": "6e3d07ab-4732-4042-b1ce-2afe8432260b", + "location_id": "62342032-3812-4e27-a36b-2054dbb52354", + "payload": { + "number": "9292456136" + } + }, + { + "phone_id": "6ec4507b-6d9c-445b-a26e-8ca54976fc51", + "location_id": "308a43b9-dd25-4a3f-a031-b1dc3ee36f79", + "payload": { + "number": "3472953738" + } + }, + { + "phone_id": "6ef31908-63fc-43d8-ba79-703fe1297b60", + "location_id": "7ee304a3-5b3d-4524-b12b-6e3cd9249113", + "payload": { + "number": "7189811400" + } + }, + { + "phone_id": "6eff557d-58f4-4000-ab4f-612544c61a17", + "location_id": "da7db63c-11c4-4a06-a259-a2ed2c394ca2", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "6f03c0cf-ea65-4af5-be23-33a539af277b", + "location_id": "ea42690d-1c74-4903-ab88-0f499cf665c2", + "payload": { + "number": "2125773300" + } + }, + { + "phone_id": "6f0a859e-29fe-458e-bdc9-fe1b26a76acf", + "location_id": "ca0fa614-7338-47d9-95d0-2a08534c5c66", + "payload": { + "number": "6465189744" + } + }, + { + "phone_id": "6f0e5605-79b4-426a-b346-9b6adb1baf0c", + "location_id": "163fef5a-49e0-48af-b87e-ac4ab674b41a", + "payload": { + "number": "9178193200" + } + }, + { + "phone_id": "6f7a5dda-c0a5-4f92-bfe9-87ac9f31e6e7", + "location_id": "f058c994-1f55-479e-89fe-83c014d6b19f", + "payload": { + "number": "7189457150" + } + }, + { + "phone_id": "6fcf0d47-c8d8-4f38-bf1d-d5d9d75206ca", + "location_id": "16770b3e-37a6-4e31-8239-d594668f4bf7", + "payload": { + "number": "6463693795" + } + }, + { + "phone_id": "6fe09c8c-a0af-477f-8dc2-6bf6ddfedbd9", + "location_id": "1ca2ca1b-5c5a-449f-bd8f-5f51c501ba6e", + "payload": { + "number": "3472621019" + } + }, + { + "phone_id": "6fee47fe-04ba-44b3-8310-a46770a3cb61", + "location_id": "8617dcea-4ea1-49ec-a225-3c124e458b50", + "payload": { + "number": "7183169993" + } + }, + { + "phone_id": "700e65d6-aa16-4b73-ade6-6fd4b21f94f4", + "location_id": "cc056ad8-a474-4ec5-a887-7e23add260a0", + "payload": { + "number": "9735893353" + } + }, + { + "phone_id": "701625a7-c1e1-4fb0-b9e6-8eac84f76a2b", + "location_id": "e74ce052-7ad4-4910-a889-7b9fb837381d", + "payload": { + "number": "2128747272" + } + }, + { + "phone_id": "70260c35-93d2-4107-9c4a-10384e9140b3", + "location_id": "eae18ece-7ee1-4f3f-aa43-a8e2fe223500", + "payload": { + "number": "3478315392" + } + }, + { + "phone_id": "70ab0e6e-5ded-4243-84c9-2dbc3a5f2019", + "location_id": "1d6420b2-785c-4526-ad0c-b750cc5aab8c", + "payload": { + "number": "7189668708" + } + }, + { + "phone_id": "70af7463-9cc7-4219-90ba-c7d5ab51ab9b", + "location_id": "d4390d18-df40-40a4-a32a-f29295b43771", + "payload": { + "number": "7184411125" + } + }, + { + "phone_id": "70d3bc80-8b01-494d-a0c2-0c088917003c", + "location_id": "fbd337f8-3c86-42d9-9ef8-cc506c456a30", + "payload": { + "number": "7184470200" + } + }, + { + "phone_id": "71135071-e881-43c1-9bc2-8f3d2680f751", + "location_id": "39732f1e-bbc3-4c2d-a3b3-d4c70e26141f", + "payload": { + "number": "7182858388" + } + }, + { + "phone_id": "715a9804-42bd-4d25-a77d-5d3d5ea96657", + "location_id": "c306521f-26e1-4318-b669-2d1a3870e76b", + "payload": { + "number": "7185973888" + } + }, + { + "phone_id": "71bd35f2-b4dc-4302-b088-0acc339fe538", + "location_id": "de3f2864-a8d2-4be7-ae82-f629008c03c9", + "payload": { + "number": "6466608951" + } + }, + { + "phone_id": "71c2340c-f3e7-45b3-bdc4-ac5e83c52ec2", + "location_id": "cb7132e8-6ef0-45e0-885c-88cb32e55910", + "payload": { + "number": "7184695900" + } + }, + { + "phone_id": "71ce34d1-e2f7-4ab6-9d8b-83429d6b9fc4", + "location_id": "20c951e9-e7fb-47a1-a01c-9c1333e3cab1", + "payload": { + "number": "7182985100" + } + }, + { + "phone_id": "71dc7d55-167a-45b2-be36-dc7166af0f9c", + "location_id": "1c3a6dc6-eb27-4692-8759-08ee53b417b2", + "payload": { + "number": "7182760600" + } + }, + { + "phone_id": "71ee1ec5-1e43-4369-9f31-9f6182569e36", + "location_id": "2df1a32e-cfcd-415e-ba5c-7926bb10cd1e", + "payload": { + "number": "2129717600" + } + }, + { + "phone_id": "72055f06-35e5-4f6c-bac1-68e78a2693f4", + "location_id": "2c02ba83-77e4-4244-a09d-9c1c54906480", + "payload": { + "number": "7188081459" + } + }, + { + "phone_id": "726b950f-7724-48df-bec9-2dcc3779e9f0", + "location_id": "844c928e-3b3b-4152-ba43-c82e0fabf2dd", + "payload": { + "number": "3476824870" + } + }, + { + "phone_id": "72960485-c59b-43da-8d18-8137490dbe0b", + "location_id": "06283444-684d-46a2-a2f9-7c72ee5d5ad6", + "payload": { + "number": "7184049281" + } + }, + { + "phone_id": "7315e612-8b52-403d-a420-04932e299bc6", + "location_id": "44b9b821-b3e3-4d06-8548-f5fd473890a1", + "payload": { + "number": "3475606700" + } + }, + { + "phone_id": "73247a26-a858-4b4d-abdd-b5d07e299446", + "location_id": "7ef03fbb-3853-4abc-be71-10d8b8e6a62b", + "payload": { + "number": "9144731010" + } + }, + { + "phone_id": "7336200e-cdf7-4326-b0b8-fb313be64092", + "location_id": "c2e24ba7-6adf-4c87-8c7e-f11d0c44d476", + "payload": { + "number": "7184475700" + } + }, + { + "phone_id": "7359a8d1-3154-4fe1-a13f-1795e8604845", + "location_id": "3e56397a-e4c2-4388-af21-82b837d04678", + "payload": { + "number": "2127491820" + } + }, + { + "phone_id": "73877dae-d712-41b4-a14b-69224c40013c", + "location_id": "933467c2-741f-4f43-820f-69a0e3497675", + "payload": { + "number": "7186307000" + } + }, + { + "phone_id": "73adcf3f-911c-42df-9ba5-743db6056720", + "location_id": "9e6292c8-a978-42ea-a8f0-181688e05a09", + "payload": { + "number": "7182628722" + } + }, + { + "phone_id": "73f4b60c-8cd1-4a47-ad21-7aec7ad3e673", + "location_id": "2e78b89b-8ab9-4e7a-baf4-f957fe92c7a1", + "payload": { + "number": "3477462281" + } + }, + { + "phone_id": "7400c5fc-c884-4b5f-9793-c2b49d17b442", + "location_id": "713f4a51-a232-4bc3-a5d3-504fa00cf0cd", + "payload": { + "number": "8776372946" + } + }, + { + "phone_id": "74132e37-1ebc-4e70-8196-bd4d0206b651", + "location_id": "438e5113-796f-4899-835a-767ed5f23368", + "payload": { + "number": "2126267373" + } + }, + { + "phone_id": "74412903-7d6b-4f95-85e6-2e82e3ec4972", + "location_id": "7cf9f6ff-7d1b-4dd8-a32a-5d7a917be8fc", + "payload": { + "number": "9294625857" + } + }, + { + "phone_id": "7448ea8b-66a4-4279-9046-e5a57817be4a", + "location_id": "53518396-af2a-49d3-b1ad-26619fe592a5", + "payload": { + "number": "7187041986" + } + }, + { + "phone_id": "74abe3fc-3fe5-45e3-9fbd-91ee41fc38c0", + "location_id": "fa79b1bd-04c6-47b0-ba89-2f991d750a24", + "payload": { + "number": "6465029719" + } + }, + { + "phone_id": "74f61c51-8665-4155-81f6-c8be06f00c22", + "location_id": "cbe4c1fb-e3e8-44a8-85d2-01b08ab89b55", + "payload": { + "number": "7182784303" + } + }, + { + "phone_id": "751554bf-40a4-42bf-9f39-9d8b3b68ce7f", + "location_id": "159aec84-b27a-482c-b51a-a0e1458883f9", + "payload": { + "number": "2123603255" + } + }, + { + "phone_id": "75413215-5553-4ca6-adbb-07d623420627", + "location_id": "87edbfe0-06dc-4dfc-8eba-b4f3c7fd30ca", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "75436560-207f-46d0-8402-d02cfb9c4cd8", + "location_id": "28e0636f-4147-45d2-9c1c-b21f108583e7", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "754e9c1f-faf6-4a80-83a4-c7e4d7cd47da", + "location_id": "ceececc1-d4fc-4f39-9668-e36bff5b1fcc", + "payload": { + "number": "3477747000" + } + }, + { + "phone_id": "7574705c-8281-4355-aa6f-9686e8b06fbf", + "location_id": "7cf9f6ff-7d1b-4dd8-a32a-5d7a917be8fc", + "payload": { + "number": "7187163021" + } + }, + { + "phone_id": "7600135c-d4ce-4beb-a646-77ce242bffb2", + "location_id": "527f33ee-3fde-49ab-8bb2-36c837e48782", + "payload": { + "number": "2126450875" + } + }, + { + "phone_id": "7610af1a-7c9b-40d5-9ccb-63f70e6de4cd", + "location_id": "4a851236-89b9-4b4e-a0c4-a42b4e8410cc", + "payload": { + "number": "7189823088" + } + }, + { + "phone_id": "766081c2-1b25-48de-b981-8e0c76874849", + "location_id": "886953e8-7323-47f3-b12d-4cef8d451566", + "payload": { + "number": "3473712889" + } + }, + { + "phone_id": "766d3b0a-9e2f-4471-8eed-2e16f46fd0b1", + "location_id": "1d6420b2-785c-4526-ad0c-b750cc5aab8c", + "payload": { + "number": "7189489599" + } + }, + { + "phone_id": "766ff9ae-a10a-4dfb-8d99-69dc1fd6512a", + "location_id": "069dee8a-7b35-4326-b194-6a1110d7bc77", + "payload": { + "number": "3474633244" + } + }, + { + "phone_id": "7675c296-2d02-418b-8b29-667c6983ea1b", + "location_id": "cdf65bab-cd8d-4d79-b363-2558b570ca67", + "payload": { + "number": "2127817979" + } + }, + { + "phone_id": "76eaa8a4-9f79-4c3d-b63f-ff7d4dc1e5b7", + "location_id": "519972cd-1695-4be0-9d68-4f3b1ebb46cd", + "payload": { + "number": "2122894100" + } + }, + { + "phone_id": "771bfe86-4c2b-44d8-92ec-346fb358b115", + "location_id": "7ef03fbb-3853-4abc-be71-10d8b8e6a62b", + "payload": { + "number": "9292224945" + } + }, + { + "phone_id": "774020ec-db63-4c36-8887-927563c9a930", + "location_id": "c6ad35e2-2755-469c-ac68-d999a1a2debd", + "payload": { + "number": "2124373500" + } + }, + { + "phone_id": "77410644-c132-4eea-af43-17e91f5fba9c", + "location_id": "c5a50b6c-f3b4-4f7e-943d-9588c0aab544", + "payload": { + "number": "2019634779" + } + }, + { + "phone_id": "77468396-a9a7-4ce5-8926-502dfe2d2d01", + "location_id": "dd4c53bf-76cf-4005-bf4a-73c22449d850", + "payload": { + "number": "2126652600" + } + }, + { + "phone_id": "7769eda4-5d37-4f62-b57b-28c56bfb04cd", + "location_id": "83faf2ce-5a07-41a8-83e1-2085b6887f3b", + "payload": { + "number": "7182704900" + } + }, + { + "phone_id": "777611b1-a1b6-4c9e-af94-2d044eaf7a77", + "location_id": "c5d343d8-0a42-4493-bf31-50d36dd6e9db", + "payload": { + "number": "7182372962" + } + }, + { + "phone_id": "7793e9ed-b0de-4de3-8a95-1c8dd5ed9d1e", + "location_id": "d72ca7f0-a8bc-4249-a400-9aa076f6a074", + "payload": { + "number": "7185387416" + } + }, + { + "phone_id": "77c37cc2-e80d-407d-a4d3-a54ba763f43e", + "location_id": "7c28c882-1126-422e-8c04-4ff15d6ae724", + "payload": { + "number": "7185148034" + } + }, + { + "phone_id": "78031096-2b9c-4980-b6a3-9e7529f990d1", + "location_id": "3df24a73-63fc-4b45-8d41-8bab956c9dcf", + "payload": { + "number": "7189193600" + } + }, + { + "phone_id": "7807430a-7c9c-4347-b55b-a815db991607", + "location_id": "d9fb94fd-a0bd-452e-82cf-01de86b5644f", + "payload": { + "number": "2124811055" + } + }, + { + "phone_id": "783152a1-c8d6-4f93-8b4a-7a4b69fa8a2e", + "location_id": "fa815d7f-fbd5-49f2-ac79-c7e17d4839c6", + "payload": { + "number": "9146067600" + } + }, + { + "phone_id": "783210eb-e2b4-4611-bb89-d4a3f381e716", + "location_id": "d47d6f20-a6d7-410f-a498-d6e3a600c021", + "payload": { + "number": "7188081824" + } + }, + { + "phone_id": "78eda625-2a75-4ac0-81ad-8eb40e04e390", + "location_id": "b0f6a2b7-4590-4dbf-aebf-de0b11c94207", + "payload": { + "number": "7182927718" + } + }, + { + "phone_id": "78f52de9-4da7-454d-bcf0-427605a305b6", + "location_id": "bd4da5a8-7b7a-4b4a-97cf-5a0993373fe5", + "payload": { + "number": "7189602458" + } + }, + { + "phone_id": "793f8189-cef4-4a77-bbc7-70c6bee05f55", + "location_id": "592a1a16-6441-4405-945d-0826067da27a", + "payload": { + "number": "7183872316" + } + }, + { + "phone_id": "7952e35e-f461-4dc7-9e21-d8f13b1db730", + "location_id": "a2200353-fbca-4f42-ac28-a2f33f93fcdf", + "payload": { + "number": "2124202000" + } + }, + { + "phone_id": "7973d32b-de1c-45f6-ad17-514cd342d72f", + "location_id": "d1338e69-2f81-4b0c-9f5f-16d0673ae937", + "payload": { + "number": "7188081364" + } + }, + { + "phone_id": "7987b595-d9b7-4952-a7fc-e6f8a78c4195", + "location_id": "57be5835-4692-4b01-ab91-ae279a783e89", + "payload": { + "number": "7182176530" + } + }, + { + "phone_id": "798d919f-d74d-4411-85e1-686eb27d1e26", + "location_id": "3f3a6015-d99f-4125-b40d-ebd78129984b", + "payload": { + "number": "6464596175" + } + }, + { + "phone_id": "798faf83-3e9b-46b9-8316-3d505d1f91c2", + "location_id": "43c6d99f-4280-4010-85cb-8d7339d045dd", + "payload": { + "number": "2126302300" + } + }, + { + "phone_id": "79c399b7-cedb-4286-8245-b1e59b2f50e5", + "location_id": "5981cfd9-d813-44eb-ab8f-f65bd5a0b072", + "payload": { + "number": "6465321244" + } + }, + { + "phone_id": "79efc13a-3773-4ff9-b6ee-cf31ad644206", + "location_id": "19665bd7-5785-4b15-88c3-35056be95ba5", + "payload": { + "number": "2122431313" + } + }, + { + "phone_id": "7a7b85f3-0e6a-49e0-9618-023aba941b4b", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "2129660228" + } + }, + { + "phone_id": "7a9e324d-3261-43d6-a951-8576549e1731", + "location_id": "f46f0b75-4beb-47b1-a3b2-dd6fbc86c56b", + "payload": { + "number": "7184021212" + } + }, + { + "phone_id": "7acb3da9-2cfd-48c4-92b5-618956a8ece4", + "location_id": "77cb17e2-fcc4-4c48-9fef-065889de92c1", + "payload": { + "number": "7187731180" + } + }, + { + "phone_id": "7ad2602a-e305-4341-b5d9-077b6dd1de03", + "location_id": "9dbed080-e2d7-4a87-b23d-86aa5e08da62", + "payload": { + "number": "2127771010" + } + }, + { + "phone_id": "7ae8857a-5324-4690-853b-ed4d156d9b22", + "location_id": "a541dfb2-bfb7-4b32-aa7b-5ef4f5ab6a51", + "payload": { + "number": "2127959511" + } + }, + { + "phone_id": "7b871f22-c05d-48e7-b924-c048fa523021", + "location_id": "437c1ae0-b892-4a00-8680-06dfd918d798", + "payload": { + "number": "7189914758" + } + }, + { + "phone_id": "7bd134b3-743f-45e7-9303-f7303100bea0", + "location_id": "b01121e8-7cde-49f8-b69d-40fb5e50522e", + "payload": { + "number": "7185902355" + } + }, + { + "phone_id": "7bf69218-7bb7-41e9-aa63-41ff721a1698", + "location_id": "eb71ee24-5158-4357-9698-1bcef10c36ed", + "payload": { + "number": "9177943808" + } + }, + { + "phone_id": "7c1741f0-c394-47ed-ab6f-5fae4290da13", + "location_id": "218347f5-6a31-42b2-b266-226228641460", + "payload": { + "number": "2122688830" + } + }, + { + "phone_id": "7c22c714-21a2-454c-a7b5-4b2a3979a9c7", + "location_id": "5ec7303f-36dc-4f2c-9436-a8688ec63fe1", + "payload": { + "number": "5169464646" + } + }, + { + "phone_id": "7c81ca8a-50c0-4106-aef5-d496e93e924b", + "location_id": "23ab2dd0-6f7b-45a5-a3a5-ab062155d7c5", + "payload": { + "number": "7188521917" + } + }, + { + "phone_id": "7c839034-1bce-4098-97c7-53c589b2e4c7", + "location_id": "799840d3-74b5-415f-9435-87b33e72bf34", + "payload": { + "number": "7182308600" + } + }, + { + "phone_id": "7c8f572d-883a-42f6-aeda-ec0af5171c52", + "location_id": "35d289a1-a002-4328-9cb4-7276cf240289", + "payload": { + "number": "6466025600" + } + }, + { + "phone_id": "7cd63a0c-9a57-4019-8bf6-d158f5f6f092", + "location_id": "d76a6a84-7fae-4e49-956f-5fb38d060119", + "payload": { + "number": "7188287546" + } + }, + { + "phone_id": "7d0dc031-ebf6-4f7e-91c2-7930faf75f5f", + "location_id": "ec1e5fd9-ec02-482c-b734-017f986e2604", + "payload": { + "number": "7184539490" + } + }, + { + "phone_id": "7d10c493-8031-4759-bc87-66c354ee7bf5", + "location_id": "3c4147b0-4556-44f5-bb65-a0816a2df1a5", + "payload": { + "number": "7182384000" + } + }, + { + "phone_id": "7d29a580-cad0-46b8-ab19-23d1049924f2", + "location_id": "0d36529b-70b1-409d-bbea-3cc6b0e58f32", + "payload": { + "number": "2129410041" + } + }, + { + "phone_id": "7d44d6a0-be9f-482f-8aa4-69a6881a1760", + "location_id": "8d935351-3a40-461e-bf99-6924e19eaeb5", + "payload": { + "number": "2124193700" + } + }, + { + "phone_id": "7d5a135b-fbe3-4102-9046-956abca1016c", + "location_id": "df42156e-9eea-4c9f-89b8-ac3ac208ff90", + "payload": { + "number": "2123780229" + } + }, + { + "phone_id": "7d763357-0230-4167-98d6-919f51237501", + "location_id": "33f7d544-0c45-4982-b53e-75b586a5bff9", + "payload": { + "number": "7187273360" + } + }, + { + "phone_id": "7d7ceeab-e84e-425c-aff0-6aeeb86e3884", + "location_id": "fe4685d7-8cac-4cfa-9bfb-4cbdf97f1615", + "payload": { + "number": "7182614202" + } + }, + { + "phone_id": "7d8a06c0-d7b4-4c70-9da2-f302e631602d", + "location_id": "5fcb2484-87de-4438-bff6-be549d8911df", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "7db33f3c-8723-4b23-bab9-f4417acfd446", + "location_id": "5cf85c94-0989-434a-a1ca-bcccfbccedb2", + "payload": { + "number": "2127421478" + } + }, + { + "phone_id": "7db8a192-5389-45f3-80ad-707e8698cc91", + "location_id": "1907d2bd-8fb0-4bea-bb3e-319c5caf1b61", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "7dbd5c1d-08a0-451b-85cc-34c4a99e58e1", + "location_id": "ede4ddfe-cdd3-405c-8278-147c778ae01c", + "payload": { + "number": "7184883628" + } + }, + { + "phone_id": "7de5e902-6015-4099-ab09-39725883e004", + "location_id": "e4a3b4e4-192e-4b96-a9a9-d2f3a210c76d", + "payload": { + "number": "2127491820" + } + }, + { + "phone_id": "7e224d39-adcd-485b-8d2a-735e86e00349", + "location_id": "4764402b-c6a3-4e16-a928-5ff1455682e9", + "payload": { + "number": "7183316800" + } + }, + { + "phone_id": "7e6cf67c-20f4-4b0e-8f29-ff430b8d1658", + "location_id": "d6b41325-d939-4241-ba64-499b3093239e", + "payload": { + "number": "7182151800" + } + }, + { + "phone_id": "7e7ec34e-dec6-404f-b431-ede7e994f508", + "location_id": "8a632938-a62c-4b87-9079-cd94b410b674", + "payload": { + "number": "7185934528" + } + }, + { + "phone_id": "7eaf02e2-32c9-4d66-94cc-252298b8ddc5", + "location_id": "909454a9-4d25-4f6c-b12c-203f6a66fce3", + "payload": { + "number": "7187316300" + } + }, + { + "phone_id": "7eb8230d-1622-462a-898a-44de335f9e75", + "location_id": "fe5efe51-6674-4008-b3a5-7aa924ed5870", + "payload": { + "number": "3322404479" + } + }, + { + "phone_id": "7ed30cf3-5bbd-4c9a-8b42-591898da5d51", + "location_id": "bf516caa-f158-4521-9bee-28c2e69adfec", + "payload": { + "number": "6465314100" + } + }, + { + "phone_id": "7efbde3d-683f-4b2b-a276-45f646762038", + "location_id": "ff9772d0-e2c8-4698-8cf6-e9a4f79879c9", + "payload": { + "number": "7189335300" + } + }, + { + "phone_id": "7f484df0-2308-4e8b-b658-8979fb4faf61", + "location_id": "f96da677-82bc-4859-8101-68ef86a124e6", + "payload": { + "number": "6464960046" + } + }, + { + "phone_id": "7f56a05f-5a27-4f4e-9eb4-fd8e96a33275", + "location_id": "b84fbb62-2de3-432a-a57d-c83b4ec01ab5", + "payload": { + "number": "7185296070" + } + }, + { + "phone_id": "7f61d46d-4530-442d-9b53-3efcd02b664d", + "location_id": "2b9e4a87-4df7-42d3-8feb-c89a48208f50", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "7f864d81-eed7-4a3e-8ef7-3c731a8ddc08", + "location_id": "4a8e416a-c1f0-4e56-a869-42ff19e60ac8", + "payload": { + "number": "7184956700" + } + }, + { + "phone_id": "7f89a6fd-e9a5-4744-ba11-57b97e4d79bb", + "location_id": "f6f5e757-5ae8-4d44-bdae-0e485cef8f42", + "payload": { + "number": "2123377467" + } + }, + { + "phone_id": "7f943418-648d-40d7-bd45-b303e091b93c", + "location_id": "d7a68921-1414-4aaa-b9cc-245612e2b0d1", + "payload": { + "number": "2129392730" + } + }, + { + "phone_id": "7f98041b-fdd7-46b5-a4eb-4c0fb64c1488", + "location_id": "b082c423-560e-4b78-a0c2-22e0a91a3d5e", + "payload": { + "number": "7187807994" + } + }, + { + "phone_id": "7fa953bf-fe0c-48d2-82d7-b15a1bf21d30", + "location_id": "ad970e60-e33f-48b7-b91c-00652b43b3da", + "payload": { + "number": "7182336480" + } + }, + { + "phone_id": "7fc18b0e-ecb3-4811-96f1-46733b7462e0", + "location_id": "c8a6ed49-d521-47fd-a090-0982b5b262a9", + "payload": { + "number": "2125321922" + } + }, + { + "phone_id": "805b8907-ab39-4ca0-8666-61b6d24ea7b4", + "location_id": "b006d271-6738-42f7-a4f9-5407558cf565", + "payload": { + "number": "7182260496" + } + }, + { + "phone_id": "80b2a48e-f0a3-4bfa-b2f6-95bf4efeff32", + "location_id": "852ffb1f-0e24-4a43-8bdc-f211bde52224", + "payload": { + "number": "2125234000" + } + }, + { + "phone_id": "80cda226-09ca-4ace-9280-127dce98ec7b", + "location_id": "b7be9f6e-ddc1-49e5-a0c0-77e51f608a46", + "payload": { + "number": "7184103766" + } + }, + { + "phone_id": "80f6a2fc-bc4f-4793-b559-1b9ece1f6f43", + "location_id": "cda0e0a4-a112-4978-8a48-5a68c18d0c8e", + "payload": { + "number": "6462168210" + } + }, + { + "phone_id": "811d15ba-f4eb-4ba1-8312-1f1ca66f330c", + "location_id": "82bd1f9b-7af3-459e-87bc-50b690db0fcd", + "payload": { + "number": "7182064600" + } + }, + { + "phone_id": "812850d6-5f16-4946-80a7-bf100dcc716b", + "location_id": "185b6481-d729-4717-aaa5-cf935b1abaec", + "payload": { + "number": "2125671300" + } + }, + { + "phone_id": "813667f2-748e-45a9-ad5c-4dcdb3821650", + "location_id": "09dca37e-d364-4271-8dd4-52f24202229e", + "payload": { + "number": "7187852911" + } + }, + { + "phone_id": "8146fefa-acf6-4586-a27a-440dc4b78276", + "location_id": "c4ff7ea3-93d3-4d45-b593-b8cd60c67d3f", + "payload": { + "number": "2125333281" + } + }, + { + "phone_id": "815e1732-2ecf-4589-a5e5-81fb2855d1d4", + "location_id": "886953e8-7323-47f3-b12d-4cef8d451566", + "payload": { + "number": "7185923300" + } + }, + { + "phone_id": "816976cd-e97b-4da5-a6b9-9f4fbfdeaa8b", + "location_id": "983312ac-bf17-4099-867e-70b50d577dcc", + "payload": { + "number": "7189758282" + } + }, + { + "phone_id": "816f9f9b-d5ee-4e37-9f87-8b9d04e68d7b", + "location_id": "1cbf6d43-8be6-44ab-8750-056e1a41d0f7", + "payload": { + "number": "9177964296" + } + }, + { + "phone_id": "817bc90d-023e-4d87-b3de-8a04003c7048", + "location_id": "56c61b82-0366-4b41-9b60-e373d2751e50", + "payload": { + "number": "2125431502" + } + }, + { + "phone_id": "8195a411-0827-4385-bb9d-180527960050", + "location_id": "aed39e41-fa82-47c7-9620-2c49eb427978", + "payload": { + "number": "2128620100" + } + }, + { + "phone_id": "819870d9-07db-49af-b4a6-3cc54d04e04b", + "location_id": "1eb52226-f8e1-4ff7-a28d-8aa66b4fb3ad", + "payload": { + "number": "3475020749" + } + }, + { + "phone_id": "81a3bd6e-c6b9-4fe4-a4a5-3877a4d9b8ab", + "location_id": "2adb1430-2eb7-47d9-a951-871e369e8a35", + "payload": { + "number": "2126623200" + } + }, + { + "phone_id": "8204cd34-b967-4bc4-a9e4-9e75f890f302", + "location_id": "b8c4c221-d30e-4814-a842-61d5f3f6c93a", + "payload": { + "number": "7186430232" + } + }, + { + "phone_id": "825cd688-4d97-4aa2-a21e-06ec13ee0414", + "location_id": "28e28c54-1d73-4de0-b330-dbf786ce4164", + "payload": { + "number": "2128702061" + } + }, + { + "phone_id": "826a4f3c-75b8-4bd5-98aa-dc04e7d03a82", + "location_id": "0ccfc78d-e4a1-42d2-87ed-e4d36befb333", + "payload": { + "number": "8446927722" + } + }, + { + "phone_id": "82848ac7-e762-4ff3-b35f-54e0f3a1631e", + "location_id": "147ae6f6-0830-4d90-939b-e413199a26bf", + "payload": { + "number": "2014882121" + } + }, + { + "phone_id": "828bef0b-7308-4322-97a5-868b6d3e33a1", + "location_id": "70cca65d-0d7c-412f-8c1a-8bc5b035ca75", + "payload": { + "number": "2127871566" + } + }, + { + "phone_id": "828cd114-62eb-429b-a172-8abc57f328fe", + "location_id": "28949a75-93aa-44ca-802d-bad6eadebf9a", + "payload": { + "number": "2123485650" + } + }, + { + "phone_id": "828f362b-d4b3-4641-a1f7-279069c57383", + "location_id": "4fd147da-0d99-4109-87cd-40840a2b2507", + "payload": { + "number": "2126450875" + } + }, + { + "phone_id": "8290d2b0-b688-4b7d-acdc-5edbfb88d87e", + "location_id": "5384d77b-ef75-448c-a494-4b6b1774f9f0", + "payload": { + "number": "3479473920" + } + }, + { + "phone_id": "82d4abcf-adf5-40ce-971c-53f78b650839", + "location_id": "ad663d63-1f3f-42f3-83d5-2d3400a9ebd3", + "payload": { + "number": "7184551100" + } + }, + { + "phone_id": "830a59d5-5a91-46b3-982a-076d76a39bce", + "location_id": "c80f5962-2f7a-4779-9564-606051875b2f", + "payload": { + "number": "7185236868" + } + }, + { + "phone_id": "8331f0b6-ac8e-4f91-9348-a603b230568c", + "location_id": "75e16652-aff8-48b6-aaab-c7bfb848d614", + "payload": { + "number": "7185221144" + } + }, + { + "phone_id": "8350ef94-e2e8-48c3-8191-74e39ace7369", + "location_id": "e9b58317-815a-4875-a6bb-dbd2cfbbfc66", + "payload": { + "number": "2129240562" + } + }, + { + "phone_id": "838812f1-b1ac-4ee4-8ffd-f7d9fdedfa2a", + "location_id": "b41ce36f-81ca-4710-aec7-da6df8222251", + "payload": { + "number": "7183619480" + } + }, + { + "phone_id": "8391dc90-afb6-4334-9062-6fa9832c60df", + "location_id": "07b640fd-79be-4541-8b71-3d35cb74a90d", + "payload": { + "number": "8446927722" + } + }, + { + "phone_id": "83a86d2c-c62c-4a01-ae6f-a984543a0eae", + "location_id": "f69c5067-736c-421e-a4b6-aa8688ac7d9d", + "payload": { + "number": "7188023358" + } + }, + { + "phone_id": "83b00444-9166-4024-82a2-f029b3a3907b", + "location_id": "d8c94dc6-8248-4e22-86e9-9d0eea4407d1", + "payload": { + "number": "7186364500" + } + }, + { + "phone_id": "83d354e6-4424-4da3-a0aa-39cf0d48a7b4", + "location_id": "7afe7320-c9cb-4dee-92c4-3508361b1c19", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "83ed6593-14c2-4bdd-9f57-8f916fd55949", + "location_id": "75a87557-8f47-4fd1-9781-c03b49e948cb", + "payload": { + "number": "7182323377" + } + }, + { + "phone_id": "83f470e2-08ef-4c2f-a04e-a43575f6300f", + "location_id": "128f2e18-505c-423f-bed7-825d5c64728e", + "payload": { + "number": "7183564555" + } + }, + { + "phone_id": "83fa34c3-77dd-4d63-8a13-6e3c8cd5ca9f", + "location_id": "fe0f768d-295d-4f6e-8766-ffc12e73943d", + "payload": { + "number": "7187826802" + } + }, + { + "phone_id": "84261991-1d45-4e0b-80fa-515f63a3df9f", + "location_id": "6d5999ed-99a1-41fc-b99a-f4a38e4ca3a3", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "844934ac-4a41-460b-a988-c5492dadba44", + "location_id": "e771a7cc-d7eb-43f2-9451-4fe49e00f51d", + "payload": { + "number": "2123604002" + } + }, + { + "phone_id": "844a6f6d-2501-435c-ab92-154a6eaaff88", + "location_id": "b9cd64b9-7f85-4317-8d4f-8c541c7d7b9a", + "payload": { + "number": "7182920019" + } + }, + { + "phone_id": "844ab570-fd9d-4bc6-961e-53b4abe103fe", + "location_id": "a14f9d60-a576-4e05-9e11-f86584164bc4", + "payload": { + "number": "7188557707" + } + }, + { + "phone_id": "8495a6f3-ad7f-4f27-9dce-46457c4bc8b7", + "location_id": "abfb2d01-35c4-407e-8ae8-2c6cf02a1552", + "payload": { + "number": "7189359457" + } + }, + { + "phone_id": "853a5f25-31ae-45f7-ae11-e1f90857455a", + "location_id": "0192dbee-df11-494a-b460-4bf56d12e0e1", + "payload": { + "number": "2122548900" + } + }, + { + "phone_id": "856c1ed8-d40e-4201-8eb6-2d0aae92bffb", + "location_id": "898c0d4a-96d9-4e40-92e0-a380795050c4", + "payload": { + "number": "2129664400" + } + }, + { + "phone_id": "8571345d-0991-4ef1-8640-cd3057ae7b86", + "location_id": "da2b5e29-e9ed-4522-8a8d-8ae586ea8e12", + "payload": { + "number": "7182431222" + } + }, + { + "phone_id": "858655b4-986b-44a6-be31-ce255fe859aa", + "location_id": "cc1d44c6-2cf7-4c1e-9173-9c316fff553c", + "payload": { + "number": "3474065878" + } + }, + { + "phone_id": "85fc8325-a7e5-4de3-8a9f-4af6366aa84f", + "location_id": "cbef3f4e-754b-4588-a0b4-255806c0f08c", + "payload": { + "number": "6467940027" + } + }, + { + "phone_id": "86118d95-96e5-4a4d-8d99-c9ece1c5b3a3", + "location_id": "51c4e6bb-db0e-4335-aa44-ac463503f2ad", + "payload": { + "number": "7187209233" + } + }, + { + "phone_id": "861a2a36-1914-44b5-8f10-2899a960d923", + "location_id": "b4a7f657-8dfe-41e3-8c42-d7fbb733ca6f", + "payload": { + "number": "7188767395" + } + }, + { + "phone_id": "862b6162-07ab-4de8-86b8-8463523ae21d", + "location_id": "83a01c33-8b83-42d4-887e-6794cfced947", + "payload": { + "number": "6463850701" + } + }, + { + "phone_id": "86590141-662a-41e0-99ea-9ae58769e0a4", + "location_id": "cab24732-03a4-47fb-a052-fd9235fb1665", + "payload": { + "number": "7187226001" + } + }, + { + "phone_id": "865b03a0-bdf4-4ffe-a38f-fb6f5533ca14", + "location_id": "0f04e372-9cf4-4233-ba79-d553bcff39ec", + "payload": { + "number": "7182322500" + } + }, + { + "phone_id": "865ea02f-c9a6-443b-8aa9-05600d026a6a", + "location_id": "d018addb-7646-4a09-baa2-b25d6e200e46", + "payload": { + "number": "7187787373" + } + }, + { + "phone_id": "86cf9c86-1de4-4808-a3ea-83c7277c33ba", + "location_id": "c7503ad1-abf2-47e0-9918-e5530d1712be", + "payload": { + "number": "6468669045" + } + }, + { + "phone_id": "86d2c013-bb21-4664-9fc4-0399aed2885c", + "location_id": "06b616d6-6cef-4727-b21e-6a95d4516cc0", + "payload": { + "number": "7184015720" + } + }, + { + "phone_id": "86eae45b-1c75-494b-9614-24d577be8f2f", + "location_id": "7ec69eb6-fce9-47ae-889b-fa82f19efa58", + "payload": { + "number": "2127493656" + } + }, + { + "phone_id": "86f3f0cc-bd17-4075-b8fe-97f2ecdc9fce", + "location_id": "6f454ccf-7a6c-44d9-8d9c-537ab7676c9c", + "payload": { + "number": "6462454000" + } + }, + { + "phone_id": "871b1a80-ad10-4111-ad0e-928b31317183", + "location_id": "ee60d902-bb2a-4345-9d0d-eb3aedb44f15", + "payload": { + "number": "7187342539" + } + }, + { + "phone_id": "871bc1c1-d0ea-4f0c-950c-1bc716c59813", + "location_id": "a46c7712-3ef1-4cf3-ba83-82e7ba335761", + "payload": { + "number": "2128701100" + } + }, + { + "phone_id": "87608821-a934-4ab1-8ffc-07773cc7313e", + "location_id": "80e7d879-7944-4244-9598-ab2c1efa3873", + "payload": { + "number": "7185387500" + } + }, + { + "phone_id": "87718e0e-d53e-4c18-b9af-6f18b94bf810", + "location_id": "4dcd483d-eef8-4427-adb4-d6376f2ff1d8", + "payload": { + "number": "6467233325" + } + }, + { + "phone_id": "877253c7-ecb3-42f2-b659-7275f2898865", + "location_id": "f4ae3631-02d9-4180-abd1-324f363c505d", + "payload": { + "number": "7184841247" + } + }, + { + "phone_id": "87bcbcbd-a60f-49a9-b16d-df211820b097", + "location_id": "ff310f36-b476-4426-b238-6e0cf97828fa", + "payload": { + "number": "7182911888" + } + }, + { + "phone_id": "87f19477-39e4-4ae0-a910-2c6bd0030edf", + "location_id": "df3f4053-562c-4883-9488-fb7f13f5528f", + "payload": { + "number": "6467385131" + } + }, + { + "phone_id": "88521979-d3f1-4d7e-81e9-d9fd3df9e70f", + "location_id": "d24b520d-499b-4bbd-a88a-7689fd5a1ee2", + "payload": { + "number": "2122562590" + } + }, + { + "phone_id": "886b7790-38f8-4daa-ab0e-b61bc353d489", + "location_id": "1df3ff0e-6ff1-4791-b1b4-31fed33e8876", + "payload": { + "number": "7182604640" + } + }, + { + "phone_id": "8878e922-a7d5-4e6e-aa66-19edcc3e2342", + "location_id": "4d3a29d8-c439-4f4b-8d35-8b0d24e4d396", + "payload": { + "number": "2128765500" + } + }, + { + "phone_id": "89012c81-20cd-4bfb-9f89-0e42e9e8ab8b", + "location_id": "3e832d88-c033-403d-8e7d-29c4808ff92c", + "payload": { + "number": "2125812910" + } + }, + { + "phone_id": "894d784d-5ae5-4340-8c9a-53fbb2aaec50", + "location_id": "9ec991fa-be0b-4719-b3f2-402ee1e66ee1", + "payload": { + "number": "2128650775" + } + }, + { + "phone_id": "8965b188-ab2a-4f71-a610-b54a8896fb7a", + "location_id": "48cf916d-214d-4aa1-8d40-bbbe84e18384", + "payload": { + "number": "7182105293" + } + }, + { + "phone_id": "89804efb-d328-461f-a21d-211f2e88d8ab", + "location_id": "8bf9d47b-1e0c-45f4-8d1c-a09ff60ea210", + "payload": { + "number": "3322280312" + } + }, + { + "phone_id": "898416ea-527d-42c3-a4be-43b99a6cd59a", + "location_id": "98020879-af11-4089-ae5b-68e8656a58d5", + "payload": { + "number": "2129254929" + } + }, + { + "phone_id": "8990dde0-88d6-46c3-8709-c27eb7b25dd0", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "number": "3475055176" + } + }, + { + "phone_id": "8a48b4d1-cb7d-4de9-9e6b-07eb414da711", + "location_id": "79a2d327-385d-4696-a9cc-87ef591b0311", + "payload": { + "number": "8007763863" + } + }, + { + "phone_id": "8a630fa5-0fe6-4933-8e6e-bab9b4bd446b", + "location_id": "f7494efd-a752-4c74-9773-0a58bda9ddaf", + "payload": { + "number": "8664812547" + } + }, + { + "phone_id": "8aefb300-784f-4972-9272-1170a36b389d", + "location_id": "af9a6269-9e05-493b-9fd8-09d55cf3f3aa", + "payload": { + "number": "2127816580" + } + }, + { + "phone_id": "8b0a6b98-2822-48f9-89d8-8c27300b92ca", + "location_id": "ce1819e7-2e43-4629-ae60-c16a545d1263", + "payload": { + "number": "2123431122" + } + }, + { + "phone_id": "8b5dd13b-7cad-4500-a52e-d85dd3e16972", + "location_id": "7481f79f-bec1-4d8a-afaf-503c39e4f3ba", + "payload": { + "number": "9295754613" + } + }, + { + "phone_id": "8b65580a-2548-4da1-8c6d-9c9cf8efa84b", + "location_id": "cfca724b-63f9-4a4c-8064-4ea248436667", + "payload": { + "number": "7182738409" + } + }, + { + "phone_id": "8b83d66f-02f8-42da-88a5-7d7c6713690f", + "location_id": "f83a8b80-5063-412f-849e-5240ab7c6032", + "payload": { + "number": "2122812040" + } + }, + { + "phone_id": "8be27ee2-9e30-4dc7-943d-478d10cc8df1", + "location_id": "12c7ab6c-e3b5-44a6-b584-b8e87d13cc74", + "payload": { + "number": "8005856081" + } + }, + { + "phone_id": "8bf57c5c-f5d8-4f4a-8896-3b820db91b6e", + "location_id": "09875402-ca2e-4d81-9d0c-fa8ea6a546b0", + "payload": { + "number": "2122065400" + } + }, + { + "phone_id": "8c0e1fbe-1b96-4ee0-a5f3-cd26ad112eb6", + "location_id": "bd7a9ee5-d639-4212-b853-714b067fb445", + "payload": { + "number": "7187209016" + } + }, + { + "phone_id": "8c1bfa6f-d0c0-4016-a7cd-c0c0ed4e2360", + "location_id": "921708e1-330e-4423-9b7c-301b5003910f", + "payload": { + "number": "7183346300" + } + }, + { + "phone_id": "8c3a99b8-1a25-42fc-b195-62de5c9cacaf", + "location_id": "7d7ff441-34a8-4203-8a58-b6c200270653", + "payload": { + "number": "7182453131" + } + }, + { + "phone_id": "8c62d14f-a976-4941-ab8e-9d7bcc55f38f", + "location_id": "f98818c4-f2cb-4501-87c6-f4d7f092a006", + "payload": { + "number": "9177360680" + } + }, + { + "phone_id": "8c79956a-cc3d-495d-bd51-bc3e5a154ff9", + "location_id": "ee80a4f9-7cec-44b6-a0dc-5a7164da74b7", + "payload": { + "number": "9177226912" + } + }, + { + "phone_id": "8c8d4370-b67d-4cd0-8f08-84eca3bc3bb7", + "location_id": "faf1d85e-56d1-4be9-8423-0f6debd37a55", + "payload": { + "number": "6464836885" + } + }, + { + "phone_id": "8cae303b-537d-44fa-9840-d0015c5860d9", + "location_id": "28bf9cc3-d00f-4a08-aa30-19ba0dd976d7", + "payload": { + "number": "7182413000" + } + }, + { + "phone_id": "8cd1012a-bdcc-4681-87ab-00983f3005fc", + "location_id": "8b29b797-dde3-4b19-90a0-d4730b3c1dbb", + "payload": { + "number": "6464421520" + } + }, + { + "phone_id": "8d030279-da5c-421c-87b2-2a4e056604cf", + "location_id": "56c37c4b-f331-42eb-9e13-75476793da51", + "payload": { + "number": "2122438181" + } + }, + { + "phone_id": "8d0dbf7c-20f8-47f5-9504-71f873c28807", + "location_id": "3e49f89a-b438-4ef0-ba54-d29c5e127180", + "payload": { + "number": "7188023366" + } + }, + { + "phone_id": "8d5ec144-33ba-4cbc-a16e-91c1f29d4310", + "location_id": "65d64aec-ba97-496f-95d0-f1739b9bbe16", + "payload": { + "number": "9177226912" + } + }, + { + "phone_id": "8d7216f5-c1e5-465e-9150-8cd80788391d", + "location_id": "dd261c20-bc87-4908-b294-103ba32ed3ce", + "payload": { + "number": "7183617030" + } + }, + { + "phone_id": "8d92bb23-01f2-45d0-beb2-0d751cd698d7", + "location_id": "e7e345f0-c4b1-4d08-8a2e-cc726cb77c0c", + "payload": { + "number": "2123645340" + } + }, + { + "phone_id": "8d9fac9c-7d60-48ee-8b03-77a6ce7829ff", + "location_id": "16ded0e6-e15f-4d7b-b2dd-811046f08608", + "payload": { + "number": "2127885580" + } + }, + { + "phone_id": "8dbe6535-47c4-41c9-ba08-ae6c524c2e2f", + "location_id": "89156c9f-c37b-4c85-8a48-ee2d4c5fff4e", + "payload": { + "number": "7184224200" + } + }, + { + "phone_id": "8dea8331-98f8-41af-9962-d3ed2b020fb8", + "location_id": "8a5ebb9c-6944-4a2c-b92e-bb4fd7de17a2", + "payload": { + "number": "7189814211" + } + }, + { + "phone_id": "8e3adbb2-96bc-415b-a4aa-a2d5dfbf317c", + "location_id": "25b0a10e-fe3f-4bee-9aa4-ce8af0eca8b7", + "payload": { + "number": "7182650352" + } + }, + { + "phone_id": "8e4e3e1f-9193-40a0-93aa-89b655fd6817", + "location_id": "c4ff7ea3-93d3-4d45-b593-b8cd60c67d3f", + "payload": { + "number": "2128035700" + } + }, + { + "phone_id": "8e5f4131-b990-4828-9727-612509530996", + "location_id": "29bd0c7a-89e0-4724-9578-4f7e389852b7", + "payload": { + "number": "9179413849" + } + }, + { + "phone_id": "8ef9e7f2-5b0c-41a4-ad2b-73779043b1bf", + "location_id": "54ea83e9-b461-485a-9bfb-c9c7a80382b1", + "payload": { + "number": "6466657022" + } + }, + { + "phone_id": "8f2354b0-890a-4b24-9267-6b2a4cb786ad", + "location_id": "2f893130-cad8-4c16-a907-8eb6df358bb6", + "payload": { + "number": "7184853400" + } + }, + { + "phone_id": "8f4dd4b9-0022-4478-b0a8-8a7a31e54421", + "location_id": "f675daf9-8770-42e1-a76b-4d1239c5f832", + "payload": { + "number": "7182980129" + } + }, + { + "phone_id": "8f5f28e3-fd07-41d0-9d85-078ae35158d7", + "location_id": "bc8ff479-9c1f-4d6d-98a5-ba457ff07240", + "payload": { + "number": "7184091619" + } + }, + { + "phone_id": "8f6e4d18-c86d-4478-adc7-895382476670", + "location_id": "5f6b64eb-9efe-41dc-ad92-07c1804eab73", + "payload": { + "number": "7182355780" + } + }, + { + "phone_id": "8fa1c804-02f2-413b-8832-3c955e484b12", + "location_id": "786a8483-1911-40a5-a2fa-558b987f6905", + "payload": { + "number": "7188586782" + } + }, + { + "phone_id": "8fc3c866-3036-4d1d-a9db-9efb0654d9b5", + "location_id": "318ccaf2-b9c4-44b9-bc02-5c3de46631a9", + "payload": { + "number": "8448151508" + } + }, + { + "phone_id": "8ffd60b6-9bdd-458a-b66b-b93bdc470d26", + "location_id": "5f1b22d2-f754-48d4-b705-a3427a788db5", + "payload": { + "number": "2129611000" + } + }, + { + "phone_id": "90584f62-ac50-4ca7-9bcb-b52edf619059", + "location_id": "a554b78e-aed0-4f58-9955-11c7e9770250", + "payload": { + "number": "7183588288" + } + }, + { + "phone_id": "906b0f67-fd2a-4fa3-8b22-9267c9083e07", + "location_id": "cb873ec2-d3d3-4acf-b2b5-a59a389a0681", + "payload": { + "number": "2126272100" + } + }, + { + "phone_id": "906b98fe-0ef8-484c-9806-f385d66ad9be", + "location_id": "e09fd1e4-93c1-4160-98a1-8aefef32b5b6", + "payload": { + "number": "2123496381" + } + }, + { + "phone_id": "909fedcf-b943-4436-9117-e34f1a4f40c9", + "location_id": "c4bc4ffc-472d-48e8-a1b0-0cebcd327d88", + "payload": { + "number": "7189332539" + } + }, + { + "phone_id": "90cbb507-70ee-4fc3-8376-9867e2f2f402", + "location_id": "f2b78ee8-468a-494f-8198-4fb2fe534cf7", + "payload": { + "number": "6463016842" + } + }, + { + "phone_id": "910ce94a-62b0-443a-830d-ff8a07ee7283", + "location_id": "6db74553-537c-4171-af91-4131965c2037", + "payload": { + "number": "7187392100" + } + }, + { + "phone_id": "9134aab9-22e1-4c0b-8b77-5588f7b2c01c", + "location_id": "8b1c5992-89da-42a3-b5cc-101d4adfbf6f", + "payload": { + "number": "3473967959" + } + }, + { + "phone_id": "91454a69-b20f-43e9-a69c-4a9bb730a258", + "location_id": "3e49f89a-b438-4ef0-ba54-d29c5e127180", + "payload": { + "number": "3473293929" + } + }, + { + "phone_id": "91771e1f-4c1b-419a-a1ab-3c4fef70edc5", + "location_id": "2e4f0dae-987a-4a16-ab4d-ae161927ac57", + "payload": { + "number": "7182654200" + } + }, + { + "phone_id": "91971ab6-19d6-45b8-9888-86d891182d58", + "location_id": "8e91ac41-6a7c-4dfa-af1e-ff03b1082b15", + "payload": { + "number": "9173790705" + } + }, + { + "phone_id": "92210b97-6583-4a1f-8345-969b01ab111f", + "location_id": "5e1d5785-0aa5-4ccf-bd49-ef1e7574cce2", + "payload": { + "number": "7187972109" + } + }, + { + "phone_id": "922ece42-b72e-4df7-8374-bb13afdef367", + "location_id": "68484bff-b8ad-436d-a9ff-a38ead2ed8cb", + "payload": { + "number": "7184562000" + } + }, + { + "phone_id": "923f3945-4de9-4092-9fef-ff2d422fb9d1", + "location_id": "45c04f29-8e29-41cd-a7b1-1b0071b7327b", + "payload": { + "number": "7183612817" + } + }, + { + "phone_id": "92553263-f978-486c-a043-36fb045f22e1", + "location_id": "a2c9e50d-6b5b-4d68-baf7-eb93472ee725", + "payload": { + "number": "2123081959" + } + }, + { + "phone_id": "92a5e7eb-d101-444f-b77b-838935599b6c", + "location_id": "b4ff3925-ac14-41e4-b0d7-6c71be113ef0", + "payload": { + "number": "3477369046" + } + }, + { + "phone_id": "92f81133-32c7-4c45-ba80-198de555d2cb", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "number": "3475055130" + } + }, + { + "phone_id": "92fd5528-cdeb-4a2e-9487-949fa7deeb29", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "7182962871" + } + }, + { + "phone_id": "93be1f31-af2b-4175-8865-94d4ec25749c", + "location_id": "64d5c437-be9c-45b2-835c-5cbad9fd6f16", + "payload": { + "number": "7182604600" + } + }, + { + "phone_id": "93d8f4dc-9f9c-483d-9435-212662fb11f9", + "location_id": "f4e16917-807a-40fd-bf6e-9e2d9878febb", + "payload": { + "number": "7184422145" + } + }, + { + "phone_id": "940f82e8-244a-4d4e-81d4-c45c419dda6f", + "location_id": "3b9a0d70-d047-4b1a-b6cc-c854d0246c04", + "payload": { + "number": "6466614585" + } + }, + { + "phone_id": "94140166-89ec-48d7-83ba-dc7b92131db0", + "location_id": "677ecc28-8773-4b26-bd4b-4b701518d43a", + "payload": { + "number": "7183982050" + } + }, + { + "phone_id": "941e2498-e1c3-4359-b23e-b7cb6541bc4b", + "location_id": "9dbed080-e2d7-4a87-b23d-86aa5e08da62", + "payload": { + "number": "7182952550" + } + }, + { + "phone_id": "943901d0-edbf-44fd-bc09-b7590f7fe758", + "location_id": "0a215160-a8b4-4e61-968c-c9b492539b79", + "payload": { + "number": "3476981618" + } + }, + { + "phone_id": "948afc55-61a3-4eed-ac16-e13b4f74b5e3", + "location_id": "421d2792-3c6a-4759-8ac4-4190e810ddc5", + "payload": { + "number": "8662742429" + } + }, + { + "phone_id": "94babd60-d90c-4932-9747-2f818b28ba8d", + "location_id": "fa2041e3-2b4c-4a1a-8d8d-5d00387f45e0", + "payload": { + "number": "2126041730" + } + }, + { + "phone_id": "94f34b42-ea6a-4fb3-b1fb-2f9044244189", + "location_id": "e8f993fc-17c9-4ed5-bd61-2fed193fa742", + "payload": { + "number": "7185912434" + } + }, + { + "phone_id": "94f8930d-2f9e-4f2f-a43e-a1ffa38b1990", + "location_id": "fb34dcd5-0cae-4482-9d59-5b4e16799ada", + "payload": { + "number": "7186572544" + } + }, + { + "phone_id": "950d280e-1f61-40d7-9204-d55cf3b963f1", + "location_id": "fe8c90f1-1d9c-4f64-9274-b5384b8d27d1", + "payload": { + "number": "3473967959" + } + }, + { + "phone_id": "954291cb-9d54-40f1-90dc-63fa6d15f6d8", + "location_id": "28d92749-853d-4d33-886e-875f0fcdff9c", + "payload": { + "number": "2124202079" + } + }, + { + "phone_id": "95875d16-9fba-4774-a4b8-30ac214cb579", + "location_id": "31dc0ce1-6a9b-401c-97f3-f8fcdddbe37e", + "payload": { + "number": "7183764036" + } + }, + { + "phone_id": "958a1da5-00be-4ad4-ac29-248ad1aaf48d", + "location_id": "51f67940-354a-4f25-b23f-e4c0b59a7d04", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "95b948ad-01b1-417e-b3fd-12e68a8051da", + "location_id": "cb680c09-9b42-43c2-aa5f-c2b8a8cf725b", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "95cff49d-419e-489d-aea0-abf2588a6869", + "location_id": "0e096ee6-4deb-4f3a-9955-ab9af92f8703", + "payload": { + "number": "7183534553" + } + }, + { + "phone_id": "95ec8113-a99d-42b9-b113-26f6c09a0e8f", + "location_id": "c4c84c68-0a19-4b13-a1ba-4ce4d64955f9", + "payload": { + "number": "7186531537" + } + }, + { + "phone_id": "95efff22-282a-4e9f-95b1-2327260c02b3", + "location_id": "09875402-ca2e-4d81-9d0c-fa8ea6a546b0", + "payload": { + "number": "2122065425" + } + }, + { + "phone_id": "95f13c97-0c5a-419f-a674-bc4669f7825e", + "location_id": "13dfd64b-48db-4224-88ec-ac49636d0187", + "payload": { + "number": "2125634500" + } + }, + { + "phone_id": "9621f0fe-0414-4e0d-89a0-d35009892aed", + "location_id": "451104f1-1fe3-4602-b3bb-74bd87e19e88", + "payload": { + "number": "7185630757" + } + }, + { + "phone_id": "9637c89d-546a-45ed-a579-4270f2d04346", + "location_id": "5bae4b6c-dabf-41b3-9ff8-2fd851837285", + "payload": { + "number": "2127404335" + } + }, + { + "phone_id": "963dfcf4-991d-4d90-bb8e-db0d9518435f", + "location_id": "2d36a0a0-cdc9-44b6-89e8-eb5ddc6b2068", + "payload": { + "number": "2129326500" + } + }, + { + "phone_id": "96414a7d-2142-432e-8ca9-a4852e5de603", + "location_id": "f52d6067-9bdb-4b72-be3a-b7358b799424", + "payload": { + "number": "7187226700" + } + }, + { + "phone_id": "96642d9f-8e92-43e9-a57d-2bf4c22c2e54", + "location_id": "f62dacfb-99b5-44b8-b2c9-4489e441d627", + "payload": { + "number": "2016878185" + } + }, + { + "phone_id": "9672b9b7-d0d8-42d0-9cc5-5a339d639fff", + "location_id": "93091124-350e-4a2f-9b77-e2e49fca12b1", + "payload": { + "number": "3475848601" + } + }, + { + "phone_id": "967cf678-33cc-4707-9ddb-690d3bd9da1d", + "location_id": "eabe34af-33e4-44fb-94f2-7363b7050bc1", + "payload": { + "number": "2128626401" + } + }, + { + "phone_id": "969cb662-8f48-4d56-827e-e416e8331301", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "number": "3475055120" + } + }, + { + "phone_id": "96aa1480-58d9-4365-9837-227a2bf62c2f", + "location_id": "56f36278-d498-41d4-819d-65cc6cb45155", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "96b7431f-7dd7-4bd8-b38a-55b29c8b9de9", + "location_id": "f8d52735-546b-41db-acd4-cc7d14e157fe", + "payload": { + "number": "7187891212" + } + }, + { + "phone_id": "96dc820d-1060-492d-9642-f02e45ab3fe1", + "location_id": "4d70929c-e4d1-44be-9a03-a1816c73d387", + "payload": { + "number": "2126288568" + } + }, + { + "phone_id": "96eadbb4-839b-49e2-a247-ec3af9c20a5e", + "location_id": "cb6207e5-5911-4fce-b8d5-e8dd8e465ad6", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "9749d4b7-fc20-4f22-8396-d601d9ca13df", + "location_id": "b405cd17-3bbd-4b6d-8a67-eb252e120167", + "payload": { + "number": "7185835150" + } + }, + { + "phone_id": "9757b609-f1e2-42fc-a8ac-b7819afcff8f", + "location_id": "bcbda6f2-2da1-49c4-8c13-eb0d19820863", + "payload": { + "number": "7189458640" + } + }, + { + "phone_id": "97806872-34e2-4440-98fc-b138d8d14a2f", + "location_id": "6e0cfd93-ca9e-47cb-bf92-0bf5f8969210", + "payload": { + "number": "7186886375" + } + }, + { + "phone_id": "9780b6c5-9307-4f95-9bbf-31dd7b58a1a0", + "location_id": "b63a9239-12e8-4cb7-b58c-f3a1cd56ce3f", + "payload": { + "number": "7182305100" + } + }, + { + "phone_id": "9792c5b5-8bee-4905-8fb1-cb7076dfbea4", + "location_id": "a6640482-5d4d-425b-88d4-c6da1a5d2b37", + "payload": { + "number": "7187420082" + } + }, + { + "phone_id": "979a3b7f-0f63-4008-aea2-c7919464ce4e", + "location_id": "19bd46f0-42ef-4730-bc8e-8775eba819a3", + "payload": { + "number": "2125298197" + } + }, + { + "phone_id": "97ac0a6b-44c6-4f40-8df2-4975bae3a021", + "location_id": "7e31fccb-8435-44e5-b391-e480fc26cf0c", + "payload": { + "number": "7187886100" + } + }, + { + "phone_id": "97c146a8-52d0-4fd1-865d-997087b34a85", + "location_id": "32e551e3-5f4b-4d2a-bbce-72de2ac663df", + "payload": { + "number": "2124204220" + } + }, + { + "phone_id": "97d2ada1-118c-429b-acd2-666829b95ce8", + "location_id": "5b8ce3f9-85b0-4f81-a395-9f4182ed01b1", + "payload": { + "number": "2127577013" + } + }, + { + "phone_id": "984ded5b-6324-422a-8225-c3be8716b646", + "location_id": "a42af35e-7010-4680-a303-aafb46e25901", + "payload": { + "number": "7185428918" + } + }, + { + "phone_id": "98911889-65f5-47f0-8fec-9fea2afdf85b", + "location_id": "897ce6b9-3c2d-49f4-8043-3ac0dbc2d215", + "payload": { + "number": "7184768449" + } + }, + { + "phone_id": "98985f5c-9806-4250-8215-18f716d3ca56", + "location_id": "1fbff053-0c39-40e0-9f8e-af5c6d6a44b2", + "payload": { + "number": "7182264990" + } + }, + { + "phone_id": "98d2f779-3a72-4242-a8d7-99c93bdad26c", + "location_id": "863ed153-5739-499f-b13e-be1e382f6405", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "98d45490-609d-4fbb-901c-ee382eaf3782", + "location_id": "6455680b-11b2-4df1-bfa1-d1d752a4ce24", + "payload": { + "number": "7186702000" + } + }, + { + "phone_id": "98fd437a-14d9-479e-b323-ce4943a20b3f", + "location_id": "93dc7a44-3f9a-4ce1-83f2-995b3f93ddea", + "payload": { + "number": "2127141141" + } + }, + { + "phone_id": "9920788f-9c85-4292-9927-cd905262fa93", + "location_id": "8a2c6050-b29a-474f-84ac-6aa5b1ce9e9b", + "payload": { + "number": "7187840877" + } + }, + { + "phone_id": "99533f3e-c741-48ef-9684-71a54c753eab", + "location_id": "e4acf96e-162a-4160-9a11-f7c74c47db9d", + "payload": { + "number": "3473967959" + } + }, + { + "phone_id": "9962ece3-1810-4b07-9286-336afe368a49", + "location_id": "4f11e4d6-b0b6-4a79-9a95-e7961c3bd8a6", + "payload": { + "number": "6466894363" + } + }, + { + "phone_id": "99fbd91f-f01e-4777-9bc8-6f7e27e5906e", + "location_id": "81ed200a-067f-4fe6-8c33-54b16ec03be1", + "payload": { + "number": "7182247888" + } + }, + { + "phone_id": "9a1db0fb-f930-4047-8fb5-1f0693075d8f", + "location_id": "75e5736e-0d5a-4230-b7cc-bc4159ad7e0e", + "payload": { + "number": "2122543100" + } + }, + { + "phone_id": "9a32820d-b029-42ee-8012-edbe1abcfac6", + "location_id": "f3553062-3058-4b97-8a35-759165134941", + "payload": { + "number": "2126773400" + } + }, + { + "phone_id": "9a35541a-bfa9-4c8e-aaae-0753f6037ee5", + "location_id": "dcce38d4-1500-4eea-98ee-5403deb98739", + "payload": { + "number": "7185719365" + } + }, + { + "phone_id": "9aad5aed-d54f-45b7-8743-76ad99df8462", + "location_id": "87b29391-2abe-41e8-a29b-f3112e451bc7", + "payload": { + "number": "9295919259" + } + }, + { + "phone_id": "9adff401-f60a-40f5-bd2f-9f024acac583", + "location_id": "4bcf6f68-25d8-45fa-8352-0d78b3756422", + "payload": { + "number": "2126661920" + } + }, + { + "phone_id": "9b0d4dfc-20e2-4293-a38f-e7f89f7bcab3", + "location_id": "fe4685d7-8cac-4cfa-9bfb-4cbdf97f1615", + "payload": { + "number": "7182685657" + } + }, + { + "phone_id": "9ba3887a-39ca-45ce-a60c-ef676ede5c42", + "location_id": "b9cd64b9-7f85-4317-8d4f-8c541c7d7b9a", + "payload": { + "number": "7182920019" + } + }, + { + "phone_id": "9bcdecc4-1f7d-4872-9f62-053b2aa66f2b", + "location_id": "d953b644-53a6-46d3-b7fb-ff41632c3291", + "payload": { + "number": "7182770386" + } + }, + { + "phone_id": "9be68272-ce89-4b00-9f2a-90589a7aea91", + "location_id": "e54b958b-053f-4d5e-853c-b20c15ab1517", + "payload": { + "number": "7182895179" + } + }, + { + "phone_id": "9be8e779-f80c-40cd-9bcf-19d886c6da93", + "location_id": "38e98511-9b19-4793-8173-1573be319268", + "payload": { + "number": "7187164400" + } + }, + { + "phone_id": "9bed27ef-0187-42be-898f-566190bb7a91", + "location_id": "c7d96eb5-1bc4-4e74-bb71-5bf1f257b307", + "payload": { + "number": "7188260685" + } + }, + { + "phone_id": "9bf59ba7-4238-4fbb-8e65-a504bfefb8b4", + "location_id": "6541f292-94c0-46ba-a5ee-275224475941", + "payload": { + "number": "2126910950" + } + }, + { + "phone_id": "9c03d08c-9866-4794-bca9-25f4e60587ab", + "location_id": "dd48591b-ae2d-4abc-a985-f5a7a0697994", + "payload": { + "number": "9174920990" + } + }, + { + "phone_id": "9c689dfa-a018-4840-ab48-cc5c7f86dc41", + "location_id": "c52f6199-bad5-4a6e-abf1-62147349ddb4", + "payload": { + "number": "7185208000" + } + }, + { + "phone_id": "9c89606e-3dfc-462d-8dde-1f1f5edc6576", + "location_id": "95c2741c-4da0-4fda-bbac-c041bbecf5b9", + "payload": { + "number": "8444001975" + } + }, + { + "phone_id": "9ca5f5b2-d74f-4142-9970-0c6ac03ac259", + "location_id": "e29cbd00-5b10-4c36-af94-48beaa377a48", + "payload": { + "number": "9178617282" + } + }, + { + "phone_id": "9d028425-5b7b-4ae8-8f4b-601b8c13beee", + "location_id": "9322852b-da74-4f1f-8e86-e0c7a2a8107b", + "payload": { + "number": "5166552661" + } + }, + { + "phone_id": "9d1784ef-69fa-4543-a306-d281f43972cd", + "location_id": "b74727ce-8cb6-4162-895b-8506fc0eb520", + "payload": { + "number": "7188292116" + } + }, + { + "phone_id": "9d1ac68c-e1a9-4a87-8cef-bc7ab923bbbc", + "location_id": "8c001f45-47fd-4d3e-964f-fdce8111cd5a", + "payload": { + "number": "7189932789" + } + }, + { + "phone_id": "9d254943-4f27-4376-9d86-662f8f582886", + "location_id": "6e0cfd93-ca9e-47cb-bf92-0bf5f8969210", + "payload": { + "number": "3475255647" + } + }, + { + "phone_id": "9d2f9971-5d8f-483a-bd67-f7e2b57c42d1", + "location_id": "1eda09ee-cb69-4625-98e5-39ee3c44d3e2", + "payload": { + "number": "7187072600" + } + }, + { + "phone_id": "9dafea9e-dc57-45de-9e53-425c4bdef320", + "location_id": "51373720-c921-4c8d-89cd-bbeee7750992", + "payload": { + "number": "2129268000" + } + }, + { + "phone_id": "9dca72f8-1ee7-40a8-8133-a914c54ecf19", + "location_id": "51851d4d-dd1f-4c4a-b549-4e40eca3ba4f", + "payload": { + "number": "2129796238" + } + }, + { + "phone_id": "9dd4b1b6-9d42-4769-b5e5-121676422e56", + "location_id": "8c29ca39-9f59-412a-ba1d-dd5dc601997c", + "payload": { + "number": "7182924455" + } + }, + { + "phone_id": "9ddf9431-e113-42d4-b520-47269cad1053", + "location_id": "c1e3b264-65e6-4382-8316-28d3b64f3d80", + "payload": { + "number": "7185658500" + } + }, + { + "phone_id": "9dec3d7f-d2ee-489b-8e00-c2b14a8c9c93", + "location_id": "63aa4812-9df0-43af-98f0-216499fcb421", + "payload": { + "number": "3324007488" + } + }, + { + "phone_id": "9dff4ae3-9e62-4516-a81c-dbbf0cb76a8c", + "location_id": "21375620-596c-4b2d-8d5c-da6ea7014208", + "payload": { + "number": "2125345715" + } + }, + { + "phone_id": "9ea63f98-09b7-4d5e-a4db-68240eddadd8", + "location_id": "66ec92eb-37bc-4be5-91b5-f4bc1288db24", + "payload": { + "number": "7182540700" + } + }, + { + "phone_id": "9eb14602-9407-49ea-8b85-10af1168a524", + "location_id": "cabc9e2c-5149-473f-be6a-b425afaa255f", + "payload": { + "number": "2122288210" + } + }, + { + "phone_id": "9ee1af8a-c392-4ee1-8d53-7a262f334434", + "location_id": "83992ac7-4582-4156-9598-e3392fe4fd97", + "payload": { + "number": "7182820108" + } + }, + { + "phone_id": "9ee7fd7e-a7b2-4860-ad07-4f001e3eff41", + "location_id": "5b71d7e5-4c54-4557-ad11-ea546288b7f9", + "payload": { + "number": "6469511138" + } + }, + { + "phone_id": "9eef1d24-cbad-48b7-8563-5be59ce25ea6", + "location_id": "ed22bccf-40c1-4864-9045-77de64e0cf5d", + "payload": { + "number": "2122467277" + } + }, + { + "phone_id": "9efc366c-774d-4fc1-ad9a-eecf4aae2b18", + "location_id": "f6f5e757-5ae8-4d44-bdae-0e485cef8f42", + "payload": { + "number": "2123377469" + } + }, + { + "phone_id": "9f08c71c-35a5-4e5c-ac6c-166fe76912f8", + "location_id": "052c0b24-b0ca-4260-b80f-f0b7313182b2", + "payload": { + "number": "7187734116" + } + }, + { + "phone_id": "9f12a175-5ac5-4a16-ab1b-83aadd73d15a", + "location_id": "2a55fb1d-6960-495c-8bde-caec854d4108", + "payload": { + "number": "7189726600" + } + }, + { + "phone_id": "9f5a74f9-0ba6-4422-85b5-eb5c5a2b4d89", + "location_id": "fb336a1c-56b0-459c-8d78-39335fecf7d9", + "payload": { + "number": "8887133495" + } + }, + { + "phone_id": "9f656e33-9547-42f1-bd4e-afb4294db9bb", + "location_id": "0c82a663-eb8d-4df6-bb00-7ef0bdd86d70", + "payload": { + "number": "7186185559" + } + }, + { + "phone_id": "9fb9e665-e817-4f59-bbaf-3140109fce2f", + "location_id": "d62ca641-07cf-406e-82f4-b7801d21da8a", + "payload": { + "number": "2124233000" + } + }, + { + "phone_id": "9fbf6238-3243-446a-903b-d4ade0976368", + "location_id": "724c0dc9-f214-4cad-b0b6-8e8852bf0c8c", + "payload": { + "number": "7184389500" + } + }, + { + "phone_id": "9fc18010-4013-4cca-8acd-6818907367c2", + "location_id": "b0f6a2b7-4590-4dbf-aebf-de0b11c94207", + "payload": { + "number": "7185386854" + } + }, + { + "phone_id": "a0173b99-ba47-431c-844e-37945ed430df", + "location_id": "7eb85bc0-aa9c-4365-b340-5efd967606ff", + "payload": { + "number": "2124234500" + } + }, + { + "phone_id": "a020b991-b504-4f4a-a953-a335aa34f68d", + "location_id": "740de556-1e84-4a8c-9b14-6e2ecd07e972", + "payload": { + "number": "7187847447" + } + }, + { + "phone_id": "a039aaec-4796-45ff-9620-204e17f814e2", + "location_id": "5a684cc5-7624-4f5c-b0e1-1178b880728f", + "payload": { + "number": "7188229140" + } + }, + { + "phone_id": "a04b3bae-27d8-4a35-917d-cb94e87b0e1d", + "location_id": "30f61959-fecc-450f-b59f-126a345aa8ea", + "payload": { + "number": "3474250676" + } + }, + { + "phone_id": "a09ddec0-725d-4743-a495-b4b9ce7fbe10", + "location_id": "4d70929c-e4d1-44be-9a03-a1816c73d387", + "payload": { + "number": "2125355530" + } + }, + { + "phone_id": "a0d031d1-932d-47d2-8a14-6db3411b0b9e", + "location_id": "17b6f778-62ae-4e03-b081-2965a23fe2f0", + "payload": { + "number": "9174937054" + } + }, + { + "phone_id": "a1145bbd-e0da-400c-9912-1325648ed43f", + "location_id": "62342032-3812-4e27-a36b-2054dbb52354", + "payload": { + "number": "3476894771" + } + }, + { + "phone_id": "a16146b0-ce49-4fd5-9d22-10516adf3155", + "location_id": "bb7da89e-a0f2-48d5-b13d-caf163a810d3", + "payload": { + "number": "7186092795" + } + }, + { + "phone_id": "a164f02c-775c-4bc5-9219-ac97ed679e07", + "location_id": "1ebd1a5d-c3a1-404d-aaf2-830552e4deea", + "payload": { + "number": "9178163553" + } + }, + { + "phone_id": "a191cb7b-c040-4ab4-a6a4-7a738217aa21", + "location_id": "8ea0f5f0-7097-42c2-93e8-fde1a674eb33", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "a1c0e784-60e9-44d1-ab6e-dd7211b1ea96", + "location_id": "ca9798df-f658-4188-aada-751931dafa72", + "payload": { + "number": "7182062000" + } + }, + { + "phone_id": "a1e4e516-74d8-4955-9ff3-51e565a5d671", + "location_id": "69a8ad2f-603f-4b62-aa39-1b324a5fe0ae", + "payload": { + "number": "7185991940" + } + }, + { + "phone_id": "a2258f90-77c6-4c35-a4ae-a8b1cf5201b7", + "location_id": "2cca7a42-9590-4259-ae48-0f4778e79001", + "payload": { + "number": "6462247093" + } + }, + { + "phone_id": "a2293381-f60e-4c31-9dae-76a0e6b0a082", + "location_id": "c3bfe14c-59c5-4800-954f-e250cfa41811", + "payload": { + "number": "2126742300" + } + }, + { + "phone_id": "a24129a1-0d6c-456b-88a8-f528823f9798", + "location_id": "27de5a44-6c23-40ca-9a1a-9e834899be7c", + "payload": { + "number": "7185763136" + } + }, + { + "phone_id": "a286f60a-8f1f-4c67-88a8-36b840f8ca39", + "location_id": "14e0160f-d354-408e-84cd-1093e7d5e949", + "payload": { + "number": "2126741740" + } + }, + { + "phone_id": "a327b8e9-e5c4-4700-8413-43acc705fc95", + "location_id": "d4516998-cca4-4780-b215-23c9ec3ae1c2", + "payload": { + "number": "7183664300" + } + }, + { + "phone_id": "a3812d7c-0e00-4395-aae1-3157a421decd", + "location_id": "d136ffc7-1d56-4e95-bc3e-65c66f5dcec3", + "payload": { + "number": "2126952220" + } + }, + { + "phone_id": "a3860f59-88d3-4e30-a357-36ec90fc0f97", + "location_id": "662f53b2-71ea-47b4-9078-0fa84dbd4c41", + "payload": { + "number": "2128514516" + } + }, + { + "phone_id": "a396052c-aa38-46b3-8af6-79a1b0224d8d", + "location_id": "1c8b8444-35e5-4fc6-b4b0-13b6eb22ea01", + "payload": { + "number": "6465315411" + } + }, + { + "phone_id": "a3a7897a-2893-4132-97b3-7060d2354540", + "location_id": "449d4ead-7f2d-499c-a43b-f1e974c4fa53", + "payload": { + "number": "6465156898" + } + }, + { + "phone_id": "a3e62f7f-ae52-46ae-8606-c88b0bd5d169", + "location_id": "6b1c483b-3303-4efb-8837-32b8442c07ec", + "payload": { + "number": "7185201513" + } + }, + { + "phone_id": "a400189c-28e3-4b4e-ba2c-f458438684d2", + "location_id": "9be2bf9e-0588-4d81-8832-bf4c3abe1404", + "payload": { + "number": "7184334724" + } + }, + { + "phone_id": "a437f46c-e3f9-4edd-8e41-c80da48c9499", + "location_id": "5426de21-4e1b-4e6e-bcf1-6bf334de56b5", + "payload": { + "number": "2129240167" + } + }, + { + "phone_id": "a43ea359-4556-408f-a4e0-2c34f08ffd9a", + "location_id": "5ad5a7e8-ea0b-47db-b72c-75ea4895a01e", + "payload": { + "number": "2129717600" + } + }, + { + "phone_id": "a43f14e0-f228-4844-821c-5cb25cc87fa1", + "location_id": "9484f576-1d00-47d9-844c-2cfb3ec9624a", + "payload": { + "number": "2122888920" + } + }, + { + "phone_id": "a4471a78-6935-4c49-9439-175e001d652c", + "location_id": "8abe8605-ea5b-4145-ae05-c857c0f6ec26", + "payload": { + "number": "7187200079" + } + }, + { + "phone_id": "a49f7de9-540a-46f9-bbc6-d05255c9b17e", + "location_id": "bcbda6f2-2da1-49c4-8c13-eb0d19820863", + "payload": { + "number": "7183271702" + } + }, + { + "phone_id": "a4c8e502-9615-4886-bc00-a8126740c615", + "location_id": "9bbe584f-ac7a-4bda-b1c9-086a5f85607e", + "payload": { + "number": "2128549067" + } + }, + { + "phone_id": "a52893b7-2bbc-42ac-bcdd-f0b355bc0667", + "location_id": "37d368fb-6bb3-4303-9af6-0de6ebad29ea", + "payload": { + "number": "2125829100" + } + }, + { + "phone_id": "a5330422-fff2-4945-9c43-00fbc3dc38d3", + "location_id": "579b7fce-cb99-4aba-bc82-fcfd61cb9891", + "payload": { + "number": "9083552060" + } + }, + { + "phone_id": "a5a78694-bc95-48fe-baf0-28d272703119", + "location_id": "aae16050-24f4-448c-b5e2-f3eb8181f9cc", + "payload": { + "number": "2125668120" + } + }, + { + "phone_id": "a5f3ed27-a7d0-4c47-9c7f-0694defa8d10", + "location_id": "228322bb-1d19-425e-8c87-95f7e8f62fe3", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "a630a7f0-e793-4d66-9377-433a7a78a525", + "location_id": "3df03477-402e-4fcf-8c30-c0d7201813cb", + "payload": { + "number": "9179664633" + } + }, + { + "phone_id": "a6697d13-b7bb-40e2-b2e0-eefba78b5a60", + "location_id": "6e924de6-cf63-408a-a6fe-0009dff3bfd5", + "payload": { + "number": "7186572021" + } + }, + { + "phone_id": "a6d3bff9-3228-47ca-952c-68adc8fa277c", + "location_id": "9b96632f-91da-40eb-9140-63ecd504d339", + "payload": { + "number": "2124263000" + } + }, + { + "phone_id": "a6e3684d-a4d1-405e-90be-f26ecb40caaa", + "location_id": "1fa57597-701c-4e48-b47f-c14590fd6b8b", + "payload": { + "number": "7182998473" + } + }, + { + "phone_id": "a6ecc91b-f2ac-4dec-8424-c5d4ef0923fa", + "location_id": "a83f6d26-2e8c-4cbb-8b13-5f8800e3116d", + "payload": { + "number": "9295512130" + } + }, + { + "phone_id": "a6ef20f3-31b7-477e-88b0-633b12b782e1", + "location_id": "1759c6ba-027b-4470-8ce6-9affcc76480d", + "payload": { + "number": "2125234728" + } + }, + { + "phone_id": "a6fb6158-a1fa-402e-b71f-6fd22ba1a6bb", + "location_id": "dbf920e2-da42-4cf2-9143-e832552c118d", + "payload": { + "number": "6466972276" + } + }, + { + "phone_id": "a7057d3d-6705-4b14-96a9-0d2335bd023c", + "location_id": "daa99106-a612-485d-86cc-621e1dad64d4", + "payload": { + "number": "7186343461" + } + }, + { + "phone_id": "a74b2a2d-e79f-4858-b2ea-c7b3d3c89665", + "location_id": "ce6c19c8-d2dd-4fca-b481-5b7e0b91de06", + "payload": { + "number": "3475055121" + } + }, + { + "phone_id": "a75765d9-23a7-4690-9488-fdae82bc99c4", + "location_id": "60a5bc8f-18c9-410e-accc-e6eef585b79b", + "payload": { + "number": "2128255710" + } + }, + { + "phone_id": "a7b1a92c-a3ce-4c97-a44f-05705bb058f0", + "location_id": "fb34dcd5-0cae-4482-9d59-5b4e16799ada", + "payload": { + "number": "7185203004" + } + }, + { + "phone_id": "a7fa6f0c-9953-480c-9296-ff157d3cd60e", + "location_id": "0769a3ff-fbca-458f-a33c-89dc1af0ac0a", + "payload": { + "number": "7184488480" + } + }, + { + "phone_id": "a7fde851-95b5-4334-a197-25e20335f66e", + "location_id": "ccfa050f-be8a-48c7-a86f-cec37244e2ad", + "payload": { + "number": "7185476111" + } + }, + { + "phone_id": "a818db94-d826-437f-9ed6-1bee5a41656f", + "location_id": "ae81d077-2835-4f4f-ab65-21e9ac212f83", + "payload": { + "number": "2124712400" + } + }, + { + "phone_id": "a825f597-df0b-49f5-aa60-d486077277e4", + "location_id": "ae7b2c48-d644-4b99-8322-27adf6863e29", + "payload": { + "number": "3479264210" + } + }, + { + "phone_id": "a827d027-fadc-4681-b204-94696638f10d", + "location_id": "c5118a27-a6eb-4421-9800-6268722ae8a2", + "payload": { + "number": "3473998562" + } + }, + { + "phone_id": "a82a7911-0894-4e52-9656-ff2e7c6c452e", + "location_id": "0ed66f70-0fa7-4d8c-a559-49334dbf0ece", + "payload": { + "number": "7187823601" + } + }, + { + "phone_id": "a85fe0e0-6530-4b35-9c7a-be0c7f99688d", + "location_id": "9ecb5dcf-30c8-480a-9b58-e2dfab855499", + "payload": { + "number": "9172254509" + } + }, + { + "phone_id": "a87fe23c-20c3-4a62-9596-c3ab46bb2d3c", + "location_id": "62342032-3812-4e27-a36b-2054dbb52354", + "payload": { + "number": "2127600755" + } + }, + { + "phone_id": "a88985f6-a2f5-4da9-ba51-f9510817425d", + "location_id": "9f3bb245-24ee-4d69-96c9-c17c15bafe05", + "payload": { + "number": "8006214673" + } + }, + { + "phone_id": "a8adfdeb-b061-4f4e-b867-690b3b2d797a", + "location_id": "7c2cc058-8ad6-468a-944a-0fe635b676a1", + "payload": { + "number": "7186863700" + } + }, + { + "phone_id": "a8b9b44b-1c9a-4b48-b5bc-71b5dd3173ce", + "location_id": "2d36a0a0-cdc9-44b6-89e8-eb5ddc6b2068", + "payload": { + "number": "2128651300" + } + }, + { + "phone_id": "a8e5ec74-7811-420c-8dd8-a22b2729fa93", + "location_id": "c8dbf9dd-4246-49a4-ae70-86878d29bb74", + "payload": { + "number": "1718399014" + } + }, + { + "phone_id": "a908aa16-5fd1-494f-b8c0-64b11610d3d0", + "location_id": "8b309368-e263-4959-9326-02ce0b8f8481", + "payload": { + "number": "7184893954" + } + }, + { + "phone_id": "a92945bb-e59a-47d5-be19-ec1dd6887b40", + "location_id": "fc7226fc-e9db-4b9b-94b8-46daacb9d7c4", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "a93bddfa-37ca-4c79-b81e-291969f2d5ad", + "location_id": "dfc1a074-92ee-4393-bb7e-fad66ffb5907", + "payload": { + "number": "6469079858" + } + }, + { + "phone_id": "a9780cdf-a1f0-4913-b592-41f954303a3b", + "location_id": "5cecce99-ddfc-4f59-a1ee-b5bc0b33346e", + "payload": { + "number": "7189608807" + } + }, + { + "phone_id": "a983683a-4a4a-4465-8893-39d996a25fd8", + "location_id": "e75f1dc7-79d0-460f-967f-f2360679addc", + "payload": { + "number": "7186513484" + } + }, + { + "phone_id": "a997d24c-332c-4e2b-938f-824b4beeb66c", + "location_id": "5a8df7b6-8679-4a20-9f94-6e6de7593d84", + "payload": { + "number": "2126843264" + } + }, + { + "phone_id": "a99e450f-766c-4e2d-8985-c91f48d041c6", + "location_id": "2c12395c-ae45-40d5-94e3-4db35c7ce823", + "payload": { + "number": "7185036400" + } + }, + { + "phone_id": "a9afe0ad-9c35-4601-88b9-f71aab4f8cc0", + "location_id": "cb308a32-7a53-43b3-853c-a7df79b173d4", + "payload": { + "number": "7182703745" + } + }, + { + "phone_id": "a9e2ba8a-7485-4ab8-aaae-ec1bb18b95ef", + "location_id": "3302c1ef-382a-4c3c-9673-a3a3b74582f1", + "payload": { + "number": "2122548620" + } + }, + { + "phone_id": "a9f5f80d-6339-4b18-9453-46e86fb46dbc", + "location_id": "30793285-1986-4863-99bc-a504cb8723e6", + "payload": { + "number": "7184872300" + } + }, + { + "phone_id": "aa2ba157-e641-40bd-a9e8-b503f975d847", + "location_id": "59b75f96-40c6-49ec-bd45-6f1ad7808de9", + "payload": { + "number": "7183331834" + } + }, + { + "phone_id": "aa442c05-eec6-4561-9bb9-4b0607b28cc5", + "location_id": "dea3138c-6b76-480f-89e8-b6aafec39c27", + "payload": { + "number": "7183842314" + } + }, + { + "phone_id": "aa87d82b-d1ba-4df0-86a3-856eaae0a7b8", + "location_id": "43dc4f2e-cd77-4097-a80a-f40104ab5aca", + "payload": { + "number": "3322132630" + } + }, + { + "phone_id": "aa91447d-f172-4b9b-9ee2-67e0b948a543", + "location_id": "d842b54c-0576-4b7c-909a-252abd3fb537", + "payload": { + "number": "9292675354" + } + }, + { + "phone_id": "aada2d57-00c8-4a5d-9f22-37a96b624d61", + "location_id": "96d8e0fe-48fc-40e6-88e2-c7881291215c", + "payload": { + "number": "2124772541" + } + }, + { + "phone_id": "aaf41ffd-b351-4a3d-86de-cbe951280133", + "location_id": "e37b048e-85b1-4a37-b9d6-5c0fef5d37ad", + "payload": { + "number": "7187842240" + } + }, + { + "phone_id": "ab19af3e-a9be-4c08-a3f5-5cc79bb2286d", + "location_id": "6649f721-9570-477a-a38b-dadf9f243fed", + "payload": { + "number": "2129657000" + } + }, + { + "phone_id": "ab1c1ccf-b7ad-4e7e-bc0b-e6b1f0553ca6", + "location_id": "cb873ec2-d3d3-4acf-b2b5-a59a389a0681", + "payload": { + "number": "2126272100" + } + }, + { + "phone_id": "ab35754f-2746-4e46-b5f9-518a3aa15e7c", + "location_id": "3f1a4aed-9f14-4ea0-8676-d361622d8305", + "payload": { + "number": "6464490814" + } + }, + { + "phone_id": "ab5831b9-3347-43d8-9f2e-79a64a1c3168", + "location_id": "514ac759-e2da-419e-bb9f-f8ca4b80aa78", + "payload": { + "number": "7189610344" + } + }, + { + "phone_id": "ac2eec19-a0b5-47dd-9239-00fe5127d8ee", + "location_id": "23b62f1a-9745-4e22-9aba-196c303ae8ad", + "payload": { + "number": "7182739666" + } + }, + { + "phone_id": "ac554fda-1ad4-4fa5-8c4d-20a742d51521", + "location_id": "35f175c2-a5e5-41b4-9d09-b20595ea61cc", + "payload": { + "number": "7185336459" + } + }, + { + "phone_id": "ac5b0c05-305f-4087-bf8d-7b11bfb4802d", + "location_id": "d09289f3-bdbe-44d5-8e69-208ad31caac0", + "payload": { + "number": "2128383036" + } + }, + { + "phone_id": "ac89925b-8a7a-4d6c-a9dd-b37dcafe4c5f", + "location_id": "0eebc5d2-12d9-402b-b17b-3db9a40cd026", + "payload": { + "number": "2127805436" + } + }, + { + "phone_id": "ac9026ab-4b31-4c40-99cd-c97819385b77", + "location_id": "3dd77bf0-3637-4780-932b-ed5898ff714a", + "payload": { + "number": "7187733551" + } + }, + { + "phone_id": "aca23543-3afa-441b-a212-bd2e20d74ef5", + "location_id": "4ee6122f-983e-48f0-8d83-e3fb782311db", + "payload": { + "number": "7183279001" + } + }, + { + "phone_id": "acb56940-0680-4449-95e9-320c0265aaec", + "location_id": "d2598e8c-fadc-4d37-9592-5c0f16719344", + "payload": { + "number": "3474381020" + } + }, + { + "phone_id": "acb77943-d337-4e87-ae39-27af99708be1", + "location_id": "85f1f80e-0cc3-418a-8f8b-6d0cbd43d1c8", + "payload": { + "number": "7184380008" + } + }, + { + "phone_id": "acdd336d-f7d8-408d-9f5d-e8a5e95131ab", + "location_id": "eb8061de-7dfd-4788-90aa-62c4458e9dc3", + "payload": { + "number": "2018982350" + } + }, + { + "phone_id": "ad0ef5f7-bac0-46c6-99b2-7d727e4ea314", + "location_id": "cc39d150-e48d-47b2-a316-614847e9c8ad", + "payload": { + "number": "6469280123" + } + }, + { + "phone_id": "ad14e434-6982-459f-b92c-fa5c4611fa31", + "location_id": "e2627807-d5cb-48e0-931e-f495ac84b239", + "payload": { + "number": "7186587201" + } + }, + { + "phone_id": "ad2b8416-345b-4a21-85c2-d5c837cbed3f", + "location_id": "3436c38f-f0dd-433f-ae2a-bb22f06dbf14", + "payload": { + "number": "7186770797" + } + }, + { + "phone_id": "ad301ac6-c500-40d2-9470-916f89100121", + "location_id": "a0ceabdb-a43c-4fb1-8ced-b6338f115ad1", + "payload": { + "number": "9293998070" + } + }, + { + "phone_id": "ad366c88-47d3-4269-b35e-81d5d3abaa55", + "location_id": "2f636b94-4212-4558-8dbe-6e8dbe7946c4", + "payload": { + "number": "7188366600" + } + }, + { + "phone_id": "ada8c3da-7c9c-44a7-b7a0-3583b4356240", + "location_id": "19011b56-474b-4acf-983b-38c9c980dafd", + "payload": { + "number": "8664812547" + } + }, + { + "phone_id": "adaa1d73-60b7-4c61-8218-f9de9b152ae7", + "location_id": "1b6c6b58-ae94-40e1-9008-7023146762ea", + "payload": { + "number": "7182738414" + } + }, + { + "phone_id": "adbad861-c428-459b-8457-fa46e9c5f52d", + "location_id": "1a9a87b9-9564-4dcf-88cb-0513beff0b6b", + "payload": { + "number": "7182920100" + } + }, + { + "phone_id": "adce9cfa-ceda-41e5-b9b0-18095e13f69d", + "location_id": "9d96aac3-96bb-4260-a3ad-d62fb65f9ec9", + "payload": { + "number": "7184206466" + } + }, + { + "phone_id": "adedac84-12ed-4323-9251-a42e7e24fa66", + "location_id": "a1b17602-b473-4bbe-8e02-08c60f3acac8", + "payload": { + "number": "2012100200" + } + }, + { + "phone_id": "adf687a2-94dc-4b99-9487-c25f2b02d074", + "location_id": "031fc978-a2cb-423b-8f30-7df2cc9aac8d", + "payload": { + "number": "7187226001" + } + }, + { + "phone_id": "adf910b0-9512-4b98-9b2d-c3c4826c2232", + "location_id": "63d30cae-f899-45f9-9c5a-9ecf4aaa3bd8", + "payload": { + "number": "7183673691" + } + }, + { + "phone_id": "ae773826-953d-42de-aad0-a09ab621589e", + "location_id": "cc465f71-af06-4079-98dc-e05dc56e3be6", + "payload": { + "number": "2124639685" + } + }, + { + "phone_id": "ae8098e7-7568-44ab-9ed5-57513948a2c3", + "location_id": "900f5bb0-8b50-4fea-b168-9c509bdf286d", + "payload": { + "number": "2014139280" + } + }, + { + "phone_id": "ae8ba0f0-2dcf-451e-a7a4-37fd5e7f627c", + "location_id": "b3ca691f-7a3e-4cd1-be97-50aad0a5199d", + "payload": { + "number": "7186803530" + } + }, + { + "phone_id": "aebb9c08-c3f1-42d4-8797-c7888236e9fb", + "location_id": "b821b278-505b-4190-a0d3-66c84311e5a5", + "payload": { + "number": "7184434500" + } + }, + { + "phone_id": "aec5ecec-da37-43a5-9e87-f36f88f7995e", + "location_id": "89df0afd-f75a-483d-a308-394e554103dd", + "payload": { + "number": "6463934070" + } + }, + { + "phone_id": "aecf6c51-e602-4d61-b3d1-78400bd14589", + "location_id": "58cae570-536e-4fc5-a021-51ee273009be", + "payload": { + "number": "7182053036" + } + }, + { + "phone_id": "af431a54-9d80-4855-bd64-ff5106735744", + "location_id": "f240d86e-a6f9-498b-9fe4-a5eb8021d115", + "payload": { + "number": "2122222069" + } + }, + { + "phone_id": "af5eb78e-5111-4eb3-b0e0-f21be44c4657", + "location_id": "85fbde2c-22cc-42d6-9d35-fbb1f48a05ea", + "payload": { + "number": "7184058040" + } + }, + { + "phone_id": "af62c116-f2f4-4ae1-b68c-54ef48b97836", + "location_id": "839f8fbd-74ab-46c9-9c82-02dfbba08e05", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "afb7450a-ee91-445f-aadf-058e1872d00f", + "location_id": "c7d96eb5-1bc4-4e74-bb71-5bf1f257b307", + "payload": { + "number": "7184933031" + } + }, + { + "phone_id": "afc2a3b8-25ee-4929-a0bf-24d5919bfa8d", + "location_id": "7412c9dc-b461-476d-90c3-3141b15b3d59", + "payload": { + "number": "7182320055" + } + }, + { + "phone_id": "afdc830c-7f91-4592-b9dd-3a12989bf3a5", + "location_id": "7b891073-568f-48af-b6ba-1524d19e70d9", + "payload": { + "number": "2129282020" + } + }, + { + "phone_id": "afe08191-e65c-48b2-8c6c-02c9d7914ec4", + "location_id": "f21e633e-68e7-4ed2-a957-da986da50a85", + "payload": { + "number": "7184997701" + } + }, + { + "phone_id": "b017981f-d2a1-4ab5-a4f9-ff3b090111af", + "location_id": "ceececc1-d4fc-4f39-9668-e36bff5b1fcc", + "payload": { + "number": "7185387416" + } + }, + { + "phone_id": "b02d93d8-61e5-4831-8b48-0d4ddea7582e", + "location_id": "14d09c83-6dda-4336-bf6d-a704a7fb31d7", + "payload": { + "number": "7189653695" + } + }, + { + "phone_id": "b0323d5a-60da-4b4b-97f2-6c54222e6bcd", + "location_id": "76848b0c-c623-4cc9-8702-30a7ea457975", + "payload": { + "number": "2122223470" + } + }, + { + "phone_id": "b0bc54cf-eadd-4924-a2b0-839d8426df5e", + "location_id": "8a5ebb9c-6944-4a2c-b92e-bb4fd7de17a2", + "payload": { + "number": "9176830772" + } + }, + { + "phone_id": "b0cfea56-6212-4c54-9692-2ee44a88d8b9", + "location_id": "568e041d-fd09-4dc3-979f-853921a4cd79", + "payload": { + "number": "2122340112" + } + }, + { + "phone_id": "b0ff72e5-76bb-468a-b66e-b03a8111b4c0", + "location_id": "044a0f34-0c9c-4794-896b-a4ddde9b7881", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "b123af41-2b6a-466b-8866-a1ad0ad5fcbd", + "location_id": "41df1a49-0a2b-4f5c-a116-3a0e469654a6", + "payload": { + "number": "7184087181" + } + }, + { + "phone_id": "b125b4e8-de31-4602-b787-a66acd23db33", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "2124160197" + } + }, + { + "phone_id": "b1495a8d-4847-4f3e-9f64-fc3c58c4d64a", + "location_id": "af9ec430-3e7f-4fa8-84bc-ac06f23d6785", + "payload": { + "number": "2124173700" + } + }, + { + "phone_id": "b1591b5f-65b9-41cb-a9a8-7e6b1a6006df", + "location_id": "1eb590ab-9251-4f3d-84ab-1ee93bbda99f", + "payload": { + "number": "7189403453" + } + }, + { + "phone_id": "b178bac3-de8f-466d-9b6f-99d808cdc489", + "location_id": "4fef2f98-0bdb-4269-8761-36d0071fb5cd", + "payload": { + "number": "2127810355" + } + }, + { + "phone_id": "b19d7030-9599-403f-8549-d7140ab7a4ce", + "location_id": "bb12417a-aae4-4c33-a25d-83f4dc2f4007", + "payload": { + "number": "7187014055" + } + }, + { + "phone_id": "b1b677e7-0407-454f-9944-b02319e85327", + "location_id": "adf4bb75-8ab3-4a6d-ac5b-bcb91b600faa", + "payload": { + "number": "2126867500" + } + }, + { + "phone_id": "b1f8c050-1348-4977-b3cb-4175505b5acd", + "location_id": "f23953df-b425-4349-950e-b4bb692bf5ba", + "payload": { + "number": "9145950910" + } + }, + { + "phone_id": "b21db58c-4982-4eb4-a580-e4a27f488a35", + "location_id": "41549e32-22b1-46a5-8bcd-a9eda0a3cfe3", + "payload": { + "number": "2127413590" + } + }, + { + "phone_id": "b2c7718a-686a-4a7b-9620-2d70210c14eb", + "location_id": "5a8df7b6-8679-4a20-9f94-6e6de7593d84", + "payload": { + "number": "2126843264" + } + }, + { + "phone_id": "b2cc4608-8e8d-4a62-9e34-1d7065f96aee", + "location_id": "1febf5f4-b761-450b-bb53-7f98a32f544a", + "payload": { + "number": "7182302042" + } + }, + { + "phone_id": "b30e10f9-70eb-468d-a777-fb09e38aa6e4", + "location_id": "0bc44ea8-3576-4be7-837e-9defba4467cc", + "payload": { + "number": "7182262640" + } + }, + { + "phone_id": "b3376762-ae69-4e70-8e46-606f14c4f8fa", + "location_id": "a5abbe46-c26e-49b0-b66b-a8a1b63c42fc", + "payload": { + "number": "7184476330" + } + }, + { + "phone_id": "b3e8a7fa-fa64-49ed-9883-a47434200dee", + "location_id": "9c0cf54b-1e65-4ded-8cfa-5541a7fa0cbf", + "payload": { + "number": "7187791600" + } + }, + { + "phone_id": "b4282dcf-5869-4682-9b4d-d0758829781b", + "location_id": "260222c1-9b34-43b5-9cdd-549f0cc1f633", + "payload": { + "number": "7185582046" + } + }, + { + "phone_id": "b44d7755-309b-47f0-a2f4-a09ea04b019c", + "location_id": "6408d71d-6b43-4dbc-891b-e4f4902d84da", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "b476a53c-4d86-4b13-aa8b-ad8f5557c2c9", + "location_id": "75480b5f-0efd-44c0-a741-ca1202bb6bcc", + "payload": { + "number": "2125536708" + } + }, + { + "phone_id": "b47991ee-de51-4eb5-9721-5f3b66409fd4", + "location_id": "c987bfe0-746c-453c-9978-282a822f7c02", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "b4a0bf9c-bb52-408e-b2c4-e31d87b6f640", + "location_id": "da13bdce-6def-473b-a0b2-8208d177eeee", + "payload": { + "number": "7187780198" + } + }, + { + "phone_id": "b4e4f1a1-7ff3-4873-95bb-70ee2afd6cdf", + "location_id": "3d170607-58c8-41e1-af51-aaa10a392338", + "payload": { + "number": "6465880030" + } + }, + { + "phone_id": "b5501e00-b89f-473f-ae84-622677b3cb9a", + "location_id": "03eb72f6-a336-4f9d-aee7-af7106bd0133", + "payload": { + "number": "9179822564" + } + }, + { + "phone_id": "b5825c93-60a6-48a0-8130-6005532c0800", + "location_id": "48d7d3bf-b2d5-4f08-9b7d-328cd0f36c89", + "payload": { + "number": "7183285780" + } + }, + { + "phone_id": "b5a26c99-5896-4bc5-976e-cfbbda6cbf6c", + "location_id": "f69c5067-736c-421e-a4b6-aa8688ac7d9d", + "payload": { + "number": "7188023344" + } + }, + { + "phone_id": "b5a800cb-1a1e-4a93-9d31-44195aae5411", + "location_id": "4a584dd5-6152-4890-bfb3-335556da8b13", + "payload": { + "number": "7187803000" + } + }, + { + "phone_id": "b5c55808-8d8d-462a-b16b-50077332c9bb", + "location_id": "0530fd0f-d0c9-49e7-be5b-1936945178c2", + "payload": { + "number": "9143636048" + } + }, + { + "phone_id": "b60d9ea0-2cef-487e-9ff1-30f9916d0d1e", + "location_id": "199a2bd5-9983-4c57-afb7-e61221bb11fa", + "payload": { + "number": "7182860511" + } + }, + { + "phone_id": "b61b8961-9f80-42a4-9cd8-f2a377b9aaae", + "location_id": "41549e32-22b1-46a5-8bcd-a9eda0a3cfe3", + "payload": { + "number": "6466608951" + } + }, + { + "phone_id": "b69b93b4-f6e5-49ec-a1a6-60da4ab4724d", + "location_id": "e79329ab-d7d4-4145-96ee-7c9115c0e7d1", + "payload": { + "number": "6464818227" + } + }, + { + "phone_id": "b6b12356-083c-4aa9-baa9-87aabbb8824c", + "location_id": "306c3bd8-5c32-4913-96b6-36f7f4ff3f97", + "payload": { + "number": "7188018970" + } + }, + { + "phone_id": "b6c7112a-15f9-483a-9768-6f1732614489", + "location_id": "1e5308e5-dc25-4517-b216-e87393e86b61", + "payload": { + "number": "7185855544" + } + }, + { + "phone_id": "b6d1cc70-0ae7-41d6-8075-52232d330674", + "location_id": "92caa759-a1d2-4684-ba04-ac3ea6706f18", + "payload": { + "number": "7185894755" + } + }, + { + "phone_id": "b6dc2dbb-52de-46a7-9e9b-2fc42a81a948", + "location_id": "ebc1954b-67ba-423d-bd0d-a679f7c9bc81", + "payload": { + "number": "8777332767" + } + }, + { + "phone_id": "b6de8b91-de4b-46f4-a905-66192f5801cf", + "location_id": "97de3a62-8cd3-4720-92b2-1a1890f1c632", + "payload": { + "number": "7182922983" + } + }, + { + "phone_id": "b748c40b-40d4-454f-9495-202680ce75d9", + "location_id": "12eb3d00-10bb-47aa-ad3f-688f9117ddd9", + "payload": { + "number": "7185189007" + } + }, + { + "phone_id": "b75aa051-e987-4c14-9d42-467f9bf8924c", + "location_id": "86d780d0-941a-44d0-9a70-77d57e8ec921", + "payload": { + "number": "7188164800" + } + }, + { + "phone_id": "b75db4ab-2ba1-4de7-8f8c-f88e1136fab4", + "location_id": "f2377cdc-1a1d-4adb-a5c6-ea4129d7d81d", + "payload": { + "number": "7183427461" + } + }, + { + "phone_id": "b761a108-c792-4481-a2d4-a642925b8a6a", + "location_id": "d180afac-500c-4c64-80d2-dcb7f3fd205a", + "payload": { + "number": "7185658500" + } + }, + { + "phone_id": "b7b5e832-903a-4ce1-bbeb-af3c1ecee60b", + "location_id": "2b315ff5-ada3-4afc-bd32-de1fbfa1e0cc", + "payload": { + "number": "7188593800" + } + }, + { + "phone_id": "b7fe1dc6-34d5-429a-967c-d0c02b8464e7", + "location_id": "17a0bea9-88df-4d9b-8e1e-779bba41ca9b", + "payload": { + "number": "7184427700" + } + }, + { + "phone_id": "b868b001-124d-42bd-945d-eb684ef1b132", + "location_id": "1dc6624d-677a-4115-8975-6736366b6884", + "payload": { + "number": "2126098520" + } + }, + { + "phone_id": "b88ad9e1-55bb-4f59-b82b-7649b3c770b9", + "location_id": "38411a86-3a9f-4d78-afd7-4f53e0fa7009", + "payload": { + "number": "2125338400" + } + }, + { + "phone_id": "b8e7b72b-4459-4e81-bc95-5db32ad06ee6", + "location_id": "1794d56b-896f-459e-b215-a916edb7da0c", + "payload": { + "number": "2126875030" + } + }, + { + "phone_id": "b98a9944-407f-446a-9c87-43875623e179", + "location_id": "1cdd2963-db36-4eca-8001-8b94c2ed6357", + "payload": { + "number": "2128408005" + } + }, + { + "phone_id": "b9ac67ad-1272-4300-8716-e15946be68c6", + "location_id": "60a5bc8f-18c9-410e-accc-e6eef585b79b", + "payload": { + "number": "2129614440" + } + }, + { + "phone_id": "b9b5afa9-2fc1-4ba9-991a-c2f73d39f271", + "location_id": "a76755a4-2254-4d4d-bb68-6ffcd8815001", + "payload": { + "number": "7184976090" + } + }, + { + "phone_id": "b9db0db8-7738-4462-a64a-83f7b667d1e0", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "7186242765" + } + }, + { + "phone_id": "b9e4859e-ceb4-42e9-b3fc-272fc321f0cd", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "2123796998" + } + }, + { + "phone_id": "b9f58c4c-1c30-46a7-989d-916fac7267aa", + "location_id": "bfbe0ef1-0332-456b-9c9b-4552799d60b1", + "payload": { + "number": "7182382991" + } + }, + { + "phone_id": "ba22d058-d421-453f-9c78-0c8ce915aee8", + "location_id": "43743951-951a-4acf-837d-f79075917e1b", + "payload": { + "number": "8004427714" + } + }, + { + "phone_id": "ba522026-3ed2-41c1-bc45-20e746fe8daa", + "location_id": "cbfe4d8b-cbfd-4f93-9b08-efe6b7a956b1", + "payload": { + "number": "7188452620" + } + }, + { + "phone_id": "ba5b42c6-82c4-4262-be6a-444d9ec86463", + "location_id": "b939db79-634a-4805-b740-28c9cfe6af68", + "payload": { + "number": "7189429815" + } + }, + { + "phone_id": "ba6a4104-1f78-4866-92c2-eefc4f2808c6", + "location_id": "0b58784a-2b53-44bc-a7d7-4bf92020ddab", + "payload": { + "number": "3472839405" + } + }, + { + "phone_id": "babee2d7-d3a8-4f9e-a90e-c9e42dc3e3d3", + "location_id": "b63bf5f8-ff0c-4a6d-a504-a45ea421734f", + "payload": { + "number": "2128762300" + } + }, + { + "phone_id": "bb1694d0-06bf-4e48-b654-80d0da81eed7", + "location_id": "4e3697e3-6b22-41da-9867-361cf43d38dd", + "payload": { + "number": "9292343036" + } + }, + { + "phone_id": "bb441d20-c1d8-4d30-b4ba-245d51472b94", + "location_id": "ef279dfe-6bbc-4a6d-a8e6-8bb5cecf7131", + "payload": { + "number": "7182335004" + } + }, + { + "phone_id": "bb934e54-e3cb-45ae-b1a6-fbc11dba6902", + "location_id": "1cacb16b-b9b1-436d-80d3-38ba79ccfc85", + "payload": { + "number": "7182328600" + } + }, + { + "phone_id": "bbb0dd05-9c4e-4489-8753-7727412dc073", + "location_id": "bc233448-1227-40e4-b8b4-f6cf4c4673fa", + "payload": { + "number": "7184866800" + } + }, + { + "phone_id": "bbb46c70-0112-4b61-a7b5-d32ff5c61b1f", + "location_id": "85f17c89-ed89-4beb-a4ed-3200c9db4a7e", + "payload": { + "number": "7186514000" + } + }, + { + "phone_id": "bbfdf478-ea5d-44a8-a282-afbc688e1c38", + "location_id": "b7ddf8be-cd43-4c91-87e2-ca05f12e763e", + "payload": { + "number": "7186217960" + } + }, + { + "phone_id": "bc5414b9-7218-4e23-9756-c057e190942e", + "location_id": "352a2771-67b5-4ecf-8cd1-e4931cbee67b", + "payload": { + "number": "7185032768" + } + }, + { + "phone_id": "bc5d20ab-0424-4854-b583-3b2e8dd476bf", + "location_id": "6c1f71c1-bb93-4568-9b3f-cfbc9858d287", + "payload": { + "number": "7188260807" + } + }, + { + "phone_id": "bc6c999b-2c80-4bfb-80bf-251605c332d2", + "location_id": "20e4fbbd-c5ec-469d-bf3b-26c5d9fc708e", + "payload": { + "number": "7184556010" + } + }, + { + "phone_id": "bc821d3d-fcb7-4495-bd8e-442c655171ac", + "location_id": "8809ed6c-4f0f-4146-902b-7ac3dd346a4e", + "payload": { + "number": "2125685450" + } + }, + { + "phone_id": "bc854149-3f8a-43ba-b958-636bf313b319", + "location_id": "7c1b3299-c09e-4170-abee-44896e29a524", + "payload": { + "number": "7189818117" + } + }, + { + "phone_id": "bc8d82af-53ec-47a9-aaf5-8b464e57795d", + "location_id": "5aedfde8-454d-4c7a-b215-721e5b01b754", + "payload": { + "number": "2127692850" + } + }, + { + "phone_id": "bccf3896-ca48-44cd-bdc0-7b25c8ab85f6", + "location_id": "07381fee-d70f-41ae-a309-7bada6584f74", + "payload": { + "number": "3476894771" + } + }, + { + "phone_id": "bce162f7-68d1-47b1-a04d-a37a56003bea", + "location_id": "a15ef6b6-832a-40bc-af9b-ab877bb71926", + "payload": { + "number": "3473742455" + } + }, + { + "phone_id": "bce6c850-8907-4068-ae5f-64da1204dc48", + "location_id": "d953b644-53a6-46d3-b7fb-ff41632c3291", + "payload": { + "number": "3474737400" + } + }, + { + "phone_id": "bd0a789e-b496-47d3-92af-f0b9cd235857", + "location_id": "ebc1954b-67ba-423d-bd0d-a679f7c9bc81", + "payload": { + "number": "8887447900" + } + }, + { + "phone_id": "bd4c3ca4-16e3-4a59-b03d-97c91d1b3391", + "location_id": "0546b29a-c700-4a3d-a318-563abc64ad92", + "payload": { + "number": "2127744236" + } + }, + { + "phone_id": "bd4f4cb5-e21a-4d93-9aeb-9e42d7442239", + "location_id": "b767ac43-7711-4454-abda-0f2c074d82e2", + "payload": { + "number": "7184856000" + } + }, + { + "phone_id": "bdd27d6e-9c1d-41a9-90f0-94df32b286c8", + "location_id": "69059940-7a13-4d9a-b150-07ed827f3eff", + "payload": { + "number": "7187272672" + } + }, + { + "phone_id": "bdd4f555-da1e-4556-a639-4bfc9d67ec75", + "location_id": "92d08356-16cc-4e86-9bab-d93c632bc4fd", + "payload": { + "number": "7182375500" + } + }, + { + "phone_id": "bddd9578-93e1-439e-aed7-3598f3d48e17", + "location_id": "f98818c4-f2cb-4501-87c6-f4d7f092a006", + "payload": { + "number": "9177361046" + } + }, + { + "phone_id": "be5d38de-7584-458e-8127-cb510d2a1f54", + "location_id": "c2f8cb57-7631-45b1-aaa4-40f3f85a4f32", + "payload": { + "number": "7186045700" + } + }, + { + "phone_id": "be60c5c0-1f49-47aa-86b3-cf48c77efabd", + "location_id": "f0223ad9-3110-4df9-97c6-3bbfb2165219", + "payload": { + "number": "3328956860" + } + }, + { + "phone_id": "beaa42f6-c608-4260-84cb-64fbedef5a69", + "location_id": "86c94915-5ee0-47c7-bd10-2db3534e2891", + "payload": { + "number": "2128608170" + } + }, + { + "phone_id": "beb8deac-0461-4be5-86f7-6045b24ce384", + "location_id": "d6a2ae56-c8ea-4659-98ff-9891aec5b35d", + "payload": { + "number": "7185884460" + } + }, + { + "phone_id": "bed29238-f0d4-4b65-bdac-1ab193e315ac", + "location_id": "62e43dc5-810a-40a2-a0e0-090c0e4dcee4", + "payload": { + "number": "7188824000" + } + }, + { + "phone_id": "bee8d03d-acb9-4793-9a66-71ba04b79a97", + "location_id": "1bc6a125-e8f4-4fe6-a395-4478c3b62a77", + "payload": { + "number": "2123377524" + } + }, + { + "phone_id": "bf029ef9-7890-4706-871f-b71916df0d00", + "location_id": "1aaf0e27-60fb-42f1-8aa6-963f95519b42", + "payload": { + "number": "7184085756" + } + }, + { + "phone_id": "bf1afa94-e4c0-41cf-9953-9102ddffd4e5", + "location_id": "572aff2c-0105-4216-bbac-3147c4cf3de3", + "payload": { + "number": "2122740550" + } + }, + { + "phone_id": "bf6f5f44-cdb7-4631-83ad-801ffedd9e6b", + "location_id": "3d732b69-ab24-4a29-9471-72c9e0936290", + "payload": { + "number": "2126022800" + } + }, + { + "phone_id": "bf77e770-47fa-42e4-af17-7a101f5b79a7", + "location_id": "fb58573d-e43d-4537-be26-a0a71c00832c", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "bf9feed2-8abd-499c-9086-f2ef9c960ecb", + "location_id": "9bb5bf8c-c663-4e15-abea-6be66a0e22ce", + "payload": { + "number": "3476960943" + } + }, + { + "phone_id": "bfa14ffe-5fdc-4e1c-95ff-2652c964a7c8", + "location_id": "ce666e74-ae97-4f38-a99f-2c580fbef125", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "c00a06e0-666f-46c7-a305-c96b0239b72b", + "location_id": "637af8a5-87e3-402f-be94-1420fe95068f", + "payload": { + "number": "7182380033" + } + }, + { + "phone_id": "c00a4cbf-ed30-4e8d-8343-f99abbb01e2f", + "location_id": "68ac2b17-c9d0-40c6-88f9-923c02e82868", + "payload": { + "number": "2124007000" + } + }, + { + "phone_id": "c05c274a-3be6-4c6a-bc8d-11b1738a8972", + "location_id": "cc4ae119-e96d-461b-9747-84903b6743b1", + "payload": { + "number": "7182955690" + } + }, + { + "phone_id": "c0711423-8446-4fc0-864b-ca2a1dc74c1b", + "location_id": "16106697-d987-48c1-b496-8d387fd19c2a", + "payload": { + "number": "2127365900" + } + }, + { + "phone_id": "c090a582-d041-40d4-902b-348ff7d29c6d", + "location_id": "4e2998fc-9437-495e-a8c8-465bbebd08d2", + "payload": { + "number": "2127693057" + } + }, + { + "phone_id": "c0aaa5b7-f985-4605-a624-f52fa7124d09", + "location_id": "1e5ea5d1-2fd9-4ad0-b5a4-8614935b1e8e", + "payload": { + "number": "8002844422" + } + }, + { + "phone_id": "c0affb8c-32c7-4f24-b64a-b7fd65e3f68f", + "location_id": "da313ac3-44d7-4fd2-86ad-890f2d914a62", + "payload": { + "number": "2122717200" + } + }, + { + "phone_id": "c0d9d7d9-78b7-4cd1-9bcc-3a7005f5a9f9", + "location_id": "71e6c46e-000e-420f-adde-79954f8dff4a", + "payload": { + "number": "9174921019" + } + }, + { + "phone_id": "c1007cee-af45-42b4-ad2b-0ddd074f8247", + "location_id": "2e6099bf-9132-4a3c-a146-e176ca0d7d90", + "payload": { + "number": "2125823132" + } + }, + { + "phone_id": "c11c8394-49e6-4c52-bef7-239e83f18193", + "location_id": "e341510d-cd66-4be9-acb1-dfc28e96be33", + "payload": { + "number": "7183663038" + } + }, + { + "phone_id": "c11eb086-8813-4f15-9a33-508ac138e147", + "location_id": "3ada4162-ca1e-4d94-a178-e4e09aec0ab6", + "payload": { + "number": "2122541640" + } + }, + { + "phone_id": "c1312cea-2494-4cb3-b0ad-533fbfb8b0ac", + "location_id": "b8b34f30-7ad3-455f-97ba-8fdd41bccc9c", + "payload": { + "number": "3479134694" + } + }, + { + "phone_id": "c13d7645-517f-40ca-a080-41bbb415bba1", + "location_id": "019d40ce-8d53-4e6e-b9ae-3be2865e418a", + "payload": { + "number": "7183217929" + } + }, + { + "phone_id": "c140302b-110e-4a21-9e47-068ec112d2e6", + "location_id": "e68347fc-c7de-43a1-ad1c-378ab1d96f85", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "c16c3302-26b7-4403-b31f-550340af7d0f", + "location_id": "27de5a44-6c23-40ca-9a1a-9e834899be7c", + "payload": { + "number": "7186946957" + } + }, + { + "phone_id": "c172b83e-0b47-445b-bb0e-e5014791b1c5", + "location_id": "c4bc4ffc-472d-48e8-a1b0-0cebcd327d88", + "payload": { + "number": "7189333101" + } + }, + { + "phone_id": "c19f828b-970f-4191-8dd1-d02c80c6ab0e", + "location_id": "7def96cc-999b-48c1-bdf0-d00b45da993a", + "payload": { + "number": "2013488150" + } + }, + { + "phone_id": "c1ac880a-c83f-4d10-840d-4cd26012c522", + "location_id": "c0f35a80-5950-4618-a733-5704f7d99872", + "payload": { + "number": "8446632255" + } + }, + { + "phone_id": "c22d3c5a-a696-4393-a29a-92450489cddf", + "location_id": "fb0a7188-b103-4afc-8bf6-3881087edab6", + "payload": { + "number": "2123167540" + } + }, + { + "phone_id": "c281f238-b9b7-4b23-aec4-18074073b628", + "location_id": "bf19e215-a60f-4350-a687-7522d3a5e48b", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "c2cfe7c2-1453-4626-8157-7023a8117fef", + "location_id": "2f7c8af1-bc8c-4115-a5f9-1e3c250bfba7", + "payload": { + "number": "2128797400" + } + }, + { + "phone_id": "c2f1fbd6-8139-4a16-997d-16fb3a52582f", + "location_id": "97016f6c-6e51-4ecf-8c78-27b42cf3efa1", + "payload": { + "number": "7189938880" + } + }, + { + "phone_id": "c2f715c6-5ae1-46fa-88a7-105efc4e452b", + "location_id": "cc7bca47-9066-415c-892c-1f9e0f79732f", + "payload": { + "number": "7185892440" + } + }, + { + "phone_id": "c31237fe-47de-49e2-8e59-1f83a99690b6", + "location_id": "36e30dbe-9f1a-4790-8e52-ffb05710cf49", + "payload": { + "number": "2122531532" + } + }, + { + "phone_id": "c34b96be-6d47-4415-b6c7-4ecebfa3a98a", + "location_id": "fb0a7188-b103-4afc-8bf6-3881087edab6", + "payload": { + "number": "2123167583" + } + }, + { + "phone_id": "c36cb8d0-e7f8-444d-a4cf-639bdd0e6f15", + "location_id": "0ec6bd5f-30b6-473e-b297-af8ac64f481f", + "payload": { + "number": "8448962285" + } + }, + { + "phone_id": "c3a3e4b4-53a3-44bd-8431-bb60151e98e2", + "location_id": "a86f9762-67d9-4fdc-8dba-6c2d9a1e76b5", + "payload": { + "number": "2124431000" + } + }, + { + "phone_id": "c3df0323-a0b3-49a1-bded-a1a667792823", + "location_id": "41549e32-22b1-46a5-8bcd-a9eda0a3cfe3", + "payload": { + "number": "7189603354" + } + }, + { + "phone_id": "c3e44cbd-fc30-4445-847e-b64c2338b10f", + "location_id": "1cacb16b-b9b1-436d-80d3-38ba79ccfc85", + "payload": { + "number": "7183134357" + } + }, + { + "phone_id": "c46be571-9f14-4801-a98b-c5f73ffb18c2", + "location_id": "4868bf37-4764-4403-a52c-21d80eaa19c6", + "payload": { + "number": "7185888200" + } + }, + { + "phone_id": "c497bab9-6bc9-46c9-b87b-44e710fe69ca", + "location_id": "324aea46-6dc8-42f6-892c-bfaf612bd1cb", + "payload": { + "number": "7184009290" + } + }, + { + "phone_id": "c4be81a0-ddaf-4b92-b465-6c5b2fd0a5db", + "location_id": "bd0e8924-b7d1-43bc-a2fa-9babf09555ca", + "payload": { + "number": "2122223427" + } + }, + { + "phone_id": "c4f73587-6b03-4630-ab79-dc630998cd68", + "location_id": "24e8e4c7-54a5-4c18-adb9-e2c7d6f020d5", + "payload": { + "number": "7184565437" + } + }, + { + "phone_id": "c4ff2aaa-d563-4936-a75c-a85dc421e3da", + "location_id": "ce6c19c8-d2dd-4fca-b481-5b7e0b91de06", + "payload": { + "number": "9179369708" + } + }, + { + "phone_id": "c50ec296-8600-4d7b-b09c-b26ac737a19d", + "location_id": "7298852f-6630-4cd0-b632-d6077ee724d0", + "payload": { + "number": "2123696354" + } + }, + { + "phone_id": "c5113ca8-ea59-4a00-b214-8aa471a4e91f", + "location_id": "2e020085-505d-495b-be7f-75aa797bfc9b", + "payload": { + "number": "7185195000" + } + }, + { + "phone_id": "c5127bfc-69ee-4c3f-b8d4-1407d735e068", + "location_id": "12ef58c7-c1c8-4f50-9a2c-716be4f25fc0", + "payload": { + "number": "2128288464" + } + }, + { + "phone_id": "c57091b9-d1da-4a24-92c8-3e6e42b82675", + "location_id": "f98818c4-f2cb-4501-87c6-f4d7f092a006", + "payload": { + "number": "9177361621" + } + }, + { + "phone_id": "c5741d15-1b5f-4538-bcd4-8a426ef5e9c1", + "location_id": "4a9395be-687a-4328-a65b-66fda390e4cb", + "payload": { + "number": "7182408233" + } + }, + { + "phone_id": "c5b55ed2-5883-44da-a90b-5992ea8b0bf9", + "location_id": "eea0a5fb-aef5-48be-99b9-c5ae203da53d", + "payload": { + "number": "2129710626" + } + }, + { + "phone_id": "c5c3e37f-56ea-4be8-9069-0a92b3d65ed8", + "location_id": "eae69d86-804c-40d8-b77a-dc1836f10215", + "payload": { + "number": "2123877400" + } + }, + { + "phone_id": "c5de7715-f7c8-4d03-ab5d-aa567b788ac1", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "2122261661" + } + }, + { + "phone_id": "c626cf5c-2fd2-4060-bebc-944df33bec27", + "location_id": "8c001f45-47fd-4d3e-964f-fdce8111cd5a", + "payload": { + "number": "7189429815" + } + }, + { + "phone_id": "c6d9061c-24b2-4acd-bab0-093428aa3043", + "location_id": "11f4a2b0-d1bd-428d-9f2b-5694ae6e0b99", + "payload": { + "number": "2124160197" + } + }, + { + "phone_id": "c710da55-f2fb-418c-ad26-925121384b48", + "location_id": "09875402-ca2e-4d81-9d0c-fa8ea6a546b0", + "payload": { + "number": "8556976974" + } + }, + { + "phone_id": "c72a7e9a-4f7d-4043-b9da-c2e3e4401c32", + "location_id": "e5a8cb81-8069-43e3-9652-4f8d88becbdf", + "payload": { + "number": "2126450875" + } + }, + { + "phone_id": "c747e184-5df2-48d7-b9fc-58d40456c725", + "location_id": "df42156e-9eea-4c9f-89b8-ac3ac208ff90", + "payload": { + "number": "2123780229" + } + }, + { + "phone_id": "c760b2ea-4a79-42c0-b4ef-61d67c101ee7", + "location_id": "a588e834-bbac-46c4-baa4-d8fa1096a5a2", + "payload": { + "number": "7184820001" + } + }, + { + "phone_id": "c761ca08-684d-41e6-92d6-1bd5c03c86b7", + "location_id": "8e815d12-3a5d-430a-8575-bba6d173a226", + "payload": { + "number": "7185225051" + } + }, + { + "phone_id": "c777a526-cb4c-4e16-83f9-2fa7555bcce0", + "location_id": "bb121992-2245-4ccb-a9cb-480634882815", + "payload": { + "number": "8003247055" + } + }, + { + "phone_id": "c7b9c0c3-2a4c-4af2-ba01-21032da0529e", + "location_id": "4a08a3ed-301f-4aa2-87df-b213261cbaef", + "payload": { + "number": "7186222000" + } + }, + { + "phone_id": "c7bbe3bf-f4db-4d88-996c-70a298759d11", + "location_id": "f50959fb-4143-4e2c-86f0-b75c15f7eedd", + "payload": { + "number": "7184012555" + } + }, + { + "phone_id": "c7d58e95-bd21-4574-9dfc-92f46de27952", + "location_id": "b48196c5-f12b-4f14-8758-a05747cdcaa4", + "payload": { + "number": "2126471900" + } + }, + { + "phone_id": "c84c5148-996d-4962-b55f-7509f9f405f0", + "location_id": "0da0b95a-aa5f-4c8c-b0ec-86e674f1c410", + "payload": { + "number": "7187921140" + } + }, + { + "phone_id": "c858b81e-d591-40c0-8391-49c1c9f6f0b6", + "location_id": "4046998d-f122-4821-9238-12ec1795ec98", + "payload": { + "number": "9172437055" + } + }, + { + "phone_id": "c8988630-ba43-481f-bcdc-422ab1ddb233", + "location_id": "2f0e7060-391b-4086-b987-23ff7c113fbb", + "payload": { + "number": "2126910950" + } + }, + { + "phone_id": "c90c4fd4-d7e6-415c-b39c-d830d8bff70e", + "location_id": "ae141704-4e85-48b5-b94b-102fbdc58745", + "payload": { + "number": "7183227888" + } + }, + { + "phone_id": "c915d7b1-dacf-417f-bd84-edc14127d755", + "location_id": "68edae28-4b59-45fa-9150-a594c1630810", + "payload": { + "number": "7182315276" + } + }, + { + "phone_id": "c94b0a39-865a-4d5b-8986-86d1b8a6fee4", + "location_id": "35dbdb4e-ad52-4c52-aa57-047048e30ceb", + "payload": { + "number": "2128794900" + } + }, + { + "phone_id": "c96ae2f4-cd4d-468b-a7a7-a2c9f4c3b2d4", + "location_id": "db6441c4-9aaf-4760-b5df-17150959ee17", + "payload": { + "number": "7182933900" + } + }, + { + "phone_id": "c997833c-8732-4242-918b-ddae6cbe3e83", + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "number": "7185719167" + } + }, + { + "phone_id": "c9a1b30d-7f73-45ea-b33d-8b7f00f7536a", + "location_id": "2e12f561-34d2-48a6-8cd5-d03cc97664d2", + "payload": { + "number": "7188584050" + } + }, + { + "phone_id": "ca09b638-67eb-45b5-921d-64df4098e21a", + "location_id": "3663bd3c-1c75-41ae-906b-6ec73357ca50", + "payload": { + "number": "7188840700" + } + }, + { + "phone_id": "ca367d45-3a05-4d79-85a9-5365545e2ea8", + "location_id": "143c37e4-911a-48f2-9f73-df836f2d69e5", + "payload": { + "number": "3476492802" + } + }, + { + "phone_id": "ca6c9076-b3eb-4287-bae6-1bc3e3689788", + "location_id": "a9ca5988-d1b7-4441-9647-9cb7531c58bf", + "payload": { + "number": "2125944464" + } + }, + { + "phone_id": "ca723329-a366-4db2-ac27-dfeb57ba6141", + "location_id": "75dbb66d-0117-4b46-840d-257f5122fd26", + "payload": { + "number": "9293356541" + } + }, + { + "phone_id": "caae8425-bcea-49f2-b3a8-1a2c1d9e59c6", + "location_id": "dae35be1-4c16-494a-965a-638e04b63c29", + "payload": { + "number": "7182372017" + } + }, + { + "phone_id": "caca7a4f-bf5a-43c8-b973-a213593b5427", + "location_id": "e9159f84-b277-4885-83d1-cb6b0378c96d", + "payload": { + "number": "7187847447" + } + }, + { + "phone_id": "cad62218-d567-4fc6-b66d-0b037e0df455", + "location_id": "5f445789-63ed-4ddb-b364-86ceab0c51ab", + "payload": { + "number": "2123496381" + } + }, + { + "phone_id": "caddef8e-0982-4129-98a6-fc33c46015f9", + "location_id": "cc4ae119-e96d-461b-9747-84903b6743b1", + "payload": { + "number": "7182927718" + } + }, + { + "phone_id": "cb26abf6-5f4a-4e65-8186-3bf9c2dfa2ef", + "location_id": "9115cdb2-92aa-413c-ae5b-47f02ec6bd07", + "payload": { + "number": "7185307000" + } + }, + { + "phone_id": "cb9d83b4-3aa3-4bde-85c2-386a9e13f903", + "location_id": "f83e2f64-252d-42a6-bddb-b2e591cf6a6c", + "payload": { + "number": "2122220666" + } + }, + { + "phone_id": "cbef795e-b73d-4dff-8cc9-666acd98d3ea", + "location_id": "d2598e8c-fadc-4d37-9592-5c0f16719344", + "payload": { + "number": "7189396137" + } + }, + { + "phone_id": "cc2d18fd-b8c1-480f-9984-87630196b332", + "location_id": "af78d1fa-73b9-45b1-92d2-43ae9a21703b", + "payload": { + "number": "2128736600" + } + }, + { + "phone_id": "cc31f510-edb7-483c-89cd-e9e47d279aa3", + "location_id": "a2d3da15-27ec-46ee-9ea7-6e853eb8debb", + "payload": { + "number": "7184427700" + } + }, + { + "phone_id": "cc340334-7c24-4435-b5a9-9f571ccdddf0", + "location_id": "d2c76f29-85e6-441e-820e-6c2d2e36431b", + "payload": { + "number": "3474002644" + } + }, + { + "phone_id": "cca8591e-f42a-4f2c-9796-6119ae7c6c19", + "location_id": "7fb1ee2b-7787-4351-a5d6-5f84b9d0e8e3", + "payload": { + "number": "3478315415" + } + }, + { + "phone_id": "cd3b3300-9875-46bb-b51c-114c4f868b54", + "location_id": "97bbc2c9-eef5-4b77-8b9e-8a071239d3f0", + "payload": { + "number": "2124263400" + } + }, + { + "phone_id": "cd6c9b00-d091-4927-a341-22292feb66ec", + "location_id": "eb38da64-a136-4865-953a-f9170bfb6518", + "payload": { + "number": "2129861170" + } + }, + { + "phone_id": "cd796f70-b495-4d17-8a0b-ebde7ba91624", + "location_id": "2ba39031-f115-43be-9c9e-1af7731a046f", + "payload": { + "number": "2126207310" + } + }, + { + "phone_id": "cd7dd80f-01b1-4f6c-8266-7d608fdb6205", + "location_id": "396c40df-6466-4cdd-bc5b-3b0826b1e235", + "payload": { + "number": "3473655161" + } + }, + { + "phone_id": "cd972cd5-f2a5-491e-a894-fc143c86e330", + "location_id": "c6f1b357-5642-474d-bc79-ebcd35c0c191", + "payload": { + "number": "2126279600" + } + }, + { + "phone_id": "cd97583c-0706-45e4-b187-e4acf05b46e8", + "location_id": "bcb9432e-6114-44fa-a43e-8008f345e749", + "payload": { + "number": "6463629799" + } + }, + { + "phone_id": "cdb5e74b-0da2-49b8-8177-99253946b856", + "location_id": "9fa9d296-a030-4b68-82d8-0bddedcb0eca", + "payload": { + "number": "2122433434" + } + }, + { + "phone_id": "cdbbd672-9f0e-4aaa-b4ed-b40227d4eabe", + "location_id": "427ee11f-771b-49a6-8a6f-2112a24c7166", + "payload": { + "number": "2126784990" + } + }, + { + "phone_id": "cdf70470-b21d-4e06-8fc3-2f7a998bc7dc", + "location_id": "a0ef51b4-a2ad-4899-8278-e2cf5826c4da", + "payload": { + "number": "7184485151" + } + }, + { + "phone_id": "ce0816f5-21c2-467b-b114-e19ea5cd52f7", + "location_id": "91a347f6-ba11-416a-ba87-3d202dc616cc", + "payload": { + "number": "7186438000" + } + }, + { + "phone_id": "ce0a398d-d417-4ba9-b012-ee0ad2113061", + "location_id": "670d087f-a834-4829-ac3f-9681c7be3db1", + "payload": { + "number": "3479572450" + } + }, + { + "phone_id": "ce320f2e-c756-4408-85bf-5bc0e718767c", + "location_id": "533884a5-0751-40b5-9823-205eeee7febc", + "payload": { + "number": "7186307588" + } + }, + { + "phone_id": "ced96879-3b30-466b-9ee8-c36560292a04", + "location_id": "f530aa8e-3c8c-4954-bc63-c009d38deedf", + "payload": { + "number": "7186323275" + } + }, + { + "phone_id": "cee68958-05ea-4f63-9242-7b1b866e4a3f", + "location_id": "4658803b-2c4e-46ae-bc17-8828d5ecd98d", + "payload": { + "number": "2124431000" + } + }, + { + "phone_id": "ceee2eb1-7ada-48d5-9b7d-7edb2affef88", + "location_id": "9d171514-c862-4551-955f-6b2e5856b87c", + "payload": { + "number": "8446632255" + } + }, + { + "phone_id": "cf088e12-a366-4a99-8ae8-45c3d41986e0", + "location_id": "20e4fbbd-c5ec-469d-bf3b-26c5d9fc708e", + "payload": { + "number": "7184959747" + } + }, + { + "phone_id": "cf6a2547-c71e-44c7-a235-ea0f8933dca3", + "location_id": "c5118a27-a6eb-4421-9800-6268722ae8a2", + "payload": { + "number": "7184425007" + } + }, + { + "phone_id": "d01dfcaa-cf38-4d7d-821e-dbe3c20e81c4", + "location_id": "0ef55f80-6c88-4cbf-9e01-b01efa2f419f", + "payload": { + "number": "7186753372" + } + }, + { + "phone_id": "d0669d3e-4df5-4963-8dd5-8a19da187407", + "location_id": "ab237eb7-7f40-4fde-8e1f-6bd5f501ef41", + "payload": { + "number": "2123246558" + } + }, + { + "phone_id": "d07242bf-0970-46ad-a2a3-8756b7c21dcc", + "location_id": "f8c78ff4-8eb2-4bf1-a303-07b7af24a4ef", + "payload": { + "number": "2123692600" + } + }, + { + "phone_id": "d0c38e17-d62a-40ab-ac6f-d8ce36f81d24", + "location_id": "e8dc6dd6-529e-4389-a7a6-9a00afff5d2a", + "payload": { + "number": "7185498100" + } + }, + { + "phone_id": "d0d10395-cfe7-4087-a085-3e5c11afa7c6", + "location_id": "9e0db839-a904-41b2-8a38-27b71e2c3ce2", + "payload": { + "number": "7187965300" + } + }, + { + "phone_id": "d0db8b86-1323-4bd8-9537-1768541e9e82", + "location_id": "ce11bdaf-ab40-4206-861f-9e19f832b3be", + "payload": { + "number": "2123378043" + } + }, + { + "phone_id": "d0de9303-9dc6-4814-ac31-8048b551d6d9", + "location_id": "8c001f45-47fd-4d3e-964f-fdce8111cd5a", + "payload": { + "number": "7182443292" + } + }, + { + "phone_id": "d16cbf7f-d937-44a5-a784-df9b3dd4dd7b", + "location_id": "d0486845-8d68-483b-81a1-2da93a957526", + "payload": { + "number": "7183197981" + } + }, + { + "phone_id": "d1cd6fdb-95c1-4b4f-8b81-83bbeb2bdbe4", + "location_id": "0dbf94d2-68f1-4358-ae2b-c23cc280daa9", + "payload": { + "number": "7183361981" + } + }, + { + "phone_id": "d1e81bf4-6fe4-40cb-ae56-d946315a4b9a", + "location_id": "ea0fd370-c236-427d-9834-0fba99f5f971", + "payload": { + "number": "7182264905" + } + }, + { + "phone_id": "d1e9786b-b875-4bc1-b001-bb4f9b6eab36", + "location_id": "e2764c22-a814-4d16-b004-387efaaca6fe", + "payload": { + "number": "5166202033" + } + }, + { + "phone_id": "d2228859-756e-4a37-ba71-4b71dc75f6a4", + "location_id": "f3331e24-d107-4056-b048-a04656444c5e", + "payload": { + "number": "2126753288" + } + }, + { + "phone_id": "d224684e-4064-4995-bd46-f9c951f9dc86", + "location_id": "b836e61d-7cbe-4711-a67d-f13463dcb3a3", + "payload": { + "number": "7182505111" + } + }, + { + "phone_id": "d26caa59-dafe-49dc-b310-7cbd1ac97358", + "location_id": "09b27fde-9f8e-4d92-acda-5c82d8572f8a", + "payload": { + "number": "2128098585" + } + }, + { + "phone_id": "d27f9104-8d03-432f-84ae-0b4e091c061f", + "location_id": "87b928ff-f80a-4934-91d6-21702b8cddd0", + "payload": { + "number": "3478897719" + } + }, + { + "phone_id": "d28b26b6-3612-4cef-a507-61f494c7435e", + "location_id": "817b11be-87a0-4967-99f7-22ef81ae140e", + "payload": { + "number": "7182351700" + } + }, + { + "phone_id": "d2b9999a-9671-4a62-9003-63e0eec14b8e", + "location_id": "fe7bea5e-b634-4667-beef-8df7d20194df", + "payload": { + "number": "7186484300" + } + }, + { + "phone_id": "d2cc0a63-5d74-4fa2-959e-27c1089e88f2", + "location_id": "2df27871-f37b-4a09-9dcc-19d341c06854", + "payload": { + "number": "7188826717" + } + }, + { + "phone_id": "d30b1f0d-dab5-4a1f-82cf-7274749b438b", + "location_id": "d55706bb-d672-4494-958b-b8cc42632832", + "payload": { + "number": "3475055176" + } + }, + { + "phone_id": "d326815d-c67e-48a0-9d75-51c7dd56d375", + "location_id": "59ff1726-6260-454a-890c-37feda37524d", + "payload": { + "number": "7188164800" + } + }, + { + "phone_id": "d338cd60-172e-415c-9556-dbf68f420ae5", + "location_id": "74fcd72a-ebe9-43b3-887e-42c2710ef8c5", + "payload": { + "number": "7188764752" + } + }, + { + "phone_id": "d33ca580-f973-444d-8d71-823b6ba8bf69", + "location_id": "c29e3cd3-ca53-49aa-bdff-6c3dea0dcb94", + "payload": { + "number": "2128646100" + } + }, + { + "phone_id": "d349484d-6ad5-463f-bf90-d79097e69ce2", + "location_id": "4f11e4d6-b0b6-4a79-9a95-e7961c3bd8a6", + "payload": { + "number": "9178191174" + } + }, + { + "phone_id": "d406214d-1264-47c9-8ebe-b1bfc3511659", + "location_id": "f4ba0237-801c-49ab-b6f7-75054ec682da", + "payload": { + "number": "2126622000" + } + }, + { + "phone_id": "d4222347-819c-41a5-9f91-9625de2013ac", + "location_id": "bc8442a9-d0de-49f4-9f06-527c2457e145", + "payload": { + "number": "2128654104" + } + }, + { + "phone_id": "d42882c7-3f03-4460-ae40-5c903abd25d7", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "7188861200" + } + }, + { + "phone_id": "d456b613-b336-42b3-bc84-677801d3b7d5", + "location_id": "ab91a5b5-5994-4188-8a8d-269cfcd34044", + "payload": { + "number": "9174772480" + } + }, + { + "phone_id": "d4662842-ae54-4d6d-868b-7a9c916731d0", + "location_id": "c7b814d8-d41c-4fb9-a942-6587bba62225", + "payload": { + "number": "7184729400" + } + }, + { + "phone_id": "d4796a99-fb1a-498c-9fac-19e0473037bf", + "location_id": "2015f6dd-49a6-487a-b3cb-9bfb8d30dc4f", + "payload": { + "number": "2129410920" + } + }, + { + "phone_id": "d48640ac-5063-4e66-b154-c411aa0e66a0", + "location_id": "11abff93-5673-42bb-9c94-18d4a8d5510d", + "payload": { + "number": "2127256422" + } + }, + { + "phone_id": "d4b2756c-3971-4eeb-82ba-f45b8b87bb04", + "location_id": "006154e0-f380-4ae3-851e-22ffd4d0bbbd", + "payload": { + "number": "7182506559" + } + }, + { + "phone_id": "d4b3148b-7916-4f4f-b644-53f712c0574b", + "location_id": "6f6e218a-0463-4bd9-904a-d410db1e35b2", + "payload": { + "number": "7187458520" + } + }, + { + "phone_id": "d4efb75a-a1ce-44cf-996a-a964daa20eba", + "location_id": "74890e36-f4f4-42f0-855c-749031e4fe73", + "payload": { + "number": "9178193200" + } + }, + { + "phone_id": "d4f11ce4-a6c3-499a-bdb2-87b4c637f3fa", + "location_id": "add76abc-d6ef-4f04-9d16-05d44e1c7d15", + "payload": { + "number": "7183873803" + } + }, + { + "phone_id": "d534b65f-7f76-4c77-82da-97eec5ff1698", + "location_id": "0eb0ee5f-4122-4d61-a110-d0bdacaab794", + "payload": { + "number": "7188081840" + } + }, + { + "phone_id": "d551eca1-fb7d-487a-85cd-4f3999e8fd5b", + "location_id": "33582379-4d99-475e-aad5-40cbe3faf34b", + "payload": { + "number": "7186510096" + } + }, + { + "phone_id": "d58ffc65-687c-42d1-8700-056dd2c96f7b", + "location_id": "5f2b67e8-7246-4c44-9947-24d14b5f148a", + "payload": { + "number": "7183761919" + } + }, + { + "phone_id": "d5e97f05-1baf-4eb0-8c4b-d7235b2f0d56", + "location_id": "5d23acdd-3dc1-4fc1-af76-1982eace2933", + "payload": { + "number": "3475035544" + } + }, + { + "phone_id": "d63a38df-380f-48d6-9a6d-0b422d5ba084", + "location_id": "ba82d6d2-0cba-4160-8e35-d02b15ef0a93", + "payload": { + "number": "9292812283" + } + }, + { + "phone_id": "d63ee861-c138-44ed-b1f0-b683463cb1f3", + "location_id": "71fd332a-13ea-41f7-954e-966f12d1b2c1", + "payload": { + "number": "2125332020" + } + }, + { + "phone_id": "d645a60d-7773-4160-a040-aa529220b3ee", + "location_id": "485da098-2857-4126-b1b1-f18577293180", + "payload": { + "number": "7183819653" + } + }, + { + "phone_id": "d67775a9-ec12-4b73-93a1-78cfb0f86d61", + "location_id": "5810b390-22e0-41b2-b91c-e578d4c3a74e", + "payload": { + "number": "2126742340" + } + }, + { + "phone_id": "d6eddfaa-eb3c-48cc-a379-5fb5bb88d08a", + "location_id": "1fbff053-0c39-40e0-9f8e-af5c6d6a44b2", + "payload": { + "number": "7184483976" + } + }, + { + "phone_id": "d6ef3e3b-f069-4683-9335-7a1808140e57", + "location_id": "3957b7d2-eb96-48c1-a9df-b8efe1faab14", + "payload": { + "number": "9292441450" + } + }, + { + "phone_id": "d7233bee-957d-470f-a6b4-2dcb93dbbeb7", + "location_id": "c0526e4d-d008-4bde-b82c-6126ab93b957", + "payload": { + "number": "9146930600" + } + }, + { + "phone_id": "d731daba-a9d2-43d0-b8de-56ef56962841", + "location_id": "617a91d3-d06e-4f1a-99f3-fab19003de36", + "payload": { + "number": "2126142840" + } + }, + { + "phone_id": "d73bbefa-7480-4b01-9399-0ccf7b838350", + "location_id": "f74ea3f7-4322-432a-af07-cb89b275ca3a", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "d73f802c-06e2-415c-9c8f-a4508595385f", + "location_id": "64e74071-a7dd-4554-9b7c-85f221073d76", + "payload": { + "number": "7188186132" + } + }, + { + "phone_id": "d7694db5-022f-4961-ba82-18c0885e2e65", + "location_id": "7c3b4f78-c1c0-4db3-813c-da270e4f4e5b", + "payload": { + "number": "6469683399" + } + }, + { + "phone_id": "d77d92de-412f-47b5-a126-52ce82949e14", + "location_id": "159aec84-b27a-482c-b51a-a0e1458883f9", + "payload": { + "number": "2129321920" + } + }, + { + "phone_id": "d78ca8c0-b1b3-4ef9-852b-e8e47c3c32d1", + "location_id": "dc84ce8a-c43b-4c99-81d7-fc5774f4c19f", + "payload": { + "number": "7187775505" + } + }, + { + "phone_id": "d7b8baaa-ccb5-4b62-879b-1caff568078a", + "location_id": "db8bee0a-a962-4833-94d3-1945c1971fbb", + "payload": { + "number": "7189841625" + } + }, + { + "phone_id": "d7c12bcb-35ee-4cc6-a69b-ce74c9c8b032", + "location_id": "9b365096-fed1-426c-a45f-b8aa0c331f99", + "payload": { + "number": "7183772900" + } + }, + { + "phone_id": "d7c5bdb8-2224-4294-bd17-f10daac8d3f4", + "location_id": "e1563054-df59-484f-b2a7-5dc30ea38211", + "payload": { + "number": "7185849000" + } + }, + { + "phone_id": "d7d78912-6b0b-4290-b903-ca5680e25103", + "location_id": "a7f62f69-0b8e-4d7b-b624-808f35226cfc", + "payload": { + "number": "7187301004" + } + }, + { + "phone_id": "d7e1309c-7542-4dda-8018-9aad2e692706", + "location_id": "fd220c74-4899-49f1-96b2-dfe5e0f56715", + "payload": { + "number": "2122717200" + } + }, + { + "phone_id": "d804a5c4-e21b-450c-8309-3e0ac384f88d", + "location_id": "a00030b5-9225-4517-97ab-918104e24627", + "payload": { + "number": "2122417181" + } + }, + { + "phone_id": "d86e8080-dbb6-4bcc-afe1-6e3bf1d8efac", + "location_id": "587583da-18a9-47f0-84dc-7104a68b8592", + "payload": { + "number": "3476192080" + } + }, + { + "phone_id": "d893ac87-79b4-47ac-af18-96a9aec9d9bb", + "location_id": "c306521f-26e1-4318-b669-2d1a3870e76b", + "payload": { + "number": "7185970989" + } + }, + { + "phone_id": "d94aeb9e-69ff-4863-a423-f87dd75eaf06", + "location_id": "fa01c010-f5cc-4a84-88af-3dc3e39881b4", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "d9b43188-6133-4862-98b0-ade6f2fafa3c", + "location_id": "1b3d3c8a-f9ac-4d09-a987-f75944f73810", + "payload": { + "number": "7182503281" + } + }, + { + "phone_id": "d9c5d151-b92a-4600-ab5d-0007798ce901", + "location_id": "d3dfafc5-4fd9-447e-ab22-8e1648001181", + "payload": { + "number": "6468292810" + } + }, + { + "phone_id": "d9e210b9-5e08-474d-a3e9-35a71a5cdcf8", + "location_id": "5d635727-29de-44df-b67d-ab75c8c6d7fb", + "payload": { + "number": "7188381000" + } + }, + { + "phone_id": "da13a26f-6479-41dc-83de-378fd9b337cb", + "location_id": "93ef12eb-0976-46f4-90a4-ddc837a2e858", + "payload": { + "number": "7186715161" + } + }, + { + "phone_id": "da72d6fe-1922-4a24-b010-279e676a2018", + "location_id": "d2c76f29-85e6-441e-820e-6c2d2e36431b", + "payload": { + "number": "8776862774" + } + }, + { + "phone_id": "da951529-d2db-4565-8323-9d170ace1f7f", + "location_id": "c1e3b264-65e6-4382-8316-28d3b64f3d80", + "payload": { + "number": "7184187690" + } + }, + { + "phone_id": "daa184fe-859b-4a79-9a16-90d147e6b91a", + "location_id": "c9c941c4-d1da-48dc-8f7d-2a1a9b1bdaab", + "payload": { + "number": "8002723900" + } + }, + { + "phone_id": "dab6fc92-d17b-4ed3-9174-3cb8a8287e88", + "location_id": "70c0060f-108a-484b-a997-973adc6753d7", + "payload": { + "number": "2123698900" + } + }, + { + "phone_id": "dabb20ae-a954-4ae6-847b-465a6dd7811e", + "location_id": "092547f4-10af-40b2-b80a-7e23da6dfc8c", + "payload": { + "number": "2125342432" + } + }, + { + "phone_id": "db797deb-3bac-489f-90af-01d47f2be203", + "location_id": "1edfab8e-0d7c-437e-a14c-6b9ca0eb5d93", + "payload": { + "number": "7185740058" + } + }, + { + "phone_id": "db848469-b9f3-4ebc-9728-fed30b88f4ce", + "location_id": "e6608940-1767-4e2a-9cc3-8f1c2ea2fa2c", + "payload": { + "number": "2012100333" + } + }, + { + "phone_id": "db9cf88a-f2f9-4e1e-859c-636b7fc79529", + "location_id": "c7b814d8-d41c-4fb9-a942-6587bba62225", + "payload": { + "number": "7187392525" + } + }, + { + "phone_id": "dbaac80b-a9d2-4207-bd91-2624671a74c1", + "location_id": "cfdf24c0-d87a-4e1b-9166-3c7e074506a0", + "payload": { + "number": "2126652504" + } + }, + { + "phone_id": "dbe73aea-705d-4d0e-90c9-642e9a1fdc1d", + "location_id": "99ff93df-a1c4-40bf-ac9c-1fc399009bba", + "payload": { + "number": "2127491820" + } + }, + { + "phone_id": "dc0cb3a2-d1fa-4deb-a56a-1df079e8cff1", + "location_id": "dd8c851c-760e-4480-aecc-23bbaf43a5e2", + "payload": { + "number": "2124534555" + } + }, + { + "phone_id": "dc3c9246-5240-4586-8180-b29befc1e2f1", + "location_id": "ace94672-4ff3-4f58-9b51-957ddbb2d8e9", + "payload": { + "number": "2125683531" + } + }, + { + "phone_id": "dc62917b-49c2-4c61-8c33-6c4c5e046acb", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "2129412213" + } + }, + { + "phone_id": "dc88f09e-52c5-4d9d-a2c0-03554d51b64d", + "location_id": "874de76c-571c-49f8-9c4e-96db81cae6d6", + "payload": { + "number": "2129627559" + } + }, + { + "phone_id": "dc99d162-b1e4-4c07-aa6b-815127d3da09", + "location_id": "11af51c1-7489-4b22-858f-75db42510842", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "dcf44a10-d84a-416a-af8f-8c7c8876a8c7", + "location_id": "a0dfa931-e5da-42e9-b709-12828615b341", + "payload": { + "number": "7184355700" + } + }, + { + "phone_id": "dd119abf-4690-449b-9335-6ee0dca5bdf1", + "location_id": "01c41e86-3392-4513-85db-791b03a16bfe", + "payload": { + "number": "2122266214" + } + }, + { + "phone_id": "dd1d007a-36c0-47cb-b928-68e4542241d2", + "location_id": "c6985a09-e40c-4276-82a5-12563430ee62", + "payload": { + "number": "2124730044" + } + }, + { + "phone_id": "dd26eca0-64b4-4909-ac3f-ca6363eebfa4", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "2122263888" + } + }, + { + "phone_id": "dd46f657-be84-4420-80c3-68b39e8a8a1e", + "location_id": "ce6c19c8-d2dd-4fca-b481-5b7e0b91de06", + "payload": { + "number": "3475057373" + } + }, + { + "phone_id": "dde08633-1615-4245-95e6-4ba6cbb71948", + "location_id": "67addaf4-ba9a-4b09-84d0-b346847b1dd4", + "payload": { + "number": "7186834383" + } + }, + { + "phone_id": "ddf80508-fa9f-4a5a-bf21-091ad6eaaec1", + "location_id": "d4433462-4015-408f-837e-aa8032426c26", + "payload": { + "number": "2122736100" + } + }, + { + "phone_id": "de2ab351-fd71-446b-8b49-e4fef26d5c44", + "location_id": "6b9093ab-10f4-4397-b6c4-e229cc0e23f4", + "payload": { + "number": "2013246222" + } + }, + { + "phone_id": "de5cc9a7-89ae-4e3e-979a-1d722b862b76", + "location_id": "d953b644-53a6-46d3-b7fb-ff41632c3291", + "payload": { + "number": "2126332500" + } + }, + { + "phone_id": "de5d4942-a6f8-4495-8734-664cc0d64137", + "location_id": "5ba38bdf-f38c-4a7e-a358-a0c485f48084", + "payload": { + "number": "7187846173" + } + }, + { + "phone_id": "de8f6237-eec7-4709-888c-e399de5a5f29", + "location_id": "46b47278-b153-4a20-9c5d-72f44d485372", + "payload": { + "number": "3477783490" + } + }, + { + "phone_id": "df07777e-90ee-438e-ad56-2dd40ad51b65", + "location_id": "018f8703-1e3c-4780-9f77-36d9b43ed39a", + "payload": { + "number": "6464423100" + } + }, + { + "phone_id": "df1840e4-a535-47e9-84d4-fc3afdaba99b", + "location_id": "25358fa8-956e-4478-b473-016f4733f856", + "payload": { + "number": "2122653495" + } + }, + { + "phone_id": "df3866a6-435a-47df-b90b-52fdfbac9476", + "location_id": "069b9234-5500-4a47-9b27-1dffea1b6e14", + "payload": { + "number": "3472210188" + } + }, + { + "phone_id": "df82a506-47fc-45be-a2f2-fcd69f6bf83c", + "location_id": "43a11a9e-9cb0-4810-8161-9fc1755cdcd8", + "payload": { + "number": "7184295309" + } + }, + { + "phone_id": "dff1f46b-870e-4871-84ef-775a7bbbd3e2", + "location_id": "f7d9b28f-14c7-4822-a280-c2ca2b87bc08", + "payload": { + "number": "8446632255" + } + }, + { + "phone_id": "e0108f87-0559-42dc-85ee-b73ffe5406b7", + "location_id": "6229adeb-0857-4617-a72f-3e1656246c47", + "payload": { + "number": "2124658304" + } + }, + { + "phone_id": "e012b40a-3abb-4245-8eab-378f73f2078c", + "location_id": "11b930b8-1133-4c96-9ace-43d1b8b46f08", + "payload": { + "number": "9292599430" + } + }, + { + "phone_id": "e08e55db-3c7e-4344-986c-838c0864f051", + "location_id": "2f9f9852-d767-466f-9aed-3e10be0f894b", + "payload": { + "number": "8002464646" + } + }, + { + "phone_id": "e0cf3eda-663e-4cea-b862-a2b6770d7a55", + "location_id": "812de1b3-5a53-4eb8-af78-8c00e0d03bcb", + "payload": { + "number": "6464960046" + } + }, + { + "phone_id": "e1629f9c-ee4c-4e70-a6c0-64c79393073c", + "location_id": "677ecc28-8773-4b26-bd4b-4b701518d43a", + "payload": { + "number": "7183986738" + } + }, + { + "phone_id": "e18e3726-d588-4a43-9fe7-e3052a68bade", + "location_id": "e0e21b33-e7f9-4cf3-a290-eb6035a9a64c", + "payload": { + "number": "2126961550" + } + }, + { + "phone_id": "e1947bbe-fa13-47a0-8dc1-3740655feab0", + "location_id": "65ce333a-65c3-426f-ab46-e1670d6764c2", + "payload": { + "number": "3473652244" + } + }, + { + "phone_id": "e19cfc33-842f-4a5d-890d-6fdd5a93bbfa", + "location_id": "c75b7e83-3c3b-4412-b17d-20f72693a278", + "payload": { + "number": "2128608613" + } + }, + { + "phone_id": "e1a29637-8255-4a62-a982-c5222fff25f0", + "location_id": "0589a5d4-0828-4778-ace9-4ad450599a33", + "payload": { + "number": "2129391000" + } + }, + { + "phone_id": "e1c19a7e-c493-488e-abde-9ec95ac7b5d6", + "location_id": "f4d6346d-2a60-48f9-8bce-561274dae07d", + "payload": { + "number": "7182575800" + } + }, + { + "phone_id": "e1c34256-fc57-4a11-b639-395e00cd7641", + "location_id": "8dafb345-8b13-4f8c-8825-764db1acb55e", + "payload": { + "number": "2125829100" + } + }, + { + "phone_id": "e1dd6fed-9b73-4bfc-bc8c-d3bb48117732", + "location_id": "052dd18b-76e9-4b1b-a5bf-904b69d6942b", + "payload": { + "number": "7184926641" + } + }, + { + "phone_id": "e1f685e3-523e-46aa-802d-8e59d428e5e5", + "location_id": "ee8963f9-b3b3-49c0-bbd2-f5115f565b3b", + "payload": { + "number": "9179741095" + } + }, + { + "phone_id": "e271dc8d-c750-4d4f-a0cc-e70d6d62ad9a", + "location_id": "b928c0a6-567b-4eba-b580-7de87d35b75e", + "payload": { + "number": "7188634057" + } + }, + { + "phone_id": "e294a581-c3c2-40c9-b3b1-696c417d2207", + "location_id": "f81f1048-5f56-4218-a141-40556fdfc1b8", + "payload": { + "number": "7186344784" + } + }, + { + "phone_id": "e2a0dcf7-5f5f-4eb3-8700-281561d62fbc", + "location_id": "337c0f09-e0f9-4309-ba8e-bf4420e2cb8a", + "payload": { + "number": "7187897050" + } + }, + { + "phone_id": "e2a21b72-37a3-43fd-9aee-0f299e3e08f2", + "location_id": "0c2c5490-01eb-49d9-8a06-19d05390e4c7", + "payload": { + "number": "2126952941" + } + }, + { + "phone_id": "e2c71943-7fd5-4379-98b9-41cea8aedce5", + "location_id": "74151e6b-630c-4214-9bbf-1f24671eeda7", + "payload": { + "number": "2129669537" + } + }, + { + "phone_id": "e2e09562-e4c5-47c1-af56-14b059cb9fff", + "location_id": "b11401ba-ceb7-406b-8157-b71c9015b049", + "payload": { + "number": "7182217700" + } + }, + { + "phone_id": "e3471e25-f235-492e-9570-389c9f6e3d81", + "location_id": "c055cf23-083e-47e9-b03c-b6cce5a8fd9c", + "payload": { + "number": "7183204466" + } + }, + { + "phone_id": "e3473b6c-9e3c-47b8-a92b-32889666ada9", + "location_id": "c2259db7-8ca5-437f-a456-1a39c460de10", + "payload": { + "number": "2013302014" + } + }, + { + "phone_id": "e3501ca7-f3c1-41b2-b386-df10158d26d9", + "location_id": "b41ce36f-81ca-4710-aec7-da6df8222251", + "payload": { + "number": "2128681650" + } + }, + { + "phone_id": "e36a7af7-3428-47d4-bfbc-7ecd3c6b05e2", + "location_id": "b41ce36f-81ca-4710-aec7-da6df8222251", + "payload": { + "number": "7182216703" + } + }, + { + "phone_id": "e388d512-89f8-45bc-8e7e-c1a5bff074dc", + "location_id": "4df35b5c-059e-4329-b272-b6cd80235016", + "payload": { + "number": "6467416411" + } + }, + { + "phone_id": "e3f7b98d-13bb-4462-a6a8-47cace7be5e7", + "location_id": "6f3e13c5-92a4-4b17-8191-decdb9921935", + "payload": { + "number": "2126631975" + } + }, + { + "phone_id": "e3ffd51e-f7d5-4d7b-aa1f-2a6df4414274", + "location_id": "6f262eb1-ff7b-4711-bb9e-e6ddee3ffe93", + "payload": { + "number": "6467624950" + } + }, + { + "phone_id": "e406a3e8-b2a8-4e66-bc3c-7b1a5b65f98c", + "location_id": "f9d878cc-6a44-4601-89e1-ea478276f220", + "payload": { + "number": "3475020749" + } + }, + { + "phone_id": "e406faf9-e7ba-4ea7-a464-b0a1b25b4928", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "7187223130" + } + }, + { + "phone_id": "e428fae3-fd29-4fb5-aa9b-7280c54669af", + "location_id": "d81c286e-1f76-435b-aa76-6e240fb0cb87", + "payload": { + "number": "9173057700" + } + }, + { + "phone_id": "e42b0044-340b-486e-a25e-83441a8184f3", + "location_id": "a75bd017-3765-4298-9e32-1957b46c623b", + "payload": { + "number": "2124814704" + } + }, + { + "phone_id": "e42c1ecc-6e0d-4e5c-8ac5-d674e0f3c683", + "location_id": "7de42e40-4c50-43b4-b655-12ac8b20013c", + "payload": { + "number": "6469746262" + } + }, + { + "phone_id": "e43b47fb-b26d-4e23-8a80-af711abb6d87", + "location_id": "ccfc9914-f0bc-4aac-9e2e-78b663fc7429", + "payload": { + "number": "7183868151" + } + }, + { + "phone_id": "e4438bcd-8086-4040-999b-5bc0c96859b6", + "location_id": "e019485d-5199-4acc-8e95-8db83f4a719a", + "payload": { + "number": "2122887724" + } + }, + { + "phone_id": "e45cd437-c010-46a1-aea5-bafc53848464", + "location_id": "f3b469df-26ce-4389-b58d-5c48f117bfef", + "payload": { + "number": "9178179343" + } + }, + { + "phone_id": "e45fc9d8-648c-40ce-8ea7-d3b4ac881f45", + "location_id": "63da6e12-b827-4690-808d-7a03a811d6aa", + "payload": { + "number": "7183743371" + } + }, + { + "phone_id": "e479cde9-72a3-4281-a9ad-df68542b7ce1", + "location_id": "daa6b745-a071-4ba3-9c87-6b94cf610b8a", + "payload": { + "number": "7183858726" + } + }, + { + "phone_id": "e48b752f-1f22-42e0-9f36-8eebd762ba92", + "location_id": "0208f380-20d6-461e-9f0f-01ea7adfb9bd", + "payload": { + "number": "7186531117" + } + }, + { + "phone_id": "e4a7dee1-e2cb-4d44-b76c-118c59161560", + "location_id": "fb512a3d-7e1f-40a6-b6cd-3d76b159209e", + "payload": { + "number": "3473153472" + } + }, + { + "phone_id": "e54f9492-4567-40d4-9efc-3cd8ecce043c", + "location_id": "45c04f29-8e29-41cd-a7b1-1b0071b7327b", + "payload": { + "number": "7183615454" + } + }, + { + "phone_id": "e5544019-4e57-49a2-b8b3-156e9fd2ee71", + "location_id": "c0956288-d6db-4af5-a561-c3fbf5122da5", + "payload": { + "number": "9174261242" + } + }, + { + "phone_id": "e577805f-a5b5-40d5-a413-596d2073cbd2", + "location_id": "d839f843-d6ad-4ebd-98d2-442f40a3b07e", + "payload": { + "number": "2124160197" + } + }, + { + "phone_id": "e5a97d24-3fb3-4dca-a859-23463a9f6809", + "location_id": "272bf16c-1483-4157-9bbf-c642f34ab75b", + "payload": { + "number": "7186227323" + } + }, + { + "phone_id": "e5e037e1-227b-4d29-9241-e4b244913e33", + "location_id": "c5f91b44-3cca-4967-a1b5-7ba8fd7257b2", + "payload": { + "number": "7189515352" + } + }, + { + "phone_id": "e5e9879f-ca7e-4706-a6ab-a8b907e54e74", + "location_id": "02c16d40-4c3f-46aa-a87d-6ab95bffab5e", + "payload": { + "number": "3476181162" + } + }, + { + "phone_id": "e5f174ed-7ada-42fc-a044-71427e6064f9", + "location_id": "9df2dfa1-6cd8-47e5-b597-01aa517826f9", + "payload": { + "number": "2122651826" + } + }, + { + "phone_id": "e5f57f1d-ebea-4f28-9e92-3086cb2846d7", + "location_id": "f296a419-2d35-45b3-a7d3-05f932d3b4f9", + "payload": { + "number": "2125536300" + } + }, + { + "phone_id": "e608fcb1-c8b4-4faf-98b5-da010cf03986", + "location_id": "542d6cdc-7153-4503-afcf-fe817d919c38", + "payload": { + "number": "2127259200" + } + }, + { + "phone_id": "e641c6b2-397c-4d94-a1f3-907687063048", + "location_id": "7e2fc0d8-d5f7-480f-9dcd-8d366115e8e7", + "payload": { + "number": "7188825000" + } + }, + { + "phone_id": "e66871d9-a016-4d1d-a6c8-14c3b3fc75a4", + "location_id": "5ad292c7-af3f-41e7-bece-7711edbd1aa7", + "payload": { + "number": "2123628755" + } + }, + { + "phone_id": "e68d61da-5143-4d51-aa8b-8c2949898dba", + "location_id": "67f62bc9-7304-4f2c-b034-5bb161470ccf", + "payload": { + "number": "7183608186" + } + }, + { + "phone_id": "e6ae492f-852d-4c38-b2cc-f750f8a48617", + "location_id": "19aadb92-49f5-4195-b1ac-c600f7f1920d", + "payload": { + "number": "7189638000" + } + }, + { + "phone_id": "e6bbb855-dd88-4b5b-be2f-1cd7ef4b8d48", + "location_id": "49875c1b-89fd-4c3a-8b16-4dda33995e01", + "payload": { + "number": "2126336900" + } + }, + { + "phone_id": "e6c0f3f0-ef69-400d-a018-ab4c087ac9db", + "location_id": "9fb9ff92-6ab0-45e1-99f4-c0ff1a3052e0", + "payload": { + "number": "6463696905" + } + }, + { + "phone_id": "e6feb393-bd28-4fa0-a81d-897c02590c7b", + "location_id": "a2e5f115-239f-4af7-9a51-f843577b245b", + "payload": { + "number": "7189458640" + } + }, + { + "phone_id": "e732cbe6-5d56-49f2-ac34-5a26cc0d2725", + "location_id": "97016f6c-6e51-4ecf-8c78-27b42cf3efa1", + "payload": { + "number": "7189933859" + } + }, + { + "phone_id": "e77562f4-849a-4c9a-ab1a-3830bd846539", + "location_id": "318ccaf2-b9c4-44b9-bc02-5c3de46631a9", + "payload": { + "number": "7187268484" + } + }, + { + "phone_id": "e7862788-290a-409b-881e-dddb9a90aa3d", + "location_id": "2fb7b97d-f310-4d72-aebf-532e8e636688", + "payload": { + "number": "7188296770" + } + }, + { + "phone_id": "e7d0ceef-6117-41ec-96ee-6c06ca1c75bc", + "location_id": "ae141704-4e85-48b5-b94b-102fbdc58745", + "payload": { + "number": "7183222500" + } + }, + { + "phone_id": "e8359a37-6adf-4421-8222-b9cb4e4e1573", + "location_id": "25f89148-5b86-4365-9f6e-5b5a5edafb3a", + "payload": { + "number": "9174921019" + } + }, + { + "phone_id": "e87749c3-ec45-46fa-b143-acfea9c5b4eb", + "location_id": "8e64ab0e-b82b-4460-b476-f9263ef5ed24", + "payload": { + "number": "7189938880" + } + }, + { + "phone_id": "e8784e57-aafe-45b6-a01f-7be689bc0819", + "location_id": "997e831e-cc84-48c1-a00e-5b82981a7574", + "payload": { + "number": "8667674692" + } + }, + { + "phone_id": "e8aff602-f736-49f4-b33e-7a37889ea53c", + "location_id": "ababb6b8-7333-4605-9b81-045969deeb1b", + "payload": { + "number": "7186748487" + } + }, + { + "phone_id": "e8cca4bb-3b8f-4ad8-9af5-64fa09c40fe0", + "location_id": "54b5c5e1-dc79-4eb9-9b25-4b67dd5ac2b3", + "payload": { + "number": "2126021400" + } + }, + { + "phone_id": "e8e35ea5-a852-4645-8e9e-6fc9054ae876", + "location_id": "efa2c81d-11d2-42a5-82fb-1b176bd80e41", + "payload": { + "number": "7184661806" + } + }, + { + "phone_id": "e8e3f464-8e67-4c2b-9b94-7319f95ce5e0", + "location_id": "a2c9e50d-6b5b-4d68-baf7-eb93472ee725", + "payload": { + "number": "6463064492" + } + }, + { + "phone_id": "e9046c74-9d35-416f-84c8-81f9266c40ab", + "location_id": "0bd383ad-95f0-4eb4-b019-2bb799a6f2cd", + "payload": { + "number": "7182340073" + } + }, + { + "phone_id": "e919f65b-106e-4f4e-b4ca-0f9aec481f30", + "location_id": "ddcf5380-8d31-4b5d-a5c7-9759fb48053c", + "payload": { + "number": "7189818828" + } + }, + { + "phone_id": "e91c3c17-ae68-417b-81f5-d0705a865db7", + "location_id": "7bbff4f0-03f4-48d6-9396-a56898a10a41", + "payload": { + "number": "2126637772" + } + }, + { + "phone_id": "e9285c05-f06f-46e2-a14c-a1ac4acca9e5", + "location_id": "ac6e3b0b-8fb8-4a7e-a507-9a32bd72f4ea", + "payload": { + "number": "2129875100" + } + }, + { + "phone_id": "e93c442c-cbfe-4770-b9b7-76b90d8eeb72", + "location_id": "fb7c0b56-3872-48af-8f38-8fd83f2f56c2", + "payload": { + "number": "7182622000" + } + }, + { + "phone_id": "e941d56d-73c2-40f2-b9af-c00c58f88803", + "location_id": "048d2a70-c3b0-432f-b358-be98ebfdd5e5", + "payload": { + "number": "3472068224" + } + }, + { + "phone_id": "e9459d37-5400-413f-bb31-ca254bb30871", + "location_id": "3276b16e-7659-469f-b5dc-1a9d7e65ad3b", + "payload": { + "number": "2127802500" + } + }, + { + "phone_id": "e94ea2f3-218d-4a06-8ec8-4f4a18307837", + "location_id": "40e8d84c-d99b-4720-aae1-92895540fd46", + "payload": { + "number": "7188150800" + } + }, + { + "phone_id": "e9690d49-08b7-4c9c-a53f-574f5d708d2a", + "location_id": "772245f3-dd84-4781-802b-3e9f7d42672d", + "payload": { + "number": "7185236868" + } + }, + { + "phone_id": "e99e86e4-f587-475e-8640-a7dc72592274", + "location_id": "e019485d-5199-4acc-8e95-8db83f4a719a", + "payload": { + "number": "2122886743" + } + }, + { + "phone_id": "e9bcf5cb-cb25-43c1-bee9-919a0f72b6c7", + "location_id": "6a242480-6c9f-4380-a99a-adffea6a1c75", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "e9c1fa60-9030-4f48-9c49-e158aaf6e9d9", + "location_id": "da5b064e-9ca5-40c8-afcc-83f44acd4afc", + "payload": { + "number": "7184755293" + } + }, + { + "phone_id": "e9c5c3fe-6806-4dcd-b4b2-45ba309e7d0d", + "location_id": "1e03e854-8e5d-4655-8408-a602579f0927", + "payload": { + "number": "7189754888" + } + }, + { + "phone_id": "ea5a9229-6283-49cc-9364-1dcffe35c160", + "location_id": "f2b78ee8-468a-494f-8198-4fb2fe534cf7", + "payload": { + "number": "3473387416" + } + }, + { + "phone_id": "ea6e28a5-e040-4faa-bd2e-4f50f0c247f0", + "location_id": "dbf907a5-5540-40da-bb7c-4392edc3198e", + "payload": { + "number": "6465821200" + } + }, + { + "phone_id": "ea7e0d43-523b-4211-8c11-74d7dbbc1dd4", + "location_id": "9ae0b313-4865-404d-8a46-ccace9a7f0eb", + "payload": { + "number": "3476886655" + } + }, + { + "phone_id": "eab94c8a-4169-424e-8ef2-bf64bd47cb66", + "location_id": "2cdd0612-adff-43a4-9125-a7cd3b5de51b", + "payload": { + "number": "2128013300" + } + }, + { + "phone_id": "eb2e572d-17e1-4bff-9346-15a9ec3f05bf", + "location_id": "1d968ea2-8422-4a07-9658-1c100325fc7d", + "payload": { + "number": "2128644128" + } + }, + { + "phone_id": "eb67cb43-9372-465c-b60b-21356a095032", + "location_id": "67b94f47-36b0-41f5-b56e-221b08f20e19", + "payload": { + "number": "7185847204" + } + }, + { + "phone_id": "eb69092e-c048-4285-a318-90847fe3363b", + "location_id": "282af04c-6da6-45da-a0d5-3032467d07ac", + "payload": { + "number": "2128408484" + } + }, + { + "phone_id": "eb7f7ad9-510a-47e7-9aee-a6478baada27", + "location_id": "0cf6c682-44b5-47cb-aac0-ca24056a9898", + "payload": { + "number": "6464005292" + } + }, + { + "phone_id": "ebb2ba63-b41d-4521-983f-6b7a381bb2d8", + "location_id": "53646062-6c3d-4026-a1f5-41e89b8abf47", + "payload": { + "number": "6466725200" + } + }, + { + "phone_id": "ebfd6656-93f1-42ef-93ed-99f4423317c0", + "location_id": "83a35332-2d09-40d3-afee-206dc0a1c9b7", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "ec1ca6cd-cf34-46ff-a59f-61e6c16a43bb", + "location_id": "4b4e0c0e-718c-4422-9cf9-37764b1b1cd3", + "payload": { + "number": "7182204892" + } + }, + { + "phone_id": "ecbe1211-b8e0-435c-9e9e-c82b325b4a0e", + "location_id": "1d065961-27d7-42ea-a2ea-9839196b00f3", + "payload": { + "number": "9178432451" + } + }, + { + "phone_id": "ecd96f6b-907c-49bd-9585-5abcb1af8f54", + "location_id": "1ac28716-ef0a-4f4e-88db-57035a456b64", + "payload": { + "number": "7187486919" + } + }, + { + "phone_id": "ed0a4601-1b35-4082-b998-075137d5925e", + "location_id": "a5812581-6d5f-464e-a8b7-e74b0998cff2", + "payload": { + "number": "2124260088" + } + }, + { + "phone_id": "ed2806b3-9102-4ae4-bbe3-ed434b990ba1", + "location_id": "d000ac49-5d40-43eb-94df-3e6b87713fbb", + "payload": { + "number": "7184015700" + } + }, + { + "phone_id": "ed66b894-8601-459e-9e67-3b100ba2c396", + "location_id": "ce6c19c8-d2dd-4fca-b481-5b7e0b91de06", + "payload": { + "number": "9292015512" + } + }, + { + "phone_id": "ede8913c-0baa-4518-a3a7-fe7f05727b5d", + "location_id": "efa2eeba-bffe-4e51-afc4-8674ca5b2e1d", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "ee0e35ae-832e-48d6-b055-0bf903037606", + "location_id": "831ec192-b5aa-4ca4-b42e-63dca3ef4268", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "ee2591fd-8ca2-4dc1-91b2-e38546e5553f", + "location_id": "c2128e56-99d0-4c8c-a4b5-1c31d089f5db", + "payload": { + "number": "2129624795" + } + }, + { + "phone_id": "ee5a3ae0-645e-4290-b46e-a9a247cdd57d", + "location_id": "8c001f45-47fd-4d3e-964f-fdce8111cd5a", + "payload": { + "number": "7189932789" + } + }, + { + "phone_id": "ee64ad8c-3b21-47fa-b514-4aac8ef762f0", + "location_id": "41549e32-22b1-46a5-8bcd-a9eda0a3cfe3", + "payload": { + "number": "6465768669" + } + }, + { + "phone_id": "eec7213e-6995-4616-8437-efa6d5e93032", + "location_id": "76b4ce1f-83d0-4bfe-b135-532a173b84a8", + "payload": { + "number": "7189918400" + } + }, + { + "phone_id": "ef76103a-7c80-4e9e-93c1-eca4f06f06b8", + "location_id": "4955d5ed-05c1-4ea0-867d-df00ccf9c4d2", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "ef8e3285-cfc2-4bef-9b78-713328956e5e", + "location_id": "93dc7a44-3f9a-4ce1-83f2-995b3f93ddea", + "payload": { + "number": "2127141141" + } + }, + { + "phone_id": "efb01b9b-6bca-4603-8e14-2e6c80d71851", + "location_id": "99ed1b63-036b-457a-83df-884a230807b6", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "efbe1aac-5583-45dd-a5f5-1b22fdd34997", + "location_id": "de3c23b0-1050-43a1-a8d5-80fc9c7969b9", + "payload": { + "number": "7186386121" + } + }, + { + "phone_id": "efc65ff3-1d92-48d3-9470-7ed9bed8c5c2", + "location_id": "75244352-0e5a-488f-a0d0-cc199120091d", + "payload": { + "number": "7186523288" + } + }, + { + "phone_id": "efcc8410-18bd-4057-af16-dc456aa9a789", + "location_id": "d0b49a8c-c83d-46ec-b327-6b6ffeb05f81", + "payload": { + "number": "7189457150" + } + }, + { + "phone_id": "efd38855-4d90-4d85-81e1-58aa795aad05", + "location_id": "699fc06c-eff8-4fab-926b-4e995daa2be7", + "payload": { + "number": "7185037700" + } + }, + { + "phone_id": "efd62d10-1afa-4bb0-96a1-66b3960e1619", + "location_id": "38306dea-c02b-4e27-821a-1fe148277243", + "payload": { + "number": "2127404335" + } + }, + { + "phone_id": "efeb107e-110d-4fc6-bcfa-9e310ff97bf8", + "location_id": "12479616-969b-4ca6-9ba6-6292e346e2bc", + "payload": { + "number": "7188166172" + } + }, + { + "phone_id": "eff46b6c-67d0-4b80-826d-24160d17a651", + "location_id": "500d752b-06b8-4cd5-883a-14c10c4d2612", + "payload": { + "number": "7185679311" + } + }, + { + "phone_id": "f01c01fe-69f5-4826-b103-2af53b97cd52", + "location_id": "f2412831-5ecb-4143-a875-4b121b8f0d5c", + "payload": { + "number": "7187837329" + } + }, + { + "phone_id": "f01c8d5b-6b26-48b8-8cb2-98ecf163765b", + "location_id": "72370466-5936-4b87-81fb-896e506517e2", + "payload": { + "number": "2122335032" + } + }, + { + "phone_id": "f0a00bd0-5880-4713-bd5c-d3c679989de6", + "location_id": "9f3bb245-24ee-4d69-96c9-c17c15bafe05", + "payload": { + "number": "9292653600" + } + }, + { + "phone_id": "f0f0f8fb-10c7-4dd9-8416-80ee083e70b6", + "location_id": "b2c2c918-f50d-451b-8bf6-b6f800ea76f5", + "payload": { + "number": "7184182749" + } + }, + { + "phone_id": "f1059cce-a556-4e3f-bfa9-02554bfa0b9a", + "location_id": "9019f2c1-7664-49dc-9499-9c92f11566f0", + "payload": { + "number": "7185283535" + } + }, + { + "phone_id": "f14b3425-e495-42ab-a819-051661d0ca39", + "location_id": "24ed5c35-50fb-433b-84de-d8653209a70b", + "payload": { + "number": "7185273776" + } + }, + { + "phone_id": "f14dd937-5128-49c2-a171-ba6d1da7fe7f", + "location_id": "a7f62f69-0b8e-4d7b-b624-808f35226cfc", + "payload": { + "number": "9177950390" + } + }, + { + "phone_id": "f159aab3-4df9-4169-a282-f791ca9f63fe", + "location_id": "394e2430-e328-49b6-8d4e-03479afa2fb6", + "payload": { + "number": "7187226001" + } + }, + { + "phone_id": "f1b20ed2-4033-4332-9b03-e19da071294e", + "location_id": "3d732b69-ab24-4a29-9471-72c9e0936290", + "payload": { + "number": "7185754500" + } + }, + { + "phone_id": "f24f1c23-e631-4fd9-bc40-f8b753e03ae3", + "location_id": "f06e329b-3034-461e-ab02-71f2d05271e4", + "payload": { + "number": "7189566800" + } + }, + { + "phone_id": "f2932a35-c35a-4860-b7cc-cbc6042a96c4", + "location_id": "0e5a7b8e-0975-4873-aaae-9647e9a805ee", + "payload": { + "number": "7185273776" + } + }, + { + "phone_id": "f29b1779-d221-465b-b8f1-b21b0937bfd1", + "location_id": "2ad853e2-ea14-4d44-9731-50472060a8be", + "payload": { + "number": "9297660960" + } + }, + { + "phone_id": "f2abfbf5-317f-4dbf-81f6-43b84240c7f6", + "location_id": "5465bc20-996d-4ec3-a8b8-363a6c0a5787", + "payload": { + "number": "7184542100" + } + }, + { + "phone_id": "f2c7b01d-eb2c-4137-897a-605428aeebfa", + "location_id": "a15ef6b6-832a-40bc-af9b-ab877bb71926", + "payload": { + "number": "3473472456" + } + }, + { + "phone_id": "f307009e-fac7-405e-81ce-e02da2a46b32", + "location_id": "483d3ebf-15db-47cd-8d2f-f71d926b3f35", + "payload": { + "number": "9179355646" + } + }, + { + "phone_id": "f31a78cb-c9f2-4e6d-850f-b12da0dc3909", + "location_id": "fe3355f3-0760-41a2-814d-b46ccb4583dd", + "payload": { + "number": "2123603255" + } + }, + { + "phone_id": "f341fc7a-a800-41ea-aa9d-0cbb2c994d05", + "location_id": "675b9846-0741-4a5e-a2ec-5db622f717ef", + "payload": { + "number": "7183668721" + } + }, + { + "phone_id": "f34a4c87-9b3f-42d5-a71f-5e6d928c2cfa", + "location_id": "37d368fb-6bb3-4303-9af6-0de6ebad29ea", + "payload": { + "number": "8446632255" + } + }, + { + "phone_id": "f34f6282-5c68-44bc-8a12-11ba34baee44", + "location_id": "cf34631c-da0b-489c-a947-7bd11217c119", + "payload": { + "number": "7186916464" + } + }, + { + "phone_id": "f35fed5a-511e-4a05-a95b-1fdb4df16a07", + "location_id": "7e29ee8c-d108-4a98-93e5-57c1b691f09d", + "payload": { + "number": "6464120600" + } + }, + { + "phone_id": "f39320c9-d0ca-42d6-8f38-288e47c39a2c", + "location_id": "bf34a2c7-cffa-4ab2-8bbc-2c2f8524849b", + "payload": { + "number": "3474220667" + } + }, + { + "phone_id": "f3a0a7a7-85cf-41dc-b05a-62dca5b5c7d7", + "location_id": "c4d90c0f-b872-4f00-a502-47f5f8c34052", + "payload": { + "number": "7184785502" + } + }, + { + "phone_id": "f3a4b150-c439-47bb-b513-8a7ccf47e508", + "location_id": "0aeaeca9-4c98-406b-8cc6-81974c659ba4", + "payload": { + "number": "7186853850" + } + }, + { + "phone_id": "f3dc372a-4a47-442c-a83f-57db1be0cad6", + "location_id": "7c314113-0222-43c3-8ec1-35bc009d50ad", + "payload": { + "number": "7185733973" + } + }, + { + "phone_id": "f4254d3b-8345-4b38-9fda-642636ce649e", + "location_id": "c2d48e67-4673-4750-993c-2d2575b603da", + "payload": { + "number": "7189041333" + } + }, + { + "phone_id": "f42b35fa-6fd8-4de1-a330-93c6561dcbca", + "location_id": "ccb7882e-fe8e-4d4e-8264-e72704fa79f2", + "payload": { + "number": "7186739802" + } + }, + { + "phone_id": "f42be590-4c8d-4714-9b45-07ecb09b4a6b", + "location_id": "8fed5bd3-0055-40f5-9408-ade4cbd88c39", + "payload": { + "number": "8888887702" + } + }, + { + "phone_id": "f42fa07e-f59e-46f3-985f-ec15489fd92a", + "location_id": "52c430b7-f032-430a-ba69-8d692eb13bf6", + "payload": { + "number": "7185386112" + } + }, + { + "phone_id": "f432470d-ed72-4e04-8d03-145ef671ff5e", + "location_id": "d81c286e-1f76-435b-aa76-6e240fb0cb87", + "payload": { + "number": "9173057921" + } + }, + { + "phone_id": "f44a39a2-0a30-4755-877e-802fbb09531a", + "location_id": "28d3e03c-647d-462c-a78c-d71e33092075", + "payload": { + "number": "9176262099" + } + }, + { + "phone_id": "f44d8683-9039-4f01-84de-7fe66520c89f", + "location_id": "fea9a01c-414a-4432-8026-36f69f8d464a", + "payload": { + "number": "7187164400" + } + }, + { + "phone_id": "f483e354-29ea-4a27-8575-709bda12404b", + "location_id": "70d1ba28-1316-4d6b-a435-0c5dfd849d8b", + "payload": { + "number": "3474751630" + } + }, + { + "phone_id": "f4a4e5e4-d215-47b8-afd6-cbc85d3cb886", + "location_id": "d72eda6f-e707-461c-9550-8b816231a855", + "payload": { + "number": "8556818700" + } + }, + { + "phone_id": "f4aab245-a48f-4184-867c-8ccbd024c93e", + "location_id": "35f22686-d11c-4667-bb3c-064fb7dd610e", + "payload": { + "number": "2129963949" + } + }, + { + "phone_id": "f4c87a6c-f87e-4f01-96b1-d681628736a9", + "location_id": "8ad1f7c6-c27f-44c5-a842-2b2b05f5aea9", + "payload": { + "number": "7186760876" + } + }, + { + "phone_id": "f4d0428d-5d20-4e4e-8401-e4179c399dac", + "location_id": "d6a72687-442f-4c6c-9354-13a0463dd8a6", + "payload": { + "number": "7182788114" + } + }, + { + "phone_id": "f4e63c14-d6f7-4111-8d55-4de602f3df02", + "location_id": "964d1dbc-c327-4ce3-abbb-c6cc44e59529", + "payload": { + "number": "7183883176" + } + }, + { + "phone_id": "f51674f2-fb93-4229-b574-c17541b462eb", + "location_id": "c3421f98-58ad-485a-803f-dcabe3efbb53", + "payload": { + "number": "7185236868" + } + }, + { + "phone_id": "f51b015e-671d-4fb3-86a3-d880c45ae8ab", + "location_id": "7bbff4f0-03f4-48d6-9396-a56898a10a41", + "payload": { + "number": "2122839180" + } + }, + { + "phone_id": "f550ad72-1f76-42f1-82c5-fd2c23c2f131", + "location_id": "4e684d38-c163-4660-aef8-c2aa18659364", + "payload": { + "number": "6464853954" + } + }, + { + "phone_id": "f55dc656-fa9b-4853-ab8d-e512d279eee6", + "location_id": "40e8d84c-d99b-4720-aae1-92895540fd46", + "payload": { + "number": "7184483470" + } + }, + { + "phone_id": "f590e907-dfeb-42cc-9080-0ac4c18dac84", + "location_id": "b47dab4d-bafc-4578-a643-715d3939d9fe", + "payload": { + "number": "7183857305" + } + }, + { + "phone_id": "f5bb4774-20d4-427a-ac14-d6dcd4df6b59", + "location_id": "572fa99e-20b3-45a3-ab99-a901f6500031", + "payload": { + "number": "7185582046" + } + }, + { + "phone_id": "f6191118-e848-46dc-a0ac-7e239b9d275d", + "location_id": "515a3940-3732-43e1-a939-fd5d859173e3", + "payload": { + "number": "9294158745" + } + }, + { + "phone_id": "f6bb1534-0d4b-4d75-9bff-148b913180cf", + "location_id": "635d2e2d-1300-4a8e-9606-4143b7d8a066", + "payload": { + "number": "7184556010" + } + }, + { + "phone_id": "f6e78950-3d54-41d4-9d18-a02706670f66", + "location_id": "d428c9b2-9fa9-47ff-8827-9dd8cc49f2f4", + "payload": { + "number": "2122278401" + } + }, + { + "phone_id": "f707a6e7-441d-4ce4-b307-32f3a0181f94", + "location_id": "1183109b-0c37-4dc0-9440-c53b6e6d33ca", + "payload": { + "number": "7189190740" + } + }, + { + "phone_id": "f7254db9-3dcd-466b-8bc0-e8f5c617d7ba", + "location_id": "0018e7ae-f5a4-420c-93c8-f2fe8daa862a", + "payload": { + "number": "2123496009" + } + }, + { + "phone_id": "f7436b37-279b-4f2e-90d5-cf3963e3288a", + "location_id": "57ef704c-80f0-449a-bb5f-07574ef90b24", + "payload": { + "number": "2126639732" + } + }, + { + "phone_id": "f7c556fa-59fb-477d-8cf8-8868b5c85869", + "location_id": "2daa4316-8eac-4743-b935-fc0af28ead49", + "payload": { + "number": "7182490755" + } + }, + { + "phone_id": "f7d42555-fdd5-405a-a404-8a4c267d0316", + "location_id": "df08a661-6755-44c1-970b-347aa863e3f7", + "payload": { + "number": "7186382635" + } + }, + { + "phone_id": "f7e66638-cf96-4323-af40-74ec953dddfb", + "location_id": "87b29391-2abe-41e8-a29b-f3112e451bc7", + "payload": { + "number": "6466456909" + } + }, + { + "phone_id": "f7e775c8-94cb-4ff0-96f2-86a3f15e045c", + "location_id": "0004f34b-f9a7-4a05-a6f4-b5c2387579df", + "payload": { + "number": "7184556864" + } + }, + { + "phone_id": "f8401bd6-3154-462a-b406-6fb734bd8d92", + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "number": "2123796998" + } + }, + { + "phone_id": "f9018a14-5124-49b6-9550-9f1f74a00814", + "location_id": "5ff35adb-019d-4508-9621-9056281c0e68", + "payload": { + "number": "2128315020" + } + }, + { + "phone_id": "f9100348-14df-4b1b-a72a-4563957cb54a", + "location_id": "7bd66f6a-fe6d-4274-9291-b9eb60a1106f", + "payload": { + "number": "7187350200" + } + }, + { + "phone_id": "f9afa94f-222f-4c89-85ce-19530a484895", + "location_id": "28c47a84-ff6c-4695-899a-b52de6ada8de", + "payload": { + "number": "7186587821" + } + }, + { + "phone_id": "fa237d7c-a4a8-448e-a64d-ce191daf9229", + "location_id": "772245f3-dd84-4781-802b-3e9f7d42672d", + "payload": { + "number": "7182256750" + } + }, + { + "phone_id": "fa8a8e6e-7152-4859-8578-d0645ee5088c", + "location_id": "ce70795b-9bdd-4f8f-b95c-976c1919d672", + "payload": { + "number": "8446924692" + } + }, + { + "phone_id": "fad6f16f-0179-4604-9e8d-31f73f9a9416", + "location_id": "35f22686-d11c-4667-bb3c-064fb7dd610e", + "payload": { + "number": "9175724127" + } + }, + { + "phone_id": "fb4d5d70-2f21-49a2-8a91-fcf751e856fd", + "location_id": "fa815d7f-fbd5-49f2-ac79-c7e17d4839c6", + "payload": { + "number": "9146067621" + } + }, + { + "phone_id": "fb709c0f-d3a1-4529-95c5-cf3ed7b26839", + "location_id": "13ee9e1d-5eda-4629-a872-4c5b1677d759", + "payload": { + "number": "7185884545" + } + }, + { + "phone_id": "fb899e2a-8e26-406e-a173-f4a38b236639", + "location_id": "b7e06372-1233-4549-bcae-d3ff94c38015", + "payload": { + "number": "3478540170" + } + }, + { + "phone_id": "fbb3e5f2-c8b6-453e-b246-4e4f81ab0e62", + "location_id": "d6706f67-8235-4562-a014-2342e6932048", + "payload": { + "number": "7184155777" + } + }, + { + "phone_id": "fbb8c6e6-dac7-4026-aa48-109072a797d0", + "location_id": "2223f711-1722-4270-b7f1-64a4c7a959d2", + "payload": { + "number": "7186211081" + } + }, + { + "phone_id": "fc0d7f08-d0ab-427d-ab75-beb907b636fe", + "location_id": "93a8bac2-d3a3-43f3-acd6-674f9da98886", + "payload": { + "number": "9296568515" + } + }, + { + "phone_id": "fc2acfd2-130f-4924-8011-4733fcfb688b", + "location_id": "e2dbd70e-44e3-4cc2-9c55-58331a42c568", + "payload": { + "number": "7187430575" + } + }, + { + "phone_id": "fc2e6a6c-1087-4ab6-89db-e9ab209d64a6", + "location_id": "dc42b64b-12f2-42d3-ae25-9bf02f956a36", + "payload": { + "number": "7182945891" + } + }, + { + "phone_id": "fc348aee-f47e-4d55-8198-5b240106d8b3", + "location_id": "c34693bc-2371-4be0-b992-91b230c64158", + "payload": { + "number": "7188177900" + } + }, + { + "phone_id": "fc5b094a-bcf1-4c30-8352-8010a2317198", + "location_id": "c83b4470-6192-480b-b027-586402afadc5", + "payload": { + "number": "7182997567" + } + }, + { + "phone_id": "fc8ffc9a-d779-4685-bbd6-05c1a5af35bf", + "location_id": "fc5edf0d-f2be-4151-814c-6e2b6608044c", + "payload": { + "number": "2124415000" + } + }, + { + "phone_id": "fcafc6a9-e94b-4730-9194-ad7f38a03ee1", + "location_id": "1426cba4-c76c-4b93-9307-5bcd3cb01cda", + "payload": { + "number": "7183871600" + } + }, + { + "phone_id": "fccf66a6-953c-42ef-a6aa-861611870ea6", + "location_id": "9115cdb2-92aa-413c-ae5b-47f02ec6bd07", + "payload": { + "number": "7185307002" + } + }, + { + "phone_id": "fd2f1830-b24e-4cc6-99c8-dfc6fc749f78", + "location_id": "3ff0a076-8d78-4ff6-961b-2a6e4da48e68", + "payload": { + "number": "7186439700" + } + }, + { + "phone_id": "fd8826d1-8979-48f5-a548-726212d171f3", + "location_id": "be4d39a1-b658-4900-ad1a-9e5132f109fa", + "payload": { + "number": "7184141222" + } + }, + { + "phone_id": "fd97d280-8fe4-48e9-b26a-c250c40f07f9", + "location_id": "60345ee8-707c-4ae0-9dc4-9636448ea1ab", + "payload": { + "number": "7188304000" + } + }, + { + "phone_id": "fd9cff06-4a03-4b4e-a17b-380077bd8372", + "location_id": "75b43a8a-15fc-4a75-9e64-9554264789cb", + "payload": { + "number": "7189430580" + } + }, + { + "phone_id": "fdbec83f-cd28-4abc-892c-cf787ad7ffa5", + "location_id": "438e5113-796f-4899-835a-767ed5f23368", + "payload": { + "number": "2126267374" + } + }, + { + "phone_id": "fdfaee0a-9c4c-4bdf-844e-a28346d521a7", + "location_id": "7cc41f0a-b476-4146-9b3f-15397a586519", + "payload": { + "number": "2127877710" + } + }, + { + "phone_id": "fe3fbd68-b564-4234-acec-8a2d8b9dc03b", + "location_id": "e6be7dd5-9309-44da-88f4-a7fd91954d9a", + "payload": { + "number": "7183564323" + } + }, + { + "phone_id": "feaef5db-cac6-47d2-8a98-f738ad093945", + "location_id": "eab4cd5e-4b4d-4f1e-a9e8-dcd10ca4537f", + "payload": { + "number": "2125311300" + } + }, + { + "phone_id": "fec173e9-f448-41d5-9233-aa2184bcac08", + "location_id": "b6f21a51-42f2-48f9-89d8-1952d4993e67", + "payload": { + "number": "7185262984" + } + }, + { + "phone_id": "fed57139-d2a9-421a-84ec-711fc7e448ca", + "location_id": "7e96599f-b9a9-42e1-8e33-649efd261677", + "payload": { + "number": "2126625536" + } + }, + { + "phone_id": "ff09faea-eaf8-44ea-8e3b-103bbd6fdb8c", + "location_id": "43743951-951a-4acf-837d-f79075917e1b", + "payload": { + "number": "2129674100" + } + }, + { + "phone_id": "ff1af702-b3f7-46d1-b994-85394f823de8", + "location_id": "43c6d99f-4280-4010-85cb-8d7339d045dd", + "payload": { + "number": "2126302302" + } + }, + { + "phone_id": "ff27bf83-74af-4ad5-84a7-f39a828aa177", + "location_id": "77429d4e-77bd-4bb9-bd0a-880d4a2a9e0a", + "payload": { + "number": "7184398160" + } + }, + { + "phone_id": "ff5100a7-86b1-4357-a731-278cacec80bb", + "location_id": "2f40c4fd-a40a-474c-a035-19bda8379e67", + "payload": { + "number": "2127914590" + } + }, + { + "phone_id": "ffa2cbb6-49cd-4801-b3c8-d04a8dc289cc", + "location_id": "661c5f5d-adbe-4c26-95f0-e7f6595d1439", + "payload": { + "number": "7182452621" + } + }, + { + "phone_id": "ffb2691d-4d39-444f-9b05-02f510fd41ad", + "location_id": "bdb2ff04-2283-4d8b-a24d-2ba5e219488b", + "payload": { + "number": "9175648700" + } + }, + { + "phone_id": "ffbe3b48-9ee9-441f-84b6-f942d3de99f7", + "location_id": "e14e7016-de10-4dbb-8630-25be9b5a186b", + "payload": { + "number": "7182525540" + } + }, + { + "phone_id": "ffd34776-bf2e-42c5-8305-8b842d9f33cb", + "location_id": "60453164-9dee-472d-a6ec-539e52b828e2", + "payload": { + "number": "7184575395" + } + }, + { + "phone_id": "ffd9cf91-517c-45b5-ba6e-2c2ae92a8625", + "location_id": "5cb6687f-b5d5-4142-8e4f-e08ab632893c", + "payload": { + "number": "7186510096" + } + } + ] +} diff --git a/sequelize/migrations/data/20260112-location-pipeline.json b/sequelize/migrations/data/20260112-location-pipeline.json new file mode 100644 index 0000000..5134806 --- /dev/null +++ b/sequelize/migrations/data/20260112-location-pipeline.json @@ -0,0 +1,2471 @@ +{ + "locationUpdates": [ + { + "location_id": "cc39d150-e48d-47b2-a316-614847e9c8ad", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.82747732877753,-73.9372797869932,3a,75y,21.5h,0.0t/data=!3m6!1e1!3m4!1sBb9BcUILZOiQUZVo816spg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "b41ce36f-81ca-4710-aec7-da6df8222251", + "payload": { + "address": { + "street": "269 W 35th St, 7th, 10th, And 11th Floors", + "city": "New York", + "state": "NY", + "postalCode": "10001", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "efa2eeba-bffe-4e51-afc4-8674ca5b2e1d", + "payload": { + "address": { + "street": "286 E 156th St", + "city": "Bronx", + "state": "NY", + "postalCode": "10451", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "c5f91b44-3cca-4967-a1b5-7ba8fd7257b2", + "payload": { + "address": { + "street": "2705 Campus Rd", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11210", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "7e29ee8c-d108-4a98-93e5-57c1b691f09d", + "payload": { + "address": { + "street": "84 Fulton St", + "city": "Staten Island", + "state": "NY", + "postalCode": "10304", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "d018addb-7646-4a09-baa2-b25d6e200e46", + "payload": { + "address": { + "street": "520 Kingston Ave", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11225", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "78f0a935-65a2-497c-b453-90aa4393995e", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.54233951416911,-74.1630463939364,3a,75y,27.2h,0.0t/data=!3m6!1e1!3m4!1sQI9wAz-c4YTBJ7qLR5TfVg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f6f5e757-5ae8-4d44-bdae-0e485cef8f42", + "payload": { + "address": { + "street": "132 W 14th St", + "city": "New York", + "state": "NY", + "postalCode": "10011", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "df08a661-6755-44c1-970b-347aa863e3f7", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68149014771427,-73.94978606227806,3a,75y,77.6h,0.0t/data=!3m6!1e1!3m4!1sfPTqvFx_grZt0O11i3ap7g!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "94eeaff4-980c-47d8-beb7-e92f42c94f49", + "payload": { + "address": { + "street": "211 W 141st St", + "city": "New York", + "state": "NY", + "postalCode": "10030", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "d0b49a8c-c83d-46ec-b327-6b6ffeb05f81", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.67767188875111,-74.00982094054373,3a,75y,297.8h,0.0t/data=!3m6!1e1!3m4!1sXKej5Nk5fQIONnUbWfMxwg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f058c994-1f55-479e-89fe-83c014d6b19f", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6836140989868,-73.78262246005217,3a,75y,77.7h,0.0t/data=!3m6!1e1!3m4!1soB6fmM_0P1JMf4R9dvFeng!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ac70737b-3d9d-4aff-9aba-710d6289da12", + "payload": { + "address": { + "street": "165-13 Jamaica Ave", + "city": "Jamaica", + "state": "NY", + "postalCode": "11405", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.70570397288682,-73.79429869769324,3a,75y,324.6h,0.0t/data=!3m6!1e1!3m4!1s5J7QWRrBLBg9G-DQzT6HNQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "59ff1726-6260-454a-890c-37feda37524d", + "payload": { + "address": { + "street": "163 W 125th St Rm 713", + "city": "New York", + "state": "NY", + "postalCode": "10027", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.80949118877072,-73.9474712492171,3a,75y,205.7h,0.0t/data=!3m6!1e1!3m4!1sZW3KMwzZpFxEEZMjQ6xxFA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "31dc0ce1-6a9b-401c-97f3-f8fcdddbe37e", + "payload": { + "address": { + "street": "1413 Ave T", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11229", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "77cb17e2-fcc4-4c48-9fef-065889de92c1", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.66120672168475,-73.94777700452403,3a,75y,268.6h,0.0t/data=!3m6!1e1!3m4!1smxk26CXln17wgEMxuN5e_Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "163fef5a-49e0-48af-b87e-ac4ab674b41a", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68069172955219,-73.90658081104104,3a,75y,62.1h,0.0t/data=!3m6!1e1!3m4!1s58PZNwxfULBGujLMmHV6Zg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "41df1a49-0a2b-4f5c-a116-3a0e469654a6", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.66444880618874,-73.89620562244616,3a,75y,187.2h,0.0t/data=!3m6!1e1!3m4!1saLolPS_iz_uxamJpDCdA0Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "52c79659-583d-4ac1-a3fc-bb2cf3e39fc7", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68976361780616,-73.84290212894673,3a,75y,170.6h,0.0t/data=!3m6!1e1!3m4!1sI6Vyz1dWHd6g63FW4AlJ5Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "069b9234-5500-4a47-9b27-1dffea1b6e14", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.65816622919849,-73.90136089969072,3a,75y,161.9h,0.0t/data=!3m6!1e1!3m4!1sEbRnoEepk4wCOaXXtCR4Eg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "8f144d32-5e3d-4d1f-be99-e5b30554e77c", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.8518920837503,-73.89298861885206,3a,75y,302.5h,0.0t/data=!3m6!1e1!3m4!1so6VGvrRFqiZPaz3Igtgyxw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f4e16917-807a-40fd-bf6e-9e2d9878febb", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.62680613971796,-74.13320611126832,3a,75y,155.5h,0.0t/data=!3m6!1e1!3m4!1sMeYI7ZuSFA0Xkd0RVXbHkw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ede9e25d-be49-469b-8950-e6a1fd1519bd", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6851712630924,-73.79303908145765,3a,75y,63.8h,0.0t/data=!3m6!1e1!3m4!1sgZ89D5CU6I1IT0HNaetogw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "552ae6a9-617c-40ae-a2ed-bc9f695d8a22", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.71909453854055,-73.98701693192925,3a,75y,288.8h,0.0t/data=!3m6!1e1!3m4!1s7xsX-C1dgBg6CG5zlHEiZQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "1aaf0e27-60fb-42f1-8aa6-963f95519b42", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.67879199138404,-73.92009257825924,3a,75y,199.4h,0.0t/data=!3m6!1e1!3m4!1sGBLptmy7dnXr6Uaakcun-g!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "95888a0f-c6a4-4294-ad9c-90852c330a3a", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.64349486216111,-74.07731779886322,3a,75y,237.6h,0.0t/data=!3m6!1e1!3m4!1s1TqU5kH7U8P6y0bXeJqx0w!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "d180afac-500c-4c64-80d2-dcb7f3fd205a", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74970544455047,-73.86161005797905,3a,75y,57.1h,0.0t/data=!3m6!1e1!3m4!1sMUornLFwE4rAq9KBUwB-yQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "bfc34b94-e898-410e-a36f-4802851b6b2d", + "payload": { + "address": { + "street": "25-29 Ave D", + "city": "New York", + "state": "NY", + "postalCode": "10009", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "03922916-eb5e-44ce-83ac-d340ba81cca8", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.67261343320939,-73.95189456387482,3a,75y,358.7h,0.0t/data=!3m6!1e1!3m4!1sBqUW-7gCxfRtp1UJ1hXiPw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2f0e7060-391b-4086-b987-23ff7c113fbb", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.82731930314888,-73.92101293245828,3a,75y,191.3h,0.0t/data=!3m6!1e1!3m4!1s9NiSwHi1wC6acep3lqxXtw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "5384d77b-ef75-448c-a494-4b6b1774f9f0", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.89963294263041,-73.85793943080266,3a,75y,284.9h,0.0t/data=!3m6!1e1!3m4!1sMM8tf4NhjkvrqemI2XXrGw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "60a5bc8f-18c9-410e-accc-e6eef585b79b", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80939785124021,-73.9472662162002,3a,75y,217.4h,0.0t/data=!3m6!1e1!3m4!1szQ2wnstt2g0ncXn1HW-AAg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "699fc06c-eff8-4fab-926b-4e995daa2be7", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.83128742920474,-73.90238989337495,3a,75y,306.3h,0.0t/data=!3m6!1e1!3m4!1seu9B5BlAZwxAD-TUgZOhow!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "c34693bc-2371-4be0-b992-91b230c64158", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.86077324463523,-73.89781957690273,3a,75y,112.6h,0.0t/data=!3m6!1e1!3m4!1s31J7R6gyQv4yHUdtuws-uw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "96d8e0fe-48fc-40e6-88e2-c7881291215c", + "payload": { + "address": { + "street": "605 Fdr Dr", + "city": "New York", + "state": "NY", + "postalCode": "10002", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "ee60d902-bb2a-4345-9d0d-eb3aedb44f15", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.84712273558106,-73.89941153836368,3a,75y,98.6h,0.0t/data=!3m6!1e1!3m4!1sVkOyZNz4CC_TgbdBypH3xA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ab91a5b5-5994-4188-8a8d-269cfcd34044", + "payload": { + "address": { + "street": "1323 Louis Ni\ufffd\ufffd Blvd", + "city": "Bronx", + "state": "NY", + "postalCode": "10459", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "e37b048e-85b1-4a37-b9d6-5c0fef5d37ad", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.75415552078519,-73.94228391885201,3a,75y,113.6h,0.0t/data=!3m6!1e1!3m4!1s9dk5lML3Womy65-9A1qhUA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "5733f8d7-dd68-4a5a-bbe6-1a1fd7f9a761", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.8743644892707,-73.85745469866677,3a,75y,257.5h,0.0t/data=!3m6!1e1!3m4!1sg7Kc62lw2fhRVoVb1UmJBg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "12479616-969b-4ca6-9ba6-6292e346e2bc", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.64089033881819,-74.13533847357041,3a,75y,344.4h,0.0t/data=!3m6!1e1!3m4!1sVjkwRqI5pqW0mo0vR5eTdQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "72b77c76-2c23-478b-8104-ba2655aed8e7", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81229592541825,-73.90341950960818,3a,75y,170.4h,0.0t/data=!3m6!1e1!3m4!1sE1pOFVM7xBG4geZLTAO27Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "6e924de6-cf63-408a-a6fe-0009dff3bfd5", + "payload": { + "address": { + "street": "162-64 Jamaica Ave, Lower Level", + "city": "Jamaica", + "state": "NY", + "postalCode": "11433", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "793a9ec2-6f16-4504-ba9c-e00b9e8b8682", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.70385765307664,-73.89610586006532,3a,75y,140.0h,0.0t/data=!3m6!1e1!3m4!1sLWAtSmm6YFz4vdypqHvTWg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "8c470506-1228-40c1-a970-581887734acd", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80996199279272,-73.94664044260828,3a,75y,220.5h,0.0t/data=!3m6!1e1!3m4!1sVbq3BE4-bnT0_D4qOlWRdA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ea0fd370-c236-427d-9834-0fba99f5f971", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.65068969695434,-73.89823557845415,3a,75y,46.0h,0.0t/data=!3m6!1e1!3m4!1sgCcLw_hm-CInFm1HNbqLUw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f7494efd-a752-4c74-9773-0a58bda9ddaf", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.75195257767308,-73.9908241102184,3a,75y,38.2h,0.0t/data=!3m6!1e1!3m4!1sCoGUAwrfRvRGuzXmSCydqw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "dd48591b-ae2d-4abc-a985-f5a7a0697994", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80311193821151,-73.9365066110363,3a,75y,210.3h,0.0t/data=!3m6!1e1!3m4!1sebBTVMqr4aVdnS5_eEDoug!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "9e6292c8-a978-42ea-a8f0-181688e05a09", + "payload": { + "address": { + "street": "35-02 PO. Box 670086", + "city": "Flushing", + "state": "NY", + "postalCode": "11354", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "897ce6b9-3c2d-49f4-8043-3ac0dbc2d215", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74272265271398,-73.91313156338484,3a,75y,0.3h,0.0t/data=!3m6!1e1!3m4!1squP1GTT28NhtVtH22h_Jzg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ae95f7eb-3c21-4235-ba99-7c88f5c035ff", + "payload": { + "address": { + "street": "300 Cadman Plaza W 12th Fl", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "7ee304a3-5b3d-4524-b12b-6e3cd9249113", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.61290788358081,-74.12531361443381,3a,75y,350.5h,0.0t/data=!3m6!1e1!3m4!1sQNbKGgshkrAe_v8qSKqwZA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "1df3ff0e-6ff1-4791-b1b4-31fed33e8876", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69708544980364,-73.95567902840826,3a,75y,260.9h,0.0t/data=!3m6!1e1!3m4!1sWOyO8TDhZAgfslQFcIdWLw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a4e1ea35-ff1d-4378-8da3-b608cc382923", + "payload": { + "address": { + "street": "165 Eldridge St, 2nd Fl", + "city": "New York", + "state": "NY", + "postalCode": "10002", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "52d7bc0d-f77e-4d07-9e5a-2245baea592e", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.70268596621866,-73.94532547734359,3a,75y,215.3h,0.0t/data=!3m6!1e1!3m4!1sh0MK_ZRx-9KUDa7vVx4i6w!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2b9e4a87-4df7-42d3-8feb-c89a48208f50", + "payload": { + "address": { + "street": "820 St Ann'S Ave", + "city": "Bronx", + "state": "NY", + "postalCode": "10456", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.82119871120423,-73.90971173985184,3a,75y,185.3h,0.0t/data=!3m6!1e1!3m4!1sbdZJhvrC9btQmJ501wjcxw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "95c2741c-4da0-4fda-bbac-c041bbecf5b9", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.64665079095986,-73.95523561597952,3a,75y,173.7h,0.0t/data=!3m6!1e1!3m4!1sLGsAIJ72nGjJO9QbPuITmQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "b50bed26-da08-499d-b5ba-e40be45d6669", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69318814559499,-73.95587284165211,3a,75y,267.2h,0.0t/data=!3m6!1e1!3m4!1s5IDM0zcU5qtOWAAoHyr-2A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2015f6dd-49a6-487a-b3cb-9bfb8d30dc4f", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.7174667910164,-73.98970026651975,3a,75y,117.5h,0.0t/data=!3m6!1e1!3m4!1sVzNHu8oaG3YmztV3i_vvOA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "d17409cb-7ca2-4f08-98c9-b43576a594d5", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.71680200918457,-73.98723062085668,3a,75y,299.4h,0.0t/data=!3m6!1e1!3m4!1sDPjvA21hg-C_1n3u1hkh0A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a2d3da15-27ec-46ee-9ea7-6e853eb8debb", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.62522407307802,-74.14472056051225,3a,75y,35.1h,0.0t/data=!3m6!1e1!3m4!1scNx9nfp2EWGSurW0U11fxQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "006154e0-f380-4ae3-851e-22ffd4d0bbbd", + "payload": { + "address": { + "street": "121 Dekalb Ave", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "ed360813-9f1f-4964-b7e3-cb72a5813db5", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.84753178750363,-73.93164270743851,3a,75y,195.4h,0.0t/data=!3m6!1e1!3m4!1sSc7wIw9f34bIM6ANZe8gzw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f240d86e-a6f9-498b-9fe4-a5eb8021d115", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80751330424665,-73.94694709613783,3a,75y,33.5h,0.0t/data=!3m6!1e1!3m4!1sIp5RQVUYtMwwtTVeyJGmrw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "fbd337f8-3c86-42d9-9ef8-cc506c456a30", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.62746569771833,-74.16724035440048,3a,75y,177.2h,0.0t/data=!3m6!1e1!3m4!1sBcURE0HWZhA2BIXbpVp64g!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "bbf61da4-d46f-49b9-96cc-a2bb671402f3", + "payload": { + "address": { + "street": "1765 S Ave", + "city": "Staten Island", + "state": "NY", + "postalCode": "10314", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "7e2fc0d8-d5f7-480f-9dcd-8d366115e8e7", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.85957003674081,-73.86531767448821,3a,75y,195.7h,0.0t/data=!3m6!1e1!3m4!1s-_3_BYrTYi2B3OJCBtk6kg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "8dafb345-8b13-4f8c-8825-764db1acb55e", + "payload": { + "address": { + "street": "135 W 50th St", + "city": "New York", + "state": "NY", + "postalCode": "10020", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "ccfa050f-be8a-48c7-a86f-cec37244e2ad", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.8701447781551,-73.85693820009695,3a,75y,258.2h,0.0t/data=!3m6!1e1!3m4!1svtP5KMvgBCDh1HTTiymxaA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "d73cdec8-00ad-4eda-9fee-a9411fb94ec9", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6429372674275,-74.0768934911077,3a,75y,58.4h,0.0t/data=!3m6!1e1!3m4!1sZAHpAejU5-HLZePCxm7QGA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "9995419a-59d3-48df-aeb5-a6451aff0c7e", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6906530858766,-73.98834622922496,3a,75y,39.2h,0.0t/data=!3m6!1e1!3m4!1s5TvFDKfVntyib9WTbIeJ2Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "4bcf6f68-25d8-45fa-8352-0d78b3756422", + "payload": { + "address": { + "street": "212 W 120th St", + "city": "New York", + "state": "NY", + "postalCode": "10027", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "1c0d9c7d-3905-4038-95e3-bb69b8f5fb2e", + "payload": { + "address": { + "street": "450 St. Mark\u2019s Pl", + "city": "Staten Island", + "state": "NY", + "postalCode": "10301", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.63863427937447,-74.07718460899447,3a,75y,264.1h,0.0t/data=!3m6!1e1!3m4!1sMAVK0e95UM1EMXeH_mhZlQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e1d7abf8-ec0b-41d2-a404-91ebcdea351c", + "payload": { + "address": { + "street": "557 Pennsylvania Ave Or 557 Granville Payne Ave", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11207", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "b8ee981f-bf48-4c1b-8589-8f72b57bd12d", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74753716090181,-73.99315893655157,3a,75y,134.8h,0.0t/data=!3m6!1e1!3m4!1scYx2saqPVTDp_R_WFo_bUg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "fb28878e-3f97-4085-99a7-4723a7c2689b", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81540075857822,-73.92007867423939,3a,75y,301.1h,0.0t/data=!3m6!1e1!3m4!1sAkUiMAc4CJBrlvITkFKj2A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2fa1dd48-fca8-4cee-a507-c4db262efcaf", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.86089432389171,-73.88999747033203,3a,75y,219.8h,0.0t/data=!3m6!1e1!3m4!1swuaamKhgWYwCdu2ZtPs7eQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "5f6b64eb-9efe-41dc-ad92-07c1804eab73", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68598150761144,-73.91498363622185,3a,75y,145.2h,0.0t/data=!3m6!1e1!3m4!1sCVaomCKwI-xy30FDX6qaMQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "143c37e4-911a-48f2-9f73-df836f2d69e5", + "payload": { + "address": { + "street": "172-17 Linden Blvd", + "city": "Jamaica", + "state": "NY", + "postalCode": "11434", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f83a8b80-5063-412f-849e-5240ab7c6032", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.82071561426811,-73.94088945535397,3a,75y,212.0h,0.0t/data=!3m6!1e1!3m4!1sBihxNrGzrYqrLeyWwnZiaA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "377aa11d-b8b5-49c1-a495-be491803a93e", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.75503181237754,-73.94459942182472,3a,75y,171.3h,0.0t/data=!3m6!1e1!3m4!1sOKRw4zNGnjKluxOl28S56Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "b55c2919-d2ca-4862-bccd-6a178396744f", + "payload": { + "address": { + "street": "98-19 Astoria Blvd", + "city": "Elmhurst", + "state": "NY", + "postalCode": "11369", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "33582379-4d99-475e-aad5-40cbe3faf34b", + "payload": { + "address": { + "street": "95-18 Northern Blvd", + "city": "Jackson Heights", + "state": "NY", + "postalCode": "11372", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "92caa759-a1d2-4684-ba04-ac3ea6706f18", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.8218284568576,-73.891641889951,3a,75y,88.2h,0.0t/data=!3m6!1e1!3m4!1so99ApDCKndAQS5cCuf0XLw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "b6a214a7-f09e-430d-b92b-fe38ed0926ca", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.75540486367296,-73.94155560958811,3a,75y,33.0h,0.0t/data=!3m6!1e1!3m4!1s1tA2PGS1CiLLfvQOQGj8ug!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e771a7cc-d7eb-43f2-9451-4fe49e00f51d", + "payload": { + "address": { + "street": "435 E 119th St, 7th Floor", + "city": "New York", + "state": "NY", + "postalCode": "10035", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "909454a9-4d25-4f6c-b12c-203f6a66fce3", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.8488375789336,-73.90452923191783,3a,75y,190.5h,0.0t/data=!3m6!1e1!3m4!1synvqK-SsA_noOrKhdPUmKg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "3513e180-63d6-4c21-a769-5b48d54cba41", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.64150019128488,-74.07599476935663,3a,75y,278.2h,0.0t/data=!3m6!1e1!3m4!1s1ECI2Qfs0IOtYulbAKtHFA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f985e463-c3b7-48b1-854c-272ef9664422", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80601205181159,-73.915552279867,3a,75y,39.1h,0.0t/data=!3m6!1e1!3m4!1sbH08XbPOihwdf8rC3eFDfQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "1fa57597-701c-4e48-b47f-c14590fd6b8b", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.84089427984088,-73.86518021038154,3a,75y,168.0h,0.0t/data=!3m6!1e1!3m4!1szz06RxN-DAYy1CtNWgsRbQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "724eac26-16cb-4c7a-8f04-dea0e58584d9", + "payload": { + "address": { + "street": "804 E 138th St", + "city": "Bronx", + "state": "NY", + "postalCode": "10454", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "d3ed1194-9c4b-4ad1-8686-8eb54221bbbc", + "payload": { + "address": { + "street": "555 W 58th St, Ste 609B", + "city": "New York", + "state": "NY", + "postalCode": "10019", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.77015162328215,-73.99098148188565,3a,75y,29.9h,0.0t/data=!3m6!1e1!3m4!1s6KcY3mtI5GCT8PnL6Kt68A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "eae69d86-804c-40d8-b77a-dc1836f10215", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.72901944180142,-73.97918022172999,3a,75y,194.6h,0.0t/data=!3m6!1e1!3m4!1sZ3H0H4bb41UQBVU4ItSU1A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "7c1b3299-c09e-4170-abee-44896e29a524", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6263235710949,-74.13213113983925,3a,75y,193.6h,0.0t/data=!3m6!1e1!3m4!1s-T_HZBTMYIOPlCeb-kRHGQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "793f3da8-8e3a-4697-b84b-3fc100d2c852", + "payload": { + "address": { + "street": "231-34 Merrick Blvd", + "city": "Laurelton", + "state": "NY", + "postalCode": "11413", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "25d83df6-bf29-418f-b1ec-b4188412d683", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.71234563485303,-73.99044130646153,3a,75y,262.3h,0.0t/data=!3m6!1e1!3m4!1skZH4EUhQMlN0IgSWRfSrCA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "23b62f1a-9745-4e22-9aba-196c303ae8ad", + "payload": { + "address": { + "street": "221 Heberton Ave", + "city": "Staten Island", + "state": "NY", + "postalCode": "10302", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "836d9f72-2544-4030-87e3-d3adceb797ed", + "payload": { + "address": { + "street": "1309-1311 Foster Ave", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11230", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "c52f6199-bad5-4a6e-abf1-62147349ddb4", + "payload": { + "address": { + "street": "33 W 60th St, 6th Floor", + "city": "New York", + "state": "NY", + "postalCode": "10023", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "8d3af588-6062-4113-b0cd-7bb6e5d942cb", + "payload": { + "address": { + "street": "252 W 116th St", + "city": "New York", + "state": "NY", + "postalCode": "10026", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.80423831570509,-73.9549300518464,3a,75y,183.2h,0.0t/data=!3m6!1e1!3m4!1sSPp8e_K89DK4UO_TYhueRA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2c709f55-7ca7-495c-b748-6e4072e18616", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.78023738186236,-73.94549221410651,3a,75y,208.3h,0.0t/data=!3m6!1e1!3m4!1sNSlU1NNhgoh2jc9KhZ1ARA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "6baeaddb-4030-4e8a-88c4-b639af1df4e0", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68835727375406,-73.9301419641349,3a,75y,250.8h,0.0t/data=!3m6!1e1!3m4!1sNremKQXF7BJluYecEzbP9g!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e3788ddd-6c02-4c55-b447-8ce45192a83a", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.70018665615693,-73.93622891274714,3a,75y,24.4h,0.0t/data=!3m6!1e1!3m4!1sORXtCM-f0U9wTEs1HmtS0w!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "75b43a8a-15fc-4a75-9e64-9554264789cb", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.8294678723229,-73.8528218662222,3a,75y,327.0h,0.0t/data=!3m6!1e1!3m4!1s48ZwW2EZUezBn3uF7l-0bg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "c789e7d9-7570-42f6-b919-250971acc270", + "payload": { + "address": { + "street": "37-44 21 St", + "city": "Long Island City", + "state": "NY", + "postalCode": "11101", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f81f1048-5f56-4218-a141-40556fdfc1b8", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.59313033548339,-73.78435762894985,3a,75y,92.3h,0.0t/data=!3m6!1e1!3m4!1szoyrv76Wy82y9uMqvWWKIA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a1b17602-b473-4bbe-8e02-08c60f3acac8", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74646394686555,-74.15684164228742,3a,75y,3.3h,0.0t/data=!3m6!1e1!3m4!1sCNNalOEun1R6H8UfI528PQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "1d00d44b-2af5-4c73-8c98-21b0c1d2f931", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.77267424251167,-74.03178291582273,3a,75y,35.8h,0.0t/data=!3m6!1e1!3m4!1sAzs6ov-tzQw-w-92sLeYXA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "eb8061de-7dfd-4788-90aa-62c4458e9dc3", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.71972203937649,-74.04625100758138,3a,75y,197.9h,0.0t/data=!3m6!1e1!3m4!1syGW2JJpKh93TocJoLxnYsw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "872f19de-23a9-4dbc-bba6-01bc93aab1e0", + "payload": { + "address": { + "street": "421 8th Ave", + "city": "New York", + "state": "NY", + "postalCode": "10001", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "0bd383ad-95f0-4eb4-b019-2bb799a6f2cd", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6234811075749,-73.99338355829437,3a,75y,115.5h,0.0t/data=!3m6!1e1!3m4!1sNCGjz2mPhghA8GYCht2DAQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "6229adeb-0857-4617-a72f-3e1656246c47", + "payload": { + "address": { + "street": "301 W 37th St", + "city": "New York", + "state": "NY", + "postalCode": "10018", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "5074cb6a-cdc2-406d-86fa-a19fbc923609", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.8156164360566,-73.91847683479374,3a,75y,331.9h,0.0t/data=!3m6!1e1!3m4!1sINuVwmXOLETH7GNm5q9kng!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "1bc6a125-e8f4-4fe6-a395-4478c3b62a77", + "payload": { + "address": { + "street": "30 W 16th St", + "city": "New York", + "state": "NY", + "postalCode": "10011", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.73806170393036,-73.99438292010424,3a,75y,220.6h,0.0t/data=!3m6!1e1!3m4!1sUDZf5LWCLqaClOKXipcJ_g!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "8e91ac41-6a7c-4dfa-af1e-ff03b1082b15", + "payload": { + "address": { + "street": "138th St and Malcolm X Blvd", + "city": "New York", + "state": "NY", + "postalCode": "10037", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "87cf2f91-0a9e-4b8d-9812-c574761a97f9", + "payload": { + "address": { + "street": "1510 Waters Pl", + "city": "Bronx", + "state": "NY", + "postalCode": "10461", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.84567244928169,-73.84116325419224,3a,75y,50.6h,0.0t/data=!3m6!1e1!3m4!1sRsqgk1Tz4Kv4vAWpdyFyjw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ce6c19c8-d2dd-4fca-b481-5b7e0b91de06", + "payload": { + "address": { + "street": "3301 Foster Ave (lower Level Next to Leasing Office)", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11210", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "c6f1b357-5642-474d-bc79-ebcd35c0c191", + "payload": { + "address": { + "street": "19 Union Square W", + "city": "New York", + "state": "NY", + "postalCode": "10003", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.73603974213781,-73.99112441649605,3a,75y,307.4h,0.0t/data=!3m6!1e1!3m4!1sWht55lbs9F_AKhjuBxwEag!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "654105bf-81f7-4e88-962f-c2b69fab3f16", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.83295627091231,-73.89041070731254,3a,75y,291.1h,0.0t/data=!3m6!1e1!3m4!1snDuLaCyb3BH2c4sJVD6hrg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "35d289a1-a002-4328-9cb4-7276cf240289", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.83020784250004,-73.92064299723964,3a,75y,118.2h,0.0t/data=!3m6!1e1!3m4!1sgCyQAHUqHZc2tNiRU0kPWQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "19ebfc7a-63e7-43e9-aecf-0da12a7070f7", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.57655291712826,-73.98539645729562,3a,75y,150.7h,0.0t/data=!3m6!1e1!3m4!1sACCt7tKrU85_bH4p424RZQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "fcaa0052-cc70-4e46-b555-717c3104bfa0", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.75957014756496,-73.93709564223367,3a,75y,128.5h,0.0t/data=!3m6!1e1!3m4!1shXindPIFjYUh3BokL7XpTg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "92d08356-16cc-4e86-9bab-d93c632bc4fd", + "payload": { + "address": { + "street": "105 Ct St, 4th Floor", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "3f3a6015-d99f-4125-b40d-ebd78129984b", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80561116440752,-73.93825827172545,3a,75y,45.4h,0.0t/data=!3m6!1e1!3m4!1sjJEMxA0AypsdlonaQtZCmQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "efd50d5f-c6af-47a8-ac47-0793014a0a0f", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.83452715239342,-73.92885621857437,3a,75y,8.6h,0.0t/data=!3m6!1e1!3m4!1sl0UpTXAR8driKuwfgaPrmw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "d72ca7f0-a8bc-4249-a400-9aa076f6a074", + "payload": { + "address": { + "street": "1030 Grand Concourse, N Professional Wing", + "city": "Bronx", + "state": "NY", + "postalCode": "10451", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.83028685010253,-73.9205990427173,3a,75y,115.2h,0.0t/data=!3m6!1e1!3m4!1sZm5sJ1N3bBbyptyjxosVwQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "b47dab4d-bafc-4578-a643-715d3939d9fe", + "payload": { + "address": { + "street": "414 E 95th St", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11212", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "1febf5f4-b761-450b-bb53-7f98a32f544a", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.67254063734389,-73.96852283796457,3a,75y,104.1h,0.0t/data=!3m6!1e1!3m4!1sz7LQ5UzlFhHe6DY5NgBPGQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e33d1d3a-929a-41ee-ac79-14b92b080d88", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80801706736633,-73.9481533456814,3a,75y,229.5h,0.0t/data=!3m6!1e1!3m4!1sMeF1Wrq_E7bR2TB9hvdRlw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "7267cae9-fa66-49f5-90e4-0cbe2480941e", + "payload": { + "address": { + "street": "35 E 125th St", + "city": "New York", + "state": "NY", + "postalCode": "10027", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "5efb0bb8-df0c-466e-a210-a565c9bc44d9", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81579616442065,-73.93688243592965,3a,75y,207.8h,0.0t/data=!3m6!1e1!3m4!1s3azNENfjvYIXwQkDXI-KEQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "fe5efe51-6674-4008-b3a5-7aa924ed5870", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69412325349325,-73.99060836286819,3a,75y,250.8h,0.0t/data=!3m6!1e1!3m4!1sD2horHA1hX-0rDIvuihZCw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "9bca1d6f-87de-477f-bade-ac5a4f56c53c", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.86628672699026,-73.89069152134925,3a,75y,291.1h,0.0t/data=!3m6!1e1!3m4!1svXV5gn_pQbQoqIpYU0Mp_A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a6a042e1-4954-455f-9576-b8b344034bf4", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69726144582076,-73.93572679448165,3a,75y,42.4h,0.0t/data=!3m6!1e1!3m4!1sOY95ysIaU6qzCCEYBTQRJA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "0a9d4657-b95a-4f40-8206-00cb216547c1", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.84618598109687,-73.91005343784207,3a,75y,313.0h,0.0t/data=!3m6!1e1!3m4!1sK3UBO0IuQHNFsSDVA8A9zQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "93a8bac2-d3a3-43f3-acd6-674f9da98886", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.83153414864808,-73.92221853604391,3a,75y,21.8h,0.0t/data=!3m6!1e1!3m4!1sFSvGJW6XawaBYME8YCYIyw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "fcb5fdd7-f54d-4f79-b815-1d61c2d535f6", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80164334877791,-73.93691912142314,3a,75y,32.9h,0.0t/data=!3m6!1e1!3m4!1sirbVWsqz1zKtGKnf6JTT9Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "da2ab990-e4db-451c-ac04-fb9436924e98", + "payload": { + "address": { + "street": "454 W 155th St", + "city": "New York", + "state": "NY", + "postalCode": "10032", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "dda25a8f-f4d6-4844-bfc8-91a843f13d70", + "payload": { + "address": { + "street": "595 Trinity Ave", + "city": "Bronx", + "state": "NY", + "postalCode": "10455", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "fc7226fc-e9db-4b9b-94b8-46daacb9d7c4", + "payload": { + "address": { + "street": "122 52nd St", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11219", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f74ea3f7-4322-432a-af07-cb89b275ca3a", + "payload": { + "address": { + "street": "3-2 Astoria Blvd", + "city": "Astoria", + "state": "NY", + "postalCode": "11422", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "24e8e4c7-54a5-4c18-adb9-e2c7d6f020d5", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69936667820863,-73.89794544505247,3a,75y,305.9h,0.0t/data=!3m6!1e1!3m4!1sN6NIyuMMRhfmIjzNiPf4cA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "cbe4c1fb-e3e8-44a8-85d2-01b08ab89b55", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.76492711570171,-73.91416004638413,3a,75y,110.8h,0.0t/data=!3m6!1e1!3m4!1sD3RexkmEUmWnO6kQkYq7vA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2822099f-d574-4494-a8b0-957120828f33", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6657618405111,-73.87874015013173,3a,75y,244.5h,0.0t/data=!3m6!1e1!3m4!1sIYCy6Byg9AiKnppn0VM3nw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "3436c38f-f0dd-433f-ae2a-bb22f06dbf14", + "payload": { + "address": { + "street": "1818 Ave P", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11229", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.61058282594221,-73.95475991510607,3a,75y,258.5h,0.0t/data=!3m6!1e1!3m4!1sRJT2UtwXi96ntjYFayXxlA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a588e834-bbac-46c4-baa4-d8fa1096a5a2", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.7422761430115,-73.95306427949855,3a,75y,133.8h,0.0t/data=!3m6!1e1!3m4!1snGh_J-BbPJWO2TNKOZLm7Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "feea0a18-f587-40ea-a7b8-79c8aac69446", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68307710924033,-73.91079397579763,3a,75y,198.4h,0.0t/data=!3m6!1e1!3m4!1sCQNxO-UqgLNWSnOoQ28UcQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "199a2bd5-9983-4c57-afb7-e61221bb11fa", + "payload": { + "address": { + "street": "120-55 Queens Blvd", + "city": "Kew Gardens", + "state": "NY", + "postalCode": "11415", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "2e78b89b-8ab9-4e7a-baf4-f957fe92c7a1", + "payload": { + "address": { + "street": "127 W 127th St, 221 Ste", + "city": "New York", + "state": "NY", + "postalCode": "10027", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "da433c88-88ea-4c41-97ec-18e02213eaff", + "payload": { + "address": { + "street": "125 Walker St, 2nd Floor", + "city": "New York", + "state": "NY", + "postalCode": "10013", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "33451e08-ec8b-4c4f-9746-a68f3d6b6dc7", + "payload": { + "address": { + "street": "34-11 71st St", + "city": "Jackson Heights", + "state": "NY", + "postalCode": "11377", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "ca0fa614-7338-47d9-95d0-2a08534c5c66", + "payload": { + "address": { + "street": "275 Myrtle Ave", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11205", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "89df0afd-f75a-483d-a308-394e554103dd", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81691077269498,-73.88998015491192,3a,75y,89.7h,0.0t/data=!3m6!1e1!3m4!1sSQkkNJDUdbw-tXim-JRWUQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "9df2dfa1-6cd8-47e5-b597-01aa517826f9", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80754396440586,-73.94490365690864,3a,75y,44.1h,0.0t/data=!3m6!1e1!3m4!1szDlP__vli28dZMH4DEbyiw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2c02ba83-77e4-4244-a09d-9c1c54906480", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.6407745841366,-74.07578655785302,3a,75y,242.3h,0.0t/data=!3m6!1e1!3m4!1syxVIhlG-Doo68DRoR72jYA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e9e92406-9cfe-4363-a2d4-ad30495d6de8", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.57953666371986,-73.95982969245622,3a,75y,253.2h,0.0t/data=!3m6!1e1!3m4!1sutk0hsbACZzVBA_7od2LWA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ccfc9914-f0bc-4aac-9e2e-78b663fc7429", + "payload": { + "address": { + "street": "43 George St", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11206", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "3c3404c2-f014-42f1-b83a-b43597157a52", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.84575922289297,-73.9209235883235,3a,75y,288.2h,0.0t/data=!3m6!1e1!3m4!1ssVR1SuU9kyaPoDmNVlh0OA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ec1e5fd9-ec02-482c-b734-017f986e2604", + "payload": { + "address": { + "street": "376 Throop Ave", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11221", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "7af602c1-d4e6-48a7-bc87-c6f0a1e5a667", + "payload": { + "address": { + "street": "4517 Ave D", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11203", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "aae16050-24f4-448c-b5e2-f3eb8181f9cc", + "payload": { + "address": { + "street": "PO. Box 3220 Church St Station", + "city": "New York", + "state": "NY", + "postalCode": "10005", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "0714d03f-98cb-400d-ab3c-5d54c6c01a40", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.7531311144597,-73.97483689792963,3a,75y,301.9h,0.0t/data=!3m6!1e1!3m4!1s5rLvEhDqTUV29qB2mIbg8A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "98020879-af11-4089-ae5b-68e8656a58d5", + "payload": { + "address": { + "street": "123 W 27th St", + "city": "New York", + "state": "NY", + "postalCode": "10002", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "bf9e6447-3aa5-4034-8285-9c3f8f6558cf", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.62498681000505,-74.0796737920048,3a,75y,315.7h,0.0t/data=!3m6!1e1!3m4!1sM0_8lYsvXb2atSiyo1ZnMw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "9b872356-711b-43b8-a11c-20698b1025ba", + "payload": { + "address": { + "street": "376 St Ann's Ave", + "city": "Bronx", + "state": "NY", + "postalCode": "10455", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "fb336a1c-56b0-459c-8d78-39335fecf7d9", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.7447277070187,-73.99313042167677,3a,75y,13.3h,0.0t/data=!3m6!1e1!3m4!1sjKTqxX6YMyiVFa10Df_Ldg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "898c0d4a-96d9-4e40-92e0-a380795050c4", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.71735228315999,-74.00684406232047,3a,75y,231.9h,0.0t/data=!3m6!1e1!3m4!1sO6NSxt-S8rlFTWccdy1KGQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e37eee4e-22a4-4972-b024-55ce08acf64c", + "payload": { + "address": { + "street": "26-32 Linden Blvd", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11208", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "c8dbf9dd-4246-49a4-ae70-86878d29bb74", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68321596476428,-73.95066286593983,3a,75y,146.3h,0.0t/data=!3m6!1e1!3m4!1s2yvtwj0ZnNa211StRhMb0Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "d4390d18-df40-40a4-a32a-f29295b43771", + "payload": { + "address": { + "street": "89-11 Lefferts Blvd", + "city": "Richmond Hill", + "state": "NY", + "postalCode": "11418", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "6c27f44b-410e-4b87-9da3-326c19bbd200", + "payload": { + "address": { + "street": "2007 Mapes Ave", + "city": "Bronx", + "state": "NY", + "postalCode": "10457", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.84482426069766,-73.887081819073,3a,75y,286.5h,0.0t/data=!3m6!1e1!3m4!1sEgvbmEPM4vE83W2euJ1u7w!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "185b6481-d729-4717-aaa5-cf935b1abaec", + "payload": { + "address": { + "street": "104 Cooper St", + "city": "New York", + "state": "NY", + "postalCode": "10034", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "3bbbdaae-f3e6-4686-ab99-a113d799d824", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.65120357112226,-73.94144044319256,3a,75y,347.0h,0.0t/data=!3m6!1e1!3m4!1sCWMpUtlmGkQXrBJHKxwkKQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "8e815d12-3a5d-430a-8575-bba6d173a226", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69364004609343,-73.98201790620067,3a,75y,357.5h,0.0t/data=!3m6!1e1!3m4!1sQpx5xf27RhIUvNXleth66Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "c3bfe14c-59c5-4800-954f-e250cfa41811", + "payload": { + "address": { + "street": "1010 6th Ave, Ste 300", + "city": "New York", + "state": "NY", + "postalCode": "10018", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "8b29b797-dde3-4b19-90a0-d4730b3c1dbb", + "payload": { + "address": { + "street": "80-02 Kew Gardens Rd, Ste 400", + "city": "Kew Gardens", + "state": "NY", + "postalCode": "11415", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "fa79b1bd-04c6-47b0-ba89-2f991d750a24", + "payload": { + "address": { + "street": "530 W 133rd St", + "city": "New York", + "state": "NY", + "postalCode": "10027", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f2412831-5ecb-4143-a875-4b121b8f0d5c", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68270405584131,-73.97053867479904,3a,75y,23.7h,0.0t/data=!3m6!1e1!3m4!1sVfbnMC_xMom55kmbhkiMAA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "35f175c2-a5e5-41b4-9d09-b20595ea61cc", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74923925856171,-73.88923729502974,3a,75y,187.9h,0.0t/data=!3m6!1e1!3m4!1sV9yujj-dJZZgJ11RZSSHXQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "bb4ce3a6-89ad-4e72-996c-d8a794e282a1", + "payload": { + "address": { + "street": "108-25 62nd Dr", + "city": "Forest Hills", + "state": "NY", + "postalCode": "11375", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "0c82a663-eb8d-4df6-bb00-7ef0bdd86d70", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81830882773708,-73.89083883641104,3a,75y,125.1h,0.0t/data=!3m6!1e1!3m4!1sYvLfiw3o-1sbRiglNuvj7A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "d3dfafc5-4fd9-447e-ab22-8e1648001181", + "payload": { + "address": { + "street": "100 Centre St, 10th Floor", + "city": "New York", + "state": "NY", + "postalCode": "10007", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "e8f993fc-17c9-4ed5-bd61-2fed193fa742", + "payload": { + "address": { + "street": "71-19 162nd St, Unit Cf-D", + "city": "Flushing", + "state": "NY", + "postalCode": "11365", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f615c19b-0235-44ea-996e-dd4b3d4573c2", + "payload": { + "address": { + "street": "24 Ave D", + "city": "Monroe Township", + "state": "NJ", + "postalCode": "10009", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.72047227712963,-73.97765608342941,3a,75y,28.9h,0.0t/data=!3m6!1e1!3m4!1sZGqLrG139kYIN64aS6MhcA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "20e4fbbd-c5ec-469d-bf3b-26c5d9fc708e", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.66986692652672,-73.90958040709651,3a,75y,356.7h,0.0t/data=!3m6!1e1!3m4!1sqmQRtnF38Vv00f-MIuYbNg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e3d3e9a9-cd4c-4656-b21a-d204d68bbc31", + "payload": { + "address": { + "street": "37-43 45th Ave", + "city": "Flushing", + "state": "NY", + "postalCode": "11355", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "a6d61819-76b6-4738-8bfd-e882b2a6a01a", + "payload": { + "address": { + "street": "54 Macdonough St", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11216", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.68097928851851,-73.9440448552864,3a,75y,174.0h,0.0t/data=!3m6!1e1!3m4!1sLbh5Ih3oxNs19bhn1Gk08Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "89156c9f-c37b-4c85-8a48-ee2d4c5fff4e", + "payload": { + "address": { + "street": "12 Metrotech Center 29th Fl", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f06e329b-3034-461e-ab02-71f2d05271e4", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.76923421120861,-73.91330550432798,3a,75y,204.7h,0.0t/data=!3m6!1e1!3m4!1smRKsALeHKZUaaxpwVdZqaA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "27befada-ca63-44f4-9393-c4e780a37a7f", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74565284922237,-73.9819267070954,3a,75y,31.9h,0.0t/data=!3m6!1e1!3m4!1sMT2WG7ps5Th9NxD0-AlDnQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "da2b5e29-e9ed-4522-8a8d-8ae586ea8e12", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68009459232675,-73.9949788582789,3a,75y,128.0h,0.0t/data=!3m6!1e1!3m4!1swJSqQeOtclOIrUeMdA_gEg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2cca7a42-9590-4259-ae48-0f4778e79001", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.82270152559523,-73.94431644330287,3a,75y,129.4h,0.0t/data=!3m6!1e1!3m4!1sA87iGIVUZTPIKGApVeRZhQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "cb45bcb0-9602-47e7-bef4-e48254a4f95e", + "payload": { + "address": { + "street": "360 N Ave", + "city": "New Rochelle", + "state": "NY", + "postalCode": "10801", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "3b4c3003-bec1-455f-afb9-e307d335674f", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74671150741447,-73.893618422934,3a,75y,282.3h,0.0t/data=!3m6!1e1!3m4!1sTQ7xUsUAjjIs24WcG72nuw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "c8aefa4c-c511-4b4a-b6c2-2995757882f0", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.75747983739392,-73.83111100700312,3a,75y,329.7h,0.0t/data=!3m6!1e1!3m4!1sTyOAdmL9cZ7XVHRBolD8eA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "dbd4ab89-a2f4-4263-a035-7f0b2afa0b96", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.83353617776441,-73.89006520680533,3a,75y,347.8h,0.0t/data=!3m6!1e1!3m4!1sB03HKaQOsIdL3mhHQaN95w!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "85f1f80e-0cc3-418a-8f8b-6d0cbd43d1c8", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.64096616973266,-74.00387789749496,3a,75y,305.2h,0.0t/data=!3m6!1e1!3m4!1smhaHOAGBBpaVfJe3xciwIA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "efa2c81d-11d2-42a5-82fb-1b176bd80e41", + "payload": { + "address": { + "street": "1865 Morris Ave", + "city": "Bronx", + "state": "NY", + "postalCode": "10453", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.84862932596455,-73.90838854035239,3a,75y,271.9h,0.0t/data=!3m6!1e1!3m4!1s106mOi2ewL7Gdp_DPlAnqQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2b315ff5-ada3-4afc-bd32-de1fbfa1e0cc", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.63615546259237,-73.96203826135852,3a,75y,162.2h,0.0t/data=!3m6!1e1!3m4!1swqZWQaLgJ34COxE0xAHBxA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a86f9762-67d9-4fdc-8dba-6c2d9a1e76b5", + "payload": { + "address": { + "street": "6 Metrotech Center", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "7eb85bc0-aa9c-4365-b340-5efd967606ff", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80180786152631,-73.94354499959546,3a,75y,287.0h,0.0t/data=!3m6!1e1!3m4!1sTvfpNff4F0IwIk2xADBRIA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "19abc98f-1864-47b8-8e18-cc345426f6bd", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.67526307852854,-73.87187985851686,3a,75y,38.9h,0.0t/data=!3m6!1e1!3m4!1sZt9UtrAmBIZKVs_pzFC0KA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "67f62bc9-7304-4f2c-b034-5bb161470ccf", + "payload": { + "address": { + "street": "132 32nd St, Ste 123 (lower Level)", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11232", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "fec41bea-3d5a-4048-aeb2-dea6bb699efe", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.74491395917675,-73.95021101119426,3a,75y,23.3h,0.0t/data=!3m6!1e1!3m4!1sdshskUvT4jFuWhevmAuWoQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f52d6067-9bdb-4b72-be3a-b7358b799424", + "payload": { + "address": { + "street": "55 Hanson Pl 2nd Floor", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11217", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "793d9757-4d41-4725-90d8-e43eca9634b2", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81921820737011,-73.92817593786279,3a,75y,116.9h,0.0t/data=!3m6!1e1!3m4!1ssuBb2o-25-8cFAMbrNvg_w!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "c306521f-26e1-4318-b669-2d1a3870e76b", + "payload": { + "address": { + "street": "260 E 161st St, C-Level", + "city": "Bronx", + "state": "NY", + "postalCode": "10451", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "10c43be8-41b8-49b2-a4ae-61a07fdad79a", + "payload": { + "address": { + "street": "255 Ave W", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11223", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.59235607823381,-73.97350293359116,3a,75y,333.0h,0.0t/data=!3m6!1e1!3m4!1sX1foiQik2Zqo74B5E3Y5gg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "bd7a9ee5-d639-4212-b853-714b067fb445", + "payload": { + "address": { + "street": "470 Castleton Ave", + "city": "Staten Island", + "state": "NY", + "postalCode": "10301", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "128ab342-28e6-43c6-a590-cccbb92e3a16", + "payload": { + "address": { + "street": "25 Elm Pl, 5th Floor", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "cecb5edb-7da6-4523-b158-c44aa3f0a03f", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.76936464485536,-73.95560144924411,3a,75y,32.4h,0.0t/data=!3m6!1e1!3m4!1s8JgljODc4pkiBtrOu-ejrg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "394e2430-e328-49b6-8d4e-03479afa2fb6", + "payload": { + "address": { + "street": "191 Joralemon St", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "cdfc2cc5-39fb-4bb7-80f1-140799399073", + "payload": { + "address": { + "street": "426 Decatur St", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11233", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "2abdbe81-4d47-419f-a339-ca5dc8ea4b82", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.68694925154484,-73.97603005954163,3a,75y,213.1h,0.0t/data=!3m6!1e1!3m4!1smxjoIGMaY5cUkaQZoVs0pw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "3b14d00b-eaea-4be6-9c49-95053ec6dad0", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.86601819903226,-73.92480795709,3a,75y,58.8h,0.0t/data=!3m6!1e1!3m4!1sFl6wGzm_xuASxdRQex3RSg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "2cdd0612-adff-43a4-9125-a7cd3b5de51b", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.80132572939573,-73.93811377309943,3a,75y,204.5h,0.0t/data=!3m6!1e1!3m4!1s5W9-I_s6d5HMkd_l3sOMjg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "31eed5bb-6a9d-4be4-87f6-ca0f746fc36f", + "payload": { + "address": { + "street": "42 Broadway, Ste 1136", + "city": "New York", + "state": "NY", + "postalCode": "11740", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f530aa8e-3c8c-4954-bc63-c009d38deedf", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.65754194374388,-73.76928611118707,3a,75y,347.3h,0.0t/data=!3m6!1e1!3m4!1sHssehC9ciseoVAO-VOHWUw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "5d635727-29de-44df-b67d-ab75c8c6d7fb", + "payload": { + "address": { + "street": "2739-45 Third Ave", + "city": "Bronx", + "state": "NY", + "postalCode": "10451", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "f16faa5c-c42e-4e15-b8ae-30acb490ecde", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.66700536312806,-73.98811828372901,3a,75y,122.7h,0.0t/data=!3m6!1e1!3m4!1sre4MNCnL5dtEsLCvDfLJcw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "91a347f6-ba11-416a-ba87-3d202dc616cc", + "payload": { + "address": { + "street": "150 Ct St, #3", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11201", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "45f1444c-d5b8-421a-94de-af4a53f29d35", + "payload": { + "address": { + "street": "133-29 41st Ave", + "city": "Queens", + "state": "NY", + "postalCode": "11355", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "1c3a6dc6-eb27-4692-8759-08ee53b417b2", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69185477959677,-73.76391022390018,3a,75y,10.0h,0.0t/data=!3m6!1e1!3m4!1shohDoCpaZK3kBpggk7OXaA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "f93033ed-aae3-4353-b2e6-71d2fd4431d5", + "payload": { + "address": { + "street": "61 W 87th St", + "city": "New York", + "state": "NY", + "postalCode": "10024", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "e3c1c9dd-5da2-4f42-be63-cd03338de320", + "payload": { + "address": { + "street": "591 Summit Ave, Ste 300", + "city": "Jersey City", + "state": "NJ", + "postalCode": "07306", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.73492017060205,-74.05946288684828,3a,75y,186.4h,0.0t/data=!3m6!1e1!3m4!1sV6qCFWs0229hfT62EfY2Iw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a00030b5-9225-4517-97ab-918104e24627", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.7938035316835,-73.95004087029879,3a,75y,197.7h,0.0t/data=!3m6!1e1!3m4!1sdk6-_ONJciqhWbTSWQLGxA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "dd4c53bf-76cf-4005-bf4a-73c22449d850", + "payload": { + "address": { + "street": "127 W 127th St, Ste 221", + "city": "New York", + "state": "NY", + "postalCode": "10027", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "c31cf015-ead3-4942-98aa-05569b0c1364", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.67557293257716,-73.95886997143522,3a,75y,185.2h,0.0t/data=!3m6!1e1!3m4!1sdSdqCaoxLbmm0sofWPfz3Q!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ceececc1-d4fc-4f39-9668-e36bff5b1fcc", + "payload": { + "address": { + "street": "120-34 Queens Blvd., Ste 410", + "city": "Kew Gardens", + "state": "NY", + "postalCode": "11415", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "58c44e54-3a78-4f10-8c13-9771a313b21a", + "payload": { + "address": { + "street": "616 W 114th St", + "city": "New York", + "state": "NY", + "postalCode": "10025", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "4a9395be-687a-4328-a65b-66fda390e4cb", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.65586785607662,-73.9152129238736,3a,75y,84.2h,0.0t/data=!3m6!1e1!3m4!1sLD6SyMDyFu0Vn64-ZBrKqw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "11af51c1-7489-4b22-858f-75db42510842", + "payload": { + "address": { + "street": "815 Broadway", + "city": "Brooklyn", + "state": "NY", + "postalCode": "10003", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "27261749-2033-4c6f-8415-368e1b4bae6f", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.79444111016533,-73.94353029002392,3a,75y,24.6h,0.0t/data=!3m6!1e1!3m4!1sbezsbmhXvnMMjxo97xOfNQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "3046cdb2-042a-416e-ba31-b229cc94fc54", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69245984091199,-73.95572925305284,3a,75y,259.9h,0.0t/data=!3m6!1e1!3m4!1sqCdD0F6ff7wtaRZIsAdU4w!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "709cd6dc-6922-4f38-87e0-b81be4799a5c", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.78553974539783,-73.94583035115654,3a,75y,130.3h,0.0t/data=!3m6!1e1!3m4!1sGIJhY8n_TRnkFe2TWOzluA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "20c951e9-e7fb-47a1-a01c-9c1333e3cab1", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.70223358437699,-73.81484278925495,3a,75y,255.2h,0.0t/data=!3m6!1e1!3m4!1suNencaauQXv3g3bDII2Ovg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "34ac3d9d-b79e-4f41-8d93-ef81192a52c4", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.60350740490255,-73.75151549943286,3a,75y,201.3h,0.0t/data=!3m6!1e1!3m4!1soxCzyRBLeitTvAYtqAyzRw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "e2764c22-a814-4d16-b004-387efaaca6fe", + "payload": { + "address": { + "street": "66-03 Beach Channel Dr", + "city": "Far Rockaway", + "state": "NY", + "postalCode": "11692", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "8a3136e8-75fc-49fd-abd0-7a76566de7d5", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.60229519429134,-73.75320901117142,3a,75y,187.0h,0.0t/data=!3m6!1e1!3m4!1sxwx0BGfyStI_tPRkw35NWw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "82fc28d6-54f3-494e-83f0-1e40ee7a7754", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.63090925504554,-73.94492024990507,3a,75y,351.1h,0.0t/data=!3m6!1e1!3m4!1spxNqszK6Vffkl2K6PdG8LA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "6ddf2561-8058-4b26-aa5e-13f09909a1b2", + "payload": { + "address": { + "street": "89-56 162nd St", + "city": "Jamaica", + "state": "NY", + "postalCode": "11432", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "d9fb94fd-a0bd-452e-82cf-01de86b5644f", + "payload": { + "address": { + "street": "928 Broadway, Ste 403", + "city": "New York", + "state": "NY", + "postalCode": "10010", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "48cf916d-214d-4aa1-8d40-bbbe84e18384", + "payload": { + "address": { + "street": "317 Bowery St", + "city": "New York", + "state": "NY", + "postalCode": "10003", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "1a9a87b9-9564-4dcf-88cb-0513beff0b6b", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81174367323356,-73.92510334283126,3a,75y,24.4h,0.0t/data=!3m6!1e1!3m4!1sjgop-EIt8_Xpb-R8QRE7jQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "ad624d3e-d2f0-48fc-be03-19098c89310c", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.72811897203537,-73.98652176095334,3a,75y,23.9h,0.0t/data=!3m6!1e1!3m4!1se4RgCEynTaFEqRllkPoYSw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "c0f35a80-5950-4618-a733-5704f7d99872", + "payload": { + "address": { + "street": "5030 Broadway, Ste 201", + "city": "New York", + "state": "NY", + "postalCode": "10034", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.86867331853695,-73.91710839399386,3a,75y,25.5h,0.0t/data=!3m6!1e1!3m4!1sEe9-VJTJI2A69p8_JY9YBw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "bdd2da43-b2fd-47fd-bc79-802298afa6f1", + "payload": { + "address": { + "street": "279 E 3rd St", + "city": "New York", + "state": "NY", + "postalCode": "10009", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.72146687340151,-73.98008872652193,3a,75y,20.0h,0.0t/data=!3m6!1e1!3m4!1sM2oIfS69W3zUeE0Es24XMQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "c83b4470-6192-480b-b027-586402afadc5", + "payload": { + "address": { + "street": "1905 Morris Ave", + "city": "Bronx", + "state": "NY", + "postalCode": "10453", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "51909381-e65e-47b8-837e-3db156e07777", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.62228798313622,-73.92720224606636,3a,75y,84.9h,0.0t/data=!3m6!1e1!3m4!1sqNdPd9wsgts8Xnz_eGrjxw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "1c0084b5-b5cc-4950-a924-db866b674ea7", + "payload": { + "address": { + "street": "179-00 Linden Blvd", + "city": "Jamaica", + "state": "NY", + "postalCode": "11425", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "9c0cf54b-1e65-4ded-8cfa-5541a7fa0cbf", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.75069637519709,-73.87536180503004,3a,75y,156.0h,0.0t/data=!3m6!1e1!3m4!1szr_xB5ANDVYmGfzqYPNYfA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a14f9d60-a576-4e05-9e11-f86584164bc4", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.69034829567528,-73.98698294613163,3a,75y,121.4h,0.0t/data=!3m6!1e1!3m4!1sZf4iQvdFuRtH_2MbHU0C6A!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "a83ad0cc-5f6c-421b-9110-b6d524aee2f9", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.7448866343901,-73.98011096604843,3a,75y,24.5h,0.0t/data=!3m6!1e1!3m4!1sdp1_UBYI7RDRunFIyLoAwQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "6455680b-11b2-4df1-bfa1-d1d752a4ce24", + "payload": { + "address": { + "street": "56-45 Main St", + "city": "Flushing", + "state": "NY", + "postalCode": "11355", + "country": "US" + } + }, + "patch_status": "patched" + }, + { + "location_id": "86c94915-5ee0-47c7-bd10-2db3534e2891", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.79903344187864,-73.93850582964245,3a,75y,214.7h,0.0t/data=!3m6!1e1!3m4!1smrNM70mhZnfQztWTSPbDXg!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "17bd886f-22b1-40a6-841d-f1d79fc44b51", + "payload": { + "address": { + "street": "921 E New York Ave", + "city": "Brooklyn", + "state": "NY", + "postalCode": "11203", + "country": "US" + }, + "streetview_url": "https://www.google.com/maps/@40.66290484982478,-73.93243303504396,3a,75y,338.8h,0.0t/data=!3m6!1e1!3m4!1s7-QVGxe67cWg7pWFEl92VQ!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "8545b5ba-6ab6-43eb-abb9-b5a9caa7aefa", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.71416179078087,-73.99594431723092,3a,75y,170.1h,0.0t/data=!3m6!1e1!3m4!1shaDQ_A7-2a4SW0TKj6KiMw!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + }, + { + "location_id": "6f262eb1-ff7b-4711-bb9e-e6ddee3ffe93", + "payload": { + "streetview_url": "https://www.google.com/maps/@40.81374600928289,-73.94401211760346,3a,75y,11.6h,0.0t/data=!3m6!1e1!3m4!1slDOwAnGNECMt85QsebkSgA!2e0!7i16384!8i8192" + }, + "patch_status": "patched" + } + ] +}