diff --git a/.ebextensions/copy_nginx.config b/.ebextensions/copy_nginx.config new file mode 100644 index 0000000000000000000000000000000000000000..34d7f342c10a418ca5caf5275364f21c56158822 --- /dev/null +++ b/.ebextensions/copy_nginx.config @@ -0,0 +1,44 @@ +files: + "/etc/nginx/sites-available/blocpower.eb.nginx.conf" : + mode: "000755" + owner: root + group: root + content: | + map $http_upgrade $connection_upgrade { + default "upgrade"; + "" ""; + } + + server { + large_client_header_buffers 16 32k; + listen 80; + + gzip on; + gzip_comp_level 4; + gzip_types text/html text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; + + if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})T(\d{2})") { + set $year $1; + set $month $2; + set $day $3; + set $hour $4; + } + access_log /var/log/nginx/healthd/application.log.$year-$month-$day-$hour healthd; + + access_log /var/log/nginx/access.log; + + location / { + proxy_pass http://docker; + proxy_http_version 1.1; + + proxy_set_header Connection $connection_upgrade; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } + } + +commands: + 00_enable_site: + command: 'rm -f /etc/nginx/sites-enabled/* && ln -s /etc/nginx/sites-available/blocpower.eb.nginx.conf /etc/nginx/sites-enabled/blocpower.eb.nginx.conf' diff --git a/.gitignore b/.gitignore index 7c2649ca46af1797f7e8e8ee97f2b3e787ec7752..60ed49f9f759d392aa971b990b141851c71602e2 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,7 @@ config.json # PyCharm .idea .DS_Store + +# VSCode + +.vscode diff --git a/app/__init__.py b/app/__init__.py index 743a630fda73e3832be1fa2d54bd064f0d69c4e6..fc4bb247dfc61991c39b89cde427675d47b61b42 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -29,6 +29,7 @@ def create_app(config): app.logger.debug('Setting up application...') + # Import all the view from the app from . import views views.register(app) diff --git a/app/config/nginx.conf b/app/config/nginx.conf index a3e0528dae60b3f6487195f1ba92305571f26bb1..9781b8a1fd31ad93a1a59557ce3689da31ab328c 100644 --- a/app/config/nginx.conf +++ b/app/config/nginx.conf @@ -18,6 +18,7 @@ http { error_log $NGINXERR; server { + large_client_header_buffers 16 32k; listen 80; listen [::]:80; server_name $DOMAIN; diff --git a/app/config/uwsgi.ini b/app/config/uwsgi.ini index 5790769b3259c0e58918d4d488bd3684ea5eb5a2..1c2e7892dfacf3d71484417dc1386fd7e9a5b9d0 100644 --- a/app/config/uwsgi.ini +++ b/app/config/uwsgi.ini @@ -24,3 +24,6 @@ module = wsgi:app # For multithreading use lazy = true lazy-apps = true + +# Allow longer filter params +buffer-size=65535 diff --git a/app/controllers/scores.py b/app/controllers/scores.py new file mode 100644 index 0000000000000000000000000000000000000000..978d66dea11c2f70371e7d6cd46968b7b59001b1 --- /dev/null +++ b/app/controllers/scores.py @@ -0,0 +1,29 @@ +"""Scores controllers""" +from flask import g +from werkzeug.exceptions import BadRequest +from .base import RestController +from ..forms.scores import HeatPumpScoreForm, TargetingScoreForm +from ..models.scores import HeatPumpScore, TargetingScore + + +class HeatPumpScoreController(RestController): + """BuildingHeatPumpScore Controller""" + + Model = HeatPumpScore + filters = { + 'building_id': lambda d: HeatPumpScore.building_id == d['building_id'], + 'building_ids[]': + lambda d: HeatPumpScore.building_id.in_(d.getlist('building_ids[]')), + + } + + +class TargetingScoreController(RestController): + """BuildingTargetingScore Controller""" + + Model = TargetingScore + filters = { + 'building_id': lambda d: TargetingScore.building_id == d['building_id'], + 'building_ids[]': + lambda d: TargetingScore.building_id.in_(d.getlist('building_ids[]')), + } diff --git a/app/forms/scores.py b/app/forms/scores.py new file mode 100644 index 0000000000000000000000000000000000000000..45605579ecec228e879fb1ddc2e5e943a60ccdcb --- /dev/null +++ b/app/forms/scores.py @@ -0,0 +1,34 @@ +import wtforms as wtf +from .base import Form, UserForm + + +class HeatPumpScoreForm(UserForm, Form): + + score = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) + building_proximities_cost = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) + type_of_fuel = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) + owner_occupied = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) + stable_tenure_of_ownership = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) + building_id = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) + + +class TargetingScoreForm(UserForm, Form): + + score = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) + building_id = wtf.StringField( + validators=[wtf.validators.Required(), + wtf.validators.Length(max=64)]) diff --git a/app/models/scores.py b/app/models/scores.py new file mode 100644 index 0000000000000000000000000000000000000000..6be58d1943efd1f418d04cc26d1b35ccf40f0bb5 --- /dev/null +++ b/app/models/scores.py @@ -0,0 +1,24 @@ +from .base import Model, User, Tracked +from ..lib.database import db + + +class HeatPumpScore(Model, Tracked, db.Model): + """1:1 Heatpump score and buildings""" + __tablename__ = 'heatpumpscore' + __table_args__ = {'schema': 'scores'} + + building_id = db.Column(db.Integer) # FIXME: Foregin key to building + score = db.Column(db.Integer) + building_proximities_cost = db.Column(db.Integer) + type_of_fuel = db.Column(db.Integer) + owner_occupied = db.Column(db.Integer) + stable_tenure_of_ownership = db.Column(db.Integer) + + +class TargetingScore(Model, Tracked, db.Model): + """1:1 Targeting score and buildings""" + __tablename__ = 'targetingscore' + __table_args__ = {'schema': 'scores'} + + building_id = db.Column(db.Integer) # FIXME: Foregin key to building + score = db.Column(db.Integer) diff --git a/app/models/space.py b/app/models/space.py index d91f0b1d89e2b86a3c44cc8b30d4d6a925856dd1..a9de28f3294d9869122d135a9974730781148741 100644 --- a/app/models/space.py +++ b/app/models/space.py @@ -2,15 +2,17 @@ from .base import Model, BaseModel, User from ..lib.database import db + class SpacesSchema(): """Class to point to spaces schema""" __table_args__ = {'schema': 'spaces'} + class Space(SpacesSchema, User, Model, db.Model): """Model for a Space""" id = db.Column(db.Integer, primary_key=True, server_default=db.text("nextval('space_id_seq'::regclass)")) - building_id = db.Column(db.Integer) # FIXME: Foregin key to building + building_id = db.Column(db.Integer) # FIXME: Foregin key to building conditioned = db.Column(db.Boolean) orientation = db.Column(db.String(64)) description = db.Column(db.String(64)) @@ -18,11 +20,12 @@ class Space(SpacesSchema, User, Model, db.Model): time_created = db.Column(db.DateTime, server_default=db.text("timezone('utc'::text, now())")) time_modified = db.Column(db.DateTime) + class Apartment(SpacesSchema, User, Model, db.Model): """Model for an Apartment""" id = db.Column(db.Integer, primary_key=True, server_default=db.text("nextval('apartment_id_seq'::regclass)")) - building_id = db.Column(db.Integer) # FIXME: Foregin key to building + building_id = db.Column(db.Integer) # FIXME: Foregin key to building number = db.Column(db.String(64)) number_of_bedrooms = db.Column(db.Integer) tenant_name = db.Column(db.String(64)) @@ -35,21 +38,23 @@ class ServiceArea(SpacesSchema, User, Model, db.Model): """Model for a Service Area""" id = db.Column(db.Integer, primary_key=True, server_default=db.text("nextval('service_area_id_seq'::regclass)")) - building_id = db.Column(db.Integer) # FIXME: Foregin key to building + building_id = db.Column(db.Integer) # FIXME: Foregin key to building time_created = db.Column(db.DateTime, server_default=db.text("timezone('utc'::text, now())")) time_modified = db.Column(db.DateTime) + class CommonArea(SpacesSchema, User, Model, db.Model): """Model for a Common Area""" id = db.Column(db.Integer, primary_key=True, server_default=db.text("nextval('common_area_id_seq'::regclass)")) - building_id = db.Column(db.Integer) # FIXME: Foregin key to building + building_id = db.Column(db.Integer) # FIXME: Foregin key to building time_created = db.Column(db.DateTime, server_default=db.text("timezone('utc'::text, now())")) time_modified = db.Column(db.DateTime) + class SpaceArea(SpacesSchema, BaseModel, db.Model): """Model for associating spaces to space metadata""" - space_id = db.Column(db.Integer, primary_key=True) # FIXME: Foregin key to spaces - area_id = db.Column(db.Integer, primary_key=True) # FIXME: Foregin key to space child + space_id = db.Column(db.Integer, primary_key=True) # FIXME: Foregin key to spaces + area_id = db.Column(db.Integer, primary_key=True) # FIXME: Foregin key to space child area_type = db.Column(db.String(64), primary_key=True) diff --git a/app/views/__init__.py b/app/views/__init__.py index f9b8bc1c6fd9369aa7f438ea8967369513e21bf1..0fc6c2091066719602a0d13f3a414b3fc2353e74 100644 --- a/app/views/__init__.py +++ b/app/views/__init__.py @@ -6,7 +6,8 @@ from . import (bgroup, unapproved_point, unapproved_window_door, unapproved_building_dimensions, - space) + space, + scores) def register(app): @@ -19,6 +20,8 @@ def register(app): bgroup.BGroupView.register(app) bgroup.BuildingBGroupView.register(app) bgroup_user_group.BGroupUserGroupView.register(app) + scores.HeatPumpScoreView.register(app) + scores.TargetingScoreView.register(app) space.SpaceView.register(app) space.ApartmentView.register(app) space.CommonAreaView.register(app) diff --git a/app/views/scores.py b/app/views/scores.py new file mode 100644 index 0000000000000000000000000000000000000000..85a9933052081182c344daf0a716b7920a06f549 --- /dev/null +++ b/app/views/scores.py @@ -0,0 +1,40 @@ +"""Building scores views""" +from flask import request +from flask.ext.classy import route +from werkzeug.exceptions import MethodNotAllowed +from ..views.base import RestView +from ..controllers.scores import HeatPumpScoreController, TargetingScoreController + + +class HeatPumpScoreView(RestView): + + route_prefix = '/score/' + + def get_controller(self): + return HeatPumpScoreController() + + def post(self): + raise MethodNotAllowed() + + def put(self, id_): + raise MethodNotAllowed() + + def delete(self, id_): + raise MethodNotAllowed() + + +class TargetingScoreView(RestView): + + route_prefix = '/score/' + + def get_controller(self): + return TargetingScoreController() + + def post(self): + raise MethodNotAllowed() + + def put(self, id_): + raise MethodNotAllowed() + + def delete(self, id_): + raise MethodNotAllowed() diff --git a/app/views/space.py b/app/views/space.py index ea5d7106901d30be844ed635f4c96ae653b2f673..c528856be9622cdb5330636fc687d4851e892d6b 100644 --- a/app/views/space.py +++ b/app/views/space.py @@ -11,11 +11,13 @@ class SpaceView(RestView): def get_controller(self): return SpaceController() + class ApartmentView(RestView): """View for Apartment""" def get_controller(self): return ApartmentController() + class CommonAreaView(RestView): """View for Common Area""" def get_controller(self): @@ -24,6 +26,7 @@ class CommonAreaView(RestView): def put(self, id_): return MethodNotAllowed() + class ServiceAreaView(RestView): """View for Service Area""" def get_controller(self): diff --git a/bulk/README.md b/bulk/README.md new file mode 100644 index 0000000000000000000000000000000000000000..9b8131eefec92de3afeec7b9c9e19e52dc230718 --- /dev/null +++ b/bulk/README.md @@ -0,0 +1,154 @@ +# Flask Boilerplate +Boilerplate code for a RESTful flask application. + +## Models +SQLAlchemy database models. There are a few mixin classes here: `Model` and `Tracked`. `Model` is the base model mixin and should be the first element in the subclass's `mro()`. `Tracked` adds the `created` and `updated` datetime fields which update when a record is inserted and updated respectively. Any mixins need to be before the base `db.Model` class in the `mro()`. For example, we might have: + +`app/models/building.py` + +```python +from app.lib.database import db +from app.models.base import Model, Tracked + + +class Building(Model, Tracked, db.Model): + owner_id = db.Column(db.Integer, db.ForeignKey('user.id')) + open = db.Column(db.Time) + close = db.Column(db.Time) +``` + +## Forms +Forms provide validation via [WTForms](https://wtforms.readthedocs.org/en/latest/), which is aliased to `wtf` within each file. + +## Controllers +Controllers provide an abstraction for more complicated queries that will involve some python code. Using the model from the previous section, we might have: + +`app/controllers/building.py` + +```python +from datetime import time +from sqlalchemy import not_, and_ +from werkzeug.exceptions import BadRequest + +from app.controllers.base import RestController +from app.models.building import Building +from app.forms.building import BuildingForm + + +class BuildingController(RestController): + Model = Building + + def open_state_filter(self, filter_data): + """Filters buildings based on whether they are open or closed.""" + current_time = time(filter_data['current_time']) + + try: + is_open = filter_data['is_open'] + except KeyError: + raise BadRequest + + filter_ = and_( + self.Model.open < current_time, + self.Model.close > current_time + ) + if not is_open: + filter_ = not_(filter_) + + return filter_ + + filters = {'current_time': open_state_filter} + + def get_form(self, filter_data): + return BuildingForm +``` + +Note that the default implementation automatically provides `index()`, `get()`, `post()`, `put()`, and `delete()` methods. The controller can now be filtered like: + +```python +from datetime import datetime + + +BuildingController().index({ + 'current_time': datetime.now().time().isoformat(), + 'is_open': True +}) +``` + +In general, controllers will not depend on the request in any way. + +## Permissions +Permissions are instances of a `Need` object from [astex/needs](//github.com/astex/needs). These are well documented in the original repository, but we can use them like this: + +`app/permissions.py` + +```python +from needs import Need +from sqlalchemy import and_ +from werkzeug.exceptions import Unauthorized + + +class BaseNeed(Need): + error = Unauthorized + + +class UserNeed(BaseNeed): + def is_met(self): + from flask import session + + return session.user +user_need = UserNeed() + + +class AdminNeed(BaseNeed): + def is_met(self): + from flask import session + + return user_need and session.user.is_admin +admin_need = AdminNeed() + + +class BuildingOwnerNeed(BaseNeed): + def __init__(self, id_): + self.building_id = id_ + + def is_met(self): + from flask import session + from app.lib.database import db + from app.models.building import Building + + return ( + user_need and + db.session.query(Building)\ + .filter(and_( + Building.id == self.object_id, + Building.owner_id == session.user.id + ))\ + .first() + ) +``` + +## Views +Views sit one step above controllers in the pipeline. They are responsible for parsing the request into a dictionary, handling permission to each endpoint, call the controller, and render a response. These should have no direct knowledge of the database backend. We can use these in conjunction with views like so: + +`app/views/building.py` + +```python +from app.views.base import RestView +from app.permissions import admin_need, BuildingOwnerNeed +from app.controllers.building import BuildingController + + +class BuildingView(RestView): + def get_controller(self): + return BuildingController() + + @admin_need + def index(self): + return super(BuildingView, self).index() + + def get(self, id_): + with admin_need | BuildingOwnerNeed(id_): + return super(BuildingView, self).get(id_) +``` + +The index endpoint on this resource is now only accessible to admins. Similarly, the get endpoint is only accessible to admins or the owner of that particular record. Note that every other endpoint on the resource is open; permissions need to be added explicitly. diff --git a/bulk/UPK-NYCEEC-open.csv b/bulk/UPK-NYCEEC-open.csv new file mode 100644 index 0000000000000000000000000000000000000000..1c3512b236721ed61697d74e86ec0714a4bd9feb --- /dev/null +++ b/bulk/UPK-NYCEEC-open.csv @@ -0,0 +1,1194 @@ +LOCCODE,PreK_Type,Borough,LocName,NOTE,phone,address,Postcode,Day_Length,Seats,X,Y,Email,Website,MEALS,INDOOR_OUTDOOR,EXTENDED_DAY,SEMS_CODE,Latitude,Longitude,Community Board,Council District ,Census Tract,BIN,BBL,NTA +KABC,NYCEEC,K,Bais Sarah School,,718-871-7571,6101 16 Ave,11204,1,60,986288,166574,baissarahupk@verizon.net,,5,9,3,20KABC,40.624186,-73.99263,11,44,248,3132384,3055240001,Bensonhurst West +KAOQ,NYCEEC,K,Yeshiva Of Kings Bay,,718-646-8500,2611 Ave Z,11235,3,18,1000029,154006,myz@ykb.us,,5,9,3,22KAOQ,40.589179,-73.943404,15,48,596,3204595,3074420011,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KABD,NYCEEC,K,Bais Tziporah,,718-436-8336,1449 39th St,11218,1,27,989033,171984,btmsm@aol.com,,5,9,3,20KABD,40.638647,-73.982997,12,39,228,3328392,3053470058,Borough Park +KABE,NYCEEC,K,Bais Yaakov D'chassidei Gur,,718-338-5600,1975 51st St,11204,1,18,990426,166877,esmith@thejnet.com,,5,9,3,21KABE,40.62465,-73.977946,12,44,464,3129528,3054620045,Borough Park +KAAE,NYCEEC,K,Adelphi Academy Of Brooklyn,,718-238-3308,8515 Rdg Blvd,11209,1,36,975045,166820,romanosi@adelphinyc.org,,5,9,3,20KAAE,40.624746,-74.03347,10,43,62,3328998,3060330001,Bay Ridge +KAAS,NYCEEC,K,Associated Beth Rivkah School - UPK,,718-735-0400,470 Lefferts Ave,11225,3,80,999262,180626,stenenbaum@bethrivkah.edu,,5,9,3,17KAAS,40.662647,-73.945959,9,40,806,3035454,3013310019,Prospect Lefferts Gardens-Wingate +KABF,NYCEEC,K,Bais Yaakov Academy UPK,,718-339-4747,1213 Elm Ave,11230,3,60,994745,164146,mlevin@gamlacollege.com,,5,9,3,21KABF,40.616988,-73.962457,14,48,768,3180784,3067410012,Midwood +KABG,NYCEEC,K,Yeshiva Jesode Hatorah,,718-302-7500,563 Bedford Ave,11211,3,34,994502,196556,vien@thejnet.com,,4,7,1,14KABG,40.704135,-73.96112,1,33,535,3060116,3021930007,Williamsburg +KABN,NYCEEC,K,Barkai Yeshivah,,718-998-7473,5302 21 Ave,11204,3,40,990677,165898,bmorano@barkaionline.org,,5,9,3,21KABN,40.622029,-73.976845,12,44,464,3131092,3054951138,Borough Park +KABP,NYCEEC,K,Battalion Christian Academy,,718-774-5447,780 Schenectady Ave,11203,1,36,1002608,177682,alcockfiled@gmail.com,,3,8,1,18KABP,40.654351,-73.9336,17,41,870,3108499,3048670118,East Flatbush-Farragut +KABU,NYCEEC,K,Be - Er Hagolah Institutes,,718-642-6800,671 Louisiana Ave,11239,1,72,1016772,174547,bhagolah@aol.com,http://beerhagolah.org,3,3,1,19KABU,40.645638,-73.883643,5,42,105804,3339160,3044520080,Starrett City +KACI,NYCEEC,K,Bambi Day Care,,718-645-7010,1981 Homecrest Ave,11229,1,60,995495,158326,info@bambiacademy.com,http://bambidaycarecenter.com,3,3,1,21KACI,40.601446,-73.959725,15,48,556,3196710,3072910134,Homecrest +KADG,NYCEEC,K,Bnos Menachem,,718-493-1100,739 East New York Ave,11203,3,18,1001380,180668,bnos.menachem@verizon.net,http://bnosmenachem.org,1,8,1,17KADG,40.662347,-73.938285,9,41,87401,3038483,3014280047,Prospect Lefferts Gardens-Wingate +KADN,NYCEEC,K,Zion Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-438-2862,5000 14th Ave,11219,1,40,986785,169923,Zion.daycare@thejnet.com,,2,6,2,20KADN,40.633057,-73.990593,12,44,236,3138079,3056490038,Borough Park +KADP,NYCEEC,K,Gan DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-435-2812,4206 - 10 15th Ave,11219,1,47,988683,171061,gandaycare@verizon.net,,5,9,3,20KADP,40.636182,-73.983758,12,44,232,3135986,3056000037,Borough Park +KADW,NYCEEC,K,Brooklyn Amity School,,718-891-6100,3867 Shr Pkwy,11235,1,30,1003138,153054,kidschoicepreschool@verizon.net,,5,9,3,22KADW,40.586329,-73.93226,15,48,598,3247917,3088060017,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KAET,NYCEEC,K,Dimitrios & Georgia Kaloidis P.S. Of Holy Cross Goc,,718-836-8096,8502 Rdg Blvd,11209,1,72,974876,166906,,http://dgkschool.com,2,3,2,20KAET,40.624826,-74.033459,10,43,50,3153048,3060320037,Bay Ridge +KAFB,NYCEEC,K,Epiphany Lutheran School,,718-773-7200,721 Lincoln Pl,11216,1,30,997555,183743,Crafton@foch.biz,,7,3,1,17KAFB,40.670862,-73.952347,8,35,31702,3032263,3012540063,Crown Heights North +KAFO,NYCEEC,K,Good Shepherd School,,718-339-2745,1943 Brown St,11229,1,36,1000793,159493,princpap@aol.com,,7,3,1,22KAFO,40.60421,-73.940629,15,46,566,3345248,3073110001,Madison +KAFZ,NYCEEC,K,HIDEC,,718-377-7507,1401 Ave I,11230,1,48,994623,167956,hidec@verizon.net,,3,3,2,21KAFZ,40.627493,-73.962638,14,45,530,3179326,3066980051,Midwood +KAHA,NYCEEC,K,Masores Bais Yaakov,,718-692-2424,1395 Ocean Ave,11230,3,60,996304,168211,g.celnik@masores.com,,5,9,3,22KAHA,40.628339,-73.956881,14,45,772,3206224,3075660006,Flatbush +KAHX,NYCEEC,K,Gateway City Academy,,718-921-3737,257 Bay Rdg Ave,11220,1,143,976810,171036,gca@gatewaycityacademy.net,http://gatewaycityacademy.net,5,9,3,20KAHX,40.636018,-74.026914,10,43,68,3145159,3058620060,Bay Ridge +KAIN,NYCEEC,K,Phyl's Academy,,718-469-9400,3520 Tilden Ave,11203,1,144,999883,174969,info@phylsacademyny.com,http://phylsacademyny.com,5,3,1,17KAIN,40.64708,-73.944058,17,45,854,3110600,3049200006,East Flatbush-Farragut +KAIT,NYCEEC,K,Prospect Park Yeshiva,,718-376-5959,1784 East 17 St,11229,3,36,996376,160135,dkelman@bloppy.org,,5,9,3,22KAIT,40.606652,-73.955962,15,48,552,3000000,3067990046,Madison +KAJD,NYCEEC,K,St. Anselm Catholic Academy,,718-745-7643,365 83 St,11209,1,72,976536,167089,jmckeon@diobrook.org,http://www.sacany.org/,5,9,3,20KAJD,40.625297,-74.028499,10,43,62,3152079,3060070053,Bay Ridge +KAJE,NYCEEC,K,St. Athanasius School,,718-236-4791,6120 Bay Pkwy,11204,1,60,989910,163686,dianecompetello@gmail.com,http://stathanasiusschool.org,5,9,3,21KAJE,40.615966,-73.979239,11,47,246,3132669,3055290034,Borough Park +KAJR,NYCEEC,K,Heartshare Human Services Of New York,,718-238-4637,1825 Bath Ave,11214,1,40,982809,159201,jill.fitzgerald@heartshare.org,http://heartshare.org,2,8,2,20KAJR,40.603405,-74.005247,11,43,280,3336446,3064040029,Bath Beach +KAJT,NYCEEC,K,St. Frances Cabrini Catholic Academy,,718-386-9277,181 Suydam St,11221,1,72,1004723,194266,wanda.marty@sfc-ca.net,http://sfc-ca.com,2,4,1,32KAJT,40.699896,-73.92592,4,34,423,3072916,3032080041,Bushwick South +KAJW,NYCEEC,K,St. Francis Of Assisi,,718-778-3700,400 Lincoln Rd,11225,1,36,998382,180267,c14upk@yahoo.com,http://sfabrooklyn.org,5,3,1,17KAJW,40.661638,-73.949441,9,40,804,3106502,3047910023,Prospect Lefferts Gardens-Wingate +KAKF,NYCEEC,K,St. Mark School,,718-332-9304,2602 East 19th St,11235,1,36,997939,153520,jvok@smsonthebay.com,http://smsonthebay.com,5,3,1,22KAKF,40.588254,-73.950523,15,48,600,3205007,3074630005,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KAKI,NYCEEC,K,St. Peter Catholic Academy,,718-372-0025,8401 23rd Ave,11214,1,72,986936,158403,smmjsfc@aol.com,http://stpeteracademy-brooklyn.org/,5,9,3,21KAKI,40.601656,-73.990468,11,47,298,3329173,3068550001,Bensonhurst East +KALL,NYCEEC,K,St. Gregory The Great Catholic Academy,,917-972-9673,2520 Church Ave,11226,1,36,997022,176227,sgg991@yahoo.com,,5,9,3,17KALL,40.650587,-73.954261,17,40,794,3338999,3051040056,Erasmus +KALT,NYCEEC,K,"Cheder, The",,718-252-6333,129 Elmwood Ave,11230,1,40,991104,167799,cheder_upk@netzero.net,,3,3,2,21KALT,40.627087,-73.975748,12,44,46201,3398191,3064990058,Flatbush +KANO,NYCEEC,K,Yeshivas Boyan Tifereth Mordechai Shlomo,,718-435-6060,1205 44 St,11219,1,30,986737,172123,boyan@verizon.net,,5,9,3,15KANO,40.638925,-73.991007,12,39,224,3136132,3056040001,Borough Park +KANX,NYCEEC,K,Yeshiva Karlin Stolin,,718-232-7800,1801 55th St,11204,1,36,988679,166928,dstein@yks.edu,,3,6,2,21KANX,40.624695,-73.984056,12,44,470,3130561,3054870001,Borough Park +KBKQ,NYCEEC,K,Parkside ECDC,,718-722-6236,525 Parkside Ave,11226,1,40,996498,178302,sandrahuntsmith@yahoo.com,,5,9,3,17KBKQ,40.655937,-73.955515,9,40,802,3115846,3050490001,Prospect Lefferts Gardens-Wingate +KAOA,NYCEEC,K,Yeshiva Headstart 40th Street,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-633-2232,1402 40th St,11218,1,16,988545,171886,mkramer@ykypupa.org,,5,7,1,20KAOA,40.63851,-73.984316,12,39,230,3124884,3053450006,Borough Park +KAOP,NYCEEC,K,Yeshivah Of Flatbush,,718-377-4040,919 East 10 St,11230,3,110,993607,167603,agellman@flatbush.org,,5,9,3,21KAOP,40.62638,-73.966486,12,44,456,3170990,3065230001,Midwood +KAOV,NYCEEC,K,Yeshiva Ohr Shraga,,718-252-7777,1102 Ave L,11230,1,28,994249,165097,generaloffice@ohrshraga.org,http://ohrshraga.org,3,3,1,21KAOV,40.619994,-73.964101,14,44,768,3329237,3067310001,Midwood +KAPB,NYCEEC,K,Yeshivat Shaare Torah,,718-437-6101,222 Ocean Pkwy,11218,3,60,991215,174025,chavys2003@yahoo.com,,8,3,1,15KAPB,40.64439,-73.974325,12,39,494,3124704,3053380051,Kensington-Ocean Parkway +KAPM,NYCEEC,K,Yeshiva Toras Emes,,718-375-0900,1904 Ave N,11230,3,18,996604,163668,yetoem@aol.com,,5,9,3,22KAPM,40.616053,-73.95557,14,48,546,3398189,3067570001,Midwood +KAPR,NYCEEC,K,Talmud Torah Crown Heights Yeshivah,,718-444-5800,6363 Ave U,11234,1,40,1008464,163862,chyjoan@yahoo.com,,3,3,2,22KAPR,40.616209,-73.912697,18,46,698,3236983,3084060035,Georgetown-Marine Park-Bergen Beach-Mill Basin +KARQ,NYCEEC,K,Parkway School,,718-346-0369,5566 Kings Hwy,11203,1,54,1005130,175370,gkgrant@aol.com,http://parkwayschool.org,5,9,3,18KARQ,40.648112,-73.924338,17,45,946,3104546,3047400061,Rugby-Remsen Village +KARS,NYCEEC,K,Action Nursery,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-854-7777,1019 46th St,11219,1,14,985283,172619,actionnursery@thejnet.com,,3,7,2,15KARS,40.640388,-73.996451,12,39,112,3136635,3056140042,Sunset Park East +KASC,NYCEEC,K,Brevoort Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-778-1069,250 Ralph Ave,11233,1,19,1005435,187319,hlareche@bksny.org,http://bksny.org,3,7,1,16KASC,40.68104,-73.9224,3,41,381,3325169,3016880001,Crown Heights North +KASG,NYCEEC,K,Edwards L Cleaveland,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-623-9803,1185 Park Pl,11213,1,26,1001328,184557,jmatison@bksny.org,http://bksny.org,3,7,2,17KASG,40.672793,-73.938391,8,36,343,3324613,3013520080,Crown Heights North +KASI,NYCEEC,K,Cortelyou ECC,,718-282-6077,386 Marlborough Rd,11226,1,36,994095,172679,sfrancis@mycecc.com,,5,9,3,22KASI,40.640589,-73.964321,14,40,520,3118681,3051570013,Flatbush +KASJ,NYCEEC,K,BCS Duffield Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-522-5296,101 Fleet Pl,11201,1,93,989371,191718,ilopez@wearebcs.org,http://wearebcs.org,3,3,1,13KASJ,40.692598,-73.981761,2,35,31,3058258,3020610100,Fort Greene +KASR,NYCEEC,K,Glennwood Avenue Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-859-7720,3017 Glenwood Rd,11210,1,69,998938,170343,glenwood3017@gmail.com,,3,3,1,22KASR,40.634022,-73.947517,17,45,786,3113939,3050050001,Flatbush +KASZ,NYCEEC,K,East Midwood Hebrew Day School,,718-253-1555,1256 East 21st St,11210,1,34,996742,166085,regina2@emhds.org,http://emhds.org,3,3,2,22KASZ,40.622596,-73.954755,14,45,760,3208324,3076200057,Midwood +KATG,NYCEEC,K,Ahrc Francis Of Paola ELC,,718-782-1462,201 Conselyea St,11211,1,6,1000019,199974,Teresa.DelPriore@ahrcnyc.org,http://schools.ahrcnyc.org,5,3,1,14KATG,40.715378,-73.943001,1,34,497,3070199,3028920007,East Williamsburg +KATR,NYCEEC,K,Warbasse Nursery School,,718-266-5585,2785 West 5th St,11224,1,16,992605,150820,lauraok@warbassenurseryschool.com,http://warbassenurseryschool.com,5,7,1,21KATR,40.5804,-73.971636,13,47,35601,3320736,3072530001,West Brighton +KATZ,NYCEEC,K,Neptune Avenue Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-332-8524,293 Neptune Ave,11235,1,110,994173,151073,neptune293@gmail.com,,3,3,1,21KATZ,40.581079,-73.964133,13,48,366,3196391,3072620017,Brighton Beach +KAUK,NYCEEC,K,NYL / WOC Midwood,,718-382-1060,1520 East 13th St,11230,1,16,995048,162397,Jessica.Molina@yai.org,http://yai.org/agencies/nyl,5,3,2,21KAUK,40.612044,-73.960799,14,48,542,3329249,3067590001,Midwood +KBIZ,NYCEEC,K,Shalva UPK I,,718-438-0060,1363 50 St,11219,1,60,986780,170117,YYS@BobovSchool.com,,5,9,3,20KBIZ,40.633685,-73.991389,12,44,236,3137765,3056420048,Borough Park +KAVQ,NYCEEC,K,Hebrew Educational Society,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-241-3000,9502 Seaview Ave,11236,1,63,1014511,169772,Alessandra@thehes.org,http://thehes.org,3,3,1,18KAVQ,40.632808,-73.89122,18,46,1028,3235056,3083180008,Canarsie +KAWC,NYCEEC,K,"Hanover Place CCC, LLC",,347-916-0333,15 Hanover Pl,11201,1,160,989158,190182,rcacere@hanoverchildcare.com,http://hanoverchildcare.com,3,2,1,15KAWC,40.688827,-73.982454,2,33,37,3000462,3001610003,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +KAWQ,NYCEEC,K,Macademy,,718-221-5566,1313 Un St,11225,1,18,998505,183018,qkmacademy@aol.com,http://macademytech.org,5,8,1,17KAWQ,40.668857,-73.948787,9,35,319,3032953,3012690054,Crown Heights South +KAWX,NYCEEC,K,PAL World Of Creative Experiences Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-345-5219,280 Livonia Ave,11212,1,117,1010003,180674,dwhite@palnyc.org,http://palnyc.org,3,7,1,23KAWX,40.662765,-73.907449,16,42,918,3326581,3035900011,Brownsville +KAXC,NYCEEC,K,Bishop Sexton,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-778-0292,933 Herkimer St,11233,1,50,1005748,186420,aalleyne@stmarksheadstart.org,http://stmarksheadstart.org,3,7,2,16KAXC,40.678169,-73.922497,3,41,299,3329595,3017040025,Crown Heights North +KAXU,NYCEEC,K,University Settlement Children's Corner,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-453-4595,565 Livonia Ave,11207,1,68,1013032,181436,kcohen@universitysettlement.org,http://universitysettlement.org,2,3,2,19KAXU,40.664416,-73.896352,5,42,1130,3084621,3038030046,East New York (Pennsylvania Ave) +KAXW,NYCEEC,K,"Highlights Academy, Inc.",,718-953-5555,1688 President St,11213,1,40,1003224,182225,highlightsacademy@yahoo.com,http://highlightsacademyinc.com,3,8,1,17KAXW,40.667031,-73.931702,9,35,351,3037942,3014080037,Crown Heights North +KAYF,NYCEEC,K,PAL La Puerta Abierta,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-373-1100,3001 West 37 St,11224,1,30,983647,147886,rbhattacharjee@palnyc.org,http://palnyc.org,2,6,1,21KAYF,40.573177,-74.002509,13,47,340,3189617,3070650001,Seagate-Coney Island +KAYL,NYCEEC,K,"Puerto Rican Family Institute, Inc.",,718-388-6060,185 Marcy Ave,11211,4,25,995872,197144,lisanchez@prfi.org,,3,2,1,14KAYL,40.707729,-73.958337,1,33,529,3059752,3021510006,Williamsburg +KAYS,NYCEEC,K,Hawthorne Corners DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-282-7200,1950 Bedford Ave,11225,1,15,996233,178733,cornersdcc@verizon.net,,3,6,1,17KAYS,40.65734,-73.956559,9,40,79601,3115676,3050450051,Prospect Lefferts Gardens-Wingate +KAYU,NYCEEC,K,"Bambi DCC, Inc.",,718-771-1603,300 Rogers Ave,11225,1,58,997056,181950,bambicare@gmail.com,http://bambidcc.com,3,7,1,17KAYU,40.666084,-73.953652,9,35,323,3034151,3012950145,Crown Heights South +KAZC,NYCEEC,K,Talmud Torah Ohr Moshe,,718-234-6100,1774 58th St,11204,1,20,988008,166331,ttohrmoshe@gmail.com,,5,9,3,20KAZC,40.623606,-73.986815,12,44,244,3131451,3055040037,Borough Park +KAZM,NYCEEC,K,St. Francis Xavier,,718-857-2559,763 President St,11215,1,36,990715,184947,taylordorothy763@yahoo.com,http://sfxsparkslope.org,7,3,1,15KAZM,40.674465,-73.977497,6,39,157,3020189,3009570017,Park Slope-Gowanus +KAZQ,NYCEEC,K,Bedford Stuyvesant ECDC,,718-455-5565,281 Stuyvesant Ave,11221,1,18,1003046,188799,spiveys@bsecdc.org,,5,9,3,16KAZQ,40.684933,-73.932441,3,36,295,3045801,3016560004,Stuyvesant Heights +KAZT,NYCEEC,K,Bushwick United HDFC 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-443-0134,136 Stanhope St,11221,1,65,1005666,193610,IRFANAK@BUSHWICKUNITED.ORG,http://bushwickunited.org,3,7,2,32KAZT,40.698099,-73.922976,4,37,421,3392942,3032660020,Bushwick South +KAZZ,NYCEEC,K,Cornerstone DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-574-8300,289 Lewis Ave,11221,1,20,1002163,189190,cornerstonedcc@aol.com,,3,3,1,16KAZZ,40.68592,-73.935624,3,36,293,3045189,3016450076,Stuyvesant Heights +KBAE,NYCEEC,K,Block Institute,,347-649-3601,133 27th Ave,11214,1,32,987750,154384,nwu@blockinstitute.org,http://blockinstitute.org,3,3,2,21KBAE,40.590852,-73.987369,13,47,306,3186885,3069000011,Gravesend +KBAI,NYCEEC,K,Guild For Exceptional Children,,718-435-2554,1273 57 St,11219,1,32,985107,169091,alice@gecbklyn.org,http://gecbklyn.org,2,3,2,20KBAI,40.630998,-73.997511,12,44,216,3140076,3056900042,Borough Park +KBAW,NYCEEC,K,Bet Yaakov Ohr Sarah,,718-627-8758,1123 Ave N,11230,2,55,994613,163502,tsena@orotsarah.com,,5,9,3,21KBAW,40.615246,-73.963056,14,48,768,3180770,3067400049,Midwood +KBAY,NYCEEC,K,Bet Yaakov Ateret Torah,,718-375-7100,2166 Coney Is Ave,11223,3,40,994746,159360,psoffice@ateret.net,,4,3,1,21KBAY,40.6042,-73.961654,15,48,416,3394079,3066850034,Homecrest +KBAZ,NYCEEC,K,Nat Azarow Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-346-0924,232 Powell St,11212,1,40,1010873,182961,jcroskey@bksny.org,http://bksny.org,3,7,1,23KBAZ,40.668946,-73.903789,16,41,908,3084013,3037450001,Brownsville +KBBB,NYCEEC,K,Bambi Day Care IV,,718-332-8656,405 81st St,11209,1,73,976957,167477,info@bambiacademy.com,http://bambidaycare.com,3,7,1,20KBBB,40.626187,-74.02632,10,43,138,3328847,3059890001,Bay Ridge +KBBE,NYCEEC,K,PAL Carey Gardens,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-372-4044,2964 West 23rd St,11224,1,21,987018,148546,Kchase@palnyc.org,http://palnyc.org,3,7,1,21KBBE,40.574699,-73.989827,13,47,326,3321840,3070560014,Seagate-Coney Island +KBBL,NYCEEC,K,St. Peter's Preschool,,718-647-1014,109 Highland Pl,11208,1,83,1017187,188019,claradv@aol.com,,2,2,1,19KBBL,40.682594,-73.881465,5,37,1174,3087344,3039300032,Cypress Hills-City Line +KBBO,NYCEEC,K,Khyle Brenaj Kiddie Daycare Inc.,,718-896-8108,9718 Flatlands Ave,11236,1,20,1011999,173864,parich@optonline.net,,5,9,3,18KBBO,40.643812,-73.900416,18,46,988,3230136,3082050042,Canarsie +KBBY,NYCEEC,K,Be Above #27,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-997-2488,779 East 49 St,11203,1,57,1003622,173410,beabove49street@yahoo.com,,3,8,1,18KBBY,40.64264,-73.930408,17,45,840,3105709,3047700050,East Flatbush-Farragut +KBCV,NYCEEC,K,"Tabernacle Church Of God DCC, Inc.",,718-638-3209,34 Kosciuszko St,11205,3,60,997107,190731,tabernacleupk@verizon.net,,3,7,1,13KBCV,40.690353,-73.953678,3,36,241,3049719,3017830023,Bedford +KBCZ,NYCEEC,K,Pine Street Day Care,,718-235-1150,872 - 874 Cres St,11208,2,78,1020888,181987,pinestreetdaycarecenter@verizon.net,,5,9,3,19KBCZ,40.666179,-73.867696,5,42,1220,3000000,3045070017,East New York +KBDA,NYCEEC,K,Urban Strategies 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-235-6151,1091 Sutter Ave,11208,1,119,1018065,184170,usheadstart1@aol.com,,3,7,2,19KBDA,40.671892,-73.878197,5,42,1194,3089620,3040390001,East New York +KBDC,NYCEEC,K,Cypress Hills CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-647-5005,108 Pne St,11208,1,38,1019317,188487,Jeromebass@yahoo.com,http://cypresshillschildcare.org,3,7,1,19KBDC,40.68407,-73.873386,5,37,117602,3327214,3041290008,Cypress Hills-City Line +KBDJ,NYCEEC,K,Cortelyou Academy,,718-421-9581,2739 Bedford Ave,11210,1,18,997245,170999,sfrancis@mycecc.com,http://mycecc.com,5,9,3,22KBDJ,40.636256,-73.9535,14,45,770,3120796,3052250002,Flatbush +KBDN,NYCEEC,K,"Raven's ECC, Inc.",,718-927-2316,1102 East 92nd St,11236,1,69,1010240,173314,info@ravensschool.org,http://ravensschool.org,3,2,1,18KBDN,40.6424,-73.906147,18,46,964,3229538,3081790076,Canarsie +KBDT,NYCEEC,K,Mary Bobb Learning Academy,,718-604-4400,1187 Nostrand Ave,11225,1,91,998081,179139,MaryBobbLearningAcademy@gmail.com,http://marybobb.com,3,2,1,17KBDT,40.65835,-73.95037,9,40,804,3107261,3048140007,Prospect Lefferts Gardens-Wingate +KBDX,NYCEEC,K,BAbove Worldwide Institute - Tomer Devorah,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-402-5734,4500 9 Ave,11220,1,30,984552,173372,cklein@babove.com,,3,5,1,15KBDX,40.642505,-73.998692,12,38,94,3337205,3007510048,Sunset Park East +KBEB,NYCEEC,K,New Life CDC 4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-366-1668,1307 Greene Ave,11237,1,74,1006606,193748,lilibeth_1307@hotmail.com,,3,2,1,32KBEB,40.698371,-73.919235,4,37,431,3319570,3032870021,Bushwick North +KBEP,NYCEEC,K,Brooklyn Chinese American Assoc. Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-851-0869,713 43rd St,11232,1,93,983895,174718,acs@bca.net,http://bca.net,3,6,1,15KBEP,40.646062,-74.001308,7,38,92,3018327,3009247501,Sunset Park East +KBEQ,NYCEEC,K,Brooklyn Developmental Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-235-8800,888 Fountain Ave,11208,1,17,1021619,178530,shayswann@aol.com,,3,3,1,19KBEQ,40.656717,-73.86441,5,42,1070,3327531,3045860300,East New York +KBES,NYCEEC,K,Bushwick United HDFC 6,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-453-5500,200 Central Ave,11221,1,64,1004804,193693,REGINAR@BUSHWICKUNITED.ORG,http://bushwickunited.org,3,2,1,32KBES,40.698397,-73.925727,4,34,423,3073408,3032280020,Bushwick South +KBEZ,NYCEEC,K,Friends Of Crown Heights Educational Center #11,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,929-234-5010,995 Carroll St,11225,1,57,996138,182583,Vgbenedio@foch.biz,http://fochdaycare.org,3,3,1,17KBEZ,40.66771,-73.957331,9,35,325,3033470,3012800054,Crown Heights South +KBFC,NYCEEC,K,Shirley Chisholm CCC Site 4 Somers,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-498-6200,33 Somers St,11233,1,36,1008674,186600,shirleychisholmdcc4@live.com,,3,7,2,23KBFC,40.678664,-73.912016,16,41,371,3041852,3015380046,Ocean Hill +KBFD,NYCEEC,K,St. Marks,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-287-7300,2017 Beverley Rd,11226,1,114,995491,174312,adenis@stmarksheadstart.org,http://stmarksheadstart.org,3,3,2,22KBFD,40.644891,-73.959742,14,40,51001,3117629,3051240057,Flatbush +KBFN,NYCEEC,K,Strong Place For Hope DCC - 2nd Street,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-499-0747,333 2nd St,11215,1,27,988821,184821,strongplaceforhope2@hotmail.com,http://strongplaceforhopedaycare.com,3,6,1,15KBFN,40.673788,-73.983568,6,39,135,3346912,3009690052,Park Slope-Gowanus +KBFQ,NYCEEC,K,St. Andrews CDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-492-9678,4917 Fourth Ave,11220,1,20,980895,174833,,http://lutheranhealthcare.org/main/standrewscommunitydaycare.aspx,2,7,1,15KBFQ,40.646876,-74.01214,7,38,78,3012910,3007830001,Sunset Park West +KBGB,NYCEEC,K,Traditional Educational Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-443-2577,1469b Broadway,11221,1,29,1006823,189849,traditional1469@verizon.net,,3,2,1,32KBGB,40.687556,-73.918636,4,34,397,3393150,3033730007,Bushwick South +KBGC,NYCEEC,K,Yeled V'Yalda,,718-514-8930,1377 42nd St,11219,3,17,988159,171649,rherbst@yeled.org,http://yeled.org,6,6,1,20KBGC,40.638033,-73.98651,12,39,232,3135754,3055940046,Borough Park +KBGI,NYCEEC,K,Yeled V'Yalda 1257,,718-514-8712,1257 38th St,11218,3,110,988054,173072,mhorowitz@yeled.org,http://yeled.org,3,3,1,15KBGI,40.641793,-73.986693,12,39,226,3394062,3052950047,Borough Park +KBGJ,NYCEEC,K,Mevakshei Hashem,,718-435-8900,550 Ocean Pkwy,11226,1,36,991727,170485,pschiff@mevakshai.org,,7,6,1,20KBGJ,40.63492,-73.972517,12,39,484,3127188,3053990032,Kensington-Ocean Parkway +KBGP,NYCEEC,K,Great Oaks Academy,,718-915-3015,4718 Farragut Rd,11203,1,54,1003385,171412,rayed@mohdc.com,http://mohdcsmartstart.com,5,9,3,18KBGP,40.637305,-73.931174,17,45,932,3327647,3047860005,East Flatbush-Farragut +KBGS,NYCEEC,K,Urban Strategies 5 - Georgia L Mcmurray ECDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-235-1215,675 Lincoln Ave,11208,1,40,1021389,184414,usdaycare3@optimum.net,http://childcarecenter.us,3,6,1,19KBGS,40.672675,-73.866436,5,42,1208,3095889,3042710005,East New York +KBGU,NYCEEC,K,New Life CDC 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-821-3432,295 Woodbine St,11237,1,65,1008316,192998,snewlife1@gmail.com,,3,7,1,32KBGU,40.696412,-73.912941,4,37,435,3076869,3033620055,Bushwick North +KBGY,NYCEEC,K,"Kreative Kare DCC, Inc.",,718-386-3242,292 Palmetto St,11237,1,20,1008189,193091,kreativekare@aol.com,,7,8,1,32KBGY,40.696805,-73.913702,4,37,435,3076842,3033620006,Bushwick North +KBIE,NYCEEC,K,All My Children Day Care Site 16,,718-493-1100,739 East New York Ave,11203,1,18,1001497,180679,ckratz@amcearlylearn.com,,3,6,1,17KBIE,40.662347,-73.938285,9,41,87401,3038483,3014280047,Prospect Lefferts Gardens-Wingate +KBIS,NYCEEC,K,"Yeled V'Yalda ECC, Inc.",,718-514-8980,600 Mcdonald Ave,11218,3,45,989993,172288,Blemmer@yeled.org,http://yeled.org,5,9,3,20KBIS,40.639418,-73.978914,12,39,486,3125932,3053690006,Kensington-Ocean Parkway +KBJE,NYCEEC,K,Be Above 37,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-774-4131,570 Crown St,11213,1,60,1001038,181711,uly@yttl.org,,3,7,1,17KBJE,40.665652,-73.939237,9,35,333,3393264,3014170007,Crown Heights South +KBJF,NYCEEC,K,Cooper Park CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-389-5959,292 Frost St,11222,1,14,1000976,201113,cooperpark@e-s-s.org,http://essnyc.org/ece,3,7,1,14KBJF,40.718895,-73.939633,1,34,449,3327829,3028670001,East Williamsburg +KBPV,NYCEEC,K,Ring Around The Rosie,,718-492-7464,7104 13th Ave,11228,1,16,982762,166091,Ring7104@verizon.net,,4,8,1,20KBPV,40.622487,-74.005169,10,43,196,3157619,3061770039,Dyker Heights +KBJH,NYCEEC,K,All My Children Day Care 10,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-576-6812,420 Lefferts Ave,11225,1,54,998876,180599,info@allmychildrendaycare.com,http://allmychildrendaycare.com,3,7,1,17KBJH,40.662571,-73.947213,9,40,806,3035444,3013310009,Prospect Lefferts Gardens-Wingate +KBJI,NYCEEC,K,Marcy Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-855-7252,494 Marcy Ave,11206,1,20,998055,193639,betinolr@e-s-s.org,,3,7,1,14KBJI,40.698084,-73.949756,3,36,255,3325586,3017190001,Bedford +KBJJ,NYCEEC,K,LSSMNY : Early Life Children's Center 8,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-689-8303,265 Marcus Garvey Blvd,11221,1,50,1001191,190131,SALLEYNE@LSSNY.ORG,http://early-life.org,3,1,1,16KBJJ,40.68862,-73.939152,3,36,279,3044209,3016240001,Stuyvesant Heights +KBJL,NYCEEC,K,Saratoga - Morris Koppelman Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-345-6666,774 Saratoga Ave,11212,1,40,1007616,180367,SAndrews@sco.org,http://sco.org,3,3,1,23KBJL,40.661915,-73.915578,16,41,894,3326658,3035680001,Brownsville +KBJO,NYCEEC,K,"Yeled V'Yalda ECC, Inc.",,718-854-6922,1349 / 53 50th St,11219,3,44,986692,170199,Sschwartz@yeled.org,,3,3,1,20KBJO,40.63382,-73.991609,12,44,236,3137766,3056420053,Borough Park +KBJP,NYCEEC,K,PAL Arnold And Marie Schwartz Early Learn Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-342-4724,452 Pennsylvania Ave,11207,1,49,1013469,181965,ARudder@palnyc.org,http://palnyc.org,3,3,1,19KBJP,40.666064,-73.894388,5,42,1126,3084628,3038050026,East New York (Pennsylvania Ave) +KBJQ,NYCEEC,K,Friends Of Crown Heights Educational Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,929-234-2866,921 Hegeman Ave,11208,1,53,1017772,181780,bobb@foch.biz,http://fochdaycare.org,3,4,1,19KBJQ,40.665508,-73.878716,5,42,1120,3097095,3043150040,East New York +KBJR,NYCEEC,K,Friends Of Crown Heights 19,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,929-234-2838,370 New Lots Ave,11207,1,61,1013858,180317,CSORIANO8@YAHOO.COM,http://fochdaycare.org,3,3,1,19KBJR,40.66168,-73.893433,5,42,1128,3096389,3042980007,East New York (Pennsylvania Ave) +KBJS,NYCEEC,K,Friends Of Crown Heights 10,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,929-234-2821,1491 Bedford Ave,11216,1,51,996876,183970,Alexander@fochdaycare.org,http://fochdaycare.org,3,3,1,17KBJS,40.671739,-73.954672,8,35,219,3032188,3012530007,Crown Heights North +KBJU,NYCEEC,K,Shirley Chisholm DCC Site 5 Advent Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-452-1200,265 Sumpter St,11233,1,20,1007906,187363,advent265@aol.com,,3,3,2,23KBJU,40.680601,-73.914761,16,41,371,3339185,3015200051,Ocean Hill +KBJW,NYCEEC,K,YWCA - NYC Brownsville ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-342-2905,1592 East New York Ave,11212,1,9,1009505,184191,aalexander@ywcanyc.org,http://ywcanyc.org,3,7,1,23KBJW,40.672884,-73.909392,16,41,906,3339438,3034890001,Brownsville +KBJZ,NYCEEC,K,Saratoga II - Shirley Chisholm Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-443-4100,69 Saratoga Ave,11233,1,89,1007192,188674,ddavidson@sco.org,http://sco.org,3,7,1,23KBJZ,40.684487,-73.917493,16,41,373,3040195,3014980006,Ocean Hill +KBKB,NYCEEC,K,Strong Place For Hope DCC - Atlantic,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-522-1351,460 Atlantic Ave,11217,1,32,988947,189201,Jrogers775@gmail.com,http://strongplaceforhopedaycare.com,3,3,1,15KBKB,40.686296,-73.983223,2,33,41,3000937,3001840025,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +KBKC,NYCEEC,K,Friends Of Crown Heights 16,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,929-234-2870,668 Logan St,11208,1,50,1018892,183179,gdublin4@foch.biz,http://fochdaycare.org,3,4,1,19KBKC,40.669503,-73.874884,5,42,1118,3098472,3044570001,East New York +KBKE,NYCEEC,K,LSSMNY : Early Life Children's Center 9,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-443-4500,1175 Gates Ave,11221,1,71,1006405,191310,lsingh@lssny.org,http://lssny.org,3,1,1,32KBKE,40.691707,-73.919907,4,34,399,3076253,3033310025,Bushwick South +KBKF,NYCEEC,K,Williamsburg CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-943-7682,110 Taylor St,11249,1,14,994313,196216,donatod@e-s-s.org,http://essny.org,3,7,1,14KBKF,40.705423,-73.963835,1,33,545,3341989,3021760001,Williamsburg +KBKH,NYCEEC,K,Bushwick United HDFC 9,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-497-3676,741 Flushing Ave,11206,1,29,1000023,194589,,http://bushwickunited.org/,3,8,2,14KBKH,40.700603,-73.943003,1,33,507,3335515,3022760037,Bedford +KBKJ,NYCEEC,K,Strong Place For Hope DCC - Clinton St.,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-624-2993,595 Clinton St,11231,1,39,983837,185141,strongplace@hotmail.com,http://strongplaceforhopedaycare.com,3,3,1,15KBKJ,40.675091,-74.001676,6,38,53,3008517,3005520005,Carroll Gardens-Columbia Street-Red Hook +KBKK,NYCEEC,K,Friends Of Crown Heights 29,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-778-1498,1435 Prospect Pl,11213,1,42,1003982,184593,saunders@foch.biz,http://fochdaycare.org,7,3,2,16KBKK,40.673175,-73.929039,8,36,347,3036100,3013610066,Crown Heights North +KBKP,NYCEEC,K,All My Children # 11,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-576-6812,317 Rogers Ave,11225,1,47,997157,181800,info@amcearlylearn.com,http://allmychildrendaycare.com,3,7,1,17KBKP,40.665683,-73.953667,9,35,321,3034153,3012960001,Crown Heights South +KBKU,NYCEEC,K,Friends Of Crown Heights 15,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-638-8686,2505 Pitkin Ave,11208,1,72,1017610,185022,davis@foch.biz,http://fochdaycare.org,7,3,1,19KBKU,40.674284,-73.879746,5,37,1192,3089020,3040060037,East New York +KBKV,NYCEEC,K,United Academy - Wythe Avenue,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-935-9848,722 Wythe Ave,11249,1,20,994869,194894,sdsalamon@gmail.com,,5,9,3,14KBKV,40.701848,-73.961662,1,33,539,3346162,3022030020,Williamsburg +KBKW,NYCEEC,K,Baais Yaakov Faigeh Of Schonberger Of Adas Yereim,,718-435-5111,1169 43rd St,11219,3,36,986662,172538,yleifer@adasyereim.org,,3,3,1,15KBKW,40.640281,-73.991741,12,39,224,3135866,3055970053,Borough Park +KBKY,NYCEEC,K,"Infant And Child Learning Center, The",,718-675-1249,670 Parkside Ave,11226,1,18,997762,178269,Margot.Sigmone@Downstate.edu,http://iclcdownstate.com,3,3,1,17KBKY,40.656185,-73.951251,9,40,820,3116057,3050570029,Prospect Lefferts Gardens-Wingate +KBLA,NYCEEC,K,"The Little Darlings DCC, Inc.",,718-469-6207,1531 Nostrand Ave,11226,1,18,998366,175635,morrisdaycare@optimum.net,,5,9,3,17KBLA,40.648768,-73.949343,17,45,824,3110017,3049010073,Erasmus +KBLB,NYCEEC,K,Friends Of Crown Heights 18,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,929-234-2955,851 Liberty Ave,11208,1,35,1018073,186044,dkny5107@aol.com,http://fochdaycare.org,7,3,1,19KBLB,40.677112,-73.878165,5,37,1192,3088473,3039760070,East New York +KBLF,NYCEEC,K,"Bambi DCC, Inc.",,718-771-1603,138 Hancock St,11216,1,20,998021,187871,bambicare@gmail.com,http://bambidcc.com,3,8,1,13KBLF,40.682447,-73.950716,3,36,245,3052608,3018370052,Bedford +KBLI,NYCEEC,K,Young Minds DCC,,718-622-8622,972 Fulton St,11238,1,20,994766,187859,msmith@fortgreenecouncil.org,http://facebook.com/fgcyoungminds,3,4,1,13KBLI,40.682446,-73.961984,2,35,201,3057638,3020140026,Clinton Hill +KBLJ,NYCEEC,K,"Community Parents, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-221-2531,60 East 93rd St,11212,1,58,1004240,180994,clairewflor12@optonline.net,,3,7,1,17KBLJ,40.662494,-73.927007,17,41,882,3346863,3045950215,Rugby-Remsen Village +KBLK,NYCEEC,K,Bedford Stuyvesant ECDC 5Q,,718-453-0788,5 Quincy St,11238,3,38,995035,189232,charlesm@bsecdc.org,,3,2,2,13KBLK,40.685789,-73.960911,2,35,231,3056376,3019690030,Clinton Hill +KBLL,NYCEEC,K,Northside Center For Child Development,,347-505-5517,44 - 60 Rockwell Pl,11201,1,20,989926,190175,drobinson@norhtsidecenter.org,http://northsidecenter.org,3,7,2,13KBLL,40.688807,-73.979375,2,35,33,3058596,3020940035,Fort Greene +KBLM,NYCEEC,K,"Salvation Army, Bedford",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-552-2690,110 Kosciusko St,11216,1,116,997939,190854,Sarah.Fay@USE.SalvationArmy.Org,http://ny.salvationarmy.org/greaternewyork/daycare-programs,3,3,1,13KBLM,40.690709,-73.950562,3,36,253,3049768,3017840011,Bedford +KBLP,NYCEEC,K,Grand Street Settlement Dual #3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-381-8900,319 Stanhope St,11237,1,40,1006862,195405,rebecarodriguez@grandsettlement.org,http://grandsettlement.org,3,2,2,32KBLP,40.70285,-73.918336,4,37,443,3074237,3032590023,Bushwick North +KBLS,NYCEEC,K,Sumner Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-455-3471,860 Park Ave,11206,1,29,1000711,193640,ejaffe@bksny.org,http://bksny.org,3,7,1,14KBLS,40.698576,-73.940801,3,36,28502,3324728,3015800001,Stuyvesant Heights +KBLT,NYCEEC,K,Tompkins Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-782-9140,730 Park Ave,11206,1,33,999230,193457,mthompson@bksny.org,http://bksny.org,2,7,1,14KBLT,40.697942,-73.946392,3,36,25902,3324248,3017400001,Bedford +KBLU,NYCEEC,K,Stagg Street Center For Children,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-388-1395,77 Stagg St,11206,1,70,998837,197692,daycare77@aol.com,,3,3,1,14KBLU,40.709127,-73.947461,1,34,511,3070819,3030230032,East Williamsburg +KBLW,NYCEEC,K,Bushwick United HDFC 4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-269-8152,178 Leonard St,11206,1,21,998991,198004,catherinel@bushwickunited.org,http://bushwickunited.org,3,2,2,14KBLW,40.710036,-73.946992,1,34,505,3327883,3030240001,East Williamsburg +KBLY,NYCEEC,K,Graham CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-387-9482,222 Graham Ave,11206,1,40,999969,197833,grahamchildcare@verizon.net,http://colonysouth.org,3,7,2,14KBLY,40.709622,-73.943569,1,34,493,3344971,3030260001,Bushwick South +KBMA,NYCEEC,K,Tiferes Bnos,,718-599-2900,80 Skillman St,11205,3,40,996008,192887,bailar@tiferesbnos.org,,5,9,3,14KBMA,40.695957,-73.957392,3,33,1237,3390202,3018990038,Bedford +KBMB,NYCEEC,K,Audrey Johnson DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-574-0130,272 Moffat St,11207,1,74,1010815,190492,audreyjo272@aol.com,http://lifetech.org,2,3,2,32KBMB,40.689834,-73.904137,4,37,409,3080179,3034480015,Bushwick North +KBMC,NYCEEC,K,Small World,,718-963-0330,211 Ainslie St,11211,1,40,999340,199081,mrochford@stnicksalliance.org,,3,3,1,14KBMC,40.712972,-73.945453,1,34,495,3069039,3027700001,East Williamsburg +KBME,NYCEEC,K,Nuestros Ninos DCC II,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-218-8275,243 South 2nd St,11211,1,28,995956,198655,NuestrosNinosCDS@aol.com,,2,7,1,14KBME,40.711824,-73.958096,1,34,523,3256381,3024080032,North Side-South Side +KBMG,NYCEEC,K,Williamsburg Northside Pre - School,,718-599-7300,299 North 7th St,11211,3,58,997350,199773,tsmith@willnorth.org,http://willnorth.org,8,4,2,14KBMG,40.71488,-73.952965,1,33,519,3062015,3023230045,North Side-South Side +KBPU,NYCEEC,K,Our Saviour's Lutheran Preschool,,718-745-0020,414 80th St,11209,1,76,976961,167660,oslpreschool@verizon.net,http://oursaviourslutheranpreschool.com,2,3,1,20KBPU,40.626829,-74.025967,10,43,138,3151309,3059890006,Bay Ridge +KBMM,NYCEEC,K,Brooklyn Chinese - American Assoc.,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-438-0008,812 54th St,11220,1,85,982644,171900,Upk@bca.net,http://bca.net,3,8,2,20KBMM,40.638557,-74.005531,12,38,106,3139119,3056720011,Sunset Park East +KBMN,NYCEEC,K,Brooklyn Free Space,,718-965-3135,298 Sixth Ave,11215,1,28,989580,184175,mikia@brooklynfreespace.org,http://brooklynfreespace.org,8,2,1,15KBMN,40.672171,-73.980504,6,39,135,3020951,3009750039,Park Slope-Gowanus +KBMO,NYCEEC,K,Chick Peas Child Care,,347-878-8732,451 7th Ave,11215,1,12,988487,180754,admissions@chickpeas.org,http://chickpeas.org,5,7,2,15KBMO,40.662889,-73.984908,7,39,149,3026633,3011040003,Park Slope-Gowanus +KBMP,NYCEEC,K,Bay Ridge CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-768-5030,314 - 44th St,11220,1,60,981212,176356,Bayridgechildcare@twcmetrobiz.com,,3,8,2,15KBMP,40.650667,-74.010487,7,38,80,3337171,3007370014,Sunset Park West +KBMQ,NYCEEC,K,"Hanson Place CDC, Inc.",,718-237-4303,55 Hanson Pl,11217,1,20,990971,189050,carol.brathwaite@yahoo.com,http://hansonplaceinc.com,5,2,1,15KBMQ,40.685378,-73.975554,2,35,35,3059236,3021130001,Fort Greene +KBMU,NYCEEC,K,A.C.E. ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-439-0450,199 14th Street2nd Floor,11215,1,17,986915,182329,aguo@lmcmc.com,,3,2,1,15KBMU,40.666966,-73.990448,6,39,141,3023430,3010340068,Park Slope-Gowanus +KBMX,NYCEEC,K,A Fantis Parochial School,,718-624-0501,195 State St,11201,1,40,986644,190766,upkdirector@afantis.org,,5,9,3,15KBMX,40.690159,-73.99145,2,33,9,3329468,3002710032,Brooklyn Heights-Cobble Hill +KBMZ,NYCEEC,K,Warren Street Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-237-9578,343 Warren St,11201,1,26,986956,188923,nsingh@lmcmc.com,http://lutheranhealthcare.org/main/warrenstreetcenterforchildrenandfamilies.aspx,3,4,1,15KBMZ,40.685037,-73.990254,2,33,69,3006144,3003910056,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +KBNA,NYCEEC,K,Sunset Park Children's School,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-439-3323,4616 4th Ave,11220,1,18,981214,175525,mothergoose11232@gmail.com,http://sunsetparkchild.com,5,9,3,15KBNA,40.648565,-74.010407,7,38,80,3011823,3007550045,Sunset Park West +KBNB,NYCEEC,K,"Therapy And Learning Center, Inc.",,718-290-2750,1723 8th Ave,11215,1,32,988465,179376,sandee.bennett@tlckids.org,,5,9,3,15KBNB,40.659129,-73.984952,7,38,169,3330250,3008760001,Windsor Terrace +KBNC,NYCEEC,K,Nesivos Bais Yaakov,,718-972-0804,1021 45th St,11219,3,40,985463,172802,nbyupk@gmail.com,,7,8,1,15KBNC,40.640918,-73.995817,12,39,112,3136354,3056080047,Sunset Park East +KBNG,NYCEEC,K,Bedford - Stuyvesant ECDC,,718-453-0500,275 Marcus Garvey Blvd,11221,1,40,1001199,189969,spiveys@bsecdc.org,,5,9,3,16KBNG,40.688118,-73.939051,3,36,277,3325012,3016290001,Stuyvesant Heights +KBNI,NYCEEC,K,Bedford - Stuyvesant ECDC,,718-453-0605,214 Stuyvesant Ave,11221,1,37,1002766,189860,rattanik@bsecdc.org,,3,6,2,16KBNI,40.687985,-73.933065,3,36,293,3044631,3016350041,Stuyvesant Heights +KBNJ,NYCEEC,K,Bedford Stuyvesant ECDC 260,,718-453-0722,260 Jefferson Ave,11216,3,20,998867,188269,foxcasalk@bsecdc.org,,3,3,1,13KBNJ,40.683552,-73.94764,3,36,249,3052305,3018330038,Bedford +KBNK,NYCEEC,K,Bedford Stuyvesant ECDC 262,,718-453-0760,262 Lexington Ave,11216,3,30,997668,189692,foxcasalk@bsecdc.org,,3,7,1,13KBNK,40.687597,-73.951574,3,36,243,3050588,3018020051,Bedford +KBNL,NYCEEC,K,Bedford Stuyvesant ECDC 265,,718-455-5565,813 Hancock St,11233,3,48,1005651,189151,mimsd@bsecdc.org,,3,7,1,16KBNL,40.685698,-73.922579,3,41,375,3039902,3014870074,Stuyvesant Heights +KBNN,NYCEEC,K,Bedford - Stuyvesant ECDC,,718-453-0681,971 Dekalb Ave,11221,1,20,1001863,191894,gonzalezt@bsecdc.org,,3,2,1,16KBNN,40.693101,-73.936421,3,36,289,3324973,3015980001,Stuyvesant Heights +KBNO,NYCEEC,K,Billy Martin CDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-857-5630,333 Classon Ave,11205,1,18,995371,190628,billymartin333@yahoo.com,,5,9,3,13KBNO,40.689768,-73.960169,3,35,233,3321871,3019380001,Bedford +KBNP,NYCEEC,K,Community Parents Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-771-4002,90 Chauncey St,11233,1,30,1003712,187088,cycummings@optimum.net,,3,7,1,16KBNP,40.680282,-73.930445,3,36,297,3325183,3016910012,Crown Heights North +KBNR,NYCEEC,K,Mary McLeod Bethune CDC,,718-455-5137,360 Pulaski St,11206,1,36,1001889,191976,marybethune360@gmail.com,http://marymcleodbethunechilddevelopmentcenter.com,3,3,1,16KBNR,40.693836,-73.936392,3,36,289,3324973,3015980001,Stuyvesant Heights +KBNT,NYCEEC,K,Shirley Chisholm DCC Site 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-756-1721,2023 Pacific St,11233,1,40,1006160,185664,scd2023@aol.com,,3,3,1,16KBNT,40.676107,-73.921328,16,41,303,3038522,3014310054,Ocean Hill +KBNU,NYCEEC,K,Stanley S Lamm Institute Preschool,,718-237-8833,500 19th St,11215,3,16,988971,178479,acaccamo@lammpreschool.org,http://lammpreschool.org,4,3,1,15KBNU,40.656944,-73.983115,7,38,1502,3017307,3008890001,Windsor Terrace +KBNV,NYCEEC,K,Friends Of Crown Heights #16,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-778-8558,963 Park Pl,11213,1,17,999342,184615,crafton34@gmail.com,,3,2,1,17KBNV,40.673192,-73.945799,8,36,341,3031302,3012350058,Crown Heights North +KBOA,NYCEEC,K,Our Children's Center,,718-260-5192,300 Jay St Room G309,11201,1,25,987728,192587,jwallace@citytech.cuny.edu,,3,3,1,13KBOA,40.695547,-73.98714,2,33,13,3335892,3001280001,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +KBOB,NYCEEC,K,196 Albany Avenue DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-773-0071,196 Albany Ave,11213,1,28,1001112,184847,albanydr19@aol.com,http://albanydaycare.org,3,3,2,17KBOB,40.67388,-73.938974,8,36,343,3031082,3012300044,Crown Heights North +KBOF,NYCEEC,K,Friends Of Crown Heights 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-638-8686,671 Prospect Pl,11216,1,47,996962,185166,davis@fochdaycare.org,http://fochdaycare.org,7,3,2,17KBOF,40.674695,-73.954594,8,35,221,3030896,3012240045,Crown Heights North +KBOI,NYCEEC,K,Joan Watkins Corp. D / B / A Pre - School Minds DCC,,718-284-9392,3316 - 18 Church Ave,11203,1,40,999222,176394,preschoolminds@verizon.et,,3,7,2,17KBOI,40.650957,-73.946419,17,45,856,3109372,3048870007,East Flatbush-Farragut +KBOL,NYCEEC,K,"Phebeana Preschool, Inc.",,718-284-8147,160 Parkside Ave,11226,1,48,994507,177625,phebeanapreskool@aol.com,,7,6,1,17KBOL,40.654449,-73.962962,14,40,50804,3115913,3050530018,Flatbush +KBON,NYCEEC,K,The Children's Center @ SUNY Brooklyn,,718-221-6160,440 Lenox Rd,11203,1,16,999615,177570,maryann.moran@downstate.edu,,5,9,3,18KBON,40.6545,-73.944495,17,40,816,3108105,3048560012,East Flatbush-Farragut +KBOP,NYCEEC,K,Traditional DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-306-2070,1112 Winthrop St,11212,1,36,1005645,180421,marishaking@gmail.com,,5,9,3,18KBOP,40.662008,-73.923061,17,41,884,3100654,3046310007,Rugby-Remsen Village +KBOQ,NYCEEC,K,Yeled V'Yalda 407,,718-514-8712,407 East 53rd St,11203,3,24,1004501,175992,mhorowitz@yeled.org,http://yeled.org,3,3,1,18KBOQ,40.64967,-73.927219,17,45,862,3103944,3047250063,Rugby-Remsen Village +KBOS,NYCEEC,K,John Coker DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-452-1414,1375 Bushwick Ave,11207,1,37,1009103,188988,JOHNCOKER75@AOL.COM,,2,3,1,32KBOS,40.685173,-73.910526,4,37,403,3079655,3034330005,Bushwick South +KBOW,NYCEEC,K,Friends Of Crown Heights,,718-284-2184,141 East 40th St,11203,1,36,1000942,176919,saddler@foch.biz,http://fochdaycare.com,3,7,1,18KBOW,40.65228,-73.940122,17,41,814,3108957,3048770052,East Flatbush-Farragut +KBOZ,NYCEEC,K,Blake & Milford DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-277-2003,334 Milford St,11208,1,18,1018537,183743,Blakeandmilforddaycare@yahoo.com,http://blakeandmilforddaycare.com,3,6,1,19KBOZ,40.670868,-73.876187,5,42,1194,3393496,3040560145,East New York +KBPA,NYCEEC,K,Boulevard Nursery School,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-649-2295,2150 Linden Blvd,11207,1,20,1016595,180222,coraliehook@gmail.com,,3,8,1,19KBPA,40.661593,-73.883597,5,42,1110,3324285,3043550001,East New York +KBPB,NYCEEC,K,Breukelen ECDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-649-1463,717 East 105th St,11236,1,34,1013270,175635,breukelendcc@verizon.net,,5,9,3,18KBPB,40.648672,-73.895937,18,42,982,3321523,3081930001,Canarsie +KBPC,NYCEEC,K,Marie Durdin CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-647-4730,2700 Linden Blvd,11208,1,20,1021815,182930,mariedurdinchildcare@msn.com,,3,3,1,19KBPC,40.669187,-73.864673,5,42,1214,3326995,3044880001,East New York +KBPD,NYCEEC,K,Sylvia Klein CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-647-2274,720 Euclid Ave,11208,1,20,1019855,183139,sylviaklein.daycare@verizon.net,,3,4,2,19KBPD,40.669298,-73.870437,5,42,1210,3337053,3042920061,East New York +KBPG,NYCEEC,K,Help I,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-498-4002,515 Blake Ave,11207,1,38,1011979,182425,cviruet@helpusa.org,http://helpusa.org,3,7,1,19KBPG,40.667082,-73.899963,5,42,1134,3252577,3037660001,East New York (Pennsylvania Ave) +KBPI,NYCEEC,K,Breukelen Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-649-2960,715 East 105th St,11236,1,20,1013260,175749,,,3,3,2,18KBPI,40.648732,-73.896005,18,42,982,3321523,3081930001,Canarsie +KBPJ,NYCEEC,K,Recreation Rooms And Settlement Starrett Early Learning,,718-642-8724,125 Schrooeders Ave,11239,1,20,1017280,175475,ssippy@aol.com,,7,8,1,19KBPJ,40.647716,-73.881307,5,42,105801,3343597,3044520085,Starrett City +KBPK,NYCEEC,K,United Community DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-385-1201,613 New Lots Ave,11207,1,66,1015693,181520,sylvenmiller@yahoo.com,http://ucceny.org,3,4,1,19KBPK,40.664728,-73.886561,5,42,1124,3090717,3040890025,East New York +KBSC,NYCEEC,K,New Life CDC 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-417-4214,408 Grv St,11237,1,58,1008501,194797,newlifedc2@verizon.net,,3,7,1,32KBSC,40.701224,-73.912863,4,37,441,3397531,3033290016,Bushwick North +KBPL,NYCEEC,K,Recreation Rooms And Settlement Starrett Early Learning,,718-642-8724,1325 Pennsylvania Ave,11239,1,40,1017012,175603,ssippy@aol.com,,7,8,1,19KBPL,40.648321,-73.882265,5,42,105801,3343596,3044520085,Starrett City +KBPN,NYCEEC,K,Beth Jacob DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-435-5755,1363 46th St,11219,1,106,987427,170925,up-ka@hotmail.com,,7,7,2,20KBPN,40.635922,-73.989058,12,44,232,3136748,3056170050,Borough Park +KBPO,NYCEEC,K,"Brooklyn Child Care, Inc.",,718-630-2831,800 Poly Pl Building 2,11209,1,15,977227,161359,tanya.lipkin@va.gov,,5,7,1,20KBPO,40.609263,-74.02399,10,43,164,3345707,3061530001,Bay Ridge +KBPP,NYCEEC,K,Georgia L Mcmurray Bat Kids Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-567-0818,140 58th St,11220,1,29,977969,174172,glmbatkids@yahoo.com,,5,9,3,20KBPP,40.645338,-74.022864,7,38,18,3257058,3057780001,Sunset Park West +KBPQ,NYCEEC,K,Generation21 Day Care,,718-621-9321,6709 19th Ave,11204,1,52,987214,163824,Generation21daycare@gmail.com,,2,7,1,20KBPQ,40.616569,-73.989381,11,47,256,3134705,3055700006,Bensonhurst West +KBPR,NYCEEC,K,"Long Xing DCC, Inc.",,718-853-8989,825 57th St Fl 3,11220,1,28,982328,171307,longxingdcc@gmail.com,,7,7,1,20KBPR,40.636776,-74.007073,12,38,104,3139898,3056860068,Sunset Park East +KBPS,NYCEEC,K,Mother Love,,718-853-1408,"1681 49 St, #1f",11204,1,38,988846,168799,motherslove@earthlink.net,,3,7,1,20KBPS,40.629973,-73.98373,12,44,474,3129017,3054480058,Borough Park +KBPT,NYCEEC,K,NYL - William O'Connor,,718-680-9751,420 95th St,11209,1,19,975747,163419,mary.olsen@yai.org,,5,4,2,20KBPT,40.615448,-74.030699,10,43,162,3329016,3061230028,Bay Ridge +KBPY,NYCEEC,K,Smart Start ECC,,718-921-1868,8411 Ft Hamilton Pkwy,11209,1,48,977839,165548,smartstart@verizon.net,http://smartstart.org,5,7,1,20KBPY,40.621318,-74.02313,10,43,142,3152888,3060280006,Bay Ridge +KBPZ,NYCEEC,K,"Star America, Inc.",,718-431-2545,880 60th St,11220,1,72,982127,170308,Starbrooklyn880@yahoo.com,,3,7,1,20KBPZ,40.634528,-74.007977,12,38,118,3347466,3057147501,Sunset Park East +KBQA,NYCEEC,K,"Tiny Tots Playhouse, LLC, The",,718-745-4509,243 88 St,11209,3,54,975123,166067,tinytotplayhouse@aol.com,http://tinytotsplayhouse.wix.com/tinytots,8,7,1,20KBQA,40.622378,-74.033,10,43,60,3153687,3060480049,Bay Ridge +KBQB,NYCEEC,K,"Long Xing DCC, Inc.",,718-853-8989,"762 59th St, 2 / F & 3 / F",11220,1,58,981579,171103,longxingdcc@gmail.com,,7,7,1,20KBQB,40.636611,-74.009854,7,38,104,3392309,3008660034,Sunset Park East +KBQE,NYCEEC,K,Buratino International Day Care,,718-368-2113,2962 Brighton 1st St,11235,1,36,993473,150264,svetauchetel@yahoo.cm,http://buratinodaycare.com,1,7,1,21KBQE,40.579312,-73.966521,13,48,364,3321624,3086610054,Brighton Beach +KBQF,NYCEEC,K,Cinderella Day Care,,718-743-1841,130 Brighton 11th St,11235,1,18,995871,150512,cinderelladcc@optonline.com,http://cinderelladaycare.com,3,7,1,21KBQF,40.579529,-73.958028,13,48,61004,3245391,3087070427,Brighton Beach +KBQG,NYCEEC,K,M.S. Sunshine DCC,,718-648-8786,3096 Brighton 6th St,11235,1,35,994935,149503,mila2005yu@yahoo.com,,7,8,1,21KBQG,40.577079,-73.961363,13,48,36002,3245100,3086890045,Brighton Beach +KBQH,NYCEEC,K,Magen David Yeshivah,,718-676-0215,2170 Mcdonald Ave,11223,3,100,991725,157710,pbruger@mdyschool.org,,5,9,3,21KBQH,40.599872,-73.972845,11,47,410,3190443,3070870034,Bensonhurst East +KBQI,NYCEEC,K,"Red Hat DCC, Inc.",,718-336-1480,1317 East 15th St,11230,3,29,995420,164264,daycareredhat@yahoo.com,http://redhatdaycare.com,2,7,1,21KBQI,40.617221,-73.959874,14,48,768,3180962,3067440082,Midwood +KBQK,NYCEEC,K,Sephardic Community Center,,718-627-4300,1901 Ocean Pkwy,11223,3,15,993771,158685,barry@scclive.org,,5,9,3,21KBQK,40.60211,-73.966289,15,47,416,3190468,3070880001,Homecrest +KBQL,NYCEEC,K,Shorefront YM - YWHA,,718-646-1444,3300 Coney Is Ave,11235,1,54,995417,148981,kirilko@shorefronty.org,http://shorefronty.org,7,3,1,21KBQL,40.575607,-73.959463,13,48,36002,3326880,3086930001,Brighton Beach +KBQN,NYCEEC,K,Friends Of Crown Heights 6,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-372-8189,49 Ave W,11223,1,20,989171,154925,viptorres@aol.com,,3,7,1,21KBQN,40.591395,-73.982238,13,47,382,3322146,3071370001,Gravesend +KBQP,NYCEEC,K,Shore Parkway Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-265-2359,8885 26th Ave,11214,1,36,986901,154500,sparkway8885@gmail.com,,5,9,3,21KBQP,40.590844,-73.991017,13,43,314,3187110,3069100017,Gravesend +KBQQ,NYCEEC,K,Bambi Day Care III,,718-368-1817,2114 Brown St,11229,1,98,1000882,157918,info@bambiacademy.com,http://bambidaycare.com,3,3,1,22KBQQ,40.600126,-73.93988,15,46,570,3200302,3073640011,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KBQU,NYCEEC,K,Keshet Learning Center,,718-376-6958,1612 Quentin Rd,11229,1,18,996250,160871,Queenpa18@aol.com,,3,8,1,22KBQU,40.608382,-73.957034,15,48,552,3183039,3067990005,Madison +KBQV,NYCEEC,K,Fantasia DCC,,718-646-6738,2743 Ocean Ave,11229,1,33,998090,155851,fantasiadcc@hotmail.com,http://fantasiadaycare.com,2,7,1,22KBQV,40.594304,-73.950436,15,48,59401,3202176,3074050066,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KBQW,NYCEEC,K,Get Set Kindergarten School - Linden,,718-856-4646,623 Linden Blvd,11203,1,36,1002127,177457,getsetkaye@hotmail.com,,2,7,1,18KBQW,40.653737,-73.935569,17,41,872,3108416,3048650026,East Flatbush-Farragut +KBQX,NYCEEC,K,Get Set Kindergarten School Site - Cortelyou,,718-856-4646,1919 Cortelyou Rd,11226,1,54,995253,173640,getsetkaye@hotmail.com,,2,7,1,22KBQX,40.642973,-73.960547,14,40,514,3118534,3051500031,Flatbush +KBQY,NYCEEC,K,Get Set Kindergarten School Site - Snyder,,718-856-4646,2301 Snyder Ave,11226,1,36,996625,175651,getsetkaye@hotmail.com,,2,7,1,17KBQY,40.648661,-73.955617,17,40,794,3117295,3051070001,Erasmus +KBRA,NYCEEC,K,Bushwick United HDFC 7,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-443-0134,600 Hart St,11221,1,55,1004161,193357,JUANC@BUSHWICKUNITED.ORG,http://bushwickunited.org,3,4,1,32KBRA,40.69752,-73.928281,4,34,423,3073394,3032270010,Bushwick South +KBRB,NYCEEC,K,Infinity UPK,,718-336-1981,1972 East 34th St,11234,1,56,1002772,161157,infinityoffice@infinitypreschool.org,http://infinitypreschool.org,5,4,1,22KBRB,40.60935,-73.933418,18,46,636,3240023,3085000077,Georgetown-Marine Park-Bergen Beach-Mill Basin +KBRD,NYCEEC,K,"Kingsbay YM - YWHA, Inc.",,718-648-7703,3495 Nostrand Ave,11229,1,20,1000562,157414,susan@kingsbayy.org,http://kingsbayy.org,3,3,1,22KBRD,40.598817,-73.94157,15,46,570,3200300,3073630036,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KBRH,NYCEEC,K,Nayema Universal Child Center,,718-462-3688,1107 Newkirk Ave,11230,1,18,993554,170338,lenxcare@aol.com,,4,6,2,22KBRH,40.634005,-73.966544,14,40,526,3120093,3051970040,Flatbush +KBRI,NYCEEC,K,Rainbow DCC,,718-377-2918,3846 Flatlands Ave,11234,1,20,1001586,165017,rainbowdaycarecenter@me.com,http://rainbowdaycarecenter.org,8,8,1,22KBRI,40.619733,-73.937662,18,45,648,3219249,3078580047,Georgetown-Marine Park-Bergen Beach-Mill Basin +KBRL,NYCEEC,K,"Tiny Tots Express, Inc.",,718-338-9561,3321 Ave N,11234,1,15,1000484,164353,ttexpressinc@aol.com,http://tinytotsexpressinc.webs.com,8,7,1,22KBRL,40.617562,-73.941975,18,45,746,3210450,3076690002,Flatlands +KBRP,NYCEEC,K,Friends Of Crown Heights Educational Center #5,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-284-9194,1886 Nostrand Ave,11226,1,110,998493,172268,nichols@foch.biz,http://fochdaycare.org,3,2,1,22KBRP,40.639556,-73.948377,17,45,828,3328292,3052160040,Erasmus +KBRT,NYCEEC,K,Salvation Army - Brownsville DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-345-2488,280 Riverdale Ave 1,11212,1,38,1010265,180170,Kimberly.Durham-Carr@use.salvationarmy.org,http://salvationarmy.org,3,3,2,23KBRT,40.661364,-73.906124,16,42,918,3082390,3036050010,Brownsville +KBRZ,NYCEEC,K,Bushwick United HDFC 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-453-9040,331 Central Ave,11221,1,20,1006609,192524,MARYANGELC@BUSHWICKUNITED.ORG,http://bushwickunited.org,5,9,3,32KBRZ,40.694817,-73.919402,4,37,419,3075906,3033150001,Bushwick South +KBSA,NYCEEC,K,Bushwick United HDFC 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-821-2345,77 Wilson Ave,11237,1,38,1004288,195057,BUSHEDU@AOL.COM,,5,9,3,32KBSA,40.702,-73.927984,4,34,427,3394894,3031740002,Bushwick North +KBSB,NYCEEC,K,"HCHC, Inc.",,718-443-3917,1419 Broadway,11221,1,10,1006406,190170,vera.gregory@aceintegration.org,,3,4,2,32KBSB,40.688518,-73.920315,4,34,397,3251950,3033570006,Bushwick South +KBSD,NYCEEC,K,"Salvation Army, Bushwick",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-455-0100,1151 Bushwick Ave,11221,1,20,1007190,190417,Indhira.Reyes@use.salvationarmy.org,,3,3,1,32KBSD,40.689133,-73.917483,4,34,399,3077163,3033740001,Bushwick South +KBSI,NYCEEC,K,Friends Of Crown Heights 9,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-773-7733,813 Sterling Pl,11216,1,55,997721,184380,pbutts@foch.biz,http://fochdaycare.org,7,3,1,17KBSI,40.672613,-73.95161,8,36,31701,3031515,3012400056,Crown Heights North +KBSL,NYCEEC,K,Charles R Drew ELC 5,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-740-2400,2804 Glenwood Rd,11210,1,61,998137,170247,crddcc@aol.com,http://charlesrdrewforsuccess.org,3,7,2,22KBSL,40.634106,-73.950086,14,45,774,3336755,3075570032,Flatbush +KBTA,NYCEEC,K,Bedford Stuyvesant ECDC 133,,718-453-0828,133 Kings First Walk,11233,3,15,1004502,185396,rattanik@bsecdc.org,,3,7,1,16KBTA,40.675367,-73.927198,8,41,307,3324601,3013440001,Crown Heights North +KBTB,NYCEEC,K,Brightside Academy - Barbey,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-257-2222,683 Barbey St,11207,1,28,1016019,181750,pswift@brightsideacademy.com,http://brightsideacademy.com,3,7,1,19KBTB,40.665592,-73.885673,5,42,1124,3398467,3040917501,East New York +KBTC,NYCEEC,K,Brightside Academy - Belmont,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-346-1064,50 Belmont Ave,11212,1,48,1009679,182868,msteele@brightsideacademy.com,http://brightsideacademy.com,5,7,1,23KBTC,40.668708,-73.908414,16,41,906,3081140,3035260215,Brownsville +KBTE,NYCEEC,K,Brightside Academy - Broadway,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-455-1612,1491 Broadway,11221,1,55,1007026,189699,rinman@brightsideacademy.com,http://brightsideacademy.com,5,6,1,32KBTE,40.687309,-73.918192,4,37,397,3394519,3033800005,Bushwick South +KBTH,NYCEEC,K,Brightside Academy - Dekalb Ave,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-574-3710,844 Dekalb Ave,11221,1,16,1000255,191478,sfurbert@brightsideacademy.com,http://brightsideacademy.com,5,7,1,16KBTH,40.692428,-73.942116,3,36,281,3049690,3017820010,Stuyvesant Heights +KBTL,NYCEEC,K,Gan Yisroel,,718-853-9853,3909 15th Ave,11218,1,58,989272,171548,ll@ganyisroel.org,http://ganyisroel.org/,5,9,3,20KBTL,40.637845,-73.981999,12,39,228,3125790,3053650006,Borough Park +KBUA,NYCEEC,K,BCS Atlantic Avenue ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-296-4980,1825 Atlantic Ave,11233,1,18,1004969,186076,msurrency@wearebcs.org,http://wearebcs.org,3,3,2,16KBUA,40.677155,-73.925639,3,36,299,3397596,3017107501,Crown Heights North +KBUF,NYCEEC,K,Butterfly,,718-677-9343,2810 Nostrand Ave,11229,1,18,999521,163428,margarita.karimova24@gmail.com,http://brooklyn-butterfly.com,5,9,3,22KBUF,40.615724,-73.944776,15,45,642,3211291,3076900051,Madison +KBUJ,NYCEEC,K,Brooklyn Chinese American Assoc. - Bay Ridge DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-438-0008,4202 8th Ave,11232,1,105,984437,174480,bcachildcare@aol.com,http://bca.net,3,6,2,15KBUJ,40.645513,-73.999153,7,38,92,3337411,3009247503,Sunset Park East +KBUL,NYCEEC,K,Brooklyn Chinese American Assoc.,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-331-8809,6409 20 Ave,11204,1,35,988328,163974,michelleluo98@hotmail.com,,3,6,1,20KBUL,40.616996,-73.985354,11,47,254,3133622,3055490005,Bensonhurst West +KBUM,NYCEEC,K,Bumble Bees R Us 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-434-2337,2813 Farragut Rd,11210,1,26,998301,171133,info@bumblebeesrus.com,http://bumblebeesrus.com,3,2,1,22KBUM,40.636175,-73.949702,14,45,788,3120967,3052300003,Flatbush +KBUV,NYCEEC,K,Helen Owen Carey CDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-638-4100,71 Lincoln Pl,11217,1,72,990467,185964,PSNHOC@universitysettlement.org,http://universitysettlement.org,3,3,1,13KBUV,40.67696,-73.977727,6,39,131,3019440,3009470054,Park Slope-Gowanus +KBUW,NYCEEC,K,St. Malachy ECDC,,718-647-0966,220 Hendrix St,11207,1,20,1014559,185982,ljohnson@ccbq.org,http://ccbq.org,3,3,2,19KBUW,40.677064,-73.890502,5,37,1198,3327068,3039470005,East New York +KBVB,NYCEEC,K,New Life CDC 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-366-1668,406 Grv St,11237,1,78,1008455,194743,NEWLIFEHEADSTART@AOL.COM,,3,2,1,32KBVB,40.701188,-73.912895,4,37,441,3397530,3033290016,Bushwick North +KBVC,NYCEEC,K,Nuestros Ninos DCC I,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-218-8275,384 South 4th St,11211,1,35,997413,197193,NuestrosNinosCDS@aol.com,,5,9,3,14KBVC,40.708084,-73.952515,1,34,527,3063507,3024510008,North Side-South Side +KBVD,NYCEEC,K,Nuestros Ninos DCC III,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-388-5000,161 South 3rd St,11211,1,13,994991,198771,aaccoo702am@gmail.com,,3,7,1,14KBVD,40.712106,-73.961371,1,34,551,3063127,3024180031,North Side-South Side +KBVE,NYCEEC,K,Urban Strategies 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-348-9349,1152 Elton St,11239,1,40,1019142,178427,usheadstart1@aol.com,http://urbanstrategiesny.org,3,7,1,19KBVE,40.655121,-73.873052,5,42,1070,3398202,3044487501,East New York +KBVG,NYCEEC,K,Brooklyn Chinese - American Assoc.,,718-438-0008,5002 8 Ave,11220,3,54,983142,172852,future@bca.net,,5,9,3,15KBVG,40.641028,-74.003816,7,38,108,3013418,3007940039,Sunset Park East +KBVJ,NYCEEC,K,Bnos Square Of Williamsburg,,718-797-9844,382 Willoughby Ave,11205,3,58,996646,191717,mkohn@bnossquare.org,,5,9,3,13KBVJ,40.693033,-73.955389,3,33,241,3393747,3017627502,Bedford +KBVL,NYCEEC,K,Ella Baker Charles Romain CDC Of Medgar Evers,,718-270-6018,1150 Carroll St,11225,1,16,997614,182305,Janetm@mec.cuny.edu,http://mec.cuny.edu,3,6,1,17KBVL,40.667253,-73.952195,9,35,321,3337869,3012890025,Crown Heights South +KBVO,NYCEEC,K,"Yeled V'Yalda ECC, Inc.",,718-732-7770,2166 Coney Is Ave,11223,3,40,994805,159373,cbuchman@yeled.org,http://yeled.org,1,7,1,21KBVO,40.6042,-73.961654,15,48,416,3394079,3066850034,Homecrest +KBVR,NYCEEC,K,"United Methodist City Society, The",,718-435-6540,4419 7th Ave,11220,3,54,983514,174356,manguiano2@Yahoo.com,,2,7,2,15KBVR,40.645645,-74.002569,7,38,94,3011354,3007410001,Sunset Park East +KBVT,NYCEEC,K,Yeshiva Headstart Keap Street,,718-486-6500,274 Keap St,11211,3,86,996553,196720,yeshivaheadstart@thejnet.com,,6,1,2,14KBVT,40.706633,-73.95599,1,33,529,3060261,3022010025,Williamsburg +KBVV,NYCEEC,K,"Brooklyn College Child Care Services, Inc.",,718-951-5431,2900 Bedford Ave,11210,3,20,997316,169422,mondesir@brooklyn.cuny.edu,http://brooklyn.cuny.edu/web/academics/schools/education/partnerships/ecc.php,3,7,1,22KBVV,40.631691,-73.952656,14,45,772,3347326,3075520100,Flatbush +KBVX,NYCEEC,K,Yeled V'Yalda 667,,718-514-8712,667 Eastern Pkwy,11213,3,54,999237,183401,mhorowitz@yeled.org,http://yeled.org,3,3,1,17KBVX,40.669635,-73.946205,8,35,337,3032753,3012630044,Crown Heights North +KBVZ,NYCEEC,K,Little Sun People,,718-789-7330,1360 Fulton St,11216,1,18,999090,187012,faye@littlesunpeople.com,http://littlesunpeople.com,3,6,1,13KBVZ,40.680186,-73.94593,3,36,247,3329709,3018620001,Crown Heights North +KBWC,NYCEEC,K,Sunset Park ECC,,718-722-6236,5902 6 Ave,11220,1,20,980400,171927,desiree.fryson@ccbq.org,,5,9,3,20KBWC,40.638645,-74.013465,7,38,102,3337343,3008640001,Sunset Park East +KBWD,NYCEEC,K,Child Prodigy Learning Inc.,,718-574-7558,1001 Broadway,11221,1,18,1002717,192915,s.bacchuscplc@gmail.com,http://childprodigylearningcenter.com,3,2,1,32KBWD,40.69603,-73.93353,4,34,393,3072665,3031940006,Bushwick South +KBWE,NYCEEC,K,Inner Force Tots,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-221-1246,1181 East New York Ave,11212,1,145,1005522,182307,challiman@live.com,http://innerforce.org,3,2,1,17KBWE,40.666781,-73.923498,8,41,359,3037640,3013990125,Crown Heights North +KBWG,NYCEEC,K,Life - Coney Island,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-942-4494,2757 West 33rd St,11224,1,27,984471,149969,mjordan@lifetech.org,http://lifetech.org,3,7,1,21KBWG,40.578145,-74.00018,13,47,330,3331093,3069640002,Seagate-Coney Island +KBWH,NYCEEC,K,Jonathan Williams,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-387-5011,321 Roebling St,11211,1,31,995245,197276,vscott@lifetech.com,http://lifetech.org,3,7,1,14KBWH,40.70832,-73.960981,1,33,525,3341975,3021400026,North Side-South Side +KBWQ,NYCEEC,K,Family Head Start Coney Island,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-265-7760,2960 West 27th St,11224,1,28,986177,148311,west27street@gmail.com,,3,3,1,21KBWQ,40.573668,-73.992869,13,47,342,3339183,3070520034,Seagate-Coney Island +KBWT,NYCEEC,K,Our Children The Leaders Of Tomorrow 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-643-8201,756 Myrtle Ave,11206,1,28,997570,192432,oclot756@gmail.com,,3,2,1,14KBWT,40.695021,-73.952276,3,36,253,3393745,3017547502,Bedford +KBWV,NYCEEC,K,St. Johns Place Family Center Day Care Program,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-771-7720,1620 Saint Johns Pl,11233,1,19,1005321,183387,carolyn@stjohnsplace.org,http://stjohnsplace.org,3,7,1,17KBWV,40.670202,-73.924133,8,41,359,3037204,3013870024,Crown Heights North +KBWW,NYCEEC,K,Williamsburg Y Head Start,,718-387-0229,64 Division Ave,11249,3,90,993758,196868,nbonuso628@gmail.com,http://williamsburgy.org,3,7,1,14KBWW,40.707199,-73.966135,1,33,545,3323170,3021660001,Williamsburg +KBXK,NYCEEC,K,Brightside Academy - Clarkson,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-941-1802,210 Clarkson Ave,11226,1,18,997420,177902,nbennett@brightsideacademy.com,http://brightsideacademy.com,5,1,1,17KBXK,40.655272,-73.952477,17,40,820,3116264,3050660011,Prospect Lefferts Gardens-Wingate +KBXL,NYCEEC,K,A.C.E. Integration Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-443-3917,1419 - 23 Broadway,11221,1,63,1006362,190197,lydiawilliams.aceheadstart@aol.com,http://aceintegration.org,3,7,2,32KBXL,40.688518,-73.920315,4,34,397,3251950,3033570006,Bushwick South +KBXQ,NYCEEC,K,"Gan, Inc. - Gan Jewish Day Care",,718-338-7575,2901 Campus Rd,11210,1,36,998563,169552,yafitelbaz@yahoo.com,http://ganjewish.com,3,3,1,22KBXQ,40.631986,-73.948682,14,45,774,3205890,3075570118,Flatbush +KBXS,NYCEEC,K,"Roger Day Care, Inc.",,718-703-4312,775 Rogers Ave,11226,1,26,997465,176822,raps775@gmail.com,,3,8,1,17KBXS,40.652016,-73.952602,17,40,820,3116809,3050880006,Prospect Lefferts Gardens-Wingate +KBXT,NYCEEC,K,"New Generation Learning Center, Inc.",,718-941-0404,2597 Bedford Ave,11226,1,18,997026,172434,day1gen@yahoo.com,,5,9,3,22KBXT,40.64,-73.954207,17,45,790,3120344,3052110026,Erasmus +KBXU,NYCEEC,K,Yeled V?yalda,,718-514-8928,1200 Ocean Pkwy,11230,3,12,992520,164995,fbomrind@yeled.org,http://yeled.org,5,9,3,21KBXU,40.619565,-73.969609,12,44,448,3256733,3054951000,Ocean Parkway South +KBXV,NYCEEC,K,Yeled V'Yalda 6012,,718-209-1122,6002 Farragut Rd,11236,3,91,1006863,171572,hthau@yeled.org,,3,3,1,18KBXV,40.637519,-73.919057,18,46,950,3406498,3079820040,Canarsie +KBYC,NYCEEC,K,YWCA - NYC Roberta Bright ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-373-1100,3001 W 37th St,11224,1,16,983635,147991,sramirez@ywcanyc.org,http://ywcanyc.org,3,7,1,21KBYC,40.573177,-74.002509,13,47,340,3189617,3070650001,Seagate-Coney Island +KBYF,NYCEEC,K,Edith And Karl Marks JCH Of Bensonhurst,,718-943-6333,7802 Bay Pkwy,11214,1,30,987115,160171,tatyana@jchb.org,http://jchb.org,1,3,1,20KBYF,40.606369,-73.989235,11,44,270,3162352,3062640030,Bensonhurst West +KBYG,NYCEEC,K,Happy Dragon Children And Family Center,,347-610-1802,5805 7th Ave,11220,1,107,981319,171601,office@happydragonschool.com,,5,9,3,20KBYG,40.63786,-74.010669,7,38,104,3016180,3008587501,Sunset Park East +KBYJ,NYCEEC,K,"Al Madinah School, Inc.",,718-222-4986,383 3rd Ave,11215,1,45,987482,184948,almadinahinfo@gmail.com,http://almadinah-school.com,2,2,1,15KBYJ,40.673671,-73.989163,6,39,119,3338558,3009800001,Park Slope-Gowanus +KBYM,NYCEEC,K,Friends Of Crown Heights 26,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-467-4270,20 Sutter Ave,11212,1,37,1005874,181647,emerita.murrell1@gmail.com,http://fochdaycare.org,3,4,1,23KBYM,40.665361,-73.922177,16,41,900,3081165,3035310023,Brownsville +KBYN,NYCEEC,K,Bumble Bee R Us - Lorraine Street,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,855-532-9227,76 Lorraine St,11231,1,17,982352,184903,info@bumblebeesrus.com,http://bumblebeesrus.com,3,3,1,15KBYN,40.674385,-74.006886,6,38,53,3338801,3005800016,Carroll Gardens-Columbia Street-Red Hook +KCGO,NYCEEC,K,CDC Of Kingsborough,,718-368-5868,1915 Oriental Blvd,11235,1,18,1002181,150120,Linda.McHugh@kbcc.cuny.edu,http://kbcc.cuny.edu,3,7,1,22KCGO,40.578497,-73.935321,15,48,616,3326936,3087600060,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KBYQ,NYCEEC,K,Bumble Bees R Us 8,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-676-0080,5721 6th Ave,11220,1,19,980791,172187,info@bumblebeesrus.com,http://bumblebeesrus.com,2,7,1,20KBYQ,40.639688,-74.012355,7,38,102,3015780,3008490001,Sunset Park East +KBZG,NYCEEC,K,Ring Around The Rosie,,718-492-7464,7106 13th Ave,11228,1,15,982748,166075,ring7104@verizon.net,,4,7,1,20KBZG,40.622478,-74.005176,10,43,196,3157620,3061770040,Dyker Heights +KBZU,NYCEEC,K,Bedford Stuyvesant ECDC 510,,718-455-4806,510 Quincy St,11221,3,45,1000909,189948,lubellmorriss@bsecdc.org,,3,3,1,16KBZU,40.688127,-73.94045,3,36,277,3051048,3018110019,Stuyvesant Heights +KBZX,NYCEEC,K,Yeshiva Torah Vodaath Preschool,,718-941-8000,1192 East 31st St,11210,1,36,999445,165995,rye@torahvodaath.org,,5,9,3,22KBZX,40.622567,-73.945065,18,45,748,3396953,3076300001,Midwood +KCAD,NYCEEC,K,Higher Level,,718-856-4064,2401 Beverley Rd,11226,1,18,996861,174261,uljoseph@aol.com,,5,9,3,17KCAD,40.64479,-73.954622,17,40,792,3117907,3051350042,Erasmus +KCAK,NYCEEC,K,Kindstart Preschool,,917-834-4776,7702 New Utrecht Ave,11214,1,20,984073,163035,Sooobad6@aol.com,http://kindstartpreschool.org,5,2,2,20KCAK,40.614044,-74.000443,11,43,182,3161386,3062470026,Bensonhurst West +KCAP,NYCEEC,K,"Little Stars Daycare Center, Inc.",,718-673-3092,588 Brooklyn Ave,11203,1,18,999360,179703,littlestarsdayschool@gmail.com,http://littlestars-dayschool.com,5,9,3,17KCAP,40.659915,-73.94537,9,40,810,3106968,3048020031,Prospect Lefferts Gardens-Wingate +KCBR,NYCEEC,K,Yde,,718-232-0100,49 Ave T,11223,3,64,989006,157299,adouek@ydeschool.org,http://ydeschool.org,8,3,1,21KCBR,40.598167,-73.983428,11,47,406,3189815,3070770044,Bensonhurst East +KCDI,NYCEEC,K,Beth Jacob Of Borough Park,,718-436-7300,1371 46 St,11219,1,80,987479,170870,avivahimy@gmail.com,,7,7,2,20KCDI,40.635845,-73.988932,12,44,232,3136747,3056170043,Borough Park +KCDM,NYCEEC,K,Butterfly DCC,,718-646-6272,2770 East 16th St,11235,1,20,997337,152095,sgontchar@yahoo.com,http://butterflydaycarecenter.com,7,7,1,21KCDM,40.584237,-73.952711,15,48,608,3246964,3087690036,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KCEB,NYCEEC,K,Brooklyn Chinese - American Assoc.,,718-438-0008,871 50th St,11220,2,72,983756,172508,haney@bca.net,http://bca.net,2,6,2,20KCEB,40.640257,-74.00227,12,38,108,3397381,3056377502,Sunset Park East +KCEC,NYCEEC,K,Kreative Kare DCC,,718-443-1333,455 Wilson Ave ( Ground Floor ),11221,1,40,1008575,191854,kreativekare@aol.com,,7,8,1,32KCEC,40.693121,-73.912379,4,37,435,3077626,3033840006,Bushwick North +KCED,NYCEEC,K,Sunshine Center Of Coney Island,,718-996-7200,2929 W31st St,11224,4,18,985130,148137,yaneris@sunshinenewyork.com,http://sunshinenewyork.com,3,8,1,21KCED,40.575048,-73.997455,13,47,342,3321834,3070500001,Seagate-Coney Island +KCEG,NYCEEC,K,Imagine Dumbo - Adams,,718-522-2263,85 Adams St,11201,1,11,987478,194940,caroline@imagineelc.com,http://imagineelc.com,5,6,1,13KCEG,40.701816,-73.988596,2,33,21,3391222,3000527501,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +KCEH,NYCEEC,K,Imagine Brooklyn Heights,,718-624-7520,50 Monroe Pl,11201,1,20,986272,192646,Sally@imagineelc.com,http://imagineelc.com,5,2,1,13KCEH,40.695717,-73.992831,2,33,502,3001917,3002380007,Brooklyn Heights-Cobble Hill +KCEI,NYCEEC,K,Bambi Day Care II,,718-648-3332,2121 Bragg St,11229,1,80,1002078,158034,info@bambiacademy.com,http://bambidaycare.com,3,3,1,22KCEI,40.600261,-73.936041,15,46,570,3200516,3073690068,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KCFA,NYCEEC,K,SCO Family Of Services,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,929-234-6870,225 Newport St,11212,1,35,1010105,179731,coerlemans@sco.org,http://sco.org,3,3,1,23KCFA,40.65969,-73.906761,16,42,918,3082389,3036040001,Brownsville +KCFR,NYCEEC,K,Bubble Bee Day Care,,718-676-0080,76 Lorraine St,11231,3,20,982331,184909,esther@bumblebeesrus.com,,3,3,1,15KCFR,40.674385,-74.006886,6,38,53,3338801,3005800016,Carroll Gardens-Columbia Street-Red Hook +KCFV,NYCEEC,K,Magic Kingdom LLC,,347-793-0180,5215 Church Ave,11203,2,27,1004246,176982,boydilene@gmail.com,,5,9,3,18KCFV,40.652221,-73.928236,17,41,868,3102219,3046780041,Rugby-Remsen Village +KCGN,NYCEEC,K,SCO Family Of Services,,718-345-6666,774 Saratoga Ave,11212,1,90,1007553,180354,SAndrews@sco.org,http://sco.org,3,3,2,23KCGN,40.661915,-73.915578,16,41,894,3326658,3035680001,Brownsville +KCGP,NYCEEC,K,Birch Family Services Nazareth ECC,,212-616-1851,475 East 57th St,11203,3,16,1005765,173846,marjory.antoine@birchfamilyservices.org,,5,9,3,18KCGP,40.643889,-73.922732,17,45,946,3221961,3079150010,Rugby-Remsen Village +KCGR,NYCEEC,K,Brooklyn Chinese American Assoc.,,718-438-0008,4116 8th Ave,11232,1,30,984537,174612,bcaupkfd@gmail.com,http://bca.net,2,6,2,15KCGR,40.646018,-73.998627,7,38,92,3018183,3009220038,Sunset Park East +KCGT,NYCEEC,K,Gold Material Montessori School,,718-801-2155,105 Kings Hwy,11214,1,40,987606,160196,maksim@goldmaterial.com,http://goldmaterial.com,5,9,3,21KCGT,40.606196,-73.987791,11,44,428,3329040,3062537502,Bensonhurst East +KCHJ,NYCEEC,K,"Arista Prep, Inc.",,718-756-5550,221 Kingston Ave,11213,1,54,1000435,184294,aristaprep@gmail.com,http://aristaprepschool.org/,3,2,1,17KCHJ,40.672452,-73.941899,8,36,343,3330683,3012440006,Crown Heights North +KCHM,NYCEEC,K,Alonzo A Daughtry Memorial DCC Inc.,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-596-1993,565 Baltic St,11217,1,20,989100,187600,alonzodaughtrydcc@verizon.net,,3,3,1,13KCHM,40.681306,-73.982697,6,33,127,3006388,3004010001,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +KCHN,NYCEEC,K,Friends Of Crown Heights,,917-966-4400,2805 Newkirk Ave,11226,1,40,998107,172467,cdelicar@aol.com,http://fochdaycare.org,3,6,1,22KCHN,40.639889,-73.95015,17,45,828,3333904,3052150024,Erasmus +KCHP,NYCEEC,K,Weeksville Gardens,,718-623-9803,1640 Pacific St,11213,1,54,1002387,185783,jmatison@bksny.org,,5,9,3,18KCHP,40.676818,-73.934627,8,36,309,3341633,3013410012,Crown Heights North +KCHR,NYCEEC,K,"Apple Tree Day Care, Inc.",,718-287-7488,440 East 48th St,11203,1,40,1002981,176464,tjcole265@aol.com,,3,6,1,18KCHR,40.651024,-73.932266,17,45,860,3102758,3046950017,East Flatbush-Farragut +KCHT,NYCEEC,K,"Baybee Lounge Daycare, Inc.",,347-955-4783,2745 Atlantic Ave,11207,1,15,1013935,185723,baybeelounge@gmail.com,http://baybeeloungedaycare.com,3,7,1,19KCHT,40.676183,-73.892876,5,37,1198,3083398,3036740045,East New York +KCHU,NYCEEC,K,Infinity UPK Of Gerritsen Avenue,,718-336-1981,2934 - 2936 Gerritsen Ave,11229,1,29,1006121,153905,blitblues@aol.com,http://infinitypreschool.org,5,4,2,22KCHU,40.589325,-73.921229,15,46,628,3249464,3089070524,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KCHV,NYCEEC,K,"New York Creative Childcare, Inc.",,718-686-0388,5015 6th Ave,11220,1,36,981943,173649,nycreativechildcare@gmail.com,http://nycreativechildcare.com,3,7,1,15KCHV,40.643632,-74.008252,7,38,98,3393312,3007937501,Sunset Park East +KCHX,NYCEEC,K,Dezzenterprise LLC,,917-207-2438,3524 Neptune Ave,11224,1,12,983726,149443,info@dezzenterprise.com,http://dezzenterprise.com,3,4,2,21KCHX,40.577077,-74.001444,13,47,328,3188708,3070050002,Seagate-Coney Island +KCHZ,NYCEEC,K,Little Hands Creative Minds,,718-676-2947,4111 Ave J,11210,1,16,1001996,168021,Lhcm718@gmail.com,http://daviduniversecity.org/,3,4,1,22KCHZ,40.627654,-73.936307,18,45,734,3215074,3077670006,Flatlands +KCIA,NYCEEC,K,Effie Bs ECDC Corp.,,718-735-5500,1171 Eastern Pkwy,11213,1,36,1003783,183072,effieb.center@gmail.com,http://effieskids.com,3,8,1,17KCIA,40.668726,-73.929617,8,41,349,3037378,3013910058,Crown Heights North +KCIC,NYCEEC,K,"Little Einstiens Of Canarsie, LLC",,718-251-5000,8413 Ave K,11236,1,100,1010231,170493,nbokhour@aol.com,,5,9,3,18KCIC,40.634314,-73.906386,18,46,996,3397081,3080367501,Canarsie +KCIE,NYCEEC,K,Bnos Chaya,,718-851-1212,4511 14th Ave,11219,1,20,987664,170821,draizy102@gmail.com,,7,3,1,20KCIE,40.635809,-73.987703,12,44,232,3136756,3056180004,Borough Park +KCII,NYCEEC,K,Kings Bay Y At North Williamsburg,,718-407-6388,14 Hope St,11211,1,35,996088,199246,swaller@northwilliamsburgy.org,http://northwilliamsburgy.org,5,2,1,14KCII,40.713735,-73.957349,1,34,519,3062679,3023837503,North Side-South Side +KCIL,NYCEEC,K,Urban Strategies Child Care,,718-235-6151,1405 Bushwick Ave,11207,1,18,1009275,188871,USHeadStart1@aol.com,http://urbanstrategies.org,3,6,2,32KCIL,40.684665,-73.909632,4,37,403,3326473,3034390003,Bushwick South +KCIM,NYCEEC,K,Brooklyn Explorers Academy,,855-687-6923,110 Schermerhorn St,11201,1,36,987165,190666,info@brooklynexplorersacademy.com,http://brooklynexplorersacademy.com,7,7,1,15KCIM,40.690162,-73.989182,2,33,43,3000533,3001690009,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +KCIO,NYCEEC,K,Honeydew Drop Playhouse,,718-941-2177,1113 Church Ave,11218,1,14,992888,175116,Honeydewplayhouse@gmail.com,http://honeydewdrop.com,2,1,1,17KCIO,40.647079,-73.969106,14,40,506,3116378,3050720035,Flatbush +KCIS,NYCEEC,K,Greater Bright Light Learning Center,,917-960-4044,1320 Sutter Ave,11208,1,20,1020571,184512,gzellars@gblmbc.com,,5,9,3,19KCIS,40.673174,-73.869185,5,42,1208,3095779,3042680023,East New York +KCIW,NYCEEC,K,IP Kids Montessori,,718-633-1178,850 50th St,11220,1,87,983551,172516,JLee7818@gmail.com,,3,3,2,20KCIW,40.640435,-74.002598,12,38,108,3137829,3056440027,Sunset Park East +KCIX,NYCEEC,K,IP Kids,,718-621-7818,2631 86 St,11223,1,80,988589,156579,James.Lee@gmail.com,http://ipkids.com,3,3,2,21KCIX,40.596232,-73.984383,11,47,402,3397177,3070920024,Bensonhurst East +KCIY,NYCEEC,K,"Ronomoza, Inc. / The Learning Experience",,718-627-7340,412 Kings Hwy,11223,1,36,991295,159431,brooklyn@tlecorp.com,http://brooklyn.tlechildcare.com/,3,3,1,21KCIY,40.604473,-73.974795,11,44,412,3253634,3066787501,Bensonhurst East +KCIZ,NYCEEC,K,Al Madinah School Site 2,,718-222-4986,2015 64 St,11204,1,15,988538,164029,almadinahinfo@gmail.com,http://almadinah-school.com,2,2,1,20KCIZ,40.616804,-73.984692,11,47,254,3133294,3055420072,Bensonhurst West +KCJC,NYCEEC,K,Blue Star DCC,,718-703-0009,2217 Caton Ave,11226,1,36,996273,177158,bluestarofnewyork@gmail.com,,3,6,1,17KCJC,40.652781,-73.956775,14,40,79602,3396958,3050837502,Prospect Lefferts Gardens-Wingate +KCJF,NYCEEC,K,Clarkson ECC,,718-649-3488,8801 Glenwood Rd,11236,1,36,1009460,172815,8801cecc@gmail.com,,7,6,2,18KCJF,40.640846,-73.909018,18,46,964,3224067,3079930008,Canarsie +KCJH,NYCEEC,K,"A Castle For Classy Kids Learning Center, Inc.",,347-750-8154,2570 Pitkin Ave,11208,1,36,1018271,185021,acastle4classykids@gmail.com,,3,7,1,19KCJH,40.6746,-73.877427,5,37,1194,3336165,3040240018,East New York +KCJK,NYCEEC,K,Lpbc Day Care,,718-621-5458,7524 14th Ave,11228,1,19,982608,164657,llv9005@msn.com,http://lpbcdaycareupk.webs.com,5,7,1,20KCJK,40.618784,-74.005436,10,43,198,3160022,3062220045,Dyker Heights +KCJM,NYCEEC,K,"Circle, Triangle, Square Daycare, Inc.",,718-373-2234,2720 86th St,11223,3,18,989394,155744,shwnisaac@circletrianglesquaredaycare.com,http://circletrianglesquaredaycare.com,3,3,1,21KCJM,40.594458,-73.981489,13,47,402,3397445,3071167501,Bensonhurst East +KCJN,NYCEEC,K,Stillwell Avenue Prep School,,718-232-3628,6420 Bay Pkwy,11204,1,40,989394,163034,stillwellprep@yahoo.com,,3,7,1,20KCJN,40.614276,-73.981,11,47,254,3133705,3055500038,Bensonhurst West +KCJO,NYCEEC,K,Aim High Childrens Services,,718-509-0630,83 Marlborough Rd,11226,1,48,993841,175405,upk@aimhighchild.com,http://aimhighchild.org,5,4,1,17KCJO,40.647986,-73.965697,14,40,1522,3117046,3050960001,Flatbush +KCJQ,NYCEEC,K,Initial Steps CDC,,718-434-2805,3003 Glenwood Rd,11210,1,20,998809,170336,initialstepscdc@yahoo.com,,3,7,1,22KCJQ,40.634017,-73.947614,17,45,786,3113943,3050050009,Flatbush +KCJR,NYCEEC,K,A To Z DCC,,718-368-1234,3053 Ave U,11229,1,29,1001782,158293,jaynelipkovich@gmail.com,http://a2zdaycare.com,3,7,1,22KCJR,40.600983,-73.936919,15,46,568,3199284,3073400046,Madison +KCJS,NYCEEC,K,Yeshiva Torah Vodaath,,718-941-8000,452 East 9 St,11218,1,40,992643,171495,preschoolytv@gmail.com,,7,3,1,22KCJS,40.637648,-73.969586,12,40,492,3126876,3053920032,Kensington-Ocean Parkway +KCJT,NYCEEC,K,Kaleidoscope Early Childhood Develepment Center,,917-652-4422,480 Stratford Rd,11218,1,43,993255,171230,ecdckaleidoscope@aol.com,http://ecdckaleidoscope.com,2,7,1,22KCJT,40.636662,-73.967364,14,40,526,3413863,3051747501,Flatbush +KCJX,NYCEEC,K,Mohdc - Smart Start,,718-915-3015,533 Blake Ave,11207,1,108,1012214,182425,rayed@mohdc.com,,5,9,3,19KCJX,40.667194,-73.89922,5,42,1134,3084260,3037670001,East New York (Pennsylvania Ave) +KCJY,NYCEEC,K,Angel ECDC,,718-259-0888,1436 67th St 1st Floor,11219,1,32,984335,166178,angeldaycare67@gmail.com,,7,7,1,20KCJY,40.622942,-73.999643,11,43,190,3142954,3057690023,Bensonhurst West +KCJZ,NYCEEC,K,COPO Prek Program,,718-434-3266,1083 Coney Is Ave,11230,1,18,993635,169229,fhaq@copousa.org,http://copousa.org,3,7,2,22KCJZ,40.631035,-73.966433,14,45,528,3178915,3066860076,Flatbush +KCKB,NYCEEC,K,Bushwick United Development Fund,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-443-0685,243 South 2nd St,11211,1,19,995969,198682,jendale319@aol.com,http://bushwickunited.org,3,8,1,14KCKB,40.711824,-73.958096,1,34,523,3256381,3024080032,North Side-South Side +KCKC,NYCEEC,K,Alpha Christian Academy,,718-272-0505,921 East 107th St,11236,1,20,1014150,175485,alphachristiandaycare921@gmail.com,http://alphachristianacademy.com,3,6,1,18KCKC,40.647928,-73.892691,18,46,984,3230692,3082150022,Canarsie +KCKG,NYCEEC,K,Rockgate DCC 1,,718-348-7414,770 - 784 Glenmore Ave,11208,1,25,1017056,185285,jrockgate@gmail.com,,3,6,1,19KCKG,40.675288,-73.88177,5,37,1166,3088977,3040040012,East New York +KCKK,NYCEEC,K,992 Gates Avenue,,718-483-9553,992 Gates Ave,11221,3,42,1005406,190355,adaptivesolutions1@gmail.com,,5,9,3,17KCKK,40.6893,-73.923685,3,41,375,3039623,3014800002,Stuyvesant Heights +KCKU,NYCEEC,K,Promise World Daycare,,718-743-2828,1968 Ocean Ave,11230,1,28,996885,162953,yelena011@gmail.com,,5,9,3,22KCKU,40.614194,-73.954225,14,48,546,3181619,3067570046,Midwood +KCKV,NYCEEC,K,Little Nest Preschool,,718-484-0033,511 Church Ave,11218,1,18,991088,174161,info@littlenestpreschool.com,http://littlenestpreschool.com,5,6,1,15KCKV,40.644478,-73.975468,12,39,496,3124690,3053380033,Kensington-Ocean Parkway +KCKY,NYCEEC,K,Queen Of The Rosary Catholic Academy,,718-388-7992,11 Catherine St,11211,1,36,1001486,199184,marian_hernandez@verizon.net,http://queenoftherosarybrooklyn.org,5,9,3,14KCKY,40.713264,-73.937387,1,34,481,3331619,3029210023,East Williamsburg +KCKZ,NYCEEC,K,"A2z Kidz Center, LLC",,718-758-7729,190 Exeter St,11235,1,40,998531,149742,jaynelipkovich@gmail.com,http://a2zdaycare.com,5,9,3,22KCKZ,40.577935,-73.948349,15,48,620,3246120,3087360026,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KCLC,NYCEEC,K,Sunny Skies Preschool,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-337-8003,720 Washington Ave,11238,1,58,994321,185652,paola@sunnyskiespreschool.com,http://sunnyskiespreshool.com,5,9,3,13KCLC,40.676306,-73.963494,8,35,205,3028878,3011600037,Prospect Heights +KCLD,NYCEEC,K,Sunny Skies Prospect Corp.,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-372-4665,969 43rd St,11219,1,18,985524,173420,info@sunnyskiespreschool.com,,5,9,3,15KCLD,40.642867,-73.996025,12,38,112,3135794,3055950043,Sunset Park East +KCLE,NYCEEC,K,"Faces Of The Future ELC, LLC",,718-618-0061,1080 Utica Ave,11203,1,40,1003647,174842,upk21080@gmail.com,,5,9,3,18KCLE,40.64671,-73.929856,17,45,850,3349019,3047340032,East Flatbush-Farragut +KCLF,NYCEEC,K,"Ira's Daycare And Preschool Inc., III",,718-739-6500,900 Lenox Rd,11203,1,54,1004738,178086,rogersdorinda@gmail.com,,5,9,3,18KCLF,40.655612,-73.926153,17,41,866,3392635,3046607501,Rugby-Remsen Village +KCLH,NYCEEC,K,Neshama Preschool,,917-804-8284,723 Ave Z,11223,1,20,993304,153043,neshama1inc@gmail.com,,5,9,3,21KCLH,40.58655,-73.967352,13,47,37401,3195856,3072180077,Gravesend +KCLI,NYCEEC,K,"Yeshivat Beth Hillel Of Krasna, Inc.",,212-929-0839,1360 42 St,11219,1,36,987964,171682,duvivogel@gmail.com,,5,9,3,20KCLI,40.63817,-73.986773,12,39,232,3135945,3055990030,Borough Park +KCLM,NYCEEC,K,Trey Whitfield School,,718-342-7722,17 Hinsdale St,11207,1,54,1011694,185198,jwhitney@treywhitfieldschool.org,,5,9,3,19KCLM,40.674961,-73.901487,5,37,1144,3083450,3036820033,East New York (Pennsylvania Ave) +KCMA,NYCEEC,K,Seeds Of Unity,,347-715-6545,5816 13th Ave,11219,1,20,984827,168692,seedsofunity@gmail.com,,5,9,3,20KCMA,40.629843,-73.997521,12,44,192,3140724,3057040045,Borough Park +KCME,NYCEEC,K,Bka Utica,,718-953-9011,250 Utica Ave,11213,1,20,1003343,183392,office@brooklynkidsny.org,,5,9,3,17KCME,40.670102,-73.931011,8,35,351,3398400,3013840051,Crown Heights North +KCMK,NYCEEC,K,"Brooklyn Treehouse Preeschool, Inc.",,718-499-1234,639 4th Ave,11232,1,30,985804,181024,warmen@optonline.net,http://brooklyntreehousepreschool.com,5,9,3,15KCMK,40.663708,-73.994637,7,38,143,3397574,3006377501,Park Slope-Gowanus +KCML,NYCEEC,K,Bryan's Educational Center,,718-282-6944,3922 Church Ave,11203,1,36,1000837,176492,bryansdaycare@aol.com,http://bryanseducationalcenter.com,5,9,3,18KCML,40.651237,-73.94067,17,45,858,3109654,3048930010,East Flatbush-Farragut +KCMN,NYCEEC,K,ECDC Kaleidoscope,,917-652-4422,165 Prospect Park Southwest,11218,1,12,991634,177650,ecdckaleidoscope@aol.com,http://ecdckaleidoscope.com,5,9,3,15KCMN,40.654364,-73.973194,7,39,50202,3122557,3052750092,Windsor Terrace +KCMT,NYCEEC,K,Glorious And Gifted ECC Inc.,,718-812-0426,421 Throop Ave,11221,1,20,1000382,190102,dlittlestardaycare@yahoo.com,,5,9,3,16KCMT,40.688462,-73.942018,3,36,279,3050770,3018060007,Stuyvesant Heights +KCMV,NYCEEC,K,ABC Plus,,347-702-6868,1018 Banner Ave #2,11235,1,12,995544,151828,vbobvb144@msn.com,http://abcplusdaycare.com,5,9,3,21KCMV,40.583509,-73.959711,15,48,608,3247959,3088090031,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +KCMZ,NYCEEC,K,Free Greek Community Of The Three Hierarchs,,718-339-0280,1720 Ave P,11229,1,48,996395,161684,vur501@aol.com,,5,9,3,22KCMZ,40.610635,-73.95642,15,48,552,3182464,3067800001,Madison +KCNA,NYCEEC,K,"The Friends Of Crown Heights Educational Centers, Inc.",,718-638-8686,2809 Newkirk Ave,11226,1,36,998141,172469,davis@foch.biz,http://fochdaycare.org,5,9,3,22KCNA,40.639892,-73.950124,17,45,828,3333905,3052150024,Erasmus +KCNF,NYCEEC,K,Itty Bitty Adventures Preschool,,718-375-4700,3416 Ave S,11234,1,16,1003059,161147,pattiemerhej@ittybittyadventures.com,http://ittybittyadventures.com,5,9,3,22KCNF,40.608922,-73.932605,18,46,658,3240855,3085200042,Georgetown-Marine Park-Bergen Beach-Mill Basin +KCNH,NYCEEC,K,Kiddieprise - 1520 86th Street,,718-232-1936,1520 86th St,11228,1,18,981727,161849,info@purplecrayonny.com,http://purplecrayonny.com,5,9,3,20KCNH,40.611107,-74.009033,11,43,172,3166172,3063600045,Bath Beach +KCNK,NYCEEC,K,Learn And Explore,,718-513-3600,330 Neptune Ave,11235,1,54,993934,150819,info@learnandexplore1.com,http://learnandexplore1.com,5,9,3,21KCNK,40.58084,-73.965177,13,48,364,3244337,3086630247,Brighton Beach +KCNN,NYCEEC,K,"Little Brilliant Minds, Inc.",,718-234-6463,5916 20th Ave,11204,1,15,989023,165054,littlebrilliantminds@gmail.com,http://littlebrilliantminds.com,5,9,3,20KCNN,40.619815,-73.98245,12,44,244,3131902,3055130044,Borough Park +KCNP,NYCEEC,K,Little Sunshine Preschool,,347-921-1815,1815 85th St,11214,1,54,983845,160708,nylittlesunshinepreschool@gmail.com,,5,9,3,20KCNP,40.607399,-74.001235,11,47,278,3398583,3063320071,Bensonhurst West +KCNU,NYCEEC,K,Learning Zone,,718-820-2442,1729 Rockaway Pkwy,11236,1,12,1013265,172204,learningzonechildcare@gmail.com,http://learningzonekids.com,5,9,3,18KCNU,40.639342,-73.895847,18,46,1012,3231833,3082430018,Canarsie +KCNW,NYCEEC,K,Okie Dokie Day Care,,646-261-0936,1002 65th St,11219,1,28,981992,168708,nita1022@gmail.com,,5,9,3,20KCNW,40.629749,-74.007771,10,38,212,3142155,3057510007,Dyker Heights +KCNY,NYCEEC,K,NY Preschool Brooklyn Heights,,718-228-0800,182 Henry St,11201,1,18,985816,192521,stephanie.t@nykidsclub.com,,5,9,3,13KCNY,40.69505,-73.994187,2,33,501,3001962,3002420001,Brooklyn Heights-Cobble Hill +KCNZ,NYCEEC,K,NY Preschool Park Slope,,718-228-0800,125 5th Ave,11217,1,54,990177,186542,stephanie.t@nykidsclub.com,http://nykidsclub.com,5,9,3,13KCNZ,40.6788,-73.978833,6,39,131,3019195,3009440006,Park Slope-Gowanus +KCOG,NYCEEC,K,Stepz 2 Success CCC,,718-508-2199,1992 Nostrand Ave,11210,1,12,998595,171354,dadams0784@gmail.com,,5,9,3,22KCOG,40.637091,-73.948116,14,45,788,3121059,3052310054,Flatbush +KCOH,NYCEEC,K,Sweet Home DCC,,718-871-4301,927 Macdonald Ave,11218,1,36,990640,169321,dmitriyuspenskiy@hotmail.com,,5,9,3,20KCOH,40.631512,-73.977299,14,44,478,3127549,3054080055,Borough Park +KCOI,NYCEEC,K,Treasure Island,,718-238-7676,347 74th St,11209,1,40,977131,169485,silbekidz@aol.com,,5,9,3,20KCOI,40.631852,-74.026203,10,43,66,3339305,3059180027,Bay Ridge +KCOJ,NYCEEC,K,Candy Kid's DCC,,718-287-6200,3212 Church Ave,11226,1,18,998899,176369,janlwrn@verizon.net,,5,9,3,17KCOJ,40.650903,-73.947424,17,40,824,3109326,3048860005,Erasmus +KCOL,NYCEEC,K,"Happy Scholars, Inc.",,917-907-0183,7806 New Utrecht Ave,11214,1,36,983999,162711,happyscholars2013@gmail.com,,5,9,3,20KCOL,40.613248,-74.000677,11,43,182,3162090,3062590037,Bensonhurst West +KCOS,NYCEEC,K,Gated Academy,,718-693-3699,1019 Church Ave,11218,1,20,992646,174992,GATEDACADEMY@GMAIL.COM,,5,9,3,17KCOS,40.646714,-73.970047,14,40,506,3116329,3050710041,Flatbush +KCOT,NYCEEC,K,"Giocare, LLC",,347-827-1372,"279 23rd St, 1st Floor",11215,1,12,986197,179524,ellen@giocareplayschool.com,http://giocareplayschool.com,5,9,3,15KCOT,40.659415,-73.99322,7,38,145,3017650,3008990050,Sunset Park West +KCOU,NYCEEC,K,My Sunshine Kids Inc.,,718-877-9833,928 55th St,11219,1,54,983195,171140,mysunshinekids.ecc@gmail.com,,5,9,3,20KCOU,40.636458,-74.003567,12,38,116,3421364,3056807501,Borough Park +KCOW,NYCEEC,K,Little Scholars Learning Center,,718-373-7046,52 Quentin Rd,11223,1,18,988502,159761,littlescholarsnyc@gmail.com,,5,9,3,21KCOW,40.605325,-73.984727,11,44,428,3176456,3066450002,Bensonhurst East +KCOX,NYCEEC,K,Little Hands And Feet School,,718-680-5437,1270 Bay Rdg Pkwy,11228,1,13,982011,165313,soos016@aol.com,http://littlehandsandfeetdaycare.com,5,9,3,20KCOX,40.620763,-74.008202,10,43,200,3159952,3062217501,Dyker Heights +KCPC,NYCEEC,K,Wonder Land Pallc,,718-332-0500,1018 Ave Y,11235,1,60,995399,153981,wonderlandcare@gmail.com,http://wonderlandpsa.com,5,9,3,21KCPC,40.589474,-73.960236,15,48,588,3396930,3074300007,Homecrest +KCPD,NYCEEC,K,Little Sunshine Child Development,,347-673-7239,2102 70th St,11204,1,12,987976,162301,littlesunshine.cd@gmail.com,http://littlesunshinecdc.com,5,9,3,20KCPD,40.612199,-73.986378,11,44,258,3157486,3061750006,Bensonhurst West +KCPE,NYCEEC,K,Little Scholars II,,917-774-6505,448 Neptune Ave,11224,1,18,992545,150381,littlescholarsnyc2@gmail.com,,5,9,3,21KCPE,40.579867,-73.970207,13,48,35602,3196581,3072740015,West Brighton +KCPF,NYCEEC,K,Sarah Winner Daycare,,917-804-8284,2997 Ocean Pkwy,11235,1,12,993251,149815,sarahwinner30@gmail.com,,5,9,3,21KCPF,40.577413,-73.968267,13,48,362,3244597,3086690088,Brighton Beach +KCPK,NYCEEC,K,Chabad Of North Brooklyn,,718-388-0748,132 North 5 St,11249,1,12,995549,200403,director@ganchabadpreschool.com,,5,9,3,14KCPK,40.716944,-73.95928,1,33,553,3062307,3023430012,North Side-South Side +KCPL,NYCEEC,K,Brooklyn Star Daycare Inc.,,718-934-0075,2175 East 22 St,11229,1,36,998422,157212,brooklynstardaycare@gmail.com,,5,9,3,22KCPL,40.598231,-73.94918,15,48,576,3199915,3073550053,Madison +KCPM,NYCEEC,K,"High Definition Day Care, Inc.",,718-240-9300,337 Lenox Rd,11226,1,18,998572,177733,highdef_kids@hotmail.com,,5,9,3,17KCPM,40.654263,-73.948315,17,40,818,3396954,3048377501,Erasmus +KCPN,NYCEEC,K,One World Project - Brooklyn,,212-929-0839,302 Vanderbilt St,11218,1,16,990117,176907,joanne@oneworldproject.org,,5,9,3,15KCPN,40.652444,-73.978925,7,39,1502,3382209,3052720001,Windsor Terrace +KCPO,NYCEEC,K,Redeemer St. John's Nursery School,,718-476-8030,939 83 St,11228,1,18,978945,165235,rsjnursery@gmail.com,,5,9,3,20KCPO,40.62032,-74.019635,10,43,140,3330938,3060110040,Dyker Heights +KCPR,NYCEEC,K,Bam Bam's Playhouse,,347-613-9475,714 Banner Ave,11235,1,18,995143,151756,bam.bams.daycare1@gmail.com,,5,9,3,21KCPR,40.583372,-73.960816,13,48,366,3196537,3072640045,Brighton Beach +KCPY,NYCEEC,K,Tiny Bumblebees,,718-975-3232,2848 Brighton 7 St,11235,1,11,994744,151313,farida.jafri@gmail.com,,5,9,3,21KCPY,40.582365,-73.962105,13,48,366,3392249,3000000000,Brighton Beach +KCQB,NYCEEC,K,Imaginarium Child,,917-689-3300,1954 Ocean Ave,11230,1,12,996871,163066,info@imaginariumchild.com,,5,9,3,22KCQB,40.614444,-73.954271,14,48,546,3181615,3067570042,Midwood +KCQE,NYCEEC,K,Stuyvesant Heights Day Care / New Vision One,,718-783-5383,69 Macdonough St,11216,1,18,999853,187459,stepbystepecc@gmail.com,,5,9,3,13KCQE,40.680992,-73.943986,3,36,269,3053328,3018510039,Bedford +MBKR,NYCEEC,M,Play Together NYC Preschool,,917-842-2779,270 West 84th St Basement,10024,1,12,990236,226090,nylakam@gmail.com,,5,9,3,03MBKR,40.787335,-73.978286,7,6,171,1032793,1012310060,Upper West Side +MANG,NYCEEC,M,Imagine ELC At Vets Kids,,212-951-3435,423 East 23 St,10010,1,15,990780,207539,lauren@imagineelc.com,http://imagineelc.com,5,4,1,02MANG,40.73647,-73.977732,6,4,62,1081691,1009550005,Murray Hill-Kips Bay +QAGP,NYCEEC,Q,St. Sebastian School,,718-928-5997,39 - 76 58 St,11377,1,58,1010185,211092,admin@stsebastianschool.org,,5,9,3,30QAGP,40.747453,-73.905545,2,26,259,,,Woodside +MBKF,NYCEEC,M,Sunshine Lc Of 3rd Ave,,732-927-7080,2205 Third Ave,10035,1,54,1001488,230967,stuychurch@optimum.net,,5,9,3,04MBKF,40.800649,-73.938031,11,8,194,1088601,1017857502,East Harlem North +MAAY,NYCEEC,M,Ascension School,,212-222-5161,220 West 108 St,10025,1,54,993688,231494,omar.ortiz@archny.org,,5,9,3,3MAAY,40.802071,-73.965567,7,7,195,1056664,1018790044,Morningside Heights +MABK,NYCEEC,M,Cassidy's Place,,212-845-3821,419 East 86th St,10028,1,18,998519,222262,Plin@a-b-c.org,http://a-b-c.org,1,4,2,02MABK,40.776514,-73.948491,8,5,14402,1083281,1015660008,Yorkville +MABT,NYCEEC,M,"Storefront Academy Harlem, The",,212-427-7900,70 East 129th St,10035,1,18,1001502,233529,llescouflair@storefrontacademy.org,http://storefrontacademy.org,3,3,1,05MABT,40.807947,-73.938024,11,9,206,1054214,1017530139,Central Harlem North-Polo Grounds +MACU,NYCEEC,M,Corpus Christi,,212-662-9344,535 West 121st St,10027,1,36,995106,234772,m004@adnyeducation.org,http://ccschoolnyc.org,5,9,3,03MACU,40.810856,-73.960718,9,7,203,1059649,1019760006,Morningside Heights +MADL,NYCEEC,M,Good Shepherd School,,212-567-5800,620 Isham St,10034,1,36,1006162,255963,agnesgmcnamara@gmail.com,http://gsschoolnyc.org,5,9,3,06MADL,40.869198,-73.92046,12,10,303,1082056,1022420019,Marble Hill-Inwood +MADO,NYCEEC,M,Guardian Angel,,212-989-8280,193 10th Ave,10011,1,72,982837,211367,m007@adnyeducation.org,http://guardianangelschool-nyc.org,5,9,3,02MADO,40.746718,-74.00489,4,3,99,1012312,1006930034,Hudson Yards-Chelsea-Flatiron-Union Square +MAED,NYCEEC,M,Immaculate Conception School,,212-475-2590,419 East 13th St,10009,1,40,989155,205415,m016@adnyeducation.org,http://immaculateconceptionschoolnyc.org,5,9,3,01MAED,40.730402,-73.982447,3,2,34,1079097,1004410010,East Village +MAEE,NYCEEC,M,Incarnation School,,212-795-1030,570 West 175th St,10033,1,108,1001948,247113,mmorales@incarnationnyc.org,http://incarnationnyc.org,2,3,1,06MAEE,40.845123,-73.935864,12,10,261,1063153,1021310012,Washington Heights South +MAFQ,NYCEEC,M,Our Lady Queen Of Martyrs School,,212-567-3190,71 Arden St,10040,1,54,1004154,253977,m035@adnyeducation.org,http://olqmnyc.org,5,9,3,06MAFQ,40.863192,-73.927925,12,10,287,1064245,1021750136,Washington Heights North +MAFV,NYCEEC,M,Yeshiva Rabbi Samson Raphael Hirsch,,212-568-6200,85 - 93 Bennett Ave,10033,3,35,1002207,250051,splotzker@yrsrh.org,,5,9,3,06MAFV,40.852962,-73.935386,12,10,271,1081887,1021800135,Washington Heights North +MAGN,NYCEEC,M,St. Ann School,,212-722-1295,314 East 110th St,10029,1,54,1000920,228073,hamueller@stannschoolnyc.org,http://stannschoolnyc.org,3,3,1,04MAGN,40.792929,-73.939977,11,8,180,1081359,1016810011,East Harlem North +MAGR,NYCEEC,M,St. Brigid School,,212-677-5210,185 East 7th St,10009,1,40,989603,203419,Admissions@stbrigidschoolny.com,http://stbrigidschoolny.com,3,3,1,01MAGR,40.724849,-73.980659,3,2,2602,1004703,1003900001,Lower East Side +MAGT,NYCEEC,M,St. Charles Borromeo,,212-368-6666,214 West 142nd St,10030,1,90,1000421,238025,stbenedictsecacademyscb@gmail.com,http://stcharlesschoolcentral.org,2,2,1,05MAGT,40.82004,-73.941253,10,9,230,1060426,1020270041,Central Harlem North-Polo Grounds +MAGZ,NYCEEC,M,St. Gregory The Great School,,212-362-5410,138 West 90th St,10024,1,36,991922,226986,mrodriguez@stgregorymanhattan.org,http://stgregorymanhattan.org,2,6,1,03MAGZ,40.789804,-73.972124,7,6,173,1032440,1012200053,Upper West Side +MAHP,NYCEEC,M,St. Paul School,,212-534-0619,114 East 118th St,10035,5,72,1000441,230785,samarie@stpaulschool.us,http://stpaulschool.us,5,4,1,04MAHP,40.800225,-73.941386,11,8,182,1052335,1016450007,East Harlem North +MAHQ,NYCEEC,M,St. Rose Of Lima School,,212-927-1619,517 West 164th St,10032,1,36,1000946,244493,m099@adnyeducation.org,http://stroseoflimanyc.org,5,9,3,06MAHQ,40.837528,-73.939525,12,7,24301,1081859,1021210020,Washington Heights South +MALF,NYCEEC,M,Prince Hall Colonial Park DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-281-1444,159 - 30 Harlem Riv Dr,10039,1,11,1001937,242787,darren.m.morton@gmail.com,,5,9,3,05MALF,40.833115,-73.935445,10,9,24302,1084184,1021060320,Central Harlem North-Polo Grounds +MAMQ,NYCEEC,M,Lenox Hill Neighborhood House,,212-218-0406,331 East 70th St,10021,1,80,995962,218726,wjimenez@lenoxhill.org,http://lenoxhill.org,3,3,1,02MAMQ,40.766925,-73.95795,8,5,126,1044838,1014450014,Lenox Hill-Roosevelt Island +MAMZ,NYCEEC,M,Manhattan Nursery School,,212-631-0543,38 West 32nd St Suite 306,10001,1,16,987731,211724,contact@manhattannurseryschool.com,http://manhattannurseryschool.com,7,1,1,02MAMZ,40.747889,-73.987253,5,4,76,1015806,1008330018,Midtown-Midtown South +MANH,NYCEEC,M,Imagine ELC @ East 97th Street,,212-410-2077,60 - 62 East 97th St,10029,1,16,997285,226159,sinaikidsinfo@imagineelc.com,http://imagineelc.com,5,6,1,02MANH,40.787567,-73.952888,11,4,16002,1051451,1016020044,East Harlem South +MANJ,NYCEEC,M,Ivy League Early Learning Academy,,212-683-5545,776 Ave Of The Americas,10001,1,36,986761,210694,manhattan@ivyleagueearlylearning.com,http://ivyleagueearlylearning.com,5,9,3,02MANJ,40.74489,-73.991342,5,3,58,1015632,1008280001,Hudson Yards-Chelsea-Flatiron-Union Square +MANK,NYCEEC,M,"Urban Concepts Of NY - Round The Clock Nursery, Inc.",,212-694-0615,301 West 130th St,10027,1,20,998331,235703,rcnursery1@yahoo.com,http://roundtheclocknursery.org,2,7,1,05MANK,40.813442,-73.948979,10,9,215,1084087,1019580001,Central Harlem North-Polo Grounds +MANM,NYCEEC,M,West Harlem Earlylearn,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-665-7586,121 West 128th St,10027,1,69,999464,234496,mrwhhs@aol.com,http://westharlemelnyc.com,3,4,1,05MANM,40.810056,-73.944921,10,9,224,1057938,1019130020,Central Harlem North-Polo Grounds +MANY,NYCEEC,M,YM & YWHA Of Washington Heights And Inwood,,212-569-6200,54 Nagle Ave,10040,3,66,1003763,252645,jgoldenbach@ywashhts.org,,5,9,3,06MANY,40.859993,-73.929129,12,10,285,1064146,1021720064,Washington Heights North +MAOM,NYCEEC,M,Children's Aid Society Drew Hamilton ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-281-9555,2672 Frederick Douglass Blvd,10030,1,49,1000111,238365,jadolphus@childrensaidsociety.org,http://childrensaidsociety.org,3,7,1,05MAOM,40.820987,-73.943261,10,9,232,1060427,1020280001,Central Harlem North-Polo Grounds +MAON,NYCEEC,M,Union Johnson Early Childhood Programs,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-828-6028,1829 Lexington Ave,10029,1,38,1000124,229505,trankins@unionsettlement.org,http://unionsettlement.org,3,7,1,04MAON,40.796762,-73.942968,11,8,182,1087213,1016400021,East Harlem North +MAOZ,NYCEEC,M,Educational Alliance - Lillian Wald,,646-395-4218,34 Ave D,10009,3,20,990494,201989,maribel_oconnell@edalliance.org,http://edalliance.org,3,7,1,01MAOZ,40.721351,-73.977723,3,2,20,1078048,1003560001,Lower East Side +MAPD,NYCEEC,M,ESS Morningside,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-281-4142,2967 Frederick Douglas Blvd,10039,1,16,1001586,242065,checkod@e-s-s.org,,3,7,2,05MAPD,40.830283,-73.936467,10,9,24302,1084520,1021060003,Central Harlem North-Polo Grounds +MAPH,NYCEEC,M,East Harlem Block Nursery 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-427-2571,215 East 106th St,10029,1,17,999773,227649,cviruet@ehbn.org,,3,6,1,04MAPH,40.791312,-73.944041,11,8,170,1080690,1016560001,East Harlem South +MAPL,NYCEEC,M,Battery Park City Day Nursery,,212-945-0088,215 South End Ave,10280,1,35,979573,197802,info@bpcdaynursery.com,,5,9,3,2MAPL,40.709523,-74.016679,1,1,31704,1000055,1000167518,Battery Park City-Lower Manhattan +MAPM,NYCEEC,M,Hamilton Madison House Earlylearn Center 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-962-3408,60 Catherine St,10038,1,21,984993,198569,helenfung@hmhonline.org,http://hmhonline.org,3,7,2,02MAPM,40.711566,-73.99684,3,1,25,1077421,1001110100,Chinatown +MAPW,NYCEEC,M,Leggett Memorial,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-828-6051,237 East 104th St,10029,1,35,999755,227071,ieatman@unionsettlement.org,http://unionsettlement.org,3,3,1,04MAPW,40.789687,-73.944267,11,8,170,1080671,1016540011,East Harlem South +MAPY,NYCEEC,M,Grand St. Settlement Dual Center #1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-677-6990,60 Essex St,10002,1,37,987367,200459,jliu@grandsettlement.org,http://grandsettlement.org,3,7,1,02MAPY,40.717011,-73.988987,3,1,18,1083429,1003510001,Chinatown +MAQA,NYCEEC,M,Virginia Day Nursery,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-228-5220,464 East 10th St,10009,1,12,991269,203061,virginiaday@e-s-s.org,,3,7,1,01MAQA,40.724601,-73.97454,3,2,24,1077538,1003620010,Lower East Side +MAQG,NYCEEC,M,Gramercy School,,212-420-0510,460 West 34th St 2nd Floor,10001,1,6,984548,214046,donna.savino@yai.org,,3,2,2,02MAQG,40.754329,-73.998578,4,3,103,1012843,1007310001,Hudson Yards-Chelsea-Flatiron-Union Square +MAQH,NYCEEC,M,Goddard Riverside Preschool @ W83rd 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-877-7780,128 West 83rd St,10024,1,17,991209,225238,mplace@goddard.org,http://goddardriverside.org,3,8,1,03MAQH,40.784949,-73.974596,7,6,169,1032080,1012130042,Upper West Side +MAQI,NYCEEC,M,Child Center Of NY,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-799-2440,169 West 87th St,10024,1,25,991571,226415,patriciamachado@childcenterny.org,http://childcenterny.org,3,6,1,03MAQI,40.78793,-73.973483,7,6,173,1032229,1012180010,Upper West Side +MAQL,NYCEEC,M,Goddard Riverside DCC @ West 84th St. 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-799-2369,26 West 84th St,10024,1,19,992097,225040,cchiarelli@goddard.org,http://goddard.org,3,4,1,03MAQL,40.784358,-73.971224,7,6,169,1081040,1011970046,Upper West Side +MAQM,NYCEEC,M,Dawning Village Too,,212-369-5313,2211 First Ave,10029,1,18,1001671,228791,dawningvillage@yahoo.com,http://dawningvillage.org,2,7,1,04MAQM,40.794511,-73.936509,11,8,180,1081091,1016840001,East Harlem North +MAQR,NYCEEC,M,"Rena Child Care Centers, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-795-4444,639 Edgecombe Ave,10032,1,87,1001756,244508,Renaearlylearn@yahoo.com,,3,8,1,06MAQR,40.837754,-73.936438,12,10,249,1062652,1021110058,Washington Heights South +MAQT,NYCEEC,M,Union Carver Early Childhood Program,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-828-6079,1565 Madison Ave,10029,1,38,998272,228245,adonadelle@unionsettlement.org,http://unionsettlement.org,3,7,1,04MAQT,40.793315,-73.94971,11,8,168,1078840,1016100023,East Harlem South +MARB,NYCEEC,M,LSSMNY : Early Life Children's Center 11,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,646-478-7949,110 West 146th St,10039,1,38,1001832,238481,emason@lssny.org,http://lssny.org,3,7,2,05MARB,40.821357,-73.936353,10,9,232,1060189,1020140036,Central Harlem North-Polo Grounds +MARD,NYCEEC,M,Grant DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-666-6000,1299 Amsterdam Ave,10027,1,25,996361,235041,wmoore@ehbn.org,http://eastharlemblocknursery.org,3,7,1,05MARD,40.811919,-73.957318,9,7,20901,1084095,1019640001,Morningside Heights +MARH,NYCEEC,M,LSSMNY : Early Life Children's Center 13,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,646-360-4093,218 West 147th St,10039,1,89,1000966,239259,jfort@lssny.org,http://early-life.org,3,7,2,05MARH,40.82331,-73.939043,10,9,234,1060503,1020320017,Central Harlem North-Polo Grounds +MARJ,NYCEEC,M,Graham Windham DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-491-8501,669 Lenox Ave,10037,1,34,1001612,237905,ruchkinan@e-s-s.org,,5,9,3,05MARJ,40.81939,-73.937012,10,9,232,1085366,1020120025,Central Harlem North-Polo Grounds +MASA,NYCEEC,M,Addie Mae Collins 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-831-3144,2322 Third Ave,10035,1,54,1002112,232470,lissettethrower@gmail.com,http://addiemaecollins.org,3,8,1,05MASA,40.804468,-73.935267,11,9,242,1054497,1017750033,East Harlem North +MASH,NYCEEC,M,Friends Of Crown Heights DCC #28,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-567-5655,3732 10th Ave,10034,1,20,1005683,252665,foch28@fochdaycare.org,http://fochdaycare.org,3,8,1,06MASH,40.859898,-73.922264,12,10,299,1080030,1022160001,Marble Hill-Inwood +MASJ,NYCEEC,M,Children's Aid Society Milbank Early Childhood Program,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-996-1716,14 - 32 West 118th St,10026,1,7,999028,231563,lillianaj@childrensaidsociety.org,http://childrensaidsociety.org,3,4,2,03MASJ,40.802278,-73.946257,10,9,190,1051435,1016010018,Central Harlem South +MASK,NYCEEC,M,East Harlem Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-348-2343,130 East 101st St,10029,1,24,998287,226796,jessican@childrensaidsociety.org,http://childrensaidsociety.org,3,3,1,04MASK,40.789308,-73.949225,11,8,166,1051816,1016280062,East Harlem South +MASL,NYCEEC,M,Hudson Guild Children's Center I,,212-760-9830,441 West 26th St,10001,1,20,983806,212366,esiegel@hudsonguild.org,http://hudsonguild.org,3,7,2,02MASL,40.749196,-74.001815,4,3,97,1012827,1007240010,Hudson Yards-Chelsea-Flatiron-Union Square +MBAG,NYCEEC,M,Milestones Uws,,917-273-0776,319 West 74 St,10023,1,8,988525,224085,debbie@milestonesuws.com,,5,9,3,03MBAG,40.78132,-73.983953,7,6,163,1030999,1011840066,Upper West Side +MASN,NYCEEC,M,Community Life Center 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-427-6800,221 East 122 St,10035,1,78,1001880,231331,nic_1999@msn.com,http://communitylifeline.org,3,6,2,04MASN,40.801499,-73.936567,11,8,194,1054627,1017870060,East Harlem North +MASP,NYCEEC,M,Goddard Riverside Head Start Center @ W 95th St. 4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-873-6865,70 West 95th St,10025,1,16,993216,227730,mplace@goddard.org,http://goddard.org,2,7,2,03MASP,40.791754,-73.967013,7,6,181,1079519,1012080001,Upper West Side +MASU,NYCEEC,M,Hamilton Madison House Earlylearn Center 5,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-962-3408,253 South St,10002,1,13,986866,198046,helenfung@hmhonline.org,http://hmhonline.org,3,7,2,01MASU,40.710001,-73.990553,3,1,6,1085945,1002480015,Lower East Side +MASV,NYCEEC,M,Scan Laguardia House Nursery,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-722-7441,414 - 416 East 105th St,10029,1,19,1000822,226583,gdirectress@aol.com,,3,7,2,04MASV,40.788689,-73.939959,11,8,162,1083946,1016960001,East Harlem South +MASX,NYCEEC,M,Pequenos Souls DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-427-7644,114 East 122nd St,10035,1,37,1000957,231682,apegues@unionsettlement.org,http://unionsettlement.org,3,6,1,04MASX,40.802802,-73.939701,11,9,196,1054408,1017700159,East Harlem North +MATA,NYCEEC,M,Henry Street Settlement Family School,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-614-0537,110 - 120 Baruch Dr,10002,1,7,990621,201149,skwok@henrystreet.org,http://henrystreet.org,3,2,1,01MATA,40.718774,-73.977424,3,2,1002,1078034,1003230001,Lower East Side +MATB,NYCEEC,M,Children's Aid Society Taft ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-831-0556,1724 - 26 Madison Ave,10029,1,23,999123,230185,beverlyl@childrensaidsociety.org,http://childrensaidsociety.org,3,2,1,04MATB,40.798496,-73.94595,11,9,184,1080504,1016180001,East Harlem North +MATI,NYCEEC,M,LSSMNY : Early Life Children's Center 12,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-933-1815,1951 Park Ave,10037,1,41,1001924,234193,rbrightman@lssny.org,http://early-life.org,5,9,3,05MATI,40.809206,-73.936007,11,9,242,1054513,1017807501,East Harlem North +MATK,NYCEEC,M,Bank Street Head Start,,212-353-2532,535 East 5th St,10009,1,40,989069,203159,eatkinson@bankstreet.edu,http://bankstreet.edu/innovation-policy-and-research/head-start/,3,6,1,01MATK,40.724484,-73.983487,3,2,32,1087322,1004010046,East Village +MATL,NYCEEC,M,"Chinatown DCC, Inc.",,212-431-3845,35 Division St,10002,1,60,985424,199410,chinatown_day_care@verizon.net,,7,7,1,02MATL,40.714143,-73.995787,3,1,8,1003514,1002810046,Chinatown +MATM,NYCEEC,M,Chinese Community Concerns Corp.,,212-226-5000,180 Mott St,10012,3,36,985448,201798,chinaheadstart@aol.com,,8,7,2,02MATM,40.7205,-73.995895,2,1,41,1007156,1004790001,SoHo-TriBeCa-Civic Center-Little Italy +MATO,NYCEEC,M,Dewitt Reformed Church Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-254-3070,280 Rivington St,10002,1,40,989929,200699,mybln@yahoo.com,,3,6,1,01MATO,40.717468,-73.979726,3,2,1002,1004060,1003230073,Lower East Side +MATP,NYCEEC,M,LSSMNY : Early Life Childrens Center 14,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,646-449-0814,510 - 16 West 145th St,10031,1,49,998451,240013,,,3,8,1,06MATP,40.82548,-73.948215,9,7,229,1061917,1020760041,Hamilton Heights +MATQ,NYCEEC,M,Escuela Hispana Montessori 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-982-6650,180 Suffolk St,10002,1,29,988477,202038,blancaescuela180@gmail.com,,3,7,1,01MATQ,40.721067,-73.98501,3,2,3001,1004240,1003500008,Chinatown +MATU,NYCEEC,M,Grand St. Settlement Head Start Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-777-0656,294 Delancey St,10002,1,39,989985,200326,mrosa@grandsettlement.org,http://grandsettlement.org,3,7,1,01MATU,40.715824,-73.979547,3,2,1002,1078038,1003230001,Lower East Side +MAUA,NYCEEC,M,Education Alliance - East Broadway,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,646-395-4218,197 East Broadway,10002,1,76,987466,199403,maribel_o'connell@edalliance.org,http://edalliance.org,3,1,1,02MAUA,40.714219,-73.988219,3,1,6,1003704,1002850029,Lower East Side +MAUB,NYCEEC,M,University Settlement ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-453-4584,184 Eldridge St,10002,1,79,986871,201792,aleong@universitysettlement.org,http://universitysettlement.org,3,2,2,01MAUB,40.720653,-73.990674,3,1,18,1005483,1004150018,Chinatown +MAUC,NYCEEC,M,Grand St. Settlement,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-228-8240,300 Delancey St,10002,1,21,990176,200359,jelsayed@grandsettlement.org,http://grandsettlement.org,3,7,1,01MAUC,40.715758,-73.979334,3,2,1002,1078037,1003230001,Lower East Side +MAUE,NYCEEC,M,Cpc Jacob Riis CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-533-9138,108 Ave D,10009,1,8,990973,202812,lshi@cpc-nyc.org,,5,9,3,01MAUE,40.723492,-73.976164,3,2,24,1077507,1003620001,Lower East Side +MAUH,NYCEEC,M,Bellevue - Educare Childcare Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-679-2393,462 First Ave,10016,1,8,990893,208696,registrar@bellevue-educare.org,http://bellevue-educare.org,3,8,1,02MAUH,40.739173,-73.976862,6,4,62,1086515,1009620100,Murray Hill-Kips Bay +MAUJ,NYCEEC,M,Children's Aid At P.S. 50,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,646-627-7448,433 East 100th St,10029,1,49,1000605,225535,tmoore@childrensaidsociety.org,http://childrensaidsociety.org,3,7,1,04MAUJ,40.785258,-73.941526,11,8,162,1083933,1016940001,East Harlem South +MAUK,NYCEEC,M,Children's Aid Society,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-544-0221,93 Nagle Ave,10040,1,59,1004166,252638,clarissam@childrensaidsociety.org,http://childrensaidsociety.org,3,3,1,06MAUK,40.860412,-73.927936,12,10,283,1064149,1021730001,Washington Heights North +MAUL,NYCEEC,M,BMCC ECC,,212-220-8251,199 Chambers St,10013,3,20,980877,200632,cscottcroff@bmcc.cuny.edu,http://bmcc.cuny.ed,3,3,1,02MAUL,40.716838,-74.012117,1,1,39,1066406,1001420050,SoHo-TriBeCa-Civic Center-Little Italy +MAUM,NYCEEC,M,Chung Pak DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-343-9630,"125 Walker St, 3rd Floor",10013,1,18,984303,200605,dschen@cpc-nyc.org,http://cpc.org,3,6,1,02MAUM,40.717451,-73.99982,1,1,29,1084583,1001980126,Chinatown +MAUN,NYCEEC,M,Eisman Day Nursery,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-876-9200,1794 First Ave,10128,1,39,999233,223841,Eisman1@live.com,,3,7,1,02MAUN,40.781201,-73.946206,8,5,152,1076333,1015730020,Yorkville +MAUP,NYCEEC,M,Hudson Guild Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-760-9830,459 West 26th St,10001,1,37,983594,212372,esiegel@hudsonguild.org,http://hudsonguild.org,3,7,1,02MAUP,40.74938,-74.002252,4,3,97,1083583,1007240001,Hudson Yards-Chelsea-Flatiron-Union Square +MAUQ,NYCEEC,M,Lighthouse CDC,,212-821-9600,111 East 59th St,10022,1,24,992832,217190,shenj@lighthouseguild.org,http://lighthouseguild.org,5,3,1,02MAUQ,40.762661,-73.969179,8,4,11402,1041901,1013940005,Upper East Side-Carnegie Hill +MAUR,NYCEEC,M,Educational Alliance - P.S. 15,,646-395-4218,333 East 4th St,10009,3,20,990161,202261,maribel_oconnell@edalliance.org,http://edalliance.org,3,7,1,01MAUR,40.721807,-73.979022,3,2,2601,1004415,1003740020,Lower East Side +MAUT,NYCEEC,M,YWCA - NYC Polly Dodge ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-757-2047,538 West 55th St,10019,1,20,986567,219268,aconteh@ywcanyc.org,http://ywcanyc.org,3,7,1,02MAUT,40.768547,-73.991278,4,6,135,1086807,1010830001,Clinton +MAUU,NYCEEC,M,Garment Industry DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-219-2286,115 Chrystie St,10002,1,18,985945,201108,kwong2@cpc-nyc.org,http://cpc-nyc.org,2,7,1,02MAUU,40.718647,-73.993586,3,1,18,1005645,1004230022,Chinatown +MAUW,NYCEEC,M,Hamilton Madison House Earlylearn Center 4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-962-3408,77 Market St,10002,1,18,985811,198204,helenfung@hmhonline.org,http://hmhonline.org,3,6,2,02MAUW,40.710781,-73.994178,3,1,8,1077591,1002530001,Chinatown +MAUY,NYCEEC,M,Hamilton Madison House Earlylearn Center 6,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-962-3408,129 Fulton St,10038,1,14,982184,198044,helenfung@hmhonline.org,http://hmhonline.org,3,6,2,02MAUY,40.710105,-74.007495,1,1,1501,1001267,1000910013,Battery Park City-Lower Manhattan +MAUZ,NYCEEC,M,Bloomingdale Family Program 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-663-4067,125 West 109th St,10025,1,19,994554,231443,treyes@bloomingdalefamilyprogram.org,http://bloomingdalefamilyprogram.org,3,8,2,03MAUZ,40.801565,-73.962367,7,7,193,1079468,1018640009,Morningside Heights +MAVA,NYCEEC,M,Bloomingdale Family Program 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-663-4067,171 West 107th St,10025,1,18,994059,231104,Jfvelilla@msn.com,,5,9,3,03MAVA,40.800701,-73.964217,7,7,193,1055986,1018627501,Morningside Heights +MAVB,NYCEEC,M,Bloomingdale Family Program III,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-663-4067,987 Columbus Ave,10025,1,49,994915,231007,jsantiago@bloomingdalefamilyprogram.org,http://bloomingdalefamilyprogram.org,3,7,2,03MAVB,40.80083,-73.961696,7,7,193,1055711,1018440001,Morningside Heights +MAVG,NYCEEC,M,Harlem Gems @ P.S. 149,,212-876-0633,41 West 117th St,10026,1,40,998665,231609,sbrown@hcz.org,http://hcz.org,3,8,1,03MAVG,40.802136,-73.947828,10,9,190,1051434,1016010001,Central Harlem South +MAVK,NYCEEC,M,Children's Aid Society Frederick Douglass Ecp,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-865-6337,885 Columbus Ave,10025,1,38,994301,229836,marissab@childrensaidsociety.org,http://childrensaidsociety.org,2,1,1,03MAVK,40.797762,-73.963944,7,7,189,1081301,1018360001,Upper West Side +MAVM,NYCEEC,M,Citizens Care DCC 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-666-1683,131 Saint Nicholas Ave,10026,1,14,997234,232224,skyetroy@gmail.com,,3,4,1,03MAVM,40.803994,-73.952721,10,9,218,1058378,1019220041,Central Harlem South +MAVN,NYCEEC,M,Open Door CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-749-5572,820 Columbus Ave,10025,1,27,993659,229287,opendoorccc@aol.com,http://opendoor.org,3,7,1,03MAVN,40.795506,-73.965603,7,7,189,1079347,1018550001,Upper West Side +MAVO,NYCEEC,M,Harlem Children's Zone Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-369-3577,60 West 117th St,10026,1,30,998571,231514,odeas@hcz.org,http://harlemchildrenszone.org,3,2,1,03MAVO,40.802263,-73.948172,10,9,190,1085936,1016007501,Central Harlem South +MAVQ,NYCEEC,M,Mabel Barrett Fitzgerald DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-874-0860,243 West 64th St,10023,1,20,987913,221443,lorin.jones@lsncny.org,,3,7,1,03MAVQ,40.774214,-73.986937,7,6,151,1030340,1011560020,Lincoln Square +MAVR,NYCEEC,M,East Calvary DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-534-5249,1 West 112th St,10026,1,27,998516,230204,eastcalvarynursery@yahoo.com,http://eastcalvarydaycare.org,3,7,1,03MAVR,40.798159,-73.948363,10,9,186,1083309,1015960001,Central Harlem South +MAVS,NYCEEC,M,"Boys & Girls Harbor, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-427-2244,1 East 104th St,10029,1,133,997614,228199,cmcfadden@theharbor.org,http://theharbor.org,3,4,1,04MAVS,40.792888,-73.951826,11,8,168,1051499,1016100001,East Harlem South +MAVX,NYCEEC,M,Franklin Plaza,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-828-6413,2081 Second Ave,10029,1,33,1000287,227699,mpaige@unionsettlement.org,http://unionsettlement.org,3,7,1,04MAVX,40.791371,-73.941907,11,8,170,1080693,1016560001,East Harlem South +MAVY,NYCEEC,M,Metro North Childcare Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-828-6413,304 East 102nd St,10029,1,19,999828,226237,mpompee@unionsettlement.org,http://unionsettlement.org,3,7,1,04MAVY,40.787977,-73.944153,11,8,164,1079341,1016730006,East Harlem South +MAWA,NYCEEC,M,Union Washington CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-828-6089,1893 2nd Ave,10029,1,33,998948,225543,oagboola@unionsettlement.org,http://unionsettlement.org,3,7,1,04MAWA,40.785154,-73.946448,11,8,15602,1082343,1016470001,East Harlem South +MAWD,NYCEEC,M,Addie Mae Collins 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-831-7373,345 East 101st St,10029,1,11,1000093,225928,DorisJSmith345@gmail.com,http://addiemaecollins.org,3,8,1,04MAWD,40.787019,-73.943742,11,8,164,1079340,1016730006,East Harlem South +MAWG,NYCEEC,M,East Harlem Chs Bilingual Head Start Program,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-427-9010,440 East 116th St,10029,1,100,1002503,229000,Escuelita116@aol.con,,3,3,2,04MAWG,40.79549,-73.934214,11,8,178,1081443,1017090016,East Harlem North +MAWH,NYCEEC,M,East Harlem Chs Bilingual Head Start - 111th,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-860-7201,30 East 111th St,10029,1,49,998789,229562,Escuelita116@aol.com,,3,2,2,04MAWH,40.797069,-73.947832,11,9,17402,1085254,1016160001,East Harlem South +MAWI,NYCEEC,M,Northside Center Day School,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,646-351-1300,302 - 306 East 111th St,10029,1,35,1000964,228364,jsantana@northsidecenter.org,http://northsidecenter.org,3,7,2,04MAWI,40.793689,-73.939825,11,8,180,1081364,1016820046,East Harlem North +MAWJ,NYCEEC,M,Harlem Gems North,,646-539-5898,381 Lenox Ave,10027,1,100,999785,234608,tweaver@hcz.org,http://hcz.org,3,6,2,05MAWJ,40.810574,-73.943975,10,9,224,1089104,1019147502,Central Harlem North-Polo Grounds +MAWM,NYCEEC,M,ABC / Echo Park ECDC,,646-459-6032,1841 Park Ave,10035,3,20,1001378,232832,ediaz@a-b-c.org,http://a-b-c.org,1,4,1,05MAWM,40.80582,-73.938463,11,9,242,1054495,1017750001,East Harlem North +MAWT,NYCEEC,M,Seventh Avenue Center For Family Services,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-862-0600,711 Lenox Ave,10039,1,25,1001894,238415,dnixon@7thavenuecenter.org,http://7thavenuecenter.org,3,6,1,05MAWT,40.8208,-73.935978,10,9,232,1060189,1020140036,Central Harlem North-Polo Grounds +MAWW,NYCEEC,M,Urban Concepts / Round The Clock,,212-234-1870,3333 Broadway,10031,1,40,996309,237962,lil_fam@yahoo.com,,3,4,1,05MAWW,40.819887,-73.955243,9,7,22302,1085412,1020019005,Manhattanville +MBKK,NYCEEC,M,River Park Nursery School,,212-663-1205,711 Amsterdam Ave,10025,1,18,992315,228138,riverparkns@verizon.net,,5,9,3,03MBKK,40.793032,-73.971097,7,6,181,1032551,1012250001,Upper West Side +MAWX,NYCEEC,M,Utopia Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-663-7376,236 West 129th St,10027,1,20,998625,235026,evansutopia@yahoo.com,,5,9,3,05MAWX,40.811811,-73.947207,10,9,224,1081503,1019330001,Central Harlem North-Polo Grounds +MAWZ,NYCEEC,M,Citizens Care DCC 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-690-0742,3240 Broadway,10027,1,36,996169,236889,CITIZENSCARE1@GMAIL.COM,,3,7,1,05MAWZ,40.816951,-73.957365,9,7,219,1084124,1019840001,Manhattanville +MAXC,NYCEEC,M,ECDO Child Start Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-234-8135,249 West 144th St,10030,1,32,1000508,238706,wallen@ecdo.org,http://ecdo.org,3,6,2,05MAXC,40.821585,-73.94101,10,9,232,1060450,1020300010,Central Harlem North-Polo Grounds +MAXF,NYCEEC,M,Addie Mae Collins 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-831-9220,110 East 129th St,10035,1,19,1001838,233323,mbernard@addiemaecollins.org,http://addiemaecollins.org,3,8,1,05MAXF,40.807387,-73.936695,11,9,242,1054505,1017770005,East Harlem North +MAXH,NYCEEC,M,St. Elizabeth Pre Kindergarten,,212-568-7291,612 West 187th St,10033,1,120,1003129,250109,tcunningham@steliznyc.org,http://saintelizabethschool.com,1,3,1,06MAXH,40.853229,-73.93141,12,10,271,1063977,1021660066,Washington Heights North +MAXJ,NYCEEC,M,Ft. George Head Start Center # 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-795-9184,1525 Saint Nicholas Ave,10033,1,120,1003176,249962,agrossbard@ftgeocenterhs.org,http://fortgeorgecenter.org,3,6,1,06MAXJ,40.85263,-73.931324,12,10,271,1063981,1021660082,Washington Heights North +MAXM,NYCEEC,M,Northern Manhattan Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-926-8264,529 West 155 St,10032,1,129,999621,242578,nmpprodriguez@aol.com,,3,6,2,06MAXM,40.83198,-73.943935,12,7,241,1084190,1021140058,Washington Heights South +MAXO,NYCEEC,M,UFBCO,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-281-1959,474 West 159th St,10032,1,82,1000897,242906,manalebish@gmail.com,,3,4,1,06MAXO,40.833655,-73.94007,12,7,239,1062503,1021080023,Washington Heights South +MAXP,NYCEEC,M,St. Spyridon Parochial School,,212-795-6870,124 Wadsworth Ave,10033,1,72,1001974,248555,epanos48@gmail.com,,2,1,2,06MAXP,40.848741,-73.935777,12,10,263,1081877,1021630041,Washington Heights South +MAXS,NYCEEC,M,Washington Heights DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-718-6910,610 - 614 West 175th St,10033,1,29,1001577,247337,whcccmcm@peoplepc.com,,5,9,3,06MAXS,40.845604,-73.937006,12,10,263,1063533,1021430048,Washington Heights South +MAXT,NYCEEC,M,Nicholas Cardell DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-942-6757,84 Vermilyea Ave,10034,1,38,1005493,254805,Yrosario@nc-dcc.org,,3,4,1,06MAXT,40.865838,-73.923128,12,10,291,1064905,1022340029,Marble Hill-Inwood +MAXV,NYCEEC,M,Dominican Women's Development Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-994-6060,2346 Amsterdam Ave,10033,1,36,1002718,247257,dwdcinfo@gmail.com,,5,9,3,06MAXV,40.845196,-73.933037,12,10,261,1063193,1021320047,Washington Heights South +MAXX,NYCEEC,M,Victoria Children's Group,,212-625-9228,230 Grand St 2nd Floor,10013,1,16,985616,201122,admin@victoriachildrensgroup.com,http://victoriachildrensgroup.com,5,9,3,02MAXX,40.718625,-73.995249,2,1,41,1006953,1004700064,SoHo-TriBeCa-Civic Center-Little Italy +MAXZ,NYCEEC,M,Henry Street Settlement Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-253-1595,301 Henry St,10002,1,37,989041,199494,sbolton@henrystreet.org,http://henrystreet.org,3,4,1,01MAXZ,40.714054,-73.982797,3,1,202,1003737,1002880021,Lower East Side +MAYH,NYCEEC,M,Hudson Guild,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-760-9830,410 West 40th St,10018,1,20,985826,215163,esiegel@hudsonguild.org,http://hudsonguild.org,3,6,2,02MAYH,40.757332,-73.99403,4,3,115,1013005,1007370043,Clinton +MAYJ,NYCEEC,M,New York Center For Child Development,,212-752-7575,159 W 127th St,10027,1,16,999006,234441,BerniceFokum@nyccd.org,http://nyccd.org,7,6,2,05MAYJ,40.809752,-73.946114,10,9,224,1057901,1019120006,Central Harlem North-Polo Grounds +MAYL,NYCEEC,M,Sunshine Daycare East Harlem,,212-444-1177,1330 5th Ave,10026,1,18,998420,229977,yolanda@sunshinedaycare.com,,3,6,1,03MAYL,40.797811,-73.948558,10,9,186,1084511,1015950031,Central Harlem South +MAZB,NYCEEC,M,Evolution Enrichment Center,,212-375-9500,38 Delancey St,10002,1,36,986561,201569,ealexeeva4@gmail.com,http://evolutionenrichment.com,5,9,3,01MAZB,40.719668,-73.991858,3,1,18,1087549,1004207501,Chinatown +MAZI,NYCEEC,M,Cathedral Parkway Towers Preschool,,212-749-0291,125 West 109th St,10025,3,18,994487,231479,Sandrahuntsmith@yahoo.com,,3,8,1,03MAZI,40.801565,-73.962367,7,7,193,1079468,1018640009,Morningside Heights +MAZL,NYCEEC,M,East Harlem Block Nursery 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-234-3333,2112 Madison Ave,10037,1,18,1001557,234624,lfuentesehbn@yahoo.com,,5,9,3,05MAZL,40.810664,-73.937064,11,9,210,1081115,1017570001,East Harlem North +MAZN,NYCEEC,M,Goddard Riverside Day Care 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-873-6865,114 West 91st St,10025,1,50,992338,227020,mplace@goddard.org,http://goddard.org,3,7,1,03MAZN,40.789999,-73.970644,7,6,177,1077128,1012210007,Upper West Side +MAZQ,NYCEEC,M,Children's Aid Society's P.S. 5 Early Childhood Program,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-567-5787,3703 Tenth Ave,10034,1,40,1005720,252159,mmedina@childrensaid.org,http://childrensaidsociety.org,3,7,1,06MAZQ,40.85899,-73.922894,12,10,299,1084201,1021500030,Marble Hill-Inwood +MAZS,NYCEEC,M,"Educational Alliance, Inc. @ P.S. 142",,646-395-4218,100 Attorney St,10002,3,20,988675,200974,Evelyn_Suarez@edalliance.org,http://edalliance.org,3,6,2,01MAZS,40.718383,-73.984452,3,1,1402,1004080,1003430001,Lower East Side +MAZT,NYCEEC,M,Dawning Village,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-369-5313,2090 First Ave,10029,1,18,1001426,227330,dawningvillage@yahoo.com,,5,9,3,04MAZT,40.790999,-73.939047,11,8,162,1083954,1017010001,East Harlem South +MAZZ,NYCEEC,M,Children's Aid Society At P.S. 8,,212-740-8655,465 West 167th St,10032,1,40,1001825,245069,esthero@childrensaidsociety.org,http://childrensaidsociety.org,3,8,1,06MAZZ,40.838954,-73.936838,12,10,249,1081842,1021120001,Washington Heights South +MBAA,NYCEEC,M,St. Brigid Early Childhood Academy,,347-903-8783,185 Ave D,10009,1,90,991302,203940,Admissions@StBrigidSchoolNY.com,http://stbrigidschoolny.com,5,9,3,01MBAA,40.726324,-73.974124,3,2,28,1088345,1003820022,Lower East Side +MBAJ,NYCEEC,M,Abyssinian Development Corp. 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-690-2869,25 West 132nd St,10037,1,20,1000937,234910,dsangare@adcorp.org,http://adcorp.org,3,6,1,05MBAJ,40.811289,-73.940029,10,9,212,1053888,1017300025,Central Harlem North-Polo Grounds +MBAU,NYCEEC,M,Sacred Heart Parochial,,212-246-4784,456 West 52nt Streetÿÿ,10019,1,90,986966,218169,jmorano@shjsncy.org,http://shjsnyc.org,3,3,1,02MBAU,40.765387,-73.989603,4,3,133,1077357,1010610054,Clinton +MBBE,NYCEEC,M,Lexington Children's Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-410-1060,115 East 98th St,10029,1,18,997864,226383,rbeza@aol.com,http://lexingtonchildrenscenter.com,3,7,1,02MBBE,40.787637,-73.951057,11,5,166,1078911,1016260001,East Harlem South +MBBG,NYCEEC,M,Community Life Center 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-427-3000,15 Mt Morris Park West,10027,1,73,999302,232580,barbara.sanchez243@gmail.com,,3,6,2,03MBBG,40.80483,-73.945475,10,9,200,1053368,1017200058,Central Harlem South +MBBI,NYCEEC,M,Manhattan ECC,,212-740-5157,554 Ft Washington Ave,10033,1,32,1001668,250354,marjory.antoine@birchfamilyservices.org,http://birchfamilyservices.org,3,3,2,06MBBI,40.853907,-73.937258,12,10,273,1064395,1021800035,Washington Heights North +MBBJ,NYCEEC,M,Ft. George Child Center 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-927-2210,601 W 186 St,10033,1,17,1003145,249930,eguzman@ftgeocenterhs.org,,3,6,2,06MBBJ,40.852466,-73.931675,12,10,271,1063981,1021660082,Washington Heights North +MBCM,NYCEEC,M,Singleton Gems,,646-545-3935,23 West 124th St,10027,1,40,999822,233055,eterrell@hcz.org,http://hcz.org,3,6,1,05MBCM,40.806111,-73.943606,10,9,200,1053457,1017220025,Central Harlem South +MBFX,NYCEEC,M,Urban Concepts / Round The Clock,,212-862-2273,300 W 145 St,10039,1,20,1000120,239056,patricia.charles@msn.com,,3,2,1,05MBFX,40.822892,-73.942071,10,9,259,1060788,1020447501,Central Harlem North-Polo Grounds +MBGO,NYCEEC,M,Salvation Army New York Templecorp,,212-337-7468,132 West 14th St,10011,1,33,984638,208090,Maya.Ramirez@use.salvationarmy.org,http://ny.salvationarmy.org/greaternewyork/upk,3,2,2,02MBGO,40.737806,-73.997922,2,3,71,1010638,1006090020,West Village +MBGQ,NYCEEC,M,CCLC At 4 NY Plaza,,212-513-7367,4 Newyork Plz Suite 104,10004,1,31,981192,195283,Lpacheco@cclc.com,http://cclc.com,7,6,1,02MBGQ,40.702593,-74.011671,1,1,9,1000000,1000047501,Battery Park City-Lower Manhattan +MBGR,NYCEEC,M,Renanim Manhattan,,212-371-7233,336 East 61st St,10065,1,16,994825,216537,anitalazbin@gmail.com,http://renanimpreschool.com,3,8,1,02MBGR,40.761273,-73.962061,8,5,110,1044214,1014350033,Lenox Hill-Roosevelt Island +MBGS,NYCEEC,M,Hudson Guild,,212-760-9830,206 West 64th St,10023,1,40,988190,221100,esiegel@hudsonguild.org,http://hudsonguild.org,3,6,2,03MBGS,40.773624,-73.985584,7,6,151,1082576,1011540101,Lincoln Square +MBGT,NYCEEC,M,Finger Painted Hands,,212-595-5200,126 West 83rd St,10024,1,17,991289,225207,fph@fingerpaintedhands.net,http://fingerpaintedhands.net,7,6,1,03MBGT,40.784933,-73.974557,7,6,169,1032080,1012130042,Upper West Side +MBGU,NYCEEC,M,Sugar Hill Museum Preschool,,212-862-7155,400 W 155th St,10032,1,54,1000579,241793,cmelville@bhc.org,http://bhc.org,3,6,2,06MBGU,40.830516,-73.940507,9,9,23501,1089726,1020697501,Hamilton Heights +MBHH,NYCEEC,M,Center Annex ( Tribeca ECC ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-925-5641,21 St John's Ln,10013,1,18,982687,202114,msikarevich@cpc-nyc.org,,3,6,1,02MBHH,40.721493,-74.005758,1,1,33,1002736,1002127503,SoHo-TriBeCa-Civic Center-Little Italy +MBHI,NYCEEC,M,My Little Language School,,646-389-7552,225 West 99th St,10025,1,29,992730,229469,natalieperez@mylittlelanguageschool.com,http://uwsmontessori.com,7,7,1,03MBHI,40.796267,-73.969586,7,7,187,1084035,1018710029,Upper West Side +MBHM,NYCEEC,M,Child Care Partners NY West,,212-797-1110,20 West St,10004,1,37,979879,196574,jpollard@tlecorp.com,http://manhattan.tlechildcare.com,5,9,3,02MBHM,40.706358,-74.016151,1,1,13,1087243,1000157502,Battery Park City-Lower Manhattan +MBHV,NYCEEC,M,Moreau LMSW Children & Family Services PC,,212-234-1036,764 St Nicholas Ave,10031,1,20,1000043,240250,jewelsofharlem@gmail.com,http://jewelsofharlem.com,3,6,1,05MBHV,40.826128,-73.943217,9,9,231,1061158,1020537502,Hamilton Heights +MBIW,NYCEEC,M,University Settlement - Creative Steps,,212-982-2273,4 Washington Sq Vlg,10012,3,20,985093,204263,jrittenberg@universitysettlement.org,http://universitysettlement.org,8,6,1,02MBIW,40.727126,-73.997023,2,1,5501,1077836,1005330001,West Village +MBJS,NYCEEC,M,NY Preschool Tribeca,,718-228-0800,88 Leonard St,10013,1,18,982942,200504,stephanie.t@nykidsclub.com,http://nykidsclub.com,5,9,3,02MBJS,40.717162,-74.004679,1,1,33,1087082,1001730027,SoHo-TriBeCa-Civic Center-Little Italy +MBJU,NYCEEC,M,UCP Of NYC Manhattan UPK,,212-686-6700,80 West End Ave,10023,1,32,987605,221411,mkaufman@ucpnyc.org,http://ucpnyc.org,5,9,3,03MBJU,40.774469,-73.987782,7,6,151,1030337,0,Lincoln Square +MBJV,NYCEEC,M,Victoria Children's Center,,212-625-1828,323 Grand St,10002,1,56,986841,200508,info@victoriachildrensgroup.com,http://victoriachildrensgroup.com,5,9,3,02MBJV,40.717159,-73.990596,3,1,16,1004005,1003090011,Chinatown +MBKS,NYCEEC,M,Butterfly CCC,,347-238-9341,296 East 4th St,10009,1,60,989544,202461,maria.zakarian.ny@gmail.com,,5,9,3,01MBKS,40.72242,-73.980515,3,2,2601,1004617,1003860033,Lower East Side +MBKU,NYCEEC,M,Cpc Little Star Of Broome Street,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-673-2680,131 Broome St,10002,1,18,988577,200191,mcheng@cpc-nyc.org,,5,9,3,01MBKU,40.716214,-73.983976,3,1,12,1077598,1003410070,Lower East Side +QASM,NYCEEC,Q,Ces Childcare,,917-832-6506,2 - 08 Astoria Blvd,11102,1,18,1001907,220726,info@clevelandedu.com,,3,3,1,30QASM,40.773758,-73.936247,1,22,87,,,Old Astoria +QBBH,NYCEEC,Q,"New Milestone, Inc.",,718-539-2068,13254 Pople Ave,11355,1,20,1031169,213849,new.milestone01@yahoo.com,,2,7,1,25QBBH,40.753486,-73.831277,7,20,79702,4115135,4051040027,Flushing +QAVI,NYCEEC,Q,Little Tots Red Wagon,,718-945-1484,20428 Rockaway Pt Blvd,11697,1,54,1008019,143772,littletotsred@aol.com,,7,3,2,27QAVI,40.560861,-73.913989,14,32,91601,4464935,4163500300,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel +QAAB,NYCEEC,Q,Beth Gavriel / Sha'arei Zion Ohel Bracha,,718-897-6771,7524 Grand Central Pkwy,11375,1,40,1030077,201214,shoshi1@aol.com,,2,3,1,28QAAB,40.718918,-73.834413,6,29,75701,4052771,4022650090,Forest Hills +QAAD,NYCEEC,Q,A Child's Place Too - 108th Street,,718-565-2466,32 - 20 108th St,11369,1,45,1022611,215949,uprekacp@gmail.com,http://achildsplacetoo.com,6,3,2,24QAAD,40.759612,-73.861334,3,21,373,4000000,4017020029,East Elmhurst +QAAM,NYCEEC,Q,Bais Yaakov Academy Of Queens ( Metropolitan Ave ),,718-847-5352,124 - 50 Metropolitan Ave,11415,1,19,1032251,195995,acohen.byqueens@gmail.com,,7,3,1,28QAAM,40.704962,-73.827573,9,29,136,,,Kew Gardens +QABC,NYCEEC,Q,Christ The King Community Preschool,,718-417-6770,6802 Metropolitan Ave,11379,1,94,1015221,198536,lchavez@ctkny.org,http://ctkny.org,7,3,1,24QABC,40.712264,-73.888475,5,30,61301,4089211,4036670023,Ridgewood +QABL,NYCEEC,Q,"Garden School, Inc.",,718-335-6363,3316 79th St,11372,1,72,1015193,214146,info@gardenschool.org,http://gardenschool.org,7,3,1,30QABL,40.754791,-73.888083,3,25,287,4437110,4012510012,Jackson Heights +QABS,NYCEEC,Q,Holy Child Jesus School,,718-849-3988,11102 86th Ave,11418,2,69,1029268,193838,SantaMaria1345@yahoo.com,http://hcjcany.org,3,7,1,27QABS,40.698724,-73.8379,9,32,130,4448716,4092250001,Richmond Hill +QACC,NYCEEC,Q,Immaculate Conception School,,718-728-1969,21 - 63 29th St,11105,1,72,1008949,222490,principal@icsastoria.org,http://icsastoria.org,5,9,3,30QACC,40.778516,-73.909657,1,22,113,,,Steinway +QACD,NYCEEC,Q,Incarnation School,,718-465-5066,8915 Francis Lewis Blvd,11427,1,36,1051423,201407,principal@incrc.org,,7,7,2,29QACD,40.719225,-73.758052,13,23,492,4225414,4105710001,Jamaica Estates-Holliswood +QACJ,NYCEEC,Q,Jewish Institute Of Queens,,718-426-9369,6005 Woodhaven Blvd,11373,1,72,1020000,205666,office@queensgymnasia.org,http://jiqueens.com,3,3,1,28QACJ,40.731256,-73.871561,6,29,687,4072178,4030880001,Rego Park +QADN,NYCEEC,Q,Ave Maria Catholic Academy,,718-848-7440,158 - 20 101st St,11414,1,40,1030565,180262,mmcmanus@amcahb.org,http://amcahb.org,5,9,3,27QADN,40.661638,-73.832804,10,32,884,4295194,4141700001,Lindenwood-Howard Beach +QADP,NYCEEC,Q,Our Lady Of Lourdes Catholic Academy,,718-464-1480,92 - 80 220th St,11428,1,18,1057235,202865,ollcatholicacademy@gmail.com,http://ollqv.net,5,9,3,29QADP,40.724783,-73.738103,13,23,560,,,Queens Village +QADQ,NYCEEC,Q,Our Lady Of Mercy Catholic Academy,,718-793-2086,7025 Kessel St,11375,1,72,1025740,199447,principal@mercyhills.org,http://olmercyca.org,3,3,1,28QADQ,40.713846,-73.850593,6,29,729,4077260,4032250004,Forest Hills +QADR,NYCEEC,Q,Notre Dame Catholic Academy Of Ridgewood,,718-821-2221,62 - 22 61st St,11385,1,54,1011398,198614,cuomondca@yahoo.com,,5,9,3,24QADR,40.712526,-73.902135,5,30,593,,,Ridgewood +QADX,NYCEEC,Q,Our Lady Of The Blessed Sacrament School,,718-229-4434,34 - 45 202nd St,11361,1,36,1043737,218535,jkane@diobrook.org,http://olbsschool.org,5,9,3,26QADX,40.766932,-73.785883,11,19,1099,,,Bayside-Bayside Hills +QADZ,NYCEEC,Q,Our Saviour Lutheran School,,718-897-4343,6433 Woodhaven Blvd,11374,1,90,1021535,201917,school@our-saviour.org,http://osnyec.org,3,3,1,28QADZ,40.720647,-73.865795,6,29,69702,4541678,4031360004,Rego Park +QAEG,NYCEEC,Q,Grace Lutheran School,,718-545-1129,3120 21st Ave,11105,1,36,1009762,222491,info@gracearoundthecorner.org,http://gracearoundthecorner.org,7,3,1,30QAEG,40.777496,-73.907827,1,22,113,4016954,4008310061,Steinway +QAEP,NYCEEC,Q,Sacred Heart Catholic Academy,,718-527-0123,115 - 50 221 St,11411,1,18,1057003,193854,sacredheartrcch@gmail.com,,5,9,3,29QAEP,40.699605,-73.736784,13,27,596,4243325,4112850032,Cambria Heights +QAEQ,NYCEEC,Q,Sacred Heart School,,718-631-4804,216 - 01 38th Ave,11361,1,36,1048741,219042,shsbayside@aol.com,,5,9,3,26QAEQ,40.767393,-73.767433,11,19,1113,,,Bayside-Bayside Hills +QAFC,NYCEEC,Q,St. Camillus School,,718-634-5260,185 Bch 99th St,11694,1,38,1034204,151925,kmontero@saintcamillusschool.com,http://saintcamillusschool.com,3,3,2,27QAFC,40.583856,-73.820117,14,32,94201,4440329,4161720020,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel +QAFF,NYCEEC,Q,St. Clare Catholic Academy,,718-528-7174,137 - 25 Brookville Blvd,11422,1,36,1057487,183258,mbasile@stclarecatholicacademy.org,http://stclarecatholicacademy.org,5,9,3,29QAFF,40.669532,-73.736236,13,31,638,4284358,4132320001,Rosedale +QAFJ,NYCEEC,Q,St. Elizabeth School,,718-843-0914,9401 85th St,11416,1,90,1024149,189094,secaupk@Gmail.com,,3,3,1,27QAFJ,40.685708,-73.856393,9,32,34,4187302,4090190001,Woodhaven +QAFR,NYCEEC,Q,St. Helen Catholic Academy,,718-835-4155,83 - 09 157th Ave,11414,1,40,1025898,180292,czerillo@sthelencatholicacademy.org,http://sthelencatholicacademy.org,5,9,3,27QAFR,40.661189,-73.849911,10,32,892,,,Lindenwood-Howard Beach +QAFY,NYCEEC,Q,St. Kevin School,,718-357-8110,4550 195th St,11358,1,108,1043408,214042,stkevinschool@yahoo.com,http://stkevincatholicacademy.org,2,3,1,25QAFY,40.754814,-73.786293,11,19,145101,4438234,4055360041,Auburndale +QAGC,NYCEEC,Q,St. Mary Gate Of Heaven,,718-846-0689,104 - 06 101st Ave,11416,1,60,1029001,189279,corsoralph@gmail.com,http://smgh.org,5,9,3,27QAGC,40.68627,-73.838918,9,28,112,,,Richmond Hill +QAGI,NYCEEC,Q,St. Nicolas Of Tolentine School,,718-380-1900,8022 Parsons Blvd,11435,1,36,1037158,201181,svidal@sntschool.org,http://sntschool.org,3,3,2,28QAGI,40.719427,-73.80891,8,24,77905,4439698,4067130041,Kew Gardens Hills +QAGR,NYCEEC,Q,St. Stanislaus Kostka School,,718-326-1585,6117 Grand Ave,11378,2,36,1010927,202441,ststansupk@gmail.com,http://ststansschool.org,8,3,1,24QAGR,40.722,-73.904029,5,30,521,4437556,4027120058,Maspeth +QAGU,NYCEEC,Q,St. Thomas The Apostle School,,718-847-3904,8749 87th St,11421,1,72,1024009,191219,stafpq@nyc.rr.com,http://stawoodhaven.com,3,7,1,27QAGU,40.691835,-73.856931,9,32,16,4438403,4089250026,Woodhaven +QAGW,NYCEEC,Q,Sesame Sprout,,718-271-2294,96 - 08 57 Ave,11368,1,51,1021854,207553,skrinsky@sesamesproutschool.com,http://sesamesproutschool.com,7,7,1,24QAGW,40.736848,-73.865066,4,21,455,,,Corona +QAHG,NYCEEC,Q,Stepping Stone Pre & Grade School,,718-465-2344,114 - 28 Francis Lewis Blvd,11412,1,54,1053999,194633,steppingstone1982@hotmail.com,,5,9,3,29QAHG,40.701443,-73.748588,12,27,532,4236967,4110220078,Queens Village +QAHH,NYCEEC,Q,"Stepping Stone Day School, Inc.",,718-591-9093,7740 Vleigh Pl,11367,1,44,1033919,201620,yvettea@steppingstonedayschool.org,http://steppingstonedayschool.org,7,2,1,25QAHH,40.719979,-73.820623,8,24,77903,4143108,4066080002,Kew Gardens Hills +QAHI,NYCEEC,Q,Saints Joachim And Anne School,,718-465-2230,218 - 19 105 Ave,11429,1,36,1056691,198832,ssjaschool@aol.com,http://ssjaschool.org,5,9,3,29QAHI,40.712047,-73.738997,13,27,540,4239367,4111080009,Queens Village +QAIM,NYCEEC,Q,Yeshiva Of Central Queens,,718-793-8500,147 - 37 70 Rd,11367,1,40,1034332,205260,hgoodrich@ycq.us,,5,9,3,25QAIM,40.729481,-73.820734,8,24,77906,,,Kew Gardens Hills +QAIR,NYCEEC,Q,Yeshiva Tifereth Moshe Day Care,,718-846-7300,8306 Abingdon Rd,11415,1,19,1030263,197144,ytmdaycare@gmail.com,http://tiferesmoshe.org,3,3,1,28QAIR,40.707787,-73.833842,9,29,775,4437658,4033290011,Kew Gardens +QAJB,NYCEEC,Q,"Books And Rattles, Inc. Site 2",,718-381-7777,6308 69th Pl,11379,1,15,1015680,200155,peekaboolc1@aol.com,http://booksandrattlesinc.com,3,3,1,24QAJB,40.716313,-73.886607,5,30,659,4070409,4030250020,Middle Village +QAJR,NYCEEC,Q,YMCA Of Greater New York - Flushing,,718-551-9356,13846 Northern Blvd,11354,1,56,1032345,217683,lrothstein@YMCAnyc.org,http://ymcanyc.org/flushing,3,3,2,25QAJR,40.764119,-73.827142,7,20,865,4113292,4050100038,Flushing +QAJX,NYCEEC,Q,YMCA Of Greater New York - Cross Island,,718-551-9313,238 - 10 Hillside Ave,11426,1,54,1059754,206399,sbatra@YMCAnyc.org,http://ymcanyc.org,7,3,1,26QAJX,40.732395,-73.727591,13,23,1567,,4079550300,QUEENS VILLAGE +QAKA,NYCEEC,Q,Little Meadows ECC,,718-454-6460,67 - 25 188th St,11365,1,28,1044022,207670,lmecc@littlemeadows.org,http://littlemeadows.org,3,3,1,26QAKA,40.737094,-73.78491,8,23,1347,,,Fresh Meadows-Utopia +QAKH,NYCEEC,Q,Samuel Field YM & YWHA ( Little Neck ),,718-225-6750,5820 Little Nck Pkwy,11362,1,54,1060902,216694,tcampo@sfy.org,http://sfy.org,3,7,1,26QAKH,40.761577,-73.723122,11,23,152902,4173029,4083520051,Douglas Manor-Douglaston-Little Neck +QAKM,NYCEEC,Q,Mi Nuevo Mundo ( 31 - 05 ),,718-476-3128,31 - 05 51 St,11377,1,40,1009812,214965,mnm104100@gmail.com,,5,9,3,30QAKM,40.756952,-73.907856,1,26,163,,,Astoria +QAKQ,NYCEEC,Q,Denizko DCC,,718-426-0123,51 - 07 69th St,11377,1,13,1013141,207040,one23stepahead@gmail.com,,3,7,1,24QAKQ,40.735206,-73.896029,2,30,243,,,Elmhurst-Maspeth +QAKT,NYCEEC,Q,Mi Nuevo Mundo,,718-476-3128,100 - 05 39th Ave,11368,1,18,1021520,212594,mnm104100@gmail.com,,3,3,2,24QAKT,40.749952,-73.865494,3,21,407,,,North Corona +QAKV,NYCEEC,Q,Honeypot Day Care,,718-539-2388,140 - 22 Beech Ave,11355,1,53,1033397,214282,honeypotdcc@gmail.com,http://honeypotdcc.com,3,6,1,25QAKV,40.754619,-73.823009,7,20,859,4117147,4051867501,Flushing +QAKW,NYCEEC,Q,Kwanis First Step,,718-848-0300,8212 151st Ave,11414,1,28,1025352,182507,sam.verdi@heartshare.org,http://heartshare.org,2,7,2,27QAKW,40.667615,-73.852384,10,32,6202,4448909,4114290001,Lindenwood-Howard Beach +QAKY,NYCEEC,Q,Kissena Cherry Day Care,,917-952-6727,14026 Cherry Ave,11355,1,76,1033587,214128,flora888c@yahoo.com,http://kissenadaycare.com,2,6,1,25QAKY,40.754124,-73.822415,7,20,859,4535115,4051927502,Flushing +QAKZ,NYCEEC,Q,"Bright Beginnings In Queens Village, Inc.",,718-264-3860,8045 Winchester Blvd,11427,1,18,1059334,207936,bbqv@verizon.net,http://brightbeginningsinqueensvillage.com,5,9,3,26QAKZ,40.737685,-73.734021,13,23,1567,4537294,4078800400,Bellerose +QBCW,NYCEEC,Q,It's My Turn,,718-845-4973,131 - 13 Liberty Ave,11419,1,18,1035674,190876,playmatesnurseryinc@gmail.com,,5,9,3,28QBCW,40.690128,-73.814706,10,28,15801,4204052,4095680049,South Ozone Park +QALA,NYCEEC,Q,Rainbow Child Dev Center,,718-321-1610,13320 Avery Ave,11355,1,72,1031102,213556,info@rainbowchildlearning.com,http://rainbowchildlearning.com,3,7,1,25QALA,40.752978,-73.830589,7,20,79702,4115179,4051057503,Flushing +QALC,NYCEEC,Q,Little Sweet Angels Preschool,,718-888-1819,14627 Beech Avenue#1b,11355,1,36,1034728,215538,daphneyeh.lsaprek@gmail.com,http://littlesweetangels.com,3,7,2,25QALC,40.757792,-73.81786,7,20,861,4523226,4053757502,East Flushing +QALD,NYCEEC,Q,Kiddie Academy Of Little Neck,,718-229-2829,25220 Northern Boulevard3rd Floor,11362,1,54,1057488,219913,kiddieacademy.littleneck@gmail.com,http://kiddieacademy.com,3,3,1,26QALD,40.769974,-73.736051,11,19,150702,4537295,4082290006,Douglas Manor-Douglaston-Little Neck +QALM,NYCEEC,Q,Professional Childcare Inc.,,718-229-5357,3803 Francis Lewis Blvd,11358,1,18,1043792,217155,ny1school@gmail.com,,1,7,1,26QALM,40.762514,-73.78529,11,19,1133,4136930,4061980001,Bayside-Bayside Hills +QALO,NYCEEC,Q,Imagine ELC,,718-557-5520,1 Jamaica Ctr Plz,11432,1,15,1039468,195353,catherine@imagineelc.com,http://imagineelc.com,5,1,1,28QALO,40.703274,-73.800405,12,27,240,4000000,4100970010,Jamaica +QALP,NYCEEC,Q,Early Sunrise Preschool,,718-736-9064,18708 Hillside Ave,11432,1,29,1046665,199698,horna21547@aol.com,,3,7,2,29QALP,40.714763,-73.774997,12,27,480,4212871,4099350031,Jamaica +QALQ,NYCEEC,Q,Elber Islamic School,,917-362-1130,25 - 42 49th St,11103,1,34,1010414,217481,amohamed2@gmail.com,,5,9,3,30QALQ,40.764385,-73.904694,1,22,145,4013983,4007440040,Astoria +QALW,NYCEEC,Q,Peek - A - Boo! Learning Center,,718-899-1532,75 - 02 51st Ave,11373,1,20,1015239,207610,areyes@booksandrattlesinc.com,http://booksandrattlesinc.com,3,3,1,24QALW,40.736563,-73.888572,4,25,479,,,Elmhurst-Maspeth +QAMB,NYCEEC,Q,Jackson Heights Learning Center Annex,,917-382-5150,7910 34 Ave Suite 1x,11372,1,20,1015411,213723,jacksonheightselc@gmail.com,,3,6,2,30QAMB,40.753448,-73.887616,3,25,285,4029138,4012660001,Jackson Heights +QAMJ,NYCEEC,Q,Little Dolphin,,718-641-7754,10701 Crossbay Blvd,11417,1,40,1027563,186624,dolphin10701@yahoo.com,http://littledolphin.org,2,7,1,27QAMJ,40.678677,-73.844222,10,32,86,4191045,4091630076,Ozone Park +QAMK,NYCEEC,Q,Lolly's ECC,,516-852-6339,5 - 44 47 Ave,11101,3,17,997043,210874,ilana@lollyslearningcenter.com,,5,9,3,30QAMK,40.745869,-73.955163,2,26,7,4000076,4000290026,Hunters Point-Sunnyside-West Maspeth +QAMN,NYCEEC,Q,"Richmond Hill Day Care, Inc.",,718-441-8191,11524 Myrtle Ave,11418,1,20,1030274,194385,richhilldc@gmail.com,,1,7,1,27QAMN,40.700303,-73.834532,9,29,132,4192718,4092290008,Richmond Hill +QAMO,NYCEEC,Q,Greater Ridgewood,,718-456-5437,5903 Summerfield St,11385,1,54,1012517,194119,lstarsprek@thegryc.org,http://thegryc.org,3,3,2,24QAMO,40.699463,-73.897855,5,34,557,4437841,4035880001,Ridgewood +QAMS,NYCEEC,Q,Kid Krazy,,718-204-0646,2519 27 St,11102,1,18,1006262,220364,kdkrzyprschl@aol.com,http://kidkrazypreschool.com,7,7,1,30QAMS,40.77161,-73.920623,1,22,69,4017414,4008397501,Old Astoria +QAMT,NYCEEC,Q,Ralph Hirschkorn CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-327-1141,310 Bch 20th St,11691,1,48,1052560,157261,rhccclisa@hotmail.com,,3,3,1,27QAMT,40.597521,-73.754248,14,31,99801,4448978,4156360007,Far Rockaway-Bayswater +QAMU,NYCEEC,Q,Saratoga Early Childhood Education Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-244-0670,17515 Rockaway Blvd,11434,1,12,1048162,179040,jameddir@verizon.net,,3,7,1,29QAMU,40.657786,-73.77031,13,31,320,4286135,4133810001,Springfield Gardens South-Brookville +QAMV,NYCEEC,Q,SCO Family Of Services Jerome Hardeman Ece,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-779-1660,29 - 49 Gillmore St,11369,1,75,1021867,216706,mfadoul@sco.com,http://sco.org/programs/early-childhood/,3,7,1,30QAMV,40.762317,-73.865371,3,21,367,4431488,4016680007,East Elmhurst +QANH,NYCEEC,Q,Quick Start DCC Inc.,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-659-6928,126 - 22 150th St,11436,1,26,1042850,184315,quickdayc@aol.com,,3,7,1,27QANH,40.672757,-73.788157,12,28,788,4262729,4121040022,Baisley Park +QANJ,NYCEEC,Q,North Side School - Parsons ( Half - Day ),,718-229-5050,84 - 60 Parsons Blvd,11432,3,18,1037792,198993,Richard@nss123.org,,5,9,3,28QANJ,40.71402,-73.807209,8,24,230,,,Briarwood-Jamaica Hills +QANR,NYCEEC,Q,Malcolm X Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-651-7880,11112 Northern Blvd,11368,1,60,1023600,215376,cannadyh@e-s-s.org,,5,9,3,24QANR,40.757931,-73.858371,3,21,381,4042862,4017260005,North Corona +QANS,NYCEEC,Q,"A To Z Center Too, Inc.",,718-740-8400,220 - 24 Jamaica Ave,11428,1,130,1058114,201386,ATOZTOO@YAHOO.COM,http://atozcentertoo.com,3,3,1,29QANS,40.719032,-73.734175,13,27,568,4231220,4107890264,Queens Village +QANT,NYCEEC,Q,Child Center Of NY 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-943-2800,6002 Roosevelt Ave,11377,1,53,1010890,210856,mariemason@childcenterny.org,http://childcenterny.org,2,2,1,30QANT,40.745487,-73.904274,2,26,259,4030038,4012930007,Woodside +QANU,NYCEEC,Q,Happy Dragon Of New York,,718-397-5733,8602 57th Ave,11373,1,52,1018566,206123,director@happydragonschool.com,http://happydragonschool.com,7,6,1,24QANU,40.732554,-73.876202,4,25,475,4065133,4028700001,Elmhurst +QANV,NYCEEC,Q,Happy Dragon Of USA Inc.,,718-271-5637,9825 Horace Harding Expy,11368,1,98,1023141,207444,director@happydragonschool.com,http://happydragonschool.com,2,6,1,28QANV,40.735678,-73.859843,4,21,455,4047330,4019180090,Corona +QANZ,NYCEEC,Q,Battalion Christian Academy,,718-634-7172,454 Bch 67 St,11692,1,18,1040910,155872,bcafarrockaway@gmail.com,http://battalionchurch.org,7,8,2,27QANZ,40.593999,-73.796263,14,31,964,4438906,4160400024,Hammels-Arverne-Edgemere +QAOC,NYCEEC,Q,Afro American Parents,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-676-5077,117 - 02 Guy Brewer Blvd,11434,1,16,1044395,188580,aapedcc3@aol.com,,3,2,1,28QAOC,40.684182,-73.782972,12,28,288,,,Baisley Park +QAOO,NYCEEC,Q,Forest Park - Beth Jacob,,718-896-4444,10235 63rd Rd,11375,1,88,1024841,206519,info@forestparkschool.org,http://forestparkpreschool.com,3,7,1,28QAOO,40.733162,-73.853823,6,29,719,4051133,4021240053,Forest Hills +QAOQ,NYCEEC,Q,Rockaway CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-327-1384,1466 Bch Channel Dr,11691,1,18,1052952,161672,rockawayccc@aol.com,,3,7,1,27QAOQ,40.609989,-73.753586,14,31,103201,4449690,4155010002,Far Rockaway-Bayswater +QAOW,NYCEEC,Q,All My Children Day Care 6,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-322-2030,11716 Sutphin Blvd,11434,1,40,1041882,187064,info@amcearlylearn.com,http://allmychildrendaycare.com,3,7,1,27QAOW,40.680282,-73.792045,12,28,18402,4260903,4120220020,Baisley Park +QAPB,NYCEEC,Q,All My Children Day Care 4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-526-5911,11015 164th Pl,11433,1,40,1043382,192083,info@allmychildrendaycare.com,http://allmychildrendaycare.com,3,7,1,28QAPB,40.693627,-73.786987,12,27,264,4216947,4101930001,South Jamaica +QAPD,NYCEEC,Q,NY League Forest Hills West,,718-639-9750,6325 Dry Hbr Rd,11379,1,16,1019247,202210,mary.rosa@yai.org,http://yai.org,2,3,2,24QAPD,40.721488,-73.873914,5,30,663,4069277,4029930012,Middle Village +QAPK,NYCEEC,Q,Concerned Parents Of Jamaica ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-658-4091,143 - 04 101st Ave,11435,1,69,1037526,192496,mmenrtor1cpjelc@gmail.com,http://concernedparentsofjamaica.com,3,3,2,28QAPK,40.694998,-73.808212,12,28,206,,,Jamaica +QAPL,NYCEEC,Q,Sholom Day Care 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-850-2934,8204 Lefferts Blvd,11418,1,30,1030936,197073,sholomdaycare@aol.com,,3,7,1,28QAPL,40.707498,-73.831304,9,29,775,4079530,4033300033,Kew Gardens +QAPM,NYCEEC,Q,Charles R Drew ELC 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-523-7600,16515 Archer Ave,11433,1,38,1041433,195926,crddcc@aol.com,http://charlesrdrewforsuccess.org,3,7,2,28QAPM,40.704137,-73.793561,12,27,444,4216225,4101550029,Jamaica +QAPP,NYCEEC,Q,Be Above Site 16,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-978-0400,189 - 26 Linden Blvd,11412,1,56,1050411,191374,jameddir@verizon.net,,3,3,2,29QAPP,40.691714,-73.762173,12,27,394,4271345,4125990001,St. Albans +QAPS,NYCEEC,Q,Be Above 22 ( New World Education Center ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-528-8751,13737 Farmers Blvd,11434,1,30,1049800,184577,nwecsamuels@hotmail.com,http://babove.com,3,7,1,29QAPS,40.673147,-73.763952,12,31,330,4280110,4130210023,Springfield Gardens North +QAPU,NYCEEC,Q,Xcel Tiny Tots Inc.,,718-740-2557,113 - 15 Springfield Blvd,11429,1,18,1056311,195743,XceltinytotsUPK@gmail.com,http://xceltinytots.com,3,3,1,29QAPU,40.704103,-73.740243,13,27,582,,,Queens Village +QAPW,NYCEEC,Q,Queensbridge ECDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-722-6026,38 - 11 27th St,11101,1,96,1002192,214313,desiree.fryson@ccbq.org,http://ccbq.org,3,3,1,30QAPW,40.75523,-73.935178,1,26,31,4004683,4003860015,Queensbridge-Ravenswood-Long Island City +QAQC,NYCEEC,Q,Howard Beach Judea Center,,718-848-1111,16205 90th St,11414,1,18,1028325,177403,fantasyrich@aol.com,,3,3,2,27QAQC,40.653523,-73.841391,10,32,892,4294161,4140640001,Lindenwood-Howard Beach +QARC,NYCEEC,Q,Lucille Rose DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-634-0331,148 Bch 59th St,11692,1,36,1043060,154568,lucillerosedcc@twcmetrobiz.com,,3,7,1,27QARC,40.590434,-73.788735,14,31,97202,4459305,4159260001,Hammels-Arverne-Edgemere +QARE,NYCEEC,Q,PAL Woodside Early Learn Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-278-3616,5037 Broadway,11377,1,31,1009287,214406,skelley@palnyc.org,http://palnyc.org,3,7,1,30QARE,40.754763,-73.910021,1,26,163,4431003,4007380050,Astoria +QARG,NYCEEC,Q,South Jamaica Center For Children And Parents Inc. Center 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-526-2500,11402 Guy R Brewer Blvd,11434,1,34,1043654,190194,acanteysjc@aol.com,,3,7,1,28QARG,40.688615,-73.785593,12,28,276,4264631,4122000052,Baisley Park +QARK,NYCEEC,Q,Sholom Day Care 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-850-2934,8437 118th St,11418,1,14,1030561,195499,shalomdaycare@aol.com,,3,7,1,27QARK,40.70351,-73.833424,9,29,134,4192902,4092340040,Kew Gardens +QARN,NYCEEC,Q,All My Children Day Care 8,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-786-1166,97 - 30 Queens Blvd,11374,1,37,1023236,204754,eyusupova@amcearlylearn.com,,3,3,2,28QARN,40.729749,-73.861277,6,29,71701,4050444,4020900001,Rego Park +QARO,NYCEEC,Q,Committee For Early Childhood Development Head Start 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-848-0276,11721 Sutphin Blvd,11434,1,129,1042016,187099,charlucie@hotmail.com,http://cecdhs.org,3,1,1,27QARO,40.680266,-73.792016,12,28,288,4264848,4122040001,Baisley Park +QARP,NYCEEC,Q,Myrtle P Jarmon ECEC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-528-0922,11655 Guy R Brewer Blvd,11434,1,23,1044519,189050,mpjecec@yahoo.com,,3,3,1,28QARP,40.685265,-73.783585,12,28,278,4435292,4123350044,Baisley Park +QARQ,NYCEEC,Q,All My Children,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-576-6812,83 - 10 188 St,11423,1,21,1045461,203314,grosler@amcearlylearn.com,http://amcearlylearn.com,3,7,1,26QARQ,40.724817,-73.778961,8,23,1277,,,Jamaica Estates-Holliswood +QARX,NYCEEC,Q,Redeemer Lutheran School,,718-821-6670,6926 Cooper Ave,11385,1,18,1017123,194776,redluthglenam@aol.com,http://redeemerlutheranschool.org,5,9,3,24QARX,40.701338,-73.881554,5,30,629,4090409,4037070016,Glendale +QASB,NYCEEC,Q,Mi Nuevo Mundo,,718-476-3128,104 - 19 39th Ave,11368,1,32,1022636,212934,mnm104100@gmail.com,,3,2,2,24QASB,40.750793,-73.86167,3,21,403,,,North Corona +QASC,NYCEEC,Q,St. Mel School,,718-539-8211,15424 26th Ave,11354,3,34,1037102,221173,cstein@stmelsacademy.org,http://stmelsacademy.org,8,3,1,25QASC,40.773887,-73.809296,7,19,1059,4109698,4048490001,Murray Hill +QASD,NYCEEC,Q,Immanuel Genius,,718-819-0190,"213 - 03 Northern Blvd, 3fl",11361,1,49,1047947,216381,Geniusd26@gmail.com,http://immanuelgenius.com,3,6,1,26QASD,40.760105,-73.770134,11,19,1447,4530080,4073130019,Bayside-Bayside Hills +QASE,NYCEEC,Q,"Talented Little Children III / TLC Spirit, LLC",,718-658-4384,104 - 40 134th St,11419,3,24,1036286,190784,tlcspirit2000@gmail.com,http://tlcpreschoolnyc.com,3,7,2,28QASE,40.691069,-73.81259,10,28,15801,,,South Ozone Park +QASF,NYCEEC,Q,Ira's Parkway Day Care,,718-739-6500,14120 Grand Central Pkwy,11435,1,18,1034924,199998,lindapinkhasov@gmail.com,http://irasdaycare.com,3,3,1,28QASF,40.71565,-73.817214,8,24,22001,4143650,4066390016,Briarwood-Jamaica Hills +QASG,NYCEEC,Q,Positive Beginnings II,,718-261-0211,71 - 25 Main St,11367,1,40,1033674,204304,Iecheverry@positivebeginnings.org,,3,3,1,25QASG,40.727911,-73.822394,8,24,77902,4143318,4066190031,Kew Gardens Hills +QASH,NYCEEC,Q,Jewish Institute Of Queens,,718-480-0100,64 - 41 Utopia Pkwy,11365,1,36,1041702,207852,OFFICE@QUEENSGYMNASIA.ORG,http://jiqueens.com,3,3,1,26QASH,40.737636,-73.793031,8,24,1341,4149093,4069040036,Fresh Meadows-Utopia +QASI,NYCEEC,Q,"Early Sunrise Preschool And Kindergarten, Inc.",,718-736-9064,187 - 10 Hillside Ave,11432,1,28,1046683,199706,horna21547@aol.com,,3,7,2,29QASI,40.714622,-73.775658,8,24,472,4213411,4099600019,Jamaica Estates-Holliswood +QASJ,NYCEEC,Q,Northside School,,718-298-6161,84 - 60 Parsons Blvd,11432,1,54,1037801,198967,david@nextstepcg.com,http://northside123.com,3,3,1,28QASJ,40.71402,-73.807209,8,24,230,,,Briarwood-Jamaica Hills +QASK,NYCEEC,Q,Jackson Children's Services,,718-779-8800,3602 14th St,11106,1,10,1001433,216147,jackdevctr@aol.com,http://jacksonchild.com,5,3,2,30QASK,40.759986,-73.937635,1,26,43,4004284,4003500020,Queensbridge-Ravenswood-Long Island City +QASL,NYCEEC,Q,Bessie & Nora's Place,,718-739-0884,90 - 05 161st St,11432,1,30,1039977,196237,bessienorapl@aol.com,,3,2,1,28QASL,40.705201,-73.799278,12,24,44601,,,Jamaica +QASN,NYCEEC,Q,Early Steps Family Center,,718-888-2301,216 Bch 87th St,11693,3,20,1036465,153570,carmen.ayala@vnsny.org,http://vnsny.org,5,9,3,27QASN,40.588048,-73.812206,14,32,94202,4303414,4161200006,Hammels-Arverne-Edgemere +QASO,NYCEEC,Q,St. Luke's Evangelical Lutheran Church,,718-296-6683,87 - 34 85th St,11421,1,30,1023433,191028,st.lukes_ns@verizon.net,http://stlukesnurseryschool.weebly.com,7,7,2,27QASO,40.691725,-73.858767,9,32,10,4183897,4089220058,Woodhaven +QASP,NYCEEC,Q,Qing Sheng Wang GFDC,,718-651-3372,83 - 32 Cornish Ave,11373,1,12,1017390,209062,starpreschool80@yahoo.com,,2,7,2,24QASP,40.740113,-73.881233,4,25,485,4038655,4015430023,Elmhurst-Maspeth +QASR,NYCEEC,Q,"A Child's Place Too, Inc.",,646-302-8379,100 - 10 Astoria Blvd,11369,1,45,1020594,216770,tameshadaviscoles@yahoo.com,,6,3,2,30QASR,40.76197,-73.86917,3,21,367,,,East Elmhurst +QAST,NYCEEC,Q,"ABC Preschool & Kindergarten Center, Corp.",,718-672-2424,66 - 20 Laurel Hl Blvd,11377,1,80,1012501,208731,abc_preschool@yahoo.com,http://abcpreschoolny.com,3,3,1,24QAST,40.739682,-73.898681,2,30,243,,,Elmhurst-Maspeth +QASU,NYCEEC,Q,Child Center Of NY 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-287-0175,3410 108th St,11368,1,73,1022787,214732,telvarivera@childcenterny.org,http://ccny.org,3,3,1,24QASU,40.75607,-73.860688,3,21,381,4043525,4017490007,North Corona +QASV,NYCEEC,Q,Bwy Preschool,,718-205-4855,7714 Roosevelt Ave,11372,1,138,1015231,211446,bwypreschool@gmail.com,http://bwypreschool.com,2,1,1,24QASV,40.74715,-73.888453,4,25,267,4036780,4014880006,Elmhurst +QASW,NYCEEC,Q,"Children's Big Apple, Inc.",,718-565-5311,3703 94th St,11372,1,90,1019464,212789,angelblue1228@yahoo.com,,8,6,2,24QASW,40.750447,-73.873054,3,21,273,4036590,4014820077,Jackson Heights +QASX,NYCEEC,Q,"Children's Big Apple, Inc.",,718-565-5311,4126 Case St,11376,1,18,1019264,211355,marcushuang@aol.com,,8,7,2,24QASX,40.746865,-73.873573,4,25,467,4039116,4015650021,Elmhurst +QASY,NYCEEC,Q,Gryc Little Stars @ Notre Dame,,718-456-5437,6281 60th Pl,11385,1,36,1011175,198534,lstarsprek@thegryc.org,http://thegryc.org,3,3,2,24QASY,40.711706,-73.903229,5,30,593,4084519,4035190005,Ridgewood +QATA,NYCEEC,Q,Jc's Daywatch Pre - K,,718-381-3777,20 St Johns Rd,11385,1,36,1009900,196752,jcsndaywatch@Aol.com,,5,9,3,24QATA,40.70678,-73.907388,5,30,589,4080903,4033910026,Ridgewood +QATB,NYCEEC,Q,Johnson's Academy LLC,,718-592-7289,9904 57th Ave,11368,1,20,1023253,208338,aleimj@gmail.com,,5,9,3,24QATB,40.738423,-73.859873,4,21,43702,4431741,4019450001,Corona +QATC,NYCEEC,Q,"Little Friends School Elmhurst, Inc.",,718-458-5415,8503 Britton Ave,11373,1,38,1017265,210883,littlefriendschool@nyc.rr.com,http://elmhurstdaycare.com,2,7,1,24QATC,40.745363,-73.880661,4,25,26901,4037168,4015050051,Elmhurst +QATD,NYCEEC,Q,Little Friends School Sunnyside,,718-786-4644,43 - 42 47 St,11104,1,56,1007014,210182,littlefriendssunnyside@gmail.com,,5,9,3,30QATD,40.744512,-73.917487,2,26,25301,4448550,4001410027,Hunters Point-Sunnyside-West Maspeth +QATE,NYCEEC,Q,Center Of Excellence Springfield Gardens Preschool,,718-276-8200,127 - 08 Merrick Blvd,11434,1,74,1049436,187492,childcarenyc@aol.com,http://aoeschool.com,3,7,1,28QATE,40.681323,-73.764975,12,27,33401,,,St. Albans +QATH,NYCEEC,Q,Maspeth Town Hall Preschool,,718-335-6049,5337 72nd St,11378,1,40,1014147,205387,arychlowski@maspethtownhall.org,http://maspethtownhall.org,2,7,2,24QATH,40.730174,-73.892364,5,30,497,4058706,4025060015,Maspeth +QATJ,NYCEEC,Q,Smiles GFDC Inc.,,917-943-3501,53 - 14 102 St,11368,1,12,1023293,209237,nancypolanco@gmail.com,,5,9,3,24QATJ,40.74126,-73.859229,4,21,44301,4047669,4019400012,Corona +QATK,NYCEEC,Q,Ping Sheng Ye Group Family Day Care,,917-853-4865,8332 Cornish Ave,11373,1,12,1017379,209073,starpreschool80@yahoo.com,,2,7,1,24QATK,40.740349,-73.880901,4,25,485,4038662,4015440019,Elmhurst-Maspeth +QATL,NYCEEC,Q,Rainbow Christian Preschool,,718-335-3361,7201 43rd Ave,11377,1,76,1014059,209714,rainbowchristianwoodside@gmail.com,http://rainbowchristian.com,3,3,1,24QATL,40.742057,-73.892514,2,26,483,4437121,4013530001,Elmhurst-Maspeth +QATM,NYCEEC,Q,Star America Preschool,,718-396-9739,"80 - 07 Broadway, 2 / F",11373,1,80,1016236,210336,staramerica11373@gmail.com,,2,6,1,24QATM,40.743729,-73.88459,4,25,481,,,Elmhurst +QATO,NYCEEC,Q,Long Island City YMCA,,212-912-2576,3223 Queens Blvd,11101,1,53,1003018,210744,npolanco2@YMCAnyc.org,http://licymca.org,3,2,1,30QATO,40.744771,-73.932449,2,26,179,4537914,4002440024,Hunters Point-Sunnyside-West Maspeth +QATQ,NYCEEC,Q,Better Community Life DCC 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-463-0403,13316 Roosevelt Ave,11354,1,42,1030465,215487,bcl21@verizon.net,,3,7,2,25QATQ,40.758288,-73.833832,7,20,871,4443446,4050370008,Flushing +QATS,NYCEEC,Q,Therese Cervini ECDC Site I,,718-478-2169,3533 104th St,11368,3,50,1021997,214102,bcheco@ccbq.org,,3,7,2,24QATS,40.75468,-73.864138,3,21,379,4437217,4017460027,North Corona +QATT,NYCEEC,Q,Preschool R Us,,718-888-1958,150 - 15 41st Ave,11354,1,38,1035902,217337,Preschoolrus88@gmail.com,,3,7,1,25QATT,40.762838,-73.813789,7,20,1167,4443442,4050340014,Murray Hill +QATU,NYCEEC,Q,Evbo Inc. D / B / A Jack & Jill Nursery School,,718-762-1218,4323 Colden St,11355,1,72,1032797,213598,JackJill1@aol.com,http://jackandjillschools.com,3,7,1,25QATU,40.75247,-73.824913,7,20,79701,4115898,4051370005,Flushing +QATV,NYCEEC,Q,Happy Dragon Children's Learning Center Site 2,,718-445-8382,14330 Cherry Ave,11355,1,51,1034317,214730,cherry@happydragonschool.com,http://happydragonschool.com,7,7,1,25QATV,40.755997,-73.819558,7,20,861,4117333,4051960043,East Flushing +QATX,NYCEEC,Q,Immanuel Creative,,718-460-9991,16315 Oak Ave,11358,1,38,1038625,212577,geniusd25@gmail.com,http://immanuelgenius.com,3,4,1,25QATX,40.749861,-73.803868,7,20,1207,4124168,4054930001,East Flushing +QATY,NYCEEC,Q,International Nursery School,,718-353-0932,171 - 39 Northern Blvd,11358,2,76,1041195,215505,INSSchool@yahoo.com,http://internationalnurseryschool.com,3,3,1,25QATY,40.75804,-73.795617,7,19,1175,4438198,4053500001,Murray Hill +QATZ,NYCEEC,Q,"Judi's Nursery, Inc.",,718-520-1324,15005 70th Rd,11367,1,60,1034672,205384,judisnursery@gmail.com,,3,3,1,25QATZ,40.72993,-73.818146,8,24,77906,4143983,4066560094,Kew Gardens Hills +QAUA,NYCEEC,Q,Kon Wah Day School,,718-353-4388,13527 38th Ave 2nd Floor,11354,1,90,1030841,216418,konwahflushing@yahoo.com,,2,3,1,25QAUA,40.760388,-73.831989,7,20,871,4112297,4049740051,Flushing +QAUB,NYCEEC,Q,"New Milestone, Inc.",,718-380-1978,15813 72nd Ave,11365,1,40,1036680,204574,new.milestone@yahoo.com,,2,7,1,25QAUB,40.727863,-73.810824,8,24,122701,4147000,4067977503,Pomonok-Flushing Heights-Hillcrest +QAUC,NYCEEC,Q,Pee Wee Folks,,718-746-6107,1245 Clintonville St,11357,1,40,1036415,227204,mgembressi@aol.com,http://peeweefolkspreschool.com,2,2,1,25QAUC,40.790173,-73.811831,7,19,987,4102995,4045300018,Whitestone +QAUD,NYCEEC,Q,Precious Moments,,718-767-6655,1102 Clintonville St,11357,1,18,1036136,227743,preciousmoments2@verizon.net,http://preciousmomentsnursery.com,5,1,1,25QAUD,40.791878,-73.812538,7,19,981,4102661,4045160027,Whitestone +QAUE,NYCEEC,Q,"Ready, Set, Grow Child Center, LLC",,718-888-7871,13616 31st Rd,11354,1,40,1030800,219622,readysetgrowccc@yahoo.com,http://readysetgrowccc.com,3,6,1,25QAUE,40.769473,-73.832038,7,20,88901,4308655,4044097503,Flushing +QAUG,NYCEEC,Q,Sharon Nursery,,718-539-8467,14515 34th Ave,11354,1,34,1033498,218874,sharon_nursery@yahoo.com,http://sharonnurseryny.com,2,7,1,25QAUG,40.767082,-73.822395,7,20,1159,4112734,4049830035,Murray Hill +QAUH,NYCEEC,Q,"Corner School, The",,718-445-2811,15003 Bayside Ave,11354,1,18,1035326,220479,baysidetcs@aol.com,http://thecornerschool.com,3,7,1,25QAUH,40.771526,-73.815657,7,19,1047,4109019,4048230005,Murray Hill +QAUJ,NYCEEC,Q,Martin L King Jr. Mem DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-886-3165,3606 Prince St,11354,1,20,1030417,216965,mlkdcc@hotmail.com,,7,7,2,25QAUJ,40.762091,-73.833107,7,20,869,4112217,4049690018,Flushing +QAUK,NYCEEC,Q,Chabad ELC,,718-279-1457,21212 26th Ave,11360,1,53,1045927,222814,Dina@chabadnequeens.com,http://chabadnequeens.com,3,3,1,26QAUK,40.778213,-73.777477,11,19,1093,4133551,4059990020,Bayside-Bayside Hills +QAUL,NYCEEC,Q,Community Church Of Douglaston,,718-767-1961,3950 Douglaston Pkwy,11363,1,30,1053391,219671,Upkofdouglaston@gmail.com,,7,3,1,26QAUL,40.770345,-73.749982,11,19,1483,4438356,4080820280,Douglas Manor-Douglaston-Little Neck +QAYJ,NYCEEC,Q,Brite Adventure Center ( 58th St. ),,718-274-4769,4131 58th St,11377,1,40,1010067,210253,nycdaycare@aol.com,,3,5,2,30QAYJ,40.74398,-73.906961,2,26,249,4031249,4013320044,Woodside +QAUM,NYCEEC,Q,Home Sweet Home Children's School,,718-357-9738,19617 53 Ave,11365,1,54,1044604,211822,homesweethomeschool@msn.com,http://homesweethomechildrensschool.org,3,7,1,26QAUM,40.7477,-73.782162,11,20,1429,4158441,4073750044,Auburndale +QAUN,NYCEEC,Q,Jack & Jill II,,718-939-8687,6805 Fresh Mdw Ln,11365,1,36,1041220,206562,mirna_p_ramos@yahoo.com,http://jackandjillschools.com,3,2,1,26QAUN,40.733431,-73.794585,8,24,1341,4149755,4069300011,Fresh Meadows-Utopia +QAUO,NYCEEC,Q,Noah's Ark Progressive Learning Center,,718-279-4251,3820 Bell Blvd,11361,1,40,1047310,218308,noahsarkschool@aol.com,http://noahsarkschool.com,3,3,1,26QAUO,40.766189,-73.772365,11,19,1123,4438252,4062340006,Bayside-Bayside Hills +QAUQ,NYCEEC,Q,YAI / NYL Clearview School Annex,,718-352-0104,12307 22 Ave,11356,1,18,1027207,223592,hilary.tischenkel@yai.org,,5,9,3,25QAUQ,40.78016,-73.844931,7,19,925,4099233,4041670001,College Point +QAUS,NYCEEC,Q,"Lutheran Schools Of Flushing And Bayside, The",,718-225-5502,3601 Bell Blvd,11361,1,36,1047142,219122,info@LSFB.org,http://lsfb.org,7,3,1,26QAUS,40.767805,-73.773168,11,19,1123,4136561,4061760001,Bayside-Bayside Hills +QAUT,NYCEEC,Q,All My Children Day Care 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-454-5600,16907 Jewel Ave,11365,1,12,1039699,205916,jashkenazy@amcearlylearn.com,http://allmychildrendaycare.com,3,7,1,26QAUT,40.731501,-73.800288,8,24,1223,4149982,4069400029,Pomonok-Flushing Heights-Hillcrest +QAUW,NYCEEC,Q,Alpha Kappa Alpha Epsilon Pi Omega DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-322-6242,14406 Rockaway Blvd,11420,1,46,1041245,184720,akadaycare@aol.com,,3,3,1,27QAUW,40.673735,-73.794538,12,28,790,4261925,4120620051,Baisley Park +QAVB,NYCEEC,Q,"Bev's Kiddie Daycare, Inc.",,718-850-3083,10145 113th St,11419,1,12,1031332,189727,Bevkiddie@verizon.net,http://bevkiddiebiz.com,3,7,2,27QAVB,40.688182,-73.830812,9,28,108,4198930,4094310058,Richmond Hill +QAVC,NYCEEC,Q,Blanche Community Progress Dcc#2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-471-7881,4402 Bch Channel Dr,11691,1,80,1046424,156441,williamsflorence@hotmail.com,http://blanchecommunity.com,3,7,1,27QAVC,40.595668,-73.77586,14,31,97203,4463476,4159670001,Hammels-Arverne-Edgemere +QAVD,NYCEEC,Q,Community And Family Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-471-7970,4105 Bch Channel Dr,11691,1,68,1047279,156339,mariposa3.13@hotmail.com,,3,7,2,27QAVD,40.595787,-73.773083,14,31,992,4301797,4158310032,Hammels-Arverne-Edgemere +QAVE,NYCEEC,Q,De Anna Learning Center,,718-847-1310,9140 120th St,11418,1,24,1032071,192519,deannagroup@aol.com,,3,3,2,27QAVE,40.695402,-73.827504,9,29,144,4196677,4093510026,Richmond Hill +QAVF,NYCEEC,Q,Cuomo First Step,,718-441-5333,11515 101st Ave,11419,1,19,1031686,190450,elizabeth.recine@heartshare.org,http://heartshare.org,3,7,2,27QAVF,40.689069,-73.829133,9,28,120,4198275,4094170046,Richmond Hill +QAVG,NYCEEC,Q,Russo First Step,,718-805-7117,11801 101st Ave,11419,1,16,1032285,190674,mildred.agate@heartshare.org,http://heartshare.org,2,6,2,27QAVG,40.689754,-73.826729,9,28,120,4199634,4094560030,Richmond Hill +QAVH,NYCEEC,Q,Hammel CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-474-3162,82 - 10 Rockaway Bch Blvd,11693,1,18,1037479,153642,HammelCCC@verizon.net,,3,7,1,27QAVH,40.587869,-73.808531,14,32,94203,,,Hammels-Arverne-Edgemere +QAVJ,NYCEEC,Q,Jfkidsport,,718-553-5437,Jfk Airport Building 350,11430,1,36,1047995,178209,jfkidsport@hotmail.com,http://jfkidsport.com,2,7,1,27QAVJ,40.648244,-73.788242,83,28,716,4000000,4142600001,Airport +QAVO,NYCEEC,Q,Omega Psi Phi Fraternity,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-322-9671,12310 143rd St,11436,1,34,1040835,185019,omegaecec@gmail.com,,3,4,1,27QAVO,40.674522,-73.795725,12,28,182,4261337,4120390044,Baisley Park +QAVP,NYCEEC,Q,On Our Way Learning Center,,718-868-2961,264 Bch 19 St,11691,1,40,1052893,156945,sungar@onourwaylc.org,http://onourwaylc.org,7,3,2,27QAVP,40.596882,-73.753199,14,31,101001,4299362,4156340048,Far Rockaway-Bayswater +QAVS,NYCEEC,Q,St. John's Lutheran Church,,718-441-3611,8620 114th St,11418,1,20,1029911,193883,imnmontalvo@hotmail.com,,3,3,1,27QAVS,40.699105,-73.835259,9,32,130,4192690,4092260069,Richmond Hill +QAVU,NYCEEC,Q,"St. Albans Montessori DCC, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-341-5945,118 - 49 Montauk St,11412,1,54,1049845,190120,aJohnson@saintalbansmontessori.com,http://saintalbansmontessori.com,2,3,1,29QAVU,40.689331,-73.76428,12,27,366,,,St. Albans +QAVV,NYCEEC,Q,Up The Ladder,,718-843-4913,8011 101st Ave,11416,1,28,1023528,187386,gonzalezmarga@aol.com,,3,7,2,27QAVV,40.680784,-73.858271,9,32,42,4188129,4090510037,Woodhaven +QAVW,NYCEEC,Q,West End Temple Nursery School,,718-318-0030,14702 Newport Ave,11694,1,30,1021796,148140,westendupk@westendtemple.org,http://westendtemple.org,3,3,2,27QAVW,40.573033,-73.864432,14,32,922,4306479,4162900001,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel +QAVY,NYCEEC,Q,Nayda Day Care,,718-805-8893,9734 108th St,11419,1,12,1029688,189977,islamislam22@aol.com,,3,7,2,27QAVY,40.68866,-73.836226,9,28,110,4197881,4094090020,Richmond Hill +QAVZ,NYCEEC,Q,Nayda Day Care II,,718-805-8893,9736 108th St,11419,1,12,1029694,189963,islamislam22@aol.com,,3,7,2,27QAVZ,40.688659,-73.836223,9,28,110,4197882,4094090021,Richmond Hill +QAWA,NYCEEC,Q,A To Z Learning Center,,718-805-4400,123 - 21 Jamaica Ave,11418,3,87,1032308,194686,atozcenter@yahoo.com,,3,3,1,28QAWA,40.700685,-73.827148,9,29,14201,4196006,4093320001,Richmond Hill +QAWC,NYCEEC,Q,Paccor Kids,,718-525-9620,11817 Guy R Brewer Blvd,11434,1,36,1044665,188289,Mrodri228@gmail.com,http://paccorpreschool.wix.com/paccorpreschool,3,8,1,28QAWC,40.683248,-73.782401,12,27,284,4448582,4123540112,Baisley Park +QAWE,NYCEEC,Q,Ira's Parkway Daycare & Preschool Inc.,,917-807-2683,139 - 76 85 Dr,11435,1,36,1035784,197542,lindapinkhasov@gmail.com,,5,9,3,28QAWE,40.708809,-73.816584,8,24,214,,,Briarwood-Jamaica Hills +QAWG,NYCEEC,Q,Bright Beginnings Pre - School,,718-297-6767,8625 162nd St,11432,1,58,1039416,198013,brightbeginningsjamaica@gmail.com,http://brightbeginningschildcenter.com,3,6,1,28QAWG,40.710483,-73.801466,8,24,448,4209097,4097730001,Briarwood-Jamaica Hills +QAWH,NYCEEC,Q,Central Queens YM & YWHA,,718-268-5011,67 - 09 108th St,11375,1,36,1026604,204822,asolomonia@cqy.org,http://cqy.org,7,3,1,28QAWH,40.728853,-73.847514,6,29,741,,,Forest Hills +QAWK,NYCEEC,Q,Sholom Sholom Inc.,,718-850-2934,11666 Park Ln South,11415,1,36,1029567,197371,sholomdaycare@aol.com,,3,7,1,28QAWK,40.70839,-73.836838,9,29,775,4079403,4033230008,Kew Gardens +QAWM,NYCEEC,Q,Rego Park Day School,,718-897-0693,6344 Wetherole St,11374,1,54,1021810,204581,Mjoseph481@aol.com,,7,7,2,28QAWM,40.728276,-73.864398,6,29,693,4072455,4030940034,Rego Park +QAWO,NYCEEC,Q,ICCD,,718-263-1587,98 - 02 62nd Dr,11374,1,41,1023153,206307,rkontner@iccd.com,http://iccd.com,5,2,1,28QAWO,40.733062,-73.859657,6,29,71701,4440231,4020860050,Rego Park +QAWQ,NYCEEC,Q,Forest Hills CCC,,718-263-5730,108 - 05 68th Rd,11375,1,18,1026956,204028,Natanielova@jccany.org,http://jccany.org,3,7,1,28QAWQ,40.726389,-73.845842,6,29,739,,,Forest Hills +QAWS,NYCEEC,Q,It's My Turn,,347-385-0824,131 - 15 Liberty Ave,11419,1,20,1035688,190884,playmatesnurseryinc@gmail.com,,5,9,3,28QAWS,40.690128,-73.814706,10,28,15801,4204052,4095680049,South Ozone Park +QAWT,NYCEEC,Q,Afro - American Parents Educational Center Site 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-322-9080,11206 Sutphin Blvd,11435,4,36,1041167,189650,bev11435@yahoo.com,,3,3,1,28QAWT,40.687358,-73.794709,12,28,190,4258993,4119660001,Baisley Park +QAWU,NYCEEC,Q,"Sunshine School, LLC",,718-468-9000,9110 146th St,11435,1,56,1037203,194623,sbisnauth@sunshineschool.org,http://sunshineschool.org,3,4,1,28QAWU,40.700875,-73.808841,12,24,212,4213884,4099860061,Jamaica +QAWW,NYCEEC,Q,"Pickwick School, Inc.",,718-526-1340,15115 85th Dr,11432,1,30,1037832,197999,pickwickschool@gmail.com,http://pickwickschool.com,7,7,1,28QAWW,40.709672,-73.806969,8,24,230,4208372,4097340041,Briarwood-Jamaica Hills +QAWX,NYCEEC,Q,Apple Tree Nursery School,,718-374-0002,8225 164th St,11432,1,18,1038730,201187,cheller@queenscp.org,,7,3,1,29QAWX,40.718546,-73.803761,8,24,1267,4152348,4070380020,Pomonok-Flushing Heights-Hillcrest +QAWY,NYCEEC,Q,CSC Montessori Center,,728-276-9538,165 - 27 Baisley Blvd,11434,1,36,1045800,186939,ccsyoung@gmail.com,,5,9,3,28QAWY,40.67854,-73.779143,12,28,33402,4436354,4124950002,Springfield Gardens North +QAWZ,NYCEEC,Q,All My Children Day Care ( 69th Ave ),,718-658-1563,10822 69th Ave,11375,1,18,1027345,203477,info@amcearlylearn.com,http://allmychildrendaycare.com,3,7,1,28QAWZ,40.725067,-73.845131,6,29,739,4052272,4022190015,Forest Hills +QAXA,NYCEEC,Q,Colin Newll ECDC,,718-722-6236,161 - 06 89 Ave,11432,1,40,1039803,196665,desiree.fryson@ccbq.org,,9,5,3,28QAXA,40.706418,-73.799841,12,24,44601,,,Jamaica +QAXC,NYCEEC,Q,All My Children Day Care ( Mayfield ),,718-658-1563,17544 Mayfield Rd,11432,1,36,1042639,200485,info@allmychildrendaycare.com,http://allmychildrendaycare.com,5,7,1,29QAXC,40.716221,-73.789783,8,24,458,4211404,4098900020,Jamaica Estates-Holliswood +QAXD,NYCEEC,Q,"Blanche Community Progress DCC, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-479-1800,10960 202nd St,11412,1,47,1052014,196609,blancheelc@gmail.com,,3,3,1,29QAXD,40.706083,-73.755417,12,27,508,4234212,4109410206,Hollis +QAXF,NYCEEC,Q,Committee For Early Childhood Development,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-464-2422,193 - 04 Jamaica Ave,11423,1,94,1048844,199116,MBAFUNSO@MSN.COM,http://cecdhs.org,3,3,1,29QAXF,40.713093,-73.767363,12,27,500,,,Hollis +QAXI,NYCEEC,Q,Queens ECC,,212-616-1851,14502 Farmers Blvd,11434,1,36,1048668,182065,donna.franklin@birchfamilyservices.org,http://www.birchfamilyservices.org,5,9,3,29QAXI,40.666171,-73.767379,13,31,306,4285481,4133120015,Springfield Gardens South-Brookville +QAXK,NYCEEC,Q,Kids Circle Daycare,,718-380-1280,164 - 04 Goethals Ave,11432,1,20,1038694,201346,thekidscircle@aol.com,http://kidscircledaycare.com,3,7,1,29QAXK,40.719328,-73.803709,8,24,1267,,,Pomonok-Flushing Heights-Hillcrest +QAXL,NYCEEC,Q,Laurelton Day Care,,718-712-1860,14119 224th St,11413,1,58,1053224,183130,laureltondaycare@aol.com,http://laureltonacademy.net,3,7,1,29QAXL,40.669267,-73.75141,13,31,682,4282460,4131520035,Laurelton +QAXN,NYCEEC,Q,Montessori Progressive,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-723-3967,19503 Linden Blvd,11412,1,72,1051671,192003,Montessori1989@verizon.net,,3,3,1,29QAXN,40.693218,-73.756733,12,27,528,4238357,4110670040,St. Albans +QAXQ,NYCEEC,Q,Our Saviour Lutheran,,718-739-7452,90 - 04 175 Th St,11432,1,45,1043333,197890,oursaviourdirector@gmail.com,http://oursaviourjamaica.com,7,3,2,29QAXQ,40.709875,-73.786722,12,27,462,,,Jamaica +QAXV,NYCEEC,Q,Redeemer Lutheran Church And Nursery School,,718-465-3252,9210 217th St,11428,1,51,1055738,202583,redeemernurseryschool@gmail.com,http://redeemerqv.org,7,3,2,29QAXV,40.722469,-73.741759,13,23,558,4227031,4106330001,Queens Village +QAYB,NYCEEC,Q,Charles R Drew ELC 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-740-2400,10945 207th St,11429,1,53,1053511,197278,crddcc@aol.com,http://charlesrdrewforsuccess.org,3,7,2,29QAYB,40.708351,-73.750633,13,27,512,4233644,4109170029,Queens Village +QAYD,NYCEEC,Q,"South Jamaica Center For Children And Parents, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-523-6455,94 - 43 160th St,11433,1,48,1040547,195093,acanteysjc@aol.com,,3,1,1,28QAYD,40.702359,-73.798125,12,27,246,4439752,4101030016,Jamaica +QAYE,NYCEEC,Q,Quick Start DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-978-0800,118 - 46 Riverton St,11412,1,34,1049910,190389,quickdayc@aol.com,,3,3,1,29QAYE,40.690058,-73.763131,12,27,366,4268946,4124490004,St. Albans +QBGK,NYCEEC,Q,Kon Gen International Preschool,,718-281-2338,196 - 25 42nd Ave,11358,1,90,1043827,216250,kongenbayside@gmail.com,,2,3,1,26QBGK,40.759759,-73.785678,11,19,1181,,,Auburndale +QAYG,NYCEEC,Q,All Children's Child Care ( 31st Ave ),,718-777-2011,32 - 04 31st Ave ( Cellar ),11106,1,40,1005693,217526,nycdaycare24@aol.com,http://allchildrenschildcare.org,3,3,2,30QAYG,40.77807,-73.749238,11,19,1483,4168187,4080360014,Douglas Manor-Douglaston-Little Neck +QAYH,NYCEEC,Q,All Children's Child Care ( 24th St. ),,718-707-0501,3501 24th St,11106,1,60,1002858,216153,NYCDaycare24@aol.com,http://allchildrenschildcare.org,3,6,1,30QAYH,40.760172,-73.932899,1,26,47,4003978,4003380023,Astoria +QAYI,NYCEEC,Q,Brite Adventure Center ( 30th St. ),,718-777-6664,4922 30th Ave,11377,1,20,1009936,216204,nycdaycare24@aol.com,,3,6,1,30QAYI,40.760284,-73.907313,1,22,163,4013772,4007400049,Astoria +QAYK,NYCEEC,Q,Christ Evangelical Lutheran Church,,718-205-1425,3357 58th St,11377,1,18,1011041,213285,sloweclc@gmail.com,http://christchurchwoodside.com,8,1,1,30QAYK,40.752595,-73.903238,2,26,257,4437084,4011820015,Woodside +QAYL,NYCEEC,Q,82nd Street Academics,,718-457-0429,8110 35th Ave,11372,1,140,1016029,213057,Carolyn.Hurtado@82ndst.com,http://preknyc.com,2,3,1,30QAYL,40.751703,-73.885406,3,25,283,4029684,4012810001,Jackson Heights +QAYN,NYCEEC,Q,Jackson Children's Services,,718-779-8800,3136 88th St,11369,5,25,1017376,215709,jackdevctr@aol.com,http://jacksonchild.com,5,3,2,30QAYN,40.759188,-73.880354,3,25,339,4595432,4013990023,Jackson Heights +QAYP,NYCEEC,Q,Kid Krazy @ 21st Avenue,,718-545-5728,2125 21 Ave,11105,1,18,1008100,224198,kdkrzyprschl@aol.com,http://kidkrazypreschool.com,7,6,1,30QAYP,40.781909,-73.914043,1,22,105,4447576,4008820007,Steinway +QAYT,NYCEEC,Q,Queensview Nursery School & Kindergarten,,718-728-4164,2136 33rd Rd,11106,1,18,1003153,217260,hevarsam@queensviewschool.com,http://queensviewschool.com,8,7,1,30QAYT,40.763325,-73.931466,1,22,45,4430866,4005570003,Astoria +QAYU,NYCEEC,Q,Rainbowland Nursery School,,718-899-7590,3960 54th St,11377,1,36,1009194,211347,info@rainbowlandschool.org,,2,7,1,30QAYU,40.746611,-73.909736,2,26,251,4028427,4012380040,Woodside +QAYV,NYCEEC,Q,Rainbowland Nursery School,,718-803-1728,3311 77th St,11372,1,16,1014792,214233,info@rainbowlandschool.org,,2,7,1,30QAYV,40.754675,-73.889931,3,25,287,4028769,4012500063,Jackson Heights +QAYW,NYCEEC,Q,St. Francis Of Assisi School,,718-726-9405,2118 46th St,11105,4,54,1011680,220497,lnealis@sfaschool.org,http://sfaschool.org,3,3,1,30QAYW,40.771724,-73.900773,1,22,121,4439584,4007710022,Steinway +QAYX,NYCEEC,Q,St. Joseph School,,718-728-0724,28 - 46 44th St,11103,1,90,1008746,217246,jsgritto@stjosephsch.org,http://stjosephsch.org,3,1,1,30QAYX,40.763854,-73.910622,1,22,147,4012089,4006990023,Astoria +QAYZ,NYCEEC,Q,Atonement Pre - School,,718-639-6074,3061 87 St,11369,1,36,1017149,216191,AWalbrodt@aol.com,,2,8,2,30QAYZ,40.760556,-73.881529,3,22,339,4033380,4013850040,Jackson Heights +QAZC,NYCEEC,Q,PAL Western Queens,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-784-2092,1026 41st Ave,11101,4,36,999430,214286,vrichardson@palnyc.org,http://palnyc.org,3,7,1,30QAZC,40.755455,-73.945299,1,26,25,4433390,4004650100,Queensbridge-Ravenswood-Long Island City +QAZD,NYCEEC,Q,St. Margaret Mary ECDC,,718-722-6236,9 - 06 27 Ave,11102,1,20,1003385,221166,desiree.fryson@ccbq.org,,5,9,3,30QAZD,40.773953,-73.930993,1,22,83,,,Old Astoria +QAZI,NYCEEC,Q,Sheldon R Weaver CCC,,718-327-4078,72 - 05 Bch Channel Dr,11692,1,18,1039724,154631,srwdccfarrock@yahoo.com,,3,7,1,27QAZI,40.591317,-73.800607,14,31,954,,,Hammels-Arverne-Edgemere +QAZV,NYCEEC,Q,Macedonia CDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-939-6060,3722 Un St,11354,1,18,1032033,216864,huynh357@aol.com,,3,2,2,25QAZV,40.762182,-73.827411,7,20,871,4438110,4049780046,Flushing +QAZW,NYCEEC,Q,La Guardia Community College Pre - School,,718-482-5295,3110 Thomson Ave,11101,5,36,1002286,210576,mflor@lagcc.cuny.edu,,2,3,1,24QAZW,40.744902,-73.935022,2,26,179,4003534,4002780001,Hunters Point-Sunnyside-West Maspeth +QBAA,NYCEEC,Q,"Sunshine Daycare Center, Inc.",,718-353-1800,"34 - 57a Francis Lewis Blvd, #2a",11358,1,15,1042858,218059,sunshinedaycareny@yahoo.com,,4,4,1,26QBAA,40.765439,-73.789118,11,19,1099,4446961,4060770048,Bayside-Bayside Hills +QBAB,NYCEEC,Q,"Mona Prep Day Care, Inc.",,718-525-8555,24115 North Conduit Ave,11422,1,52,1057456,182294,monaprepdaycare@aol.com,http://monaprepdaycare.com,3,7,1,29QBAB,40.666584,-73.736028,13,31,638,4284726,4132560001,Rosedale +QBAC,NYCEEC,Q,Cambria Center For The Gifted Child,,718-341-1991,233 - 10 Linden Blvd,11411,1,50,1059516,191077,gchung@ccgcschool.org,http://cambriacenter-giftedchild.org,2,3,1,29QBAC,40.691064,-73.728961,13,27,622,4244790,4113340010,Cambria Heights +QBAF,NYCEEC,Q,Samuel Field YM & YWHA ( Bayside ),,718-423-6111,212 - 00 23rd Ave,11360,1,54,1045832,223897,brichman@sfy.org,http://sfy.org,7,3,1,25QBAF,40.781448,-73.778109,7,19,99704,4132408,4059000050,Ft. Totten-Bay Terrace-Clearview +QBAJ,NYCEEC,Q,Community Nursery School Coth,,718-539-0732,167 - 07 35th Ave,11358,1,18,1040140,218148,reginacoth@gmail.com,http://cothcommunitynursery.com,3,7,2,25QBAJ,40.765044,-73.798484,7,19,1175,,,Murray Hill +QBBC,NYCEEC,Q,Irene Kouba,,718-229-5050,1650 Utopia Pkwy,11357,1,74,1041051,224549,info@northside123.com,http://northside123.com,3,4,1,25QBBC,40.78301,-73.794537,7,19,1017,4128728,4057350045,Ft. Totten-Bay Terrace-Clearview +QBBE,NYCEEC,Q,Our Kids Place Country Day,,718-276-3722,137 - 25 Brookville Blvd,11422,1,54,1057476,183228,Lpeters@ourkidsplacecares.com,http://ourkidsplacecares.com,3,2,1,29QBBE,40.669532,-73.736236,13,31,638,4284358,4132320001,Rosedale +QBBF,NYCEEC,Q,Divine Wisdom Catholic Academy Douglaston,,718-631-3153,45 - 11 245th St,11363,1,54,1056050,218111,dwisdom@dwcaonline.org,http://dwcaonline.org,3,3,1,26QBBF,40.765539,-73.741191,11,19,150701,4438365,4081950001,Douglas Manor-Douglaston-Little Neck +QBBG,NYCEEC,Q,Han - I Preschool,,718-358-3377,19818 32nd Rd - 1st Floor,11358,1,18,1042288,219298,hanipreschool@gmail.com,http://hanipreschool.com,3,3,1,26QBBG,40.768461,-73.790899,11,19,1099,4134101,4060250009,Bayside-Bayside Hills +QBBL,NYCEEC,Q,"ABC Kiddieland, Inc.",,718-651-3551,6521a Roosevelt Ave,11377,1,20,1012431,211196,abckiddieland@verizon.net,,3,7,2,30QBBL,40.746143,-73.898202,2,26,263,,,Woodside +QBBM,NYCEEC,Q,Mushroom House Day Care LLC,,917-500-5022,38 - 00 Ditmars Blvd,11105,1,18,1010059,220976,mushroomhousedaycare@yahoo.com,http://mushroomhousedaycare.org,5,9,3,30QBBM,40.773285,-73.906689,1,22,119,4015824,4008050031,Steinway +QBBN,NYCEEC,Q,Noah's Ark Progressive Learning Center,,347-335-0044,6248 Mt Olivet Cres,11379,1,56,1013148,199305,noahsarkschool@aol.com,,3,7,1,24QBBN,40.714313,-73.895924,5,30,603,4530837,4027737501,Middle Village +QBBP,NYCEEC,Q,The Laugh And Learn Place,,718-525-6194,228 - 23 Merrick Blvd,11413,1,36,1055977,185904,LLdaycare1@gmail.com,http://laughandlearnplace.com,3,7,3,29QBBP,40.67664,-73.742063,13,31,632,4282538,4131550030,Laurelton +QBBQ,NYCEEC,Q,Most Holy Redeemer Catholic Academy,,718-961-0246,136 - 58 41st Ave,11355,1,71,1032104,215791,embaginski@yahoo.com,http://mhrca-nyc.org,2,3,1,25QBBQ,40.758676,-73.829088,7,20,853,,,Flushing +QBBR,NYCEEC,Q,ICCD,,718-428-5370,35 - 55 223rd St,11361,1,14,1050263,219672,Lsolan@iccd.com,http://iccd.com,7,3,1,26QBBR,40.769561,-73.762029,11,19,1113,4462114,4061920060,Bayside-Bayside Hills +QBBU,NYCEEC,Q,"Nurturing Center, Inc., The",,718-527-5932,112 - 18 Springfield Blvd,11429,1,54,1056269,196216,,http://nurturingcenterandacademy.com,7,3,1,29QBBU,40.705538,-73.739718,13,27,582,4430416,4112130001,Queens Village +QBCC,NYCEEC,Q,"Rochdale Village Nursery School, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-723-2224,17030 130th Ave,11434,1,20,1047824,185923,rrochdalenursery@aim.com,,3,7,1,28QBCC,40.676795,-73.771088,12,28,33402,4436341,4124950002,Springfield Gardens North +QBCD,NYCEEC,Q,Mi Nuevo Mundo,,718-476-3128,10421 39th Ave,11368,1,20,1022657,212941,mnm104100@gmail.com,,3,2,2,24QBCD,40.750796,-73.861656,3,21,403,4595539,4017757501,North Corona +QBCQ,NYCEEC,Q,Haup UPK Program,,718-527-3776,197 - 25 Hillside Ave,11423,1,36,1049352,201227,mjcharles2@gmail.com,,5,9,3,29QCBQ,40.718438,-73.765238,12,23,478,4591612,4104720003,Jamaica Estates-Holliswood +QBCS,NYCEEC,Q,"Funday Daycare Center, Inc.",,718-460-8552,47 - 05 104th St,11368,1,17,1023224,210957,khanh6688@yahoo.com,,5,9,3,24QBCS,40.745622,-73.859519,4,21,413,,,Corona +QBCT,NYCEEC,Q,Kiddie Academy Of Whitestone,,718-747-5555,7 - 05 152nd St,11357,1,50,1036786,229053,WHITESTONE@KIDDIEACADEMY.NET,,3,7,1,25QBCT,40.794793,-73.810428,7,19,987,,,Whitestone +RAGD,NYCEEC,R,Yeled V'Yalda / Silver Lake Head Start II,,718-720-0090,20 Park Hl Cir,10304,1,40,962609,163785,dvazquez@yeled.org,http://yeled.org,3,3,1,31RAGD,40.616309,-74.078108,1,49,40,5043182,5028670100,Grymes Hill-Clifton-Fox Hills +QBDA,NYCEEC,Q,Highland Academics,,718-457-0429,162 - 10 Highland Ave,11432,1,100,1039492,197912,michelle.vitale@82ndst.com,http://82ndst.com,3,7,2,28QBDA,40.709892,-73.800891,8,24,448,4209097,4097730001,Briarwood-Jamaica Hills +QBDB,NYCEEC,Q,"Queens Pointe Talent, Inc.",,917-913-1787,90 - 02 Queens Blvd,11373,1,110,1019540,206629,QPT.Preschool@gmail.com,http://queenspointepreschool.com,5,9,3,24QBDB,40.734145,-73.87267,4,25,475,4064869,4028570036,Elmhurst +QBDC,NYCEEC,Q,SCO Corona Early Childhood Education Center,,718-779-1660,33 - 27 97th St,11368,1,54,1020006,214786,chill@sco.org,,5,9,3,30QBDC,40.756741,-73.871281,3,21,375,,,North Corona +QBDD,NYCEEC,Q,Hellenic Orthodox Community Of Astoria St. Demetrios,,718-728-1754,30 - 11 30 Dr,11102,1,54,1005480,218188,sdastoriaschool@aol.com,http://saintdemetriosastoria.com,5,9,3,30QBDD,40.765554,-73.923414,1,22,63,,,Astoria +QBDI,NYCEEC,Q,"Bethel Mission Station Church, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-474-8618,72 - 05 Bch Channel Dr,11692,1,11,1039753,154669,,,5,9,3,27QBDI,40.591317,-73.800607,14,31,954,,,Hammels-Arverne-Edgemere +QBDO,NYCEEC,Q,Bnos Bais Yaakov Of Far Rockaway,,718-337-6000,613 Bch 9 St,11691,3,60,1054853,158335,lposen@bbyschool.org,,5,9,3,27QBDO,40.601396,-73.745299,14,31,101001,4000000,4155840016,Far Rockaway-Bayswater +QBEC,NYCEEC,Q,Emilia's Kids,,718-899-9060,8403 57 Ave,11373,2,50,1017677,205408,yomi@emiliaskids.com,http://emiliaskids.com,7,2,1,24QBEC,40.730293,-73.879313,4,25,499,4065811,4028940047,Elmhurst +QBEF,NYCEEC,Q,"Learning Tree, The",,718-899-2020,7415 Juniper Blvd North Room 2,11379,1,36,1016300,202133,learningtreeny1@aol.com,http://thelearningtree.org,8,7,1,24QBEF,40.721238,-73.884513,5,30,66501,4067020,4029300012,Middle Village +QBEG,NYCEEC,Q,Magic Years Preschool And Nursery,,718-271-1850,"90 - 20 55th Ave, 1 / F",11373,1,54,1019684,207726,mypreschoolnursery@gmail.com,,3,6,1,24QBEG,40.73683,-73.872636,4,25,457,4045987,4018570084,Elmhurst +QBEH,NYCEEC,Q,Mi Nuevo Mundo Corp.,,718-476-3128,10003 39th Ave,11368,1,36,1021497,212583,mnm104100@gmail.com,,3,3,2,24QBEH,40.749972,-73.86549,3,21,407,4536914,4017667501,North Corona +QBEJ,NYCEEC,Q,Queens Herald Community Corp.,,646-535-7245,"42 - 35 Main St, 2nd Floor",11355,1,32,1032025,214252,info@qhcommunity.org,http://qhcommunity.org,3,2,1,25QBEJ,40.755178,-73.828183,7,20,853,4115775,4051350001,Flushing +QBEK,NYCEEC,Q,YMCA Of Greater NY - Ridgewood Y,,212-912-2185,6902 64th St,11385,1,36,1013635,195824,mstraka@YMCAnyc.org,,8,2,1,24QBEK,40.704098,-73.893798,5,30,581,4088138,4036310006,Ridgewood +QBEO,NYCEEC,Q,ABC ELC,,718-225-8044,54 - 25 Little Nck Pkwy,11362,1,64,1060350,218772,zepurv@aol.com,,3,7,1,26QBEO,40.766553,-73.726292,11,19,150702,,,Douglas Manor-Douglaston-Little Neck +QBEQ,NYCEEC,Q,Appletree DCC,,718-264-1588,7320 Bell Blvd,11364,1,38,1051240,208998,Lichen.appletree@gmail.com,,5,2,1,26QBEQ,40.740318,-73.758059,11,23,129103,4439704,4077320050,Oakland Gardens +QBGC,NYCEEC,Q,Sunflower Kidz Day Care,,347-709-7793,10017 32nd Ave,11369,1,32,1020769,215986,sunflowerkidz@gmail.com,http://sunflowerkidz.com,3,7,1,30QBGC,40.759222,-73.868551,3,21,363,4041703,4016860034,East Elmhurst +QBMC,NYCEEC,Q,"Beth Gavriel DCC, Inc.",,917-416-4416,119 - 03 80th Rd,11415,1,18,1030667,198880,legoldenkey@gmail.com,,5,9,3,28QBMC,40.712407,-73.832236,9,29,773,,,Kew Gardens +QBGD,NYCEEC,Q,Afro - American #4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-676-5077,10817 159th St,11433,4,18,1041495,192554,aapedcc3@aol.com,,3,2,1,28QBGD,40.695014,-73.793773,12,28,254,4457481,4101480001,South Jamaica +QBGH,NYCEEC,Q,Renanim Day Care,,718-206-4400,14129 84th Dr,11435,1,33,1035290,198279,Renanimbriarwood@gmail.com,http://renanimpreschool.com,2,7,1,28QBGH,40.710436,-73.815898,8,24,22002,4539450,4097130150,Briarwood-Jamaica Hills +QBGI,NYCEEC,Q,Tiny Footsteps,,718-969-5500,167 - 01 Un Tpke,11366,1,37,1039421,202706,tinyfootstepsny@yahoo.com,http://tinyfootstepsny.com,3,7,1,25QBGI,40.722683,-73.800921,8,24,1265,,,Pomonok-Flushing Heights-Hillcrest +QBGJ,NYCEEC,Q,Committee For Early Childhood Development DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-264-6572,193 - 25 Jamaica Ave,11423,1,60,1049009,199312,mbafunso@msn.com,http://cecdhs.org,3,7,1,29QBGJ,40.713107,-73.767309,12,27,500,,,Hollis +QBGL,NYCEEC,Q,"Star Paradise, Inc.",,718-255-1899,8655 Broadway 2nd Floor,11373,1,40,1018284,207840,nikki.starparadise@gmail.com,,2,7,1,24QBGL,40.737411,-73.877286,4,25,473,4045397,4018427502,Elmhurst +QBGM,NYCEEC,Q,Yeshiva Darchei Torah,,718-868-2300,257 Bch 17 St,11691,4,60,1053266,156934,Pmayer@darchei.org,,7,3,1,27QBGM,40.596751,-73.751147,14,31,101001,4454258,4156340094,Far Rockaway-Bayswater +QBGO,NYCEEC,Q,Sunnyside Community Services,,718-684-6173,43 - 31 39th St Sunnyside,11104,1,36,1004833,210719,gmark@scsny.org,http://scsny.org,2,6,2,30QBGO,40.745506,-73.925844,2,26,179,4311533,4001910020,Hunters Point-Sunnyside-West Maspeth +QBGP,NYCEEC,Q,Moving Up Children Center,,718-271-5637,4069 94 St,11373,1,90,1019778,211459,director@happydragonschool.com,http://happydragonschool.com,7,6,1,24QBGP,40.747061,-73.871967,4,21,465,4039599,4015870001,Elmhurst +QBGR,NYCEEC,Q,Mi Nuevo Mundo,,718-476-3128,5102 31st Ave,11377,1,36,1009845,215010,mnmchildren@gmail.com,,3,2,2,30QBGR,40.756988,-73.907758,1,26,295,4025175,4011310022,Woodside +QBGS,NYCEEC,Q,Ivy League Early Learning Academy,,718-352-8972,6158 Springfield Blvd,11364,1,54,1051811,211680,bayside@ivyleagueearlylearning.com,http://ivyleagueearlylearning.com,3,7,1,26QBGS,40.748777,-73.756556,11,23,1367,4162215,4076100040,Oakland Gardens +QBGU,NYCEEC,Q,Positive Beginnings Preschool,,718-326-0055,72 - 52 Metropolitan Ave,11379,3,12,1017631,198864,,,5,9,3,24QBGU,40.712504,-73.881639,5,30,65702,,,Middle Village +QBGV,NYCEEC,Q,Apple Tree DCC ( 197th St. ),,718-217-6666,7312 197 St,11366,1,12,1046551,207200,Lichen.appletree@gmail.com,,2,7,2,26QBGV,40.735261,-73.775,8,23,1333,4154430,4071840011,Fresh Meadows-Utopia +QBGW,NYCEEC,Q,Catholic Charities At Ravenswood ( Andrew Landi ),,718-806-1598,2120 35th Ave,11106,1,25,1002318,216340,asottile@ccbq.org,http://ccbq.org,3,3,2,30QBGW,40.761162,-73.934992,1,26,47,4430708,4003350002,Astoria +QBHB,NYCEEC,Q,Rainbow Child Dev Center II,,718-969-1900,77 - 40 164 St,11366,1,54,1038310,202825,info@rainbowchildlearning.com,http://rainbowchildlearning.com,3,7,1,25QBHB,40.724169,-73.804802,8,24,1257,,,Kew Gardens Hills +QBHK,NYCEEC,Q,Rising Stars Islamic School ( Lcna ),,646-243-5895,166 - 26 89 Ave,11432,1,18,1041264,197375,fauziakhondker@gmail.com,,3,1,2,28QBHK,40.708128,-73.795197,12,27,460,4209635,4097980006,Jamaica +QBHL,NYCEEC,Q,My Little Footprints Daycare Corp.,,718-626-2201,28 - 34 38th St,11103,1,26,1007683,218021,mylittlefootprintsdaycareinc@gmail.com,,3,8,2,30QBHL,40.765611,-73.914688,1,22,6502,4010751,4006620019,Astoria +QBHM,NYCEEC,Q,Immanuel Genius,,718-877-3001,253 - 01 Northern Blvd,11362,1,36,1057467,220236,immanuellittleneck@gmail.com,http://immanuelgenius.com,3,6,1,26QBHM,40.770779,-73.735391,11,19,150702,,,Douglas Manor-Douglaston-Little Neck +QBHN,NYCEEC,Q,Leading Kids Preschool,,718-229-6400,44 - 07 Little Nck Pkwy,11363,1,17,1057371,220244,leadingkidspreschool@gmail.com,http://leadingkidspreschool.com,3,8,1,26QBHN,40.770699,-73.736312,11,19,1479,,,Douglas Manor-Douglaston-Little Neck +QBHO,NYCEEC,Q,Holy Mountain,,718-359-6080,29 - 49 137th St,11354,1,18,1031005,219884,holymountainpreland@gmail.com,http://holymountain.weebly.com,2,1,1,25QBHO,40.771344,-73.831525,7,20,88901,,,Flushing +QBHP,NYCEEC,Q,Happy Maryann Day School,,718-886-8266,132 - 18 41st Ave,11355,1,51,1030492,214882,happymaryanndayschool@gmail.com,http://happymaryann.com,3,3,1,25QBHP,40.756607,-73.833053,7,20,871,,,Flushing +QBHQ,NYCEEC,Q,Ohr Osher And Yaffa 75,,347-233-2087,75 - 21 Main St,11367,1,36,1034184,202942,ohrosherandyaffa@gmail.com,,3,4,1,25QBHQ,40.723862,-73.82032,8,24,77902,,,Kew Gardens Hills +QBHR,NYCEEC,Q,Kathy's Day Care,,347-761-8678,34 - 47 88th St,11372,1,10,1017773,213636,lisettelucia@yahoo.com,,3,7,2,30QBHR,40.75411,-73.879429,3,25,279,4035615,4014480001,Jackson Heights +QBHS,NYCEEC,Q,Bright Kids Day Care,,718-262-0909,108 - 42 Sutphin Blvd,11435,1,20,1040117,191442,shafique.hasan75@gmail.com,http://brightkidsdaycare.info,2,6,2,28QBHS,40.692952,-73.799347,12,28,198,4452281,4119460119,South Jamaica +QBHV,NYCEEC,Q,Queens Library UPK - Woodhaven,,718-849-1069,85 - 41 Frst Pkwy,11421,1,18,1022670,192347,shinkle@queenslibrary.org,http://queenslibrary.org,7,7,2,27QBHV,40.695396,-73.862153,9,30,12,4181494,4088510327,Woodhaven +QBHW,NYCEEC,Q,Ravenswood,,718-990-0882,35 - 32 21st St,11106,1,36,1001882,216441,denise.clark@queenslibrary.org,http://queenslibrary.org,5,9,3,30QBHW,40.76131,-73.935418,1,26,47,,,Astoria +QBHX,NYCEEC,Q,Adventureland Child Care,,718-777-2011,32 - 04 31st Ave ( 2nd Fl ),11106,1,18,1005677,217499,Nycdaycare24@aol.com,,3,3,1,30QBHX,40.77807,-73.749238,11,19,1483,4168187,4080360014,Douglas Manor-Douglaston-Little Neck +QBHY,NYCEEC,Q,Aim High Leadership Academy,,917-288-8290,131 - 44 134th St,11420,1,12,1038359,183174,aimhighleadershipacademy@gmail.com,,3,4,1,27QBHY,40.670261,-73.804538,10,28,814,4255797,4117780082,South Ozone Park +QBME,NYCEEC,Q,Happily Ever After,,347-529-6718,62 - 02 Myrtle Ave,11385,1,36,1013879,194589,krystalkanhai@gmail.com,,5,9,3,24QBME,40.700894,-73.893211,5,30,577,,,Glendale +QBIB,NYCEEC,Q,Learning Ladder Center,,718-480-6444,125 - 19 101 Ave,11419,1,20,1034094,191358,LearningLadderCtr@gmail.com,http://learningladdercenter.com,5,6,2,28QBIB,40.691439,-73.820793,9,28,154,4199973,4094680030,Richmond Hill +QBIC,NYCEEC,Q,Cambria Heights Christian Academy,,718-712-7034,220 - 12 Linden Blvd,11411,1,33,1056446,192525,cambriaacademy@aol.com,http://cambriaheightschristianacademy.com,3,7,1,29QBIC,40.695105,-73.740004,13,27,596,4244354,4113210006,Cambria Heights +QBIE,NYCEEC,Q,Cpc Corona Queens UPK,,718-358-7602,47 - 05 104th St,11368,1,18,1023229,210958,llee@cpc-nyc.org,http://cpc-nyc.org,3,2,2,24QBIE,40.745622,-73.859519,4,21,413,,,Corona +QBIG,NYCEEC,Q,Kiddie Academy Of Flushing,,718-888-9499,33 - 25 Parsons Blvd,11354,1,88,1033092,218920,Flushing@kiddieacademy.net,http://kiddieacademy.com,2,3,1,25QBIG,40.767957,-73.824179,7,20,1161,4112561,4049810040,Flushing +QBIH,NYCEEC,Q,Mi Nuevo Mundo,,718-476-3128,100 - 09 39 Ave,11368,1,36,1021542,212600,mnm104100@gmail.com,,3,3,2,24QBIH,40.749952,-73.865494,3,21,407,,,North Corona +QBII,NYCEEC,Q,Academy Of Excellence Bell Park 7,,718-523-4400,178 - 36 Wexford Ter,11432,1,94,1044044,199244,ChildCareNYC@aol.com,http://aoeschool.com,2,3,1,29QBII,40.713317,-73.785258,8,24,466,4445286,4099380078,Jamaica Estates-Holliswood +QBIS,NYCEEC,Q,Baby Steps Daycare Center II,,718-451-6094,112 - 18 76 Rd,11375,1,18,1030247,200767,babystepsfh@gmail.com,http://nybabysteps.com,5,9,3,28QBIS,40.717354,-73.834648,6,29,75701,4052736,4022640042,Forest Hills +QBIX,NYCEEC,Q,"Sunshine Learning Center, Inc.",,718-525-2154,201 02 - 04 Linden Blvd,11412,1,36,1053182,192390,sunshinelcenter@aol.com,,7,3,1,29QBIX,40.694607,-73.751636,12,27,384,,,St. Albans +QBIY,NYCEEC,Q,Kidz World ECC,,718-276-7649,217 - 21 Merrick Blvd,11413,1,48,1053231,187082,sandychildren@msn.com,http://kidzworldearlychildhoodcenter.com,3,2,1,29QBIY,40.679943,-73.752145,13,31,358,4567908,4130110034,Laurelton +QBIZ,NYCEEC,Q,Preschool R Us II,,718-888-9878,59 - 25 Kissena Blvd,11354,1,55,1035574,208916,preschoolrusii88@gmail.com,,3,3,1,25QBIZ,40.740542,-73.81505,7,20,837,4141486,4064400016,Queensboro Hill +QBJC,NYCEEC,Q,Maroos Preschool,,646-358-9577,4502 82nd St,11373,1,20,1016638,209435,maroosinc@hotmail.com,,2,5,1,24QBJC,40.741518,-73.882937,4,25,481,4038373,4015330054,Elmhurst +QBJE,NYCEEC,Q,Morning Star Preschool,,718-229-0206,47 - 24 Bell Blvd,11361,1,32,1048621,214862,311.morningstar@gmail.com,,7,6,1,26QBJE,40.756699,-73.767597,11,19,1447,4157332,4073300023,Bayside-Bayside Hills +QBJH,NYCEEC,Q,Bethel Mission Station Church Loving DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-474-8618,338 Bch 56 St,11692,1,18,1043790,155611,dolores_paual@yahoo.com,,3,3,2,27QBJH,40.593503,-73.786115,14,31,97204,4436422,4158920001,Hammels-Arverne-Edgemere +QBJJ,NYCEEC,Q,North Side School,,718-229-5050,85 - 27 91st St,11421,1,75,1024660,192800,NORTHSIDE123@GMAIL.COM,,3,3,1,27QBJJ,40.696449,-73.854614,9,32,14,4182320,4088770019,Woodhaven +QBJN,NYCEEC,Q,Al - Mamoor School,,718-739-0902,78 - 31 Parsons Blvd,11366,1,28,1037125,202173,almamoor@gmail.com,http://al-mamoor.org,2,3,1,25QBJN,40.722201,-73.80979,8,24,1257,4147910,4068290001,Kew Gardens Hills +QBJO,NYCEEC,Q,Al Madinah School,,718-222-4986,1824 Astoria Blvd,11102,1,20,1004603,220607,almadinahinfo@gmail.com,http://almadinah-school.com,2,2,1,30QBJO,40.772251,-73.927183,1,22,83,4006091,4005390030,Old Astoria +QBJP,NYCEEC,Q,Magic Beans,,718-786-8091,43 - 12 46th St,11104,1,20,1006791,210523,magicbeanslc@gmail.com,,3,8,1,30QBJP,40.744666,-73.918385,2,26,25301,4001318,4001410024,Hunters Point-Sunnyside-West Maspeth +QBJQ,NYCEEC,Q,Garden School,,718-335-6363,78 - 02 Northern Blvd,11372,1,138,1015094,214364,info@gardenschool.org,http://gardenschool.org,7,6,1,30QBJQ,40.755176,-73.888948,3,25,287,,,Jackson Heights +QBJR,NYCEEC,Q,Grace Daycare Center,,718-803-0345,89 - 00 23rd Ave,11369,3,36,1017472,218835,gracepreschool1004@gmail.com,,8,3,2,30QBJR,40.76764,-73.880805,3,22,329,4023535,4010840001,Jackson Heights +QBJV,NYCEEC,Q,Khwoa Bhoa Day School,,718-353-3628,132 - 25 Pople Ave,11355,1,30,1030833,213831,khwoabhaodayschool@yahoo.com,,5,9,3,25QBJV,40.75315,-73.832191,7,20,79702,4115117,4051040007,Flushing +QBJX,NYCEEC,Q,Divine Wisdom Catholic Academy,,718-631-3153,56 - 10 214th St,11364,2,94,1049349,212625,dwisdom@dwcaonline.org,http://dwcaonline.org,2,3,1,26QBJX,40.750334,-73.764761,11,23,1399,,,Bayside-Bayside Hills +QBKE,NYCEEC,Q,Sholom Sholom Inc.,,718-850-2934,84 - 15 Beverly Rd,11415,1,72,1031241,197128,shalomdaycare@aol.com,http://kewgardenspreschool.com,3,7,1,28QBKE,40.707643,-73.831101,9,29,136,4079573,4033330001,Kew Gardens +QBLD,NYCEEC,Q,ABC Kiddieland DCC,,718-651-3551,67 - 05 Roosevelt Ave,11377,1,20,1012555,211207,abckiddieland@verizon.net,,5,9,3,30QBLD,40.746151,-73.897975,2,26,263,,,Woodside +QBLF,NYCEEC,Q,Discovery Lane DCC,,347-652-7739,27 - 17 27 St,11102,1,29,1005526,219560,acecoloma03@yahoo.com,http://discoverylanelearninganddaycarecenter.com,5,9,3,30QBLF,40.769605,-73.923135,1,22,71,,,Old Astoria +QBLI,NYCEEC,Q,I Bear Daycare Center,,718-939-3870,33 - 15 154th St,11354,1,18,1036812,219159,solee785@yahoo.com,,5,9,3,25QBLJ,40.768174,-73.810514,7,19,1151,4118405,4052390035,Murray Hill +QBLK,NYCEEC,Q,Kids Advocate DCC Inc.,,914-426-7423,61 - 54 162 St,11365,1,18,1037758,207852,basilio_lopez77@yahoo.com,,5,9,3,25QBLK,40.737992,-73.806609,8,24,122701,,,Pomonok-Flushing Heights-Hillcrest +QBLM,NYCEEC,Q,Keren Ohr Daycare,,917-667-0795,170 - 16 73rd Ave,11366,1,54,1039981,204761,kerenohrschool@gmail.com,,5,9,3,26QBLM,40.728625,-73.79942,8,24,1241,4150453,4069580009,Pomonok-Flushing Heights-Hillcrest +QBLR,NYCEEC,Q,Play And Learn DCC,,646-872-9241,66 - 06 70th St,11379,1,20,1016058,199581,sbeata@aol.com,http://playlearncenter.com,5,9,3,24QBLR,40.714572,-73.885073,5,30,659,,,Middle Village +QBLV,NYCEEC,Q,Rainbow - Little Neck,,718-321-1610,250 - 21 Northern Blvd,11362,1,36,1057036,219559,info@rainbowchildlearning.com,http://rainbowchildlearning.com,5,9,3,26QBLV,40.768462,-73.737454,11,19,150702,4170863,4082260016,Douglas Manor-Douglaston-Little Neck +QBLY,NYCEEC,Q,Ivy Day School,,718-880-1888,70 - 44 Kissena Blvd,11367,1,36,1035444,205550,cherylcai@yahoo.com,,5,9,3,25QBLY,40.731923,-73.814936,8,24,77906,,,Kew Gardens Hills +QBMF,NYCEEC,Q,The Little Learning Center,,347-732-4307,147 - 32 Sanford Ave,11355,1,16,1035224,216150,tllc2009@gmail.com,,5,9,3,25QBMF,40.759882,-73.816931,7,20,1163,,,Murray Hill +QBMJ,NYCEEC,Q,Allen Christian School,,718-657-2500,114 - 32 Merrick Blvd,11434,1,36,1045591,191007,lmorant@allenchristianschool.org,,5,9,3,28QBMJ,40.691372,-73.778975,12,27,432,4268543,4123930001,St. Albans +QBMK,NYCEEC,Q,Ivy Day School,,718-880-1888,104 - 70 Queens Blvd,11375,1,34,1026265,202723,info@ivydayschool.com,http://ivydayschool.com,5,9,3,28QBMK,40.723794,-73.848976,6,29,71303,,,Forest Hills +QBML,NYCEEC,Q,Al - Ihsan Academy,,718-322-3154,134 - 02 Rockaway Blvd,11420,1,20,1038512,185045,rafeek_ies@yahoo.com,http://ihsanacademy.org,5,9,3,27QBML,40.67462,-73.804475,10,28,814,,,South Ozone Park +QBMP,NYCEEC,Q,Sunnyside Friends,,718-786-4644,41 - 32 44 St,11104,1,38,1006353,211014,littlefriendssunnyside@gmail.com,,5,9,3,30QBMP,40.746531,-73.91991,2,26,183,,,Hunters Point-Sunnyside-West Maspeth +QBMQ,NYCEEC,Q,Eunyoung Chang Corp.,,212-960-3613,40 - 27 172 St,11358,1,12,1041320,216210,eychang2002@yahoo.com,,5,9,3,25QBMQ,40.760571,-73.794256,7,19,1175,4438203,4053510013,Murray Hill +QBMZ,NYCEEC,Q,The Learning Experience,,917-634-6755,215 - 15 Northern Blvd,11361,1,54,1048779,216598,tieshell@hotmail.com,,5,9,3,26QBMZ,40.760522,-73.767385,11,19,1471,4138468,4063080029,Bayside-Bayside Hills +QBNF,NYCEEC,Q,Al - Ihsan Academy 3,,718-322-3154,130 - 20 Rockaway Blvd,11420,1,28,1037579,185149,rafeek_ies@yahoo.com,,5,9,3,27QBNF,40.674972,-73.808356,10,28,818,4254933,4117540055,South Ozone Park +QBNI,NYCEEC,Q,D'little Star Day Care,,352-812-6661,111 - 08 Sutphin Blvd,11435,1,29,1040917,190154,Asad4222@gmail.com,,5,9,3,28QBNI,40.68857,-73.795563,12,28,190,,,Baisley Park +QBNJ,NYCEEC,Q,Fairytale Daycare Pre School Center,,718-275-0204,99 - 13 63rd,11374,1,33,1024024,206281,Fairytaledaycareny@gmail.com,,5,9,3,28QBNJ,40.732567,-73.8567,6,29,719,4050630,4021100005,Forest Hills +QBNM,NYCEEC,Q,Talented Little Children III,,718-658-4384,104 - 18 134th St,11419,3,12,1036203,190994,sawebb48@aol.com,,5,9,3,28QBNM,40.691107,-73.81259,10,28,15801,,,South Ozone Park +QBNN,NYCEEC,Q,New Milestone,,718-380-1978,27 - 18 Hoyt Ave South,11102,1,40,1006450,220310,new.milestone@yahoo.com,,5,9,3,30QBNN,40.771931,-73.919901,1,22,69,4540506,4008397503,Old Astoria +RAAA,NYCEEC,R,Academy Of St. Dorothy,,718-351-0939,1305 Hylan Blvd,10305,3,18,960125,156718,Srlisa@academyofstdorothy.org,http://academyofstdorothy.org,8,7,1,31RAAA,40.597129,-74.085237,2,50,9601,5107505,5032150001,Old Town-Dongan Hills-South Beach +RAAH,NYCEEC,R,Community Resources Preschool,,718-568-3105,3651 Richmond Rd,10306,1,26,944496,147906,j.smith@cr-si.org,http://cr-si.org,7,7,1,31RAAH,40.572218,-74.14283,2,50,279,5037335,5022900025,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill +RABA,NYCEEC,R,Our Lady Help Of Christians,,718-984-1360,23 Smt St,10307,1,40,916683,124975,si305@adnyeducation.org,,5,9,3,31RABA,40.509248,-74.243126,3,51,24401,5109820,5078960048,Charleston-Richmond Valley-Tottenville +RABC,NYCEEC,R,Our Lady Of Mount Carmel St. Benedicta,,718-981-5131,285 Clove Rd,10310,1,20,949450,169902,si306@adnyeducation.org,http://olmcsb.org,2,3,1,31RABC,40.633233,-74.125783,1,49,13302,5089719,5002130001,West New Brighton-New Brighton-St. George +RABD,NYCEEC,R,Our Lady Queen Of Peace School,,718-351-0370,22 Steele Ave,10306,1,20,951537,149149,Si307@adnyeducation.org,http://olqpsi.com,8,3,2,31RABD,40.576347,-74.117943,2,50,122,5107549,5036260013,New Dorp-Midland Beach +RABJ,NYCEEC,R,Sacred Heart School,,718-442-0347,301 North Burgher Ave,10310,1,54,952594,170134,info@sacredheartschoolsi.org,http://sacredheartschoolsi.org,7,3,1,31RABJ,40.633571,-74.114272,1,49,105,5106588,5001630009,New Brighton-Silver Lake +RABL,NYCEEC,R,St. Ann School,,718-351-4343,125 Cromwell Ave,10304,1,40,957287,154579,BERNADETTE.FICCHI@ARCHNY.ORG,,5,9,3,31RABL,40.590672,-74.097006,2,50,9602,5048894,5033180001,Old Town-Dongan Hills-South Beach +RABM,NYCEEC,R,St. Charles School,,718-987-0200,200 Penn Ave,10306,1,40,951491,144636,StCharlesSchoolSI@gmail.com,http://saintcharlesschoolsi.org,7,3,2,31RABM,40.563839,-74.117835,3,50,13201,5107626,5042790001,Oakwood-Oakwood Beach +RABN,NYCEEC,R,St. Christopher School,,718-351-0902,15 Lisbon Pl,10306,1,60,954083,151298,Catherine.Falabella@archny.org,http://stchristophersi.com,5,3,1,31RABN,40.581774,-74.108405,2,50,11402,5051508,5035760023,New Dorp-Midland Beach +RABP,NYCEEC,R,St. John's Ev Preschool,,718-761-1858,663 Mnr Rd,10314,1,36,950541,161851,Tsokolprek@gmail.com,http://stjohnslutheransi.org,7,7,1,31RABP,40.611081,-74.121757,1,49,16901,5106922,5007070243,Westerleigh +RABZ,NYCEEC,R,St. Patrick's,,718-979-8815,3560 Richmond Rd,10306,1,40,945580,147858,si325@adnyeducation.org,http://school.stpatrickssi.org/public/default.aspx,5,9,3,31RABZ,40.5727,-74.138731,3,50,138,5060448,5044240001,Oakwood-Oakwood Beach +RACC,NYCEEC,R,St. Peter - St. Paul School,,718-447-1796,129 Clinton Ave,10301,1,60,957124,172947,Margaret.Annunziata@archny.org,http://stpeterstpaulschoolsi.org,2,3,1,31RACC,40.641266,-74.098002,1,49,81,5001813,5000730020,West New Brighton-New Brighton-St. George +RACE,NYCEEC,R,St. Rita School,,718-761-2504,30 Wellbrook Ave,10314,1,36,947871,159613,kathryn.franta@archny.org,,5,9,3,31RACE,40.604824,-74.130782,2,49,18702,5106948,5007700009,New Springville-Bloomfield-Travis +XAML,NYCEEC,X,Just 4 Kids Tremont,,917-217-1781,3881 East Tremont,10465,1,12,1034238,239286,Djust4kids@aol.com,,3,3,1,08XAML,40.823246,-73.819661,10,13,158,2077132,2054390007,Schuylerville-Throgs Neck-Edgewater Park +RACH,NYCEEC,R,St. Teresa Of The Infant Jesus,,718-448-9650,1632 Victory Blvd,10314,1,40,951680,162699,catherine.dempsey@archny.org,http://saintteresaschool.com,5,9,3,31RACH,40.613443,-74.117825,1,49,16901,5106921,5006950039,Westerleigh +RACL,NYCEEC,R,The Gingerbread Learning Center,,718-356-0008,80 Woodrow Rd,10312,1,28,934083,144461,dennisdino73@aol.com,http://gingerbreadlctr.com,5,9,3,31RACL,40.56312,-74.180929,3,51,17008,5076998,5056880001,Arden Heights +RACN,NYCEEC,R,"United Cerebral Palsy Of New York City, Inc.",,718-442-6006,281 Prt Richmond Ave,10302,1,16,946604,170403,lvoluz@ucpnyc.org,http://ucpnyc.org,2,3,2,31RACN,40.634511,-74.135733,1,49,213,5024273,5010370006,Port Richmond +RACS,NYCEEC,R,Children's Aid Society Richmond ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-426-0300,159 Broadway,10310,1,96,951709,171544,gvignola@childrensaidsociety.org,http://childrensaidsociety.org,3,3,1,31RACS,40.637531,-74.117594,1,49,105,5004830,5001740006,New Brighton-Silver Lake +RACT,NYCEEC,R,Staten Island Mental Health Society III,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-816-5168,10 Kingsley Pl,10301,1,68,959544,170967,CGThevenot@aol.com,http://simhs.org,3,3,1,31RACT,40.63596,-74.088868,1,49,75,5106538,5001070017,New Brighton-Silver Lake +RACX,NYCEEC,R,Jewish Community Center Of Staten Island,,718-475-5286,485 Victory Blvd,10301,1,54,959591,169066,dgallis@sijcc.com,http://sijcc.org,7,3,1,31RACX,40.630399,-74.088763,1,49,75,5002888,5001200118,New Brighton-Silver Lake +RADB,NYCEEC,R,Little Lamb Preschool,,718-448-7774,2 Gridley Ave,10303,3,16,939950,169336,llpresch@gmail.com,,1,3,2,31RADB,40.631338,-74.159266,1,49,231,5126956,5012300016,Mariner's Harbor-Arlington-Port Ivory-Graniteville +RADK,NYCEEC,R,Bumblebees - R - Us,,718-494-4448,2734 Victory Blvd,10314,5,36,941848,161075,info@bumblebeesrus.com,http://bumblebeesrus.com,3,7,1,31RADK,40.608983,-74.152684,2,50,27301,5035098,5020850009,New Springville-Bloomfield-Travis +RADL,NYCEEC,R,Busy Beach Day Care Inc.,,718-667-2861,777 Seaview Ave Building 11,10305,1,10,961326,151792,theresa.folino@omh.ny.gov,http://busybeachdaycare.org,5,3,1,31RADL,40.579501,-74.078252,2,50,70,5111301,5033550001,Old Town-Dongan Hills-South Beach +RADM,NYCEEC,R,CAS SI Family Services Center,,718-273-5305,465 Villa Ave,10302,1,30,944628,168585,jagius@childrensaidsociety.org,http://childrensaidsociety.org,2,3,2,31RADM,40.629048,-74.14319,1,49,247,5107099,5011320046,Port Richmond +RADN,NYCEEC,R,Foch,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-567-3545,195 Gordon St,10304,1,54,961424,166260,jhamilton2525@yahoo.com,http://fochdaycare.org,3,7,2,31RADN,40.622959,-74.082863,1,49,29,5108860,5005450100,Stapleton-Rosebank +RADP,NYCEEC,R,Castleton Hill Moravian Preschool,,718-442-5350,1657 Victory Blvd,10314,3,36,951161,162865,mtobia@castletonhillpreschool.com,http://castletonhillpreschool.com,8,3,1,31RADP,40.613365,-74.118974,1,50,147,5089758,5003470006,Westerleigh +RADW,NYCEEC,R,Staten Island Pre - School,,718-667-9235,145 Ross Ave,10306,1,18,951485,147754,Casips@aol.com,,5,3,1,31RADW,40.571991,-74.11786,2,50,134,5057429,5042120025,New Dorp-Midland Beach +RAEG,NYCEEC,R,Islander's Kids,,718-979-5331,219 Jefferson Ave,10306,3,36,956771,151285,elfridman@yahoo.com,,5,9,3,31RAEG,40.581802,-74.099254,2,50,11401,5051105,5035590010,Old Town-Dongan Hills-South Beach +RAEH,NYCEEC,R,Smiles Around Us,,718-475-5234,3854 Hylan Blvd,10308,1,18,944593,137912,abruckmeir@sijcc.com,,5,9,3,31RAEH,40.545258,-74.142924,3,51,15603,5107672,5052030012,Great Kills +RAEM,NYCEEC,R,Sisters Of St. John The Baptist Inc.,,718-447-4150,57 Cleveland Pl,10305,1,40,965357,158486,upksjva@sjva.org,http://sjva.org,5,9,3,31RAEM,40.602182,-74.068818,2,50,2002,5108458,5030870001,Grasmere-Arrochar-Ft. Wadsworth +RAEN,NYCEEC,R,Rose Group Family Day Care I,,718-913-0327,104 Birch Rd,10303,1,12,938237,166739,sbuttrosedaycare@gmail.com,,5,9,3,31RAEN,40.624366,-74.165565,1,49,30302,5033406,5016700539,Mariner's Harbor-Arlington-Port Ivory-Graniteville +RAEW,NYCEEC,R,"4 Angels Day Care, Inc.",,718-876-6498,245 Simonson Ave,10303,1,13,942018,169003,my4angelsdaycareinc@msn.com,http://4angelsdaycareinc.com,2,7,1,31RAEW,40.63065,-74.152376,1,49,239,5026928,5011760042,Mariner's Harbor-Arlington-Port Ivory-Graniteville +RAEX,NYCEEC,R,Holy Rosary School,,718-447-6209,100 Jerome Ave,10305,1,90,963114,156273,efracchiolla@holyrosaryschoolsi.org,http://holyrosaryschoolsi.org,2,3,1,31RAEX,40.596087,-74.076032,2,50,64,5047668,5032470020,Grasmere-Arrochar-Ft. Wadsworth +RAEY,NYCEEC,R,St. Adalbert's School,,718-442-2020,355 Morningstar Rd,10303,1,40,943439,168670,Jbadillo.upk@aol.com,http://stadalbertschool.com,2,3,1,31RAEY,40.629704,-74.147406,1,49,247,5107102,5011360063,Port Richmond +RAFF,NYCEEC,R,Big Birds Playhouse Corp.,,718-982-0550,1859 Richmond Ave,10314,1,72,939029,158816,dinamarie812@aol.com,http://bigbirdsplayhouse.com,7,7,1,31RAFF,40.602669,-74.163087,2,50,27301,5034924,5020300047,New Springville-Bloomfield-Travis +RAFG,NYCEEC,R,Friends Preschool,,718-984-5194,610 Bloomingdale Rd,10309,1,14,923662,136212,friendspreschool@verizon.net,,5,9,3,31RAFG,40.540436,-74.217716,3,51,226,5086672,5070910001,Charleston-Richmond Valley-Tottenville +RAFH,NYCEEC,R,"Castle Day Care II, Inc.",,718-448-5439,211 Canal St,10304,1,18,962076,167037,castledaycare2@verizon.net,,5,9,3,31RAFH,40.624987,-74.079527,1,49,21,5141769,5005270059,Stapleton-Rosebank +RAFI,NYCEEC,R,"Castle Day Care, Inc.",,718-447-3140,1141 Castleton Ave,10310,1,26,950820,170438,castledaycare@si.rr.com,http://castledaycaresiny.com,2,8,1,31RAFI,40.634303,-74.120301,1,49,13302,5132394,5001970125,West New Brighton-New Brighton-St. George +RAFJ,NYCEEC,R,Child Study Center Of New York,,718-442-8588,285 Clove Rd,10310,2,65,949445,169948,Oledgister@cscofny.org,http://cscofny.org,2,3,2,31RAFJ,40.633233,-74.125783,1,49,13302,5089719,5002130001,West New Brighton-New Brighton-St. George +RAFK,NYCEEC,R,Children's Harbor Montessori School,,718-442-6112,1000 Richmond Ter,10301,3,27,955191,174203,childharborms@aol.com,,5,9,3,31RAFK,40.645232,-74.104674,1,49,97,5000000,5000760200,West New Brighton-New Brighton-St. George +RAFL,NYCEEC,R,The Foresight School,,718-761-6060,2221 Richmond Ave,10314,1,88,939144,155283,werforesight@aol.com,,5,3,1,31RAFL,40.592648,-74.163124,2,51,27706,5038357,5023800110,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill +RAFN,NYCEEC,R,"High Hopes Of Staten Island, Inc.",,718-317-8143,1298 Woodrow Rad,10309,1,20,926370,136598,admin@highhopeschildcare.com,http://highhopeschildcare.com,5,7,1,31RAFN,40.541639,-74.208405,3,51,20803,5085132,5069340101,Rossville-Woodrow +RAFO,NYCEEC,R,Jewish Community Center Of Staten Island,,718-475-5225,1466 Mnr Rd,10314,1,44,949163,155993,bhoward@sijcc.com,http://sijcc.org,7,3,1,31RAFO,40.594454,-74.125677,2,50,181,5141743,5009550100,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill +RAFP,NYCEEC,R,Jewish Community Center Of Staten Island,,718-475-5224,1297 Arthur Kill Rd,10312,1,62,933255,145404,jhoward@sijcc.com,http://sijcc.org,7,3,1,31RAFP,40.565262,-74.183882,3,51,228,5077603,5059000105,New Springville-Bloomfield-Travis +RAFR,NYCEEC,R,Mini World Preschool,,718-948-9535,7516 Amboy Rd,10307,1,18,915791,124835,miniworld2001@aol.com,http://miniworldpreschool.com,5,3,1,31RAFR,40.509177,-74.246427,3,51,24401,5107855,5079140005,Charleston-Richmond Valley-Tottenville +RAFS,NYCEEC,R,Mission Of The Immaculate Virgin,,718-317-2849,6581 Hylan Blvd,10309,1,33,922449,124996,bmazzola@mountloretto.org,http://mountloretto.org,8,3,1,31RAFS,40.508809,-74.222403,3,51,198,5123970,5076640001,Annadale-Huguenot-Prince's Bay-Eltingville +RAFU,NYCEEC,R,Stepping Stones Preschool,,718-948-4878,5394 Amboy Rd,10312,1,80,931566,133453,rnbow04456@aol.com,http://steppingstonepreschool.org,8,7,1,31RAFU,40.53302,-74.189682,3,51,176,5082458,5065700033,Annadale-Huguenot-Prince's Bay-Eltingville +RAFV,NYCEEC,R,Small World Pre - School,,718-356-7795,144 Bloomingdale Rd,10309,1,54,924006,131587,KdsRMyBiz@aol.com,http://smallworldpreschoolsi.com,7,7,1,31RAFV,40.527574,-74.216318,3,51,226,5086890,5074200002,Charleston-Richmond Valley-Tottenville +RAFW,NYCEEC,R,South Shore Toddler Academy,,718-356-3563,11 Sampson Ave,10308,1,18,942688,140612,sicsprek@aol.com,,5,9,3,31RAFW,40.552603,-74.149795,3,51,14605,5062569,5046240500,Great Kills +RAFX,NYCEEC,R,The Tanglewood Montessori,,718-967-2424,15 Tanglewood Dr,10308,1,53,942106,145983,tanglewoodschool123@gmail.com,,5,7,1,31RAFX,40.567082,-74.15176,3,51,14606,5061034,5045000015,Great Kills +RAFY,NYCEEC,R,Children's Playhouse,,718-761-0129,85 Monahan Ave,10314,1,60,942732,153780,childrenplay@aol.com,,5,7,1,31RAFY,40.588552,-74.149612,2,50,27704,5038029,5023750128,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill +RAFZ,NYCEEC,R,College Of Staten Island - The Children's Center,,718-982-3190,2800 Victory Blvd,10314,1,20,941705,160839,childrenscenter@csi.cuny.edu,http://csi.cuny.edu,3,3,1,31RAFZ,40.608853,-74.153335,2,50,27301,5000000,5020400001,New Springville-Bloomfield-Travis +RAGA,NYCEEC,R,"Wonder Years Preschool, The",,718-987-7596,381 Seaver Ave,10305,1,49,958599,151075,vfwonderyears@aol.com,http://wonderyearspreschoolsi.com,7,7,1,31RAGA,40.581231,-74.092643,2,50,11201,5053137,5036600044,Old Town-Dongan Hills-South Beach +RAGC,NYCEEC,R,Yeled V'Yalda Silver Lake I Head Start,,718-815-4488,10 Gregg Pl,10301,1,36,956626,169491,cdeflorio@yeled.org,http://yeled.org,3,3,1,31RAGC,40.632097,-74.099455,1,49,67,5003236,5001310225,New Brighton-Silver Lake +RAGF,NYCEEC,R,SI YMCA Nursery - North,,718-981-4933,651 Broadway,10310,1,36,952576,167108,asicuranza@YMCAnyc.org,http://ymcanyc.org,5,3,1,31RAGF,40.624936,-74.114246,1,49,121,5008326,5003030047,New Brighton-Silver Lake +RAGG,NYCEEC,R,SI YMCA Nursery - South,,718-227-3200,3939 Richmond Ave,10312,1,72,938945,136981,bschiuma@YMCAnyc.org,http://ymcanyc.org,5,3,1,31RAGG,40.542105,-74.163076,3,51,15601,5128445,5052360031,Great Kills +RAGH,NYCEEC,R,Richmond Hill Children's Center,,718-494-7422,"501 Richmond Hl Rd,",10314,1,51,941737,151066,rhcc@verizon.net,http://rhccny.com,5,7,1,31RAGH,40.581114,-74.153441,2,50,27704,5038942,5023910030,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill +RAGJ,NYCEEC,R,Staten Island Mental Health Society Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-494-0400,166 Lockman Ave,10303,1,38,939248,169988,Lferrigno@sinhs.org,http://simhs.org,3,3,2,31RAGJ,40.633097,-74.161677,1,49,31901,5110121,5012450001,Mariner's Harbor-Arlington-Port Ivory-Graniteville +XAAF,NYCEEC,X,Howard Haber ELC,,718-409-1450,2300 Westchester Ave,10462,1,12,1026276,243570,Francine.Rykman@ahrcnyc.org,http://schools.ahrcnyc.org,6,3,2,11XAAF,40.835725,-73.847942,10,18,96,2087040,2038340081,Westchester-Unionport +RAGK,NYCEEC,R,Staten Island Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-420-6138,16 Osgood Ave,10304,1,72,960552,164739,amelendez@simhs.org,http://simhs.org,3,7,1,31RAGK,40.619032,-74.085304,1,49,29,5016273,5006360012,Stapleton-Rosebank +RAGM,NYCEEC,R,Staten Island Head Start,,718-987-7755,44 Dongan Hls Ave,10306,1,57,956236,153374,lchernoff@simhs.org,http://simhs.org,3,7,1,31RAGM,40.587922,-74.100516,2,50,11401,5109568,5035320500,Old Town-Dongan Hills-South Beach +RAGR,NYCEEC,R,Rabbi Jacob Joseph School,,718-982-8745,400 Caswell Ave,10314,3,40,942445,163281,leahleeder@gmail.com,,8,3,1,31RAGR,40.61512,-74.150259,1,50,251,5090180,5015110200,Port Richmond +RAHA,NYCEEC,R,Lemon Tree,,718-370-2292,341 Elvin St,10314,1,40,950549,158918,Lemontreedaycare@aol.com,,5,3,1,31RAHA,40.602737,-74.121562,2,50,18702,5020571,5007960001,New Springville-Bloomfield-Travis +RAHC,NYCEEC,R,Cbi Academy Preschool,,718-987-6200,45 Twombly Ave,10306,1,15,947411,142999,teach0715@aol.com,http://cbiacademy.com,5,9,3,31RADR,40.558951,-74.13234,3,51,13204,5064011,5049660001,Oakwood-Oakwood Beach +RAHD,NYCEEC,R,J & J Academy,,718-698-0280,55 Wyona Ave,10314,1,36,942848,161708,info@jjacademy.org,http://jjacademy.org,7,7,1,31RAHD,40.610253,-74.149074,1,50,251,5030401,5015220001,Port Richmond +RAHW,NYCEEC,R,Staten Island Children's Academy,,718-227-2500,50 Osage Ln,10312,1,60,939629,133423,,http://sichildrensacademy.com,3,3,1,31RAHW,40.53288,-74.160708,3,51,15602,5167549,5053730001,Annadale-Huguenot-Prince's Bay-Eltingville +RAHZ,NYCEEC,R,"Hylan Day Care, Inc.",,718-351-2705,2346 Hylan Blvd,10306,1,37,954712,148235,hylandaycare1@yahoo.com,http://hylandaycare.com,5,3,1,31RAHZ,40.573695,-74.106499,2,50,11202,5055360,5039050026,New Dorp-Midland Beach +RAIJ,NYCEEC,R,Hugs & Kiddies,,718-273-6141,140 Harvest Ave,10310,1,16,953757,167799,hugsandkiddies@gmail.com,http://hugsnkiddies.com,5,9,3,31RAIJ,40.627328,-74.109967,1,49,121,5007860,5002920073,New Brighton-Silver Lake +RAIM,NYCEEC,R,Prodigy Preschool / Staten Island Skating Pavilion,,718-948-4800,3080 Arthur Kill Rd,10309,1,18,919601,137585,caryl.stingo@gmail.com,http://pavilionprodigypreschool.com,5,9,3,31RAIM,40.54426,-74.233039,3,51,226,5154910,5071440528,Charleston-Richmond Valley-Tottenville +RAIT,NYCEEC,R,Ivy League Early Learning Academy,,718-982-0202,1779 Richmond Ave,10314,1,36,939290,159658,statenisland@ivyleagueearlylearning.com,http://ivyleagueearlylearning.com,5,9,3,31RAIT,40.605017,-74.162243,2,50,27301,5151246,5020700001,New Springville-Bloomfield-Travis +RAIX,NYCEEC,R,Blessed Sacrament Early Childhood Academy,,718-442-3090,840 Delafield Ave,10310,1,72,949099,168060,JOSEPH.COCOZELLO@ARCHNY.ORG,,5,9,3,31RAIX,40.628096,-74.126439,1,49,141,5106712,5002340001,West New Brighton-New Brighton-St. George +RAJA,NYCEEC,R,Alphabet Ac,,917-846-8289,65 Foster Rd,10309,1,36,928119,131962,vitashka@gmail.com,,5,9,3,31RAJA,40.528799,-74.202203,3,51,20804,5084036,5068600001,Rossville-Woodrow +XAAA,NYCEEC,X,Harry H Gordon School Annex ( NYL ),,718-838-5993,1180 East 214 St,10469,1,16,1025187,258436,karen.griffoul@yai.org,,5,9,3,11XAAA,40.876006,-73.851523,12,12,382,2059823,2047080009,Williamsbridge-Olinville +XAAC,NYCEEC,X,Puerto Rican Family Institute Bronx Head Start,,718-991-5590,1423 Prospect Ave,10459,1,54,1012816,242679,cfontanez@prfi.org,,5,9,3,12XAAC,40.832727,-73.896549,3,16,151,2116987,2029620029,Morrisania-Melrose +XAAH,NYCEEC,X,Amalgamated Nursery School,,718-543-8688,3980 Orloff Ave,10463,1,35,1014084,261453,amalgamatedns@yahoo.com,http://amalgamatednurseryschool.com,5,2,1,10XAAH,40.884167,-73.89244,8,11,281,2015481,2032520276,Van Cortlandt Village +XAAS,NYCEEC,X,Bronxdale Nursery,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-991-8315,1065 Bch Ave,10472,1,32,1021459,240553,mscrosleyp@gmail.com,,3,7,1,12XAAS,40.827038,-73.865255,9,18,44,2092801,2037250001,Soundview-Bruckner +XAAX,NYCEEC,X,Christ The King School,,718-538-5959,1345 Grand Concourse,10452,1,54,1007665,244411,ctk_braswell@hotmail.com,http://christthekingbronx.org,3,3,2,09XAAX,40.837408,-73.914889,4,16,22102,2008052,2028400065,West Concourse +XABI,NYCEEC,X,Shining Stars UPK,,718-823-2393,3573 Bruckner Blvd,10461,1,30,1031819,248959,alexandra.lacas@gai-edu.org,http://greekamericaninstitute.org,2,3,1,08XABI,40.848968,-73.828003,10,13,300,2095007,2041990001,Pelham Bay-Country Club-City Island +XABK,NYCEEC,X,Holy Cross School,,718-842-4492,1846 Randall Ave,10473,1,90,1022814,236982,UPKAdmit@holycrossbx.org,,3,3,1,08XABK,40.817305,-73.86069,9,18,16,2021482,2035240020,Soundview-Castle Hill-Clason Point-Harding Park +XABL,NYCEEC,X,Holy Family School,,718-863-7280,2169 Blackrock Ave,10472,1,72,1025519,241386,b203@adnyedcuation.org,http://hfsflushing.org,3,3,2,08XABL,40.828912,-73.851484,9,18,78,2026397,2038080038,Westchester-Unionport +XABM,NYCEEC,X,Holy Rosary School,,718-652-1838,1500 Arnow Ave,10469,1,120,1027856,255340,deev16@verizon.net,http://holyrosaryschoolbronx.org,3,4,1,11XABM,40.867571,-73.842626,11,13,360,2054563,2045340045,Allerton-Pelham Gardens +XABT,NYCEEC,X,Immaculate Conception School,,718-547-3346,760 East Gun Hl Rd,10467,1,36,1021927,258568,b207@adnyeducation.org,http://schoolofimmaculateconception.org,5,9,3,11XABT,40.876633,-73.864113,12,12,372,2057021,2046310075,Williamsbridge-Olinville +XACE,NYCEEC,X,Nativity Of Our Blessed Lady,,718-324-2188,3893 Dyre Ave,10466,1,58,1030814,263142,b208@adnyeducation.org,http://nativityofourblessedlady.org,3,7,1,11XACE,40.888925,-73.831306,12,12,484,2087375,2049470017,Eastchester-Edenwald-Baychester +XACF,NYCEEC,X,New Covenant Christian School,,718-519-8884,1497 Needham Ave,10469,1,72,1026190,259986,dappia@ncchristianschool.org,,5,9,3,11XACF,40.880088,-73.848205,12,12,386,2060149,2047170074,Eastchester-Edenwald-Baychester +XACJ,NYCEEC,X,Our Lady If The Assumption School,,718-829-1706,1617 Parkview Ave,10461,1,54,1032045,247331,b210@adnyeducation.org,http://olassumptionbronx.org,5,9,3,08XACJ,40.845475,-73.827018,10,13,26602,2087149,2041730018,Pelham Bay-Country Club-City Island +XACK,NYCEEC,X,Our Lady Of Grace School,,718-547-9918,3981 Bronxwood Ave,10466,1,72,1024361,262183,principal@olgschoolbronx.com,http://olgschoolbronx.com,3,3,1,11XACK,40.886209,-73.8546,12,12,406,2111579,2048500076,Williamsbridge-Olinville +XACM,NYCEEC,X,Our Lady Of Mount Carmel,,718-295-6080,2465 Bathgate Ave,10458,1,92,1014990,252015,olmcsecy@gmail.com,http://mtcarmelschoolbronx.org,2,4,2,10XACM,40.858243,-73.888671,6,15,387,2011776,2030580020,Belmont +XACR,NYCEEC,X,Regent School,,718-653-2900,719 East 216 St,10467,1,18,1022122,260407,dteshuva@amcearlylearn.com,,5,9,3,11XACR,40.881188,-73.863127,12,12,390,2057946,2046640039,Williamsbridge-Olinville +XACX,NYCEEC,X,St. Angela Merici School,,718-293-3365,266 East 163rd St,10451,1,90,1006885,240691,b221@adnyeducation.org,,5,9,3,09XACX,40.827312,-73.917753,4,16,18302,2096463,2024450028,East Concourse-Concourse Village +XACY,NYCEEC,X,St. Ann - Our Lady Of Mount Carmel Annex,,718-655-3449,3511 Bainbridge Ave,10467,1,36,1017830,260531,lflores@saintannschoolbx.org,,2,1,1,10XACY,40.881387,-73.878395,7,11,431,2017800,2033280060,Norwood +XADH,NYCEEC,X,St. Brendan School,,718-653-2292,268 East 207th St,10467,1,36,1018077,258240,stbrendanschoolbronx@gmail.com,http://stbrendanschoolbronx.org,4,3,2,10XADH,40.875575,-73.87761,7,11,423,2018138,2033420029,Norwood +XADJ,NYCEEC,X,St. Clare Of Assisi School,,718-892-4080,1911 Hone Ave,10461,1,160,1023890,249407,theresa.bivona@archny.org,http://stclareofassisischool.org,2,3,1,11XADJ,40.851206,-73.856534,11,13,250,2087156,2042690037,Pelham Parkway +XADL,NYCEEC,X,St. Francis De Chantal School,,718-892-5359,2962 Harding Ave,10465,1,54,1036143,236729,earlychildhood.education@archny.org,http://sfdchantalschool.org,5,9,3,08XADL,40.816445,-73.813451,10,13,118,2097494,2054520001,Schuylerville-Throgs Neck-Edgewater Park +XADN,NYCEEC,X,St. Francis Of Assisi School,,718-994-4650,4300 Baychester Ave,10466,1,54,1027113,266168,assistantprincipal@sfabx.com,http://sfabx.com,3,3,1,11XADN,40.897077,-73.84524,12,12,444,2070412,2050570001,Woodlawn-Wakefield +XADO,NYCEEC,X,St. Francis Xavier School,,718-863-0531,1711 Haight Ave,10461,1,116,1025058,248405,sfxupk@gmail.com,http://sfxschool.net,3,4,1,11XADO,40.848524,-73.852261,11,13,254,2045014,2041080029,Van Nest-Morris Park-Westchester Square +XADQ,NYCEEC,X,St. Helena School,,718-892-3234,2050 Benedict Ave,10462,1,80,1024186,243295,b239@adnyeducation.org,http://sthelenaelementary.com,5,9,3,11XADQ,40.834474,-73.856346,9,18,222,2028943,2039320075,Parkchester +XADT,NYCEEC,X,St. John Chrysostom School,,718-328-7226,1144 Hoe Ave,10459,1,92,1014501,240707,b243@adnyeducation.org,http://sjchrysostom.org,3,3,1,12XADT,40.827328,-73.890888,3,17,12101,2086634,2027520009,Morrisania-Melrose +XADV,NYCEEC,X,St. John School,,718-548-0255,3143 Kingsbridge Ave,10463,5,72,1010258,260215,b242@adnyeduction.org,http://stjohnschoolbronx.org,2,3,1,10XADV,40.880542,-73.905873,8,11,289,2083180,2057080088,Spuyten Duyvil-Kingsbridge +XADW,NYCEEC,X,St. Joseph School,,718-583-9432,1946 Bathgate Ave,10457,1,120,1012864,248084,b245@adnyeducation.org,,5,9,3,09XADW,40.847722,-73.896673,6,15,395,2011434,2030430050,Claremont-Bathgate +XADY,NYCEEC,X,St. Lucy School,,718-882-2203,830 Mace Ave,10467,1,148,1022436,253681,minneci@stlucys.org,http://stlucys.org,3,3,1,11XADY,40.863117,-73.862445,11,13,328,2095039,2044380027,Bronxdale +XADZ,NYCEEC,X,St. Luke School,,718-585-0380,608 East 139th St,10454,1,36,1007753,233114,b247@adnyeducation.org,http://stluke138.org,5,9,3,07XADZ,40.806923,-73.915658,1,8,2702,2003628,2025510026,Mott Haven-Port Morris +XAEB,NYCEEC,X,St. Margaret Of Cortona,,718-549-8580,452 West 260th St,10471,1,92,1011055,270141,principal@stmargaretschoolriverdale.com,http://stmargaretschoolriverdale.com,7,3,1,10XAEB,40.908305,-73.902903,8,11,337,2085311,2058710547,North Riverdale-Fieldston-Riverdale +XAZD,NYCEEC,X,A House On Beekman Preschool,,972-841-8120,390 Jackson Ave,10454,1,14,1009045,233984,sloan@ahouseonbeekman.org,,5,9,3,07XAZD,40.809153,-73.910547,1,8,35,2003865,2025730071,Mott Haven-Port Morris +XAEF,NYCEEC,X,St. Mary School,,718-547-0500,3956 Carpenter Ave,10466,1,72,1022009,262865,slater15fisher@aol.com,http://stmaryschoolbx.org,3,3,1,11XAEF,40.888309,-73.863554,12,12,394,2062993,2048260043,Williamsbridge-Olinville +XAEH,NYCEEC,X,St. Philip Neri School,,718-365-8806,3031 Grand Concourse,10468,1,36,1015416,257686,b256@adnyeducation.org,http://stphilipneribronx.org,5,9,3,10XAEH,40.873666,-73.886968,7,11,411,2017313,2033100057,Bedford Park-Fordham North +XAEL,NYCEEC,X,St. Raymond Elementary,,718-597-3232,2380 East Tremont Ave,10462,1,72,1024568,246118,patricia.brito@archny.org,,5,9,3,11XAEL,40.842332,-73.854483,9,18,21001,2097353,2039580080,Parkchester +XAEN,NYCEEC,X,St. Simon Stock Elementary School,,718-367-0453,2195 Valentine Ave,10457,1,36,1012174,250892,Angela.Ceparano@archny.org,http://stsimonstockschool.org,5,9,3,10XAEN,40.854893,-73.898983,5,15,381,2013546,2031490140,Mount Hope +XAEO,NYCEEC,X,St. Theresa,,718-792-3688,2872 Sttheresa Ave,10461,1,92,1030340,248745,b262@adnyeducation.org,http://sttheresaschoolbronx.org,7,3,1,08XAEO,40.849483,-73.833239,10,13,26601,2046491,2041920023,Pelham Bay-Country Club-City Island +XAEP,NYCEEC,X,St. Thomas Aquinas School,,718-893-7600,1909 Daly Ave,10460,1,90,1016092,245540,b263@adnyeducation.org,,5,9,3,12XAEP,40.840695,-73.884584,6,17,359,2010618,2029850017,East Tremont +XAEW,NYCEEC,X,"Learning Tree, The",,718-944-0960,801 Bartholdi St,10467,1,72,1022274,257708,msjoyce@tltprep.org,http://learningtreeprep.org,3,2,1,11XAEW,40.873827,-73.862622,12,12,372,2057044,2046330011,Williamsbridge-Olinville +XAFA,NYCEEC,X,UCP / Nyc's Bronx Children's Program,,718-652-9790,1770 Stillwell Ave,10469,1,16,1029987,251601,bellman@ucpnyc.org,http://ucpnyc.org,2,3,2,11XAFA,40.858063,-73.834696,11,13,284,2102042,2044110300,Van Nest-Morris Park-Westchester Square +XAFB,NYCEEC,X,"Villa Maria Academy, Inc.",,718-824-3260,3335 Country Clb Rd,10465,1,54,1035029,245985,teresa.barton@archny.org,http://vma-ny.org,7,7,2,08XAFB,40.841156,-73.817166,10,13,27402,2087429,2054090475,Pelham Bay-Country Club-City Island +XAFG,NYCEEC,X,Little Stars III,,347-947-3171,1420 Burke Ave,10469,1,58,1026812,257106,lstarsthree@aol.com,http://littlestarspreschools.com,3,7,1,11XAFG,40.87233,-73.846506,12,12,358,2061698,2047600001,Eastchester-Edenwald-Baychester +XAFK,NYCEEC,X,Phipps Neighborhoods Daly Avenue ECEC,,718-364-2496,921 East 180 St,10460,1,72,1017104,247006,KMORRIS@PHIPPSNY.ORG,http://phippsny.org,3,8,2,12XAFK,40.844498,-73.881473,6,17,363,2114117,2031280001,East Tremont +XAFL,NYCEEC,X,"Garvey School, The",,781-320-3902,950 Baychester Ave,10475,1,38,1030446,259204,thegarveyschool@gmail.com,http://garveyschool.org,3,4,1,11XAFL,40.878316,-73.833123,10,12,46201,2097914,2051410120,Co-op City +XAFP,NYCEEC,X,East Side House,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-665-5250,201 Saint Anns Ave,10454,1,15,1006786,232909,dcolon@eastsidehouse.org,http://eastsidehouse.org,3,4,2,07XAFP,40.805742,-73.918238,1,8,25,2090986,2022630019,Mott Haven-Port Morris +XAFZ,NYCEEC,X,New Covenant Christian School,,718-299-5250,1925 Grand Concourse,10453,1,36,1010287,249017,mcordero@ncchristianschool.org,,5,9,3,9XAFZ,40.850065,-73.905522,5,14,23501,2086655,2028080021,Mount Hope +XAGC,NYCEEC,X,Highbridge Advisory Council ECC #1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-299-3917,1594 Townsend Ave,10452,1,49,1008211,246880,DWashington@hacsf.com,http://hacfs.org,3,7,1,09XAGC,40.844274,-73.913633,4,14,22702,2103870,2028470041,Mount Hope +XAGF,NYCEEC,X,Manida ( Center #1 ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-542-7590,711 Manida St,10474,1,79,1015054,236102,junerose7@msn.com,,3,7,2,08XAGF,40.814758,-73.888477,2,17,93,2006496,2027630029,Hunts Point +XAGX,NYCEEC,X,LSSMNY : Early Life Children's Center 6,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-943-0580,2125 Watson Ave,10472,1,53,1024951,241571,vmoreira@lssny.org,http://lssny.org,7,3,2,08XAGX,40.829501,-73.852614,9,18,78,2026420,2038090018,Westchester-Unionport +XAHA,NYCEEC,X,Ready Set Learn,,718-484-8777,3480 Third Ave,10456,1,36,1010267,241697,kelleycandice14@gmail.com,http://rslcc.com,3,7,1,09XAHA,40.830169,-73.906233,3,16,145,2118328,2026097501,Claremont-Bathgate +XAHB,NYCEEC,X,Grow With Us ( Susan E Wagner ),,718-299-6892,1732 Davidson Ave,10453,1,54,1008297,248215,smorenogwu@gmail.com,,3,7,2,09XAHB,40.847798,-73.913419,5,14,217,2008362,2028610063,University Heights-Morris Heights +XAHD,NYCEEC,X,Mid Bronx CCRP ECC 4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-962-9384,1020 Smt Ave,10452,1,31,1003706,243050,ogdendc@midbronx.org,http://midbronx.org,3,6,1,09XAHD,40.833776,-73.929869,4,8,189,2003457,2025250007,Highbridge +XAHF,NYCEEC,X,Dr. Katharine Dodge Brownell School,,914-375-8652,450 Castle Hl Ave,10473,3,25,1026551,236861,nbrown@leakeandwatts.org,,5,9,3,08XAHF,40.815883,-73.847293,9,18,84,2021209,2035110030,Soundview-Castle Hill-Clason Point-Harding Park +XAHH,NYCEEC,X,Trabajamos Community Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-259-7081,1997 Bathgate Ave,10457,1,43,1013008,248709,lbtrabajamos_hs@yahoo.com,http://trabajamoschs.com,3,4,1,10XAHH,40.848824,-73.896075,6,15,395,2011440,2030440024,Claremont-Bathgate +XAHL,NYCEEC,X,East Bronx DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-617-2900,1113 Colgate Ave,10472,1,40,1017010,240188,eastbronxdaycare@verizon.net,,3,7,1,08XAHL,40.82629,-73.881509,9,17,52,2023714,2037360001,Soundview-Bruckner +XAHM,NYCEEC,X,Northeast Bronx DCC ( Susan Wagner ),,718-601-5401,5401 Post Rd,10471,1,38,1012413,267701,susanwagnerdayschool1@yahoo.com,,3,7,2,10XAHM,40.901354,-73.897845,8,11,345,2084657,2058422002,North Riverdale-Fieldston-Riverdale +XAHO,NYCEEC,X,1332 Fulton Ave DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-378-1330,1332 Fulton Ave,10456,1,36,1011201,242786,map1332fultondcc@outlook.com,,5,9,3,09XAHO,40.833147,-73.902814,3,16,149,2009685,2029310015,Morrisania-Melrose +XAHR,NYCEEC,X,Concord Head Start / Early Learn Center,,718-292-8564,560 Concord Ave,10455,3,17,1009806,235709,dlicona@cmcs.org,http://cmcs.org,3,4,1,07XAHR,40.813452,-73.907994,1,8,73,2096871,2026410042,Melrose South-Mott Haven North +XAHS,NYCEEC,X,"Little Stars Too, Inc.",,718-515-8800,1083 Allerton Ave,10469,1,40,1023980,254689,lstarstoo@aol.com,http://littlestarsschool.com,5,9,3,11XAHS,40.865461,-73.856406,11,13,344,2054002,2045200059,Allerton-Pelham Gardens +XAHW,NYCEEC,X,Betances ECC ( NYCHA ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-665-1100,528 East 146th St,10455,1,22,1007717,235292,Hammonda@e-s-s.org,http://essnyc.org,3,2,1,07XAHW,40.812728,-73.915397,1,8,43,2093913,2022720038,Mott Haven-Port Morris +XAIB,NYCEEC,X,Throggs Neck Early Learn Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-882-0172,461 Swinton Ave,10465,1,20,1033307,238199,Familytnelc@gmail.com,,3,4,1,08XAIB,40.820332,-73.822263,10,13,144,2093888,2055820001,Schuylerville-Throgs Neck-Edgewater Park +XAIC,NYCEEC,X,LSSMNY : Early Life Children's Center 2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-292-7015,888 Westchester Ave,10459,1,53,1012130,238249,djorge@lssny.org,,5,9,3,08XAIC,40.820809,-73.899389,2,17,87,2005346,2026960030,Longwood +XAID,NYCEEC,X,LSSMNY : Early Life Children's Center 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-297-2900,80 East 181 St,10453,1,84,1010712,250788,jcebeno@lssny.org,http://lssny.org,3,7,1,10XAID,40.855076,-73.904199,5,14,241,2013953,2031780032,Mount Hope +XAIE,NYCEEC,X,Mid Bronx CCRP ECC 3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-962-9384,1360 Ogden Ave,10452,1,25,1005142,245938,ogdendc@midbronx.org,http://midbronx.org/,3,6,1,09XAIE,40.841677,-73.924703,4,16,211,2003376,2025220043,Highbridge +XAIF,NYCEEC,X,Be Above 52,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-466-7519,1810 Davidson Ave,10453,1,71,1008628,248837,gmoriah@babove.com,,3,7,2,10XAIF,40.849425,-73.912268,5,14,217,2109470,2028610129,University Heights-Morris Heights +XAIM,NYCEEC,X,Highbridge Advisory Council ECC #3,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-293-9196,1399 Ogden Ave,10452,1,29,1005135,246172,souting@hacss.com,http://highbridgeadvisorycouncil.com,3,7,1,09XAIM,40.842292,-73.924276,4,16,201,2116205,2025350010,Highbridge +XAIN,NYCEEC,X,Highbridge Advisory Council DCC ( Nelson Avenue ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-681-5216,1181 Nelson Ave,10452,1,72,1004754,244325,afortes@hacfs.com,http://hacfs.org,7,8,2,09XAIN,40.837232,-73.925706,4,16,199,2003301,2025160051,Highbridge +XAIQ,NYCEEC,X,Richard H Mangum ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-590-0673,383 E 162nd St,10451,1,18,1008089,239884,mpaulino@hacfs.com,http://hacfs.org,3,3,2,09XAIQ,40.824952,-73.913944,3,17,143,2126620,2024080052,East Concourse-Concourse Village +XAKJ,NYCEEC,X,Wake - Eden Christian Academy,,718-325-8056,2074 Strang Ave,10466,1,36,1028603,263806,academy@wakeeden.org,,3,7,1,11XAKJ,40.890773,-73.839801,12,12,426,2066715,2049580032,Woodlawn-Wakefield +XAJB,NYCEEC,X,"Concourse House, HDFC",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-801-2515,2348 Webster Ave,10458,1,65,1013411,251627,wgelabert@concoursehouse.org,http://concoursehouse.org,3,3,2,10XAJB,40.857603,-73.894699,6,15,38302,2115299,2030310021,Fordham South +XAJD,NYCEEC,X,Bronx ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-764-2409,1515 Southern Blvd,10460,1,40,1014570,242931,cmiree@childrensaidsociety.org,http://childrensaidsociety.org,3,7,1,12XAJD,40.833734,-73.889934,3,17,155,2113511,2029770110,Crotona Park East +XAJF,NYCEEC,X,Brightside Academy - Louis Nine,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-991-2119,1336 Louis Nine Blvd,10459,1,39,1014127,242267,singram@brightsideacademy.com,http://brightsideacademy.com,5,7,1,12XAJF,40.831474,-73.892294,3,17,123,2118405,2029767501,Crotona Park East +XAJG,NYCEEC,X,Brightside Academy - Southern,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-842-2252,1093 Southern Blvd,10459,1,38,1014083,240232,adavis@brightsideacademy.com,http://brightsideacademy.com,5,7,1,12XAJG,40.825924,-73.89193,2,17,12701,2005806,2027270045,Hunts Point +XAJJ,NYCEEC,X,Sharon Baptist - Center II,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-299-6500,279 East Burnside Ave,10457,1,54,1011451,249405,ecollazo70@yahoo.com,http://sharonbaptistheadstart.org,3,1,1,09XAJJ,40.851154,-73.901891,5,15,381,2013673,2031560081,Mount Hope +XAJK,NYCEEC,X,Brightside Academy - St. Ann's,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-585-1472,780 St Anns Ave,10456,1,31,1009167,238132,johrablo@brightsideacademy.com,http://brightsideacademy.com,5,1,1,07XAJK,40.819633,-73.910453,1,17,75,2117695,2026187501,Melrose South-Mott Haven North +XAJR,NYCEEC,X,"Providence Rest Child DCC, Inc.",,718-823-3588,3310 Campbell Dr,10465,1,18,1034871,244741,srtadcsjb@aol.com,http://providencerest.org,5,9,3,08XAJR,40.838253,-73.81747,10,13,27402,2075317,2054090133,Pelham Bay-Country Club-City Island +XAJT,NYCEEC,X,East Tremont Child Care And Development Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-731-4166,1811 Crotona Ave,10457,1,29,1013492,246478,etccdc@aol.com,http://etccdc.com,7,7,1,12XAJT,40.842893,-73.893457,6,15,36902,2092141,2029440001,East Tremont +XAJU,NYCEEC,X,Children's Aid At P.S. 211,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-821-4222,1919 Prospect Ave,10457,1,28,1014768,246818,Tracyp@childrensaidsociety.org,,3,6,1,12XAJU,40.843546,-73.889755,6,17,36901,2094582,2029510032,East Tremont +XAKA,NYCEEC,X,Intervale ( Center #2 ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-542-1161,1054 Intervale Ave,10459,1,62,1012885,239768,geure@lapen.com,http://lapen.com,5,9,3,12XAKA,40.824823,-73.896839,2,17,131,2005481,2027050009,Longwood +XATO,NYCEEC,X,St. Anselm School,,718-993-9464,685 Tinton Ave,10455,1,90,1010413,236667,b223@adnyeducation.org,http://stanselmbx.org,3,3,1,07XATO,40.816288,-73.905151,1,17,79,2004684,2026540001,Melrose South-Mott Haven North +XAKB,NYCEEC,X,Watson Avenue ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-828-9400,1880 Watson Ave,10472,1,44,1022610,241011,catherine.budington@birchfamilyservices.org,http://birchfamilyservices.org,3,3,1,08XAKB,40.828307,-73.86156,9,18,44,2023653,2037320039,Soundview-Bruckner +XAKD,NYCEEC,X,Sound Dale Center For Ece,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-378-3533,1211 Croes Ave,10472,1,76,1019956,241613,bronxdale@verizon.net,,3,4,1,12XAKD,40.829767,-73.870728,9,18,68,2024083,2037480015,Soundview-Bruckner +XAKE,NYCEEC,X,Bronx River Early Learn Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-842-6582,1555 East 174th St,10472,1,35,1017906,243401,angelamazzone@yahoo.com,,3,7,2,12XAKE,40.834294,-73.87885,9,18,62,2092903,2038860002,West Farms-Bronx River +XAKF,NYCEEC,X,Stepping Stone Day School,,718-554-2025,2826 Westchester Ave,10461,1,18,1029809,246901,danf@steppingstonedayschool.org,http://steppingstonedayschool.com,7,3,2,08XAKF,40.844557,-73.83542,10,13,26602,2045795,2041560011,Pelham Bay-Country Club-City Island +XAKH,NYCEEC,X,Labor Bathgate Community CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-583-3850,1638 Anthony Ave,10457,1,30,1010601,246201,laborbathgate@yahoo.com,,3,3,2,09XAKH,40.842662,-73.904889,4,16,167,2009316,2028880021,Claremont-Bathgate +XAKO,NYCEEC,X,Episcopal Social Services Head Start ( Paul's House ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-401-5133,500 Bergen Ave,10455,1,17,1006992,236189,damesa@e-s-s.org,http://essnyc.org,3,4,1,07XAKO,40.814876,-73.918234,1,8,43,2112706,2022920013,Mott Haven-Port Morris +XAKQ,NYCEEC,X,Help III,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-583-1511,785 Crotona Park North,10460,1,13,1014332,245620,ldavis@helpusa.org,http://helpusa.org,3,3,2,12XAKQ,40.840627,-73.891433,6,17,367,2117956,2029520014,East Tremont +XAKR,NYCEEC,X,Prospect ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-617-6100,730 Kelly St,10455,1,11,1012083,236777,lcano@hfhnyc.org,http://hfhnyc.org,2,7,1,08XAKR,40.816517,-73.899717,2,8,85,2094332,2027080025,Longwood +XAKX,NYCEEC,X,Anna Lefkowitz DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-292-8682,690 Westchester Ave,10455,1,30,1010022,236827,judy.valez.phm@gmail.com,http://philiphmichaels.org,3,7,1,07XAKX,40.816584,-73.907585,1,17,79,2091976,2026540002,Melrose South-Mott Haven North +XAKZ,NYCEEC,X,Harry H Gordon School ( NYL ),,718-367-5917,2465 Bathgate Ave,10458,1,8,1014939,251939,Melissa.bybel@yai.org,http://yai.org,2,4,2,10XAKZ,40.858243,-73.888671,6,15,387,2011776,2030580020,Belmont +XALA,NYCEEC,X,Westchester Tremont DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-824-7390,2547 East Tremont Ave,10461,1,52,1026167,246560,enrollwtdcc@optimum.net,http://wtdcc.com,3,3,2,11XALA,40.843024,-73.848478,11,13,256,2044137,2040780010,Van Nest-Morris Park-Westchester Square +XALB,NYCEEC,X,WHEDco Early Childhood Discovery Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-839-1156,50 East 168th St,10452,1,96,1006644,244022,ybriu@whedco.org,http://whedco.org,3,3,2,09XALB,40.836725,-73.919292,4,16,197,2101464,2024800001,West Concourse +XALE,NYCEEC,X,Np Ready Set Learn,,718-484-8210,830 Fox St,10459,1,36,1013027,237140,mimiallen26@gmail.com,,3,6,2,08XALE,40.817576,-73.896232,2,17,89,2120355,2027210010,Hunts Point +XALJ,NYCEEC,X,"St. Jemuel Group Family Day Care, Inc.",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-601-9753,2836 Webb Ave,10468,1,28,1011744,257263,saintjemuel@hotmail.com,http://saintjemueldaycare.com,3,6,1,10XALJ,40.87299,-73.900734,8,14,26702,2015414,2032500062,Van Cortlandt Village +XALQ,NYCEEC,X,Blondell Joyner DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-665-7791,901 Tinton Ave,10456,1,26,1010864,238710,vsalters@sebnc.org,http://sebnc.org,7,3,2,08XALQ,40.82168,-73.903568,3,16,133,2091959,2026380090,Morrisania-Melrose +XALR,NYCEEC,X,Five Star DCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-292-4774,3261 Third Ave,10456,1,41,1009508,239708,Kamey@sebnc.org,http://sebnc.org,3,3,1,08XALR,40.824489,-73.908528,3,17,185,2001228,2023680039,Morrisania-Melrose +XALV,NYCEEC,X,Kingsbridge Heights Community Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-690-9466,295 West 231st St,10463,1,134,1009731,260248,ydisla@khcc-nyc.org,http://khcc-nyc.org,3,3,1,10XALV,40.880698,-73.908162,8,11,289,2087522,2057130087,Spuyten Duyvil-Kingsbridge +XALW,NYCEEC,X,Sharon Baptist - Center I,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-585-5876,507 East 165th St,10456,1,61,1009672,240510,wmaysonet012@yahoo.com,http://sharonbaptistheadstart.org,3,1,2,09XALW,40.826655,-73.908215,3,16,185,2001278,2023700045,Morrisania-Melrose +XALY,NYCEEC,X,LSSMNY : Early Life Children's Center 4,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-962-4344,200 West Tremont Ave,10453,1,93,1007183,249635,dshuler@lssny.org,http://lssny.org,3,8,2,09XALY,40.851984,-73.916804,5,14,20502,2008966,2028770522,University Heights-Morris Heights +XALZ,NYCEEC,X,Mid Bronx Sr. Citizen Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-684-4790,100 East Mt Eden Ave,10452,1,96,1008365,246524,campbell.stephanie13@yahoo.com,,5,6,1,09XALZ,40.843541,-73.912817,4,14,209,2008017,2028370011,West Concourse +XARN,NYCEEC,X,Trabajamos Community Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-294-4333,1905 Morris Ave,10453,1,27,1009670,248955,lbtrabajamos_hs@yahoo.com,,3,6,1,09XARN,40.849902,-73.907951,5,14,23301,2109804,2028280037,Mount Hope +XAMA,NYCEEC,X,Brightside Academy - White Plains #2,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-653-4043,3942 White Plns Rd,10466,1,46,1022761,262392,lmcgee@brightsideacademy.com,http://brightsideacademy.com,5,7,1,11XAMA,40.886856,-73.860982,12,12,396,2063371,2048370051,Williamsbridge-Olinville +XAMB,NYCEEC,X,Trabajamos Community Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-962-9720,2167 University Ave,10453,1,40,1009274,251887,pcordero.trabajamos@gmail.com,http://trabajamoschs.com,3,6,1,10XAMB,40.858088,-73.90914,7,14,255,2014731,2032170060,Kingsbridge Heights +XAMI,NYCEEC,X,Aleene Logan Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-538-7135,1450 Webster Ave,10456,1,21,1010244,244483,la_ficklingcdc@yahoo.com,http://claremontcenter.org,3,8,1,09XAMI,40.837646,-73.906504,3,16,14702,2092076,2028950001,Claremont-Bathgate +XAMQ,NYCEEC,X,Mosholu Montefiore - Van Cortlandt,,718-543-0231,3880 Sedgwick Ave,10463,1,54,1013642,260882,imelendez@mmcc.org,http://mmcc.org,3,7,1,10XAMQ,40.882997,-73.894008,8,11,409,2086830,2032460076,Van Cortlandt Village +XAMR,NYCEEC,X,Iola Jordan Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-402-4166,421 East 161st St,10451,1,73,1008327,239560,louiseburroughs@yahoo.com,http://nycmcs.org,3,3,1,07XAMR,40.824002,-73.913179,3,17,141,2001505,2023830012,Morrisania-Melrose +XAMT,NYCEEC,X,East Side House,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-292-5335,375 East 143rd St,10454,1,38,1006041,235409,dcolon@eastsidehouse.org,http://eastsidehouse.org,3,4,2,07XAMT,40.812702,-73.921622,1,8,41,2091101,2023060009,Mott Haven-Port Morris +XAMV,NYCEEC,X,Children's Pride,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-401-4242,414 Morris Ave,10451,1,29,1005446,236393,dcolon@eastsidehouse.org,http://eastsidehouse.org,3,4,2,07XAMV,40.815528,-73.923923,1,8,51,2097853,2023240001,Mott Haven-Port Morris +XAMW,NYCEEC,X,East Side House,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-993-3692,200 Alexander Ave,10454,1,19,1004851,234005,dcolon@eastsidehouse.org,http://eastsidehouse.org,3,4,2,07XAMW,40.808753,-73.926081,1,8,23,2091097,2022980040,Mott Haven-Port Morris +XAMZ,NYCEEC,X,Philip H Michaels CDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-665-9410,629 Courtlandt Ave,10451,1,126,1006695,237487,yunkim55@hotmail.com,http://phmny.org,3,7,1,07XAMZ,40.818423,-73.918714,1,17,67,2001876,2024110041,Melrose South-Mott Haven North +XANA,NYCEEC,X,South Bronx Head Start I,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-292-7250,490 East 143rd St,10454,1,35,1006976,234773,southbronxhs@aol.com,http://southbronxheadstart.com,3,7,2,07XANA,40.811121,-73.917603,1,8,41,2000433,2022870135,Mott Haven-Port Morris +XANC,NYCEEC,X,"Salvation Army, Bronx Citadel",

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-742-2346,425 E 159th St,10451,1,20,1008222,239041,valerie.toon@use.salvationarmy.org,,7,3,1,07XANC,40.822685,-73.913636,3,17,141,2092353,2023810029,Morrisania-Melrose +XANI,NYCEEC,X,Ivy League Early Learning Academy,,718-239-5275,4022 East Tremont Ave,10465,1,90,1034629,237946,bronx@ivyleagueearlylearning.com,http://ivyleagueearlylearning.com,3,3,1,08XANI,40.819636,-73.817594,10,13,132,2080463,2055760097,Schuylerville-Throgs Neck-Edgewater Park +XANJ,NYCEEC,X,"Just 4 Kids Soundview Center, Inc.",,917-995-8041,214 - 216 Soundview Ave,10473,1,20,1024332,234371,djust4kids@aol.com,,3,6,1,08XANJ,40.809803,-73.855414,9,18,4,2097520,2034560005,Soundview-Castle Hill-Clason Point-Harding Park +XANK,NYCEEC,X,Just 4 Kids Kiddie Kollege,,917-995-8041,781 Castle Hl Ave,10473,1,18,1025921,239130,Djust4kids@aol.com,,3,3,2,08XANK,40.822846,-73.848932,9,18,86,2086994,2036120001,Soundview-Castle Hill-Clason Point-Harding Park +XANN,NYCEEC,X,Gwendolyn Bland Dc,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-991-1050,749 East 163rd St,10456,1,39,1010834,239321,KNorfleet@sebnc.org,http://sebnc.org,3,7,1,08XANN,40.822957,-73.904108,3,16,133,2091965,2026390001,Morrisania-Melrose +XANT,NYCEEC,X,Louis A Fickling CDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-538-7135,1240 Webster Ave,10456,1,24,1009415,242608,La_ficklingcdc@yahoo.com,http://claremontcenter.org,3,8,1,09XANT,40.832675,-73.909388,3,16,145,2091187,2023950001,Claremont-Bathgate +XANU,NYCEEC,X,Help II,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-498-4002,285 East 171st St,10457,1,23,1009073,244994,cviruet@helpusa.org,,3,7,1,09XANU,40.838859,-73.910297,4,16,225,2094523,2027870001,East Concourse-Concourse Village +XANV,NYCEEC,X,Highbridge Advisory Council Doris East Stone Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-681-5888,1165 University Ave,10452,1,25,1003919,244672,afrancis@hacfs.com,http://hacfs.org,3,8,2,09XANV,40.837198,-73.928159,4,16,193,2095219,2025270032,Highbridge +XANW,NYCEEC,X,Highbridge Advisory Council Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-992-1321,880 Riv Ave,10452,1,47,1004909,241051,bhernandez@hdst.org,http://hacfamilyservices.org/,3,8,2,09XANW,40.828333,-73.925625,4,8,195,2002988,2024840009,West Concourse +XANX,NYCEEC,X,Highbridge Advisory Council Marshall England ELC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-742-2369,800 Concourse Vlg East,10451,1,40,1006652,239509,Childcare@hacfs.com,http://hacfs.org,5,9,3,07XANX,40.82388,-73.919379,4,16,173,2001910,2024200040,East Concourse-Concourse Village +XANZ,NYCEEC,X,Walton ( Center #5 ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-542-1161,1871 Walton Ave,10453,1,109,1009205,248531,ahoward@lapen.com,,3,7,2,09XANZ,40.848899,-73.909528,5,14,23301,2098479,2028510021,Mount Hope +XAOA,NYCEEC,X,Promesa Multi - Cultural DCC II,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,347-649-3267,300 East 175th St,10457,1,74,1010673,247693,awhite@promesa.org,http://promesa.org,7,6,2,09XAOA,40.84663,-73.904558,5,15,231,2112731,2028910039,Mount Hope +XAOB,NYCEEC,X,South Bronx Head Start II,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-292-7250,141 Featherbed Ln,10452,1,46,1006301,247653,southbronxhs3@aol.com,,5,9,3,09XAOB,40.846198,-73.920245,5,14,21502,2008817,2028760060,University Heights-Morris Heights +XAOC,NYCEEC,X,South Bronx III,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-538-4112,1458 Webster Ave,10456,1,36,1010280,244553,Southbronxhs3@aol.com,,5,9,3,09XAOC,40.837926,-73.906331,3,16,14702,2092076,2028950001,Claremont-Bathgate +XAOD,NYCEEC,X,Bronxworks,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-508-3054,1130 Grand Concourse,10456,1,37,1006701,242570,oadegoke@bronxworks.org,http://bronxworks.org,3,4,1,09XAOD,40.832331,-73.91959,4,16,18102,2002833,2024620042,East Concourse-Concourse Village +XAOF,NYCEEC,X,Tremont Monterey DCC II,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-466-6700,1600 Bathgate Ave,10457,1,32,1011650,245000,tmdccsiteii@aol.com,http://tremontmonterey.com,3,4,1,09XAOF,40.839379,-73.901215,3,16,167,2009582,2029190005,Claremont-Bathgate +XAOI,NYCEEC,X,Sharon Baptist - Center IV,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-466-1604,1925 Bathgate Ave,10457,1,46,1012697,247994,orchidsmjj@aol.com,http://sharonbaptistheadstart.org,3,7,2,09XAOI,40.847442,-73.896858,6,15,395,2011426,2030430030,Claremont-Bathgate +XAOK,NYCEEC,X,Seventh Avenue Center For Family Services,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-901-0140,1646 Montgomery Ave,10453,1,31,1006412,248497,info@7thavenuecenter.org,,3,6,2,09XAOK,40.848772,-73.92005,5,14,21501,2008989,2028780028,University Heights-Morris Heights +XAOL,NYCEEC,X,St. Nicholas Of Tolentine Head Start,,718-364-7608,2331 University Ave,10468,3,18,1010252,253344,msuarez@cmcs.org,http://cmcs.org,3,2,1,10XAOL,40.8613,-73.906258,7,14,255,2095380,2032180035,Kingsbridge Heights +XAOM,NYCEEC,X,Belmont CDC Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-584-1576,2340 Cambreleng Ave,10458,1,104,1016011,250310,bcdaycare@verizon.net,http://belmontdaycare.org,2,3,1,10XAOM,40.853678,-73.885657,6,15,391,2012517,2030890024,Belmont +XAON,NYCEEC,X,Brenda's Playschool,,718-796-5048,3930 Bailey Ave,10463,1,12,1013286,261771,Brendacaceres@aol.com,,5,6,1,10XAON,40.885333,-73.895053,8,11,279,2016009,2032630047,Van Cortlandt Village +XAOR,NYCEEC,X,Kingsbridge Montessori School,,718-561-8111,2500 Jerome Ave,10468,1,36,1012039,254055,jasmineedu@aol.com,http://riverdalekingsbridgemontessori.com,7,4,1,10XAOR,40.864053,-73.900054,7,14,401,2014129,2031900001,Bedford Park-Fordham North +XAOS,NYCEEC,X,Riverdale Montessori School,,718-543-4884,5705 Mosholu Ave,10471,1,38,1011806,269258,jasmineedu@aol.com,http://riverdalekingsbridgemontessori.com,7,7,1,10XAOS,40.905523,-73.900386,8,11,345,2085035,2058590304,North Riverdale-Fieldston-Riverdale +XAOT,NYCEEC,X,Kingsbridge Heights Community Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-884-0700,3101 Kingsbridge Ter,10463,1,41,1011744,259002,ydisla@khcc-nyc.org,http://khcc.org,3,3,1,10XAOT,40.877505,-73.90033,8,14,277,2015788,2032570111,Van Cortlandt Village +XAOU,NYCEEC,X,Marble Hill Nursery School,,718-562-7055,5470 Broadway,10463,1,40,1009996,258430,marblehill5470@aol.com,http://marblehillnurseryschool.org,8,7,1,10XAOU,40.876363,-73.907343,8,10,309,1082781,1022150116,Marble Hill-Inwood +XAOV,NYCEEC,X,Marc Academy And Family Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-562-3410,2105 Jerome Ave,10453,1,56,1010084,250789,drodriguez@marcafc.org,http://marcafc.org,3,8,2,10XAOV,40.854877,-73.906397,5,14,251,2094675,2031920056,University Heights-Morris Heights +XAOW,NYCEEC,X,Mosholu Montefiore Community Center - Northside Annex,,718-405-0020,3512 Dekalb Ave,10467,1,20,1017452,260836,imelendez@mmcc.org,http://mmcc.org,3,7,1,10XAOW,40.882728,-73.88006,7,11,431,2094751,2033280138,Norwood +XAOX,NYCEEC,X,CDC Of Mosholu Montefiore CC,,718-882-4000,3450 Dekalb Ave,10467,3,144,1017203,260454,cmorello@mmcc.org,http://mmc.org,1,7,1,10XAOX,40.881486,-73.881226,7,11,421,2096396,2033270001,Norwood +XAPA,NYCEEC,X,"Riverdale Neighborhood House, Inc.",,718-549-8100,5521 Mosholu Ave,10471,1,72,1010824,268413,Kpowers@riverdaleonline.org,http://riverdaleonline.org,5,3,1,10XAPA,40.903039,-73.90375,8,11,337,2119685,2058501585,North Riverdale-Fieldston-Riverdale +XAPB,NYCEEC,X,Riverdale Presbyterian Church And Nursery School,,718-548-8260,4765 Henry Hudson Pkwy West,10471,3,40,1009462,265716,bmerceinrpcns@gmail.com,http://rpcns.com,8,3,2,10XAPB,40.896258,-73.908314,8,11,30701,2087605,2059120013,North Riverdale-Fieldston-Riverdale +XAPC,NYCEEC,X,Riverdale Temple Nursery School,,718-796-0335,4545 Independence Ave,10471,1,31,1008351,264156,nsdirector.rtns@gmail.com,,8,3,2,10XAPC,40.891762,-73.912208,8,11,309,2088698,2059200456,North Riverdale-Fieldston-Riverdale +XAPD,NYCEEC,X,Riverdale Y Early Childhood Program,,347-913-4445,5625 Arlington Ave,10471,1,36,1009650,269077,mfinkel@riverdaley.org,http://riverdaley.org,7,3,1,10XAPD,40.905009,-73.907133,8,11,323,2086312,2059520374,North Riverdale-Fieldston-Riverdale +XAPE,NYCEEC,X,Spuyten Duyvil Preschool,,718-549-1525,3041 Kingsbridge Ave,10463,1,36,1009812,259691,director@spuytenduyvilpreschool.org,http://spuytenduyvilpreschool.org,8,7,1,10XAPE,40.878954,-73.907401,8,11,289,2083194,2057090046,Spuyten Duyvil-Kingsbridge +XAPH,NYCEEC,X,Round The Clock Nursery,,718-329-6023,2380 Marion Ave,10458,1,100,1013188,251996,faith.shein@oundtheclocknursery.org,http://roundtheclocknursery.org,3,7,1,10XAPH,40.858458,-73.895467,5,15,38302,2011053,2030240008,Fordham South +XAPI,NYCEEC,X,St. Dominics Torch,,718-365-7238,2340 Andrews Ave,10468,5,36,1010129,253401,erosally@sdomhome.org,http://stdominicshome.org,2,2,2,10XAPI,40.862282,-73.906589,7,14,255,2094684,2032180035,Kingsbridge Heights +XAPK,NYCEEC,X,Salvation Army Tremont,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,212-337-7254,2121 Washington Ave,10457,1,40,1013186,249763,Scott.See@use.salvationarmy.org,http://salvationarmy.org,3,3,1,10XAPK,40.852013,-73.895268,6,15,395,2115960,2030370015,Claremont-Bathgate +XAPN,NYCEEC,X,1199 Future Of America Learning Center,,718-562-2915,2500 Creston Ave,10468,1,60,1012506,253623,Erica.Vincenty@1199ccc.org,,5,9,3,10XAPN,40.862953,-73.897948,7,14,401,2013811,2031670001,Bedford Park-Fordham North +XAPP,NYCEEC,X,Bronx House 1,,718-792-1800,990 Pelham Pkwy South,10461,1,90,1022819,251399,serene@bronxhouse.org,http://bronxhouse.org,8,1,1,11XAPP,40.856804,-73.860354,11,13,248,2088568,2043287501,Pelham Parkway +XAPQ,NYCEEC,X,Bronx House 2,,718-792-1800,2222 Wallace Ave,10467,1,72,1021784,252051,serene@bronxhouse.org,http://bronxhouse.org,8,7,2,11XAPQ,40.858343,-73.864649,11,13,328,2093364,2043490001,Bronxdale +XAPT,NYCEEC,X,"Little Stars School, Inc.",,718-994-0604,4063 Edson Ave,10466,1,76,1027284,264123,lstarsassistant@aol.com,http://littlestarspreschools.com,3,7,1,11XAPT,40.891591,-73.844128,12,12,426,2067475,2049800066,Woodlawn-Wakefield +XARJ,NYCEEC,X,Santa Maria School,,718-863-5047,1651 Zerega Ave,10462,1,207,1025506,245112,santamariaec@yahoo.com,http://santamariabronx.org,7,3,1,11XARJ,40.839497,-73.850633,10,18,204,2042064,2039910078,Westchester-Unionport +XAPU,NYCEEC,X,North Bronx Ncnw CDC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-231-7100,4035 White Plns Rd,10466,1,81,1023021,263428,Rdavis82@gmail.com,,3,3,1,11XAPU,40.889536,-73.859522,12,12,408,2063070,2048290006,Williamsbridge-Olinville +XAPV,NYCEEC,X,Rainbow Rhymes Learning Center,,718-882-2388,4041 Bruner Ave,10466,1,18,1026559,263889,rrlcbest@yahoo.com,,5,9,3,11XAPV,40.890854,-73.846705,12,12,426,2067280,2049770051,Woodlawn-Wakefield +XAPW,NYCEEC,X,United Educare Preschool,,718-882-4706,3950 Bronxwood Ave,10466,1,54,1024391,261850,ueccc@aol.com,,3,6,1,11XAPW,40.885455,-73.854992,12,12,404,2064389,2048600045,Williamsbridge-Olinville +XAPX,NYCEEC,X,Williamsbridge Naacp Early Childhood Education Center,,718-798-1262,670 East 219th St,10467,1,54,1021942,261246,WillmsbrdgeECEC@aol.com,http://williamsbridge-ecec.org,2,4,2,11XAPX,40.883871,-73.863773,12,12,392,2057523,2046510044,Williamsbridge-Olinville +XAPY,NYCEEC,X,Susan Wagner Day Care,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-547-1735,1140 East 229th St,10466,1,66,1027010,262121,Laura7r@aol.com,,3,7,1,11XAPY,40.88629,-73.845378,12,12,458,2094178,2049050001,Eastchester-Edenwald-Baychester +XAPZ,NYCEEC,X,St. Anthony I,,718-823-7202,1750 Mansion St,10460,3,18,1020376,244553,nsoto@cmcs.org,http://cmcs.org,3,2,1,12XAPZ,40.837975,-73.869555,9,18,218,2028456,2039140022,West Farms-Bronx River +XAQA,NYCEEC,X,Tremont Crotona,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-378-5600,1600 Crotona Park East,10460,1,55,1014345,244075,virgo_karlene@yahoo.com,,3,8,1,12XAQA,40.836705,-73.891205,3,17,155,2009866,2029390090,Crotona Park East +XAQK,NYCEEC,X,Saints Philip & James School,,718-882-4576,1160 East 213th St,10469,1,54,1025045,258216,school@spjschool.org,http://stsphilipandjameschurch.com,3,1,1,11XAQK,40.875532,-73.852432,12,12,368,2059782,2047070001,Williamsbridge-Olinville +XAQL,NYCEEC,X,Corry Academy,,718-994-4650,4321 Barnes Ave,10466,1,156,1024860,265557,bmccrory@sfabx.com,http://sfabx.com,3,3,2,11XAQL,40.895366,-73.852905,12,11,434,2097444,2050450008,Woodlawn-Wakefield +XAQS,NYCEEC,X,Happy Days @ Riverdale,,718-601-1300,2975 Independence Ave,10463,1,18,1006704,261059,happydaysrd@gmail.com,http://renanimpreschool.com,3,4,1,10XAQS,40.882892,-73.917344,8,11,301,2100381,2057500382,Spuyten Duyvil-Kingsbridge +XAQY,NYCEEC,X,Susan Wagner Victory,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-655-5500,3440 White Plns Rd,10467,1,31,1021233,258503,Swagner3440@gmail.com,,3,7,1,11XAQY,40.876472,-73.866945,12,12,374,2093518,2046290050,Williamsbridge-Olinville +XAQZ,NYCEEC,X,Mid Bronx CCRP ECC 1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-590-7042,1125 Grand Concourse,10452,1,131,1006307,242701,dmoon@midbronx.org,http://midbronx.org,3,6,1,09XAQZ,40.832627,-73.919398,4,16,195,2002893,2024720034,West Concourse +XARA,NYCEEC,X,"HCC Children's Center, Inc.",,718-518-4209,475 Grand Concourse,10451,3,36,1004188,237336,pmartinez@hostos.cuny.edu,http://hostos.cuny.edu,2,7,2,07XARA,40.817954,-73.927599,1,17,63,2001038,2023460029,West Concourse +XARC,NYCEEC,X,Fulton ( Center #4 ),

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-542-1161,1717 Fulton Ave,10457,1,54,1012465,245969,ngomez@lapen.com,,3,7,2,09XARC,40.841596,-73.897767,3,15,165,2100071,2029300075,Claremont-Bathgate +XARD,NYCEEC,X,Bronx ELC,,718-466-3915,1887 Bathgate Ave,10457,1,16,1012610,247677,snissim@voa-gny.org,http://voa-gny.org,3,3,2,09XARD,40.846391,-73.897297,6,15,395,2009578,2029180024,Claremont-Bathgate +XARG,NYCEEC,X,Monsignor Boyle,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-405-7824,3044 Hull Ave,10467,1,56,1017576,256812,epabon@cmcs.org,http://cmcs.org,3,4,1,10XARG,40.87177,-73.879316,7,11,425,2017913,2033320010,Norwood +XARH,NYCEEC,X,Leake And Watts Head Start,,718-904-1689,2165 Randall Ave,10473,3,20,1026113,237777,ballen@leakeandwatts.org,,1,7,1,08XARH,40.818918,-73.848836,9,18,86,2092673,2035700001,Soundview-Castle Hill-Clason Point-Harding Park +XARI,NYCEEC,X,Lehman College Childcare Center,,718-960-8746,250 Bedford Park Blvd Westÿ,10468,1,18,1013778,258009,jaci@imagineelc.com,http://imagineelc.com,8,3,1,10XARI,40.875028,-73.89286,7,11,409,2097309,2032470165,Van Cortlandt Village +XARK,NYCEEC,X,Sacred Heart Head Start,,718-293-2006,95 West 168th St,10452,3,18,1005170,244756,mserrano@cmcs.org,http://cmcs.org,3,4,1,09XARK,40.838321,-73.924537,4,16,211,2003305,2025170001,Highbridge +XARM,NYCEEC,X,Trabajamos Community Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-893-2865,940 East 156th St,10455,1,18,1011807,236731,lbtrabajamos_hs@yahoo.com,http://trabajamoschs.com,3,6,2,08XARM,40.81646,-73.900226,2,17,85,2005412,2027010001,Longwood +XARO,NYCEEC,X,Trabajamos Community Head Start,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-933-5560,2260 Crotona Ave,10457,1,23,1016172,249507,kdelacruz.trabajamos@gmail.com,http://trabajamoschs.com,3,7,1,10XARO,40.851232,-73.885242,6,15,393,2012816,2031010023,Belmont +XARP,NYCEEC,X,Just 4 Kids Monsignor Scanlan,,917-217-1781,955 Hutchinson Riv Pkwy,10465,1,18,1029305,240511,DJust4Kids@aol.com,,3,3,1,08XARP,40.826137,-73.83678,10,13,90,2097749,2055420001,Soundview-Castle Hill-Clason Point-Harding Park +XARQ,NYCEEC,X,Learning Ladder DCC,,718-618-0782,"100 Aldrich St, Bldg 15a",10475,1,36,1030787,256520,madelinaenriquez@allcareps.org,http://allcareps.org,3,6,1,11XARQ,40.870067,-73.832153,10,12,46201,2095395,2051410120,Co-op City +XARR,NYCEEC,X,"Kiderific Nursery School, Inc.",,718-518-7170,1621 Pilgrim Ave,10461,1,26,1030173,246870,kiderific@gmail.com,http://kiderificnurseryschool.com,7,3,1,08XARR,40.844085,-73.833769,10,13,26602,2045852,2041570050,Pelham Bay-Country Club-City Island +XARS,NYCEEC,X,3467 Ready Set Learn,,718-665-1234,3467 Third Ave,10456,1,89,1010105,241705,rosecano29@gmail.com,http://rslcc.com,3,6,1,09XARS,40.829908,-73.906374,3,16,145,2098317,2023720041,Claremont-Bathgate +XART,NYCEEC,X,Brightside Academy,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-292-0812,331 East 150th St,10451,1,49,1006379,237157,evasquez@brightsideacademy.com,http://brightsideacademy.com,5,7,1,07XART,40.817477,-73.9202,1,17,65,2001854,2024100056,Melrose South-Mott Haven North +XARV,NYCEEC,X,Bronx DCC Inc.,,718-240-9300,559 East Tremont Ave,10457,1,18,1013339,247756,Asad4222@gmail.com,,5,9,3,10XARV,40.846515,-73.894944,6,15,37504,2011829,2030600055,East Tremont +XARW,NYCEEC,X,CS 61 Early Childhood,,718-764-2409,1550 Crotona Park East,10460,1,60,1013920,243972,lachellew@childrensaidsociety.org,http://childrensaidsociety.org,3,8,2,12XARW,40.836575,-73.892817,3,17,153,2009865,2029390045,Crotona Park East +XASA,NYCEEC,X,St. Dominics Torch,,347-270-9219,2195 Valentine Ave,10457,1,60,1012155,250830,jsuazo@sdomhome.org,,3,8,2,10XASA,40.854893,-73.898983,5,15,381,2013546,2031490140,Mount Hope +XASB,NYCEEC,X,New Covenant Christian School,,718-328-6072,1179 Boston Rd,10456,1,18,1011106,241389,mmark@ncchristianschool.org,,5,9,3,9XASB,40.828942,-73.903004,3,16,185,2004287,2026140043,Morrisania-Melrose +XASC,NYCEEC,X,Seabury CCC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-991-1500,575 Soundview Ave,10473,1,54,1022548,236873,spaye@leakeandwatts.org,,5,9,3,08XASC,40.816875,-73.86141,9,18,16,2021465,2035230034,Soundview-Castle Hill-Clason Point-Harding Park +XASE,NYCEEC,X,Ft. George Universal Pre - K,,212-795-9184,489 St Paul's Pl,10456,1,40,1010913,243946,agrossbard@ftgeocenterhs.org,,3,3,2,09XASE,40.836098,-73.903825,3,16,14702,2009542,2029110030,Claremont-Bathgate +XASH,NYCEEC,X,Tolentine Zeiser Community Life Center,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-933-6935,2340 Andrews Ave,10468,1,118,1010162,253394,mgmaggie2@aol.com,http://tzclc.org,3,1,1,10XASH,40.862282,-73.906589,7,14,255,2094684,2032180035,Kingsbridge Heights +XASI,NYCEEC,X,"Garvey School, The",,718-320-3902,4120 Hutchinson Riv Pkwy,10475,1,72,1032645,253902,admissions@garveyschool.org,http://garveyschool.org,3,8,1,11XASI,40.863774,-73.825123,10,12,302,2093863,2051350051,Co-op City +XASN,NYCEEC,X,Lion Of Judah Christian Academy ( Lojca ),,718-772-3238,2336 Andrews Ave,10468,1,12,1010085,253313,lojcarev55@yahoo.com,,5,9,3,10XASN,40.8622,-73.906662,7,14,255,2094688,2032180035,Kingsbridge Heights +XASO,NYCEEC,X,Mind - Builders Creative Arts Center,,718-652-6256,3415 Olinville Ave,10467,1,18,1020647,258378,madaha@mind-builders.org,http://mind-builders.org,5,9,3,11XASO,40.87593,-73.868125,12,12,376,2056942,2046270037,Williamsbridge-Olinville +XAST,NYCEEC,X,Ciditty Kiddie Pre - K,,718-924-5758,1700 Seward Ave,10473,1,36,1020897,237399,iris7092002@yahoo.com,,5,9,3,08XAST,40.818497,-73.868058,9,18,20,2092649,2035510001,Soundview-Castle Hill-Clason Point-Harding Park +XASV,NYCEEC,X,"Bright Star Day Care At Rochambeau, Inc.",,718-864-8922,3130 Rochambeau Ave,10467,1,36,1017415,257712,brightstar3130@gmail.com,,5,9,3,10XASV,40.874134,-73.88031,7,11,419,2017998,2033350060,Norwood +XASW,NYCEEC,X,Holy Spirit Head Start,,718-402-0081,1960 University Ave,10453,1,72,1008603,250307,rgershenlowy@cmcs.org,http://cmcs.org,5,9,3,10XASW,40.853175,-73.912682,5,14,243,2094544,2028680111,University Heights-Morris Heights +XASX,NYCEEC,X,St. Barnabas School,,718-324-1088,413 East 241st St,10470,1,180,1021464,267963,b229@adnyeducation.org,http://stbarnabasschool.org,5,9,3,11XASX,40.901987,-73.865089,12,11,45102,2019742,2033940055,Woodlawn-Wakefield +XASY,NYCEEC,X,Holy Rosary Early Childhood At St. Mary Star Of The Sea,,718-652-1838,580 Minnieford Ave,10464,1,36,1042492,250627,b204@adnyeducation.org,http://holyrosaryschoolbronx.org,5,9,3,11XASY,40.854213,-73.789563,10,13,516,2101013,2056470108,Pelham Bay-Country Club-City Island +XATC,NYCEEC,X,United Bronx Parents,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,917-259-7443,1332 Fulton Ave,10456,1,36,1011231,242773,,,5,9,3,09XATC,40.833147,-73.902814,3,16,149,2009685,2029310015,Morrisania-Melrose +XATD,NYCEEC,X,Bronx Community College ECC,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-289-5461,2010 Sedgwick,10468,1,24,1007708,251676,shauna.harper@bcc.cuny.edu,http://bcc.cuny.edu/bcckids,3,3,2,10XATD,40.857552,-73.915959,5,14,249,2116208,2032220062,University Heights-Morris Heights +XATE,NYCEEC,X,Susan Wagner Day School,,718-547-0501,4102 White Plns Rd,10466,1,110,1023358,263832,susanwagnerdayschool1@yahoo.com,,3,3,1,11XATE,40.890779,-73.858814,12,12,422,2063602,2048430034,Williamsbridge-Olinville +XATH,NYCEEC,X,St. Clare Of Assisi Early Childhood Academy,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-892-4080,1925 Hone Ave,10461,1,120,1023859,249455,,,5,9,3,11XATH,40.851398,-73.856686,11,13,250,2087156,2042690037,Pelham Parkway +XATI,NYCEEC,X,Sunshine Day Care,,718-989-9804,416 Willis Ave,10454,1,72,1006478,235518,liz@sunshinenewyork.com,http://sunshinenewyork.com,3,2,1,07XATI,40.813069,-73.919978,1,8,43,2098220,2022890003,Mott Haven-Port Morris +XATQ,NYCEEC,X,Brightside Academy - Webster,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-681-3040,1465 Webster Ave,10456,1,31,1010104,244599,apasaoglu@brightsideacademy.com,http://brightsideacademy.com,5,7,1,09XATQ,40.838134,-73.906222,4,16,17702,2113137,2028870100,East Concourse-Concourse Village +XATR,NYCEEC,X,Brightside Academy - White Plains #1,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-653-3714,2901 White Plns Rd,10467,1,30,1020885,255652,tbansgopaul@brightsideacademy.com,http://brightsideacademy.com,5,7,1,11XATR,40.868024,-73.867283,11,15,336,2054713,2045420001,Bronxdale +XAUP,NYCEEC,X,St. Martin Of Tours Head Start,,718-402-0081,695 East 182 St,10457,1,36,1015588,249231,rgershenlowy@cmcs.org,,5,9,3,10XAUP,40.850666,-73.886996,6,15,391,2118254,2030840001,Belmont +XAUZ,NYCEEC,X,Bronxworks,,646-393-4000,1472 Montgomery Ave,10453,1,36,1006112,248011,Tomokpo@bronxworks.org,,5,9,3,09XAUZ,40.84728,-73.921252,5,14,21501,2008981,2028780005,University Heights-Morris Heights +XAVD,NYCEEC,X,Tender Tots Decatur,,718-324-1052,3322 Decatur Ave,10467,1,54,1019408,258821,diana@tendertotsny.com,http://tendertotsny.com,3,8,1,10XAVD,40.876987,-73.87321,7,11,42902,2117655,2033550090,Norwood +XAVJ,NYCEEC,X,Little Scholars Early Development Center,,718-887-2928,850 Jennings St,10459,1,29,1013728,242459,jcorniel29@gmail.com,http://littlescholarsedc.com,3,7,1,12XAVJ,40.832282,-73.893384,3,17,153,2010275,2029650100,Crotona Park East +XAVS,NYCEEC,X,Bedrock Preschool,,718-884-0020,3220 Arlington Ave,10463,1,60,1008588,261603,Mego@BedRockPreschool.com,http://bedrockpreschool.com,3,7,1,10XAVS,40.884593,-73.912312,8,11,297,2109355,2057887501,Spuyten Duyvil-Kingsbridge +XAVW,NYCEEC,X,"Unity Neighborhood Center, Inc.",,718-994-8400,1339 E Gun Hl Rd,10469,1,72,1026635,256646,unitycenterwork@aol.com,http://unityneighborhoodcenter.org,3,7,1,11XAVW,40.870898,-73.847059,12,12,364,2061689,2047590034,Eastchester-Edenwald-Baychester +XAVX,NYCEEC,X,Sunshine Daycare Of Westchester Village,,718-989-9801,1564 St Peters Ave,10461,1,18,1026449,245595,Tavia@sunshineNewYork.com,http://sunshinenewyork.com,3,6,1,11XAVX,40.840569,-73.847594,10,13,200,2041898,2039860007,Van Nest-Morris Park-Westchester Square +XAVZ,NYCEEC,X,Brightside Academy - Southern 2,,718-589-5900,1778 Southern Blvd,10460,1,36,1015525,244655,tgeorge@brightsideacademy.com,http://brightsideacademy.com,5,6,1,12XAVZ,40.838298,-73.887187,3,17,161,2119434,2029847501,Crotona Park East +XAWG,NYCEEC,X,"All Seasons Day Care, LLC",,212-929-0839,1701 Nereid Ave,10466,1,17,1025115,266504,AL5538@optonline.net,,5,9,3,11XAWG,40.897866,-73.852411,12,11,434,2070786,2050720013,Woodlawn-Wakefield +XAWK,NYCEEC,X,Monsignor Boyle Head Start,,718-402-0081,3044 Hull Ave,10467,1,54,1017589,256795,rgershenlowy@cmcs.org,http://cmcs.org,5,9,3,10XAWK,40.87177,-73.879316,7,11,425,2017913,2033320010,Norwood +XAWL,NYCEEC,X,"Bright Star Stratford, Inc.",,718-842-9361,1217 Stratford Ave,10472,1,34,1018593,241617,lrukh1@hotmail.com,http://brightstardaycarestratford.com,5,9,3,12XAWL,40.829967,-73.875688,9,18,54,2095480,2037760071,West Farms-Bronx River +XAWP,NYCEEC,X,St. Lucy Early Childhood Academy,,718-882-2203,2401 Bronxwood Ave,10469,1,72,1022416,253151,minneci@stlucys.org,http://stlucys.org,5,9,3,11XAWP,40.861282,-73.861719,11,13,328,2095038,2044380027,Bronxdale +XAWQ,NYCEEC,X,Phipps Neighborhoods - Roscoe C Brown ECEC,,917-522-6002,3968 Third Ave,10457,1,18,1012154,245564,cdavis@phippsny.org,http://phippsneighborhoods.org,3,6,1,09XAWQ,40.840722,-73.899341,3,16,167,2000000,2029297501,Claremont-Bathgate +XAWX,NYCEEC,X,Fabiana Day Cay Academy Universal Pre K,,718-588-4545,937 Teller Ave,10451,1,65,1007579,240281,rebonano@gmail.com,,7,6,2,09XAWX,40.82612,-73.915561,4,17,173,2001966,2024220035,East Concourse-Concourse Village +XAWZ,NYCEEC,X,Brightside Academy - Intervale,

Alert: Program may have income or other eligibility requirements. Contact for more information.

,718-991-5465,960 Intervale Ave,10459,1,47,1012891,238741,hgreen@brightsideacademy.com,http://brightsideacademy.com,5,7,1,08XAWZ,40.821727,-73.896873,2,17,87,2114693,2027037501,Longwood +XAXA,NYCEEC,X,Reach One To Teach One,,718-220-8406,5480 Broadway,10463,1,36,1010033,258463,reachonetoteachoneelc@gmail.com,http://reachonetoteachone.org,3,6,2,10XAXA,40.876558,-73.906949,8,10,309,1082781,1022150116,Marble Hill-Inwood +XAYB,NYCEEC,X,Lil Inventors - University Avenue,,718-295-2740,75 West 190th St,10468,1,38,1011075,254557,nlove@nycnac.com,,5,9,3,10XAYB,40.865049,-73.902822,7,14,265,2014648,2032140001,Kingsbridge Heights +XAYC,NYCEEC,X,"All Seasons A & C Day Care, LLC",,718-231-7200,700 Rosewood St,10467,1,17,1021081,257366,asdc@optonline.net,http://allseasonsdaycarebronx.com,5,9,3,11XAYC,40.873206,-73.866977,12,15,374,2118206,2045960022,Williamsbridge-Olinville +XAYD,NYCEEC,X,Laconia Daycare Center & Infant Care Inc.,,212-929-0839,3950 Laconia Ave,10466,1,36,1025898,261241,mahmood_ahmed73@hotmail.com,,5,9,3,11XAYD,40.883656,-73.849655,12,12,386,2065948,2049030042,Eastchester-Edenwald-Baychester +XAYE,NYCEEC,X,Little Scholars Early Development Center,,718-887-2928,1770 Davidson Ave,10453,1,72,1008405,248418,jcorniel29@gmail.com,http://littlescholarsedc.com,5,9,3,10XAYE,40.848772,-73.912724,5,14,217,2008369,2028610114,University Heights-Morris Heights +XAYK,NYCEEC,X,Phipps Houses Lebanon West Farms,,212-243-9090,1175 East Tremont Ave,10460,1,54,1018924,245353,jcastillo@phippsny.org,,5,9,3,12XAYK,40.839861,-73.874604,6,15,220,2127440,2040077501,East Tremont +XAYP,NYCEEC,X,Tender Tot's East 137th Street,,732-987-5252,531 East 137th St,10454,1,54,1006715,233209,chaim@sterlingeg.com,http://tendertotsny.com,5,9,3,07XAYP,40.806552,-73.918934,1,8,25,2000053,2022650059,Mott Haven-Port Morris +XAYQ,NYCEEC,X,"Bronx Park East Preparatory, Inc.",,718-882-3261,2270 Bronx Park East,10467,1,18,1020078,252376,keshea@bronxparkeastacademy.com,http://bronxparkeastacademy.com,5,9,3,11XAYQ,40.859399,-73.870811,11,15,33201,2049740,2043400006,Bronxdale +XAYV,NYCEEC,X,Promesa Head Start,,212-410-7707,1650 Undercliff Ave,10453,1,36,1006054,248879,masantiago@acacianetwork.org,http://acacianetwork.org,5,9,3,09XAYV,40.849339,-73.921803,5,16,20501,2120359,2028770261,University Heights-Morris Heights +XAZB,NYCEEC,X,Santa Maria Early Childhood Academy,,718-823-3636,1659 Zerega Ave,10462,1,40,1025490,245095,Pauline.Ramone@ccbq.org,,5,9,3,11XAZB,40.839539,-73.850694,10,18,204,2042063,2039910075,Westchester-Unionport +XAZM,NYCEEC,X,Arcadia Children's Daycare,,718-561-8062,2195 Grand Concourse,10453,1,42,1011551,251153,roy9966@msn.com,,5,9,3,10XAZM,40.855721,-73.901021,5,14,23704,2013759,2031620029,Fordham South +XAZX,NYCEEC,X,St. Clare Of Assisi Early Childhood Academy,,718-892-4080,1925 Hone Ave,10461,1,120,1023916,249355,theresa.bivona@archny.org,http://stclareofassisischool.org,5,9,3,11XAZX,40.851398,-73.856686,11,13,250,2087156,2042690037,Pelham Parkway +Z070,NYCEEC,Q,Pre - K Center At 3252 37th Street,,929-424-4760,3252 37 St,11103,1,270,1005951,215719,MCerff@schools.nyc.gov,,5,9,3,30Z070,40.759308,-73.920948,1,22,59,4436898,4006470016,Astoria +Z073,NYCEEC,K,Pre - K Center At 7415 Ft. Hamilton Parkway,,718-333-5745,7415 Ft Hamilton Pkwy,11228,1,300,979897,167343,DGounar@schools.nyc.gov,,5,9,3,20Z073,40.626158,-74.015894,10,43,206,3148471,3059340001,Dyker Heights +Z077,NYCEEC,K,Pre - K Center At 385 Avenue W,,347-492-6782,385 Ave W,11223,1,126,993033,155357,JSkop@schools.nyc.gov,,5,9,3,21Z077,40.592894,-73.968638,15,47,388,3193833,3071540040,Homecrest +Z087,NYCEEC,X,Pre - K Center At 2512 Marion Avenue,,917-473-7623,2512 Marion Ave,10458,1,260,1013841,253070,mcroft@schools.nyc.gov,,5,9,3,10Z087,40.861316,-73.893236,5,15,39902,2118012,2030260014,Bedford Park-Fordham North +Z088,NYCEEC,Q,Pre - K Center At 56 - 01 61st Street,,929-424-4620,56 - 01 61 St,11378,1,180,1010827,203395,BTekverk@schools.nyc.gov,,5,9,3,24Z088,40.72497,-73.90431,5,30,531,,,Maspeth diff --git a/bulk/addBuildingsToGroup.py b/bulk/addBuildingsToGroup.py new file mode 100644 index 0000000000000000000000000000000000000000..5915e5b5416e5ec937f9eef7f17dac3afa01f947 --- /dev/null +++ b/bulk/addBuildingsToGroup.py @@ -0,0 +1,77 @@ +# Add MOS-UPK Buildings to UPK building group +import csv +import psycopg2 +'postgresql://building_service_stg:sedDcHmDLjwldNOP47VA@buildingstg.czgvwxaefxfj.us-east-1.rds.amazonaws.com/building' +'postgresql://building_service_prod:6WrW5DiqpF6fQTcuNsnh@buildingprod.czgvwxaefxfj.us-east-1.rds.amazonaws.com:5432/building' +filename = "UPK-NYCEEC-open.csv" +bgroup_id = 42 # Building Group ID +hostname = 'buildingprod.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +username = 'building_service_prod' +password = '6WrW5DiqpF6fQTcuNsnh' +database = 'building' + +def getBuildingsInLot( conn, bbl, bin) : + ''' + get building from building search + ''' + cur = conn.cursor() + cur.execute( f"select building_search({bbl},{bin},NULL,NULL);" ) + results = cur.fetchone() + if results: + building = results[0] + building = building[:-1] + building = building[1:] + result = building.split(",") + return int(result[0]) + + return None + +def insertBuildingToBuildingGroup( conn, building_id, group_id) : + ''' + get building from building search + ''' + cur = conn.cursor() + query = f"insert into groups.building_bgroup (building_id, bgroup_id) values ({building_id},{group_id}) RETURNING id;" + try: + cur.execute( query ) + results = cur.fetchone() + except: + print("Failed to insert value") + conn.rollback() + else: + conn.commit() + + + return True + +# Start connection to buildings db +myConnection = psycopg2.connect( host=hostname, user=username, password=password, dbname=database ) + +# Collect MOS-UPK sites +with open(filename) as csv_file: + csv_reader = csv.reader(csv_file, delimiter=',') + line_count = 0 + found_count = 0 + # For each UPK Site get bbl, bin, and address to match in building search and add Building ID to group + for row in csv_reader: + # Column 23 is BIN, Column 24 is BBL + if line_count == 0: + line_count += 1 + else: + # Get buildings with same bbl and bin from building search + buildingID = None + line_count += 1 + # Only search for building if we have bin and bbl + if row[24] and row[23]: + buildingID = getBuildingsInLot(myConnection, row[24], row[23]) + if buildingID: + # Add building to group + found_count += 1 + print(f"{buildingID},{row[24]}") + print(f"Adding BuildingID:{buildingID} into to GroupID {bgroup_id} with following id") + # insertBuildingToBuildingGroup( myConnection, buildingID, bgroup_id ) + + print(f'Processed {line_count} lines.') + print(f'Found {line_count} buildings by BBL and BIN.') + +myConnection.close() diff --git a/bulk/generateScores.py b/bulk/generateScores.py new file mode 100644 index 0000000000000000000000000000000000000000..6f7fd687cc4481ff5caf4bc8b4244527da91f0f7 --- /dev/null +++ b/bulk/generateScores.py @@ -0,0 +1,207 @@ +# Generate Scores +import csv +import psycopg2 +import boto3 +import json +import simplejson +from pprint import pprint + +sites = "upkbuildings.csv" +bucket = 'external-data-assets.blocpower.io' + +aws_ak = "AKIAJJEJYT4OJPQV54TA" +aws_sk = "Mw+c8naA7zvhyKXVi5upa08h0GkGe1G9liSzd1wK" +s3_resource = boto3.resource('s3',aws_access_key_id=aws_ak,aws_secret_access_key=aws_sk) +scores_json = 'scores.json' + +# DB Credentials + +# Prod Credentials +# hostname = 'buildingprod.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +# username = 'building_service_prod' +# password = '6WrW5DiqpF6fQTcuNsnh' +# database = 'building' + +# Staging Credentials +# hostname = 'buildingstg.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +# username = 'building_service_stg' +# password = 'sedDcHmDLjwldNOP47VA' +# database = 'building' + +# Dev Credentials +hostname = 'buildingdev.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +username = 'building_service' +password = 'EcIn^+T+' +database = 'building' + +def processFile(file, buildings): + ''' + Process the file we generated and saved in s3 + ''' + content = file.get()['Body'].read() + count = 0 + # newScores + for building in content.split(b"\n"): + building_arr = building.split(b',') + # print(len(building_arr)) + + if count == 0 : + print(building_arr) + + if len(building_arr) == 5 and building_arr[1].decode("utf-8") in buildings.keys(): + print("found one!") + print(building_arr) + + count += 1 + # print(count) + +def grabScoresFromFile(file): + ''' + Process the file we generated and saved in s3 to grab scores + ''' + content = file.get()['Body'].read() + count = 0 + new_scores = [] + + for building in content.split(b"\n"): + building_arr = building.split(b',') + # print(len(building_arr)) + + if count and len(building_arr) > 1 : + score = float(building_arr[2].decode("utf-8")) + + if score > 0.0: + new_scores.append(score) + + count += 1 + + return new_scores + +def generateDummy(): + # Collect MOS-UPK sites + scores = None + + with open("scores.json") as json_file: + scores = json.load(json_file) + + # Collect dummy scores until we have enough dummy scores + dummy_scores = [] + collectScores(bucket, s3_resource, dummy_scores, len(scores)) + + for key, score in enumerate(scores): + scores[key]['score'] = int(round(dummy_scores[key])) + + scores_dict = {} + + for key, score in enumerate(scores): + scores_dict[score['building_id']] = score + + print(simplejson.dumps(list(scores_dict.values()), indent=2, sort_keys=True)) + +def collectScores(bucket,s3_resource, scores, num_scores): + ''' + Collect scores + ''' + + # For each file in s3 bucket loop over records and check if values match upk sites + loadedBucket = s3_resource.Bucket(name=bucket) + pprocessedFiles = [] + + for obj in loadedBucket.objects.all(): + pprocessedFiles.append(obj) + + for pprocessedFile in pprocessedFiles: + new_scores = grabScoresFromFile(pprocessedFile) + + for new_score in new_scores: + scores.append(new_score) + + if len(scores) >= num_scores: + break + + # # Start connection to buildings db to insert score + # myConnection = psycopg2.connect( host=hostname, user=username, password=password, dbname=database ) + # myConnection.close() + +def generateScores(bucket,s3_resource): + ''' + Generate scores + ''' + # Collect Sites in dictionary to match by BBL + buildings = {} + + # Loop over MOS-UPK sites + with open(sites) as csv_file: + csv_reader = csv.reader(csv_file, delimiter=',') + line_count = 0 + found_count = 0 + + # For each UPK Site get bbl, bin, and address to match in building search and add Building ID to group + for site in csv_reader: + # Column 23 is BIN, Column 24 is BBL + buildings[site[1]] = {'targeting': 0, 'heatpump': 0, 'building_id':site[0]} + + # For each file in s3 bucket loop over records and check if values match upk sites + loadedBucket = s3_resource.Bucket(name=bucket) + pprocessedFiles = [] + + for obj in loadedBucket.objects.all(): + pprocessedFiles.append(obj) + + heatpumpscores = [] + targetingscores = [] + count = 0 + + for pprocessedFile in pprocessedFiles: + processFile(pprocessedFile, buildings) + count += 1 + + #if count == 10: + #break + + # # Start connection to buildings db to insert score + # myConnection = psycopg2.connect( host=hostname, user=username, password=password, dbname=database ) + + # Populate scores.heatpump + + # Populate scores.targeting + + # myConnection.close() + +def getBuildingsInLot( conn, bbl, bin) : + ''' + get building from building search + ''' + cur = conn.cursor() + cur.execute( f"select building_search({bbl},{bin},NULL,NULL);" ) + results = cur.fetchone() + + if results: + building = results[0] + building = building[:-1] + building = building[1:] + result = building.split(",") + + return int(result[0]) + + return None + +def insertScoreToBuildingGroup( conn, building_id, score, scorename) : + ''' + Insert building into score + ''' + cur = conn.cursor() + query = f"insert into scores.{scorename} (building_id, score) values ({building_id},{score}) RETURNING id;" + try: + cur.execute( query ) + results = cur.fetchone() + except: + print("Failed to insert value") + conn.rollback() + else: + conn.commit() + + return True + +generateScores(bucket,s3_resource) +# generateDummy() \ No newline at end of file diff --git a/bulk/generateScores_test.py b/bulk/generateScores_test.py new file mode 100755 index 0000000000000000000000000000000000000000..bdf81fbb2d25a77c91f859183fc4bdbf7db13d49 --- /dev/null +++ b/bulk/generateScores_test.py @@ -0,0 +1,375 @@ +# Generate Scores +import csv +import psycopg2 +import boto3 +import json +import simplejson +from pprint import pprint + +sites = "upkbuildings.csv" +bucket = 'external-data-assets.blocpower.io' + +aws_ak = "AKIAJJEJYT4OJPQV54TA" +aws_sk = "Mw+c8naA7zvhyKXVi5upa08h0GkGe1G9liSzd1wK" +s3_resource = boto3.resource('s3',aws_access_key_id=aws_ak,aws_secret_access_key=aws_sk) +scores_json = 'scores.json' + +inserted_so_far = {} + +# DB Credentials + +# Prod Credentials +# hostname = 'buildingprod.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +# username = 'building_service_prod' +# password = '6WrW5DiqpF6fQTcuNsnh' +# database = 'building' + +# Staging Credentials +hostname = 'buildingstg.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +username = 'building_service_stg' +password = 'sedDcHmDLjwldNOP47VA' +database = 'building' + +# Read Credentials +hostname = 'buildingstg.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +username = 'building_service_stg' +password = 'sedDcHmDLjwldNOP47VA' +database = 'building' + +# Dev Credentials +# hostname = 'buildingdev.czgvwxaefxfj.us-east-1.rds.amazonaws.com' +# username = 'building_service' +# password = 'EcIn^+T+' +# database = 'building' + + +def processFile(file, conn): + ''' + Process the file we generated and saved in s3 + ''' + content = file.get()['Body'].read() + count = 0 + new_scores = {} + for building in content.split(b"\n"): + building_arr = building.split(b',') + + if count == 0 : + pass + elif len(building_arr) > 2: + bbl=building_arr[1].decode('utf-8') + + # Grab building_id for this building + building_id = getBuildingInLot(conn,bbl) + if building_id and building_id not in inserted_so_far.keys() : + new_score = { + 'building_id': building_id, + 'bbl': bbl, + 'heatpump': building_arr[2].decode('utf-8'), + 'prediction': building_arr[3].decode('utf-8') , + 'targeting': building_arr[4].decode('utf-8') + } + new_scores[building_id] = new_score + inserted_so_far[building_id] = 1 + + + count += 1 + return new_scores + +def processFile_upk(file,buildings): + ''' + Process the file we generated and saved in s3 + ''' + content = file.get()['Body'].read() + count = 0 + heatpump_count=0 + # newScores + save_score={} + for building in content.split(b"\n"): + building_arr = building.split(b',') + if count == 0 : + save_score={el:0 for el in building_arr} + elif len(building_arr) ==5 and building_arr[1].decode("utf-8") in buildings.keys(): + check_hp=float(building_arr[2].decode("utf-8")) + if check_hp > 0: + heatpump_count+=1 + building_id = getBuildingInLot(conn,bbl) + save_score['building_id'] = building_id + save_score['bbl'] = bbl + heatpump = building_arr[2].decode('utf-8') + save_score['heatpump'] = heatpump + prediction = building_arr[3].decode('utf-8') + save_score['prediction'] = prediction + targeting =building_arr[4].decode('utf-8') + save_score['targeting'] = targeting + + + + count += 1 + + # print(count) + return heatpump_count + +def grabScoresFromFile(file): + ''' + Process the file we generated and saved in s3 to grab scores + ''' + content = file.get()['Body'].read() + count = 0 + new_scores = [] + + for building in content.split(b"\n"): + building_arr = building.split(b',') + # print(len(building_arr)) + + if count and len(building_arr) > 1 : + score = float(building_arr[2].decode("utf-8")) + + if score > 0.0: + new_scores.append(score) + + count += 1 + + print(new_scores) + +def generateDummy(): + # Collect MOS-UPK sites + scores = None + + with open("scores.json") as json_file: + scores = json.load(json_file) + + # Collect dummy scores until we have enough dummy scores + dummy_scores = [] + collectScores(bucket, s3_resource, dummy_scores, len(scores)) + + for key, score in enumerate(scores): + scores[key]['score'] = int(round(dummy_scores[key])) + + scores_dict = {} + + for key, score in enumerate(scores): + scores_dict[score['building_id']] = score + + print(simplejson.dumps(list(scores_dict.values()), indent=2, sort_keys=True)) + +def collectScores(bucket,s3_resource, scores, num_scores): + ''' + Collect scores + ''' + + # For each file in s3 bucket loop over records and check if values match upk sites + loadedBucket = s3_resource.Bucket(name=bucket) + pprocessedFiles = [] + + for obj in loadedBucket.objects.all(): + pprocessedFiles.append(obj) + + for pprocessedFile in pprocessedFiles: + new_scores = grabScoresFromFile(pprocessedFile) + + for new_score in new_scores: + scores.append(new_score) + + if len(scores) >= num_scores: + break + + # # Start connection to buildings db to insert score + # myConnection = psycopg2.connect( host=hostname, user=username, password=password, dbname=database ) + # myConnection.close() + +def generateUPKScores(bucket,s3_resource): + ''' + Generate scores + ''' + # Collect Sites in dictionary to match by BBL + buildings = {} + heatpump_count=0 + # Loop over MOS-UPK sites + with open(sites) as csv_file: + csv_reader = csv.reader(csv_file, delimiter=',') + line_count = 0 + found_count = 0 + + # For each UPK Site get bbl, bin, and address to match in building search and add Building ID to group + for site in csv_reader: + # Column 23 is BIN, Column 24 is BBL + buildings[site[1]] = {'targeting': 0, 'heatpump': 0, 'building_id':site[0]} + + # For each file in s3 bucket loop over records and check if values match upk sites + loadedBucket = s3_resource.Bucket(name=bucket) + pprocessedFiles_upk = [] + heatpump_count=0 + for obj in loadedBucket.objects.all(): + pprocessedFiles_upk.append(obj) + + heatpumpscores = [] + targetingscores = [] + count = 0 + myConnection = psycopg2.connect( host=hostname, user=username, password=password, dbname=database ) + for pprocessedFile in pprocessedFiles_upk: + heatpump_count += processFile_upk(pprocessedFile,buildings) + count += 1 + + #if count == 10: + #break + print(heatpump_count) + +def generateScores(bucket,s3_resource): + ''' + Generate scores + ''' + # For each file in s3 bucket loop over records and for each record get building_id + loadedBucket = s3_resource.Bucket(name=bucket) + pprocessedFiles = [] + + # Collect Documents + for obj in loadedBucket.objects.all(): + pprocessedFiles.append(obj) + + count = 0 + + # Start connection to buildings db to insert score + myConnection = psycopg2.connect( host=hostname, user=username, password=password, dbname=database ) + for pprocessedFile in pprocessedFiles: + scores = processFile(pprocessedFile, myConnection) + count += 1 + + # Populate scores.heatpumpscore + insertHeatpumScoresToBuildingGroup(myConnection, scores, 'heatpumpscore') + + # Populate scores.targetingscore + insertTargetingScoresToBuildingGroup(myConnection,scores,'targetingscore') + + if count %2 ==1: + print(count) + myConnection.close() + +def getBuildingInLot( conn, bbl, bin='NULL') : + ''' + get building_id from building search + ''' + cur = conn.cursor() + cur.execute( f"select building_search({bbl},{bin},NULL,NULL);" ) + results = cur.fetchone() + + if results: + building = results[0] + building = building[:-1] + building = building[1:] + result = building.split(",") + + return int(result[0]) + + return None + +def getBuildingsInUPK() : + ''' + get building_id from building search + [{ + "building_id": 277515, + "bbl": 3055240001 + }] + ''' + # Start connection to buildings db to insert score + conn = psycopg2.connect( host=hostname, user=username, password=password, dbname=database ) + cur = conn.cursor() + cur.execute( f"select building_id from groups.building_bgroup where bgroup_id=19;" ) + results = cur.fetchall() + count = 0 + bbls = [] + for result in results: + query = f"select building_id, bbl from building_search(NULL,{result[0]},NULL,NULL) limit 1;" + cur.execute(query) + bid_bbl = cur.fetchone() + building = { + 'building_id': bid_bbl[0], + 'bbl': bid_bbl[1] + } + bbls.append(building) + count += 1 + + # print(bbls) + pretty = simplejson.dumps( bbls , indent=2, sort_keys=True) + print(pretty) + return None + + + +def check_database(conn,scorename): + query = f" select count(*) from scores.{scorename}" + df = pd.read_sql(query, myConnection ) + print(df) + return True + +def insertScoreToBuildingGroup( conn, building_id, score, scorename) : + ''' + Insert building into score + ''' + cur = conn.cursor() + query = f"insert into scores.{scorename} (building_id, score) values ({building_id},{score}) RETURNING id;" + cur.execute( query ) + try: + cur.execute( query ) + results = cur.fetchone() + except Exception as e: + print("insertScoreToBuildingGroup: Failed to insert value") + print(e) + conn.rollback() + else: + conn.commit() + + return True + +def insertHeatpumScoresToBuildingGroup( conn, scores, scorename) : + ''' + Insert building into score + ''' + count = 0 + values = '' + for index, value in enumerate(scores): + # Append to values string + value = f'({scores[value]["building_id"]} , {scores[value]["heatpump"]}, current_timestamp),' + values += value + values = values[:-1] + cur = conn.cursor() + + query = f"insert into scores.{scorename} (building_id, score, created) values {values};" + + try: + cur.execute( query ) + except Exception as e: + print("insertHeatpumScoresToBuildingGroup: Failed to insert values") + print(e) + conn.rollback() + else: + conn.commit() + + return True + +def insertTargetingScoresToBuildingGroup( conn, scores, scorename) : + ''' + Insert building into score + ''' + count = 0 + values = '' + for index, value in enumerate(scores): + # Append to values string + value = f'({scores[value]["building_id"]} , {scores[value]["targeting"]}, current_timestamp),' + values += value + values = values[:-1] + cur = conn.cursor() + query = f"insert into scores.{scorename} (building_id, score, created) values {values};" + + try: + cur.execute( query ) + except Exception as e: + print("insertTargetingScoresToBuildingGroup: Failed to insert values") + print(e) + conn.rollback() + else: + conn.commit() + + return True + +#generateScores(bucket,s3_resource) +getBuildingsInUPK() diff --git a/bulk/scores.json b/bulk/scores.json new file mode 100644 index 0000000000000000000000000000000000000000..21176b9e8251f8622112c4f7218b72984c725c90 --- /dev/null +++ b/bulk/scores.json @@ -0,0 +1,1087 @@ +[{ "building_id": 277515, "score": 50 }, +{ "building_id": 347428, "score": 50 }, +{ "building_id": 402709, "score": 50 }, +{ "building_id": 274854, "score": 50 }, +{ "building_id": 403177, "score": 50 }, +{ "building_id": 185634, "score": 50 }, +{ "building_id": 324582, "score": 50 }, +{ "building_id": 208688, "score": 50 }, +{ "building_id": 276285, "score": 50 }, +{ "building_id": 254414, "score": 50 }, +{ "building_id": 408711, "score": 50 }, +{ "building_id": 339773, "score": 50 }, +{ "building_id": 188566, "score": 50 }, +{ "building_id": 282991, "score": 50 }, +{ "building_id": 281024, "score": 50 }, +{ "building_id": 389367, "score": 50 }, +{ "building_id": 297592, "score": 50 }, +{ "building_id": 182524, "score": 50 }, +{ "building_id": 340779, "score": 50 }, +{ "building_id": 323149, "score": 50 }, +{ "building_id": 349012, "score": 50 }, +{ "building_id": 289798, "score": 50 }, +{ "building_id": 256495, "score": 50 }, +{ "building_id": 394750, "score": 50 }, +{ "building_id": 296634, "score": 50 }, +{ "building_id": 277799, "score": 50 }, +{ "building_id": 406702, "score": 50 }, +{ "building_id": 220487, "score": 50 }, +{ "building_id": 252477, "score": 50 }, +{ "building_id": 347819, "score": 50 }, +{ "building_id": 403329, "score": 50 }, +{ "building_id": 263036, "score": 50 }, +{ "building_id": 459081, "score": 50 }, +{ "building_id": 281165, "score": 50 }, +{ "building_id": 275773, "score": 50 }, +{ "building_id": 261689, "score": 50 }, +{ "building_id": 270473, "score": 50 }, +{ "building_id": 315119, "score": 50 }, +{ "building_id": 403391, "score": 50 }, +{ "building_id": 270306, "score": 50 }, +{ "building_id": 459079, "score": 50 }, +{ "building_id": 378952, "score": 50 }, +{ "building_id": 250536, "score": 50 }, +{ "building_id": 281641, "score": 50 }, +{ "building_id": 400156, "score": 50 }, +{ "building_id": 399715, "score": 50 }, +{ "building_id": 264418, "score": 50 }, +{ "building_id": 207014, "score": 50 }, +{ "building_id": 259815, "score": 50 }, +{ "building_id": 351079, "score": 50 }, +{ "building_id": 218014, "score": 50 }, +{ "building_id": 396576, "score": 50 }, +{ "building_id": 339470, "score": 50 }, +{ "building_id": 403399, "score": 50 }, +{ "building_id": 282691, "score": 50 }, +{ "building_id": 377249, "score": 50 }, +{ "building_id": 152888, "score": 50 }, +{ "building_id": 183201, "score": 50 }, +{ "building_id": 401299, "score": 50 }, +{ "building_id": 403651, "score": 50 }, +{ "building_id": 231473, "score": 50 }, +{ "building_id": 188028, "score": 50 }, +{ "building_id": 332934, "score": 50 }, +{ "building_id": 208362, "score": 50 }, +{ "building_id": 261522, "score": 50 }, +{ "building_id": 184362, "score": 50 }, +{ "building_id": 276617, "score": 50 }, +{ "building_id": 171131, "score": 50 }, +{ "building_id": 195395, "score": 50 }, +{ "building_id": 454938, "score": 50 }, +{ "building_id": 194788, "score": 50 }, +{ "building_id": 330532, "score": 50 }, +{ "building_id": 284912, "score": 50 }, +{ "building_id": 324569, "score": 50 }, +{ "building_id": 455972, "score": 50 }, +{ "building_id": 230952, "score": 50 }, +{ "building_id": 403080, "score": 50 }, +{ "building_id": 397483, "score": 50 }, +{ "building_id": 233954, "score": 50 }, +{ "building_id": 372411, "score": 50 }, +{ "building_id": 251691, "score": 50 }, +{ "building_id": 199011, "score": 50 }, +{ "building_id": 244981, "score": 50 }, +{ "building_id": 236095, "score": 50 }, +{ "building_id": 394649, "score": 50 }, +{ "building_id": 266460, "score": 50 }, +{ "building_id": 371848, "score": 50 }, +{ "building_id": 253193, "score": 50 }, +{ "building_id": 407313, "score": 50 }, +{ "building_id": 395904, "score": 50 }, +{ "building_id": 402019, "score": 50 }, +{ "building_id": 220966, "score": 50 }, +{ "building_id": 183716, "score": 50 }, +{ "building_id": 191614, "score": 50 }, +{ "building_id": 263405, "score": 50 }, +{ "building_id": 414503, "score": 50 }, +{ "building_id": 164333, "score": 50 }, +{ "building_id": 455129, "score": 50 }, +{ "building_id": 280804, "score": 50 }, +{ "building_id": 455955, "score": 50 }, +{ "building_id": 272643, "score": 50 }, +{ "building_id": 402115, "score": 50 }, +{ "building_id": 242126, "score": 50 }, +{ "building_id": 224274, "score": 50 }, +{ "building_id": 224248, "score": 50 }, +{ "building_id": 188566, "score": 50 }, +{ "building_id": 271447, "score": 50 }, +{ "building_id": 455233, "score": 50 }, +{ "building_id": 402266, "score": 50 }, +{ "building_id": 302075, "score": 50 }, +{ "building_id": 185630, "score": 50 }, +{ "building_id": 400470, "score": 50 }, +{ "building_id": 193829, "score": 50 }, +{ "building_id": 401362, "score": 50 }, +{ "building_id": 282692, "score": 50 }, +{ "building_id": 231477, "score": 50 }, +{ "building_id": 243276, "score": 50 }, +{ "building_id": 242578, "score": 50 }, +{ "building_id": 182449, "score": 50 }, +{ "building_id": 408735, "score": 50 }, +{ "building_id": 408893, "score": 50 }, +{ "building_id": 190091, "score": 50 }, +{ "building_id": 153321, "score": 50 }, +{ "building_id": 244586, "score": 50 }, +{ "building_id": 223694, "score": 50 }, +{ "building_id": 208486, "score": 50 }, +{ "building_id": 406018, "score": 50 }, +{ "building_id": 160141, "score": 50 }, +{ "building_id": 186217, "score": 50 }, +{ "building_id": 184364, "score": 50 }, +{ "building_id": 235543, "score": 50 }, +{ "building_id": 413912, "score": 50 }, +{ "building_id": 280908, "score": 50 }, +{ "building_id": 261892, "score": 50 }, +{ "building_id": 255915, "score": 50 }, +{ "building_id": 235045, "score": 50 }, +{ "building_id": 201786, "score": 50 }, +{ "building_id": 206498, "score": 50 }, +{ "building_id": 414461, "score": 50 }, +{ "building_id": 205333, "score": 50 }, +{ "building_id": 207343, "score": 50 }, +{ "building_id": 199058, "score": 50 }, +{ "building_id": 221748, "score": 50 }, +{ "building_id": 399797, "score": 50 }, +{ "building_id": 399412, "score": 50 }, +{ "building_id": 218569, "score": 50 }, +{ "building_id": 402312, "score": 50 }, +{ "building_id": 402318, "score": 50 }, +{ "building_id": 452376, "score": 50 }, +{ "building_id": 227502, "score": 50 }, +{ "building_id": 216919, "score": 50 }, +{ "building_id": 394571, "score": 50 }, +{ "building_id": 210364, "score": 50 }, +{ "building_id": 295870, "score": 50 }, +{ "building_id": 283992, "score": 50 }, +{ "building_id": 171811, "score": 50 }, +{ "building_id": 177215, "score": 50 }, +{ "building_id": 403806, "score": 50 }, +{ "building_id": 207926, "score": 50 }, +{ "building_id": 174192, "score": 50 }, +{ "building_id": 403555, "score": 50 }, +{ "building_id": 157967, "score": 50 }, +{ "building_id": 163263, "score": 50 }, +{ "building_id": 404093, "score": 50 }, +{ "building_id": 281375, "score": 50 }, +{ "building_id": 400038, "score": 50 }, +{ "building_id": 194238, "score": 50 }, +{ "building_id": 201486, "score": 50 }, +{ "building_id": 199824, "score": 50 }, +{ "building_id": 189809, "score": 50 }, +{ "building_id": 400012, "score": 50 }, +{ "building_id": 397502, "score": 50 }, +{ "building_id": 400182, "score": 50 }, +{ "building_id": 400012, "score": 50 }, +{ "building_id": 188601, "score": 50 }, +{ "building_id": 168600, "score": 50 }, +{ "building_id": 181574, "score": 50 }, +{ "building_id": 406254, "score": 50 }, +{ "building_id": 181362, "score": 50 }, +{ "building_id": 181179, "score": 50 }, +{ "building_id": 255278, "score": 50 }, +{ "building_id": 261750, "score": 50 }, +{ "building_id": 254023, "score": 50 }, +{ "building_id": 246690, "score": 50 }, +{ "building_id": 249939, "score": 50 }, +{ "building_id": 226996, "score": 50 }, +{ "building_id": 254868, "score": 50 }, +{ "building_id": 455455, "score": 50 }, +{ "building_id": 399443, "score": 50 }, +{ "building_id": 397229, "score": 50 }, +{ "building_id": 400981, "score": 50 }, +{ "building_id": 407170, "score": 50 }, +{ "building_id": 392384, "score": 50 }, +{ "building_id": 397229, "score": 50 }, +{ "building_id": 412057, "score": 50 }, +{ "building_id": 237065, "score": 50 }, +{ "building_id": 391927, "score": 50 }, +{ "building_id": 412057, "score": 50 }, +{ "building_id": 281746, "score": 50 }, +{ "building_id": 152501, "score": 50 }, +{ "building_id": 394873, "score": 50 }, +{ "building_id": 279805, "score": 50 }, +{ "building_id": 284741, "score": 50 }, +{ "building_id": 274370, "score": 50 }, +{ "building_id": 403190, "score": 50 }, +{ "building_id": 297435, "score": 50 }, +{ "building_id": 298228, "score": 50 }, +{ "building_id": 454339, "score": 50 }, +{ "building_id": 397317, "score": 50 }, +{ "building_id": 387101, "score": 50 }, +{ "building_id": 386823, "score": 50 }, +{ "building_id": 333737, "score": 50 }, +{ "building_id": 324758, "score": 50 }, +{ "building_id": 333760, "score": 50 }, +{ "building_id": 401515, "score": 50 }, +{ "building_id": 397718, "score": 50 }, +{ "building_id": 330745, "score": 50 }, +{ "building_id": 343304, "score": 50 }, +{ "building_id": 326760, "score": 50 }, +{ "building_id": 345139, "score": 50 }, +{ "building_id": 254331, "score": 50 }, +{ "building_id": 264272, "score": 50 }, +{ "building_id": 263087, "score": 50 }, +{ "building_id": 220952, "score": 50 }, +{ "building_id": 381959, "score": 50 }, +{ "building_id": 343302, "score": 50 }, +{ "building_id": 265764, "score": 50 }, +{ "building_id": 361890, "score": 50 }, +{ "building_id": 353161, "score": 50 }, +{ "building_id": 402636, "score": 50 }, +{ "building_id": 229463, "score": 50 }, +{ "building_id": 223360, "score": 50 }, +{ "building_id": 456693, "score": 50 }, +{ "building_id": 391940, "score": 50 }, +{ "building_id": 224558, "score": 50 }, +{ "building_id": 181786, "score": 50 }, +{ "building_id": 406947, "score": 50 }, +{ "building_id": 399702, "score": 50 }, +{ "building_id": 228328, "score": 50 }, +{ "building_id": 456352, "score": 50 }, +{ "building_id": 198983, "score": 50 }, +{ "building_id": 271337, "score": 50 }, +{ "building_id": 458695, "score": 50 }, +{ "building_id": 353985, "score": 50 }, +{ "building_id": 407475, "score": 50 }, +{ "building_id": 278740, "score": 50 }, +{ "building_id": 266628, "score": 50 }, +{ "building_id": 170588, "score": 50 }, +{ "building_id": 401657, "score": 50 }, +{ "building_id": 391927, "score": 50 }, +{ "building_id": 211719, "score": 50 }, +{ "building_id": 211368, "score": 50 }, +{ "building_id": 459089, "score": 50 }, +{ "building_id": 164830, "score": 50 }, +{ "building_id": 407827, "score": 50 }, +{ "building_id": 455972, "score": 50 }, +{ "building_id": 162800, "score": 50 }, +{ "building_id": 208830, "score": 50 }, +{ "building_id": 348583, "score": 50 }, +{ "building_id": 183007, "score": 50 }, +{ "building_id": 403728, "score": 50 }, +{ "building_id": 407425, "score": 50 }, +{ "building_id": 220251, "score": 50 }, +{ "building_id": 187733, "score": 50 }, +{ "building_id": 404617, "score": 50 }, +{ "building_id": 391807, "score": 50 }, +{ "building_id": 406778, "score": 50 }, +{ "building_id": 455674, "score": 50 }, +{ "building_id": 187304, "score": 50 }, +{ "building_id": 151904, "score": 50 }, +{ "building_id": 262089, "score": 50 }, +{ "building_id": 391940, "score": 50 }, +{ "building_id": 348682, "score": 50 }, +{ "building_id": 262620, "score": 50 }, +{ "building_id": 266013, "score": 50 }, +{ "building_id": 394709, "score": 50 }, +{ "building_id": 466803, "score": 50 }, +{ "building_id": 332934, "score": 50 }, +{ "building_id": 306697, "score": 50 }, +{ "building_id": 442863, "score": 50 }, +{ "building_id": 408348, "score": 50 }, +{ "building_id": 228350, "score": 50 }, +{ "building_id": 408523, "score": 50 }, +{ "building_id": 401557, "score": 50 }, +{ "building_id": 167142, "score": 50 }, +{ "building_id": 302076, "score": 50 }, +{ "building_id": 200266, "score": 50 }, +{ "building_id": 458263, "score": 50 }, +{ "building_id": 263664, "score": 50 }, +{ "building_id": 305809, "score": 50 }, +{ "building_id": 252913, "score": 50 }, +{ "building_id": 333113, "score": 50 }, +{ "building_id": 281745, "score": 50 }, +{ "building_id": 388626, "score": 50 }, +{ "building_id": 458551, "score": 50 }, +{ "building_id": 225006, "score": 50 }, +{ "building_id": 397478, "score": 50 }, +{ "building_id": 154261, "score": 50 }, +{ "building_id": 343513, "score": 50 }, +{ "building_id": 229462, "score": 50 }, +{ "building_id": 408523, "score": 50 }, +{ "building_id": 248241, "score": 50 }, +{ "building_id": 401362, "score": 50 }, +{ "building_id": 364576, "score": 50 }, +{ "building_id": 169435, "score": 50 }, +{ "building_id": 404363, "score": 50 }, +{ "building_id": 158156, "score": 50 }, +{ "building_id": 405514, "score": 50 }, +{ "building_id": 185818, "score": 50 }, +{ "building_id": 248771, "score": 50 }, +{ "building_id": 230428, "score": 50 }, +{ "building_id": 390784, "score": 50 }, +{ "building_id": 455276, "score": 50 }, +{ "building_id": 332114, "score": 50 }, +{ "building_id": 357746, "score": 50 }, +{ "building_id": 187475, "score": 50 }, +{ "building_id": 458355, "score": 50 }, +{ "building_id": 281754, "score": 50 }, +{ "building_id": 210944, "score": 50 }, +{ "building_id": 401199, "score": 50 }, +{ "building_id": 152943, "score": 50 }, +{ "building_id": 262202, "score": 50 }, +{ "building_id": 242018, "score": 50 }, +{ "building_id": 282748, "score": 50 }, +{ "building_id": 458409, "score": 50 }, +{ "building_id": 392926, "score": 50 }, +{ "building_id": 278413, "score": 50 }, +{ "building_id": 458267, "score": 50 }, +{ "building_id": 366572, "score": 50 }, +{ "building_id": 406463, "score": 50 }, +{ "building_id": 304458, "score": 50 }, +{ "building_id": 278821, "score": 50 }, +{ "building_id": 262851, "score": 50 }, +{ "building_id": 259819, "score": 50 }, +{ "building_id": 342299, "score": 50 }, +{ "building_id": 272352, "score": 50 }, +{ "building_id": 231175, "score": 50 }, +{ "building_id": 287627, "score": 50 }, +{ "building_id": 322741, "score": 50 }, +{ "building_id": 394571, "score": 50 }, +{ "building_id": 372957, "score": 50 }, +{ "building_id": 235503, "score": 50 }, +{ "building_id": 189551, "score": 50 }, +{ "building_id": 325403, "score": 50 }, +{ "building_id": 270292, "score": 50 }, +{ "building_id": 404986, "score": 50 }, +{ "building_id": 387810, "score": 50 }, +{ "building_id": 179243, "score": 50 }, +{ "building_id": 280844, "score": 50 }, +{ "building_id": 250293, "score": 50 }, +{ "building_id": 454642, "score": 50 }, +{ "building_id": 338953, "score": 50 }, +{ "building_id": 280983, "score": 50 }, +{ "building_id": 230463, "score": 50 }, +{ "building_id": 285526, "score": 50 }, +{ "building_id": 459216, "score": 50 }, +{ "building_id": 255560, "score": 50 }, +{ "building_id": 268196, "score": 50 }, +{ "building_id": 199998, "score": 50 }, +{ "building_id": 389409, "score": 50 }, +{ "building_id": 326206, "score": 50 }, +{ "building_id": 405514, "score": 50 }, +{ "building_id": 382789, "score": 50 }, +{ "building_id": 310454, "score": 50 }, +{ "building_id": 386171, "score": 50 }, +{ "building_id": 277049, "score": 50 }, +{ "building_id": 459317, "score": 50 }, +{ "building_id": 374056, "score": 50 }, +{ "building_id": 286863, "score": 50 }, +{ "building_id": 154302, "score": 50 }, +{ "building_id": 170352, "score": 50 }, +{ "building_id": 266720, "score": 50 }, +{ "building_id": 272988, "score": 50 }, +{ "building_id": 392795, "score": 50 }, +{ "building_id": 255232, "score": 50 }, +{ "building_id": 306443, "score": 50 }, +{ "building_id": 262153, "score": 50 }, +{ "building_id": 168926, "score": 50 }, +{ "building_id": 320346, "score": 50 }, +{ "building_id": 458241, "score": 50 }, +{ "building_id": 301942, "score": 50 }, +{ "building_id": 339651, "score": 50 }, +{ "building_id": 386368, "score": 50 }, +{ "building_id": 210631, "score": 50 }, +{ "building_id": 342922, "score": 50 }, +{ "building_id": 458264, "score": 50 }, +{ "building_id": 267991, "score": 50 }, +{ "building_id": 403098, "score": 50 }, +{ "building_id": 339611, "score": 50 }, +{ "building_id": 325400, "score": 50 }, +{ "building_id": 202490, "score": 50 }, +{ "building_id": 1032793, "score": 50 }, +{ "building_id": 40329, "score": 50 }, +{ "building_id": 1088601, "score": 50 }, +{ "building_id": 1056664, "score": 50 }, +{ "building_id": 1083281, "score": 50 }, +{ "building_id": 1054214, "score": 50 }, +{ "building_id": 31149, "score": 50 }, +{ "building_id": 1082056, "score": 50 }, +{ "building_id": 8567, "score": 50 }, +{ "building_id": 1079097, "score": 50 }, +{ "building_id": 1063153, "score": 50 }, +{ "building_id": 1064245, "score": 50 }, +{ "building_id": 40438, "score": 50 }, +{ "building_id": 40104, "score": 50 }, +{ "building_id": 2921, "score": 50 }, +{ "building_id": 31843, "score": 50 }, +{ "building_id": 17128, "score": 50 }, +{ "building_id": 1052335, "score": 50 }, +{ "building_id": 40415, "score": 50 }, +{ "building_id": 41961, "score": 50 }, +{ "building_id": 1044838, "score": 50 }, +{ "building_id": 1015806, "score": 50 }, +{ "building_id": 1051451, "score": 50 }, +{ "building_id": 1015632, "score": 50 }, +{ "building_id": 1084087, "score": 50 }, +{ "building_id": 29609, "score": 50 }, +{ "building_id": 1064146, "score": 50 }, +{ "building_id": 31844, "score": 50 }, +{ "building_id": 38592, "score": 50 }, +{ "building_id": 37677, "score": 50 }, +{ "building_id": 1084520, "score": 50 }, +{ "building_id": 1080690, "score": 50 }, +{ "building_id": 1000055, "score": 50 }, +{ "building_id": 1077421, "score": 50 }, +{ "building_id": 1080671, "score": 50 }, +{ "building_id": 41342, "score": 50 }, +{ "building_id": 37347, "score": 50 }, +{ "building_id": 1012843, "score": 50 }, +{ "building_id": 16893, "score": 50 }, +{ "building_id": 17030, "score": 50 }, +{ "building_id": 1081040, "score": 50 }, +{ "building_id": 1081091, "score": 50 }, +{ "building_id": 33925, "score": 50 }, +{ "building_id": 38352, "score": 50 }, +{ "building_id": 31624, "score": 50 }, +{ "building_id": 1084095, "score": 50 }, +{ "building_id": 31910, "score": 50 }, +{ "building_id": 1085366, "score": 50 }, +{ "building_id": 27286, "score": 50 }, +{ "building_id": 1080030, "score": 50 }, +{ "building_id": 24733, "score": 50 }, +{ "building_id": 24992, "score": 50 }, +{ "building_id": 8934, "score": 50 }, +{ "building_id": 16017, "score": 50 }, +{ "building_id": 27385, "score": 50 }, +{ "building_id": 1079519, "score": 50 }, +{ "building_id": 42997, "score": 50 }, +{ "building_id": 1083946, "score": 50 }, +{ "building_id": 27215, "score": 50 }, +{ "building_id": 37773, "score": 50 }, +{ "building_id": 39493, "score": 50 }, +{ "building_id": 1054513, "score": 50 }, +{ "building_id": 43808, "score": 50 }, +{ "building_id": 1953, "score": 50 }, +{ "building_id": 1007156, "score": 50 }, +{ "building_id": 1004060, "score": 50 }, +{ "building_id": 33215, "score": 50 }, +{ "building_id": 1004240, "score": 50 }, +{ "building_id": 37773, "score": 50 }, +{ "building_id": 1003704, "score": 50 }, +{ "building_id": 3545, "score": 50 }, +{ "building_id": 37773, "score": 50 }, +{ "building_id": 37350, "score": 50 }, +{ "building_id": 1086515, "score": 50 }, +{ "building_id": 1083933, "score": 50 }, +{ "building_id": 35344, "score": 50 }, +{ "building_id": 1066406, "score": 50 }, +{ "building_id": 42166, "score": 50 }, +{ "building_id": 36768, "score": 50 }, +{ "building_id": 1083583, "score": 50 }, +{ "building_id": 20223, "score": 50 }, +{ "building_id": 1004415, "score": 50 }, +{ "building_id": 1086807, "score": 50 }, +{ "building_id": 1005645, "score": 50 }, +{ "building_id": 1077591, "score": 50 }, +{ "building_id": 510, "score": 50 }, +{ "building_id": 38791, "score": 50 }, +{ "building_id": 1055986, "score": 50 }, +{ "building_id": 28127, "score": 50 }, +{ "building_id": 24732, "score": 50 }, +{ "building_id": 40051, "score": 50 }, +{ "building_id": 30019, "score": 50 }, +{ "building_id": 38686, "score": 50 }, +{ "building_id": 1085936, "score": 50 }, +{ "building_id": 15698, "score": 50 }, +{ "building_id": 41244, "score": 50 }, +{ "building_id": 24795, "score": 50 }, +{ "building_id": 1080693, "score": 50 }, +{ "building_id": 1079341, "score": 50 }, +{ "building_id": 38593, "score": 50 }, +{ "building_id": 1079340, "score": 50 }, +{ "building_id": 1081443, "score": 50 }, +{ "building_id": 1085254, "score": 50 }, +{ "building_id": 40107, "score": 50 }, +{ "building_id": 1089104, "score": 50 }, +{ "building_id": 27284, "score": 50 }, +{ "building_id": 31624, "score": 50 }, +{ "building_id": 1085412, "score": 50 }, +{ "building_id": 1032551, "score": 50 }, +{ "building_id": 58, "score": 50 }, +{ "building_id": 1084124, "score": 50 }, +{ "building_id": 1060450, "score": 50 }, +{ "building_id": 27294, "score": 50 }, +{ "building_id": 35174, "score": 50 }, +{ "building_id": 35178, "score": 50 }, +{ "building_id": 41970, "score": 50 }, +{ "building_id": 33787, "score": 50 }, +{ "building_id": 1081877, "score": 50 }, +{ "building_id": 34758, "score": 50 }, +{ "building_id": 36074, "score": 50 }, +{ "building_id": 34430, "score": 50 }, +{ "building_id": 4831, "score": 50 }, +{ "building_id": 1003737, "score": 50 }, +{ "building_id": 1013005, "score": 50 }, +{ "building_id": 1057901, "score": 50 }, +{ "building_id": 42141, "score": 50 }, +{ "building_id": 1087549, "score": 50 }, +{ "building_id": 38791, "score": 50 }, +{ "building_id": 1081115, "score": 50 }, +{ "building_id": 37103, "score": 50 }, +{ "building_id": 41976, "score": 50 }, +{ "building_id": 1004080, "score": 50 }, +{ "building_id": 1083954, "score": 50 }, +{ "building_id": 40410, "score": 50 }, +{ "building_id": 1088345, "score": 50 }, +{ "building_id": 26821, "score": 50 }, +{ "building_id": 37243, "score": 50 }, +{ "building_id": 38401, "score": 50 }, +{ "building_id": 26334, "score": 50 }, +{ "building_id": 1064395, "score": 50 }, +{ "building_id": 35178, "score": 50 }, +{ "building_id": 1053457, "score": 50 }, +{ "building_id": 32151, "score": 50 }, +{ "building_id": 7474, "score": 50 }, +{ "building_id": 1000000, "score": 50 }, +{ "building_id": 1044214, "score": 50 }, +{ "building_id": 1082576, "score": 50 }, +{ "building_id": 16893, "score": 50 }, +{ "building_id": 1002736, "score": 50 }, +{ "building_id": 1084035, "score": 50 }, +{ "building_id": 1087243, "score": 50 }, +{ "building_id": 37635, "score": 50 }, +{ "building_id": 43639, "score": 50 }, +{ "building_id": 1030337, "score": 50 }, +{ "building_id": 2344, "score": 50 }, +{ "building_id": 1004617, "score": 50 }, +{ "building_id": 37424, "score": 50 }, +{ "building_id": 595347, "score": 50 }, +{ "building_id": 484959, "score": 50 }, +{ "building_id": 536842, "score": 50 }, +{ "building_id": 527686, "score": 50 }, +{ "building_id": 571618, "score": 50 }, +{ "building_id": 784993, "score": 50 }, +{ "building_id": 786109, "score": 50 }, +{ "building_id": 698395, "score": 50 }, +{ "building_id": 555378, "score": 50 }, +{ "building_id": 766112, "score": 50 }, +{ "building_id": 560067, "score": 50 }, +{ "building_id": 876433, "score": 50 }, +{ "building_id": 505128, "score": 50 }, +{ "building_id": 716159, "score": 50 }, +{ "building_id": 786832, "score": 50 }, +{ "building_id": 755680, "score": 50 }, +{ "building_id": 661289, "score": 50 }, +{ "building_id": 785838, "score": 50 }, +{ "building_id": 786787, "score": 50 }, +{ "building_id": 785326, "score": 50 }, +{ "building_id": 785966, "score": 50 }, +{ "building_id": 709852, "score": 50 }, +{ "building_id": 619570, "score": 50 }, +{ "building_id": 712223, "score": 50 }, +{ "building_id": 785405, "score": 50 }, +{ "building_id": 553759, "score": 50 }, +{ "building_id": 594367, "score": 50 }, +{ "building_id": 647092, "score": 50 }, +{ "building_id": 596501, "score": 50 }, +{ "building_id": 793008, "score": 50 }, +{ "building_id": 870795, "score": 50 }, +{ "building_id": 872852, "score": 50 }, +{ "building_id": 677673, "score": 50 }, +{ "building_id": 595384, "score": 50 }, +{ "building_id": 860371, "score": 50 }, +{ "building_id": 872853, "score": 50 }, +{ "building_id": 613665, "score": 50 }, +{ "building_id": 779333, "score": 50 }, +{ "building_id": 686228, "score": 50 }, +{ "building_id": 502193, "score": 50 }, +{ "building_id": 515938, "score": 50 }, +{ "building_id": 664952, "score": 50 }, +{ "building_id": 1171999, "score": 50 }, +{ "building_id": 666609, "score": 50 }, +{ "building_id": 785545, "score": 50 }, +{ "building_id": 793067, "score": 50 }, +{ "building_id": 757414, "score": 50 }, +{ "building_id": 780418, "score": 50 }, +{ "building_id": 734409, "score": 50 }, +{ "building_id": 528301, "score": 50 }, +{ "building_id": 1187209, "score": 50 }, +{ "building_id": 516454, "score": 50 }, +{ "building_id": 548549, "score": 50 }, +{ "building_id": 532269, "score": 50 }, +{ "building_id": 786335, "score": 50 }, +{ "building_id": 535337, "score": 50 }, +{ "building_id": 793676, "score": 50 }, +{ "building_id": 732618, "score": 50 }, +{ "building_id": 690066, "score": 50 }, +{ "building_id": 552627, "score": 50 }, +{ "building_id": 562162, "score": 50 }, +{ "building_id": 689398, "score": 50 }, +{ "building_id": 742844, "score": 50 }, +{ "building_id": 751518, "score": 50 }, +{ "building_id": 493464, "score": 50 }, +{ "building_id": 765100, "score": 50 }, +{ "building_id": 778620, "score": 50 }, +{ "building_id": 779933, "score": 50 }, +{ "building_id": 736262, "score": 50 }, +{ "building_id": 666745, "score": 50 }, +{ "building_id": 534826, "score": 50 }, +{ "building_id": 736478, "score": 50 }, +{ "building_id": 783679, "score": 50 }, +{ "building_id": 572800, "score": 50 }, +{ "building_id": 591218, "score": 50 }, +{ "building_id": 866162, "score": 50 }, +{ "building_id": 620097, "score": 50 }, +{ "building_id": 619770, "score": 50 }, +{ "building_id": 624624, "score": 50 }, +{ "building_id": 686753, "score": 50 }, +{ "building_id": 493093, "score": 50 }, +{ "building_id": 773649, "score": 50 }, +{ "building_id": 657902, "score": 50 }, +{ "building_id": 524274, "score": 50 }, +{ "building_id": 528923, "score": 50 }, +{ "building_id": 522834, "score": 50 }, +{ "building_id": 522654, "score": 50 }, +{ "building_id": 524715, "score": 50 }, +{ "building_id": 566986, "score": 50 }, +{ "building_id": 563419, "score": 50 }, +{ "building_id": 780627, "score": 50 }, +{ "building_id": 523216, "score": 50 }, +{ "building_id": 490386, "score": 50 }, +{ "building_id": 542522, "score": 50 }, +{ "building_id": 532534, "score": 50 }, +{ "building_id": 524281, "score": 50 }, +{ "building_id": 785002, "score": 50 }, +{ "building_id": 873389, "score": 50 }, +{ "building_id": 789016, "score": 50 }, +{ "building_id": 785079, "score": 50 }, +{ "building_id": 789015, "score": 50 }, +{ "building_id": 595820, "score": 50 }, +{ "building_id": 596645, "score": 50 }, +{ "building_id": 603178, "score": 50 }, +{ "building_id": 785808, "score": 50 }, +{ "building_id": 620427, "score": 50 }, +{ "building_id": 593699, "score": 50 }, +{ "building_id": 584773, "score": 50 }, +{ "building_id": 584449, "score": 50 }, +{ "building_id": 593884, "score": 50 }, +{ "building_id": 590541, "score": 50 }, +{ "building_id": 593638, "score": 50 }, +{ "building_id": 610338, "score": 50 }, +{ "building_id": 785929, "score": 50 }, +{ "building_id": 517607, "score": 50 }, +{ "building_id": 633892, "score": 50 }, +{ "building_id": 625284, "score": 50 }, +{ "building_id": 785853, "score": 50 }, +{ "building_id": 581201, "score": 50 }, +{ "building_id": 1104163, "score": 50 }, +{ "building_id": 625510, "score": 50 }, +{ "building_id": 733624, "score": 50 }, +{ "building_id": 672618, "score": 50 }, +{ "building_id": 805313, "score": 50 }, +{ "building_id": 772207, "score": 50 }, +{ "building_id": 670433, "score": 50 }, +{ "building_id": 671974, "score": 50 }, +{ "building_id": 673301, "score": 50 }, +{ "building_id": 488843, "score": 50 }, +{ "building_id": 733048, "score": 50 }, +{ "building_id": 769951, "score": 50 }, +{ "building_id": 666581, "score": 50 }, +{ "building_id": 662106, "score": 50 }, +{ "building_id": 776561, "score": 50 }, +{ "building_id": 671588, "score": 50 }, +{ "building_id": 671589, "score": 50 }, +{ "building_id": 669775, "score": 50 }, +{ "building_id": 792757, "score": 50 }, +{ "building_id": 682583, "score": 50 }, +{ "building_id": 562038, "score": 50 }, +{ "building_id": 555655, "score": 50 }, +{ "building_id": 780798, "score": 50 }, +{ "building_id": 677673, "score": 50 }, +{ "building_id": 730729, "score": 50 }, +{ "building_id": 687220, "score": 50 }, +{ "building_id": 681889, "score": 50 }, +{ "building_id": 627861, "score": 50 }, +{ "building_id": 784458, "score": 50 }, +{ "building_id": 536451, "score": 50 }, +{ "building_id": 684785, "score": 50 }, +{ "building_id": 707112, "score": 50 }, +{ "building_id": 756775, "score": 50 }, +{ "building_id": 753799, "score": 50 }, +{ "building_id": 711236, "score": 50 }, +{ "building_id": 700005, "score": 50 }, +{ "building_id": 706551, "score": 50 }, +{ "building_id": 786820, "score": 50 }, +{ "building_id": 740486, "score": 50 }, +{ "building_id": 642900, "score": 50 }, +{ "building_id": 492795, "score": 50 }, +{ "building_id": 501983, "score": 50 }, +{ "building_id": 784976, "score": 50 }, +{ "building_id": 516116, "score": 50 }, +{ "building_id": 928418, "score": 50 }, +{ "building_id": 792011, "score": 50 }, +{ "building_id": 779846, "score": 50 }, +{ "building_id": 515333, "score": 50 }, +{ "building_id": 515666, "score": 50 }, +{ "building_id": 786732, "score": 50 }, +{ "building_id": 500325, "score": 50 }, +{ "building_id": 519619, "score": 50 }, +{ "building_id": 781941, "score": 50 }, +{ "building_id": 785744, "score": 50 }, +{ "building_id": 492385, "score": 50 }, +{ "building_id": 791563, "score": 50 }, +{ "building_id": 756043, "score": 50 }, +{ "building_id": 717621, "score": 50 }, +{ "building_id": 609210, "score": 50 }, +{ "building_id": 1110939, "score": 50 }, +{ "building_id": 755680, "score": 50 }, +{ "building_id": 785935, "score": 50 }, +{ "building_id": 610875, "score": 50 }, +{ "building_id": 504006, "score": 50 }, +{ "building_id": 1098111, "score": 50 }, +{ "building_id": 804142, "score": 50 }, +{ "building_id": 779589, "score": 50 }, +{ "building_id": 784458, "score": 50 }, +{ "building_id": 928474, "score": 50 }, +{ "building_id": 924854, "score": 50 }, +{ "building_id": 979801, "score": 50 }, +{ "building_id": 682583, "score": 50 }, +{ "building_id": 548323, "score": 50 }, +{ "building_id": 1132349, "score": 50 }, +{ "building_id": 549205, "score": 50 }, +{ "building_id": 550375, "score": 50 }, +{ "building_id": 531018, "score": 50 }, +{ "building_id": 595768, "score": 50 }, +{ "building_id": 570554, "score": 50 }, +{ "building_id": 786790, "score": 50 }, +{ "building_id": 527212, "score": 50 }, +{ "building_id": 800449, "score": 50 }, +{ "building_id": 874640, "score": 50 }, +{ "building_id": 530610, "score": 50 }, +{ "building_id": 797717, "score": 50 }, +{ "building_id": 778015, "score": 50 }, +{ "building_id": 525179, "score": 50 }, +{ "building_id": 512156, "score": 50 }, +{ "building_id": 637615, "score": 50 }, +{ "building_id": 629927, "score": 50 }, +{ "building_id": 779776, "score": 50 }, +{ "building_id": 683111, "score": 50 }, +{ "building_id": 499012, "score": 50 }, +{ "building_id": 521693, "score": 50 }, +{ "building_id": 783537, "score": 50 }, +{ "building_id": 655511, "score": 50 }, +{ "building_id": 642900, "score": 50 }, +{ "building_id": 727591, "score": 50 }, +{ "building_id": 673636, "score": 50 }, +{ "building_id": 717187, "score": 50 }, +{ "building_id": 593836, "score": 50 }, +{ "building_id": 786187, "score": 50 }, +{ "building_id": 536813, "score": 50 }, +{ "building_id": 901727, "score": 50 }, +{ "building_id": 618071, "score": 50 }, +{ "building_id": 524104, "score": 50 }, +{ "building_id": 632790, "score": 50 }, +{ "building_id": 784509, "score": 50 }, +{ "building_id": 656332, "score": 50 }, +{ "building_id": 623492, "score": 50 }, +{ "building_id": 494683, "score": 50 }, +{ "building_id": 490385, "score": 50 }, +{ "building_id": 510549, "score": 50 }, +{ "building_id": 595335, "score": 50 }, +{ "building_id": 562205, "score": 50 }, +{ "building_id": 597669, "score": 50 }, +{ "building_id": 625979, "score": 50 }, +{ "building_id": 645509, "score": 50 }, +{ "building_id": 740096, "score": 50 }, +{ "building_id": 785811, "score": 50 }, +{ "building_id": 615133, "score": 50 }, +{ "building_id": 1152826, "score": 50 }, +{ "building_id": 534988, "score": 50 }, +{ "building_id": 875450, "score": 50 }, +{ "building_id": 1030492, "score": 50 }, +{ "building_id": 976093, "score": 50 }, +{ "building_id": 1032317, "score": 50 }, +{ "building_id": 1021384, "score": 50 }, +{ "building_id": 1030520, "score": 50 }, +{ "building_id": 1029909, "score": 50 }, +{ "building_id": 984577, "score": 50 }, +{ "building_id": 1030579, "score": 50 }, +{ "building_id": 987030, "score": 50 }, +{ "building_id": 1030147, "score": 50 }, +{ "building_id": 995348, "score": 50 }, +{ "building_id": 943797, "score": 50 }, +{ "building_id": 1030166, "score": 50 }, +{ "building_id": 108967, "score": 50 }, +{ "building_id": 1030143, "score": 50 }, +{ "building_id": 1010745, "score": 50 }, +{ "building_id": 965216, "score": 50 }, +{ "building_id": 946736, "score": 50 }, +{ "building_id": 1029868, "score": 50 }, +{ "building_id": 944834, "score": 50 }, +{ "building_id": 968628, "score": 50 }, +{ "building_id": 974335, "score": 50 }, +{ "building_id": 941666, "score": 50 }, +{ "building_id": 1030287, "score": 50 }, +{ "building_id": 1031531, "score": 50 }, +{ "building_id": 1021412, "score": 50 }, +{ "building_id": 992369, "score": 50 }, +{ "building_id": 986648, "score": 50 }, +{ "building_id": 1030606, "score": 50 }, +{ "building_id": 1030471, "score": 50 }, +{ "building_id": 972959, "score": 50 }, +{ "building_id": 967787, "score": 50 }, +{ "building_id": 983394, "score": 50 }, +{ "building_id": 1030291, "score": 50 }, +{ "building_id": 974171, "score": 50 }, +{ "building_id": 1018955, "score": 50 }, +{ "building_id": 1059018, "score": 50 }, +{ "building_id": 1050564, "score": 50 }, +{ "building_id": 1021384, "score": 50 }, +{ "building_id": 941755, "score": 50 }, +{ "building_id": 977090, "score": 50 }, +{ "building_id": 1018095, "score": 50 }, +{ "building_id": 941889, "score": 50 }, +{ "building_id": 1011310, "score": 50 }, +{ "building_id": 1030705, "score": 50 }, +{ "building_id": 1043216, "score": 50 }, +{ "building_id": 1015582, "score": 50 }, +{ "building_id": 1019119, "score": 50 }, +{ "building_id": 997345, "score": 50 }, +{ "building_id": 995911, "score": 50 }, +{ "building_id": 976768, "score": 50 }, +{ "building_id": 942022, "score": 50 }, +{ "building_id": 988614, "score": 50 }, +{ "building_id": 945180, "score": 50 }, +{ "building_id": 949977, "score": 50 }, +{ "building_id": 1047004, "score": 50 }, +{ "building_id": 977616, "score": 50 }, +{ "building_id": 1031730, "score": 50 }, +{ "building_id": 117759, "score": 50 }, +{ "building_id": 957483, "score": 50 }, +{ "building_id": 1032119, "score": 50 }, +{ "building_id": 1021653, "score": 50 }, +{ "building_id": 961662, "score": 50 }, +{ "building_id": 998624, "score": 50 }, +{ "building_id": 970816, "score": 50 }, +{ "building_id": 942020, "score": 50 }, +{ "building_id": 990478, "score": 50 }, +{ "building_id": 949513, "score": 50 }, +{ "building_id": 1070108, "score": 50 }, +{ "building_id": 1067202, "score": 50 }, +{ "building_id": 1030001, "score": 50 }, +{ "building_id": 1182429, "score": 50 }, +{ "building_id": 92116, "score": 50 }, +{ "building_id": 141596, "score": 50 }, +{ "building_id": 61284, "score": 50 }, +{ "building_id": 121216, "score": 50 }, +{ "building_id": 54458, "score": 50 }, +{ "building_id": 122952, "score": 50 }, +{ "building_id": 67065, "score": 50 }, +{ "building_id": 71836, "score": 50 }, +{ "building_id": 87032, "score": 50 }, +{ "building_id": 89421, "score": 50 }, +{ "building_id": 47265, "score": 50 }, +{ "building_id": 92440, "score": 50 }, +{ "building_id": 117853, "score": 50 }, +{ "building_id": 96070, "score": 50 }, +{ "building_id": 57819, "score": 50 }, +{ "building_id": 90308, "score": 50 }, +{ "building_id": 117427, "score": 50 }, +{ "building_id": 63516, "score": 50 }, +{ "building_id": 63841, "score": 50 }, +{ "building_id": 117859, "score": 50 }, +{ "building_id": 124784, "score": 50 }, +{ "building_id": 102428, "score": 50 }, +{ "building_id": 77931, "score": 50 }, +{ "building_id": 74188, "score": 50 }, +{ "building_id": 117498, "score": 50 }, +{ "building_id": 114644, "score": 50 }, +{ "building_id": 57500, "score": 50 }, +{ "building_id": 122970, "score": 50 }, +{ "building_id": 50432, "score": 50 }, +{ "building_id": 116581, "score": 50 }, +{ "building_id": 50648, "score": 50 }, +{ "building_id": 95190, "score": 50 }, +{ "building_id": 63043, "score": 50 }, +{ "building_id": 124673, "score": 50 }, +{ "building_id": 59458, "score": 50 }, +{ "building_id": 79344, "score": 50 }, +{ "building_id": 56785, "score": 50 }, +{ "building_id": 89443, "score": 50 }, +{ "building_id": 83697, "score": 50 }, +{ "building_id": 118041, "score": 50 }, +{ "building_id": 93944, "score": 50 }, +{ "building_id": 139025, "score": 50 }, +{ "building_id": 123231, "score": 50 }, +{ "building_id": 119689, "score": 50 }, +{ "building_id": 117509, "score": 50 }, +{ "building_id": 130113, "score": 50 }, +{ "building_id": 52999, "score": 50 }, +{ "building_id": 71859, "score": 50 }, +{ "building_id": 54753, "score": 50 }, +{ "building_id": 50279, "score": 50 }, +{ "building_id": 66799, "score": 50 }, +{ "building_id": 57506, "score": 50 }, +{ "building_id": 69215, "score": 50 }, +{ "building_id": 116013, "score": 50 }, +{ "building_id": 55967, "score": 50 }, +{ "building_id": 124355, "score": 50 }, +{ "building_id": 86478, "score": 50 }, +{ "building_id": 122162, "score": 50 }, +{ "building_id": 122136, "score": 50 }, +{ "building_id": 51919, "score": 50 }, +{ "building_id": 59846, "score": 50 }, +{ "building_id": 50207, "score": 50 }, +{ "building_id": 135241, "score": 50 }, +{ "building_id": 140921, "score": 50 }, +{ "building_id": 50137, "score": 50 }, +{ "building_id": 149309, "score": 50 }, +{ "building_id": 98790, "score": 50 }, +{ "building_id": 140102, "score": 50 }, +{ "building_id": 138466, "score": 50 }, +{ "building_id": 52346, "score": 50 }, +{ "building_id": 59577, "score": 50 }, +{ "building_id": 107191, "score": 50 }, +{ "building_id": 120634, "score": 50 }, +{ "building_id": 122633, "score": 50 }, +{ "building_id": 52043, "score": 50 }, +{ "building_id": 51334, "score": 50 }, +{ "building_id": 69155, "score": 50 }, +{ "building_id": 69572, "score": 50 }, +{ "building_id": 121312, "score": 50 }, +{ "building_id": 78695, "score": 50 }, +{ "building_id": 55663, "score": 50 }, +{ "building_id": 137754, "score": 50 }, +{ "building_id": 119454, "score": 50 }, +{ "building_id": 122455, "score": 50 }, +{ "building_id": 120498, "score": 50 }, +{ "building_id": 57819, "score": 50 }, +{ "building_id": 77069, "score": 50 }, +{ "building_id": 127944, "score": 50 }, +{ "building_id": 143799, "score": 50 }, +{ "building_id": 61224, "score": 50 }, +{ "building_id": 120479, "score": 50 }, +{ "building_id": 48417, "score": 50 }, +{ "building_id": 118090, "score": 50 }, +{ "building_id": 48448, "score": 50 }, +{ "building_id": 55327, "score": 50 }, +{ "building_id": 54425, "score": 50 }, +{ "building_id": 122601, "score": 50 }, +{ "building_id": 95544, "score": 50 }, +{ "building_id": 60582, "score": 50 }, +{ "building_id": 120585, "score": 50 }, +{ "building_id": 117593, "score": 50 }, +{ "building_id": 48602, "score": 50 }, +{ "building_id": 119775, "score": 50 }, +{ "building_id": 119787, "score": 50 }, +{ "building_id": 119771, "score": 50 }, +{ "building_id": 48859, "score": 50 }, +{ "building_id": 47729, "score": 50 }, +{ "building_id": 120821, "score": 50 }, +{ "building_id": 112147, "score": 50 }, +{ "building_id": 124803, "score": 50 }, +{ "building_id": 117723, "score": 50 }, +{ "building_id": 120484, "score": 50 }, +{ "building_id": 119837, "score": 50 }, +{ "building_id": 122591, "score": 50 }, +{ "building_id": 122208, "score": 50 }, +{ "building_id": 49850, "score": 50 }, +{ "building_id": 48883, "score": 50 }, +{ "building_id": 125507, "score": 50 }, +{ "building_id": 137779, "score": 50 }, +{ "building_id": 55182, "score": 50 }, +{ "building_id": 120585, "score": 50 }, +{ "building_id": 49700, "score": 50 }, +{ "building_id": 55887, "score": 50 }, +{ "building_id": 57495, "score": 50 }, +{ "building_id": 55350, "score": 50 }, +{ "building_id": 122717, "score": 50 }, +{ "building_id": 58514, "score": 50 }, +{ "building_id": 61790, "score": 50 }, +{ "building_id": 60016, "score": 50 }, +{ "building_id": 116320, "score": 50 }, +{ "building_id": 61585, "score": 50 }, +{ "building_id": 1082781, "score": 50 }, +{ "building_id": 122710, "score": 50 }, +{ "building_id": 122772, "score": 50 }, +{ "building_id": 122771, "score": 50 }, +{ "building_id": 116162, "score": 50 }, +{ "building_id": 118120, "score": 50 }, +{ "building_id": 118740, "score": 50 }, +{ "building_id": 117373, "score": 50 }, +{ "building_id": 114657, "score": 50 }, +{ "building_id": 57182, "score": 50 }, +{ "building_id": 122717, "score": 50 }, +{ "building_id": 140684, "score": 50 }, +{ "building_id": 59709, "score": 50 }, +{ "building_id": 118654, "score": 50 }, +{ "building_id": 121708, "score": 50 }, +{ "building_id": 99528, "score": 50 }, +{ "building_id": 75059, "score": 50 }, +{ "building_id": 95260, "score": 50 }, +{ "building_id": 99338, "score": 50 }, +{ "building_id": 96534, "score": 50 }, +{ "building_id": 89906, "score": 50 }, +{ "building_id": 122021, "score": 50 }, +{ "building_id": 73847, "score": 50 }, +{ "building_id": 56119, "score": 50 }, +{ "building_id": 92075, "score": 50 }, +{ "building_id": 124751, "score": 50 }, +{ "building_id": 114940, "score": 50 }, +{ "building_id": 121834, "score": 50 }, +{ "building_id": 49758, "score": 50 }, +{ "building_id": 48258, "score": 50 }, +{ "building_id": 126867, "score": 50 }, +{ "building_id": 55883, "score": 50 }, +{ "building_id": 63620, "score": 50 }, +{ "building_id": 121096, "score": 50 }, +{ "building_id": 124644, "score": 50 }, +{ "building_id": 50141, "score": 50 }, +{ "building_id": 51976, "score": 50 }, +{ "building_id": 58797, "score": 50 }, +{ "building_id": 124991, "score": 50 }, +{ "building_id": 123231, "score": 50 }, +{ "building_id": 78752, "score": 50 }, +{ "building_id": 125416, "score": 50 }, +{ "building_id": 48838, "score": 50 }, +{ "building_id": 57872, "score": 50 }, +{ "building_id": 56118, "score": 50 }, +{ "building_id": 59458, "score": 50 }, +{ "building_id": 51008, "score": 50 }, +{ "building_id": 67048, "score": 50 }, +{ "building_id": 55859, "score": 50 }, +{ "building_id": 122717, "score": 50 }, +{ "building_id": 122113, "score": 50 }, +{ "building_id": 122717, "score": 50 }, +{ "building_id": 89344, "score": 50 }, +{ "building_id": 121072, "score": 50 }, +{ "building_id": 63702, "score": 50 }, +{ "building_id": 122610, "score": 50 }, +{ "building_id": 65405, "score": 50 }, +{ "building_id": 127597, "score": 50 }, +{ "building_id": 55967, "score": 50 }, +{ "building_id": 124011, "score": 50 }, +{ "building_id": 95768, "score": 50 }, +{ "building_id": 117859, "score": 50 }, +{ "building_id": 125336, "score": 50 }, +{ "building_id": 1121212, "score": 50 }, +{ "building_id": 87178, "score": 50 }, +{ "building_id": 58403, "score": 50 }, +{ "building_id": 55342, "score": 50 }, +{ "building_id": 142187, "score": 50 }, +{ "building_id": 56497, "score": 50 }, +{ "building_id": 135137, "score": 50 }, +{ "building_id": 93936, "score": 50 }, +{ "building_id": 74899, "score": 50 }, +{ "building_id": 102792, "score": 50 }, +{ "building_id": 63620, "score": 50 }, +{ "building_id": 123310, "score": 50 }, +{ "building_id": 122970, "score": 50 }, +{ "building_id": 48925, "score": 50 }, +{ "building_id": 1082781, "score": 50 }, +{ "building_id": 60508, "score": 50 }, +{ "building_id": 142635, "score": 50 }, +{ "building_id": 98044, "score": 50 }, +{ "building_id": 54760, "score": 50 }, +{ "building_id": 47375, "score": 50 }, +{ "building_id": 82523, "score": 50 }, +{ "building_id": 143803, "score": 50 }, +{ "building_id": 75058, "score": 50 }, +{ "building_id": 59661, "score": 50 }, +{ "building_id": 117859, "score": 50 }, +{ "building_id": 784825, "score": 50 }, +{ "building_id": 293053, "score": 50 }, +{ "building_id": 336980, "score": 50 }, +{ "building_id": 57198, "score": 50 } +] diff --git a/bulk/upkbuildings.csv b/bulk/upkbuildings.csv new file mode 100644 index 0000000000000000000000000000000000000000..06090498eefbc4a89470ac2b2a67473fa7ab6010 --- /dev/null +++ b/bulk/upkbuildings.csv @@ -0,0 +1,1086 @@ +277515,3055240001 +347428,3074420011 +402709,3053470058 +274854,3054620045 +403177,3060330001 +185634,3013310019 +324582,3067410012 +208688,3021930007 +276285,3054951138 +254414,3048670118 +408711,3044520080 +339773,3072910134 +188566,3014280047 +282991,3056490038 +281024,3056000037 +389367,3088060017 +297592,3060320037 +182524,3012540063 +340779,3073110001 +323149,3066980051 +349012,3075660006 +289798,3058620060 +256495,3049200006 +394750,3067990046 +296634,3060070053 +277799,3055290034 +406702,3064040029 +220487,3032080041 +252477,3047910023 +347819,3074630005 +403329,3068550001 +263036,3051040056 +459081,3064990058 +281165,3056040001 +275773,3054870001 +261689,3050490001 +270473,3053450006 +315119,3065230001 +403391,3067310001 +270306,3053380051 +459079,3067570001 +378952,3084060035 +250536,3047400061 +281641,3056140042 +400156,3016880001 +399715,3013520080 +264418,3051570013 +207014,3020610100 +259815,3050050001 +351079,3076200057 +218014,3028920007 +396576,3072530001 +339470,3072620017 +403399,3067590001 +282691,3056420048 +377249,3083180008 +152888,3001610003 +183201,3012690054 +401299,3035900011 +403651,3017040025 +231473,3038030046 +188028,3014080037 +332934,3070650001 +208362,3021510006 +261522,3050450051 +184362,3012950145 +276617,3055040037 +171131,3009570017 +195395,3016560004 +454938,3032660020 +194788,3016450076 +330532,3069000011 +284912,3056900042 +324569,3067400049 +455972,3066850034 +230952,3037450001 +403080,3059890001 +397483,3070560014 +233954,3039300032 +372411,3082050042 +251691,3047700050 +199011,3017830023 +244981,3045070017 +236095,3040390001 +394649,3041290008 +266460,3052250002 +371848,3081790076 +253193,3048140007 +407313,3007510048 +395904,3032870021 +402019,3045860300 +220966,3032280020 +183716,3012800054 +191614,3015380046 +263405,3051240057 +414503,3009690052 +164333,3007830001 +455129,3033730007 +280804,3055940046 +455955,3052950047 +272643,3053990032 +402115,3047860005 +242126,3042710005 +224274,3033620055 +224248,3033620006 +188566,3014280047 +271447,3053690006 +455233,3014170007 +402266,3028670001 +302075,3061770039 +185630,3013310009 +400470,3017190001 +193829,3016240001 +401362,3035680001 +282692,3056420053 +231477,3038050026 +243276,3043150040 +242578,3042980007 +182449,3012530007 +408735,3015200051 +408893,3034890001 +190091,3014980006 +153321,3001840025 +244586,3044570001 +223694,3033310025 +208486,3021760001 +406018,3022760037 +160141,3005520005 +186217,3013610066 +184364,3012960001 +235543,3040060037 +413912,3022030020 +280908,3055970053 +261892,3050570029 +255915,3049010073 +235045,3039760070 +201786,3018370052 +206498,3020140026 +414461,3045950215 +205333,3019690030 +207343,3020940035 +199058,3017840011 +221748,3032590023 +399797,3015800001 +399412,3017400001 +218569,3030230032 +402312,3030240001 +402318,3030260001 +452376,3018990038 +227502,3034480015 +216919,3027700001 +394571,3024080032 +210364,3023230045 +295870,3059890006 +283992,3056720011 +171811,3009750039 +177215,3011040003 +403806,3007370014 +207926,3021130001 +174192,3010340068 +403555,3002710032 +157967,3003910056 +163263,3007550045 +404093,3008760001 +281375,3056080047 +400038,3016290001 +194238,3016350041 +201486,3018330038 +199824,3018020051 +189809,3014870074 +400012,3015980001 +397502,3019380001 +400182,3016910012 +400012,3015980001 +188601,3014310054 +168600,3008890001 +181574,3012350058 +406254,3001280001 +181362,3012300044 +181179,3012240045 +255278,3048870007 +261750,3050530018 +254023,3048560012 +246690,3046310007 +249939,3047250063 +226996,3034330005 +254868,3048770052 +455455,3040560145 +399443,3043550001 +397229,3081930001 +400981,3044880001 +407170,3042920061 +392384,3037660001 +397229,3081930001 +412057,3044520085 +237065,3040890025 +391927,3033290016 +412057,3044520085 +281746,3056170050 +152501,3061530001 +394873,3057780001 +279805,3055700006 +284741,3056860068 +274370,3054480058 +403190,3061230028 +297435,3060280006 +298228,3060480049 +454339,3008660034 +397317,3086610054 +387101,3087070427 +386823,3086890045 +333737,3070870034 +324758,3067440082 +333760,3070880001 +401515,3086930001 +397718,3071370001 +330745,3069100017 +343304,3073640011 +326760,3067990005 +345139,3074050066 +254331,3048650026 +264272,3051500031 +263087,3051070001 +220952,3032270010 +381959,3085000077 +343302,3073630036 +265764,3051970040 +361890,3078580047 +353161,3076690002 +402636,3052160040 +229463,3036050010 +223360,3033150001 +456693,3031740002 +391940,3033570006 +224558,3033740001 +181786,3012400056 +406947,3075570032 +399702,3013440001 +228328,3035260215 +456352,3033800005 +198983,3017820010 +271337,3053650006 +458695,3017107501 +353985,3076900051 +407475,3009247503 +278740,3055490005 +266628,3052300003 +170588,3009470054 +401657,3039470005 +391927,3033290016 +211719,3024510008 +211368,3024180031 +459089,3044487501 +164830,3007940039 +407827,3012890025 +455972,3066850034 +162800,3007410001 +208830,3022010025 +348583,3075520100 +183007,3012630044 +403728,3018620001 +407425,3008640001 +220251,3031940006 +187733,3013990125 +404617,3069640002 +391807,3021400026 +406778,3070520034 +455674,3017547502 +187304,3013870024 +151904,3021660001 +262089,3050660011 +391940,3033570006 +348682,3075570118 +262620,3050880006 +266013,3052110026 +394709,3054951000 +466803,3079820040 +332934,3070650001 +306697,3062640030 +442863,3008587501 +408348,3009800001 +228350,3035310023 +408523,3005800016 +401557,3087600060 +167142,3008490001 +302076,3061770040 +200266,3018110019 +458263,3076300001 +263664,3051350042 +305809,3062470026 +252913,3048020031 +333113,3070770044 +281745,3056170043 +388626,3087690036 +458551,3056377502 +225006,3033840006 +397478,3070500001 +154261,3002380007 +343513,3073690068 +229462,3036040001 +408523,3005800016 +248241,3046780041 +401362,3035680001 +364576,3079150010 +169435,3009220038 +404363,3012440006 +158156,3004010001 +405514,3052150024 +185818,3013410012 +248771,3046950017 +230428,3036740045 +390784,3089070524 +455276,3007937501 +332114,3070050002 +357746,3077670006 +187475,3013910058 +458355,3080367501 +281754,3056180004 +210944,3023837503 +401199,3034390003 +152943,3001690009 +262202,3050720035 +242018,3042680023 +282748,3056440027 +458409,3070920024 +392926,3066787501 +278413,3055420072 +458267,3050837502 +366572,3079930008 +406463,3040240018 +304458,3062220045 +278821,3055500038 +262851,3050960001 +259819,3050050009 +342299,3073400046 +272352,3053920032 +231175,3037670001 +287627,3057690023 +322741,3066860076 +394571,3024080032 +372957,3082150022 +235503,3040040012 +189551,3014800002 +325403,3067570046 +270292,3053380033 +404986,3029210023 +387810,3087360026 +179243,3011600037 +280844,3055950043 +250293,3047340032 +454642,3046607501 +338953,3072180077 +280983,3055990030 +230463,3036820033 +285526,3057040045 +459216,3013840051 +255560,3048930010 +268196,3052750092 +199998,3018060007 +389409,3088090031 +326206,3067800001 +405514,3052150024 +382789,3085200042 +310454,3063600045 +386171,3086630247 +277049,3055130044 +459317,3063320071 +374056,3082430018 +286863,3057510007 +154302,3002420001 +170352,3009440006 +266720,3052310054 +272988,3054080055 +392795,3059180027 +255232,3048860005 +306443,3062590037 +262153,3050710041 +168926,3008990050 +320346,3066450002 +458241,3074300007 +301942,3061750006 +339651,3072740015 +386368,3086690088 +210631,3023430012 +342922,3073550053 +458264,3048377501 +267991,3052720001 +403098,3060110040 +339611,3072640045 +325400,3067570042 +202490,3018510039 +1032793,1012310060 +40329,1009550005 +1088601,1017857502 +1056664,1018790044 +1083281,1015660008 +1054214,1017530139 +31149,1019760006 +1082056,1022420019 +8567,1006930034 +1079097,1004410010 +1063153,1021310012 +1064245,1021750136 +40438,1021800135 +40104,1016810011 +2921,1003900001 +31843,1020270041 +17128,1012200053 +1052335,1016450007 +40415,1021210020 +41961,1021060320 +1044838,1014450014 +1015806,1008330018 +1051451,1016020044 +1015632,1008280001 +1084087,1019580001 +29609,1019130020 +1064146,1021720064 +31844,1020280001 +38592,1016400021 +37677,1003560001 +1084520,1021060003 +1080690,1016560001 +1000055,1000167518 +1077421,1001110100 +1080671,1016540011 +41342,1003510001 +37347,1003620010 +1012843,1007310001 +16893,1012130042 +17030,1012180010 +1081040,1011970046 +1081091,1016840001 +33925,1021110058 +38352,1016100023 +31624,1020140036 +1084095,1019640001 +31910,1020320017 +1085366,1020120025 +27286,1017750033 +1080030,1022160001 +24733,1016010018 +24992,1016280062 +8934,1007240010 +16017,1011840066 +27385,1017870060 +1079519,1012080001 +42997,1002480015 +1083946,1016960001 +27215,1017700159 +37773,1003230001 +39493,1016180001 +1054513,1017807501 +43808,1004010046 +1953,1002810046 +1007156,1004790001 +1004060,1003230073 +33215,1020760041 +1004240,1003500008 +37773,1003230001 +1003704,1002850029 +3545,1004150018 +37773,1003230001 +37350,1003620001 +1086515,1009620100 +1083933,1016940001 +35344,1021730001 +1066406,1001420050 +42166,1001980126 +36768,1015730020 +1083583,1007240001 +20223,1013940005 +1004415,1003740020 +1086807,1010830001 +1005645,1004230022 +1077591,1002530001 +510,1000910013 +38791,1018640009 +1055986,1018627501 +28127,1018440001 +24732,1016010001 +40051,1018360001 +30019,1019220041 +38686,1018550001 +1085936,1016007501 +15698,1011560020 +41244,1015960001 +24795,1016100001 +1080693,1016560001 +1079341,1016730006 +38593,1016470001 +1079340,1016730006 +1081443,1017090016 +1085254,1016160001 +40107,1016820046 +1089104,1019147502 +27284,1017750001 +31624,1020140036 +1085412,1020019005 +1032551,1012250001 +58,1019330001 +1084124,1019840001 +1060450,1020300010 +27294,1017770005 +35174,1021660066 +35178,1021660082 +41970,1021140058 +33787,1021080023 +1081877,1021630041 +34758,1021430048 +36074,1022340029 +34430,1021320047 +4831,1004700064 +1003737,1002880021 +1013005,1007370043 +1057901,1019120006 +42141,1015950031 +1087549,1004207501 +38791,1018640009 +1081115,1017570001 +37103,1012210007 +41976,1021500030 +1004080,1003430001 +1083954,1017010001 +40410,1021120001 +1088345,1003820022 +26821,1017300025 +37243,1010610054 +38401,1016260001 +26334,1017200058 +1064395,1021800035 +35178,1021660082 +1053457,1017220025 +32151,1020447501 +7474,1006090020 +1000000,1000047501 +1044214,1014350033 +1082576,1011540101 +16893,1012130042 +1002736,1002127503 +1084035,1018710029 +1087243,1000157502 +37635,1005330001 +43639,1001730027 +1030337,0 +2344,1003090011 +1004617,1003860033 +37424,1003410070 +595347,4051040027 +484959,4163500300 +536842,4022650090 +527686,4017020029 +571618,4036670023 +784993,4012510012 +786109,4092250001 +698395,4105710001 +555378,4030880001 +766112,4141700001 +560067,4032250004 +876433,4031360004 +505128,4008310061 +716159,4112850032 +786832,4161720020 +755680,4132320001 +661289,4090190001 +785838,4055360041 +786787,4067130041 +785326,4027120058 +785966,4089250026 +709852,4110220078 +619570,4066080002 +712223,4111080009 +785405,4033290011 +553759,4030250020 +594367,4050100038 +647092,4083520051 +596501,4051867501 +793008,4114290001 +870795,4051927502 +872852,4078800400 +677673,4095680049 +595384,4051057503 +860371,4053757502 +872853,4082290006 +613665,4061980001 +779333,4100970010 +686228,4099350031 +502193,4007440040 +515938,4012660001 +664952,4091630076 +1171999,4000290026 +666609,4092290008 +785545,4035880001 +793067,4156360007 +757414,4133810001 +780418,4016680007 +734409,4121040022 +528301,4017260005 +1187209,4107890264 +516454,4012930007 +548549,4028700001 +532269,4019180090 +786335,4160400024 +535337,4021240053 +793676,4155010002 +732618,4120220020 +690066,4101930001 +552627,4029930012 +562162,4033300033 +689398,4101550029 +742844,4125990001 +751518,4130210023 +493464,4003860015 +765100,4140640001 +778620,4159260001 +779933,4007380050 +736262,4122000052 +666745,4092340040 +534826,4020900001 +736478,4122040001 +783679,4123350044 +572800,4037070016 +591218,4048490001 +866162,4073130019 +620097,4066390016 +619770,4066190031 +624624,4069040036 +686753,4099600019 +493093,4003500020 +773649,4161200006 +657902,4089220058 +524274,4015430023 +528923,4017490007 +522834,4014880006 +522654,4014820077 +524715,4015650021 +566986,4035190005 +563419,4033910026 +780627,4019450001 +523216,4015050051 +490386,4001410027 +542522,4025060015 +532534,4019400012 +524281,4015440019 +785002,4013530001 +873389,4002440024 +789016,4050370008 +785079,4017460027 +789015,4050340014 +595820,4051370005 +596645,4051960043 +603178,4054930001 +785808,4053500001 +620427,4066560094 +593699,4049740051 +584773,4045300018 +584449,4045160027 +593884,4049830035 +590541,4048230005 +593638,4049690018 +610338,4059990020 +785929,4080820280 +517607,4013320044 +633892,4073750044 +625284,4069300011 +785853,4062340006 +581201,4041670001 +1104163,4061760001 +625510,4069400029 +733624,4120620051 +672618,4094310058 +805313,4159670001 +772207,4158310032 +670433,4093510026 +671974,4094170046 +673301,4094560030 +488843,4142600001 +733048,4120390044 +769951,4156340048 +666581,4092260069 +662106,4090510037 +776561,4162900001 +671588,4094090020 +671589,4094090021 +669775,4093320001 +792757,4123540112 +682583,4097730001 +562038,4033230008 +555655,4030940034 +780798,4020860050 +677673,4095680049 +730729,4119660001 +687220,4099860061 +681889,4097340041 +627861,4070380020 +784458,4124950002 +536451,4022190015 +684785,4098900020 +707112,4109410206 +756775,4133120015 +753799,4131520035 +711236,4110670040 +700005,4106330001 +706551,4109170029 +786820,4101030016 +740486,4124490004 +642900,4080360014 +492795,4003380023 +501983,4007400049 +784976,4011820015 +516116,4012810001 +928418,4013990023 +792011,4008820007 +779846,4005570003 +515333,4012380040 +515666,4012500063 +786732,4007710022 +500325,4006990023 +519619,4013850040 +781941,4004650100 +785744,4049780046 +492385,4002780001 +791563,4060770048 +756043,4132560001 +717621,4113340010 +609210,4059000050 +1110939,4057350045 +755680,4132320001 +785935,4081950001 +610875,4060250009 +504006,4008050031 +1098111,4131550030 +804142,4061920060 +779589,4112130001 +784458,4124950002 +928474,4017757501 +924854,4104720003 +979801,5028670100 +682583,4097730001 +548323,4028570036 +1132349,4155840016 +549205,4028940047 +550375,4029300012 +531018,4018570084 +595768,4051350001 +570554,4036310006 +786790,4077320050 +527212,4016860034 +800449,4101480001 +874640,4097130150 +530610,4018427502 +797717,4156340094 +778015,4001910020 +525179,4015870001 +512156,4011310022 +637615,4076100040 +629927,4071840011 +779776,4003350002 +683111,4097980006 +499012,4006620019 +521693,4014480001 +783537,4119460119 +655511,4088510327 +642900,4080360014 +727591,4117780082 +673636,4094680030 +717187,4113210006 +593836,4049810040 +786187,4099380078 +536813,4022640042 +901727,4130110034 +618071,4064400016 +524104,4015330054 +632790,4073300023 +784509,4158920001 +656332,4088770019 +623492,4068290001 +494683,4005390030 +490385,4001410024 +510549,4010840001 +595335,4051040007 +562205,4033330001 +597669,4052390035 +625979,4069580009 +645509,4082260016 +740096,4123930001 +785811,4053510013 +615133,4063080029 +1152826,4117540055 +534988,4021100005 +875450,4008397503 +1030492,5032150001 +976093,5022900025 +1032317,5078960048 +1021384,5002130001 +1030520,5036260013 +1029909,5001630009 +984577,5033180001 +1030579,5042790001 +987030,5035760023 +1030147,5007070243 +995348,5044240001 +943797,5000730020 +1030166,5007700009 +108967,2054390007 +1030143,5006950039 +1010745,5056880001 +965216,5010370006 +946736,5001740006 +1029868,5001070017 +944834,5001200118 +968628,5012300016 +974335,5020850009 +941666,5033550001 +1030287,5011320046 +1031531,5005450100 +1021412,5003470006 +992369,5042120025 +986648,5035590010 +1030606,5052030012 +1030471,5030870001 +972959,5016700539 +967787,5011760042 +983394,5032470020 +1030291,5011360063 +974171,5020300047 +1018955,5070910001 +1059018,5005270059 +1050564,5001970125 +1021384,5002130001 +941755,5000760200 +977090,5023800110 +1018095,5069340101 +941889,5009550100 +1011310,5059000105 +1030705,5079140005 +1043216,5076640001 +1015582,5065700033 +1019119,5074200002 +997345,5046240500 +995911,5045000015 +976768,5023750128 +942022,5020400001 +988614,5036600044 +945180,5001310225 +949977,5003030047 +1047004,5052360031 +977616,5023910030 +1031730,5012450001 +117759,2038340081 +957483,5006360012 +1032119,5035320500 +1021653,5015110200 +961662,5007960001 +998624,5049660001 +970816,5015220001 +942020,5053730001 +990478,5039050026 +949513,5002920073 +1070108,5071440528 +1067202,5020700001 +1030001,5002340001 +1182429,5068600001 +92116,2047080009 +141596,2029620029 +61284,2032520276 +121216,2037250001 +54458,2028400065 +122952,2041990001 +67065,2035240020 +71836,2038080038 +87032,2045340045 +89421,2046310075 +47265,2049470017 +92440,2047170074 +117853,2041730018 +96070,2048500076 +57819,2030580020 +90308,2046640039 +117427,2024450028 +63516,2033280060 +63841,2033420029 +117859,2042690037 +124784,2054520001 +102428,2050570001 +77931,2041080029 +74188,2039320075 +117498,2027520009 +114644,2057080088 +57500,2030430050 +122970,2044380027 +50432,2025510026 +116581,2058710547 +50648,2025730071 +95190,2048260043 +63043,2033100057 +124673,2039580080 +59458,2031490140 +79344,2041920023 +56785,2029850017 +89443,2046330011 +83697,2044110300 +118041,2054090475 +93944,2047600001 +139025,2031280001 +123231,2051410120 +119689,2022630019 +117509,2028080021 +130113,2028470041 +52999,2027630029 +71859,2038090018 +54753,2028610063 +50279,2025250007 +66799,2035110030 +57506,2030440024 +69215,2037360001 +116013,2058422002 +55967,2029310015 +124355,2026410042 +86478,2045200059 +122162,2022720038 +122136,2055820001 +51919,2026960030 +59846,2031780032 +50207,2025220043 +135241,2028610129 +140921,2025350010 +50137,2025160051 +149309,2024080052 +98790,2049580032 +140102,2030310021 +138466,2029770110 +52346,2027270045 +59577,2031560081 +107191,2054090133 +120634,2029440001 +122633,2029510032 +52043,2027050009 +51334,2026540001 +69155,2037320039 +69572,2037480015 +121312,2038860002 +78695,2041560011 +55663,2028880021 +137754,2022920013 +119454,2029520014 +122455,2027080025 +120498,2026540002 +57819,2030580020 +77069,2040780010 +127944,2024800001 +143799,2027210010 +61224,2032500062 +120479,2026380090 +48417,2023680039 +118090,2057130087 +48448,2023700045 +55327,2028770522 +54425,2028370011 +122601,2028280037 +95544,2048370051 +60582,2032170060 +120585,2028950001 +117593,2032460076 +48602,2023830012 +119775,2023060009 +119787,2023240001 +119771,2022980040 +48859,2024110041 +47729,2022870135 +120821,2023810029 +112147,2055760097 +124803,2034560005 +117723,2036120001 +120484,2026390001 +119837,2023950001 +122591,2027870001 +122208,2025270032 +49850,2024840009 +48883,2024200040 +125507,2028510021 +137779,2028910039 +55182,2028760060 +120585,2028950001 +49700,2024620042 +55887,2029190005 +57495,2030430030 +55350,2028780028 +122717,2032180035 +58514,2030890024 +61790,2032630047 +60016,2031900001 +116320,2058590304 +61585,2032570111 +1082781,1022150116 +122710,2031920056 +122772,2033280138 +122771,2033270001 +116162,2058501585 +118120,2059120013 +118740,2059200456 +117373,2059520374 +114657,2057090046 +57182,2030240008 +122717,2032180035 +140684,2030370015 +59709,2031670001 +118654,2043287501 +121708,2043490001 +99528,2049800066 +75059,2039910078 +95260,2048290006 +99338,2049770051 +96534,2048600045 +89906,2046510044 +122021,2049050001 +73847,2039140022 +56119,2029390090 +92075,2047070001 +124751,2050450008 +114940,2057500382 +121834,2046290050 +49758,2024720034 +48258,2023460029 +126867,2029300075 +55883,2029180024 +63620,2033320010 +121096,2035700001 +124644,2032470165 +50141,2025170001 +51976,2027010001 +58797,2031010023 +124991,2055420001 +123231,2051410120 +78752,2041570050 +125416,2023720041 +48838,2024100056 +57872,2030600055 +56118,2029390045 +59458,2031490140 +51008,2026140043 +67048,2035230034 +55859,2029110030 +122717,2032180035 +122113,2051350051 +122717,2032180035 +89344,2046270037 +121072,2035510001 +63702,2033350060 +122610,2028680111 +65405,2033940055 +127597,2056470108 +55967,2029310015 +124011,2032220062 +95768,2048430034 +117859,2042690037 +125336,2022890003 +1121212,2028870100 +87178,2045420001 +58403,2030840001 +55342,2028780005 +142187,2033550090 +56497,2029650100 +135137,2057887501 +93936,2047590034 +74899,2039860007 +102792,2050720013 +63620,2033320010 +123310,2037760071 +122970,2044380027 +48925,2024220035 +1082781,1022150116 +60508,2032140001 +142635,2045960022 +98044,2049030042 +54760,2028610114 +47375,2022650059 +82523,2043400006 +143803,2028770261 +75058,2039910075 +59661,2031620029 +117859,2042690037 +784825,4006470016 +293053,3059340001 +336980,3071540040 +57198,2030260014