Skip to content

Instantly share code, notes, and snippets.

@armollica
Last active June 3, 2016 02:40
Show Gist options
  • Save armollica/b3009dc6f46647e4c56c385094f3ed61 to your computer and use it in GitHub Desktop.
Save armollica/b3009dc6f46647e4c56c385094f3ed61 to your computer and use it in GitHub Desktop.
NYC Ancestry
height: 12300

The number of people in New York faceted by self-reported ancestry. Click the "Open" button to the right to see it fullscreen.

Data from the U.S. Census Bureau

<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
<style>
html {
font-family: 'Raleway', sans-serif;
}
.map {
display: inline-block;
position: relative;
padding-top: 50px;
}
.map h3 {
text-align: center;
position: absolute;
top: 10px;
left: 10px;
width: 200px;
margin-top: 0px;
}
</style>
</head>
<body>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script>
var width = 300,
height = width;
var fontSizeScale = d3.scale.pow().exponent(0.15)
.domain([0, 1000000])
.range([0, 50]);
var areaScale = d3.scale.linear()
.domain([0, 1000])
.range([0, width]);
var projection = d3.geo.mercator()
.center([-73.98, 40.70])
.scale(30000)
.translate([width/2, height/2]);
var path = d3.geo.path()
.projection(projection);
var container = d3.select("body").append("div")
.attr("class", "container");
d3.json("nyc.json", function(error, nyc) {
if (error) throw error;
console.log(nyc);
var ancestries = nyc.tracts.properties.ancestries;
ancestries.sort(function(a, b) {
return d3.ascending(a.ancestry_name, b.ancestry_name);
});
var maps = container.selectAll(".map")
.data(ancestries)
.enter().append("div")
.attr("class", "map");
maps.append("h3")
.style("font-size", function(d) {
return fontSizeScale(d.people / d.ancestry_name.length);
})
.text(function(d) { return d.ancestry_name; });
//// Draw maps
// Do it this way so it starts rendering maps sequentially
// instead of holding off and rendering only after all maps
// are ready. There's got to be a better way...
var canvases = maps.append("canvas")
.attr("width", width)
.attr("height", height)[0];
var timer = d3.timer(function(t) {
var canvas = canvases.shift();
if (canvas !== undefined) {
var context = canvas.getContext("2d"),
ancestry_id = canvas.__data__.ancestry_id;
path.context(context);
draw(context, ancestry_id);
}
else { return true; }
});
function draw(context, ancestry_id) {
// Draw the boroughs
context.lineWidth = 0.2;
context.beginPath();
path(nyc.boroughs);
context.stroke();
// Draw the bubbles
context.save();
context.globalAlpha = 0.7;
context.lineWidth = 0.1;
nyc.tracts.features.forEach(function(d) {
var p = projection(d.geometry.coordinates),
people = d.properties.ancestry[ancestry_id] || 0,
area = areaScale(people),
radius = Math.sqrt(area / Math.PI);
context.beginPath();
context.arc(p[0], p[1], radius, 0, 2*Math.PI);
context.stroke();
});
context.restore();
}
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"tracts":{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG::4269"}},"features":[{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081003400","ancestry":{"1":2064,"5":44,"6":31,"14":31,"36":2,"37":3,"42":84,"44":26,"45":99,"49":88,"51":134,"61":43,"63":38,"67":15,"73":36,"87":36,"94":46,"101":26,"103":10,"105":10,"108":1314,"109":254}},"geometry":{"type":"Point","coordinates":[-73.86604246120065,40.68206245200882]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003400","ancestry":{"1":2064,"5":44,"6":31,"14":31,"36":2,"37":3,"42":84,"44":26,"45":99,"49":88,"51":134,"61":43,"63":38,"67":15,"73":36,"87":36,"94":46,"101":26,"103":10,"105":10,"108":1314,"109":254}},"geometry":{"type":"Point","coordinates":[-73.85818631303191,40.68477327050081]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003900","ancestry":{"1":1574,"3":5,"5":38,"6":6,"14":6,"22":7,"42":18,"44":7,"49":109,"51":205,"61":10,"63":2,"64":22,"69":6,"89":8,"92":8,"94":15,"99":7,"102":8,"107":47,"108":1018,"109":173}},"geometry":{"type":"Point","coordinates":[-73.94093146982,40.76279941336002]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081003600","ancestry":{"1":3484,"5":60,"16":16,"36":39,"41":33,"42":48,"45":286,"49":150,"51":195,"61":9,"64":15,"94":115,"102":77,"103":38,"108":2204,"109":619}},"geometry":{"type":"Point","coordinates":[-73.8638912050488,40.68153207492307]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003600","ancestry":{"1":3484,"5":60,"16":16,"36":39,"41":33,"42":48,"45":286,"49":150,"51":195,"61":9,"64":15,"94":115,"102":77,"103":38,"108":2204,"109":619}},"geometry":{"type":"Point","coordinates":[-73.85681742160244,40.683771348631]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003700","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.94360609356136,40.7621527503609]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003800","ancestry":{"1":2586,"6":31,"10":31,"24":8,"36":36,"40":6,"42":43,"45":300,"49":74,"51":109,"61":87,"64":83,"90":5,"94":47,"103":23,"105":24,"108":1604,"109":373}},"geometry":{"type":"Point","coordinates":[-73.84749399622815,40.68479987520622]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081004001","ancestry":{"1":2018,"2":10,"5":34,"6":26,"12":25,"15":1,"22":41,"26":5,"36":24,"40":40,"42":40,"45":105,"49":124,"51":152,"61":73,"73":11,"88":11,"92":30,"94":42,"101":29,"102":13,"108":993,"109":429}},"geometry":{"type":"Point","coordinates":[-73.8458742587586,40.683248101871136]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081004200","ancestry":{"1":5005,"5":22,"42":30,"44":12,"45":509,"49":81,"51":401,"61":85,"63":145,"73":7,"87":7,"94":54,"99":11,"102":19,"105":24,"108":3308,"109":606}},"geometry":{"type":"Point","coordinates":[-73.86375431927516,40.680982832397625]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081004200","ancestry":{"1":5005,"5":22,"42":30,"44":12,"45":509,"49":81,"51":401,"61":85,"63":145,"73":7,"87":7,"94":54,"99":11,"102":19,"105":24,"108":3308,"109":606}},"geometry":{"type":"Point","coordinates":[-73.85796395893067,40.68181451691409]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081004300","ancestry":{"1":2380,"5":167,"19":15,"22":70,"32":5,"36":9,"45":7,"46":12,"49":71,"51":52,"64":8,"73":25,"75":8,"87":17,"92":24,"94":56,"101":46,"102":9,"105":1,"108":1594,"109":404}},"geometry":{"type":"Point","coordinates":[-73.93751422247351,40.76094509795726]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077907","ancestry":{"1":3149,"2":58,"3":10,"5":350,"6":50,"8":37,"10":28,"15":4,"18":5,"19":5,"26":27,"29":12,"31":5,"32":29,"35":35,"36":24,"38":21,"40":8,"42":38,"46":24,"49":12,"50":43,"51":41,"53":4,"61":77,"63":16,"64":131,"73":16,"76":8,"87":16,"94":120,"97":90,"104":30,"108":1621,"109":560}},"geometry":{"type":"Point","coordinates":[-73.81848023150894,40.72496230825368]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081023500","ancestry":{"1":8577,"5":35,"20":36,"24":52,"26":29,"36":92,"42":139,"49":215,"51":63,"61":30,"63":55,"64":17,"67":30,"89":136,"91":41,"92":13,"108":6770,"109":1225}},"geometry":{"type":"Point","coordinates":[-73.91759418324445,40.7393490856128]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081024000","ancestry":{"1":6132,"5":175,"23":72,"36":13,"42":13,"45":731,"48":32,"49":41,"51":21,"55":27,"66":10,"73":201,"76":52,"87":22,"88":127,"94":398,"96":88,"99":16,"101":110,"102":74,"103":86,"105":24,"108":4190,"109":377}},"geometry":{"type":"Point","coordinates":[-73.80507928339944,40.70327751470854]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081024300","ancestry":{"1":5947,"3":66,"5":148,"6":28,"15":28,"16":16,"19":15,"31":18,"35":7,"38":17,"40":41,"42":167,"44":184,"45":19,"46":9,"49":260,"51":254,"56":20,"61":106,"73":8,"87":8,"108":3780,"109":978}},"geometry":{"type":"Point","coordinates":[-73.90204028603235,40.73666666912474]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077908","ancestry":{"1":4101,"2":359,"5":404,"6":8,"7":4,"10":4,"23":12,"38":16,"40":19,"42":83,"46":9,"49":49,"50":18,"51":107,"61":43,"64":206,"73":47,"76":38,"79":5,"87":12,"88":18,"91":52,"93":10,"94":248,"97":55,"101":37,"102":119,"105":65,"106":13,"108":2437,"109":235}},"geometry":{"type":"Point","coordinates":[-73.81369289041183,40.72561676546198]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081024500","ancestry":{"1":6453,"5":219,"6":44,"7":44,"29":16,"31":16,"36":43,"38":16,"40":17,"41":13,"42":84,"44":13,"46":51,"48":2,"49":640,"51":298,"59":12,"61":270,"64":136,"67":16,"70":15,"89":15,"92":52,"93":17,"94":32,"96":15,"101":16,"105":1,"108":3969,"109":933}},"geometry":{"type":"Point","coordinates":[-73.90504858538974,40.73935402643868]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081024900","ancestry":{"1":5583,"3":33,"5":150,"6":20,"10":18,"15":2,"16":4,"19":51,"24":3,"29":100,"31":17,"35":13,"36":27,"38":11,"40":13,"42":85,"44":60,"45":3,"46":4,"48":3,"49":201,"51":201,"52":1,"53":3,"61":79,"62":12,"64":27,"66":3,"67":28,"89":10,"92":23,"94":31,"102":12,"105":19,"108":3724,"109":936}},"geometry":{"type":"Point","coordinates":[-73.90425543143103,40.743115127592006]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025100","ancestry":{"1":5560,"5":102,"6":85,"10":71,"11":14,"19":28,"23":14,"25":16,"29":13,"33":15,"36":106,"38":26,"40":11,"41":15,"42":60,"44":12,"46":14,"48":88,"49":598,"51":373,"53":13,"55":15,"61":27,"62":16,"64":42,"66":28,"67":15,"89":11,"90":13,"91":14,"92":56,"94":15,"96":15,"108":3767,"109":351}},"geometry":{"type":"Point","coordinates":[-73.909656195575,40.74482233907078]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025500","ancestry":{"1":1443,"5":36,"6":32,"10":27,"14":5,"19":5,"29":26,"31":5,"34":5,"38":5,"42":63,"44":5,"46":5,"49":193,"51":27,"53":4,"61":14,"63":9,"64":9,"67":5,"91":18,"108":805,"109":285}},"geometry":{"type":"Point","coordinates":[-73.90792000650423,40.750426364816406]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025700","ancestry":{"1":1210,"5":52,"6":34,"11":34,"22":10,"24":16,"29":4,"42":32,"45":9,"49":80,"51":13,"53":5,"61":7,"63":24,"64":13,"73":3,"87":3,"91":23,"108":807,"109":139}},"geometry":{"type":"Point","coordinates":[-73.90517469527673,40.75010448147111]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081097204","ancestry":{"1":3530,"5":427,"34":23,"38":11,"40":12,"42":51,"44":6,"45":56,"49":151,"51":66,"59":51,"61":16,"62":6,"64":23,"66":6,"67":6,"69":6,"73":92,"87":79,"88":13,"94":83,"98":6,"99":3,"102":17,"103":11,"105":46,"107":5,"108":2322,"109":318}},"geometry":{"type":"Point","coordinates":[-73.78112827928351,40.59390692175339]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081100801","ancestry":{"1":2307,"5":98,"6":14,"11":14,"19":5,"29":5,"35":27,"42":20,"45":43,"46":24,"49":167,"51":20,"53":24,"61":17,"64":10,"68":32,"73":26,"87":26,"90":6,"94":415,"96":49,"99":26,"101":127,"102":185,"103":34,"105":6,"108":1376,"109":208}},"geometry":{"type":"Point","coordinates":[-73.76652488697962,40.61039958226808]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081102900","ancestry":{"1":3699,"2":17,"5":184,"6":80,"15":80,"16":15,"19":8,"29":182,"34":9,"35":9,"36":51,"38":9,"40":48,"41":8,"42":157,"44":175,"45":18,"46":9,"49":303,"51":1124,"53":9,"59":11,"61":112,"62":18,"64":100,"69":9,"73":1,"88":1,"90":10,"91":53,"93":10,"94":11,"96":10,"105":1,"108":1512,"109":176}},"geometry":{"type":"Point","coordinates":[-73.80736492557787,40.78387081454535]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021100","ancestry":{"1":1254,"6":15,"12":5,"15":10,"16":10,"19":7,"35":13,"36":31,"40":19,"42":56,"46":6,"49":38,"51":19,"61":28,"67":37,"73":78,"79":10,"87":68,"89":6,"94":67,"101":10,"102":57,"108":888,"109":71}},"geometry":{"type":"Point","coordinates":[-73.97502593200119,40.69716596247937]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025800","ancestry":{"1":2004,"42":8,"45":57,"49":11,"51":7,"61":3,"73":39,"76":5,"79":15,"87":14,"88":5,"94":340,"95":4,"96":24,"97":5,"99":67,"102":193,"103":39,"105":8,"108":1271,"109":327}},"geometry":{"type":"Point","coordinates":[-73.78727946036922,40.69604203492646]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026000","ancestry":{"1":2795,"5":11,"42":6,"45":272,"51":1,"73":82,"87":82,"94":377,"96":9,"99":18,"101":9,"102":305,"103":41,"108":1921,"109":142}},"geometry":{"type":"Point","coordinates":[-73.79330774615144,40.69275243514871]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026200","ancestry":{"1":1279,"5":9,"45":204,"73":20,"87":20,"94":309,"96":51,"101":5,"102":187,"103":56,"105":10,"108":668,"109":80}},"geometry":{"type":"Point","coordinates":[-73.79209235019783,40.69100786823806]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026300","ancestry":{"1":6470,"5":103,"6":47,"7":47,"22":18,"31":16,"36":15,"38":29,"42":107,"44":24,"49":105,"51":264,"59":15,"61":29,"62":14,"69":120,"92":15,"94":16,"99":16,"105":16,"107":14,"108":5064,"109":927}},"geometry":{"type":"Point","coordinates":[-73.89712197430794,40.74566424654393]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026500","ancestry":{"1":4065,"3":31,"5":48,"22":43,"36":19,"40":10,"42":36,"44":9,"46":43,"49":7,"51":64,"61":39,"64":14,"67":7,"73":8,"87":8,"94":26,"101":8,"103":18,"108":3204,"109":525}},"geometry":{"type":"Point","coordinates":[-73.89339424362294,40.745097237746194]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026600","ancestry":{"1":1947,"5":20,"45":66,"73":10,"87":5,"88":5,"94":611,"96":24,"101":124,"102":339,"103":91,"105":42,"106":3,"108":1201,"109":55}},"geometry":{"type":"Point","coordinates":[-73.78169492991607,40.69188119903517]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048500","ancestry":{"1":3241,"5":160,"16":11,"18":13,"19":43,"21":13,"22":15,"23":13,"26":11,"31":3,"33":25,"34":32,"35":15,"36":88,"38":21,"40":80,"41":27,"42":281,"43":8,"46":12,"49":257,"51":82,"52":4,"53":18,"55":8,"59":14,"61":89,"62":11,"63":14,"64":61,"65":24,"66":47,"67":9,"73":6,"87":6,"92":16,"93":15,"94":18,"100":5,"105":13,"108":1727,"109":602}},"geometry":{"type":"Point","coordinates":[-73.93634938312974,40.70783996495269]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081107202","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.83485081057322,40.60683188102167]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081107202","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.81207438928817,40.61836698687811]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081103201","ancestry":{"1":7210,"5":231,"19":25,"36":40,"41":143,"42":27,"45":528,"46":55,"49":32,"51":52,"61":55,"73":39,"87":39,"94":1070,"99":165,"101":180,"102":698,"103":63,"105":13,"108":4069,"109":1172}},"geometry":{"type":"Point","coordinates":[-73.75530046405123,40.60849706586311]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081103202","ancestry":{"1":7099,"5":348,"6":11,"11":11,"26":9,"31":5,"35":19,"38":25,"39":20,"40":4,"42":85,"44":48,"45":43,"46":146,"49":28,"51":67,"52":18,"61":439,"63":20,"64":73,"67":31,"73":178,"76":9,"87":169,"93":9,"94":824,"99":69,"101":49,"102":457,"103":106,"105":163,"108":4132,"109":944}},"geometry":{"type":"Point","coordinates":[-73.74753531535856,40.606651785771234]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081103900","ancestry":{"1":6865,"3":273,"5":30,"6":73,"7":73,"16":74,"22":14,"23":57,"29":110,"31":51,"33":19,"34":12,"36":34,"38":169,"42":428,"44":830,"46":118,"49":1023,"51":1321,"55":32,"61":104,"62":43,"64":268,"65":9,"67":16,"70":26,"89":13,"92":13,"108":2771,"109":94}},"geometry":{"type":"Point","coordinates":[-73.81908326848071,40.78404656318189]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081104700","ancestry":{"1":6740,"2":151,"3":16,"5":414,"6":53,"7":53,"19":13,"23":14,"26":15,"33":52,"36":46,"38":83,"40":50,"41":14,"42":108,"44":486,"46":34,"49":246,"51":1469,"53":25,"61":43,"63":34,"64":90,"70":13,"71":16,"92":122,"94":2,"101":1,"102":1,"107":15,"108":3063,"109":764}},"geometry":{"type":"Point","coordinates":[-73.82037087878564,40.77481579069895]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081105900","ancestry":{"1":3730,"2":29,"5":177,"6":28,"9":28,"15":19,"16":8,"29":60,"31":8,"34":8,"38":15,"42":161,"44":645,"49":241,"51":728,"53":8,"61":96,"64":83,"67":48,"69":21,"73":30,"76":30,"92":27,"93":9,"108":1289,"109":397}},"geometry":{"type":"Point","coordinates":[-73.80706483656878,40.773769611441274]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027000","ancestry":{"1":1830,"5":14,"36":1,"42":3,"44":1,"45":32,"51":11,"73":76,"75":36,"79":21,"87":19,"94":521,"96":12,"97":11,"101":243,"102":197,"103":54,"105":4,"108":1074,"109":109}},"geometry":{"type":"Point","coordinates":[-73.79139770488787,40.68868429271583]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027100","ancestry":{"1":8706,"5":102,"6":15,"14":15,"16":16,"38":19,"40":15,"42":8,"44":6,"51":147,"59":43,"64":55,"69":15,"92":136,"94":124,"96":68,"99":56,"102":34,"108":6558,"109":1583}},"geometry":{"type":"Point","coordinates":[-73.87948670716844,40.74521208004901]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027200","ancestry":{"1":2598,"45":180,"49":6,"73":232,"78":7,"87":225,"88":7,"94":790,"96":12,"100":12,"101":90,"102":390,"103":191,"105":141,"108":1128,"109":271}},"geometry":{"type":"Point","coordinates":[-73.79132014000011,40.683577210533485]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027300","ancestry":{"1":8114,"5":25,"6":45,"14":45,"22":22,"42":2,"45":231,"49":43,"51":37,"61":72,"73":32,"87":32,"94":8,"103":8,"108":6363,"109":1261}},"geometry":{"type":"Point","coordinates":[-73.87277317712594,40.752197728604315]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027400","ancestry":{"1":1716,"5":12,"40":30,"45":99,"49":61,"51":56,"94":371,"96":13,"101":72,"102":102,"103":43,"104":5,"105":141,"108":1052,"109":155}},"geometry":{"type":"Point","coordinates":[-73.7889890354479,40.68490498540735]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027800","ancestry":{"1":2557,"5":93,"36":6,"45":78,"64":7,"66":44,"73":55,"78":6,"79":5,"87":44,"94":457,"96":23,"101":7,"102":311,"103":70,"105":46,"108":1860,"109":100}},"geometry":{"type":"Point","coordinates":[-73.78291641882106,40.686096059519286]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027900","ancestry":{"1":6016,"5":90,"6":33,"10":33,"22":45,"26":13,"31":65,"33":19,"34":9,"36":135,"38":27,"40":58,"41":46,"42":344,"46":8,"48":18,"49":246,"51":131,"61":37,"63":85,"64":170,"66":14,"67":92,"68":13,"70":15,"90":60,"94":48,"101":16,"103":16,"105":16,"107":18,"108":4691,"109":470}},"geometry":{"type":"Point","coordinates":[-73.88022225118753,40.75167293449327]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028000","ancestry":{"1":1717,"5":12,"45":292,"49":20,"73":164,"79":96,"87":68,"94":597,"99":52,"101":88,"102":357,"103":100,"108":548,"109":125}},"geometry":{"type":"Point","coordinates":[-73.77971915721166,40.68831581524623]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028100","ancestry":{"1":4714,"5":105,"16":13,"19":23,"21":16,"23":22,"26":15,"29":13,"34":14,"36":82,"40":44,"42":191,"44":108,"49":405,"51":132,"61":142,"62":10,"63":14,"64":170,"67":14,"73":8,"87":8,"89":128,"93":13,"108":3185,"109":383}},"geometry":{"type":"Point","coordinates":[-73.88259201127978,40.752220406946954]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028200","ancestry":{"1":1616,"5":19,"40":2,"45":109,"73":126,"87":126,"94":551,"96":24,"99":35,"101":46,"102":361,"103":74,"105":20,"108":778,"109":96}},"geometry":{"type":"Point","coordinates":[-73.77388735139273,40.684994687714614]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028400","ancestry":{"1":4143,"5":25,"23":7,"26":22,"40":21,"42":43,"45":368,"51":8,"73":45,"75":21,"87":24,"94":1574,"99":31,"100":17,"101":179,"102":1156,"103":189,"105":19,"108":1914,"109":258}},"geometry":{"type":"Point","coordinates":[-73.77785584968134,40.68250523095437]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081094500","ancestry":{"1":3939,"2":32,"5":255,"6":16,"13":16,"19":8,"22":1,"23":7,"29":149,"30":8,"34":7,"36":15,"40":19,"42":191,"44":266,"46":9,"49":225,"51":907,"56":17,"61":66,"64":14,"70":7,"71":106,"89":10,"92":41,"93":14,"108":1736,"109":320}},"geometry":{"type":"Point","coordinates":[-73.83081416665021,40.787596783312125]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081094700","ancestry":{"1":2502,"2":58,"5":18,"6":29,"9":10,"13":19,"22":18,"29":25,"32":9,"35":11,"36":9,"40":18,"42":204,"44":40,"49":98,"51":292,"59":4,"61":20,"62":5,"64":55,"65":3,"70":17,"89":10,"107":36,"108":1576,"109":238}},"geometry":{"type":"Point","coordinates":[-73.8413716806098,40.78557660881219]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081096400","ancestry":{"1":4085,"5":132,"6":14,"15":14,"22":8,"36":26,"40":23,"42":17,"45":214,"49":91,"50":8,"51":100,"61":25,"64":9,"73":74,"75":35,"87":39,"92":8,"94":774,"96":10,"99":21,"101":43,"102":545,"103":146,"105":45,"108":1882,"109":863}},"geometry":{"type":"Point","coordinates":[-73.79253276745611,40.5938319038149]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047062000","ancestry":{"1":2102,"5":278,"6":49,"13":38,"15":11,"16":52,"26":4,"31":12,"35":23,"36":11,"38":10,"40":16,"42":6,"48":6,"49":21,"50":7,"51":103,"61":55,"64":260,"72":10,"92":221,"108":797,"109":352}},"geometry":{"type":"Point","coordinates":[-73.94631864550075,40.57891642304941]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081097300","ancestry":{"1":2149,"5":134,"29":31,"30":5,"31":1,"36":16,"38":2,"40":5,"41":6,"42":96,"44":297,"46":1,"49":129,"51":897,"59":3,"61":113,"63":2,"64":16,"66":6,"107":1,"108":511,"109":208}},"geometry":{"type":"Point","coordinates":[-73.82106649240808,40.793555798885784]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081098100","ancestry":{"1":2296,"5":70,"6":30,"7":30,"22":36,"23":64,"29":12,"31":8,"33":6,"34":5,"35":5,"36":53,"38":5,"42":141,"44":155,"46":5,"49":164,"51":630,"59":4,"61":44,"64":10,"66":4,"90":17,"93":26,"94":31,"97":31,"108":1030,"109":161}},"geometry":{"type":"Point","coordinates":[-73.81602127086454,40.79470628123236]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081098700","ancestry":{"1":2577,"4":9,"5":126,"6":5,"7":5,"16":36,"19":4,"29":98,"31":9,"32":33,"33":10,"34":4,"36":69,"40":28,"41":9,"42":201,"44":333,"46":5,"49":370,"51":534,"56":14,"61":46,"63":17,"64":144,"67":55,"70":72,"94":5,"101":5,"108":719,"109":171}},"geometry":{"type":"Point","coordinates":[-73.80872678576772,40.792379213466255]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099100","ancestry":{"1":6375,"2":48,"5":247,"6":51,"7":12,"10":39,"19":139,"22":76,"29":60,"31":62,"32":50,"35":36,"36":109,"37":1,"38":44,"40":27,"41":103,"42":592,"44":520,"46":275,"49":421,"51":1468,"59":11,"61":329,"63":28,"64":379,"67":40,"68":67,"89":12,"91":11,"92":12,"107":20,"108":1884,"109":535}},"geometry":{"type":"Point","coordinates":[-73.80004502266684,40.790281878669376]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099200","ancestry":{"1":3983,"5":287,"6":30,"7":30,"16":12,"35":3,"36":9,"40":34,"42":3,"45":159,"49":137,"51":5,"64":42,"69":29,"73":87,"87":87,"92":14,"94":533,"97":53,"99":141,"101":76,"102":296,"103":9,"105":15,"108":2329,"109":467}},"geometry":{"type":"Point","coordinates":[-73.76727918251986,40.59522810658348]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047080800","ancestry":{"1":1210,"5":5,"40":5,"42":4,"45":11,"49":4,"51":10,"64":15,"68":5,"73":13,"87":13,"94":312,"99":7,"101":110,"102":51,"103":24,"105":114,"106":6,"108":785,"109":87}},"geometry":{"type":"Point","coordinates":[-73.939486388764,40.65730325834038]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099900","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.77672682093636,40.79160457918839]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047123700","ancestry":{"1":6370,"5":178,"6":16,"9":16,"19":106,"26":30,"31":85,"32":11,"33":16,"34":35,"36":73,"38":305,"40":18,"42":35,"44":14,"46":1898,"49":78,"50":125,"51":83,"59":14,"61":114,"63":444,"67":11,"89":15,"94":67,"99":55,"103":12,"108":2952,"109":476}},"geometry":{"type":"Point","coordinates":[-73.95674042405626,40.69673838345363]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081112300","ancestry":{"1":2319,"5":41,"30":5,"32":14,"34":5,"36":46,"40":40,"42":118,"44":63,"45":1,"49":337,"51":189,"53":20,"61":17,"63":6,"64":20,"66":7,"67":5,"70":16,"73":27,"80":18,"84":9,"89":14,"107":6,"108":1542,"109":62}},"geometry":{"type":"Point","coordinates":[-73.7712452750267,40.76629199166817]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081109700","ancestry":{"1":1678,"5":31,"6":25,"7":25,"16":65,"22":67,"29":99,"35":9,"36":24,"42":73,"44":119,"46":25,"49":211,"51":292,"59":12,"61":85,"63":5,"64":10,"89":6,"91":5,"94":1,"101":1,"108":696,"109":111}},"geometry":{"type":"Point","coordinates":[-73.77731308395565,40.77034660802851]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081109900","ancestry":{"1":3994,"5":45,"19":10,"21":11,"24":6,"26":5,"29":12,"36":97,"38":42,"40":62,"41":4,"42":215,"44":434,"45":213,"49":629,"51":629,"56":13,"61":87,"63":23,"64":9,"65":10,"66":13,"70":10,"89":15,"90":12,"91":6,"92":7,"94":145,"103":144,"105":1,"108":1824,"109":439}},"geometry":{"type":"Point","coordinates":[-73.78649429836526,40.76794532626556]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081112900","ancestry":{"1":2155,"5":111,"19":41,"22":1,"23":7,"31":6,"36":54,"37":1,"42":208,"44":93,"46":5,"48":39,"49":409,"50":34,"51":320,"56":7,"61":87,"62":15,"63":36,"64":164,"66":5,"67":24,"90":4,"91":11,"92":7,"94":32,"101":6,"102":26,"108":818,"109":126}},"geometry":{"type":"Point","coordinates":[-73.77681695737881,40.76540093154204]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081113900","ancestry":{"1":3580,"3":7,"5":121,"16":42,"19":39,"22":12,"23":36,"30":51,"31":16,"36":71,"40":22,"41":7,"42":94,"44":237,"48":33,"49":361,"51":501,"52":16,"53":17,"58":8,"59":48,"61":49,"64":89,"65":39,"92":14,"93":18,"108":1788,"109":350}},"geometry":{"type":"Point","coordinates":[-73.79062667554447,40.76423060147518]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081114100","ancestry":{"1":2176,"3":6,"5":49,"6":16,"7":9,"14":7,"16":6,"19":9,"23":23,"29":104,"31":6,"34":7,"35":18,"36":30,"40":17,"41":6,"42":167,"44":195,"46":37,"48":11,"49":410,"51":472,"59":6,"61":69,"64":78,"67":6,"68":20,"70":6,"73":12,"87":12,"92":11,"94":12,"96":6,"105":6,"107":17,"108":827,"109":92}},"geometry":{"type":"Point","coordinates":[-73.79668951413534,40.769096979342024]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081029100","ancestry":{"1":6664,"5":163,"6":24,"10":24,"19":22,"22":15,"31":29,"34":38,"36":76,"38":15,"40":4,"42":136,"44":5,"45":11,"49":154,"51":99,"59":14,"61":164,"63":64,"64":105,"66":14,"73":38,"87":38,"92":29,"94":57,"101":19,"105":38,"108":5115,"109":629}},"geometry":{"type":"Point","coordinates":[-73.89519937870396,40.751335882054725]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081029300","ancestry":{"1":1164,"5":16,"6":20,"7":8,"13":12,"42":30,"44":29,"49":11,"51":12,"61":4,"89":4,"90":4,"91":8,"108":815,"109":250}},"geometry":{"type":"Point","coordinates":[-73.8994830353731,40.75193268796592]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081029500","ancestry":{"1":3863,"3":8,"5":93,"6":81,"11":76,"13":5,"19":32,"29":29,"31":8,"32":12,"36":40,"38":9,"40":10,"42":144,"44":15,"49":352,"51":250,"55":8,"61":67,"62":16,"63":69,"64":13,"66":7,"67":3,"92":52,"94":48,"100":8,"102":23,"103":17,"107":62,"108":2368,"109":470}},"geometry":{"type":"Point","coordinates":[-73.90673060415685,40.755998069327234]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081029700","ancestry":{"1":2028,"5":20,"6":178,"7":20,"11":47,"14":85,"15":26,"22":27,"29":6,"31":17,"38":18,"40":20,"41":11,"42":74,"44":241,"45":10,"46":22,"49":35,"51":173,"61":28,"62":17,"63":17,"64":16,"70":6,"73":1,"87":1,"89":5,"92":5,"94":6,"101":6,"107":76,"108":1028,"109":136}},"geometry":{"type":"Point","coordinates":[-73.90300157174356,40.758683108533255]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028700","ancestry":{"1":6099,"5":208,"6":39,"7":10,"10":14,"15":15,"16":13,"19":13,"23":31,"26":53,"29":31,"31":28,"35":13,"36":145,"39":14,"40":41,"42":205,"44":36,"49":468,"50":15,"51":231,"61":187,"62":37,"63":13,"64":176,"66":42,"67":22,"69":14,"70":15,"92":48,"93":13,"108":4189,"109":313}},"geometry":{"type":"Point","coordinates":[-73.88943591382515,40.75096545705471]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028800","ancestry":{"1":4170,"5":113,"36":26,"42":28,"45":348,"64":28,"67":8,"73":220,"79":124,"87":75,"88":21,"94":1016,"95":8,"96":82,"97":9,"99":45,"101":273,"102":353,"103":177,"105":87,"106":14,"108":2294,"109":365}},"geometry":{"type":"Point","coordinates":[-73.78593954393948,40.678766238778735]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028900","ancestry":{"1":5522,"5":60,"6":20,"10":9,"11":11,"19":14,"22":64,"24":36,"33":31,"35":35,"36":50,"38":12,"40":12,"42":46,"44":55,"46":60,"49":72,"51":96,"61":83,"63":110,"64":36,"66":12,"68":53,"70":22,"92":23,"94":109,"101":109,"108":4037,"109":686}},"geometry":{"type":"Point","coordinates":[-73.89190222609565,40.75127854249731]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081029900","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.89939834514823,40.76398813282161]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081030902","ancestry":{"1":8345,"2":57,"5":173,"6":226,"7":226,"18":4,"19":13,"22":93,"29":42,"31":28,"34":5,"36":53,"38":26,"40":214,"42":46,"44":286,"48":36,"49":148,"51":245,"61":61,"63":57,"64":13,"67":52,"73":4,"88":4,"90":11,"91":25,"92":30,"94":68,"101":26,"103":40,"105":2,"108":5836,"109":1028}},"geometry":{"type":"Point","coordinates":[-73.89615886298762,40.75805976780428]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081031700","ancestry":{"1":6277,"3":92,"5":625,"6":299,"7":43,"10":64,"11":113,"14":52,"15":27,"29":76,"30":41,"31":26,"34":13,"36":60,"40":57,"42":327,"44":1004,"46":80,"48":9,"49":503,"51":798,"61":137,"62":13,"63":12,"64":88,"67":14,"68":12,"70":8,"89":11,"94":1,"105":1,"107":53,"108":1442,"109":1344}},"geometry":{"type":"Point","coordinates":[-73.89304435187074,40.770914818993305]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081032000","ancestry":{"1":4836,"5":56,"22":8,"34":34,"40":17,"42":3,"45":82,"49":3,"51":37,"61":7,"67":7,"73":196,"76":108,"79":58,"87":30,"92":7,"94":1543,"95":19,"96":7,"99":27,"101":290,"102":1084,"103":103,"104":43,"105":57,"108":2786,"109":273}},"geometry":{"type":"Point","coordinates":[-73.76497314462641,40.66134089481941]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081032800","ancestry":{"1":2442,"5":72,"19":10,"36":2,"38":12,"40":52,"45":92,"51":65,"59":42,"73":37,"79":19,"87":18,"89":24,"94":925,"96":61,"97":20,"98":7,"101":55,"102":719,"103":30,"105":33,"108":1227,"109":97}},"geometry":{"type":"Point","coordinates":[-73.75569793059142,40.67183740025918]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081032900","ancestry":{"1":4852,"5":199,"6":32,"14":9,"15":23,"16":9,"30":136,"36":15,"42":49,"44":152,"46":15,"49":56,"51":46,"53":14,"61":19,"64":20,"67":7,"73":13,"87":13,"92":14,"94":51,"101":21,"102":21,"105":9,"108":3561,"109":690}},"geometry":{"type":"Point","coordinates":[-73.8827318476326,40.764435075852944]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081033000","ancestry":{"1":7041,"5":32,"45":66,"51":26,"73":547,"75":8,"79":261,"87":55,"88":223,"94":2369,"96":219,"97":10,"99":28,"101":202,"102":1393,"103":292,"105":268,"108":3574,"109":667}},"geometry":{"type":"Point","coordinates":[-73.76373610045951,40.670134778798165]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36081033100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.8813257267858,40.786144138754544]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081033100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.87327295112567,40.77441231643804]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081033402","ancestry":{"1":12877,"5":337,"36":69,"40":25,"42":27,"45":302,"51":132,"61":159,"67":28,"73":367,"76":10,"79":127,"87":230,"89":22,"94":2433,"95":66,"96":78,"99":108,"101":829,"102":781,"103":85,"104":136,"105":438,"108":8671,"109":770}},"geometry":{"type":"Point","coordinates":[-73.77180934449181,40.67527518090794]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081033900","ancestry":{"1":3466,"5":92,"16":16,"19":22,"22":9,"23":16,"36":8,"42":104,"44":20,"46":30,"49":96,"51":67,"61":57,"64":41,"70":8,"73":31,"81":7,"88":24,"91":11,"92":27,"94":88,"101":8,"102":18,"103":38,"105":24,"108":2732,"109":276}},"geometry":{"type":"Point","coordinates":[-73.879838270187,40.759023787723386]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081039400","ancestry":{"1":2954,"5":394,"45":137,"51":6,"73":86,"87":86,"94":1005,"99":84,"101":255,"102":579,"103":34,"105":59,"108":1044,"109":354}},"geometry":{"type":"Point","coordinates":[-73.75877858091133,40.68963987582538]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081039800","ancestry":{"1":1976,"5":231,"36":5,"45":156,"67":6,"73":63,"78":50,"87":47,"94":1021,"96":33,"98":23,"99":65,"100":11,"101":309,"102":515,"103":47,"105":77,"108":434,"109":132}},"geometry":{"type":"Point","coordinates":[-73.76480976852783,40.69456218171818]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040100","ancestry":{"1":7814,"5":126,"22":18,"39":14,"45":182,"51":11,"94":80,"101":45,"103":35,"108":6623,"109":795}},"geometry":{"type":"Point","coordinates":[-73.85709588357821,40.75146837943921]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040200","ancestry":{"1":1524,"5":356,"23":23,"42":47,"45":126,"73":151,"78":7,"79":43,"84":60,"87":41,"94":366,"95":10,"96":4,"101":140,"102":123,"103":98,"108":435,"109":131}},"geometry":{"type":"Point","coordinates":[-73.76876295746683,40.70003164616641]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040400","ancestry":{"1":4153,"5":768,"36":51,"45":39,"51":24,"73":191,"75":146,"87":45,"94":1618,"96":94,"97":9,"99":123,"101":599,"102":575,"103":103,"105":124,"108":1452,"109":451}},"geometry":{"type":"Point","coordinates":[-73.77074216722946,40.70517716458018]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040500","ancestry":{"1":3669,"5":17,"49":6,"51":6,"108":3196,"109":467}},"geometry":{"type":"Point","coordinates":[-73.86284533200751,40.74986704668316]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040700","ancestry":{"1":7326,"5":145,"6":16,"14":16,"15":16,"36":31,"42":35,"44":36,"49":24,"51":28,"62":36,"73":53,"87":53,"94":67,"96":23,"105":44,"108":6462,"109":671}},"geometry":{"type":"Point","coordinates":[-73.8656140970501,40.750382348236535]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081041100","ancestry":{"1":3968,"5":28,"42":14,"49":8,"51":36,"94":53,"101":7,"102":46,"108":3262,"109":588}},"geometry":{"type":"Point","coordinates":[-73.86541882149834,40.74379115579635]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081041400","ancestry":{"1":3896,"5":25,"34":98,"45":95,"49":106,"51":10,"73":65,"79":20,"87":45,"94":1090,"96":17,"99":12,"101":208,"102":741,"103":24,"105":94,"108":2287,"109":243}},"geometry":{"type":"Point","coordinates":[-73.78077051807387,40.699631752553174]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081041500","ancestry":{"1":3582,"5":54,"22":69,"36":6,"42":59,"44":30,"45":51,"49":48,"51":253,"61":11,"94":81,"102":11,"103":70,"108":2614,"109":462}},"geometry":{"type":"Point","coordinates":[-73.85659902733165,40.74660506918069]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081042700","ancestry":{"1":5137,"5":41,"22":92,"36":45,"44":41,"46":18,"51":35,"64":14,"108":4293,"109":630}},"geometry":{"type":"Point","coordinates":[-73.85381283576983,40.743715855252056]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081043400","ancestry":{"1":1822,"5":32,"42":21,"45":91,"49":35,"51":51,"73":93,"79":51,"87":34,"88":24,"94":669,"99":11,"102":553,"103":75,"105":58,"108":776,"109":137}},"geometry":{"type":"Point","coordinates":[-73.77864622323555,40.69619926160262]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045000","ancestry":{"1":1793,"5":27,"26":11,"29":5,"34":5,"36":9,"38":5,"40":4,"42":40,"44":179,"46":4,"49":10,"51":26,"55":5,"61":8,"62":26,"64":4,"67":9,"73":4,"87":4,"91":35,"107":4,"108":1357,"109":88}},"geometry":{"type":"Point","coordinates":[-73.80476374552062,40.714155088527285]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045400","ancestry":{"1":4392,"5":67,"26":25,"29":10,"30":8,"35":11,"36":9,"38":10,"42":227,"44":37,"45":155,"46":19,"49":80,"51":34,"61":44,"64":49,"67":25,"73":54,"87":54,"90":9,"92":9,"94":171,"96":19,"101":31,"102":37,"103":65,"105":19,"108":3311,"109":464}},"geometry":{"type":"Point","coordinates":[-73.79601196528057,40.712650406169075]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045500","ancestry":{"1":12978,"5":1324,"6":162,"11":112,"15":50,"33":13,"36":16,"40":41,"42":99,"45":69,"51":38,"61":309,"64":328,"73":1655,"76":284,"78":16,"79":111,"80":24,"87":1074,"88":212,"91":121,"92":16,"94":1095,"96":142,"101":423,"102":434,"105":96,"108":6571,"109":1494}},"geometry":{"type":"Point","coordinates":[-73.86232662056219,40.73631113993302]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045600","ancestry":{"1":1478,"5":27,"21":7,"23":3,"36":2,"42":3,"45":107,"49":10,"51":7,"61":6,"64":6,"73":3,"87":3,"94":41,"99":4,"101":10,"102":6,"103":21,"105":4,"108":1277,"109":39}},"geometry":{"type":"Point","coordinates":[-73.79398860033233,40.716629148281456]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081044602","ancestry":{"1":5008,"5":96,"38":1,"42":1,"45":180,"49":31,"51":1,"67":5,"73":186,"79":54,"88":132,"94":487,"96":37,"101":215,"102":117,"103":70,"105":48,"108":3985,"109":107}},"geometry":{"type":"Point","coordinates":[-73.7998475519857,40.708186888952575]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081044800","ancestry":{"1":2625,"5":15,"35":3,"40":21,"42":5,"44":37,"45":245,"48":19,"51":35,"64":5,"73":19,"75":13,"87":6,"94":171,"99":5,"101":103,"102":44,"105":19,"108":1927,"109":275}},"geometry":{"type":"Point","coordinates":[-73.80263441425271,40.71102195140745]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045800","ancestry":{"1":2074,"5":101,"19":5,"36":51,"40":10,"41":14,"42":25,"45":45,"46":4,"48":5,"49":30,"51":57,"53":4,"61":12,"62":28,"73":34,"87":34,"94":116,"101":56,"102":31,"105":29,"108":1649,"109":88}},"geometry":{"type":"Point","coordinates":[-73.79092600762598,40.71526270752995]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046200","ancestry":{"1":8481,"5":60,"22":30,"40":58,"42":5,"44":39,"45":1013,"46":4,"49":85,"50":75,"51":26,"61":10,"62":60,"64":20,"67":60,"73":6,"87":6,"94":625,"96":4,"99":14,"101":251,"102":94,"103":64,"105":199,"106":42,"108":5504,"109":1144}},"geometry":{"type":"Point","coordinates":[-73.78797498418979,40.709854731504116]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046300","ancestry":{"1":3598,"2":14,"5":71,"6":8,"7":8,"44":15,"45":46,"51":10,"94":46,"101":46,"108":3234,"109":221}},"geometry":{"type":"Point","coordinates":[-73.8710900225145,40.74400072434907]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046400","ancestry":{"1":1644,"5":98,"6":14,"10":9,"14":5,"22":16,"23":9,"33":16,"36":20,"40":18,"42":30,"44":101,"45":28,"48":18,"49":45,"51":45,"59":5,"61":28,"64":5,"73":53,"79":15,"87":23,"88":15,"90":6,"94":111,"96":14,"101":54,"102":16,"105":27,"107":16,"108":1056,"109":98}},"geometry":{"type":"Point","coordinates":[-73.7869948667832,40.71686905865626]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046500","ancestry":{"1":3926,"5":45,"36":17,"51":7,"61":7,"92":7,"108":3647,"109":203}},"geometry":{"type":"Point","coordinates":[-73.87029812973037,40.746966526086396]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046600","ancestry":{"1":3494,"5":152,"6":45,"7":45,"19":3,"32":25,"36":8,"38":8,"40":20,"42":112,"45":55,"49":116,"51":149,"53":7,"61":16,"63":8,"64":24,"66":10,"70":4,"73":73,"79":8,"87":17,"88":48,"94":608,"97":9,"99":94,"101":172,"102":112,"103":103,"104":8,"105":148,"107":8,"108":2218,"109":131}},"geometry":{"type":"Point","coordinates":[-73.78510000743346,40.714009523982845]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046700","ancestry":{"1":7026,"5":14,"6":39,"11":24,"15":15,"38":9,"44":33,"49":28,"51":46,"61":46,"94":42,"103":1,"105":41,"108":6558,"109":261}},"geometry":{"type":"Point","coordinates":[-73.87458551176952,40.74545638488359]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046800","ancestry":{"1":3348,"5":45,"22":7,"36":31,"40":14,"42":18,"44":114,"45":517,"49":6,"51":36,"62":11,"66":7,"70":17,"73":26,"74":16,"87":10,"91":8,"94":320,"96":8,"101":39,"102":133,"103":140,"105":23,"108":2122,"109":208}},"geometry":{"type":"Point","coordinates":[-73.78227896134388,40.71049359772591]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046900","ancestry":{"1":8501,"5":99,"6":62,"10":62,"23":28,"24":50,"34":30,"42":15,"46":14,"49":432,"51":56,"59":16,"61":13,"62":11,"64":30,"73":14,"87":14,"92":23,"94":61,"101":61,"108":7017,"109":1018}},"geometry":{"type":"Point","coordinates":[-73.87718437999284,40.74519654909942]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047000","ancestry":{"1":3295,"5":52,"6":31,"10":5,"11":26,"29":10,"40":8,"42":22,"44":11,"45":1327,"49":25,"51":14,"61":4,"73":51,"84":51,"92":4,"94":371,"101":10,"102":198,"103":74,"105":89,"108":1534,"109":123}},"geometry":{"type":"Point","coordinates":[-73.77729831909946,40.71129682291929]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047100","ancestry":{"1":4296,"5":164,"6":10,"7":10,"34":10,"36":20,"42":18,"46":15,"49":44,"51":8,"61":23,"64":8,"91":44,"108":3431,"109":624}},"geometry":{"type":"Point","coordinates":[-73.87656399237798,40.740984964240056]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047200","ancestry":{"1":3767,"5":65,"6":243,"7":9,"14":11,"15":223,"23":8,"29":8,"34":9,"35":9,"36":10,"40":19,"42":117,"44":10,"45":200,"48":32,"49":102,"50":24,"51":141,"61":60,"62":18,"63":45,"64":103,"73":184,"78":132,"87":52,"94":401,"98":9,"99":31,"101":154,"102":74,"103":114,"105":67,"108":2059,"109":187}},"geometry":{"type":"Point","coordinates":[-73.77894442817986,40.71760599872802]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047300","ancestry":{"1":3551,"3":8,"5":90,"6":24,"7":8,"15":16,"22":14,"24":16,"29":8,"38":26,"40":36,"42":31,"44":61,"45":8,"49":75,"51":85,"53":18,"61":105,"63":9,"64":32,"66":16,"67":20,"91":26,"94":75,"95":28,"101":47,"108":2544,"109":402}},"geometry":{"type":"Point","coordinates":[-73.87623124026429,40.73722038940916]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047500","ancestry":{"1":4770,"5":83,"6":130,"7":24,"11":106,"23":42,"24":10,"31":6,"36":20,"38":12,"41":11,"42":48,"44":13,"48":66,"49":78,"51":90,"59":1,"61":41,"62":6,"64":2,"70":22,"94":1,"101":1,"108":3968,"109":278}},"geometry":{"type":"Point","coordinates":[-73.87564132548458,40.733644801694446]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081004500","ancestry":{"1":3314,"2":11,"5":187,"6":170,"7":170,"19":17,"23":33,"35":39,"36":66,"40":28,"41":27,"42":188,"44":109,"46":20,"49":318,"50":9,"51":278,"53":10,"59":45,"61":112,"63":53,"64":100,"66":11,"89":9,"92":9,"94":19,"99":9,"102":10,"107":32,"108":1413,"109":520}},"geometry":{"type":"Point","coordinates":[-73.93376563460477,40.764532829814975]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081004700","ancestry":{"1":4110,"3":17,"5":55,"6":178,"7":111,"11":9,"15":58,"16":7,"22":9,"31":15,"34":60,"36":35,"42":57,"44":103,"49":81,"50":10,"51":136,"59":17,"61":107,"62":16,"63":34,"73":50,"83":43,"88":7,"91":8,"92":16,"94":29,"99":10,"105":19,"108":2544,"109":789}},"geometry":{"type":"Point","coordinates":[-73.93315776584309,40.76028791680233]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005000","ancestry":{"1":7,"51":3,"108":4}},"geometry":{"type":"Point","coordinates":[-73.85491972721638,40.677695546112915]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005300","ancestry":{"1":4369,"3":29,"5":56,"6":76,"7":13,"13":13,"14":50,"21":18,"22":226,"26":53,"29":19,"31":56,"33":28,"35":14,"36":191,"37":15,"38":33,"40":30,"41":13,"42":117,"44":202,"46":71,"49":315,"51":451,"52":14,"53":5,"59":10,"61":461,"62":27,"63":97,"64":39,"66":41,"67":34,"68":15,"70":87,"73":27,"87":27,"89":104,"91":13,"92":6,"94":14,"100":14,"105":14,"108":1811,"109":340}},"geometry":{"type":"Point","coordinates":[-73.92927277439131,40.76034856111518]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005400","ancestry":{"1":5620,"5":53,"6":143,"7":8,"10":49,"14":26,"15":68,"19":8,"22":100,"31":1,"36":83,"40":83,"42":211,"44":8,"45":420,"46":98,"49":208,"51":361,"61":225,"62":160,"73":46,"79":33,"87":13,"94":69,"103":52,"105":17,"108":3300,"109":718}},"geometry":{"type":"Point","coordinates":[-73.84877467956797,40.67874934645906]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005800","ancestry":{"1":5824,"5":20,"6":33,"7":10,"15":23,"19":30,"23":11,"36":24,"40":24,"41":9,"42":157,"45":251,"49":428,"51":1297,"53":128,"59":10,"61":45,"62":22,"63":30,"64":42,"67":18,"69":15,"73":31,"80":21,"87":10,"89":10,"90":9,"92":39,"94":270,"102":83,"103":58,"105":129,"108":3290,"109":598}},"geometry":{"type":"Point","coordinates":[-73.84868949027158,40.6735447661472]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081006100","ancestry":{"1":5985,"5":137,"6":15,"11":15,"19":27,"20":2,"22":95,"23":47,"24":75,"29":419,"34":35,"35":15,"36":220,"38":80,"39":14,"40":169,"42":343,"44":456,"46":78,"49":588,"50":15,"51":616,"53":27,"55":13,"61":257,"63":59,"64":54,"65":13,"67":89,"89":13,"90":14,"91":41,"92":88,"93":13,"94":16,"99":16,"107":30,"108":2403,"109":515}},"geometry":{"type":"Point","coordinates":[-73.92204100479304,40.76203068631348]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081030904","ancestry":{"1":3888,"2":27,"5":67,"16":9,"22":77,"29":24,"30":8,"36":8,"40":9,"41":8,"44":61,"49":30,"51":154,"61":8,"62":8,"64":37,"94":73,"103":69,"105":4,"107":10,"108":2914,"109":422}},"geometry":{"type":"Point","coordinates":[-73.89105473447371,40.76358315218551]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081043702","ancestry":{"1":5802,"5":322,"42":1,"45":170,"50":137,"51":43,"62":13,"64":13,"73":193,"79":59,"87":134,"94":94,"95":15,"101":20,"105":59,"108":4608,"109":406}},"geometry":{"type":"Point","coordinates":[-73.85654445024748,40.738109645584686]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081044301","ancestry":{"1":3592,"5":31,"40":9,"46":8,"49":17,"51":27,"62":22,"64":8,"73":42,"76":8,"79":17,"87":17,"92":9,"94":87,"99":41,"101":10,"102":77,"108":2951,"109":445}},"geometry":{"type":"Point","coordinates":[-73.85946042650748,40.740736913153334]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081036500","ancestry":{"1":4191,"5":179,"36":9,"42":25,"51":32,"61":4,"73":16,"87":16,"94":158,"101":63,"102":74,"103":11,"105":10,"108":2710,"109":1164}},"geometry":{"type":"Point","coordinates":[-73.86560542959919,40.75952456597528]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081036600","ancestry":{"1":2977,"5":193,"36":9,"45":114,"73":38,"79":13,"87":25,"94":1048,"96":78,"100":15,"101":254,"102":598,"103":16,"104":11,"105":91,"108":1459,"109":316}},"geometry":{"type":"Point","coordinates":[-73.76309033673645,40.685634157091044]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081035800","ancestry":{"1":4447,"5":129,"36":17,"41":8,"42":2,"45":145,"49":4,"61":1,"69":10,"73":213,"79":105,"87":108,"94":1913,"99":110,"100":19,"101":236,"102":1367,"103":46,"105":163,"108":1943,"109":248}},"geometry":{"type":"Point","coordinates":[-73.75098048716974,40.67579104538882]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081036700","ancestry":{"1":2637,"5":211,"6":20,"7":2,"11":18,"45":21,"46":5,"49":17,"51":9,"61":5,"73":4,"87":4,"94":500,"97":47,"99":115,"101":145,"102":42,"103":47,"105":111,"108":1625,"109":277}},"geometry":{"type":"Point","coordinates":[-73.86793956220085,40.7632226788068]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081036800","ancestry":{"1":2488,"5":21,"42":12,"45":60,"49":7,"51":8,"62":10,"73":150,"87":150,"91":30,"94":797,"96":50,"101":37,"102":471,"103":113,"105":126,"108":1263,"109":232}},"geometry":{"type":"Point","coordinates":[-73.76648456604428,40.68532118001353]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081037100","ancestry":{"1":1925,"5":241,"6":5,"15":5,"33":13,"42":1,"44":17,"49":4,"51":23,"64":12,"94":263,"99":32,"101":17,"102":187,"103":22,"105":5,"108":1389,"109":171}},"geometry":{"type":"Point","coordinates":[-73.86362411549105,40.764143364904456]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081037300","ancestry":{"1":2464,"5":99,"6":18,"7":18,"40":35,"49":6,"51":34,"62":4,"63":7,"73":48,"88":48,"94":79,"96":8,"102":40,"103":20,"105":11,"108":1953,"109":243}},"geometry":{"type":"Point","coordinates":[-73.85997953799497,40.759709977265395]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081037600","ancestry":{"1":6388,"5":1011,"45":283,"73":61,"76":20,"79":23,"87":18,"94":2806,"96":35,"99":79,"101":348,"102":1602,"103":488,"105":285,"108":2175,"109":480}},"geometry":{"type":"Point","coordinates":[-73.75411887784094,40.6878123933418]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081038100","ancestry":{"1":7509,"5":190,"22":16,"34":9,"36":19,"40":17,"42":17,"44":7,"51":30,"64":6,"73":15,"87":15,"94":284,"96":17,"100":8,"101":158,"102":29,"103":56,"105":16,"108":5831,"109":1316}},"geometry":{"type":"Point","coordinates":[-73.8576785582819,40.75612127138431]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081007700","ancestry":{"1":1413,"3":6,"5":83,"6":63,"7":37,"9":5,"11":16,"14":5,"22":7,"26":6,"31":1,"34":5,"36":39,"40":10,"42":61,"44":35,"46":7,"48":5,"49":56,"51":150,"53":5,"55":6,"56":63,"59":14,"61":98,"62":5,"64":29,"92":25,"93":5,"107":5,"108":566,"109":266}},"geometry":{"type":"Point","coordinates":[-73.93173275146282,40.76673289223499]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081008600","ancestry":{"1":2621,"5":33,"6":22,"15":22,"31":4,"36":42,"40":6,"42":82,"44":10,"45":47,"49":209,"51":729,"53":4,"61":51,"64":15,"90":8,"94":19,"105":19,"107":12,"108":1122,"109":550}},"geometry":{"type":"Point","coordinates":[-73.8411368803294,40.67708806476161]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081008700","ancestry":{"1":4811,"5":177,"42":8,"44":91,"49":33,"51":45,"63":22,"64":29,"73":126,"76":42,"87":30,"88":54,"89":7,"91":26,"93":8,"94":129,"99":16,"101":28,"102":74,"103":11,"105":11,"108":3714,"109":524}},"geometry":{"type":"Point","coordinates":[-73.93457716650961,40.774376843929346]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081008800","ancestry":{"1":3632,"5":37,"34":25,"40":8,"42":186,"44":19,"49":192,"51":763,"59":8,"61":126,"62":27,"63":26,"64":7,"67":25,"73":8,"76":8,"94":8,"103":8,"108":2145,"109":489}},"geometry":{"type":"Point","coordinates":[-73.83877527532606,40.67079685958909]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081007900","ancestry":{"1":3596,"5":88,"6":139,"7":75,"11":42,"12":22,"23":8,"30":9,"31":18,"33":19,"35":18,"36":48,"38":18,"40":16,"42":112,"44":41,"49":69,"51":120,"61":32,"62":8,"63":7,"64":8,"65":19,"67":15,"92":12,"94":8,"102":8,"108":2412,"109":540}},"geometry":{"type":"Point","coordinates":[-73.92994521455573,40.76910007077683]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081008100","ancestry":{"1":1165,"5":29,"23":15,"36":14,"38":5,"40":4,"42":18,"44":18,"46":20,"49":33,"51":35,"53":21,"54":4,"55":21,"59":10,"61":9,"64":8,"67":8,"68":4,"90":3,"92":6,"93":9,"94":17,"102":9,"105":8,"107":22,"108":838,"109":86}},"geometry":{"type":"Point","coordinates":[-73.93358253926843,40.77007559771539]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081008300","ancestry":{"1":3872,"3":75,"5":270,"6":34,"14":34,"16":9,"19":8,"22":181,"23":21,"31":18,"36":7,"38":34,"40":42,"42":37,"44":129,"45":28,"46":7,"49":115,"51":155,"59":9,"61":53,"63":29,"64":62,"67":16,"73":52,"87":52,"89":9,"90":10,"92":34,"94":70,"96":9,"101":24,"102":27,"103":9,"105":1,"108":2376,"109":278}},"geometry":{"type":"Point","coordinates":[-73.92869592498951,40.77262030240219]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081009100","ancestry":{"1":2782,"5":102,"6":28,"10":10,"14":9,"15":18,"19":8,"21":33,"22":11,"28":22,"29":8,"30":8,"31":70,"33":11,"36":95,"37":8,"38":9,"40":35,"41":40,"42":175,"44":193,"46":19,"49":313,"51":224,"56":18,"59":67,"61":47,"63":29,"64":57,"66":20,"67":5,"68":18,"73":12,"87":12,"91":4,"92":9,"94":33,"99":9,"101":24,"108":1248,"109":346}},"geometry":{"type":"Point","coordinates":[-73.92967658661237,40.77585740650659]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081009400","ancestry":{"1":2944,"5":15,"6":10,"13":10,"31":10,"42":27,"45":812,"49":15,"51":49,"53":5,"59":33,"61":75,"62":13,"64":48,"73":11,"87":11,"94":546,"102":144,"103":382,"105":27,"106":5,"108":1271,"109":290}},"geometry":{"type":"Point","coordinates":[-73.83651141369486,40.68141055873615]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081009500","ancestry":{"1":2613,"5":130,"6":213,"7":123,"10":41,"11":24,"15":25,"16":23,"19":10,"22":32,"23":7,"24":6,"27":5,"29":14,"31":20,"33":6,"35":17,"36":56,"38":32,"40":7,"42":98,"44":451,"46":20,"49":172,"51":230,"56":5,"61":39,"62":91,"64":79,"67":58,"68":25,"69":4,"70":5,"73":5,"87":5,"91":36,"92":9,"94":33,"101":6,"102":27,"108":790,"109":250}},"geometry":{"type":"Point","coordinates":[-73.92079739350432,40.77446515804392]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081009600","ancestry":{"1":4043,"5":17,"42":46,"45":848,"46":16,"49":84,"51":125,"73":10,"87":10,"94":329,"101":6,"103":183,"105":140,"108":1927,"109":735}},"geometry":{"type":"Point","coordinates":[-73.83226841137892,40.68091377782466]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081009800","ancestry":{"1":2877,"40":24,"44":9,"45":464,"49":11,"51":10,"61":25,"65":6,"73":49,"87":21,"88":28,"94":183,"102":44,"103":139,"108":1925,"109":222}},"geometry":{"type":"Point","coordinates":[-73.83120815616354,40.68539994148782]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081009900","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.92308615343836,40.778558554967276]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081034700","ancestry":{"1":3222,"3":33,"5":78,"6":6,"7":6,"23":4,"36":7,"42":7,"45":16,"49":26,"51":76,"61":14,"73":26,"79":20,"88":6,"92":22,"94":87,"101":22,"102":14,"103":42,"105":9,"108":2033,"109":864}},"geometry":{"type":"Point","coordinates":[-73.87867744198465,40.76688485760741]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081035200","ancestry":{"1":2886,"5":24,"35":2,"45":59,"49":32,"51":44,"61":2,"64":2,"73":83,"79":15,"87":40,"88":28,"94":925,"96":84,"99":16,"101":166,"102":518,"103":43,"105":114,"108":1611,"109":238}},"geometry":{"type":"Point","coordinates":[-73.7575958164462,40.67948301068867]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081035300","ancestry":{"1":2346,"5":5,"6":8,"11":8,"38":10,"42":10,"45":79,"94":115,"99":22,"101":6,"102":22,"105":65,"108":1834,"109":306}},"geometry":{"type":"Point","coordinates":[-73.87412495585525,40.75961201597849]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081043900","ancestry":{"1":4467,"5":25,"19":10,"42":17,"51":142,"61":10,"63":176,"64":26,"94":46,"101":46,"108":3750,"109":292}},"geometry":{"type":"Point","coordinates":[-73.85581256866982,40.741868835109685]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081044000","ancestry":{"1":3864,"5":73,"23":31,"45":517,"49":6,"62":19,"73":41,"87":41,"94":1140,"97":17,"99":143,"102":679,"103":227,"104":17,"105":57,"108":1915,"109":228}},"geometry":{"type":"Point","coordinates":[-73.78462360137982,40.70267707561054]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081044601","ancestry":{"1":3298,"5":125,"40":8,"42":8,"45":218,"49":37,"51":8,"73":166,"80":17,"87":32,"88":117,"94":327,"96":10,"97":22,"99":22,"101":151,"103":81,"105":41,"108":2534,"109":113}},"geometry":{"type":"Point","coordinates":[-73.79779056317493,40.70495308692178]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081007500","ancestry":{"1":4142,"2":40,"3":91,"5":58,"6":207,"7":64,"10":16,"11":127,"18":16,"19":14,"21":7,"22":121,"23":45,"24":65,"29":31,"31":60,"34":17,"35":16,"36":115,"38":44,"40":317,"42":300,"44":187,"46":30,"49":471,"51":282,"53":28,"55":36,"59":17,"61":110,"62":73,"63":75,"64":151,"66":9,"67":17,"69":16,"70":16,"89":29,"91":28,"92":2,"93":14,"94":21,"101":1,"105":20,"108":1616,"109":387}},"geometry":{"type":"Point","coordinates":[-73.92732988610338,40.76454358748138]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081006300","ancestry":{"1":5212,"3":10,"5":40,"6":74,"7":13,"10":37,"13":12,"15":12,"16":40,"23":9,"29":24,"31":25,"34":25,"36":200,"38":222,"39":27,"40":119,"42":498,"44":392,"46":25,"49":266,"51":499,"55":35,"56":11,"59":12,"61":123,"62":10,"63":105,"64":92,"65":10,"66":37,"67":77,"70":33,"92":40,"93":80,"107":40,"108":2396,"109":748}},"geometry":{"type":"Point","coordinates":[-73.92002404517945,40.764484495515724]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081007100","ancestry":{"1":3775,"3":24,"5":124,"6":113,"7":45,"15":68,"18":10,"21":8,"22":163,"29":7,"33":9,"34":26,"36":130,"38":16,"40":80,"42":249,"44":207,"46":31,"49":343,"50":9,"51":413,"55":16,"61":102,"62":8,"63":74,"64":41,"67":7,"68":13,"70":40,"71":23,"89":73,"91":22,"92":19,"107":13,"108":1682,"109":392}},"geometry":{"type":"Point","coordinates":[-73.9230485817188,40.76908470942703]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010000","ancestry":{"1":3785,"5":26,"38":117,"42":31,"45":739,"48":117,"49":25,"51":130,"73":10,"87":10,"94":270,"101":24,"102":24,"103":25,"105":197,"108":2127,"109":534}},"geometry":{"type":"Point","coordinates":[-73.82888519153921,40.681153692415414]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010300","ancestry":{"1":3833,"3":13,"5":215,"6":120,"14":120,"19":10,"22":34,"23":10,"26":8,"29":7,"30":7,"31":33,"32":27,"34":30,"35":57,"36":16,"38":63,"39":16,"40":30,"42":308,"44":578,"45":6,"46":32,"49":327,"50":27,"51":395,"58":8,"59":37,"61":98,"62":10,"64":111,"66":25,"67":47,"73":19,"82":10,"87":9,"89":8,"90":26,"91":105,"92":13,"94":46,"101":6,"103":11,"105":29,"107":60,"108":1215,"109":408}},"geometry":{"type":"Point","coordinates":[-73.91507731084998,40.781059919960576]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010500","ancestry":{"1":4131,"3":19,"5":110,"6":269,"7":102,"11":31,"14":64,"15":72,"19":9,"24":21,"26":19,"31":21,"34":9,"36":73,"38":25,"40":8,"41":12,"42":147,"44":340,"49":172,"50":13,"51":232,"59":46,"61":18,"62":79,"64":10,"68":91,"73":81,"77":19,"87":53,"88":9,"89":19,"92":10,"94":100,"101":47,"102":53,"107":27,"108":2226,"109":420}},"geometry":{"type":"Point","coordinates":[-73.91294849688934,40.78279064362841]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010600","ancestry":{"1":3666,"5":50,"40":1,"42":18,"45":596,"49":16,"51":73,"52":1,"53":5,"62":14,"94":319,"99":18,"102":25,"103":236,"105":46,"108":2388,"109":303}},"geometry":{"type":"Point","coordinates":[-73.82496407554699,40.68568309136439]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36081010701","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.88740844676673,40.78767419826557]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010701","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.90386430714707,40.784379295680715]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011000","ancestry":{"1":3323,"5":50,"36":6,"42":19,"45":374,"49":200,"51":98,"53":8,"61":11,"94":443,"99":83,"101":36,"102":122,"103":144,"105":58,"108":2100,"109":344}},"geometry":{"type":"Point","coordinates":[-73.83501426164108,40.68731418849538]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011200","ancestry":{"1":2313,"5":6,"35":4,"44":6,"45":244,"51":246,"53":5,"61":16,"94":23,"101":2,"103":18,"105":3,"108":1290,"109":555}},"geometry":{"type":"Point","coordinates":[-73.83907463103917,40.68409812102899]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011300","ancestry":{"1":4193,"5":70,"6":64,"11":17,"15":47,"19":20,"23":7,"29":82,"31":9,"34":8,"35":8,"36":73,"38":21,"40":48,"41":60,"42":221,"44":450,"46":15,"49":257,"51":438,"52":8,"59":7,"61":240,"62":25,"63":16,"64":65,"65":7,"67":16,"68":7,"73":17,"87":17,"90":9,"91":74,"92":27,"93":8,"107":25,"108":1984,"109":426}},"geometry":{"type":"Point","coordinates":[-73.90846594712738,40.77625791158001]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010200","ancestry":{"1":3097,"5":1,"38":5,"42":42,"45":207,"49":12,"51":150,"59":2,"67":11,"73":29,"87":29,"91":15,"94":298,"96":7,"101":10,"103":96,"105":185,"108":2216,"109":238}},"geometry":{"type":"Point","coordinates":[-73.8229675575893,40.67877794314217]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011500","ancestry":{"1":2389,"5":70,"6":35,"7":19,"10":16,"19":29,"22":9,"23":9,"35":8,"36":110,"38":18,"40":44,"41":23,"42":237,"44":217,"49":175,"51":271,"56":7,"59":8,"61":61,"62":9,"64":51,"66":14,"67":75,"73":21,"88":21,"89":8,"91":64,"92":20,"93":7,"107":37,"108":1011,"109":222}},"geometry":{"type":"Point","coordinates":[-73.9133463676716,40.77442061733816]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011700","ancestry":{"1":3729,"3":32,"5":317,"6":36,"7":18,"10":18,"19":7,"23":39,"29":15,"30":6,"33":7,"34":8,"35":8,"36":119,"40":90,"41":31,"42":139,"44":588,"46":8,"49":290,"51":648,"53":10,"56":128,"59":7,"61":54,"63":32,"64":29,"66":21,"67":55,"70":7,"89":8,"91":21,"92":33,"94":8,"101":8,"108":1243,"109":539}},"geometry":{"type":"Point","coordinates":[-73.9104557573437,40.77222975839395]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011800","ancestry":{"1":2628,"2":19,"5":20,"42":76,"45":217,"49":69,"50":31,"51":37,"63":80,"73":4,"76":4,"94":188,"103":123,"105":155,"108":1727,"109":219}},"geometry":{"type":"Point","coordinates":[-73.8338966405628,40.69065148263683]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012200","ancestry":{"1":3346,"5":14,"6":15,"7":15,"34":13,"40":51,"42":97,"45":581,"49":91,"51":76,"61":44,"62":7,"89":4,"94":77,"103":25,"105":52,"108":2145,"109":268}},"geometry":{"type":"Point","coordinates":[-73.83106664808183,40.69649707114929]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012301","ancestry":{"1":2692,"3":8,"5":143,"6":144,"7":47,"10":57,"11":32,"12":8,"19":7,"23":18,"24":83,"26":6,"29":62,"31":6,"33":7,"36":63,"40":60,"42":126,"44":338,"46":101,"49":367,"51":624,"59":23,"61":56,"64":30,"67":21,"68":5,"73":7,"83":7,"89":7,"90":21,"91":19,"92":24,"107":6,"108":708,"109":176}},"geometry":{"type":"Point","coordinates":[-73.89908454382167,40.77578749471807]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012400","ancestry":{"1":2966,"2":34,"3":28,"5":11,"6":13,"12":13,"42":25,"45":213,"46":4,"49":141,"51":66,"52":10,"56":9,"61":44,"63":4,"71":18,"73":22,"81":22,"92":11,"94":86,"101":4,"102":23,"103":49,"105":10,"108":1886,"109":462}},"geometry":{"type":"Point","coordinates":[-73.83430355679313,40.695206344395494]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012602","ancestry":{"1":2370,"5":20,"36":10,"40":4,"41":5,"42":47,"45":256,"49":10,"51":52,"61":22,"62":4,"64":4,"73":10,"88":10,"90":5,"94":17,"103":17,"108":1727,"109":249}},"geometry":{"type":"Point","coordinates":[-73.84070534601351,40.69316951647362]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081013200","ancestry":{"1":2116,"5":165,"6":10,"11":10,"24":13,"28":4,"34":2,"36":2,"37":6,"42":35,"45":68,"46":7,"49":72,"51":87,"52":24,"61":11,"62":14,"64":20,"70":16,"73":5,"87":5,"92":34,"94":46,"103":46,"108":948,"109":652}},"geometry":{"type":"Point","coordinates":[-73.83438869457262,40.701294015489125]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081013400","ancestry":{"1":5571,"3":26,"5":593,"6":281,"8":29,"10":104,"14":148,"19":23,"21":29,"29":10,"33":12,"35":13,"36":50,"38":46,"40":95,"42":267,"44":69,"45":10,"46":117,"48":15,"49":338,"50":54,"51":263,"53":11,"61":168,"62":42,"63":52,"64":444,"66":13,"70":28,"73":238,"76":74,"87":164,"89":50,"92":21,"94":128,"101":26,"102":77,"103":25,"108":2246,"109":790}},"geometry":{"type":"Point","coordinates":[-73.83497942503169,40.70527972827188]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081013500","ancestry":{"1":1645,"5":147,"6":52,"10":52,"18":6,"19":5,"22":51,"29":10,"30":39,"36":13,"38":20,"42":16,"44":329,"46":16,"49":216,"50":7,"51":451,"56":34,"61":13,"62":17,"89":10,"108":274,"109":180}},"geometry":{"type":"Point","coordinates":[-73.89897694156184,40.77064877601383]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081013600","ancestry":{"1":1968,"5":290,"6":20,"14":20,"16":31,"19":38,"26":6,"32":5,"34":5,"35":5,"36":56,"37":5,"38":5,"40":13,"42":66,"44":2,"46":9,"48":16,"49":70,"51":88,"61":81,"63":23,"64":106,"66":10,"92":9,"94":27,"101":21,"102":6,"107":5,"108":886,"109":327}},"geometry":{"type":"Point","coordinates":[-73.82865826657118,40.70659961227147]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081013700","ancestry":{"1":1850,"3":42,"5":89,"6":30,"10":4,"14":26,"19":5,"24":39,"29":9,"30":10,"32":5,"34":8,"36":12,"38":23,"39":5,"40":4,"42":109,"44":396,"49":98,"50":8,"51":213,"56":10,"61":49,"63":68,"64":37,"70":20,"71":10,"73":5,"87":5,"89":16,"91":28,"92":5,"108":621,"109":104}},"geometry":{"type":"Point","coordinates":[-73.90491469964353,40.76897139186291]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081013800","ancestry":{"1":3735,"5":360,"23":18,"31":6,"32":8,"33":17,"35":50,"36":35,"38":34,"40":44,"42":69,"45":17,"46":3,"48":22,"49":111,"51":168,"61":126,"64":137,"67":26,"89":6,"92":9,"94":72,"101":12,"102":60,"108":2004,"109":628}},"geometry":{"type":"Point","coordinates":[-73.82516322721612,40.70657986813863]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014000","ancestry":{"1":3493,"4":12,"5":253,"6":62,"10":1,"14":61,"19":21,"23":9,"26":6,"29":9,"31":1,"34":13,"36":54,"38":41,"40":47,"42":137,"44":7,"45":19,"46":18,"49":106,"50":24,"51":96,"53":110,"55":44,"56":9,"61":127,"63":29,"64":117,"67":12,"71":9,"89":19,"91":16,"92":19,"94":2,"101":1,"103":1,"107":17,"108":1678,"109":673}},"geometry":{"type":"Point","coordinates":[-73.82904823102444,40.703725665799816]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014202","ancestry":{"1":2465,"5":54,"6":61,"15":61,"23":4,"36":27,"42":61,"45":303,"49":47,"51":78,"56":9,"64":4,"73":8,"87":8,"92":3,"94":59,"101":21,"102":2,"103":33,"105":3,"108":1671,"109":216}},"geometry":{"type":"Point","coordinates":[-73.82034703209608,40.69866628733066]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014500","ancestry":{"1":2111,"3":31,"5":56,"6":222,"7":64,"10":6,"11":84,"14":63,"15":5,"19":13,"22":31,"24":24,"29":134,"32":5,"36":98,"38":22,"40":20,"41":5,"42":67,"44":99,"46":49,"49":153,"51":334,"55":6,"56":27,"61":51,"62":16,"66":6,"67":5,"70":22,"71":7,"89":19,"90":5,"92":41,"93":31,"94":6,"105":6,"108":618,"109":186}},"geometry":{"type":"Point","coordinates":[-73.90750791210054,40.7642809321536]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015000","ancestry":{"1":2560,"5":23,"36":8,"45":315,"49":61,"51":15,"61":105,"94":241,"96":5,"99":6,"101":6,"102":13,"103":111,"105":106,"108":1708,"109":167}},"geometry":{"type":"Point","coordinates":[-73.82115487646992,40.693406324551276]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015200","ancestry":{"1":2853,"5":40,"36":10,"42":59,"45":400,"51":31,"57":10,"61":20,"73":24,"87":24,"94":80,"96":7,"102":9,"103":64,"105":15,"108":2100,"109":196}},"geometry":{"type":"Point","coordinates":[-73.81378236748219,40.69374546042427]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015400","ancestry":{"1":2452,"42":7,"45":45,"46":1,"49":7,"51":62,"61":6,"62":18,"64":22,"73":8,"87":8,"94":137,"101":7,"103":123,"105":7,"108":2078,"109":118}},"geometry":{"type":"Point","coordinates":[-73.82055883636309,40.69219551264216]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015500","ancestry":{"1":2428,"2":29,"3":15,"5":84,"6":42,"7":33,"14":9,"16":5,"19":39,"22":6,"23":42,"24":23,"26":4,"29":40,"35":14,"36":31,"38":36,"40":22,"42":101,"44":98,"46":11,"49":186,"51":279,"52":6,"55":6,"56":15,"59":12,"61":83,"64":25,"66":8,"67":8,"68":10,"69":8,"73":39,"75":5,"79":11,"87":23,"89":22,"91":6,"92":7,"93":5,"107":83,"108":959,"109":299}},"geometry":{"type":"Point","coordinates":[-73.9175961486519,40.760035102617586]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015600","ancestry":{"1":3385,"5":37,"6":17,"10":17,"31":11,"38":10,"45":494,"51":74,"64":17,"94":353,"97":6,"101":29,"102":40,"103":186,"105":92,"108":2324,"109":194}},"geometry":{"type":"Point","coordinates":[-73.82060717528286,40.69034434519261]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015700","ancestry":{"1":1586,"3":75,"5":17,"6":209,"7":44,"10":4,"11":14,"14":147,"22":63,"28":10,"33":5,"35":13,"36":16,"40":11,"42":59,"44":38,"49":107,"50":6,"51":67,"65":5,"66":5,"67":11,"73":14,"87":14,"89":6,"91":4,"92":5,"94":13,"102":7,"103":6,"108":723,"109":257}},"geometry":{"type":"Point","coordinates":[-73.9219257640366,40.75501471294625]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014700","ancestry":{"1":3043,"5":104,"6":20,"11":20,"16":9,"18":11,"19":48,"22":101,"23":26,"26":8,"29":117,"31":46,"32":57,"34":19,"35":9,"36":68,"38":67,"40":38,"42":423,"44":222,"46":43,"49":354,"51":494,"53":9,"55":11,"56":27,"60":8,"61":97,"62":28,"63":12,"64":121,"67":9,"70":19,"73":8,"85":8,"89":27,"90":8,"91":18,"93":7,"94":41,"101":32,"102":9,"108":907,"109":210}},"geometry":{"type":"Point","coordinates":[-73.91075218392787,40.762997606850305]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014800","ancestry":{"1":2204,"5":34,"41":5,"42":31,"45":159,"46":2,"49":34,"51":98,"61":77,"64":2,"67":77,"73":129,"86":85,"87":44,"94":17,"103":17,"108":1664,"109":54}},"geometry":{"type":"Point","coordinates":[-73.82237279453582,40.69450211399207]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014900","ancestry":{"1":2283,"3":77,"5":189,"6":46,"11":46,"19":8,"22":16,"23":9,"24":45,"29":17,"30":8,"32":10,"36":54,"38":33,"40":17,"42":124,"44":130,"49":161,"50":20,"51":146,"52":17,"55":8,"59":15,"61":68,"62":26,"63":6,"64":34,"65":11,"67":8,"68":6,"94":7,"102":7,"107":53,"108":904,"109":325}},"geometry":{"type":"Point","coordinates":[-73.91444418780559,40.76185376423256]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018502","ancestry":{"1":3490,"5":97,"6":59,"11":10,"15":49,"16":37,"19":26,"24":29,"31":26,"32":8,"34":9,"35":25,"36":56,"39":9,"40":44,"42":122,"44":252,"46":9,"49":261,"51":193,"53":18,"59":18,"61":62,"63":91,"64":8,"67":35,"90":9,"91":23,"92":10,"93":19,"94":77,"105":77,"107":39,"108":1878,"109":372}},"geometry":{"type":"Point","coordinates":[-73.92206471608738,40.740554606201044]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081016300","ancestry":{"1":4086,"5":137,"6":8,"10":8,"19":11,"29":19,"36":26,"42":49,"44":98,"45":10,"49":68,"51":103,"53":9,"55":9,"61":23,"64":36,"67":9,"73":32,"87":32,"89":11,"92":18,"94":94,"97":21,"101":39,"102":24,"104":10,"107":57,"108":2915,"109":607}},"geometry":{"type":"Point","coordinates":[-73.90988189450258,40.75630810113297]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081016600","ancestry":{"1":3286,"5":18,"40":71,"45":477,"46":1,"49":8,"51":8,"61":20,"73":42,"87":42,"94":64,"99":10,"101":23,"105":31,"108":2372,"109":244}},"geometry":{"type":"Point","coordinates":[-73.82070467443278,40.68127664876975]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081016800","ancestry":{"1":3431,"5":28,"16":12,"23":1,"26":6,"36":7,"38":1,"41":6,"45":269,"46":1,"49":35,"51":29,"62":5,"64":1,"73":6,"87":6,"88":6,"94":474,"101":20,"103":56,"105":416,"108":2222,"109":440}},"geometry":{"type":"Point","coordinates":[-73.8172335102969,40.67936751862331]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081016900","ancestry":{"1":5396,"5":380,"6":102,"7":16,"15":86,"19":30,"22":14,"29":38,"31":27,"32":16,"33":14,"34":14,"36":211,"37":15,"38":126,"40":32,"42":276,"44":63,"49":674,"51":207,"53":28,"56":30,"58":52,"59":43,"61":119,"62":11,"63":55,"64":42,"65":121,"66":42,"67":41,"71":16,"73":15,"87":15,"89":44,"91":88,"92":30,"93":13,"94":91,"101":91,"108":2620,"109":556}},"geometry":{"type":"Point","coordinates":[-73.91435913965333,40.748272577657204]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081017000","ancestry":{"1":2472,"5":43,"45":426,"49":5,"51":1,"61":14,"94":584,"96":9,"97":3,"101":15,"102":86,"103":214,"105":266,"108":1191,"109":355}},"geometry":{"type":"Point","coordinates":[-73.81200165520988,40.684314347890584]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081017100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.92554975904676,40.74974948874716]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081017200","ancestry":{"1":2348,"5":19,"42":8,"45":361,"49":4,"51":20,"61":5,"62":26,"73":25,"79":25,"94":429,"96":14,"99":33,"101":32,"102":147,"103":51,"105":152,"108":957,"109":539}},"geometry":{"type":"Point","coordinates":[-73.81140100262145,40.682332814295314]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081017400","ancestry":{"1":2815,"5":44,"22":5,"34":93,"36":89,"42":43,"45":337,"49":60,"51":25,"62":11,"73":23,"88":23,"94":665,"96":26,"101":70,"102":169,"103":160,"105":240,"108":1454,"109":252}},"geometry":{"type":"Point","coordinates":[-73.81055174236596,40.680578649801085]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081017600","ancestry":{"1":2358,"5":19,"40":6,"42":46,"45":278,"51":27,"62":5,"64":12,"67":6,"73":18,"87":18,"89":1,"94":512,"99":16,"101":51,"102":67,"103":100,"105":278,"108":1383,"109":165}},"geometry":{"type":"Point","coordinates":[-73.80971364223883,40.678824962556845]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018000","ancestry":{"1":1234,"5":15,"6":128,"14":128,"37":19,"38":9,"39":19,"45":163,"73":4,"87":4,"94":102,"103":35,"105":67,"108":647,"109":159}},"geometry":{"type":"Point","coordinates":[-73.80541153074628,40.675785679286136]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025301","ancestry":{"1":4049,"3":9,"5":114,"6":58,"11":12,"12":18,"14":28,"16":103,"19":39,"23":24,"24":24,"29":8,"31":11,"34":38,"35":33,"36":96,"38":25,"40":71,"42":144,"44":19,"46":62,"48":22,"49":195,"51":154,"52":15,"61":66,"63":50,"64":13,"66":7,"67":9,"70":8,"89":25,"91":105,"92":8,"93":9,"94":18,"101":8,"103":10,"105":10,"108":2321,"109":541}},"geometry":{"type":"Point","coordinates":[-73.91651627512222,40.74456849588404]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018200","ancestry":{"1":2264,"5":35,"45":243,"73":51,"79":46,"87":5,"94":451,"96":10,"99":70,"101":92,"102":143,"103":159,"108":1454,"109":102}},"geometry":{"type":"Point","coordinates":[-73.79915659342754,40.67615658464949]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025302","ancestry":{"1":2689,"5":60,"23":22,"36":26,"39":8,"42":98,"44":11,"45":59,"48":35,"49":128,"51":51,"61":94,"67":8,"90":8,"91":87,"108":1830,"109":333}},"geometry":{"type":"Point","coordinates":[-73.91313545000217,40.744168836837815]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018401","ancestry":{"1":2411,"5":52,"36":2,"45":458,"73":104,"74":6,"87":98,"94":648,"96":31,"102":246,"103":367,"105":21,"108":1129,"109":169}},"geometry":{"type":"Point","coordinates":[-73.79222079780095,40.675191269817105]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018700","ancestry":{"1":2813,"3":27,"5":70,"21":9,"22":35,"23":9,"31":21,"34":14,"36":33,"38":12,"40":68,"42":32,"44":45,"45":14,"49":176,"51":145,"59":9,"61":25,"62":11,"63":14,"66":8,"92":9,"108":1926,"109":288}},"geometry":{"type":"Point","coordinates":[-73.9246745919248,40.73665776198147]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018402","ancestry":{"1":2324,"5":4,"26":5,"36":8,"42":8,"45":146,"49":9,"50":5,"51":26,"73":218,"79":137,"87":79,"88":2,"89":4,"93":4,"94":370,"96":5,"101":29,"102":126,"103":206,"105":4,"108":1450,"109":101}},"geometry":{"type":"Point","coordinates":[-73.79436112417714,40.67894777891634]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018600","ancestry":{"1":1782,"5":21,"42":6,"45":266,"51":6,"73":93,"78":25,"79":45,"87":23,"94":94,"101":5,"102":83,"105":6,"108":1162,"109":187}},"geometry":{"type":"Point","coordinates":[-73.79895717772291,40.679877607111855]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018800","ancestry":{"1":1330,"5":83,"6":5,"10":1,"11":4,"31":1,"36":4,"42":1,"44":2,"45":28,"49":3,"51":2,"62":10,"73":49,"79":26,"81":4,"87":19,"94":212,"96":20,"101":54,"102":68,"103":18,"105":58,"108":935,"109":77}},"geometry":{"type":"Point","coordinates":[-73.7998472825538,40.68162557517983]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026902","ancestry":{"1":4544,"5":78,"22":14,"34":17,"38":4,"42":26,"49":89,"51":20,"61":21,"67":8,"94":34,"105":34,"108":3513,"109":825}},"geometry":{"type":"Point","coordinates":[-73.882953840203,40.74461460855604]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081019200","ancestry":{"1":1903,"5":6,"38":5,"42":15,"45":225,"49":15,"51":12,"94":230,"96":12,"99":4,"101":18,"102":148,"103":33,"105":15,"108":1289,"109":161}},"geometry":{"type":"Point","coordinates":[-73.80063686678781,40.683815740593914]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081030903","ancestry":{"1":6413,"5":185,"6":166,"7":118,"11":48,"16":8,"22":26,"29":46,"37":15,"40":23,"42":10,"44":205,"49":30,"51":122,"61":16,"64":17,"71":27,"89":13,"108":5087,"109":574}},"geometry":{"type":"Point","coordinates":[-73.89006491903154,40.75794848029494]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081019600","ancestry":{"1":2777,"5":19,"35":1,"36":27,"38":1,"40":11,"42":2,"44":2,"45":415,"49":2,"51":2,"73":69,"79":57,"87":12,"94":455,"99":59,"101":6,"102":345,"103":74,"105":14,"108":1760,"109":123}},"geometry":{"type":"Point","coordinates":[-73.79990844999385,40.68946939636791]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018900","ancestry":{"1":3409,"5":76,"6":44,"7":35,"10":9,"16":59,"36":43,"38":9,"42":100,"44":9,"46":20,"49":145,"51":135,"53":8,"56":35,"59":29,"61":113,"63":74,"64":10,"66":9,"67":34,"73":19,"74":9,"87":10,"89":11,"91":20,"94":20,"101":10,"105":10,"108":2169,"109":447}},"geometry":{"type":"Point","coordinates":[-73.92799903582426,40.74008193855309]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081019000","ancestry":{"1":2313,"5":177,"38":10,"45":350,"58":3,"73":4,"79":4,"94":225,"96":18,"99":40,"101":48,"102":91,"103":28,"108":1494,"109":128}},"geometry":{"type":"Point","coordinates":[-73.7952220891738,40.68538621163717]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081020400","ancestry":{"1":1987,"5":105,"36":1,"42":1,"45":177,"49":28,"62":25,"64":1,"73":17,"79":11,"87":6,"92":1,"94":491,"96":18,"97":36,"101":51,"102":94,"103":256,"104":87,"105":5,"106":18,"108":997,"109":187}},"geometry":{"type":"Point","coordinates":[-73.80341528577043,40.69517011055177]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081020600","ancestry":{"1":1549,"5":73,"22":11,"36":9,"45":169,"49":5,"62":72,"64":8,"94":179,"101":5,"102":97,"103":58,"105":19,"108":914,"109":126}},"geometry":{"type":"Point","coordinates":[-73.80923857897746,40.69433964255863]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081020800","ancestry":{"1":2579,"5":177,"22":11,"38":15,"45":291,"49":10,"51":17,"62":236,"73":47,"87":47,"94":201,"96":20,"99":5,"101":10,"102":50,"103":108,"105":8,"108":1465,"109":185}},"geometry":{"type":"Point","coordinates":[-73.80688605273005,40.69838462013125]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081021200","ancestry":{"1":2270,"5":23,"6":115,"7":17,"8":79,"13":19,"42":15,"44":9,"45":167,"49":19,"51":58,"52":9,"73":11,"87":11,"94":38,"101":31,"105":7,"108":1809,"109":107}},"geometry":{"type":"Point","coordinates":[-73.81161450018561,40.70090980018705]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081021400","ancestry":{"1":6356,"5":128,"6":43,"14":43,"22":13,"33":13,"34":11,"36":53,"38":12,"40":46,"42":67,"45":263,"48":15,"49":26,"51":280,"59":13,"61":38,"63":12,"64":90,"67":73,"73":53,"87":26,"88":27,"92":33,"94":510,"99":13,"101":11,"102":83,"103":262,"105":15,"106":126,"107":138,"108":4532,"109":286}},"geometry":{"type":"Point","coordinates":[-73.8152034992849,40.70606680928073]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081021600","ancestry":{"1":4289,"3":47,"5":251,"6":138,"7":23,"15":115,"21":8,"27":10,"31":15,"35":16,"36":31,"40":21,"42":199,"44":25,"45":169,"46":54,"48":135,"49":196,"51":150,"52":8,"61":68,"63":32,"64":87,"65":7,"67":87,"70":1,"73":85,"82":51,"87":85,"89":15,"92":45,"94":337,"96":23,"101":71,"102":8,"103":188,"105":47,"108":1956,"109":534}},"geometry":{"type":"Point","coordinates":[-73.82363715107553,40.70944530175711]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081021900","ancestry":{"1":4,"51":4}},"geometry":{"type":"Point","coordinates":[-73.91774762696907,40.7235210090648]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081022001","ancestry":{"1":5721,"5":187,"6":19,"7":19,"19":16,"22":15,"23":18,"26":16,"31":14,"33":15,"35":30,"36":64,"40":48,"41":14,"42":127,"44":25,"45":27,"46":14,"48":14,"49":194,"51":201,"61":213,"63":15,"64":570,"66":15,"67":28,"73":30,"87":30,"90":40,"94":228,"97":23,"101":37,"102":130,"103":8,"105":40,"108":3569,"109":528}},"geometry":{"type":"Point","coordinates":[-73.82066378617155,40.71363470332066]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081022900","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.91134123840516,40.734275569425186]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081023000","ancestry":{"1":2263,"5":33,"6":31,"7":31,"26":5,"30":3,"35":10,"36":27,"42":35,"44":56,"45":10,"46":87,"49":40,"51":7,"59":4,"63":56,"64":88,"89":14,"94":32,"105":32,"108":1825,"109":74}},"geometry":{"type":"Point","coordinates":[-73.80814635052576,40.71264486322074]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081043701","ancestry":{"1":3743,"5":94,"16":7,"21":27,"23":6,"30":7,"31":5,"34":5,"35":5,"36":12,"38":5,"40":20,"42":32,"44":15,"45":27,"46":17,"49":156,"51":111,"61":6,"63":127,"64":16,"73":42,"87":42,"92":15,"93":6,"94":80,"102":68,"105":12,"107":12,"108":2820,"109":292}},"geometry":{"type":"Point","coordinates":[-73.85112056737968,40.739150894446496]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061302","ancestry":{"1":14,"36":4,"42":3,"49":7,"61":3,"64":4,"94":3,"101":3}},"geometry":{"type":"Point","coordinates":[-73.88352777079822,40.709327387941194]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071306","ancestry":{"1":6268,"2":16,"3":84,"5":164,"6":34,"8":34,"16":63,"19":47,"31":13,"36":62,"38":18,"42":61,"44":78,"46":19,"48":41,"49":213,"50":32,"51":186,"52":43,"53":33,"61":206,"62":52,"63":58,"64":549,"65":43,"67":12,"68":49,"72":35,"73":16,"79":16,"92":41,"93":15,"94":16,"102":1,"105":15,"107":224,"108":3632,"109":696}},"geometry":{"type":"Point","coordinates":[-73.85604678721931,40.726162191368616]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077906","ancestry":{"1":3153,"5":387,"6":76,"7":24,"11":10,"15":42,"26":11,"35":57,"36":11,"38":29,"40":9,"42":36,"45":10,"46":9,"48":11,"49":77,"50":59,"51":150,"61":35,"63":9,"64":153,"73":10,"75":10,"91":15,"94":31,"99":10,"102":9,"103":12,"108":1659,"109":465}},"geometry":{"type":"Point","coordinates":[-73.81876196714391,40.72939747642027]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081057900","ancestry":{"1":1670,"3":63,"5":39,"6":21,"7":21,"19":12,"23":6,"24":22,"36":7,"42":86,"44":16,"49":228,"50":5,"51":324,"55":10,"61":86,"63":52,"68":11,"89":5,"92":22,"94":5,"106":5,"107":68,"108":629,"109":112}},"geometry":{"type":"Point","coordinates":[-73.8900442579565,40.703491668231]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081058000","ancestry":{"1":3533,"5":47,"36":1,"44":30,"45":48,"51":1,"61":18,"64":20,"73":60,"87":60,"94":1601,"96":24,"101":781,"102":656,"103":8,"105":147,"108":1674,"109":172}},"geometry":{"type":"Point","coordinates":[-73.73071531283104,40.70724579728151]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081058100","ancestry":{"1":2823,"3":172,"5":71,"6":205,"7":15,"15":190,"26":19,"29":2,"34":3,"36":5,"42":200,"46":9,"49":78,"51":372,"59":8,"61":325,"63":36,"67":8,"68":25,"71":8,"107":17,"108":1261,"109":194}},"geometry":{"type":"Point","coordinates":[-73.89380821714558,40.70395740284139]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081058900","ancestry":{"1":4047,"3":88,"5":178,"6":385,"7":378,"9":7,"19":7,"29":21,"31":8,"32":28,"36":35,"38":8,"42":68,"44":46,"46":28,"48":9,"49":75,"51":119,"53":15,"55":8,"61":711,"63":76,"66":10,"67":23,"68":81,"70":16,"71":8,"92":116,"94":57,"97":12,"102":45,"107":34,"108":1846,"109":199}},"geometry":{"type":"Point","coordinates":[-73.90503984004513,40.70624041101933]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081090700","ancestry":{"1":1227,"2":30,"5":60,"6":63,"14":57,"15":6,"29":70,"40":5,"42":132,"44":34,"49":192,"51":231,"61":19,"62":4,"64":4,"70":4,"94":6,"103":6,"108":534,"109":139}},"geometry":{"type":"Point","coordinates":[-73.83800979113774,40.774252748828374]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081091601","ancestry":{"1":4078,"5":265,"6":27,"10":13,"13":14,"23":11,"31":14,"34":14,"36":173,"38":8,"40":40,"42":613,"44":17,"49":2435,"51":716,"53":64,"58":11,"59":25,"61":73,"64":16,"65":12,"67":39,"89":19,"92":52,"94":9,"98":9,"107":14,"108":91,"109":680}},"geometry":{"type":"Point","coordinates":[-73.92023091119387,40.55610173403936]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081092800","ancestry":{"1":3497,"5":272,"19":57,"21":12,"35":23,"36":95,"38":9,"40":9,"42":348,"44":163,"45":7,"46":26,"49":1662,"51":790,"52":10,"53":9,"59":67,"61":137,"63":21,"64":161,"66":18,"67":9,"92":12,"108":206,"109":439}},"geometry":{"type":"Point","coordinates":[-73.8534349523039,40.57480574829206]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36081092900","ancestry":{"1":6227,"2":89,"5":441,"6":52,"10":52,"16":45,"23":15,"26":16,"29":36,"31":17,"34":28,"35":27,"36":54,"42":268,"44":73,"46":45,"49":396,"51":473,"53":37,"59":32,"61":109,"63":16,"90":25,"94":60,"102":47,"105":13,"108":4394,"109":260}},"geometry":{"type":"Point","coordinates":[-73.87093020100478,40.78845907329157]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081092900","ancestry":{"1":6227,"2":89,"5":441,"6":52,"10":52,"16":45,"23":15,"26":16,"29":36,"31":17,"34":28,"35":27,"36":54,"42":268,"44":73,"46":45,"49":396,"51":473,"53":37,"59":32,"61":109,"63":16,"90":25,"94":60,"102":47,"105":13,"108":4394,"109":260}},"geometry":{"type":"Point","coordinates":[-73.85145162775471,40.78714736079065]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081091602","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.89116945751212,40.56185968824133]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081091800","ancestry":{"1":6,"35":3,"36":3,"61":3}},"geometry":{"type":"Point","coordinates":[-73.87255444943109,40.56789146684038]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081092200","ancestry":{"1":2101,"5":197,"6":15,"10":4,"13":11,"16":12,"19":9,"35":9,"36":37,"38":58,"40":16,"41":22,"42":175,"44":29,"49":474,"50":5,"51":705,"53":4,"56":5,"59":50,"61":90,"63":20,"64":130,"66":4,"67":4,"90":8,"92":8,"107":3,"108":265,"109":143}},"geometry":{"type":"Point","coordinates":[-73.86077952161526,40.5728381071693]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081093800","ancestry":{"1":5775,"5":138,"6":4,"9":4,"19":16,"23":5,"24":7,"28":16,"33":6,"34":13,"36":75,"38":63,"40":65,"42":561,"44":19,"45":54,"46":69,"48":6,"49":1518,"51":723,"52":18,"53":22,"59":6,"61":738,"64":112,"67":37,"71":4,"73":69,"79":65,"87":4,"90":7,"92":13,"94":100,"96":14,"99":4,"101":40,"102":36,"105":6,"108":1570,"109":701}},"geometry":{"type":"Point","coordinates":[-73.82997401000189,40.581776113456606]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081049200","ancestry":{"1":4453,"5":90,"36":17,"40":39,"45":497,"49":101,"51":23,"59":6,"61":19,"67":8,"73":113,"79":8,"87":105,"94":891,"96":62,"97":8,"101":439,"102":261,"103":6,"105":168,"108":2495,"109":432}},"geometry":{"type":"Point","coordinates":[-73.75849479322218,40.72298053147194]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081049301","ancestry":{"1":1950,"5":61,"6":18,"14":18,"19":6,"22":23,"29":6,"33":9,"38":19,"42":35,"44":44,"49":168,"51":261,"55":23,"61":144,"66":9,"68":5,"91":18,"94":6,"101":6,"108":995,"109":232}},"geometry":{"type":"Point","coordinates":[-73.89424989129257,40.73237084175836]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081049302","ancestry":{"1":2286,"5":68,"6":8,"14":8,"16":16,"28":20,"31":10,"36":39,"38":18,"40":6,"42":194,"44":74,"45":7,"46":12,"49":495,"51":585,"53":15,"61":263,"62":6,"64":21,"67":5,"94":13,"101":13,"108":665,"109":212}},"geometry":{"type":"Point","coordinates":[-73.89180294536926,40.72785498391037]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081049500","ancestry":{"1":1329,"5":19,"6":11,"15":11,"16":13,"22":13,"23":5,"36":8,"39":5,"40":8,"41":13,"42":109,"44":4,"46":10,"49":220,"51":272,"53":22,"61":143,"63":8,"70":9,"73":14,"87":14,"108":513,"109":160}},"geometry":{"type":"Point","coordinates":[-73.89041020732309,40.72538403921448]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081049600","ancestry":{"1":3055,"5":58,"33":10,"36":5,"40":6,"42":51,"44":3,"45":682,"46":8,"49":52,"51":41,"53":5,"61":22,"65":8,"73":35,"77":35,"94":351,"97":12,"101":127,"102":54,"103":4,"105":154,"108":1685,"109":249}},"geometry":{"type":"Point","coordinates":[-73.75312186884221,40.71695023253116]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081049700","ancestry":{"1":2671,"5":32,"6":1,"7":1,"16":20,"19":13,"23":1,"32":7,"34":8,"35":9,"36":9,"38":8,"40":9,"42":52,"45":1,"46":26,"49":357,"51":401,"53":6,"61":289,"64":20,"66":9,"108":1399,"109":379}},"geometry":{"type":"Point","coordinates":[-73.89037230943539,40.73175101394813]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081049900","ancestry":{"1":5241,"5":28,"16":9,"19":9,"23":42,"31":7,"34":7,"36":6,"40":9,"42":125,"44":139,"49":73,"50":19,"51":137,"61":157,"63":13,"67":7,"68":16,"70":1,"73":1,"76":1,"108":3917,"109":688}},"geometry":{"type":"Point","coordinates":[-73.88335257057896,40.73112849322116]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081060100","ancestry":{"1":1949,"5":77,"16":18,"19":26,"23":5,"24":30,"30":6,"31":11,"40":3,"42":155,"44":6,"49":186,"51":232,"53":5,"61":371,"63":21,"64":27,"92":12,"108":624,"109":367}},"geometry":{"type":"Point","coordinates":[-73.90241247631984,40.71521348240868]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059100","ancestry":{"1":4699,"5":279,"6":122,"7":13,"11":109,"19":35,"26":28,"33":12,"34":23,"36":43,"41":12,"42":166,"49":131,"51":299,"55":77,"61":999,"63":90,"70":15,"92":11,"107":27,"108":2620,"109":82}},"geometry":{"type":"Point","coordinates":[-73.90978069863007,40.708111862232805]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059200","ancestry":{"1":1141,"5":43,"23":4,"45":80,"49":20,"73":28,"87":28,"94":352,"96":24,"99":11,"101":83,"102":190,"103":24,"105":43,"108":581,"109":84}},"geometry":{"type":"Point","coordinates":[-73.72973236142232,40.70123507897505]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059300","ancestry":{"1":3947,"3":437,"5":317,"6":57,"7":49,"10":8,"16":32,"18":20,"22":10,"23":9,"24":7,"31":5,"32":27,"36":18,"40":16,"42":247,"44":46,"46":7,"49":149,"51":258,"59":10,"61":632,"63":153,"64":38,"67":8,"68":23,"73":27,"87":27,"89":7,"92":147,"94":12,"102":12,"107":72,"108":1201,"109":291}},"geometry":{"type":"Point","coordinates":[-73.90265080098779,40.710208038317]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059400","ancestry":{"1":1632,"5":76,"45":72,"73":99,"79":10,"87":89,"94":494,"96":6,"101":134,"102":319,"103":28,"105":21,"108":839,"109":147}},"geometry":{"type":"Point","coordinates":[-73.73118445171215,40.69846915514803]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059500","ancestry":{"1":4271,"5":353,"6":95,"7":70,"15":25,"19":8,"26":18,"29":74,"36":9,"42":178,"45":24,"48":1,"49":290,"51":508,"53":16,"61":916,"63":52,"64":8,"67":8,"68":25,"73":45,"87":45,"89":21,"92":39,"94":28,"101":10,"103":10,"105":8,"107":20,"108":1553,"109":383}},"geometry":{"type":"Point","coordinates":[-73.90834225479966,40.71377504819936]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059800","ancestry":{"1":1788,"5":112,"23":7,"42":6,"45":17,"51":15,"61":6,"73":159,"79":140,"87":19,"94":513,"99":6,"101":220,"102":295,"105":7,"108":1055,"109":81}},"geometry":{"type":"Point","coordinates":[-73.74066659244768,40.69829468274621]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059900","ancestry":{"1":1381,"5":21,"6":23,"7":23,"19":5,"38":65,"41":9,"42":205,"46":11,"49":284,"51":400,"53":4,"59":9,"61":130,"62":13,"73":2,"87":1,"88":1,"92":5,"107":12,"108":394,"109":163}},"geometry":{"type":"Point","coordinates":[-73.90213197167999,40.71724490682809]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081060000","ancestry":{"1":1017,"5":18,"45":26,"51":6,"67":9,"73":12,"87":12,"94":424,"96":17,"101":78,"102":251,"105":92,"108":563,"109":60}},"geometry":{"type":"Point","coordinates":[-73.73330320844667,40.69506304732548]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081060600","ancestry":{"1":1251,"5":26,"38":15,"49":5,"51":9,"67":13,"73":32,"87":10,"88":22,"89":8,"94":395,"96":4,"99":4,"101":164,"102":161,"103":31,"105":40,"108":742,"109":61}},"geometry":{"type":"Point","coordinates":[-73.73533084752074,40.69174711410706]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081060701","ancestry":{"1":10,"108":10}},"geometry":{"type":"Point","coordinates":[-73.89396986440411,40.717258198335884]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081060800","ancestry":{"1":1530,"5":58,"17":6,"73":71,"79":36,"87":29,"88":6,"94":655,"96":10,"99":32,"101":152,"102":258,"103":197,"105":17,"108":684,"109":113}},"geometry":{"type":"Point","coordinates":[-73.74131434944393,40.693603674217826]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061400","ancestry":{"1":1411,"5":6,"44":5,"45":110,"51":18,"73":34,"87":34,"94":608,"99":5,"101":185,"102":380,"103":6,"105":37,"108":547,"109":167}},"geometry":{"type":"Point","coordinates":[-73.72951201406585,40.686119664068876]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061602","ancestry":{"1":1298,"5":81,"36":9,"40":4,"42":15,"45":9,"49":3,"51":28,"61":6,"64":6,"67":26,"70":2,"73":23,"83":3,"87":20,"88":3,"94":566,"96":11,"99":34,"101":194,"102":293,"103":4,"105":44,"108":516,"109":123}},"geometry":{"type":"Point","coordinates":[-73.72924221518808,40.67755245693913]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051500","ancestry":{"1":2425,"5":129,"19":6,"22":9,"23":26,"31":14,"32":8,"34":7,"36":51,"40":55,"41":6,"42":136,"46":18,"49":574,"51":546,"61":314,"63":75,"64":13,"107":12,"108":474,"109":316}},"geometry":{"type":"Point","coordinates":[-73.90149765217426,40.73097575582309]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051600","ancestry":{"1":1782,"5":46,"49":13,"73":39,"84":11,"87":28,"94":689,"96":4,"101":127,"102":423,"103":23,"105":125,"108":774,"109":299}},"geometry":{"type":"Point","coordinates":[-73.7472615880435,40.702723870675186]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051700","ancestry":{"1":1694,"5":26,"6":23,"7":19,"12":4,"35":13,"36":48,"40":27,"42":135,"44":9,"49":136,"51":167,"53":8,"61":459,"63":17,"64":22,"66":10,"67":23,"73":1,"87":1,"92":16,"108":535,"109":285}},"geometry":{"type":"Point","coordinates":[-73.90029402557299,40.72462825289887]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050000","ancestry":{"1":4489,"5":396,"6":6,"11":6,"22":1,"36":105,"38":6,"41":2,"42":113,"45":623,"48":7,"49":15,"51":41,"61":7,"64":7,"66":1,"73":98,"79":11,"86":18,"87":45,"88":24,"94":1517,"95":85,"96":79,"101":846,"102":123,"103":242,"105":172,"108":1801,"109":194}},"geometry":{"type":"Point","coordinates":[-73.76361577105091,40.7119448483755]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051800","ancestry":{"1":2439,"5":213,"45":199,"49":1,"51":1,"73":76,"87":72,"88":4,"94":1109,"95":44,"96":165,"99":83,"101":96,"102":708,"103":38,"105":26,"108":994,"109":38}},"geometry":{"type":"Point","coordinates":[-73.7520094175443,40.701838186077566]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081052100","ancestry":{"1":1470,"5":135,"19":17,"22":1,"23":11,"29":11,"31":26,"32":6,"40":44,"42":92,"45":5,"49":279,"51":246,"53":5,"61":232,"67":23,"73":44,"87":44,"94":25,"101":19,"105":6,"107":1,"108":273,"109":231}},"geometry":{"type":"Point","coordinates":[-73.90151566386518,40.72086484414842]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081052200","ancestry":{"1":1890,"5":428,"36":5,"45":150,"51":1,"62":15,"73":53,"76":10,"79":31,"87":22,"94":441,"96":3,"97":12,"99":25,"101":15,"102":362,"103":53,"108":652,"109":282}},"geometry":{"type":"Point","coordinates":[-73.75736832752465,40.70044470007612]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050201","ancestry":{"1":1465,"5":119,"36":18,"42":6,"62":6,"73":109,"87":109,"94":558,"101":152,"102":292,"103":55,"105":59,"108":600,"109":159}},"geometry":{"type":"Point","coordinates":[-73.7649037207123,40.70880256679939]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050500","ancestry":{"1":1460,"5":159,"6":166,"7":115,"10":45,"11":6,"34":9,"42":104,"44":13,"49":129,"51":77,"61":55,"62":4,"63":37,"64":17,"89":12,"92":39,"94":6,"102":6,"108":660,"109":94}},"geometry":{"type":"Point","coordinates":[-73.87475224499825,40.72907985375793]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050700","ancestry":{"1":3751,"3":11,"5":228,"6":44,"7":44,"16":62,"24":25,"27":6,"31":10,"34":6,"36":84,"41":21,"42":202,"46":62,"49":411,"51":524,"61":248,"62":43,"64":26,"66":10,"69":20,"70":80,"90":8,"91":38,"92":28,"94":1,"99":1,"108":1655,"109":387}},"geometry":{"type":"Point","coordinates":[-73.88158710226827,40.72702088252594]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050800","ancestry":{"1":1813,"3":10,"5":300,"16":4,"42":4,"45":43,"49":54,"51":16,"63":5,"73":91,"79":81,"87":10,"94":617,"97":11,"101":171,"102":319,"103":100,"105":16,"108":454,"109":323}},"geometry":{"type":"Point","coordinates":[-73.75542193140626,40.70698400257753]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051000","ancestry":{"1":1785,"5":212,"45":49,"73":7,"88":7,"94":747,"96":6,"99":60,"101":286,"102":327,"103":68,"108":724,"109":140}},"geometry":{"type":"Point","coordinates":[-73.75371540320008,40.70971170905515]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051100","ancestry":{"1":1963,"5":65,"6":20,"7":20,"16":18,"29":39,"33":12,"36":43,"42":84,"44":38,"46":18,"49":294,"51":359,"53":21,"61":413,"63":9,"64":23,"66":13,"67":16,"69":14,"70":10,"92":4,"93":4,"108":603,"109":152}},"geometry":{"type":"Point","coordinates":[-73.90016553568135,40.72732791564154]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051300","ancestry":{"1":1956,"5":31,"6":53,"11":53,"16":9,"21":11,"29":4,"38":4,"40":13,"42":30,"44":7,"49":110,"51":271,"53":5,"61":326,"63":11,"66":4,"67":5,"73":10,"87":10,"92":16,"108":942,"109":221}},"geometry":{"type":"Point","coordinates":[-73.89751367303681,40.731889728877825]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081080301","ancestry":{"1":4521,"2":216,"5":119,"16":8,"29":20,"42":10,"44":37,"45":71,"46":10,"49":35,"51":262,"60":8,"67":9,"70":10,"91":31,"108":3490,"109":313}},"geometry":{"type":"Point","coordinates":[-73.83087207509736,40.74479168713045]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081080302","ancestry":{"1":3528,"5":72,"6":117,"12":52,"13":45,"14":20,"19":5,"22":3,"29":61,"34":7,"36":13,"41":3,"42":72,"44":35,"48":8,"49":52,"51":323,"61":180,"64":29,"66":4,"73":23,"87":23,"90":2,"94":15,"101":7,"102":7,"103":1,"108":2416,"109":371}},"geometry":{"type":"Point","coordinates":[-73.82621829897461,40.740363416940276]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081080900","ancestry":{"1":7595,"5":754,"6":24,"7":10,"8":14,"19":23,"24":45,"26":19,"29":13,"32":14,"33":11,"35":232,"36":36,"37":4,"38":12,"39":4,"40":10,"42":328,"46":62,"48":40,"49":224,"50":179,"51":292,"53":13,"61":497,"62":45,"63":30,"64":238,"73":41,"76":31,"87":10,"90":11,"91":14,"92":83,"94":99,"101":89,"105":10,"108":3513,"109":1448}},"geometry":{"type":"Point","coordinates":[-73.82235505298321,40.73388034188194]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081081400","ancestry":{"1":3857,"5":96,"36":6,"42":33,"45":346,"49":80,"73":81,"87":61,"88":20,"94":781,"96":34,"99":49,"102":121,"103":296,"105":328,"108":2265,"109":312}},"geometry":{"type":"Point","coordinates":[-73.80393436974207,40.67070191158582]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081081800","ancestry":{"1":4504,"5":45,"34":9,"36":34,"40":10,"45":830,"51":174,"53":8,"61":9,"64":72,"73":21,"87":21,"94":910,"96":125,"99":9,"101":35,"102":67,"103":20,"105":677,"108":2070,"109":455}},"geometry":{"type":"Point","coordinates":[-73.80907582332348,40.67051728949798]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081052400","ancestry":{"1":1655,"5":213,"36":6,"45":94,"49":4,"62":9,"73":4,"87":4,"94":704,"95":50,"96":27,"97":7,"99":105,"101":255,"102":231,"103":50,"105":21,"108":482,"109":178}},"geometry":{"type":"Point","coordinates":[-73.76195955306567,40.70122769412731]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081052800","ancestry":{"1":1427,"5":288,"36":21,"45":17,"73":66,"79":34,"80":26,"87":6,"94":544,"96":59,"99":71,"101":89,"102":277,"103":39,"104":9,"108":385,"109":168}},"geometry":{"type":"Point","coordinates":[-73.75873029272931,40.69403520933032]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053000","ancestry":{"1":2120,"5":236,"40":6,"45":174,"73":145,"76":91,"87":54,"94":1123,"96":180,"99":46,"101":155,"102":622,"103":79,"104":51,"105":44,"106":7,"108":606,"109":67}},"geometry":{"type":"Point","coordinates":[-73.7525402910238,40.69633823782274]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061800","ancestry":{"1":1866,"5":32,"23":13,"40":8,"42":6,"49":6,"51":38,"61":5,"62":7,"63":31,"73":122,"79":61,"87":61,"94":804,"96":12,"99":40,"101":102,"102":467,"103":124,"105":88,"108":699,"109":292}},"geometry":{"type":"Point","coordinates":[-73.7364182239549,40.676894316083924]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061900","ancestry":{"1":3216,"3":26,"5":38,"19":33,"32":35,"38":26,"40":94,"42":303,"46":56,"49":420,"51":930,"53":19,"55":24,"61":127,"63":9,"90":22,"92":8,"93":31,"108":957,"109":543}},"geometry":{"type":"Point","coordinates":[-73.8770975448765,40.709790715539185]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062000","ancestry":{"1":1353,"5":40,"45":102,"49":7,"51":7,"73":95,"79":26,"87":69,"94":328,"96":13,"99":13,"101":146,"102":156,"105":10,"108":801,"109":75}},"geometry":{"type":"Point","coordinates":[-73.73781949739885,40.681056058995786]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062100","ancestry":{"1":2526,"5":123,"19":21,"23":8,"29":17,"35":23,"36":11,"38":16,"40":7,"42":442,"44":74,"46":6,"49":278,"51":869,"56":6,"61":158,"63":71,"64":90,"89":18,"92":7,"94":15,"102":15,"108":695,"109":128}},"geometry":{"type":"Point","coordinates":[-73.8726646681865,40.710014686294485]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062400","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.74199135986062,40.685782307522125]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062600","ancestry":{"1":3078,"5":61,"36":21,"41":11,"42":11,"45":83,"49":36,"51":6,"62":16,"67":5,"73":152,"79":92,"87":60,"93":6,"94":1262,"96":6,"97":16,"99":32,"100":7,"101":447,"102":657,"103":97,"108":1383,"109":158}},"geometry":{"type":"Point","coordinates":[-73.74810210717821,40.681974162660524]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062700","ancestry":{"1":2889,"3":21,"5":156,"6":22,"7":22,"19":42,"22":29,"34":2,"36":27,"41":7,"42":268,"49":219,"51":458,"61":323,"62":18,"63":29,"64":25,"68":99,"73":7,"87":7,"89":1,"92":78,"94":17,"103":17,"107":29,"108":1187,"109":81}},"geometry":{"type":"Point","coordinates":[-73.88645395603295,40.70377173549769]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062900","ancestry":{"1":3048,"3":58,"5":399,"19":7,"26":8,"36":40,"40":18,"42":284,"46":67,"49":287,"51":509,"61":367,"63":124,"67":25,"68":19,"69":10,"92":9,"93":28,"107":27,"108":943,"109":338}},"geometry":{"type":"Point","coordinates":[-73.8831388217984,40.70095829651488]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081083700","ancestry":{"1":5639,"5":104,"6":46,"7":7,"13":10,"15":29,"19":7,"31":11,"32":18,"34":12,"36":21,"38":8,"39":11,"42":48,"44":15,"49":42,"51":151,"53":15,"61":102,"62":9,"64":35,"66":6,"73":88,"88":88,"92":16,"94":16,"105":16,"108":4585,"109":495}},"geometry":{"type":"Point","coordinates":[-73.81978470678409,40.74475365468147]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081083800","ancestry":{"1":6214,"2":54,"5":25,"16":20,"32":8,"34":18,"36":55,"40":9,"42":129,"44":20,"45":698,"49":121,"51":341,"53":10,"61":39,"62":21,"64":33,"73":34,"81":10,"88":24,"92":30,"94":845,"96":18,"102":57,"103":168,"105":602,"108":3338,"109":699}},"geometry":{"type":"Point","coordinates":[-73.81950983151644,40.67029505243584]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081084000","ancestry":{"1":6208,"5":168,"6":116,"14":116,"17":16,"42":57,"45":690,"49":73,"51":235,"53":8,"61":48,"62":78,"73":156,"79":34,"87":10,"88":112,"91":39,"94":984,"101":3,"102":91,"103":195,"105":684,"106":11,"108":3560,"109":474}},"geometry":{"type":"Point","coordinates":[-73.81765339878109,40.67394926715324]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081084500","ancestry":{"1":4807,"5":204,"6":167,"10":167,"40":30,"42":23,"49":9,"50":7,"51":18,"61":33,"64":21,"73":20,"87":20,"91":10,"94":196,"96":21,"99":23,"101":120,"102":12,"103":20,"108":3749,"109":363}},"geometry":{"type":"Point","coordinates":[-73.8202281052451,40.74996132320173]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081084601","ancestry":{"1":2717,"5":24,"6":274,"15":274,"21":10,"34":24,"36":5,"40":49,"42":69,"45":143,"49":92,"51":327,"53":15,"61":30,"62":5,"94":189,"101":6,"103":5,"105":178,"108":1467,"109":245}},"geometry":{"type":"Point","coordinates":[-73.82172466510832,40.66734035981836]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053401","ancestry":{"1":2104,"5":44,"42":12,"45":116,"49":6,"73":17,"87":17,"94":979,"96":61,"99":13,"101":522,"102":345,"103":48,"105":21,"108":856,"109":214}},"geometry":{"type":"Point","coordinates":[-73.74414924300248,40.69982914943784]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081053900","ancestry":{"1":4412,"5":131,"6":158,"7":118,"11":40,"19":12,"22":33,"34":7,"36":28,"40":11,"42":57,"44":14,"49":82,"51":247,"53":6,"61":289,"62":7,"63":30,"64":7,"67":13,"92":48,"93":6,"94":4,"102":4,"108":3005,"109":361}},"geometry":{"type":"Point","coordinates":[-73.91936171948106,40.70816427694647]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053900","ancestry":{"1":4412,"5":131,"6":158,"7":118,"11":40,"19":12,"22":33,"34":7,"36":28,"40":11,"42":57,"44":14,"49":82,"51":247,"53":6,"61":289,"62":7,"63":30,"64":7,"67":13,"92":48,"93":6,"94":4,"102":4,"108":3005,"109":361}},"geometry":{"type":"Point","coordinates":[-73.91655022972883,40.71051327737011]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081053500","ancestry":{"1":1329,"5":5,"36":29,"42":31,"46":15,"49":22,"51":23,"61":103,"63":4,"64":6,"67":13,"92":5,"108":1097,"109":27}},"geometry":{"type":"Point","coordinates":[-73.92403989069834,40.71400808249278]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053500","ancestry":{"1":1329,"5":5,"36":29,"42":31,"46":15,"49":22,"51":23,"61":103,"63":4,"64":6,"67":13,"92":5,"108":1097,"109":27}},"geometry":{"type":"Point","coordinates":[-73.9162312077937,40.715919580269826]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053601","ancestry":{"1":2094,"5":7,"36":4,"45":189,"73":492,"79":108,"87":384,"94":585,"95":4,"96":28,"101":312,"102":116,"103":42,"105":83,"108":793,"109":60}},"geometry":{"type":"Point","coordinates":[-73.74587110771562,40.70671189144884]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081054000","ancestry":{"1":4391,"2":9,"5":107,"36":33,"38":30,"42":37,"45":278,"49":3,"51":3,"62":41,"64":9,"73":106,"76":10,"79":8,"87":88,"89":9,"94":2134,"96":14,"101":1002,"102":561,"103":87,"105":506,"108":1444,"109":401}},"geometry":{"type":"Point","coordinates":[-73.74322680755927,40.712799122199925]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063700","ancestry":{"1":3017,"5":314,"19":31,"31":10,"35":11,"36":18,"38":10,"40":70,"42":391,"44":34,"45":21,"46":23,"49":322,"51":728,"53":3,"61":188,"64":42,"65":9,"67":9,"71":20,"90":12,"92":11,"108":1272,"109":60}},"geometry":{"type":"Point","coordinates":[-73.86228572953938,40.70836001571467]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063800","ancestry":{"1":3929,"5":87,"40":50,"42":62,"44":51,"45":133,"49":32,"51":45,"73":113,"79":54,"87":59,"94":2036,"96":65,"99":40,"101":996,"102":650,"103":115,"105":170,"108":1217,"109":234}},"geometry":{"type":"Point","coordinates":[-73.73307593918429,40.6698273205791]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063900","ancestry":{"1":2549,"5":99,"6":25,"14":25,"19":47,"23":2,"24":115,"35":8,"36":32,"40":71,"41":6,"42":227,"46":8,"49":214,"51":429,"61":134,"63":64,"64":147,"92":31,"94":8,"105":8,"108":1072,"109":188}},"geometry":{"type":"Point","coordinates":[-73.8569711135424,40.70385553352419]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081064101","ancestry":{"1":2020,"3":46,"5":87,"19":14,"23":31,"26":5,"31":5,"33":5,"38":9,"40":11,"42":100,"46":6,"49":55,"50":5,"51":202,"61":506,"63":86,"64":100,"67":13,"68":24,"70":5,"73":6,"79":6,"92":11,"93":10,"94":6,"102":6,"108":724,"109":154}},"geometry":{"type":"Point","coordinates":[-73.85166682352965,40.69917021667942]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081064102","ancestry":{"1":134,"5":4,"21":4,"42":44,"50":39,"51":16,"61":4,"64":4,"108":15,"109":4}},"geometry":{"type":"Point","coordinates":[-73.86867854392445,40.69482136685923]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081064102","ancestry":{"1":134,"5":4,"21":4,"42":44,"50":39,"51":16,"61":4,"64":4,"108":15,"109":4}},"geometry":{"type":"Point","coordinates":[-73.8534810469604,40.70208048727131]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063301","ancestry":{"1":1359,"5":99,"6":42,"7":42,"19":44,"36":7,"40":36,"42":343,"44":34,"46":35,"49":165,"51":389,"59":5,"61":74,"63":21,"66":11,"67":15,"68":12,"92":14,"108":365,"109":65}},"geometry":{"type":"Point","coordinates":[-73.87457154805837,40.7044836646541]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063302","ancestry":{"1":1513,"3":20,"5":136,"6":10,"7":10,"19":18,"20":6,"26":5,"40":9,"42":329,"44":25,"46":15,"49":214,"51":362,"53":5,"61":37,"62":4,"63":35,"70":13,"107":51,"108":464,"109":108}},"geometry":{"type":"Point","coordinates":[-73.87140543551614,40.705393733763685]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063500","ancestry":{"1":2653,"3":17,"5":170,"6":39,"7":21,"11":6,"15":12,"19":32,"22":23,"26":6,"31":6,"34":11,"36":11,"38":18,"40":10,"42":468,"44":6,"46":51,"49":529,"51":518,"55":34,"59":9,"61":55,"62":5,"64":30,"67":24,"73":9,"87":9,"89":14,"90":42,"94":21,"102":21,"107":4,"108":808,"109":200}},"geometry":{"type":"Point","coordinates":[-73.86696089210821,40.70473923121265]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081064500","ancestry":{"1":2055,"5":111,"16":35,"19":16,"23":13,"34":10,"35":27,"36":5,"38":55,"40":39,"42":152,"44":42,"45":15,"46":12,"49":150,"51":214,"53":14,"59":5,"61":97,"62":5,"63":25,"67":5,"69":15,"70":16,"89":4,"92":53,"94":20,"102":14,"105":6,"108":981,"109":257}},"geometry":{"type":"Point","coordinates":[-73.85225004567835,40.70912203586642]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081064600","ancestry":{"1":3026,"5":129,"34":6,"36":23,"44":6,"45":155,"51":16,"62":6,"68":17,"73":111,"79":97,"87":14,"94":1232,"96":146,"99":5,"101":258,"102":725,"103":50,"105":96,"108":1251,"109":276}},"geometry":{"type":"Point","coordinates":[-73.74232542818945,40.67277398543165]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081065000","ancestry":{"1":3040,"5":158,"33":19,"45":173,"51":6,"64":23,"73":190,"82":51,"87":139,"94":1054,"96":29,"99":59,"101":416,"102":399,"103":56,"105":95,"108":1385,"109":229}},"geometry":{"type":"Point","coordinates":[-73.74482330741,40.66945918931019]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081084602","ancestry":{"1":1141,"19":5,"24":5,"36":7,"42":10,"45":5,"51":95,"61":14,"64":5,"66":4,"94":168,"101":14,"102":23,"103":14,"105":117,"108":890,"109":16}},"geometry":{"type":"Point","coordinates":[-73.81658083179575,40.6651259298694]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081086100","ancestry":{"1":2490,"5":22,"16":6,"19":11,"40":13,"42":9,"46":5,"49":29,"51":34,"61":30,"64":30,"92":6,"94":17,"102":16,"105":1,"108":1952,"109":386}},"geometry":{"type":"Point","coordinates":[-73.81787581386409,40.75681292308861]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081086300","ancestry":{"1":6903,"5":39,"6":64,"11":64,"22":1,"26":11,"31":11,"36":18,"38":13,"40":11,"42":30,"44":19,"49":35,"51":24,"61":22,"67":11,"72":12,"92":9,"94":53,"101":53,"108":6037,"109":586}},"geometry":{"type":"Point","coordinates":[-73.81994129878164,40.761268524181325]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081086400","ancestry":{"1":2673,"2":101,"5":32,"22":26,"36":8,"40":12,"42":67,"44":5,"45":506,"46":2,"49":108,"51":306,"53":5,"61":46,"66":5,"67":7,"89":4,"94":103,"101":5,"102":4,"103":85,"105":9,"108":1084,"109":450}},"geometry":{"type":"Point","coordinates":[-73.83158328574007,40.67333988320155]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081086500","ancestry":{"1":4310,"5":27,"19":15,"23":8,"26":14,"34":7,"36":10,"38":7,"40":49,"42":67,"46":45,"49":38,"51":70,"59":11,"61":15,"62":12,"64":212,"93":12,"108":3585,"109":244}},"geometry":{"type":"Point","coordinates":[-73.82517181954034,40.76268693560147]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081087100","ancestry":{"1":2285,"2":56,"5":255,"19":6,"26":4,"40":4,"42":11,"46":5,"49":39,"51":12,"61":7,"64":11,"67":4,"70":3,"73":46,"87":46,"94":46,"102":39,"103":7,"105":5,"108":1467,"109":485}},"geometry":{"type":"Point","coordinates":[-73.833613172526,40.759020949752866]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081088400","ancestry":{"1":7500,"5":242,"30":68,"32":13,"33":14,"34":12,"35":14,"36":107,"40":28,"42":907,"44":98,"46":13,"49":1790,"51":3412,"53":13,"58":64,"59":18,"61":353,"63":28,"64":85,"66":14,"67":13,"90":127,"91":63,"92":39,"94":3,"102":3,"108":913,"109":1149}},"geometry":{"type":"Point","coordinates":[-73.83436379730239,40.65841624554151]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081088901","ancestry":{"1":10605,"5":365,"6":36,"7":36,"19":114,"31":21,"34":87,"35":29,"36":1,"38":183,"40":10,"42":158,"44":120,"45":2,"46":73,"49":140,"51":332,"53":17,"61":95,"63":187,"64":306,"66":8,"73":28,"87":28,"89":19,"92":177,"94":13,"103":13,"108":7717,"109":1089}},"geometry":{"type":"Point","coordinates":[-73.82821732428565,40.772590802729695]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081089200","ancestry":{"1":8272,"3":426,"5":296,"19":100,"22":24,"29":53,"33":15,"35":18,"36":95,"38":40,"40":31,"42":439,"44":184,"46":33,"49":824,"51":4864,"53":29,"56":81,"59":12,"61":347,"63":16,"64":48,"66":17,"92":17,"94":39,"101":39,"108":554,"109":1265}},"geometry":{"type":"Point","coordinates":[-73.84635538927358,40.653958011778236]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081054500","ancestry":{"1":3757,"3":152,"5":161,"6":50,"7":50,"16":7,"31":31,"32":17,"36":10,"42":91,"46":8,"49":58,"51":206,"53":9,"58":8,"61":268,"64":19,"67":10,"68":10,"92":8,"94":10,"102":10,"107":7,"108":2589,"109":211}},"geometry":{"type":"Point","coordinates":[-73.91445557081444,40.705001617760416]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081054500","ancestry":{"1":3757,"3":152,"5":161,"6":50,"7":50,"16":7,"31":31,"32":17,"36":10,"42":91,"46":8,"49":58,"51":206,"53":9,"58":8,"61":268,"64":19,"67":10,"68":10,"92":8,"94":10,"102":10,"107":7,"108":2589,"109":211}},"geometry":{"type":"Point","coordinates":[-73.91262122626362,40.70554797315509]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081054200","ancestry":{"1":5842,"5":41,"6":150,"15":150,"42":85,"45":1354,"49":92,"51":80,"61":74,"62":37,"94":804,"97":8,"101":563,"102":94,"103":57,"105":82,"108":3017,"109":368}},"geometry":{"type":"Point","coordinates":[-73.7464904719977,40.71907443867234]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081054700","ancestry":{"1":4932,"5":166,"6":74,"11":56,"12":18,"22":17,"23":15,"36":6,"40":7,"42":58,"46":8,"49":39,"51":95,"53":7,"61":62,"63":14,"64":40,"67":7,"71":77,"94":49,"103":49,"107":29,"108":4051,"109":340}},"geometry":{"type":"Point","coordinates":[-73.91228997565125,40.70204271691494]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081054700","ancestry":{"1":4932,"5":166,"6":74,"11":56,"12":18,"22":17,"23":15,"36":6,"40":7,"42":58,"46":8,"49":39,"51":95,"53":7,"61":62,"63":14,"64":40,"67":7,"71":77,"94":49,"103":49,"107":29,"108":4051,"109":340}},"geometry":{"type":"Point","coordinates":[-73.90971107625326,40.70362947489788]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081054800","ancestry":{"1":2442,"6":31,"7":31,"36":11,"40":12,"41":6,"42":10,"44":22,"45":402,"49":8,"51":16,"61":9,"67":5,"70":12,"73":61,"83":6,"87":55,"94":323,"99":15,"101":261,"102":39,"106":8,"108":1457,"109":197}},"geometry":{"type":"Point","coordinates":[-73.75128271501535,40.72319770725592]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081065600","ancestry":{"1":5014,"5":255,"6":12,"15":12,"36":10,"40":10,"42":36,"45":185,"49":45,"51":40,"56":10,"73":520,"76":92,"79":56,"81":164,"87":202,"88":6,"94":1534,"96":79,"99":12,"101":483,"102":526,"103":217,"105":226,"108":2350,"109":379}},"geometry":{"type":"Point","coordinates":[-73.72958630697276,40.6598357137518]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081065400","ancestry":{"1":3007,"5":189,"6":5,"11":5,"38":5,"42":15,"45":36,"49":40,"51":64,"61":35,"64":10,"73":43,"87":43,"91":7,"94":1038,"96":56,"101":541,"102":352,"103":31,"105":87,"108":1482,"109":395}},"geometry":{"type":"Point","coordinates":[-73.74008039186849,40.66241192482183]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081065702","ancestry":{"1":1674,"5":147,"6":14,"10":4,"15":10,"19":11,"29":14,"32":4,"36":15,"40":12,"42":135,"44":22,"49":144,"51":657,"57":4,"61":202,"62":27,"63":26,"64":17,"70":9,"107":5,"108":285,"109":96}},"geometry":{"type":"Point","coordinates":[-73.88296085746428,40.71333559653479]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081065900","ancestry":{"1":1809,"5":124,"6":70,"10":54,"13":53,"16":79,"19":28,"36":60,"40":5,"42":241,"49":307,"51":561,"55":11,"59":6,"61":221,"63":75,"64":6,"68":54,"69":50,"70":6,"89":59,"108":173,"109":185}},"geometry":{"type":"Point","coordinates":[-73.8824807306412,40.715544890029506]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081066000","ancestry":{"1":3780,"5":91,"31":23,"36":39,"39":18,"42":10,"44":14,"45":173,"49":29,"51":98,"61":24,"73":46,"79":20,"87":26,"94":1470,"96":8,"99":23,"101":727,"102":556,"103":27,"105":137,"108":1484,"109":394}},"geometry":{"type":"Point","coordinates":[-73.73336314930317,40.6585743384159]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047600","ancestry":{"1":1365,"5":90,"6":21,"10":5,"14":16,"16":13,"23":15,"26":38,"35":5,"36":38,"38":40,"40":14,"42":56,"44":21,"45":75,"48":8,"49":35,"50":8,"51":84,"52":7,"53":23,"61":27,"63":6,"64":2,"66":9,"69":13,"73":98,"83":8,"87":6,"88":84,"89":4,"91":16,"94":38,"101":34,"102":1,"103":3,"108":694,"109":42}},"geometry":{"type":"Point","coordinates":[-73.77122092234703,40.72247644340936]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047800","ancestry":{"1":5612,"5":115,"16":51,"19":33,"35":2,"36":192,"38":127,"42":102,"44":55,"45":64,"48":34,"49":102,"51":94,"59":34,"61":396,"62":89,"64":31,"73":67,"76":52,"87":15,"94":1045,"101":504,"102":193,"103":47,"105":301,"108":3323,"109":384}},"geometry":{"type":"Point","coordinates":[-73.76618416590782,40.71958166889228]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081047900","ancestry":{"1":6039,"5":9,"19":7,"36":31,"40":61,"42":86,"46":8,"49":104,"51":122,"52":10,"59":18,"61":49,"62":8,"63":15,"64":6,"67":6,"70":1,"73":30,"87":30,"92":8,"94":99,"99":9,"101":1,"103":89,"108":4876,"109":641}},"geometry":{"type":"Point","coordinates":[-73.88369312536234,40.735474422416985]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081048300","ancestry":{"1":4128,"5":69,"19":8,"36":18,"42":26,"44":43,"49":110,"51":31,"53":10,"61":49,"64":23,"70":16,"93":10,"108":3420,"109":379}},"geometry":{"type":"Point","coordinates":[-73.8926967087391,40.741717156763784]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081048500","ancestry":{"1":4562,"5":41,"6":32,"8":11,"14":21,"23":8,"26":7,"29":33,"31":10,"42":69,"44":19,"49":108,"51":87,"58":9,"61":53,"64":12,"89":20,"91":30,"94":29,"96":29,"108":3839,"109":342}},"geometry":{"type":"Point","coordinates":[-73.8843382784204,40.73975163312125]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081048900","ancestry":{"1":1599,"5":13,"6":24,"7":24,"21":8,"22":15,"42":1,"44":22,"49":19,"51":72,"61":12,"70":6,"73":6,"79":6,"91":46,"108":1214,"109":206}},"geometry":{"type":"Point","coordinates":[-73.89218269236507,40.73731547274683]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081055900","ancestry":{"1":1510,"5":7,"34":14,"36":14,"42":8,"49":46,"51":91,"61":106,"64":9,"73":4,"78":4,"87":4,"108":1201,"109":135}},"geometry":{"type":"Point","coordinates":[-73.90167125381497,40.69172573066129]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055900","ancestry":{"1":1510,"5":7,"34":14,"36":14,"42":8,"49":46,"51":91,"61":106,"64":9,"73":4,"78":4,"87":4,"108":1201,"109":135}},"geometry":{"type":"Point","coordinates":[-73.90173122886195,40.69440855674053]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081056100","ancestry":{"1":156,"6":4,"10":4,"40":4,"42":14,"61":11,"94":4,"99":4,"108":123}},"geometry":{"type":"Point","coordinates":[-73.89823529798274,40.6896444113889]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056100","ancestry":{"1":156,"6":4,"10":4,"40":4,"42":14,"61":11,"94":4,"99":4,"108":123}},"geometry":{"type":"Point","coordinates":[-73.8855210042912,40.69312182357184]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056500","ancestry":{"1":1606,"5":43,"19":5,"26":10,"40":12,"42":30,"48":12,"49":19,"51":41,"61":22,"67":4,"90":5,"108":1375,"109":83}},"geometry":{"type":"Point","coordinates":[-73.89687421218457,40.69426289304796]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056700","ancestry":{"1":4173,"3":22,"5":196,"23":8,"32":10,"34":48,"36":37,"38":15,"40":43,"42":274,"45":31,"49":178,"51":295,"59":9,"61":114,"63":50,"66":7,"73":21,"87":21,"91":27,"92":45,"94":82,"99":43,"103":39,"107":57,"108":2695,"109":336}},"geometry":{"type":"Point","coordinates":[-73.89218278504347,40.696866257787285]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055200","ancestry":{"1":3233,"5":90,"22":7,"23":16,"34":7,"35":8,"36":6,"38":8,"42":11,"45":370,"49":79,"51":71,"59":7,"62":8,"63":14,"73":25,"87":25,"89":7,"90":7,"94":590,"101":297,"102":183,"103":7,"105":103,"108":1825,"109":311}},"geometry":{"type":"Point","coordinates":[-73.74965661933187,40.72778741001018]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081055300","ancestry":{"1":2368,"5":138,"35":8,"36":8,"38":28,"40":5,"42":52,"46":37,"49":104,"51":210,"53":4,"59":7,"61":30,"63":19,"64":8,"66":5,"70":4,"92":4,"94":24,"96":19,"105":5,"107":38,"108":1742,"109":151}},"geometry":{"type":"Point","coordinates":[-73.90799164945034,40.69780757180354]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055300","ancestry":{"1":2368,"5":138,"35":8,"36":8,"38":28,"40":5,"42":52,"46":37,"49":104,"51":210,"53":4,"59":7,"61":30,"63":19,"64":8,"66":5,"70":4,"92":4,"94":24,"96":19,"105":5,"107":38,"108":1742,"109":151}},"geometry":{"type":"Point","coordinates":[-73.90654625860861,40.698950187061904]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055400","ancestry":{"1":2335,"5":123,"16":15,"19":5,"23":14,"35":10,"38":6,"42":27,"44":31,"45":145,"49":45,"51":15,"53":5,"61":38,"64":9,"90":7,"92":5,"94":411,"99":16,"101":307,"102":39,"103":16,"105":34,"106":4,"108":1454,"109":105}},"geometry":{"type":"Point","coordinates":[-73.74015935895349,40.72779025369959]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081055500","ancestry":{"1":2247,"5":20,"6":8,"11":8,"36":5,"40":6,"42":27,"45":6,"49":27,"51":56,"53":17,"59":15,"61":260,"63":5,"64":14,"92":15,"94":110,"101":11,"102":6,"103":93,"108":1579,"109":184}},"geometry":{"type":"Point","coordinates":[-73.90542374561643,40.695181283526416]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055500","ancestry":{"1":2247,"5":20,"6":8,"11":8,"36":5,"40":6,"42":27,"45":6,"49":27,"51":56,"53":17,"59":15,"61":260,"63":5,"64":14,"92":15,"94":110,"101":11,"102":6,"103":93,"108":1579,"109":184}},"geometry":{"type":"Point","coordinates":[-73.9032784550842,40.69722510995945]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055700","ancestry":{"1":3894,"5":72,"6":108,"7":62,"14":46,"19":47,"34":22,"36":7,"42":156,"45":16,"46":54,"49":161,"51":113,"61":300,"63":102,"64":23,"68":146,"91":18,"92":62,"94":40,"99":9,"102":24,"105":7,"107":87,"108":2348,"109":261}},"geometry":{"type":"Point","coordinates":[-73.89831466164794,40.69868956506448]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055800","ancestry":{"1":1821,"5":23,"23":20,"34":18,"36":10,"40":5,"42":5,"45":295,"49":66,"51":36,"61":15,"62":11,"67":5,"73":37,"87":25,"88":12,"94":88,"101":83,"103":5,"108":1073,"109":208}},"geometry":{"type":"Point","coordinates":[-73.74170488629524,40.72253366727075]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056800","ancestry":{"1":4880,"5":192,"6":118,"15":118,"26":6,"33":10,"38":26,"40":24,"42":16,"45":82,"49":71,"51":139,"61":9,"69":7,"73":150,"79":71,"87":79,"94":1899,"95":12,"101":1362,"102":344,"103":112,"105":69,"108":1898,"109":626}},"geometry":{"type":"Point","coordinates":[-73.73356609345852,40.715570039180854]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081057700","ancestry":{"1":3926,"3":9,"5":223,"6":68,"7":10,"12":58,"19":10,"23":10,"24":28,"29":11,"36":17,"40":22,"42":212,"46":10,"49":255,"51":375,"53":9,"61":853,"63":144,"64":8,"68":77,"73":9,"79":9,"89":32,"107":55,"108":1597,"109":244}},"geometry":{"type":"Point","coordinates":[-73.8907145319917,40.70039287290599]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081066501","ancestry":{"1":3321,"3":90,"4":7,"5":233,"6":39,"7":39,"19":40,"24":29,"29":73,"31":34,"32":10,"33":10,"35":13,"36":33,"38":12,"40":52,"42":464,"44":111,"46":9,"49":384,"51":1016,"61":329,"64":250,"67":14,"68":121,"89":10,"94":1,"105":1,"108":284,"109":228}},"geometry":{"type":"Point","coordinates":[-73.88734080847149,40.71935013967606]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081067700","ancestry":{"1":1830,"5":78,"19":115,"31":2,"36":7,"40":4,"42":346,"44":44,"46":45,"49":487,"51":454,"59":4,"61":98,"63":9,"64":61,"65":4,"66":4,"67":12,"71":6,"92":27,"93":5,"94":18,"105":18,"107":5,"108":345,"109":72}},"geometry":{"type":"Point","coordinates":[-73.87243056336595,40.719110573254014]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081068000","ancestry":{"1":5161,"5":238,"34":19,"36":6,"42":26,"45":437,"46":1,"49":26,"51":38,"67":25,"73":257,"76":57,"78":24,"79":15,"85":7,"87":185,"94":1694,"96":113,"97":31,"99":8,"101":299,"102":911,"103":287,"105":80,"108":2363,"109":303}},"geometry":{"type":"Point","coordinates":[-73.75007585579027,40.66370955511591]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081068200","ancestry":{"1":1259,"5":61,"45":10,"51":3,"73":7,"79":3,"87":4,"94":499,"99":29,"101":187,"102":243,"103":7,"105":35,"108":661,"109":88}},"geometry":{"type":"Point","coordinates":[-73.75041295548793,40.66779364948753]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081066300","ancestry":{"1":2543,"3":6,"5":219,"16":40,"19":21,"22":10,"31":10,"34":4,"36":54,"38":21,"40":103,"42":196,"45":22,"46":8,"49":387,"51":501,"53":2,"55":5,"58":10,"61":217,"63":29,"64":272,"67":5,"70":30,"92":5,"107":44,"108":404,"109":229}},"geometry":{"type":"Point","coordinates":[-73.87734561336947,40.72111892826826]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081066400","ancestry":{"1":9961,"5":533,"6":25,"15":25,"34":57,"36":52,"42":66,"44":16,"45":444,"48":36,"49":220,"51":152,"61":19,"62":17,"64":19,"67":41,"73":591,"76":61,"79":530,"93":23,"94":3972,"96":66,"99":47,"101":767,"102":2605,"103":380,"104":16,"105":280,"108":3981,"109":783}},"geometry":{"type":"Point","coordinates":[-73.74497492543637,40.65056814530679]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081068700","ancestry":{"1":4619,"3":126,"5":80,"6":18,"7":10,"10":8,"16":29,"19":8,"24":10,"26":9,"29":17,"34":8,"36":84,"38":19,"40":9,"41":8,"42":39,"44":60,"45":38,"46":22,"49":115,"51":254,"61":70,"63":34,"64":380,"66":8,"67":19,"70":10,"92":94,"108":2815,"109":666}},"geometry":{"type":"Point","coordinates":[-73.86929554289631,40.73031046679116]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081069000","ancestry":{"1":3710,"5":141,"40":8,"42":7,"45":14,"49":7,"51":8,"67":9,"73":61,"76":18,"79":43,"90":8,"94":2190,"96":102,"99":34,"100":32,"101":421,"102":1397,"105":204,"108":1276,"109":250}},"geometry":{"type":"Point","coordinates":[-73.75541432715238,40.66034646732161]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081069300","ancestry":{"1":2565,"3":42,"5":41,"16":26,"19":9,"21":36,"22":106,"31":8,"36":12,"40":7,"42":13,"44":6,"48":14,"49":21,"50":7,"51":19,"55":8,"61":99,"63":37,"64":206,"65":6,"69":14,"92":7,"93":23,"94":53,"99":16,"101":9,"102":28,"108":1457,"109":413}},"geometry":{"type":"Point","coordinates":[-73.86322727207872,40.7288894100027]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081069400","ancestry":{"1":3298,"5":119,"23":17,"31":25,"36":49,"42":39,"45":42,"48":30,"49":23,"51":6,"61":13,"62":7,"73":195,"76":90,"79":83,"87":31,"93":13,"94":1431,"96":84,"99":45,"101":507,"102":651,"103":134,"105":56,"108":1618,"109":159}},"geometry":{"type":"Point","coordinates":[-73.75013273566023,40.65587377569757]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081069500","ancestry":{"1":1844,"5":100,"16":6,"19":12,"22":26,"31":5,"34":4,"35":17,"36":31,"38":12,"40":9,"42":26,"46":9,"49":63,"51":85,"61":79,"63":51,"64":220,"66":5,"67":4,"89":21,"92":31,"94":22,"101":22,"107":3,"108":1039,"109":123}},"geometry":{"type":"Point","coordinates":[-73.86750831611184,40.72605621970576]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081069701","ancestry":{"1":3723,"5":74,"6":46,"7":39,"8":7,"14":28,"16":8,"19":16,"24":33,"26":9,"29":57,"35":18,"36":17,"38":35,"40":8,"42":108,"44":9,"46":40,"48":27,"49":97,"50":9,"51":69,"53":8,"59":17,"61":119,"63":26,"64":452,"66":11,"70":8,"73":9,"76":9,"92":25,"94":101,"96":29,"101":72,"102":9,"108":2312,"109":289}},"geometry":{"type":"Point","coordinates":[-73.86020464935592,40.72687715119912]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081138501","ancestry":{"1":4529,"2":8,"5":64,"6":129,"10":129,"16":7,"19":11,"29":50,"30":12,"36":70,"38":7,"40":35,"42":30,"44":244,"48":43,"49":149,"51":329,"61":58,"63":7,"64":71,"89":7,"94":37,"103":37,"107":15,"108":3178,"109":180}},"geometry":{"type":"Point","coordinates":[-73.75479094553481,40.75492289124945]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081138502","ancestry":{"1":32,"36":6,"42":6,"108":26}},"geometry":{"type":"Point","coordinates":[-73.74546148520974,40.75185899260435]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081143500","ancestry":{"1":2204,"2":11,"5":90,"6":18,"10":18,"16":12,"18":2,"19":20,"26":6,"29":32,"30":8,"31":17,"35":11,"36":26,"38":6,"40":17,"42":69,"44":45,"46":4,"48":5,"49":175,"51":303,"61":64,"64":41,"65":6,"67":17,"68":26,"89":12,"94":17,"103":17,"108":1295,"109":223}},"geometry":{"type":"Point","coordinates":[-73.77028175364002,40.75291182877444]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081144100","ancestry":{"1":3203,"3":20,"5":78,"16":57,"19":10,"29":56,"30":18,"36":31,"38":58,"41":37,"42":123,"44":122,"46":32,"49":223,"51":310,"52":32,"53":6,"61":79,"63":14,"64":73,"67":9,"92":27,"108":2030,"109":140}},"geometry":{"type":"Point","coordinates":[-73.76381299124877,40.755667715370706]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081144700","ancestry":{"1":3338,"5":31,"6":74,"7":58,"10":25,"23":10,"29":12,"36":5,"39":4,"40":4,"42":21,"43":5,"44":9,"45":92,"46":5,"49":79,"51":151,"61":66,"64":23,"67":50,"73":16,"87":16,"94":254,"96":32,"99":86,"102":68,"105":68,"108":2194,"109":415}},"geometry":{"type":"Point","coordinates":[-73.77245379450625,40.756867233201554]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081145101","ancestry":{"1":1647,"2":91,"5":23,"6":4,"13":4,"22":1,"31":15,"42":31,"44":585,"49":192,"51":281,"63":25,"64":5,"108":488,"109":79}},"geometry":{"type":"Point","coordinates":[-73.78469650665623,40.755138072429254]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081145102","ancestry":{"1":2740,"2":153,"5":71,"16":6,"22":36,"26":4,"29":5,"33":4,"34":18,"36":9,"38":9,"40":4,"42":88,"44":101,"45":11,"49":109,"51":150,"61":42,"64":2,"67":14,"89":11,"94":12,"102":12,"108":1726,"109":355}},"geometry":{"type":"Point","coordinates":[-73.77814672198768,40.75323835873585]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081139900","ancestry":{"1":1776,"5":34,"16":22,"19":18,"26":4,"29":5,"31":11,"33":12,"36":42,"40":14,"42":145,"44":52,"46":4,"48":21,"49":62,"51":191,"53":13,"61":83,"62":50,"64":59,"67":4,"92":20,"94":2,"105":2,"108":1027,"109":121}},"geometry":{"type":"Point","coordinates":[-73.76247544688762,40.749867692620114]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081140901","ancestry":{"1":954,"5":15,"16":20,"34":5,"38":9,"40":27,"41":5,"42":44,"44":21,"45":4,"46":12,"49":52,"50":19,"51":185,"61":32,"64":5,"67":5,"73":1,"87":1,"91":5,"93":5,"108":586,"109":24}},"geometry":{"type":"Point","coordinates":[-73.77490096527123,40.74654048710586]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081140902","ancestry":{"1":3049,"5":49,"16":6,"19":30,"29":38,"31":10,"34":17,"42":42,"44":62,"46":5,"49":38,"51":423,"59":8,"61":56,"62":27,"63":10,"64":69,"69":18,"94":45,"102":43,"103":2,"108":2157,"109":105}},"geometry":{"type":"Point","coordinates":[-73.78215386268762,40.74490882398607]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081142900","ancestry":{"1":3567,"3":46,"5":142,"19":23,"23":7,"29":71,"30":71,"32":7,"33":5,"36":8,"38":35,"40":31,"41":13,"42":62,"44":461,"46":58,"49":295,"51":419,"53":7,"56":5,"61":97,"63":5,"64":85,"108":1754,"109":295}},"geometry":{"type":"Point","coordinates":[-73.78454118812661,40.75106901588964]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081146300","ancestry":{"1":3059,"3":119,"5":54,"19":46,"22":35,"29":27,"34":4,"36":46,"40":11,"42":159,"44":166,"49":379,"51":532,"53":9,"55":57,"56":8,"61":151,"63":100,"64":99,"67":10,"90":19,"91":18,"92":20,"93":9,"94":9,"99":9,"107":12,"108":1221,"109":162}},"geometry":{"type":"Point","coordinates":[-73.78110071305716,40.75946652266772]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081146700","ancestry":{"1":3339,"5":245,"6":11,"10":11,"16":30,"19":23,"29":33,"34":8,"35":10,"36":74,"38":18,"42":348,"44":134,"46":17,"49":461,"51":470,"61":98,"62":17,"63":28,"64":121,"91":140,"93":30,"94":28,"103":20,"105":8,"108":1403,"109":342}},"geometry":{"type":"Point","coordinates":[-73.77321401842893,40.7612033967978]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081147100","ancestry":{"1":3034,"5":99,"6":12,"10":12,"16":24,"19":8,"23":14,"29":19,"30":51,"31":13,"32":7,"34":8,"35":14,"36":38,"38":19,"40":14,"42":92,"44":269,"46":68,"48":60,"49":144,"51":309,"53":44,"59":8,"61":39,"64":94,"66":8,"67":16,"89":8,"108":1790,"109":175}},"geometry":{"type":"Point","coordinates":[-73.7634352780606,40.76147085173079]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081147900","ancestry":{"1":4901,"5":98,"19":17,"23":16,"31":18,"32":23,"35":33,"36":107,"38":9,"40":61,"42":328,"44":223,"46":62,"49":665,"50":24,"51":738,"52":53,"53":90,"56":9,"59":8,"61":67,"64":114,"67":26,"70":8,"92":85,"108":2756,"109":177}},"geometry":{"type":"Point","coordinates":[-73.7422564491776,40.76960108630489]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081148300","ancestry":{"1":2804,"5":201,"19":24,"22":8,"30":7,"32":8,"33":17,"34":9,"35":6,"36":169,"38":20,"42":333,"44":149,"49":437,"51":578,"58":10,"61":60,"62":10,"64":71,"65":8,"67":76,"73":10,"87":10,"89":9,"91":36,"108":1171,"109":37}},"geometry":{"type":"Point","coordinates":[-73.74921956401315,40.77457672202366]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081150701","ancestry":{"1":3033,"3":10,"5":149,"6":34,"8":26,"15":8,"16":17,"19":18,"23":53,"29":8,"32":27,"36":60,"40":8,"42":166,"44":548,"46":9,"48":109,"49":308,"50":16,"51":409,"55":41,"58":17,"61":104,"63":10,"64":52,"70":35,"73":5,"87":5,"92":16,"107":59,"108":1093,"109":148}},"geometry":{"type":"Point","coordinates":[-73.73970211249961,40.76220224472081]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071600","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.78655166436745,40.64700041775105]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081069702","ancestry":{"1":3499,"5":123,"6":37,"13":15,"14":22,"16":18,"19":19,"26":119,"35":23,"36":107,"38":7,"42":196,"44":24,"46":93,"49":268,"50":66,"51":118,"53":18,"58":15,"61":86,"62":7,"63":30,"64":371,"69":7,"73":8,"87":8,"92":25,"94":11,"103":11,"107":37,"108":1479,"109":525}},"geometry":{"type":"Point","coordinates":[-73.8628710924991,40.722253000781556]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081070700","ancestry":{"1":2257,"3":10,"5":62,"6":11,"15":11,"16":6,"19":38,"22":5,"24":6,"29":11,"31":9,"34":6,"35":43,"36":20,"37":12,"38":4,"40":6,"42":43,"44":27,"46":38,"49":99,"50":18,"51":226,"53":18,"61":111,"63":55,"64":57,"68":66,"89":31,"92":31,"107":10,"108":1215,"109":273}},"geometry":{"type":"Point","coordinates":[-73.85556624568271,40.71507114402559]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071100","ancestry":{"1":5604,"5":246,"6":33,"7":17,"15":16,"16":246,"17":16,"19":42,"22":186,"23":51,"29":21,"31":5,"34":53,"35":41,"36":90,"38":100,"40":83,"42":140,"44":49,"45":17,"46":34,"48":4,"49":251,"50":374,"51":276,"59":18,"61":363,"63":34,"64":198,"66":31,"69":15,"91":34,"92":32,"94":74,"96":5,"99":11,"103":58,"108":2391,"109":530}},"geometry":{"type":"Point","coordinates":[-73.85249504508148,40.7220696926324]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081072900","ancestry":{"1":1155,"5":43,"16":15,"36":24,"42":65,"46":38,"48":20,"49":98,"50":44,"51":122,"61":59,"64":24,"71":2,"89":6,"90":16,"92":12,"94":3,"95":3,"107":5,"108":474,"109":232}},"geometry":{"type":"Point","coordinates":[-73.85218144524072,40.71281187610903]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081073900","ancestry":{"1":5415,"3":46,"5":320,"16":42,"19":14,"21":15,"34":25,"35":84,"36":114,"38":79,"40":31,"42":258,"44":42,"46":87,"49":175,"50":272,"51":294,"53":77,"61":278,"63":229,"64":527,"72":13,"90":15,"92":30,"93":12,"94":116,"101":47,"102":16,"103":34,"105":19,"107":84,"108":2835,"109":213}},"geometry":{"type":"Point","coordinates":[-73.84427158040785,40.723692964264295]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081074300","ancestry":{"1":4767,"5":78,"6":36,"8":9,"12":17,"15":10,"16":52,"19":11,"24":26,"35":10,"36":20,"38":20,"40":28,"42":26,"44":8,"48":32,"49":17,"50":8,"51":95,"61":41,"63":44,"64":1304,"67":9,"73":11,"75":11,"91":9,"92":72,"108":2617,"109":480}},"geometry":{"type":"Point","coordinates":[-73.84924610464874,40.73229919102344]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081074500","ancestry":{"1":3887,"5":205,"6":55,"7":22,"10":10,"12":10,"13":15,"15":8,"16":31,"32":8,"38":21,"40":8,"46":22,"48":8,"51":15,"61":143,"63":33,"64":639,"73":8,"74":8,"91":3,"92":58,"94":57,"101":23,"102":14,"105":20,"108":1685,"109":939}},"geometry":{"type":"Point","coordinates":[-73.85083680934909,40.73610495613472]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081076902","ancestry":{"1":1506,"5":101,"16":12,"21":5,"31":17,"34":12,"35":6,"36":55,"38":7,"40":36,"42":25,"44":13,"45":6,"48":16,"49":100,"50":100,"51":42,"59":6,"61":128,"62":19,"63":11,"64":183,"66":13,"67":11,"89":6,"90":12,"93":5,"94":65,"103":58,"105":7,"108":648,"109":136}},"geometry":{"type":"Point","coordinates":[-73.83403256133413,40.715034211124724]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081073100","ancestry":{"1":1565,"5":108,"16":20,"23":9,"26":33,"31":5,"32":5,"33":1,"36":23,"39":7,"40":39,"42":97,"44":6,"46":29,"49":212,"51":347,"53":50,"59":5,"61":71,"64":61,"66":6,"70":14,"89":9,"91":26,"107":5,"108":455,"109":270}},"geometry":{"type":"Point","coordinates":[-73.84633176035837,40.71095339176299]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081073700","ancestry":{"1":1753,"2":19,"3":10,"5":120,"6":19,"11":19,"16":24,"19":46,"22":60,"23":27,"31":11,"36":73,"38":24,"40":54,"42":140,"44":28,"45":28,"48":9,"49":223,"50":13,"51":264,"52":41,"59":16,"61":79,"62":10,"63":16,"64":87,"68":8,"89":24,"90":18,"92":26,"107":32,"108":521,"109":145}},"geometry":{"type":"Point","coordinates":[-73.84324473453914,40.71844152442215]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077300","ancestry":{"1":2104,"3":14,"5":141,"6":25,"7":9,"13":7,"14":9,"16":23,"19":7,"22":5,"28":7,"34":14,"35":23,"36":65,"38":7,"42":112,"44":25,"46":17,"48":16,"49":153,"50":57,"51":169,"58":6,"61":56,"62":7,"63":55,"64":206,"65":10,"67":30,"91":18,"92":19,"94":144,"97":5,"101":139,"108":792,"109":253}},"geometry":{"type":"Point","coordinates":[-73.8352801697496,40.710913294951574]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077500","ancestry":{"1":1985,"5":102,"6":33,"7":11,"13":22,"19":44,"31":13,"34":11,"35":24,"36":9,"38":40,"40":9,"42":144,"44":44,"45":22,"46":18,"48":117,"49":116,"50":71,"51":149,"52":22,"59":32,"61":118,"62":11,"63":15,"64":207,"89":18,"92":41,"94":21,"102":9,"105":12,"108":486,"109":344}},"geometry":{"type":"Point","coordinates":[-73.83233884938957,40.709103278928175]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077902","ancestry":{"1":5223,"5":613,"6":37,"8":7,"11":30,"19":91,"23":27,"32":7,"33":11,"35":127,"36":8,"38":95,"40":9,"42":108,"44":14,"45":14,"46":112,"48":55,"49":65,"50":154,"51":83,"53":21,"61":429,"63":33,"64":570,"67":8,"72":8,"73":54,"76":35,"87":19,"90":8,"91":6,"92":17,"94":30,"101":12,"103":10,"105":8,"108":2212,"109":783}},"geometry":{"type":"Point","coordinates":[-73.82487245768257,40.72527344921287]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077903","ancestry":{"1":2958,"2":146,"3":138,"5":219,"6":16,"7":16,"19":18,"29":28,"35":44,"36":40,"40":30,"42":56,"46":27,"49":71,"50":31,"51":31,"61":154,"63":58,"64":46,"66":9,"89":8,"94":79,"97":8,"99":14,"101":28,"102":29,"108":1451,"109":421}},"geometry":{"type":"Point","coordinates":[-73.8216021990359,40.719224319656654]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077905","ancestry":{"1":2475,"5":28,"19":53,"22":14,"23":11,"24":94,"34":29,"36":22,"38":43,"40":37,"42":169,"44":13,"46":15,"49":81,"50":38,"51":152,"53":11,"61":107,"62":22,"64":389,"66":7,"67":7,"73":12,"83":12,"90":12,"92":24,"94":35,"101":7,"102":11,"105":17,"108":1249,"109":240}},"geometry":{"type":"Point","coordinates":[-73.81296257895806,40.71732721756242]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081078800","ancestry":{"1":1617,"5":37,"36":8,"45":154,"51":55,"73":17,"79":17,"94":600,"99":20,"101":46,"102":120,"103":323,"105":96,"108":595,"109":207}},"geometry":{"type":"Point","coordinates":[-73.7903645000322,40.670331074468955]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081079200","ancestry":{"1":2417,"5":41,"23":4,"36":14,"42":24,"45":165,"49":5,"51":10,"73":63,"76":6,"79":15,"87":42,"94":447,"99":9,"100":11,"101":13,"102":188,"103":218,"104":5,"105":8,"108":1630,"109":140}},"geometry":{"type":"Point","coordinates":[-73.7969556996299,40.668923355078675]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081079300","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.83149142575961,40.73638974278711]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081079900","ancestry":{"1":3605,"5":72,"16":6,"29":16,"40":8,"42":6,"44":23,"46":15,"49":24,"51":233,"61":15,"94":64,"101":64,"108":2622,"109":548}},"geometry":{"type":"Point","coordinates":[-73.82737579993378,40.74698865863465]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081150702","ancestry":{"1":3077,"5":107,"16":99,"19":64,"26":8,"32":21,"35":30,"36":31,"38":36,"40":51,"42":127,"44":267,"45":15,"46":9,"48":42,"49":190,"51":495,"61":161,"63":15,"64":93,"67":9,"70":16,"73":8,"87":8,"89":6,"90":7,"91":8,"92":8,"108":1300,"109":317}},"geometry":{"type":"Point","coordinates":[-73.73079618688769,40.76638108523757]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081152901","ancestry":{"1":6646,"5":163,"6":21,"8":21,"19":70,"23":14,"31":16,"35":15,"36":173,"40":21,"41":13,"42":375,"44":235,"45":94,"46":1,"48":46,"49":463,"51":551,"61":216,"63":24,"64":320,"66":14,"67":13,"70":16,"89":15,"90":115,"92":26,"94":3,"101":3,"108":3940,"109":584}},"geometry":{"type":"Point","coordinates":[-73.73365224449881,40.75233604089013]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081152902","ancestry":{"1":5029,"5":241,"6":73,"11":73,"19":101,"31":62,"35":36,"36":115,"38":1,"40":55,"42":338,"44":160,"46":108,"49":392,"51":438,"59":18,"61":326,"63":79,"64":199,"66":19,"67":15,"73":288,"79":288,"89":112,"94":76,"99":62,"101":14,"108":2387,"109":348}},"geometry":{"type":"Point","coordinates":[-73.72399128116955,40.759336504843844]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081155101","ancestry":{"1":2123,"5":175,"19":69,"26":8,"27":12,"29":16,"32":15,"35":23,"36":62,"38":72,"40":24,"42":129,"46":49,"48":49,"49":24,"51":64,"52":9,"53":10,"61":348,"63":27,"64":563,"67":9,"108":475,"109":160}},"geometry":{"type":"Point","coordinates":[-73.71422253219725,40.75663754790712]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081155102","ancestry":{"1":7629,"2":113,"5":232,"6":9,"7":9,"16":15,"19":16,"22":16,"23":8,"29":12,"31":30,"33":14,"34":79,"35":43,"36":203,"38":8,"40":7,"41":15,"42":772,"44":105,"45":1,"46":33,"48":86,"49":964,"51":1510,"53":14,"59":15,"61":391,"62":90,"63":99,"64":289,"66":14,"67":64,"68":22,"73":200,"87":200,"89":24,"90":13,"92":41,"94":248,"101":65,"102":83,"103":49,"105":51,"107":15,"108":3367,"109":270}},"geometry":{"type":"Point","coordinates":[-73.71511651679427,40.751174647791174]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081156700","ancestry":{"1":1357,"5":48,"18":26,"19":4,"21":4,"34":1,"35":18,"38":7,"41":5,"42":9,"44":29,"45":21,"48":8,"49":27,"51":49,"61":1,"64":7,"67":1,"68":6,"73":7,"79":7,"92":8,"93":9,"94":67,"101":36,"102":3,"103":13,"105":15,"108":1035,"109":33}},"geometry":{"type":"Point","coordinates":[-73.7297168775576,40.740528034735156]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081157101","ancestry":{"1":7620,"5":142,"6":163,"11":87,"13":76,"18":14,"19":44,"31":14,"34":26,"36":35,"38":2,"40":61,"41":15,"42":547,"44":40,"45":99,"46":59,"49":430,"51":493,"53":15,"56":74,"61":193,"63":33,"64":534,"66":26,"67":64,"70":14,"89":53,"92":15,"94":413,"96":62,"101":34,"102":169,"103":89,"105":59,"108":4689,"109":635}},"geometry":{"type":"Point","coordinates":[-73.71955567611184,40.73850042008095]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081157901","ancestry":{"1":4978,"5":148,"6":62,"9":62,"19":43,"26":48,"32":7,"36":80,"38":54,"40":17,"42":253,"44":54,"45":9,"46":8,"48":9,"49":183,"51":712,"53":41,"56":54,"61":73,"64":58,"66":10,"67":8,"73":39,"87":39,"92":8,"94":148,"97":29,"102":68,"103":51,"107":98,"108":2967,"109":396}},"geometry":{"type":"Point","coordinates":[-73.70458402755013,40.74472442752499]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081157902","ancestry":{"1":3902,"5":2,"19":28,"21":5,"22":30,"23":8,"26":22,"31":9,"35":12,"36":91,"40":108,"41":9,"42":292,"44":169,"45":72,"46":34,"49":199,"50":76,"51":503,"61":86,"64":85,"66":19,"67":15,"94":147,"101":41,"103":85,"105":21,"108":2234,"109":283}},"geometry":{"type":"Point","coordinates":[-73.71199915264125,40.741583867082916]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081157903","ancestry":{"1":3695,"5":181,"19":10,"31":9,"32":10,"36":182,"38":61,"40":120,"42":206,"44":67,"45":139,"46":10,"49":320,"51":769,"52":9,"61":136,"64":39,"66":9,"92":37,"108":1813,"109":163}},"geometry":{"type":"Point","coordinates":[-73.70757264852541,40.73381109507834]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081161700","ancestry":{"1":4623,"5":77,"6":8,"13":8,"16":44,"18":23,"19":14,"23":24,"32":8,"33":9,"36":100,"38":5,"40":15,"41":55,"42":707,"44":17,"46":17,"48":45,"49":1108,"51":787,"52":23,"61":133,"63":5,"64":82,"66":8,"67":26,"70":19,"89":18,"92":16,"94":41,"102":8,"103":22,"105":11,"108":1973,"109":358}},"geometry":{"type":"Point","coordinates":[-73.71761054719036,40.72881940046732]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081162100","ancestry":{"1":7164,"2":37,"5":193,"19":9,"29":11,"31":50,"32":21,"36":16,"38":91,"40":15,"42":347,"44":74,"45":110,"46":16,"49":461,"51":457,"61":74,"62":137,"63":9,"64":34,"66":25,"67":32,"68":11,"69":14,"91":19,"92":27,"94":150,"101":54,"102":66,"103":30,"108":4942,"109":509}},"geometry":{"type":"Point","coordinates":[-73.72970277798733,40.72845122052731]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081037900","ancestry":{"1":7116,"5":10,"34":7,"40":10,"42":7,"73":8,"88":8,"94":49,"96":20,"99":20,"101":9,"108":6598,"109":444}},"geometry":{"type":"Point","coordinates":[-73.86408425290831,40.75547363187479]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081048200","ancestry":{"1":1608,"5":105,"36":14,"38":44,"40":9,"42":13,"44":13,"45":442,"49":9,"51":26,"60":5,"61":1,"62":52,"73":73,"76":10,"88":63,"92":1,"94":193,"96":3,"99":12,"101":18,"102":40,"103":33,"105":87,"108":791,"109":47}},"geometry":{"type":"Point","coordinates":[-73.76792261983168,40.71483508774443]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081048400","ancestry":{"1":4819,"5":164,"6":8,"11":8,"36":8,"38":10,"41":9,"42":19,"44":42,"45":1378,"49":31,"51":32,"61":9,"73":178,"76":178,"94":1088,"101":255,"102":506,"103":183,"105":157,"108":1830,"109":427}},"geometry":{"type":"Point","coordinates":[-73.75993744755098,40.71581727566168]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081119300","ancestry":{"1":2177,"3":20,"5":6,"31":5,"33":5,"35":14,"36":64,"42":61,"44":86,"49":156,"50":27,"51":178,"61":6,"64":26,"66":13,"67":11,"70":4,"94":50,"102":50,"108":1408,"109":248}},"geometry":{"type":"Point","coordinates":[-73.79962674271432,40.75718459927593]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081119900","ancestry":{"1":1565,"5":52,"6":15,"15":15,"16":8,"32":9,"36":7,"38":6,"42":19,"44":101,"45":5,"46":15,"49":41,"51":66,"61":28,"64":13,"94":45,"102":45,"108":1045,"109":215}},"geometry":{"type":"Point","coordinates":[-73.80957752966661,40.753462096190425]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081120500","ancestry":{"1":2702,"5":12,"22":2,"34":8,"38":1,"42":8,"45":131,"49":11,"51":8,"63":16,"64":94,"92":67,"94":38,"105":38,"108":2123,"109":260}},"geometry":{"type":"Point","coordinates":[-73.81710916101582,40.75127418759106]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081120700","ancestry":{"1":2791,"2":14,"5":37,"16":30,"19":69,"31":12,"36":17,"38":11,"40":4,"41":9,"42":175,"44":122,"48":14,"49":112,"51":361,"61":171,"63":13,"64":118,"66":14,"93":4,"107":19,"108":1716,"109":135}},"geometry":{"type":"Point","coordinates":[-73.80088944090144,40.750726789725]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081121500","ancestry":{"1":4434,"5":82,"6":95,"7":42,"14":53,"19":7,"23":24,"35":8,"36":95,"40":21,"42":30,"44":60,"48":40,"49":85,"51":201,"61":36,"64":15,"67":32,"73":38,"87":38,"88":10,"89":8,"108":3122,"109":626}},"geometry":{"type":"Point","coordinates":[-73.80593225462309,40.74036414247187]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081122300","ancestry":{"1":3806,"2":102,"3":36,"5":89,"6":50,"10":50,"19":29,"31":18,"35":9,"38":21,"40":34,"42":133,"44":46,"46":18,"49":66,"50":145,"51":302,"53":12,"61":121,"63":9,"64":194,"67":18,"92":30,"108":1957,"109":769}},"geometry":{"type":"Point","coordinates":[-73.79945192887224,40.73497571145583]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081122701","ancestry":{"1":11015,"2":76,"5":153,"19":26,"26":73,"31":27,"35":55,"36":130,"38":7,"40":27,"41":51,"42":163,"44":94,"46":21,"48":77,"49":642,"51":806,"53":26,"59":62,"61":542,"62":67,"63":26,"64":568,"66":38,"73":29,"80":29,"92":16,"94":275,"101":16,"102":227,"105":32,"108":6754,"109":1324}},"geometry":{"type":"Point","coordinates":[-73.80709151981671,40.733321023935574]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081119500","ancestry":{"1":1377,"5":19,"6":11,"11":11,"16":36,"19":19,"21":9,"23":7,"34":43,"36":42,"38":1,"40":10,"42":50,"44":55,"49":127,"51":104,"61":15,"62":24,"63":8,"64":12,"70":4,"90":9,"94":5,"101":5,"108":904,"109":73}},"geometry":{"type":"Point","coordinates":[-73.7994710132559,40.754867227404965]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081122702","ancestry":{"1":6386,"5":332,"6":184,"7":184,"16":13,"19":9,"35":25,"36":47,"40":58,"42":40,"44":24,"45":14,"46":9,"49":110,"51":147,"53":17,"61":54,"64":528,"94":205,"96":14,"99":12,"101":57,"105":136,"108":4332,"109":511}},"geometry":{"type":"Point","coordinates":[-73.81274478063227,40.733147968726236]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081124100","ancestry":{"1":3400,"5":31,"6":27,"7":27,"19":15,"23":62,"31":21,"34":10,"35":62,"38":60,"42":89,"44":69,"45":87,"46":52,"49":198,"50":1,"51":87,"53":8,"61":102,"63":9,"64":270,"67":8,"73":61,"79":30,"83":20,"87":11,"92":72,"94":223,"102":223,"107":43,"108":1902,"109":185}},"geometry":{"type":"Point","coordinates":[-73.80240781997614,40.72680043835567]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081125700","ancestry":{"1":3116,"2":135,"5":33,"6":82,"11":82,"36":8,"38":30,"42":53,"44":32,"49":75,"50":22,"51":103,"61":92,"63":40,"64":113,"67":7,"73":7,"87":7,"93":25,"94":218,"102":7,"104":7,"105":51,"106":153,"108":2071,"109":186}},"geometry":{"type":"Point","coordinates":[-73.8079345483664,40.724133004066886]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081126500","ancestry":{"1":1578,"2":45,"5":51,"6":12,"15":12,"31":32,"34":5,"36":62,"38":21,"40":22,"42":9,"44":36,"49":106,"50":6,"51":149,"61":61,"62":92,"67":9,"92":18,"94":130,"96":6,"101":8,"102":18,"103":83,"105":15,"108":835,"109":122}},"geometry":{"type":"Point","coordinates":[-73.8037060163811,40.720494330451196]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081126700","ancestry":{"1":4414,"5":38,"6":70,"7":26,"9":9,"10":17,"15":18,"16":3,"18":23,"19":10,"22":3,"23":15,"29":17,"31":13,"34":37,"36":62,"40":47,"42":203,"44":91,"46":11,"48":5,"49":316,"51":451,"53":25,"61":101,"62":31,"64":136,"72":15,"73":140,"79":60,"82":6,"87":52,"88":22,"89":4,"90":12,"91":36,"92":14,"93":12,"94":178,"101":47,"102":24,"103":23,"105":84,"108":2929,"109":211}},"geometry":{"type":"Point","coordinates":[-73.79785757508898,40.720272138701304]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081128300","ancestry":{"1":59,"31":5,"38":5,"49":34,"51":34,"64":15,"108":5}},"geometry":{"type":"Point","coordinates":[-73.7688046593498,40.73395446540229]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081130100","ancestry":{"1":3849,"5":158,"6":14,"7":14,"19":20,"23":21,"29":9,"31":10,"35":28,"36":25,"38":21,"40":99,"42":304,"44":50,"45":314,"46":35,"49":439,"51":252,"59":8,"61":120,"63":7,"64":67,"67":19,"71":41,"73":8,"87":8,"92":9,"93":8,"94":81,"96":7,"101":24,"102":43,"105":16,"108":2126,"109":254}},"geometry":{"type":"Point","coordinates":[-73.73977620743975,40.733502963294896]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056600","ancestry":{"1":1883,"5":30,"34":4,"38":24,"42":26,"44":4,"45":347,"49":5,"51":28,"61":20,"62":5,"64":4,"67":4,"73":8,"87":8,"93":4,"94":293,"101":229,"102":48,"105":21,"108":1127,"109":77}},"geometry":{"type":"Point","coordinates":[-73.73840336095957,40.719738612593986]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081115100","ancestry":{"1":1150,"5":13,"6":11,"10":11,"29":4,"36":14,"38":24,"40":5,"42":78,"44":56,"46":9,"49":112,"51":310,"52":24,"53":32,"54":4,"61":82,"63":19,"64":27,"67":20,"73":30,"83":8,"87":22,"91":4,"92":33,"108":480,"109":84}},"geometry":{"type":"Point","coordinates":[-73.80762994790855,40.76857171002518]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081120300","ancestry":{"1":1676,"5":49,"6":22,"14":22,"44":82,"46":11,"51":142,"62":19,"89":11,"108":1271,"109":124}},"geometry":{"type":"Point","coordinates":[-73.81258084857585,40.74879990350986]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081066100","ancestry":{"1":1491,"3":109,"5":67,"6":23,"13":12,"14":11,"16":6,"19":25,"22":10,"29":6,"31":5,"36":4,"38":17,"40":36,"42":238,"44":28,"46":16,"49":159,"51":400,"61":153,"64":5,"89":10,"92":10,"93":5,"107":39,"108":320,"109":59}},"geometry":{"type":"Point","coordinates":[-73.8817902269984,40.717510327377504]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081079000","ancestry":{"1":2359,"5":8,"36":33,"38":4,"41":10,"45":601,"49":11,"51":24,"73":66,"87":66,"94":567,"99":23,"101":12,"102":203,"103":228,"105":101,"108":956,"109":195}},"geometry":{"type":"Point","coordinates":[-73.79661616382072,40.67248304695484]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081103300","ancestry":{"1":4048,"3":28,"5":82,"19":25,"26":9,"29":137,"31":14,"32":17,"36":57,"40":15,"42":208,"44":326,"46":42,"49":527,"51":1464,"61":106,"64":55,"67":35,"70":17,"90":9,"92":44,"108":1185,"109":348}},"geometry":{"type":"Point","coordinates":[-73.8096597341885,40.77917783942294]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081133300","ancestry":{"1":3667,"5":102,"16":64,"19":8,"23":17,"26":7,"29":33,"31":9,"35":10,"36":9,"38":9,"40":8,"41":7,"42":211,"44":48,"46":8,"49":191,"51":163,"53":9,"59":8,"61":79,"63":23,"64":377,"67":17,"89":121,"92":138,"108":2103,"109":298}},"geometry":{"type":"Point","coordinates":[-73.77927284461764,40.73191908990732]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081134100","ancestry":{"1":3443,"5":51,"6":13,"7":13,"16":8,"38":30,"42":144,"44":36,"49":90,"50":145,"51":249,"61":64,"62":13,"63":23,"64":81,"67":5,"107":77,"108":2391,"109":263}},"geometry":{"type":"Point","coordinates":[-73.79117964597845,40.73529227506204]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081134700","ancestry":{"1":9563,"2":243,"5":206,"6":233,"7":233,"16":15,"19":13,"29":15,"35":85,"36":111,"40":10,"42":375,"45":113,"46":20,"49":278,"51":461,"53":15,"59":17,"61":209,"63":38,"64":352,"66":52,"67":15,"73":41,"87":41,"89":14,"90":1,"91":14,"92":11,"94":202,"101":93,"102":11,"103":58,"105":40,"108":6680,"109":690}},"geometry":{"type":"Point","coordinates":[-73.78111971614601,40.73795579981327]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081136700","ancestry":{"1":6171,"3":26,"5":280,"6":76,"7":74,"15":2,"16":12,"19":14,"23":12,"28":13,"31":72,"34":12,"35":28,"36":42,"40":18,"42":85,"44":264,"45":1,"46":33,"49":336,"51":349,"52":17,"59":13,"61":201,"62":28,"63":32,"64":204,"69":13,"92":18,"94":27,"102":14,"103":13,"108":4213,"109":365}},"geometry":{"type":"Point","coordinates":[-73.76031100974036,40.744204303518025]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081101002","ancestry":{"1":4549,"5":559,"6":86,"7":8,"11":57,"15":21,"16":21,"19":47,"22":5,"23":7,"26":3,"31":50,"34":11,"35":29,"36":25,"38":8,"40":153,"41":4,"42":111,"44":4,"45":37,"46":101,"48":41,"49":72,"51":54,"52":9,"53":6,"61":306,"64":483,"73":112,"83":103,"87":9,"90":8,"92":78,"94":9,"105":9,"108":1680,"109":951}},"geometry":{"type":"Point","coordinates":[-73.74145282199288,40.599495549165]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081101700","ancestry":{"1":5818,"5":172,"19":92,"23":23,"29":314,"32":96,"35":14,"36":34,"38":26,"40":10,"42":241,"44":253,"46":13,"48":67,"49":733,"51":2335,"53":18,"59":42,"61":129,"62":75,"64":211,"71":14,"89":58,"90":16,"91":60,"93":16,"94":18,"103":18,"108":1683,"109":361}},"geometry":{"type":"Point","coordinates":[-73.79824956357872,40.77976584194853]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081115500","ancestry":{"1":2629,"3":5,"5":107,"16":5,"19":7,"32":5,"40":10,"42":113,"44":35,"49":150,"51":96,"53":5,"61":45,"64":7,"66":5,"67":12,"108":2151,"109":83}},"geometry":{"type":"Point","coordinates":[-73.81179129365128,40.767838310053484]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081093900","ancestry":{"1":4974,"5":395,"6":24,"15":24,"16":9,"19":39,"23":8,"31":50,"32":25,"34":79,"35":9,"36":57,"38":16,"39":4,"40":32,"41":9,"42":170,"44":113,"49":302,"51":471,"53":8,"55":33,"61":33,"62":21,"63":8,"64":10,"66":7,"73":27,"87":27,"89":8,"108":3319,"109":432}},"geometry":{"type":"Point","coordinates":[-73.84320997078589,40.7924771356077]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081094201","ancestry":{"1":3765,"5":222,"6":25,"7":11,"10":10,"15":4,"21":25,"32":10,"37":15,"38":7,"40":21,"42":84,"44":3,"46":4,"49":221,"51":219,"61":250,"63":4,"64":8,"66":25,"73":143,"76":80,"87":63,"92":76,"94":360,"96":161,"101":53,"103":122,"105":24,"108":1976,"109":318}},"geometry":{"type":"Point","coordinates":[-73.8202535630211,40.584700746637694]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081094202","ancestry":{"1":4686,"3":33,"5":209,"19":10,"20":11,"22":33,"23":3,"29":14,"31":11,"36":48,"40":10,"42":102,"44":58,"45":5,"46":73,"49":394,"51":250,"52":14,"61":107,"62":56,"66":4,"67":17,"73":151,"79":26,"80":19,"87":82,"88":24,"89":17,"91":39,"92":12,"94":141,"101":46,"102":25,"103":30,"105":40,"108":3118,"109":466}},"geometry":{"type":"Point","coordinates":[-73.80924599842045,40.59015813377861]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081094203","ancestry":{"1":5396,"5":687,"34":13,"35":22,"36":77,"38":16,"40":36,"41":11,"42":125,"44":43,"45":36,"46":24,"49":638,"51":377,"61":637,"64":87,"65":12,"73":110,"75":77,"76":10,"81":6,"87":17,"91":9,"92":77,"94":286,"101":106,"102":179,"105":1,"107":259,"108":1980,"109":422}},"geometry":{"type":"Point","coordinates":[-73.8091241601192,40.58588397031348]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081117100","ancestry":{"1":2901,"5":80,"6":11,"10":11,"16":15,"36":53,"39":11,"42":17,"44":153,"49":78,"51":174,"61":27,"64":28,"94":10,"102":10,"108":2253,"109":137}},"geometry":{"type":"Point","coordinates":[-73.80571257737138,40.76325643573622]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081116100","ancestry":{"1":4581,"2":158,"5":103,"22":21,"33":3,"35":7,"36":8,"38":15,"41":6,"42":13,"44":13,"45":5,"48":8,"49":68,"51":55,"61":24,"63":37,"64":29,"66":8,"73":5,"87":5,"94":69,"96":11,"99":13,"101":15,"102":14,"105":16,"108":3690,"109":359}},"geometry":{"type":"Point","coordinates":[-73.82569886141874,40.766860098492984]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081116700","ancestry":{"1":1905,"5":86,"6":16,"11":16,"31":6,"36":11,"38":5,"39":9,"40":10,"42":5,"44":18,"49":5,"51":57,"53":10,"61":11,"67":5,"94":9,"103":9,"107":10,"108":1486,"109":220}},"geometry":{"type":"Point","coordinates":[-73.81244343376653,40.76217343413918]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081117500","ancestry":{"1":4977,"5":123,"16":108,"19":40,"29":7,"35":8,"36":51,"40":8,"41":41,"42":88,"44":63,"46":8,"49":289,"51":634,"53":19,"61":301,"63":8,"64":54,"67":43,"89":8,"90":33,"92":9,"93":8,"94":10,"101":9,"105":1,"108":3285,"109":188}},"geometry":{"type":"Point","coordinates":[-73.79642955761769,40.76147145471173]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081118100","ancestry":{"1":1761,"3":22,"5":9,"19":6,"23":5,"31":13,"35":5,"36":15,"38":6,"42":35,"44":294,"46":6,"49":126,"51":141,"53":5,"61":125,"63":31,"64":13,"67":23,"70":22,"94":44,"102":44,"108":877,"109":117}},"geometry":{"type":"Point","coordinates":[-73.78735942043866,40.75949959828222]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081119100","ancestry":{"1":3354,"3":20,"5":9,"36":35,"38":8,"42":61,"44":127,"45":158,"46":7,"49":155,"51":31,"53":23,"61":17,"108":2660,"109":241}},"geometry":{"type":"Point","coordinates":[-73.80651112754325,40.75666503136684]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085014605","ancestry":{"1":3496,"3":222,"5":111,"6":32,"7":32,"19":10,"28":12,"29":9,"31":9,"32":9,"36":56,"38":10,"40":67,"42":287,"46":30,"49":708,"51":1612,"53":9,"55":34,"59":23,"61":232,"64":58,"67":11,"70":27,"92":48,"94":2,"101":2,"108":682,"109":168}},"geometry":{"type":"Point","coordinates":[-74.15012253602654,40.558698697089895]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085014606","ancestry":{"1":7545,"3":152,"5":224,"6":118,"7":37,"10":81,"19":29,"34":49,"35":23,"36":271,"38":41,"40":36,"42":262,"44":388,"49":790,"51":3542,"59":12,"61":209,"64":720,"90":13,"92":315,"108":1147,"109":703}},"geometry":{"type":"Point","coordinates":[-74.14262215380874,40.5625600177346]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085015100","ancestry":{"1":5087,"3":25,"5":177,"19":58,"33":12,"34":67,"36":249,"38":33,"39":36,"40":56,"41":18,"42":487,"44":15,"46":51,"49":1551,"51":1566,"59":122,"61":191,"64":77,"66":13,"67":33,"70":28,"89":66,"91":12,"94":92,"103":92,"107":1,"108":1119,"109":561}},"geometry":{"type":"Point","coordinates":[-74.12759259498367,40.61953386092431]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085015601","ancestry":{"1":6245,"3":157,"5":250,"19":34,"26":14,"34":16,"36":169,"40":35,"42":371,"46":27,"49":1565,"51":3256,"53":54,"59":243,"61":409,"62":57,"64":63,"67":49,"89":29,"90":36,"92":19,"93":17,"108":1254,"109":570}},"geometry":{"type":"Point","coordinates":[-74.1545777258893,40.5421524482624]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085015602","ancestry":{"1":3449,"5":253,"16":27,"19":42,"23":29,"24":40,"31":13,"32":10,"34":33,"35":29,"36":100,"39":6,"40":18,"42":149,"44":7,"49":764,"51":2183,"53":21,"59":127,"61":120,"62":10,"64":54,"108":233,"109":129}},"geometry":{"type":"Point","coordinates":[-74.16180359920578,40.53602000526894]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085015603","ancestry":{"1":4671,"3":42,"5":72,"6":179,"7":144,"14":35,"19":33,"26":19,"31":11,"35":28,"36":31,"38":71,"40":72,"41":27,"42":214,"44":33,"46":35,"49":597,"51":1622,"52":6,"53":13,"59":43,"61":227,"62":17,"64":573,"67":44,"68":11,"89":14,"91":142,"92":317,"93":13,"108":700,"109":517}},"geometry":{"type":"Point","coordinates":[-74.14758772250232,40.53792097437178]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085016901","ancestry":{"1":3145,"3":195,"5":196,"6":194,"7":194,"23":10,"31":5,"36":182,"40":33,"41":9,"42":102,"44":25,"46":5,"49":440,"51":909,"59":24,"61":160,"64":114,"67":9,"70":6,"89":7,"92":9,"93":3,"94":125,"101":69,"105":56,"107":25,"108":914,"109":136}},"geometry":{"type":"Point","coordinates":[-74.1094586873314,40.61238661897185]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085014700","ancestry":{"1":3490,"3":25,"5":21,"19":16,"29":14,"31":16,"34":14,"36":92,"40":18,"42":430,"44":89,"46":21,"49":1144,"51":1488,"59":108,"61":201,"64":101,"65":59,"66":21,"67":21,"69":8,"70":28,"89":13,"92":12,"108":700,"109":173}},"geometry":{"type":"Point","coordinates":[-74.1164274320248,40.61926838071163]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085020100","ancestry":{"1":3713,"5":223,"22":5,"23":12,"31":11,"32":7,"33":16,"36":100,"41":7,"42":113,"45":14,"46":6,"49":485,"51":884,"53":36,"59":160,"61":219,"64":67,"66":60,"67":11,"70":25,"73":23,"78":16,"87":7,"89":31,"90":25,"91":6,"93":5,"94":12,"105":12,"108":1584,"109":260}},"geometry":{"type":"Point","coordinates":[-74.13426464352266,40.62403888477166]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085031902","ancestry":{"1":4535,"5":527,"34":19,"36":16,"40":12,"42":190,"44":38,"45":16,"49":302,"51":219,"59":32,"67":76,"73":636,"78":30,"79":334,"87":272,"91":15,"94":311,"99":14,"102":228,"103":9,"104":6,"105":54,"108":2361,"109":344}},"geometry":{"type":"Point","coordinates":[-74.16576476121801,40.63788216300484]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085000300","ancestry":{"1":1639,"5":20,"6":47,"14":47,"19":13,"26":15,"34":11,"35":7,"36":31,"38":5,"40":38,"41":18,"42":109,"44":8,"45":3,"46":17,"49":257,"51":95,"53":6,"59":4,"61":46,"62":6,"64":13,"65":5,"66":14,"73":6,"75":6,"89":13,"92":24,"94":28,"99":7,"101":12,"103":9,"106":7,"107":13,"108":784,"109":263}},"geometry":{"type":"Point","coordinates":[-74.07527597498776,40.64141673739257]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085000600","ancestry":{"1":2134,"5":30,"16":7,"19":8,"36":63,"40":8,"41":9,"42":89,"44":48,"46":30,"49":278,"51":538,"59":15,"61":249,"64":171,"66":13,"67":30,"90":13,"92":65,"93":8,"94":34,"103":23,"105":11,"107":10,"108":521,"109":304}},"geometry":{"type":"Point","coordinates":[-74.06517375947298,40.61534414269616]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085000800","ancestry":{"1":5771,"3":236,"5":143,"6":398,"7":368,"15":30,"22":16,"34":12,"36":153,"38":11,"40":33,"42":309,"44":8,"46":6,"49":547,"51":1364,"52":8,"59":194,"61":260,"62":12,"63":12,"64":136,"66":25,"73":10,"75":10,"89":21,"91":191,"92":59,"94":72,"101":38,"102":34,"107":31,"108":2129,"109":459}},"geometry":{"type":"Point","coordinates":[-74.06771334601436,40.61195153023351]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085001100","ancestry":{"1":2884,"4":8,"5":243,"19":6,"23":9,"32":14,"36":32,"38":7,"40":52,"42":111,"45":4,"46":6,"49":72,"51":186,"61":18,"62":25,"63":12,"64":26,"66":24,"68":8,"73":204,"87":150,"88":54,"89":25,"92":63,"93":15,"94":292,"95":26,"97":89,"98":9,"101":36,"102":34,"103":24,"105":74,"108":1541,"109":255}},"geometry":{"type":"Point","coordinates":[-74.08266533542904,40.6387763389631]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085001700","ancestry":{"1":1473,"3":24,"5":55,"34":4,"35":8,"36":78,"38":16,"40":22,"42":68,"44":57,"46":5,"49":78,"51":95,"61":30,"64":11,"65":3,"67":9,"73":126,"79":4,"87":122,"92":5,"94":89,"96":7,"102":18,"105":64,"107":18,"108":624,"109":287}},"geometry":{"type":"Point","coordinates":[-74.0812547452258,40.63439077522064]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085002002","ancestry":{"1":3233,"3":442,"5":151,"6":71,"7":45,"15":26,"19":13,"26":10,"34":14,"35":4,"36":104,"38":9,"40":22,"42":59,"44":40,"46":11,"48":29,"49":129,"51":830,"53":39,"56":8,"59":10,"61":74,"63":10,"64":295,"67":14,"73":2,"79":2,"92":119,"94":7,"105":7,"108":752,"109":336}},"geometry":{"type":"Point","coordinates":[-74.0702958501545,40.6014725780068]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085002100","ancestry":{"1":3921,"5":273,"31":28,"36":34,"40":65,"42":220,"45":16,"46":8,"49":202,"51":291,"59":17,"61":59,"64":50,"66":11,"73":147,"75":37,"87":110,"89":15,"92":36,"93":11,"94":60,"102":12,"103":9,"105":39,"107":13,"108":2212,"109":556}},"geometry":{"type":"Point","coordinates":[-74.07735072272399,40.63046034345624]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085002900","ancestry":{"1":5829,"5":143,"6":25,"14":25,"36":20,"38":10,"40":7,"42":31,"45":33,"49":29,"51":55,"61":5,"73":371,"78":9,"79":24,"81":16,"87":322,"92":19,"94":338,"96":25,"99":7,"102":57,"103":137,"105":119,"108":4362,"109":611}},"geometry":{"type":"Point","coordinates":[-74.08274059061503,40.61965815222835]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085003300","ancestry":{"1":3631,"3":235,"5":10,"6":32,"7":26,"14":6,"19":23,"23":7,"33":11,"36":68,"38":19,"39":20,"40":31,"41":6,"42":142,"44":127,"45":25,"48":33,"49":366,"51":501,"59":12,"61":98,"63":7,"64":44,"66":13,"67":25,"69":11,"71":24,"73":107,"75":21,"78":11,"79":18,"87":57,"90":7,"91":115,"94":341,"101":69,"102":215,"103":28,"105":29,"107":11,"108":1531,"109":259}},"geometry":{"type":"Point","coordinates":[-74.0866104975482,40.625601931262445]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017005","ancestry":{"1":4744,"3":152,"5":15,"6":18,"10":18,"23":55,"32":11,"33":10,"36":121,"40":34,"42":265,"44":11,"49":704,"51":2618,"56":55,"59":42,"61":61,"62":7,"64":271,"66":18,"67":22,"89":22,"92":168,"107":8,"108":532,"109":587}},"geometry":{"type":"Point","coordinates":[-74.18141227996675,40.539354066057626]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017007","ancestry":{"1":5239,"5":113,"6":500,"7":472,"10":16,"15":12,"16":9,"23":40,"31":13,"34":22,"35":43,"36":9,"38":14,"42":135,"45":15,"46":59,"49":628,"51":1836,"53":9,"59":39,"61":179,"64":197,"67":35,"73":11,"87":11,"89":9,"92":295,"94":63,"97":50,"102":23,"107":11,"108":1963,"109":247}},"geometry":{"type":"Point","coordinates":[-74.18794915318468,40.558494120659724]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017008","ancestry":{"1":7275,"3":187,"5":169,"6":260,"7":60,"12":14,"14":173,"15":13,"16":27,"19":44,"26":32,"31":62,"32":63,"35":55,"36":147,"40":32,"42":435,"44":51,"46":45,"49":1087,"51":3529,"53":17,"59":14,"61":350,"64":210,"66":13,"67":14,"89":34,"92":40,"108":1482,"109":675}},"geometry":{"type":"Point","coordinates":[-74.17974909242817,40.555899216868625]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017300","ancestry":{"1":2448,"5":45,"6":55,"7":15,"14":40,"26":4,"35":7,"36":48,"40":22,"42":90,"44":24,"48":7,"49":140,"51":382,"59":5,"61":85,"64":23,"66":4,"73":26,"87":26,"91":62,"92":10,"94":25,"99":10,"102":15,"108":1449,"109":201}},"geometry":{"type":"Point","coordinates":[-74.11827688251014,40.60527913807924]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017600","ancestry":{"1":4892,"3":51,"5":161,"6":49,"7":16,"13":25,"14":8,"16":52,"22":39,"23":9,"26":16,"32":8,"34":40,"36":99,"40":44,"42":243,"44":33,"46":17,"48":19,"49":390,"50":52,"51":2398,"59":23,"61":129,"62":47,"64":367,"67":19,"89":42,"91":9,"92":107,"107":72,"108":619,"109":535}},"geometry":{"type":"Point","coordinates":[-74.17585028303259,40.52965921697964]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017700","ancestry":{"1":6885,"3":82,"5":355,"6":410,"7":49,"13":79,"14":282,"33":15,"34":14,"35":2,"36":211,"40":68,"42":262,"44":160,"46":13,"48":71,"49":414,"50":45,"51":2600,"52":31,"53":29,"59":173,"61":166,"64":410,"66":16,"67":49,"92":54,"107":24,"108":1560,"109":805}},"geometry":{"type":"Point","coordinates":[-74.10396470168911,40.60236027570537]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023400","ancestry":{"1":5222,"5":308,"21":36,"22":32,"31":17,"35":9,"36":87,"40":77,"41":8,"42":151,"45":74,"49":167,"51":40,"59":37,"61":29,"64":44,"67":20,"73":408,"79":51,"80":8,"83":19,"87":267,"88":82,"89":63,"94":186,"95":11,"99":23,"101":21,"102":66,"103":44,"105":40,"108":3274,"109":853}},"geometry":{"type":"Point","coordinates":[-73.93867025775515,40.82373052900378]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023501","ancestry":{"1":6383,"5":152,"6":106,"11":17,"15":89,"23":21,"31":14,"34":16,"35":63,"42":151,"45":15,"49":127,"51":242,"53":59,"59":32,"61":53,"64":120,"73":632,"76":6,"79":6,"87":439,"88":181,"93":19,"94":375,"101":14,"102":301,"105":60,"108":4408,"109":405}},"geometry":{"type":"Point","coordinates":[-73.941835252187,40.82899673533886]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023502","ancestry":{"1":1708,"5":38,"16":9,"33":5,"36":21,"40":13,"41":5,"42":32,"48":8,"49":61,"62":12,"64":15,"67":9,"73":278,"80":20,"81":74,"82":8,"85":23,"87":132,"88":21,"89":13,"92":11,"94":69,"97":4,"101":24,"102":17,"105":24,"108":970,"109":291}},"geometry":{"type":"Point","coordinates":[-73.9389276458307,40.82788808230173]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023600","ancestry":{"1":6980,"2":17,"5":427,"38":21,"45":38,"49":13,"51":12,"61":13,"73":714,"74":18,"81":696,"94":513,"96":156,"101":174,"102":5,"105":178,"108":5284,"109":766}},"geometry":{"type":"Point","coordinates":[-73.93610549778849,40.82489029586557]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061023600","ancestry":{"1":6980,"2":17,"5":427,"38":21,"45":38,"49":13,"51":12,"61":13,"73":714,"74":18,"81":696,"94":513,"96":156,"101":174,"102":5,"105":178,"108":5284,"109":766}},"geometry":{"type":"Point","coordinates":[-73.93258870787565,40.82307385802668]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023700","ancestry":{"1":7586,"5":357,"6":75,"10":74,"15":1,"23":58,"36":59,"40":61,"42":172,"44":14,"45":17,"49":140,"51":91,"61":68,"62":38,"64":125,"70":41,"73":333,"87":333,"92":37,"93":13,"94":319,"101":142,"102":177,"105":49,"108":5662,"109":682}},"geometry":{"type":"Point","coordinates":[-73.94759725785278,40.83143625442628]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023900","ancestry":{"1":2526,"5":81,"18":12,"22":6,"23":12,"34":21,"36":50,"38":22,"40":20,"42":46,"45":29,"49":23,"51":28,"59":18,"61":10,"64":6,"67":9,"73":30,"87":30,"89":15,"94":347,"99":43,"101":291,"105":13,"108":1712,"109":272}},"geometry":{"type":"Point","coordinates":[-73.94106421300023,40.8323375059763]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024000","ancestry":{"1":1580,"5":55,"6":6,"10":6,"22":6,"36":18,"38":5,"44":12,"45":16,"49":31,"51":19,"61":50,"64":46,"67":3,"70":19,"73":36,"80":6,"87":30,"94":10,"102":4,"103":6,"108":1083,"109":238}},"geometry":{"type":"Point","coordinates":[-73.9245479749798,40.79102155339546]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061024000","ancestry":{"1":1580,"5":55,"6":6,"10":6,"22":6,"36":18,"38":5,"44":12,"45":16,"49":31,"51":19,"61":50,"64":46,"67":3,"70":19,"73":36,"80":6,"87":30,"94":10,"102":4,"103":6,"108":1083,"109":238}},"geometry":{"type":"Point","coordinates":[-73.92246493695441,40.80189843677204]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36061024000","ancestry":{"1":1580,"5":55,"6":6,"10":6,"22":6,"36":18,"38":5,"44":12,"45":16,"49":31,"51":19,"61":50,"64":46,"67":3,"70":19,"73":36,"80":6,"87":30,"94":10,"102":4,"103":6,"108":1083,"109":238}},"geometry":{"type":"Point","coordinates":[-73.9151268483021,40.78671329366517]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024301","ancestry":{"1":4246,"5":118,"18":17,"19":13,"22":25,"23":17,"32":18,"34":33,"36":99,"40":51,"41":78,"42":189,"49":218,"51":66,"52":8,"61":22,"62":10,"64":56,"67":26,"73":212,"87":212,"89":17,"94":218,"96":58,"99":67,"101":33,"102":9,"103":20,"105":40,"108":2970,"109":291}},"geometry":{"type":"Point","coordinates":[-73.93876010319211,40.835972158814144]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024302","ancestry":{"1":6631,"5":300,"23":21,"42":16,"44":7,"45":5,"46":15,"49":14,"51":22,"73":250,"75":64,"81":106,"87":74,"88":6,"94":415,"95":17,"96":42,"97":64,"101":7,"102":85,"103":157,"105":43,"108":5146,"109":728}},"geometry":{"type":"Point","coordinates":[-73.93680217278025,40.83154809400846]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061024302","ancestry":{"1":6631,"5":300,"23":21,"42":16,"44":7,"45":5,"46":15,"49":14,"51":22,"73":250,"75":64,"81":106,"87":74,"88":6,"94":415,"95":17,"96":42,"97":64,"101":7,"102":85,"103":157,"105":43,"108":5146,"109":728}},"geometry":{"type":"Point","coordinates":[-73.9334113825273,40.83254830133225]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024500","ancestry":{"1":15899,"5":253,"22":29,"23":23,"29":24,"34":37,"36":116,"38":17,"40":15,"41":22,"42":161,"44":29,"49":414,"50":48,"51":271,"53":29,"61":94,"64":87,"73":460,"76":109,"81":62,"87":289,"94":74,"100":27,"101":27,"103":20,"108":13341,"109":1314}},"geometry":{"type":"Point","coordinates":[-73.94209797677267,40.83662647318744]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024900","ancestry":{"1":1200,"5":62,"35":5,"40":6,"42":5,"49":5,"51":26,"73":62,"87":62,"94":58,"97":21,"101":5,"102":5,"105":27,"108":994,"109":75}},"geometry":{"type":"Point","coordinates":[-73.93644948271157,40.83912849389511]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061025500","ancestry":{"1":5472,"5":92,"6":11,"10":11,"19":52,"21":47,"29":11,"34":72,"35":272,"36":138,"38":44,"39":7,"40":111,"42":563,"44":22,"46":14,"47":23,"48":7,"49":448,"51":257,"53":29,"58":7,"59":53,"61":26,"62":15,"63":18,"64":80,"65":20,"66":39,"67":24,"68":154,"73":31,"84":31,"89":52,"91":11,"92":37,"93":60,"94":96,"101":60,"102":3,"105":33,"108":3152,"109":710}},"geometry":{"type":"Point","coordinates":[-73.94393031553761,40.84544066920143]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061026300","ancestry":{"1":9388,"5":149,"6":20,"10":20,"33":18,"34":10,"36":83,"38":19,"40":87,"42":148,"44":46,"45":16,"46":39,"49":78,"51":166,"59":18,"61":17,"62":21,"64":106,"67":17,"94":31,"99":16,"105":15,"108":8341,"109":503}},"geometry":{"type":"Point","coordinates":[-73.93747529008282,40.84682262959868]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061026500","ancestry":{"1":7526,"5":59,"6":193,"7":142,"10":51,"18":13,"19":59,"22":32,"23":57,"29":12,"31":17,"33":17,"34":19,"35":69,"36":304,"38":55,"39":15,"40":58,"41":24,"42":284,"44":82,"46":23,"48":22,"49":319,"51":165,"52":32,"53":51,"61":76,"63":24,"64":101,"65":16,"66":15,"67":67,"73":58,"75":39,"87":19,"89":20,"92":31,"94":134,"101":113,"103":21,"108":5661,"109":415}},"geometry":{"type":"Point","coordinates":[-73.94013076940482,40.84962173186933]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061026700","ancestry":{"1":2328,"5":93,"6":57,"11":20,"12":29,"15":8,"16":6,"21":5,"26":21,"29":6,"31":7,"34":9,"35":9,"38":37,"40":12,"42":34,"44":154,"46":17,"48":17,"49":20,"50":19,"51":15,"61":187,"62":4,"63":18,"64":80,"67":6,"73":11,"83":11,"92":4,"94":12,"102":12,"108":1320,"109":348}},"geometry":{"type":"Point","coordinates":[-73.92864540662882,40.850328285361435]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061026900","ancestry":{"1":9197,"5":68,"6":41,"10":13,"11":28,"18":7,"21":10,"32":6,"35":95,"36":7,"40":13,"42":69,"46":97,"50":20,"51":68,"61":89,"64":11,"73":32,"76":32,"94":194,"96":10,"101":14,"103":164,"105":6,"108":7827,"109":915}},"geometry":{"type":"Point","coordinates":[-73.93097444158803,40.85055677441294]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061027500","ancestry":{"1":3483,"3":23,"5":61,"6":17,"7":17,"16":7,"18":8,"19":49,"21":4,"23":125,"26":13,"29":11,"31":11,"34":84,"35":74,"36":350,"38":7,"39":78,"40":54,"41":116,"42":350,"44":37,"46":102,"49":430,"51":252,"53":9,"58":8,"59":63,"61":123,"62":45,"63":21,"64":229,"65":7,"66":19,"67":76,"68":25,"73":35,"75":35,"89":63,"90":21,"92":9,"94":12,"99":5,"102":7,"108":1432,"109":167}},"geometry":{"type":"Point","coordinates":[-73.94044636465627,40.85456293195061]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061027700","ancestry":{"1":7877,"5":155,"19":9,"23":51,"36":25,"40":35,"42":86,"46":41,"49":106,"50":7,"51":192,"59":10,"61":3,"64":7,"68":5,"73":20,"87":12,"88":8,"92":53,"94":132,"101":13,"102":57,"103":18,"105":44,"108":6841,"109":383}},"geometry":{"type":"Point","coordinates":[-73.9273891145188,40.85544042457425]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061027900","ancestry":{"1":11289,"5":156,"6":214,"10":11,"11":54,"12":16,"15":133,"19":13,"22":18,"26":18,"31":15,"33":34,"34":47,"36":123,"38":16,"40":14,"41":39,"42":278,"44":99,"46":163,"48":35,"49":190,"50":174,"51":308,"53":14,"59":82,"61":192,"64":180,"66":30,"67":37,"73":26,"83":26,"89":55,"90":12,"92":71,"93":32,"94":195,"99":130,"103":65,"105":63,"108":8674,"109":837}},"geometry":{"type":"Point","coordinates":[-73.93162716470187,40.8558577507375]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061028500","ancestry":{"1":7808,"5":58,"31":37,"34":16,"35":16,"36":37,"38":27,"40":76,"42":76,"45":1,"49":132,"50":12,"51":45,"61":11,"62":25,"64":40,"67":9,"73":15,"87":15,"89":1,"90":9,"93":29,"94":66,"102":4,"103":48,"105":14,"108":6872,"109":436}},"geometry":{"type":"Point","coordinates":[-73.92804885530016,40.861500772012796]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061028700","ancestry":{"1":4268,"5":69,"6":120,"10":120,"19":6,"21":9,"23":32,"32":9,"34":30,"35":21,"36":151,"38":66,"40":22,"41":9,"42":166,"44":32,"45":10,"49":299,"51":185,"59":14,"61":107,"62":11,"64":55,"66":27,"67":76,"69":6,"73":7,"88":7,"89":41,"90":17,"91":6,"92":10,"93":7,"94":40,"102":21,"103":10,"105":9,"108":2888,"109":333}},"geometry":{"type":"Point","coordinates":[-73.93192254061235,40.86353288890169]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008601","ancestry":{"1":2729,"5":225,"6":30,"10":7,"13":15,"14":8,"19":39,"22":16,"23":39,"29":78,"35":39,"36":69,"38":58,"39":19,"40":111,"42":200,"44":67,"46":7,"48":108,"49":160,"51":341,"55":13,"61":141,"62":17,"64":279,"71":43,"89":29,"91":6,"107":50,"108":810,"109":483}},"geometry":{"type":"Point","coordinates":[-73.9706845902001,40.74601815107987]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36061008601","ancestry":{"1":2729,"5":225,"6":30,"10":7,"13":15,"14":8,"19":39,"22":16,"23":39,"29":78,"35":39,"36":69,"38":58,"39":19,"40":111,"42":200,"44":67,"46":7,"48":108,"49":160,"51":341,"55":13,"61":141,"62":17,"64":279,"71":43,"89":29,"91":6,"107":50,"108":810,"109":483}},"geometry":{"type":"Point","coordinates":[-73.96059848878852,40.74407914583118]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061029100","ancestry":{"1":12189,"5":79,"28":12,"36":34,"38":23,"40":81,"42":79,"49":92,"51":22,"59":35,"61":62,"62":23,"73":46,"76":30,"87":16,"93":22,"94":83,"101":69,"102":14,"108":11294,"109":569}},"geometry":{"type":"Point","coordinates":[-73.92393394435535,40.86431100004194]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061029300","ancestry":{"1":9101,"5":187,"6":86,"12":23,"15":63,"23":17,"36":18,"41":26,"42":58,"44":10,"46":116,"49":69,"51":33,"59":16,"61":31,"62":7,"64":37,"65":15,"67":31,"73":39,"79":39,"94":52,"105":52,"108":8338,"109":377}},"geometry":{"type":"Point","coordinates":[-73.92011995048769,40.86592584996335]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061029500","ancestry":{"1":8404,"5":93,"6":17,"7":17,"19":15,"23":37,"26":20,"33":12,"34":16,"35":73,"36":184,"38":110,"40":82,"41":5,"42":651,"44":19,"45":51,"49":539,"51":547,"53":4,"59":18,"61":302,"62":16,"63":17,"64":82,"67":73,"70":37,"73":133,"77":47,"83":19,"87":41,"88":26,"89":18,"90":81,"92":15,"93":15,"94":14,"101":14,"108":5863,"109":370}},"geometry":{"type":"Point","coordinates":[-73.9249403228604,40.86752320360682]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061029700","ancestry":{"1":42,"108":42}},"geometry":{"type":"Point","coordinates":[-73.92435559007693,40.872371297342745]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061029700","ancestry":{"1":42,"108":42}},"geometry":{"type":"Point","coordinates":[-73.91877369911717,40.87636339201371]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061030300","ancestry":{"1":4397,"5":64,"6":15,"14":8,"15":7,"16":8,"19":24,"21":12,"23":33,"32":16,"33":11,"34":12,"35":22,"36":197,"39":5,"40":33,"42":165,"44":58,"45":16,"46":82,"48":41,"49":396,"51":231,"53":18,"58":10,"59":49,"60":18,"61":64,"62":7,"63":10,"64":56,"65":18,"66":59,"67":66,"73":9,"87":9,"89":25,"90":10,"91":40,"92":16,"93":8,"94":60,"96":24,"102":12,"105":24,"108":3036,"109":127}},"geometry":{"type":"Point","coordinates":[-73.9186529686688,40.869219750870485]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061030900","ancestry":{"1":9427,"5":186,"6":7,"15":7,"35":14,"36":173,"38":19,"40":50,"42":48,"46":22,"48":14,"49":331,"51":94,"61":14,"66":13,"67":73,"73":125,"76":37,"78":13,"87":75,"93":50,"94":211,"96":43,"99":27,"100":13,"102":98,"105":50,"108":7747,"109":660}},"geometry":{"type":"Point","coordinates":[-73.91044572054592,40.87592539791659]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061030900","ancestry":{"1":9427,"5":186,"6":7,"15":7,"35":14,"36":173,"38":19,"40":50,"42":48,"46":22,"48":14,"49":331,"51":94,"61":14,"66":13,"67":73,"73":125,"76":37,"78":13,"87":75,"93":50,"94":211,"96":43,"99":27,"100":13,"102":98,"105":50,"108":7747,"109":660}},"geometry":{"type":"Point","coordinates":[-73.90895124686833,40.87464371278856]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016300","ancestry":{"1":7276,"3":26,"5":409,"6":83,"7":27,"8":13,"10":16,"15":27,"19":167,"23":28,"24":12,"26":17,"31":6,"32":14,"33":51,"34":100,"35":259,"36":527,"38":261,"39":15,"40":248,"41":34,"42":700,"44":246,"46":129,"48":18,"49":716,"50":29,"51":678,"52":26,"53":33,"59":73,"61":621,"62":15,"63":14,"64":971,"66":28,"67":171,"73":61,"79":47,"87":14,"89":99,"90":15,"91":191,"92":32,"93":63,"108":2114,"109":584}},"geometry":{"type":"Point","coordinates":[-73.98366938251748,40.78265305822779]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061029900","ancestry":{"1":4320,"5":56,"40":21,"42":45,"49":48,"51":64,"62":7,"73":47,"87":47,"94":32,"99":16,"101":9,"105":7,"108":3867,"109":294}},"geometry":{"type":"Point","coordinates":[-73.9170299516314,40.86476019077785]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061029900","ancestry":{"1":4320,"5":56,"40":21,"42":45,"49":48,"51":64,"62":7,"73":47,"87":47,"94":32,"99":16,"101":9,"105":7,"108":3867,"109":294}},"geometry":{"type":"Point","coordinates":[-73.91193353875938,40.86734693685404]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010800","ancestry":{"1":8731,"5":669,"6":104,"10":45,"11":32,"15":27,"19":134,"21":8,"23":35,"26":24,"31":61,"33":40,"34":65,"35":317,"36":459,"37":23,"38":90,"40":443,"42":687,"44":91,"46":83,"48":20,"49":1236,"51":1175,"52":60,"53":18,"57":39,"58":14,"59":25,"61":668,"63":70,"64":768,"66":21,"67":51,"70":40,"89":15,"90":9,"91":22,"92":42,"93":77,"94":52,"101":27,"102":12,"103":13,"108":2218,"109":1270}},"geometry":{"type":"Point","coordinates":[-73.96545303117729,40.75896852574846]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085003900","ancestry":{"1":2506,"3":24,"5":161,"6":3,"10":3,"13":3,"16":6,"29":21,"34":12,"36":68,"38":52,"40":21,"41":17,"42":144,"44":11,"49":376,"51":389,"53":6,"59":24,"61":119,"64":26,"66":9,"67":16,"73":141,"76":30,"78":24,"87":87,"89":14,"92":32,"94":55,"101":28,"103":19,"105":8,"107":4,"108":1032,"109":232}},"geometry":{"type":"Point","coordinates":[-74.09334998696511,40.621188188853424]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085004000","ancestry":{"1":12744,"5":221,"6":241,"11":138,"15":103,"36":68,"42":217,"44":117,"45":218,"49":455,"51":252,"59":5,"61":225,"62":38,"64":86,"73":2056,"78":475,"79":151,"81":44,"87":1346,"88":65,"92":38,"93":1,"94":206,"102":87,"103":18,"105":101,"108":7832,"109":1203}},"geometry":{"type":"Point","coordinates":[-74.08089501315655,40.613561537185824]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085004700","ancestry":{"1":3603,"3":47,"5":155,"6":25,"13":25,"18":9,"23":48,"33":9,"34":22,"36":56,"38":23,"39":9,"40":62,"41":104,"42":266,"44":32,"46":31,"49":500,"50":11,"51":815,"59":63,"61":228,"64":283,"66":31,"67":12,"70":19,"73":13,"76":13,"89":34,"90":17,"92":43,"93":9,"94":93,"101":38,"102":11,"106":44,"107":96,"108":1069,"109":387}},"geometry":{"type":"Point","coordinates":[-74.0947353990876,40.61419986991421]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085005000","ancestry":{"1":3608,"5":149,"6":303,"7":289,"12":14,"23":8,"32":9,"34":34,"36":83,"38":37,"42":187,"44":9,"45":110,"49":409,"51":902,"53":24,"55":59,"59":3,"61":64,"63":22,"64":284,"66":7,"67":10,"90":5,"91":4,"92":24,"94":33,"102":33,"107":9,"108":1162,"109":269}},"geometry":{"type":"Point","coordinates":[-74.08601757920165,40.60411817655615]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085005900","ancestry":{"1":2762,"5":38,"6":119,"7":86,"10":7,"13":33,"15":7,"31":15,"32":19,"35":28,"36":78,"40":15,"42":214,"44":137,"46":25,"49":631,"51":914,"59":26,"61":300,"62":32,"63":24,"64":170,"66":20,"67":60,"73":72,"79":13,"87":59,"89":9,"90":19,"92":32,"94":37,"101":37,"107":10,"108":468,"109":297}},"geometry":{"type":"Point","coordinates":[-74.09924847433825,40.625319181240975]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085006400","ancestry":{"1":3116,"3":415,"5":13,"6":6,"13":6,"19":6,"34":6,"36":7,"40":10,"42":77,"44":51,"46":7,"47":7,"49":256,"51":978,"53":8,"59":1,"61":81,"64":97,"67":24,"90":4,"92":9,"94":26,"105":26,"107":15,"108":1159,"109":342}},"geometry":{"type":"Point","coordinates":[-74.0785058103072,40.59724209819964]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085007400","ancestry":{"1":4725,"3":145,"5":74,"6":67,"7":38,"10":8,"13":21,"16":46,"36":23,"42":94,"44":11,"49":486,"51":981,"55":60,"59":20,"61":189,"63":77,"64":326,"89":9,"91":147,"92":125,"94":25,"101":24,"102":1,"107":18,"108":1989,"109":458}},"geometry":{"type":"Point","coordinates":[-74.06509544774617,40.59442544932284]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085007500","ancestry":{"1":4715,"5":548,"6":81,"11":65,"12":6,"14":10,"19":14,"26":5,"31":6,"32":6,"36":31,"38":31,"39":5,"40":4,"42":106,"45":6,"49":265,"51":625,"56":10,"58":14,"59":21,"61":23,"63":14,"64":25,"66":8,"67":21,"73":56,"78":56,"89":14,"92":25,"94":395,"96":9,"101":204,"102":182,"107":63,"108":2458,"109":382}},"geometry":{"type":"Point","coordinates":[-74.090945681414,40.63359870105757]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085008100","ancestry":{"1":4023,"5":470,"6":41,"7":41,"21":56,"29":8,"34":20,"36":99,"40":40,"42":172,"44":1,"45":5,"49":287,"50":11,"51":462,"53":21,"59":16,"61":147,"63":5,"64":62,"66":26,"67":64,"73":257,"76":21,"78":142,"87":94,"89":7,"90":8,"91":38,"94":174,"96":11,"101":31,"102":11,"103":40,"105":87,"106":9,"107":9,"108":1821,"109":388}},"geometry":{"type":"Point","coordinates":[-74.09337543876069,40.64282761952028]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085009601","ancestry":{"1":3858,"3":242,"5":187,"6":44,"10":8,"13":36,"19":6,"23":77,"29":29,"33":16,"36":20,"40":7,"41":15,"42":172,"44":49,"45":6,"46":17,"49":472,"51":1432,"55":309,"59":10,"61":82,"63":7,"64":125,"67":10,"89":26,"90":5,"92":12,"108":921,"109":218}},"geometry":{"type":"Point","coordinates":[-74.08860227071338,40.59692838727533]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085009602","ancestry":{"1":3301,"3":416,"5":77,"6":23,"7":10,"11":7,"13":6,"23":8,"31":9,"34":11,"36":64,"38":9,"41":10,"42":130,"49":427,"51":1182,"59":6,"61":185,"64":13,"89":20,"92":190,"108":909,"109":261}},"geometry":{"type":"Point","coordinates":[-74.09515968208946,40.590782128998725]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010602","ancestry":{"1":4428,"5":773,"6":71,"10":41,"13":56,"19":51,"22":16,"24":47,"26":59,"29":17,"33":15,"34":63,"35":91,"36":245,"38":107,"40":130,"41":62,"42":556,"44":12,"46":80,"48":15,"49":309,"50":66,"51":509,"59":62,"61":214,"62":12,"63":15,"64":276,"66":19,"67":83,"70":15,"71":17,"73":176,"79":158,"87":18,"91":29,"92":38,"93":10,"108":931,"109":291}},"geometry":{"type":"Point","coordinates":[-73.95919228139121,40.760404272470055]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010900","ancestry":{"1":220,"5":1,"23":8,"34":11,"36":22,"40":15,"41":4,"48":3,"49":25,"51":25,"61":10,"64":9,"67":10,"69":4,"89":21,"108":59,"109":41}},"geometry":{"type":"Point","coordinates":[-73.98970277836722,40.752250485337804]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011000","ancestry":{"1":7811,"5":1273,"6":253,"7":22,"10":16,"11":99,"13":102,"15":30,"18":56,"19":115,"20":13,"22":22,"23":60,"24":25,"26":34,"29":25,"31":1,"32":12,"34":61,"35":167,"36":410,"38":224,"39":19,"40":303,"42":616,"44":162,"46":65,"48":208,"49":657,"51":628,"52":31,"59":19,"61":866,"64":779,"66":9,"67":123,"68":56,"70":1,"73":57,"83":57,"89":29,"91":41,"92":19,"94":51,"98":34,"102":17,"105":17,"108":2140,"109":434}},"geometry":{"type":"Point","coordinates":[-73.96313936836866,40.762147522562515]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011202","ancestry":{"1":266,"5":19,"19":7,"23":20,"31":4,"35":17,"36":13,"40":27,"42":21,"46":4,"48":9,"49":18,"51":8,"61":18,"63":9,"64":32,"67":5,"108":46,"109":56}},"geometry":{"type":"Point","coordinates":[-73.97213113862131,40.762603961572104]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011203","ancestry":{"1":1298,"5":181,"18":13,"19":9,"28":6,"31":11,"33":12,"34":18,"35":18,"36":61,"38":51,"40":6,"42":85,"44":22,"46":30,"48":19,"49":77,"50":6,"51":79,"61":60,"62":5,"63":12,"64":122,"67":38,"89":5,"90":14,"91":7,"92":4,"108":463,"109":119}},"geometry":{"type":"Point","coordinates":[-73.96891425028178,40.761244398885665]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085009700","ancestry":{"1":4055,"5":37,"6":114,"15":114,"23":9,"26":14,"34":11,"35":6,"36":102,"42":335,"45":37,"49":740,"51":460,"53":9,"56":14,"59":20,"61":77,"62":7,"64":22,"66":6,"67":11,"73":130,"78":23,"87":107,"92":68,"94":256,"101":58,"102":138,"105":60,"107":41,"108":2183,"109":220}},"geometry":{"type":"Point","coordinates":[-74.10882859625039,40.64160572849788]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061031100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.93022196398914,40.846618575027385]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061031100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.92470662871132,40.84950064146042]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003700","ancestry":{"1":2618,"5":138,"16":13,"19":85,"22":3,"23":11,"24":5,"26":24,"31":19,"34":23,"35":30,"36":360,"38":55,"40":92,"42":122,"44":48,"46":93,"49":397,"51":249,"52":15,"53":32,"57":12,"59":13,"61":176,"62":26,"63":5,"64":236,"66":17,"67":29,"68":16,"70":8,"73":4,"87":4,"89":91,"90":21,"91":29,"92":9,"94":5,"102":5,"108":677,"109":240}},"geometry":{"type":"Point","coordinates":[-74.00749336379212,40.72627798317982]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005200","ancestry":{"1":3792,"5":171,"6":101,"13":8,"15":93,"18":12,"19":40,"22":8,"23":20,"26":17,"31":14,"33":11,"35":52,"36":373,"38":41,"40":53,"41":26,"42":226,"44":159,"46":14,"48":47,"49":241,"50":10,"51":250,"52":6,"53":20,"59":11,"61":178,"62":24,"63":58,"64":475,"66":84,"67":99,"89":46,"92":14,"93":8,"94":9,"103":9,"108":1223,"109":727}},"geometry":{"type":"Point","coordinates":[-73.99045544168114,40.73743560344076]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010100","ancestry":{"1":1199,"5":39,"6":19,"15":19,"19":5,"21":5,"23":23,"31":3,"35":16,"36":55,"38":5,"40":31,"42":76,"46":12,"48":14,"49":92,"50":3,"51":63,"59":5,"60":3,"61":83,"62":11,"64":72,"70":5,"71":7,"73":4,"87":4,"89":14,"90":5,"91":4,"92":9,"94":9,"101":4,"106":5,"108":577,"109":143}},"geometry":{"type":"Point","coordinates":[-73.99154124315281,40.749731402640485]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014700","ancestry":{"1":2804,"5":31,"6":73,"7":28,"10":38,"11":7,"16":31,"18":7,"19":21,"21":18,"22":45,"23":46,"24":11,"25":7,"26":26,"30":7,"31":7,"34":37,"35":108,"36":121,"38":54,"40":48,"41":8,"42":181,"44":61,"46":9,"48":12,"49":257,"50":35,"51":244,"53":7,"59":10,"61":93,"62":8,"63":38,"64":103,"65":9,"67":44,"68":8,"73":15,"79":8,"83":7,"88":8,"89":66,"91":53,"93":15,"94":27,"95":8,"96":8,"103":19,"107":9,"108":1049,"109":311}},"geometry":{"type":"Point","coordinates":[-73.98880359054115,40.77132854368784]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015001","ancestry":{"1":2182,"5":249,"16":11,"19":33,"21":5,"23":37,"24":13,"26":9,"31":26,"33":19,"34":9,"35":51,"36":102,"38":55,"39":9,"40":143,"41":16,"42":170,"44":29,"49":206,"51":115,"53":16,"59":15,"61":235,"63":42,"64":203,"66":9,"67":26,"70":22,"71":11,"73":109,"79":89,"83":20,"89":36,"90":19,"91":16,"92":20,"93":9,"108":446,"109":302}},"geometry":{"type":"Point","coordinates":[-73.95928340617577,40.780198746914685]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085018702","ancestry":{"1":7316,"3":300,"5":58,"16":55,"21":17,"31":7,"34":41,"35":18,"36":116,"38":83,"39":24,"40":8,"42":231,"44":12,"49":764,"50":1,"51":1449,"59":96,"61":374,"64":112,"65":44,"67":112,"70":16,"89":62,"92":43,"94":46,"101":8,"104":38,"108":3898,"109":352}},"geometry":{"type":"Point","coordinates":[-74.12616510636771,40.60390388854617]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085018901","ancestry":{"1":5442,"3":48,"5":105,"19":145,"29":21,"32":50,"33":64,"36":115,"38":246,"40":71,"41":46,"42":477,"44":133,"46":7,"49":782,"51":1970,"58":10,"59":186,"61":180,"63":18,"66":46,"67":13,"70":13,"89":13,"92":6,"94":113,"105":113,"108":1506,"109":530}},"geometry":{"type":"Point","coordinates":[-74.13999742261245,40.61209148993774]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085019700","ancestry":{"1":1761,"3":23,"5":56,"26":19,"29":6,"31":5,"33":3,"34":12,"36":75,"42":138,"44":14,"46":17,"48":7,"49":709,"51":721,"53":25,"59":62,"61":34,"62":25,"64":50,"65":11,"67":23,"89":6,"93":11,"94":8,"105":8,"108":253,"109":97}},"geometry":{"type":"Point","coordinates":[-74.13524051105244,40.61698446426255]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085020801","ancestry":{"1":9150,"3":95,"5":207,"6":82,"7":52,"10":12,"12":18,"13":23,"19":34,"31":14,"33":13,"34":27,"35":49,"36":139,"38":14,"40":26,"41":56,"42":414,"44":166,"46":65,"49":1721,"50":37,"51":5360,"59":39,"61":353,"63":17,"64":230,"67":60,"70":34,"89":16,"92":40,"93":12,"94":123,"101":21,"103":102,"108":1697,"109":366}},"geometry":{"type":"Point","coordinates":[-74.20976377304653,40.548706865261614]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085020803","ancestry":{"1":6317,"5":282,"19":15,"22":42,"33":14,"34":15,"35":37,"36":294,"38":180,"41":139,"42":438,"44":103,"46":25,"49":1180,"51":3246,"59":59,"61":381,"64":245,"67":1,"70":75,"90":26,"92":52,"93":20,"94":24,"100":24,"108":858,"109":430}},"geometry":{"type":"Point","coordinates":[-74.21066746167354,40.53282039445468]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085020804","ancestry":{"1":5583,"3":75,"5":119,"6":39,"12":39,"14":39,"19":20,"23":4,"28":13,"36":97,"38":38,"40":14,"42":374,"44":57,"46":29,"48":15,"49":1005,"50":20,"51":2939,"53":6,"59":193,"61":190,"64":151,"67":12,"73":8,"79":8,"89":17,"92":23,"93":30,"108":765,"109":716}},"geometry":{"type":"Point","coordinates":[-74.19953247426758,40.53580373134039]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085022300","ancestry":{"1":2650,"5":199,"6":72,"7":18,"11":8,"14":24,"15":46,"35":6,"36":14,"38":5,"40":22,"42":51,"45":14,"49":8,"50":79,"51":199,"56":5,"59":5,"61":58,"73":148,"87":132,"88":16,"94":140,"99":6,"101":21,"102":58,"105":55,"108":1591,"109":241}},"geometry":{"type":"Point","coordinates":[-74.15322383262465,40.63705322909485]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085023100","ancestry":{"1":4183,"5":281,"6":93,"7":84,"9":9,"36":58,"38":7,"40":11,"41":46,"42":99,"49":314,"51":449,"61":90,"67":27,"68":8,"73":348,"79":248,"85":9,"87":10,"88":81,"94":230,"96":8,"97":29,"101":20,"102":128,"105":45,"108":2395,"109":200}},"geometry":{"type":"Point","coordinates":[-74.15632061606648,40.63012450092441]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085023900","ancestry":{"1":3386,"5":137,"6":31,"13":31,"36":12,"42":62,"46":11,"49":125,"51":194,"61":18,"64":164,"67":4,"73":70,"87":70,"94":5,"100":5,"108":2526,"109":333}},"geometry":{"type":"Point","coordinates":[-74.14930064549529,40.6295171807638]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015002","ancestry":{"1":5461,"5":526,"6":25,"8":11,"12":14,"16":10,"19":111,"22":91,"23":120,"26":17,"31":59,"32":51,"34":41,"35":222,"36":575,"38":306,"40":21,"42":459,"44":25,"46":83,"49":500,"51":266,"52":27,"58":16,"61":373,"62":24,"63":37,"64":508,"67":135,"70":133,"89":12,"90":11,"91":30,"92":101,"93":10,"108":942,"109":856}},"geometry":{"type":"Point","coordinates":[-73.95764778980151,40.782449902807755]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015200","ancestry":{"1":7162,"5":549,"6":24,"15":24,"16":33,"19":67,"22":8,"23":19,"26":61,"29":20,"31":75,"33":15,"34":116,"35":120,"36":248,"38":22,"40":153,"42":417,"44":38,"46":187,"49":550,"50":63,"51":619,"53":13,"59":15,"61":479,"63":11,"64":509,"66":52,"67":87,"73":98,"79":32,"80":66,"89":50,"90":44,"92":17,"93":10,"94":500,"96":12,"101":247,"102":90,"105":151,"108":2941,"109":534}},"geometry":{"type":"Point","coordinates":[-73.94451975923518,40.77975886590065]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36061015200","ancestry":{"1":7162,"5":549,"6":24,"15":24,"16":33,"19":67,"22":8,"23":19,"26":61,"29":20,"31":75,"33":15,"34":116,"35":120,"36":248,"38":22,"40":153,"42":417,"44":38,"46":187,"49":550,"50":63,"51":619,"53":13,"59":15,"61":479,"63":11,"64":509,"66":52,"67":87,"73":98,"79":32,"80":66,"89":50,"90":44,"92":17,"93":10,"94":500,"96":12,"101":247,"102":90,"105":151,"108":2941,"109":534}},"geometry":{"type":"Point","coordinates":[-73.93661074828464,40.775859558187584]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019100","ancestry":{"1":9474,"5":424,"6":98,"10":98,"19":148,"21":29,"23":384,"26":13,"29":22,"31":98,"33":196,"34":192,"35":286,"36":765,"38":281,"39":15,"40":172,"41":31,"42":1090,"44":40,"46":68,"49":616,"50":74,"51":318,"53":81,"58":31,"59":78,"61":513,"63":161,"64":1198,"65":42,"67":463,"68":26,"73":239,"79":31,"87":208,"89":66,"92":76,"93":178,"94":190,"101":70,"102":29,"103":49,"105":42,"108":3121,"109":773}},"geometry":{"type":"Point","coordinates":[-73.97018193220197,40.800634166284446]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022301","ancestry":{"1":7954,"5":452,"6":21,"10":11,"15":10,"16":10,"22":42,"23":18,"26":35,"35":25,"36":111,"38":91,"42":211,"44":10,"45":29,"49":129,"50":10,"51":72,"52":27,"55":36,"61":69,"64":54,"67":9,"73":111,"77":46,"83":30,"88":35,"89":43,"93":17,"94":152,"97":152,"108":6641,"109":333}},"geometry":{"type":"Point","coordinates":[-73.95500356968996,40.82114449622533]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061031900","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.01557691863982,40.70291015851557]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085011202","ancestry":{"1":5924,"3":68,"5":129,"23":9,"32":12,"33":39,"34":10,"36":58,"40":115,"42":411,"44":18,"46":32,"49":1337,"51":1176,"53":45,"59":150,"61":355,"62":20,"64":454,"65":9,"66":42,"67":16,"70":57,"89":42,"92":377,"94":19,"99":9,"105":10,"108":1834,"109":593}},"geometry":{"type":"Point","coordinates":[-74.09735073582651,40.57123995295791]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085011401","ancestry":{"1":3004,"3":11,"5":64,"6":103,"10":96,"13":7,"21":7,"29":50,"33":8,"35":40,"36":30,"42":120,"46":7,"49":480,"51":701,"61":63,"64":87,"69":9,"70":9,"73":59,"78":59,"90":6,"92":9,"93":22,"94":138,"102":38,"105":100,"107":13,"108":1160,"109":288}},"geometry":{"type":"Point","coordinates":[-74.09909820432846,40.58574394403822]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085011402","ancestry":{"1":3347,"3":111,"5":138,"16":14,"18":10,"31":88,"33":30,"34":8,"36":19,"40":78,"42":228,"46":31,"49":478,"51":986,"59":61,"61":238,"64":105,"67":12,"89":32,"91":22,"92":72,"93":9,"94":50,"96":10,"101":40,"108":691,"109":692}},"geometry":{"type":"Point","coordinates":[-74.10495241675359,40.58119247501318]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085012100","ancestry":{"1":3270,"3":38,"5":253,"6":125,"10":28,"14":97,"19":11,"21":7,"29":18,"33":11,"34":10,"36":187,"38":34,"42":342,"49":1111,"51":1157,"53":11,"59":49,"61":111,"62":12,"64":17,"70":9,"89":24,"92":31,"108":661,"109":198}},"geometry":{"type":"Point","coordinates":[-74.10964389522948,40.62587901718756]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085012500","ancestry":{"1":2818,"3":30,"5":185,"6":6,"11":6,"29":25,"31":18,"34":14,"36":77,"38":39,"40":28,"41":4,"42":129,"44":42,"46":7,"49":265,"50":9,"51":389,"59":22,"61":95,"63":5,"66":26,"67":15,"73":57,"79":57,"89":10,"94":254,"101":14,"102":206,"103":8,"105":26,"108":1416,"109":224}},"geometry":{"type":"Point","coordinates":[-74.11885924193241,40.6287073600579]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085022600","ancestry":{"1":9089,"5":293,"6":100,"7":100,"19":24,"29":55,"34":40,"36":13,"38":87,"40":17,"42":280,"44":18,"45":15,"49":1049,"50":8,"51":3809,"59":56,"61":711,"63":15,"64":651,"67":18,"70":14,"73":77,"82":46,"87":31,"89":20,"92":227,"94":96,"101":28,"102":11,"104":8,"105":49,"108":2752,"109":552}},"geometry":{"type":"Point","coordinates":[-74.22964643057824,40.53687424014587]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085012804","ancestry":{"1":3873,"3":13,"5":111,"6":48,"7":48,"20":71,"34":71,"36":10,"38":11,"40":27,"42":306,"44":36,"46":28,"49":484,"50":17,"51":1169,"53":71,"59":58,"61":358,"63":9,"64":327,"70":100,"89":16,"91":57,"92":235,"108":909,"109":333}},"geometry":{"type":"Point","coordinates":[-74.10447347708521,40.564623151858136]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085013203","ancestry":{"1":5556,"3":187,"5":389,"19":1,"26":16,"35":17,"36":197,"38":53,"40":56,"41":28,"42":332,"44":80,"46":13,"49":1317,"51":2975,"53":63,"59":18,"61":174,"64":219,"73":75,"87":75,"89":15,"92":18,"108":1002,"109":367}},"geometry":{"type":"Point","coordinates":[-74.14272442302396,40.54970397778714]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085013204","ancestry":{"1":4814,"3":181,"5":149,"6":26,"13":26,"19":8,"22":8,"31":11,"36":155,"38":135,"39":7,"40":14,"41":14,"42":137,"44":48,"46":19,"49":945,"51":2577,"55":21,"59":9,"61":185,"64":114,"67":50,"70":52,"73":9,"76":9,"89":13,"91":41,"92":50,"94":12,"101":12,"107":8,"108":760,"109":401}},"geometry":{"type":"Point","coordinates":[-74.13024160144535,40.559420918923756]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085013302","ancestry":{"1":3672,"5":221,"36":176,"40":5,"42":132,"45":29,"49":110,"51":42,"59":2,"61":14,"62":7,"66":4,"67":5,"70":5,"73":461,"78":136,"79":66,"87":282,"89":71,"92":9,"93":3,"94":186,"102":21,"103":165,"108":2358,"109":279}},"geometry":{"type":"Point","coordinates":[-74.12350492386152,40.635882151739736]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085013400","ancestry":{"1":3726,"3":57,"5":114,"6":9,"14":9,"19":12,"29":107,"32":5,"36":64,"38":23,"40":13,"41":6,"42":181,"44":24,"49":536,"51":1832,"53":12,"58":33,"59":40,"61":228,"64":25,"67":13,"91":30,"92":23,"93":8,"107":36,"108":855,"109":361}},"geometry":{"type":"Point","coordinates":[-74.11744663623122,40.569883910488606]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085013800","ancestry":{"1":6239,"2":75,"5":110,"6":115,"10":27,"13":72,"15":16,"19":28,"26":4,"31":13,"33":15,"36":251,"38":38,"40":28,"41":12,"42":504,"44":56,"46":55,"49":1758,"51":3506,"53":14,"55":60,"59":239,"61":225,"63":52,"64":15,"67":16,"71":14,"89":30,"92":28,"108":563,"109":413}},"geometry":{"type":"Point","coordinates":[-74.13188161986916,40.57048887164191]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017010","ancestry":{"1":8923,"5":319,"6":577,"7":391,"14":208,"29":57,"33":14,"35":37,"36":96,"38":161,"42":513,"44":281,"46":138,"49":1478,"50":34,"51":4021,"52":33,"53":73,"55":12,"59":25,"61":666,"62":15,"63":18,"64":413,"66":24,"67":99,"90":39,"91":10,"92":91,"93":36,"108":1743,"109":603}},"geometry":{"type":"Point","coordinates":[-74.19604668597714,40.551099237081644]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085007700","ancestry":{"1":1257,"5":157,"6":1,"14":1,"36":5,"40":10,"42":26,"44":4,"49":61,"51":77,"61":8,"64":5,"67":19,"73":75,"79":70,"87":5,"94":76,"99":13,"100":30,"102":13,"103":13,"105":13,"108":757,"109":50}},"geometry":{"type":"Point","coordinates":[-74.09026762105314,40.6378663067503]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085002700","ancestry":{"1":2362,"3":32,"5":111,"19":4,"32":6,"34":11,"35":2,"36":32,"40":10,"41":4,"42":66,"46":18,"49":139,"51":122,"59":2,"61":71,"63":6,"64":25,"66":19,"67":57,"69":6,"73":3,"87":3,"89":23,"90":6,"93":5,"94":86,"102":26,"103":6,"105":57,"108":1510,"109":190}},"geometry":{"type":"Point","coordinates":[-74.07642744518206,40.623587164177]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085003600","ancestry":{"1":2602,"3":145,"5":27,"6":12,"7":6,"9":6,"12":6,"19":12,"22":88,"26":19,"33":11,"34":3,"36":28,"40":15,"41":3,"42":86,"44":27,"49":250,"51":392,"53":5,"61":236,"63":5,"64":19,"67":3,"73":17,"87":17,"92":39,"108":1107,"109":442}},"geometry":{"type":"Point","coordinates":[-74.07589989795784,40.61106874539557]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085018701","ancestry":{"1":1719,"5":78,"6":146,"7":106,"10":3,"12":37,"13":3,"16":4,"23":17,"26":4,"28":10,"31":12,"36":28,"40":6,"42":177,"44":5,"46":20,"49":420,"50":2,"51":417,"53":10,"54":12,"59":104,"61":75,"62":6,"64":47,"67":11,"73":12,"78":12,"89":26,"94":45,"101":26,"106":19,"107":55,"108":270,"109":174}},"geometry":{"type":"Point","coordinates":[-74.12725931237135,40.610746183471086]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085015400","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.12828639466764,40.54581196928803]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085020700","ancestry":{"1":5503,"5":135,"6":134,"15":134,"40":5,"41":12,"42":21,"45":26,"49":173,"51":239,"59":5,"61":24,"64":18,"66":19,"73":390,"76":11,"78":129,"79":131,"87":119,"94":275,"97":34,"101":105,"102":42,"103":94,"105":9,"108":4044,"109":278}},"geometry":{"type":"Point","coordinates":[-74.1348456515546,40.63785725450283]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085000900","ancestry":{"1":1962,"3":8,"5":50,"35":11,"36":42,"40":11,"42":70,"44":18,"45":16,"46":4,"49":55,"51":120,"59":4,"61":49,"64":5,"66":9,"67":30,"69":7,"73":95,"78":28,"79":13,"87":54,"89":58,"94":127,"102":55,"103":6,"105":66,"108":1014,"109":362}},"geometry":{"type":"Point","coordinates":[-74.08285634550263,40.642206500890765]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085012200","ancestry":{"1":3591,"5":173,"26":21,"29":26,"31":32,"33":10,"36":72,"38":42,"39":20,"40":70,"41":19,"42":119,"44":162,"46":8,"49":802,"51":1420,"53":42,"55":48,"58":11,"59":47,"61":125,"62":9,"64":19,"66":7,"70":15,"89":12,"92":83,"107":10,"108":473,"109":471}},"geometry":{"type":"Point","coordinates":[-74.11145815562126,40.57597181626398]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085011201","ancestry":{"1":5810,"5":70,"6":493,"7":49,"10":23,"12":202,"14":254,"19":73,"23":14,"26":10,"31":34,"34":31,"36":62,"40":116,"42":37,"44":13,"49":512,"50":13,"51":1452,"53":122,"59":94,"61":290,"64":852,"67":11,"89":11,"90":14,"92":209,"94":33,"103":33,"108":2064,"109":323}},"geometry":{"type":"Point","coordinates":[-74.08816862573745,40.578901752022084]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085030302","ancestry":{"1":6205,"5":473,"6":327,"7":107,"9":171,"12":25,"14":32,"20":8,"26":9,"32":9,"36":36,"40":37,"42":134,"44":8,"45":107,"49":265,"51":617,"59":34,"61":124,"64":46,"65":15,"67":7,"69":7,"70":10,"73":321,"79":119,"80":89,"87":113,"92":9,"94":238,"96":35,"99":16,"101":30,"102":80,"103":44,"105":33,"108":3828,"109":206}},"geometry":{"type":"Point","coordinates":[-74.15874355982446,40.62352871378659]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085024700","ancestry":{"1":2767,"5":264,"6":97,"7":22,"10":6,"14":69,"19":9,"26":5,"27":12,"36":30,"38":26,"40":23,"41":5,"42":94,"44":14,"45":21,"46":9,"49":261,"51":381,"59":10,"61":65,"63":17,"64":4,"66":9,"73":60,"79":50,"87":10,"88":7,"90":1,"92":16,"94":179,"99":42,"101":94,"102":54,"103":15,"105":5,"108":1444,"109":206}},"geometry":{"type":"Point","coordinates":[-74.14176194273475,40.6275152037417]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019900","ancestry":{"1":9879,"3":15,"5":420,"6":201,"7":5,"9":17,"10":104,"14":69,"15":6,"16":76,"18":21,"19":38,"22":49,"23":77,"26":15,"29":38,"31":22,"33":2,"34":29,"35":358,"36":812,"38":44,"40":291,"41":43,"42":1066,"44":150,"46":89,"48":33,"49":577,"50":47,"51":405,"53":35,"55":231,"58":60,"59":79,"61":440,"62":5,"63":48,"64":393,"65":15,"66":91,"67":219,"68":15,"89":114,"90":29,"91":11,"92":33,"93":20,"94":74,"96":23,"101":20,"102":16,"105":15,"108":3498,"109":1930}},"geometry":{"type":"Point","coordinates":[-73.9665334035564,40.805712652665314]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085006700","ancestry":{"1":2580,"3":31,"5":208,"19":5,"22":12,"29":6,"33":24,"34":17,"36":35,"38":101,"40":61,"41":6,"42":164,"49":793,"51":749,"53":4,"59":28,"61":91,"64":33,"65":15,"67":16,"73":11,"79":11,"89":64,"94":11,"99":11,"108":624,"109":162}},"geometry":{"type":"Point","coordinates":[-74.10110332876924,40.635191511706836]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085014608","ancestry":{"1":3885,"3":39,"5":49,"6":103,"7":93,"13":10,"35":136,"36":30,"40":68,"41":14,"42":314,"46":13,"49":578,"51":1946,"59":92,"61":116,"63":8,"64":34,"67":73,"91":10,"92":16,"107":13,"108":875,"109":286}},"geometry":{"type":"Point","coordinates":[-74.15651809155774,40.55846559643758]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017011","ancestry":{"1":4654,"5":172,"6":300,"7":260,"10":21,"12":19,"22":30,"23":23,"26":21,"33":6,"34":9,"35":15,"36":42,"40":41,"42":254,"44":18,"46":46,"49":587,"51":2712,"55":39,"59":25,"61":298,"62":14,"64":110,"66":13,"67":8,"89":49,"90":12,"94":2,"102":1,"105":1,"108":484,"109":357}},"geometry":{"type":"Point","coordinates":[-74.1702297021659,40.54563763258255]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009700","ancestry":{"1":5148,"5":279,"6":155,"7":59,"11":96,"16":14,"19":62,"22":84,"23":15,"26":18,"29":17,"31":20,"33":13,"34":82,"35":66,"36":253,"39":3,"40":146,"42":290,"44":56,"46":107,"49":225,"51":450,"52":18,"53":22,"59":53,"61":255,"63":26,"64":398,"66":20,"67":129,"89":23,"90":2,"92":59,"93":14,"94":161,"101":11,"102":34,"103":116,"105":73,"107":43,"108":2530,"109":351}},"geometry":{"type":"Point","coordinates":[-73.99903403789038,40.74963967221786]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001502","ancestry":{"1":7315,"3":36,"5":275,"6":31,"14":1,"15":30,"16":86,"19":24,"22":13,"23":78,"24":87,"26":38,"29":32,"31":71,"33":59,"34":64,"35":142,"36":316,"38":110,"40":185,"42":893,"44":81,"46":45,"48":10,"49":583,"50":92,"51":940,"52":46,"53":17,"59":12,"61":350,"63":30,"64":428,"65":13,"67":48,"70":36,"73":188,"75":40,"79":10,"83":88,"87":40,"88":10,"89":25,"91":16,"92":55,"94":47,"101":9,"102":19,"103":19,"108":2756,"109":766}},"geometry":{"type":"Point","coordinates":[-74.00494625727941,40.7070103545182]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013900","ancestry":{"1":7797,"5":381,"22":88,"23":210,"31":59,"34":36,"35":114,"36":1276,"38":58,"40":336,"41":16,"42":634,"44":116,"45":13,"48":85,"49":699,"51":670,"52":44,"53":28,"56":16,"59":33,"61":253,"63":14,"64":299,"65":54,"66":60,"67":130,"68":69,"69":14,"70":16,"73":19,"79":19,"87":19,"89":152,"90":62,"107":14,"108":2915,"109":903}},"geometry":{"type":"Point","coordinates":[-73.98617109700878,40.767292242289564]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008300","ancestry":{"1":4014,"5":121,"6":35,"10":7,"14":28,"15":8,"16":27,"18":17,"19":19,"23":98,"29":17,"31":15,"35":55,"36":181,"38":31,"40":56,"41":17,"42":340,"44":18,"46":15,"48":19,"49":468,"51":244,"58":12,"61":204,"64":315,"66":38,"69":20,"70":35,"73":19,"83":19,"89":34,"90":52,"91":87,"92":40,"93":17,"108":1922,"109":199}},"geometry":{"type":"Point","coordinates":[-74.00445305722072,40.74219829252759]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024700","ancestry":{"1":7756,"3":24,"5":257,"6":28,"10":28,"35":29,"36":139,"40":34,"42":197,"44":53,"46":53,"49":101,"50":14,"51":171,"52":54,"53":13,"61":108,"64":46,"66":18,"73":210,"79":60,"87":150,"92":98,"93":14,"94":8,"102":8,"107":16,"108":6319,"109":465}},"geometry":{"type":"Point","coordinates":[-73.9462423843584,40.83834517205502]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003602","ancestry":{"1":2998,"5":46,"6":35,"7":20,"10":15,"19":27,"23":28,"26":32,"28":16,"29":5,"31":9,"33":30,"34":29,"35":46,"36":223,"37":15,"38":24,"39":22,"40":80,"41":17,"42":212,"44":16,"46":74,"49":376,"51":225,"58":6,"59":33,"61":144,"62":8,"63":1,"64":138,"66":25,"67":45,"70":4,"73":49,"87":49,"89":58,"90":12,"91":5,"92":35,"94":3,"102":3,"107":17,"108":1328,"109":409}},"geometry":{"type":"Point","coordinates":[-73.99020604510743,40.72456307037394]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005502","ancestry":{"1":2436,"5":196,"6":42,"10":29,"11":9,"13":4,"16":4,"19":41,"21":10,"23":13,"24":24,"26":22,"33":34,"34":98,"35":32,"36":255,"38":50,"40":66,"41":30,"42":204,"44":26,"46":22,"48":11,"49":335,"50":4,"51":206,"53":12,"59":22,"61":192,"63":10,"64":191,"66":14,"67":82,"70":11,"73":32,"88":32,"89":33,"91":12,"92":11,"93":30,"94":2,"105":2,"108":723,"109":234}},"geometry":{"type":"Point","coordinates":[-73.99387198492447,40.72622293694985]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019800","ancestry":{"1":2465,"5":314,"19":6,"22":36,"34":13,"35":7,"36":38,"38":6,"40":20,"42":50,"49":9,"50":7,"51":50,"52":7,"61":66,"62":15,"64":137,"73":197,"87":188,"88":9,"89":6,"90":13,"92":7,"94":112,"101":12,"102":82,"105":18,"108":1735,"109":116}},"geometry":{"type":"Point","coordinates":[-73.94236268749977,40.8043024746421]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018700","ancestry":{"1":8908,"5":315,"6":74,"10":26,"11":48,"16":48,"19":75,"21":80,"22":163,"23":88,"26":27,"31":33,"32":10,"33":61,"34":80,"35":321,"36":497,"37":22,"38":71,"39":24,"40":78,"42":898,"44":17,"45":1,"46":100,"48":60,"49":1114,"50":26,"51":521,"53":84,"55":6,"58":46,"59":34,"61":635,"62":12,"63":106,"64":699,"66":44,"67":69,"70":76,"73":34,"83":24,"87":10,"89":70,"90":78,"91":23,"92":80,"93":38,"94":40,"101":17,"102":9,"103":14,"108":3283,"109":1103}},"geometry":{"type":"Point","coordinates":[-73.97200758475311,40.79809126142702]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016500","ancestry":{"1":7022,"5":259,"6":47,"7":18,"10":29,"18":18,"19":75,"21":19,"23":52,"24":48,"26":212,"29":18,"31":54,"33":16,"34":44,"35":245,"36":591,"38":150,"40":232,"42":1038,"44":34,"46":147,"49":726,"51":706,"53":72,"58":268,"59":7,"61":303,"62":23,"63":67,"64":558,"65":35,"66":51,"67":146,"89":26,"90":89,"91":49,"92":120,"94":51,"101":16,"102":35,"108":1861,"109":936}},"geometry":{"type":"Point","coordinates":[-73.97499868827268,40.78235770320653]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012500","ancestry":{"1":2465,"5":27,"6":51,"10":51,"18":9,"19":18,"22":7,"23":25,"26":7,"29":27,"31":8,"34":4,"35":30,"36":105,"38":18,"40":89,"42":212,"44":22,"46":29,"49":120,"50":84,"51":160,"53":9,"54":10,"56":70,"59":25,"61":116,"63":26,"64":192,"66":17,"67":19,"73":38,"83":17,"87":21,"89":18,"92":34,"93":26,"94":35,"102":12,"106":23,"108":1113,"109":137}},"geometry":{"type":"Point","coordinates":[-73.98417527145344,40.75984071531638]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023300","ancestry":{"1":6734,"5":304,"6":104,"7":32,"15":72,"18":50,"21":42,"23":14,"26":3,"34":20,"36":68,"38":39,"40":74,"41":43,"42":139,"44":14,"46":15,"49":267,"51":158,"60":30,"61":85,"62":16,"63":15,"64":35,"70":14,"73":277,"75":43,"79":40,"86":33,"87":147,"88":14,"89":14,"90":32,"94":450,"96":28,"99":14,"101":120,"102":288,"108":4507,"109":555}},"geometry":{"type":"Point","coordinates":[-73.94996837389571,40.828496380238064]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020800","ancestry":{"1":5443,"2":58,"3":42,"5":634,"6":67,"7":31,"14":19,"15":17,"19":15,"26":22,"31":11,"36":85,"38":147,"40":76,"42":94,"46":15,"49":119,"51":138,"59":82,"61":16,"66":16,"67":55,"73":711,"79":22,"87":353,"88":336,"89":46,"93":97,"94":249,"96":56,"99":13,"101":47,"102":33,"103":87,"105":13,"108":3412,"109":392}},"geometry":{"type":"Point","coordinates":[-73.94200799383239,40.80964851169422]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085013201","ancestry":{"1":1510,"3":21,"5":53,"6":11,"10":11,"33":9,"36":11,"40":13,"42":48,"44":6,"49":410,"51":760,"53":20,"55":6,"59":18,"61":63,"62":8,"64":22,"67":9,"89":5,"92":27,"93":5,"108":198,"109":105}},"geometry":{"type":"Point","coordinates":[-74.12257222375864,40.56477792655711]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085027704","ancestry":{"1":4227,"3":44,"5":166,"6":329,"7":177,"10":24,"12":30,"14":98,"19":9,"31":12,"36":35,"40":20,"42":115,"44":33,"49":650,"50":45,"51":1655,"55":44,"59":29,"61":109,"63":21,"64":174,"67":10,"108":947,"109":527}},"geometry":{"type":"Point","coordinates":[-74.15151029634043,40.58542212446228]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085027302","ancestry":{"1":3586,"3":31,"5":226,"6":71,"13":63,"15":8,"19":41,"21":39,"22":27,"31":21,"32":8,"34":10,"35":42,"38":61,"40":5,"42":125,"45":18,"46":184,"49":65,"50":113,"51":490,"53":31,"59":15,"61":295,"63":51,"64":74,"70":21,"92":21,"94":81,"96":22,"102":59,"108":1417,"109":415}},"geometry":{"type":"Point","coordinates":[-74.1387176583044,40.595528207518264]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085029104","ancestry":{"1":6999,"3":24,"5":156,"6":269,"7":152,"10":52,"13":30,"15":55,"31":10,"35":60,"36":118,"40":10,"42":379,"44":167,"46":24,"49":680,"51":2538,"59":16,"61":666,"62":15,"63":26,"64":162,"66":16,"67":28,"73":316,"79":316,"89":17,"92":56,"94":56,"103":13,"105":43,"107":122,"108":1726,"109":736}},"geometry":{"type":"Point","coordinates":[-74.16350316225208,40.61372342646987]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017009","ancestry":{"1":4165,"5":191,"6":81,"7":33,"10":40,"15":8,"23":13,"31":14,"34":14,"35":34,"36":95,"38":17,"41":28,"42":238,"44":63,"46":7,"47":15,"49":500,"51":2441,"53":8,"56":13,"59":333,"61":132,"63":25,"64":28,"67":14,"70":6,"89":120,"92":73,"108":451,"109":229}},"geometry":{"type":"Point","coordinates":[-74.18982813743673,40.54320286712989]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085018902","ancestry":{"1":4959,"3":37,"5":345,"6":59,"7":29,"10":21,"11":9,"19":22,"21":8,"26":6,"31":4,"35":33,"36":34,"38":83,"39":18,"40":1,"42":163,"44":93,"46":33,"49":216,"50":55,"51":987,"53":8,"56":12,"59":53,"61":213,"63":105,"64":165,"67":11,"69":18,"70":32,"73":23,"79":23,"92":104,"94":23,"96":14,"105":9,"108":2278,"109":436}},"geometry":{"type":"Point","coordinates":[-74.13806575414822,40.6052399204777]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085021300","ancestry":{"1":5163,"5":216,"18":7,"19":18,"23":9,"26":8,"33":6,"34":6,"36":77,"40":77,"42":207,"44":84,"49":942,"51":803,"59":84,"61":131,"63":10,"64":9,"66":24,"67":25,"73":223,"78":138,"79":74,"87":11,"89":31,"92":61,"94":179,"102":71,"103":16,"105":77,"106":15,"107":11,"108":2919,"109":322}},"geometry":{"type":"Point","coordinates":[-74.13890302737794,40.632615562942405]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085010500","ancestry":{"1":4986,"5":173,"6":7,"7":7,"16":6,"18":45,"23":12,"29":6,"32":25,"34":42,"36":134,"40":13,"42":320,"44":124,"46":23,"49":527,"51":850,"52":37,"59":54,"61":83,"62":21,"64":6,"66":5,"69":75,"70":16,"73":158,"76":22,"78":49,"79":42,"87":45,"89":20,"90":6,"92":33,"94":31,"103":6,"105":25,"108":2778,"109":321}},"geometry":{"type":"Point","coordinates":[-74.1118713618322,40.63379905781375]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085000700","ancestry":{"1":6060,"5":564,"6":38,"7":11,"14":27,"22":24,"33":50,"36":32,"40":136,"42":83,"44":2,"49":203,"51":156,"52":19,"59":22,"61":51,"64":19,"70":20,"73":325,"79":2,"80":21,"87":302,"90":18,"92":21,"94":409,"101":2,"102":39,"103":33,"105":335,"108":4144,"109":290}},"geometry":{"type":"Point","coordinates":[-74.0823832493571,40.64608695328872]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085002001","ancestry":{"1":2504,"3":384,"5":51,"6":165,"7":41,"9":8,"10":23,"12":31,"13":7,"14":9,"15":54,"19":7,"23":8,"33":7,"36":30,"39":8,"42":84,"44":35,"49":272,"51":630,"55":59,"59":31,"61":101,"64":36,"67":8,"73":7,"78":7,"92":10,"94":46,"102":46,"108":655,"109":248}},"geometry":{"type":"Point","coordinates":[-74.07097409261362,40.60688608460538]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085007000","ancestry":{"1":9034,"3":366,"5":188,"6":285,"10":17,"13":73,"14":193,"15":2,"19":15,"20":8,"26":22,"33":16,"34":15,"36":148,"38":39,"39":21,"40":73,"42":213,"44":17,"49":434,"50":21,"51":2780,"59":229,"61":609,"63":19,"64":869,"92":492,"94":107,"101":14,"102":41,"103":2,"105":50,"108":2458,"109":812}},"geometry":{"type":"Point","coordinates":[-74.07807135019335,40.58796422664391]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011600","ancestry":{"1":3483,"3":34,"5":385,"6":37,"10":18,"12":15,"15":4,"22":73,"23":15,"26":76,"29":57,"30":21,"32":7,"34":28,"35":75,"36":141,"38":80,"40":220,"41":17,"42":176,"44":34,"48":54,"49":453,"50":71,"51":395,"58":41,"59":3,"61":108,"62":19,"63":19,"64":159,"65":13,"66":29,"67":50,"70":1,"71":11,"73":117,"79":54,"87":63,"89":12,"90":30,"91":2,"92":42,"93":20,"94":227,"97":31,"99":133,"101":22,"105":41,"108":881,"109":193}},"geometry":{"type":"Point","coordinates":[-73.95614462989703,40.7633917018341]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016002","ancestry":{"1":3276,"5":606,"6":18,"10":9,"15":9,"16":10,"19":17,"22":10,"23":62,"31":21,"32":10,"34":24,"35":9,"36":247,"38":28,"40":40,"41":20,"42":119,"44":22,"46":38,"48":35,"49":253,"51":125,"52":22,"56":15,"59":8,"61":80,"62":7,"63":14,"64":82,"65":29,"66":43,"67":85,"89":19,"91":62,"92":9,"93":35,"94":28,"99":27,"104":1,"108":1155,"109":377}},"geometry":{"type":"Point","coordinates":[-73.95368527241787,40.78787875555441]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061030700","ancestry":{"1":3584,"5":60,"19":2,"21":10,"23":14,"24":44,"26":7,"31":7,"34":29,"35":30,"36":324,"37":10,"38":102,"40":32,"41":62,"42":486,"44":23,"45":3,"46":16,"48":69,"49":382,"51":302,"53":9,"55":11,"56":48,"58":16,"59":63,"60":10,"61":209,"63":9,"64":144,"65":16,"66":76,"67":52,"73":29,"76":9,"87":20,"89":21,"90":21,"92":36,"93":25,"94":91,"101":3,"102":9,"104":79,"108":1656,"109":245}},"geometry":{"type":"Point","coordinates":[-73.91667496031722,40.87127038337863]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004800","ancestry":{"1":7551,"5":215,"6":19,"10":19,"16":37,"19":101,"21":21,"22":43,"23":71,"24":11,"26":24,"27":1,"31":45,"33":55,"34":36,"35":88,"36":446,"38":51,"40":140,"41":28,"42":803,"44":306,"45":62,"46":58,"48":67,"49":1006,"50":35,"51":668,"53":45,"56":18,"58":65,"59":83,"61":436,"62":49,"64":363,"66":145,"67":149,"69":25,"70":13,"73":319,"74":52,"75":167,"79":40,"88":60,"89":81,"90":21,"92":51,"93":164,"94":33,"96":23,"101":2,"102":8,"108":2622,"109":813}},"geometry":{"type":"Point","coordinates":[-73.98372974471299,40.7338561179894]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015300","ancestry":{"1":9025,"5":759,"6":37,"10":37,"16":24,"18":152,"19":146,"21":23,"22":75,"23":83,"24":33,"26":35,"29":31,"31":30,"32":89,"33":22,"35":467,"36":752,"38":132,"40":311,"41":65,"42":699,"44":95,"46":97,"49":1228,"50":76,"51":594,"52":23,"53":152,"57":41,"59":11,"61":344,"62":43,"63":190,"64":756,"65":34,"66":51,"67":134,"73":102,"83":38,"88":64,"89":36,"90":20,"92":157,"93":40,"94":64,"101":23,"102":1,"103":40,"107":28,"108":2620,"109":961}},"geometry":{"type":"Point","coordinates":[-73.98066580990013,40.77485780683071]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023200","ancestry":{"1":8666,"5":221,"33":5,"36":55,"42":31,"45":125,"46":20,"49":46,"51":19,"62":8,"64":5,"73":712,"75":11,"78":61,"79":36,"80":59,"87":264,"88":281,"94":473,"99":121,"102":228,"103":193,"105":24,"108":6144,"109":1119}},"geometry":{"type":"Point","coordinates":[-73.93953150690604,40.82101324176878]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009100","ancestry":{"1":6559,"5":114,"6":107,"10":107,"16":22,"19":56,"26":40,"31":50,"34":132,"35":130,"36":450,"37":12,"38":123,"40":262,"41":79,"42":651,"44":65,"46":60,"48":24,"49":650,"51":666,"53":44,"59":29,"61":547,"62":73,"63":65,"64":678,"66":91,"67":104,"70":100,"89":64,"91":63,"92":57,"93":62,"94":72,"96":19,"101":11,"102":42,"108":2414,"109":673}},"geometry":{"type":"Point","coordinates":[-73.99519589904138,40.7447178313265]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006600","ancestry":{"1":11490,"5":141,"6":188,"7":33,"10":38,"11":87,"12":30,"13":11,"18":4,"19":97,"20":45,"23":98,"29":10,"32":105,"33":51,"34":37,"35":188,"36":278,"38":138,"40":156,"41":13,"42":915,"46":111,"49":936,"50":42,"51":1555,"53":56,"55":97,"56":180,"58":14,"59":57,"61":541,"63":70,"64":604,"66":81,"67":47,"70":80,"73":80,"87":80,"89":149,"90":43,"91":45,"92":15,"93":39,"108":5908,"109":770}},"geometry":{"type":"Point","coordinates":[-73.9792317049135,40.740070530338244]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001001","ancestry":{"1":1681,"5":15,"6":33,"7":33,"19":15,"23":5,"33":5,"35":53,"36":26,"38":27,"39":5,"42":92,"44":6,"46":11,"49":172,"51":149,"53":32,"59":7,"61":87,"63":10,"64":51,"70":6,"89":15,"91":4,"92":49,"94":5,"101":5,"108":1052,"109":99}},"geometry":{"type":"Point","coordinates":[-73.97756852896198,40.71436557226887]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061001001","ancestry":{"1":1681,"5":15,"6":33,"7":33,"19":15,"23":5,"33":5,"35":53,"36":26,"38":27,"39":5,"42":92,"44":6,"46":11,"49":172,"51":149,"53":32,"59":7,"61":87,"63":10,"64":51,"70":6,"89":15,"91":4,"92":49,"94":5,"101":5,"108":1052,"109":99}},"geometry":{"type":"Point","coordinates":[-73.96967509216928,40.71054379636277]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007700","ancestry":{"1":5515,"3":10,"5":144,"6":41,"8":11,"11":15,"13":15,"18":18,"19":210,"20":84,"21":12,"22":16,"23":100,"26":18,"29":90,"31":12,"33":26,"34":166,"35":228,"36":678,"38":30,"40":273,"41":46,"42":770,"44":124,"46":63,"49":880,"50":6,"51":768,"53":36,"54":17,"59":49,"61":292,"62":29,"63":38,"64":565,"65":44,"66":66,"67":209,"68":18,"70":18,"73":68,"79":68,"89":62,"92":77,"93":92,"94":1,"101":1,"108":1127,"109":170}},"geometry":{"type":"Point","coordinates":[-74.00329655291564,40.73808507259377]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011201","ancestry":{"1":843,"5":47,"6":39,"10":35,"13":4,"18":10,"19":3,"24":2,"26":15,"31":5,"33":13,"34":21,"35":40,"36":53,"37":5,"38":42,"40":32,"42":73,"44":23,"46":4,"49":85,"50":4,"51":73,"52":5,"61":50,"63":13,"64":75,"67":17,"89":8,"91":15,"92":8,"94":20,"101":11,"102":11,"105":9,"108":198,"109":115}},"geometry":{"type":"Point","coordinates":[-73.97534554380422,40.76397807820423]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017401","ancestry":{"1":4330,"5":175,"29":2,"33":9,"36":53,"38":63,"42":28,"49":84,"73":92,"87":92,"94":53,"101":11,"102":42,"107":2,"108":3380,"109":473}},"geometry":{"type":"Point","coordinates":[-73.94857600924156,40.79488753423762]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015602","ancestry":{"1":2286,"5":266,"6":22,"15":22,"22":6,"34":19,"35":11,"36":28,"40":9,"41":11,"42":10,"44":50,"49":70,"51":58,"59":9,"61":29,"64":61,"66":12,"67":10,"89":10,"90":13,"93":4,"108":1496,"109":259}},"geometry":{"type":"Point","coordinates":[-73.94632528217915,40.78518204737836]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018000","ancestry":{"1":7717,"5":1147,"6":85,"7":85,"22":25,"36":27,"40":6,"41":13,"42":133,"44":106,"49":12,"51":19,"59":1,"64":7,"65":17,"73":178,"80":33,"87":116,"88":29,"89":13,"92":7,"94":34,"96":14,"105":20,"108":5628,"109":634}},"geometry":{"type":"Point","coordinates":[-73.93959497901616,40.794401754802315]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008000","ancestry":{"1":4921,"5":463,"6":135,"8":12,"10":73,"12":15,"15":35,"19":100,"23":98,"34":52,"35":116,"36":421,"38":164,"39":30,"40":154,"42":422,"44":76,"46":86,"49":635,"50":197,"51":645,"55":14,"59":74,"61":293,"63":76,"64":462,"66":13,"67":194,"73":34,"87":34,"89":46,"90":28,"92":79,"93":24,"94":15,"96":15,"107":13,"108":1243,"109":159}},"geometry":{"type":"Point","coordinates":[-73.97765198787897,40.74925882380662]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020101","ancestry":{"1":1921,"5":46,"6":11,"11":6,"12":5,"16":10,"21":8,"23":2,"26":20,"33":5,"34":22,"35":15,"36":53,"38":7,"40":26,"41":10,"42":165,"44":32,"48":7,"49":134,"50":10,"51":63,"58":24,"59":6,"61":27,"62":14,"64":35,"66":5,"67":28,"73":23,"87":23,"89":15,"90":19,"93":3,"94":7,"102":7,"108":688,"109":698}},"geometry":{"type":"Point","coordinates":[-73.96020483920253,40.806435525107645]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022200","ancestry":{"1":3069,"5":131,"6":18,"15":18,"23":26,"29":9,"31":9,"34":10,"35":42,"36":62,"38":8,"40":80,"41":8,"42":138,"44":13,"45":19,"46":24,"49":155,"50":5,"51":64,"53":9,"59":20,"61":26,"64":47,"65":9,"67":19,"70":6,"73":155,"79":12,"80":11,"87":132,"89":11,"90":31,"92":42,"93":9,"94":111,"96":11,"99":19,"102":33,"105":48,"108":1898,"109":221}},"geometry":{"type":"Point","coordinates":[-73.94878761983153,40.80834018063642]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013800","ancestry":{"1":12771,"5":1737,"6":16,"15":16,"16":65,"18":95,"19":214,"23":297,"26":16,"33":40,"34":57,"35":714,"36":918,"38":225,"39":47,"40":663,"41":95,"42":846,"44":165,"46":296,"48":99,"49":1383,"50":74,"51":1793,"53":33,"56":50,"58":161,"59":239,"61":870,"62":60,"63":58,"64":1031,"66":17,"67":657,"70":46,"89":232,"90":31,"91":48,"92":186,"93":88,"94":145,"101":52,"102":105,"103":40,"108":2840,"109":612}},"geometry":{"type":"Point","coordinates":[-73.9538150481702,40.77492156309041]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012600","ancestry":{"1":11038,"5":1054,"6":21,"10":21,"16":140,"19":298,"22":32,"23":113,"24":56,"26":99,"29":42,"31":89,"34":114,"35":72,"36":732,"38":208,"40":299,"41":101,"42":1007,"44":266,"46":390,"49":1209,"51":1095,"53":67,"58":60,"59":64,"61":1110,"63":94,"64":911,"66":11,"67":164,"68":42,"89":46,"90":44,"92":64,"93":81,"94":63,"101":12,"102":51,"108":2770,"109":998}},"geometry":{"type":"Point","coordinates":[-73.95852619069967,40.76846659680604]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007400","ancestry":{"1":3754,"5":203,"6":38,"10":38,"16":57,"18":43,"19":16,"22":35,"26":9,"34":66,"35":102,"36":194,"40":38,"41":42,"42":276,"44":16,"48":29,"49":500,"50":6,"51":326,"58":25,"59":71,"61":241,"62":14,"63":44,"64":207,"73":14,"87":14,"89":69,"91":12,"92":30,"93":15,"108":1254,"109":586}},"geometry":{"type":"Point","coordinates":[-73.98408286412547,40.746213580445975]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003200","ancestry":{"1":7802,"5":112,"6":57,"10":57,"18":82,"19":85,"31":21,"33":31,"34":71,"35":112,"36":431,"37":52,"38":212,"40":179,"41":21,"42":1044,"44":94,"46":85,"49":1099,"50":22,"51":688,"53":12,"59":44,"60":23,"61":959,"62":113,"63":50,"64":438,"66":19,"67":157,"70":26,"89":10,"91":23,"92":395,"93":222,"94":24,"101":24,"108":2399,"109":302}},"geometry":{"type":"Point","coordinates":[-73.98371663654632,40.72555795243678]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061026100","ancestry":{"1":13686,"5":208,"6":30,"10":30,"22":30,"38":27,"41":16,"42":20,"44":142,"49":23,"51":17,"59":19,"64":16,"70":1,"73":20,"87":20,"89":19,"94":308,"101":86,"102":222,"108":12329,"109":673}},"geometry":{"type":"Point","coordinates":[-73.9344551670886,40.845784546777494]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022500","ancestry":{"1":10641,"5":554,"6":105,"14":105,"19":39,"21":17,"22":35,"23":12,"31":15,"33":8,"34":64,"35":15,"36":36,"38":98,"40":29,"41":86,"42":212,"43":47,"44":25,"46":15,"49":305,"50":35,"51":265,"53":17,"55":85,"59":10,"61":89,"64":66,"65":12,"67":15,"73":175,"76":79,"87":96,"89":13,"93":13,"94":352,"101":339,"105":13,"108":8452,"109":648}},"geometry":{"type":"Point","coordinates":[-73.95416202569217,40.823835229888104]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004100","ancestry":{"1":7581,"5":144,"6":125,"7":24,"12":101,"16":18,"18":52,"19":27,"22":11,"23":16,"31":57,"33":11,"36":130,"38":301,"39":42,"40":96,"41":55,"42":132,"44":65,"46":29,"48":54,"49":228,"50":70,"51":645,"52":10,"59":26,"61":23,"63":13,"64":69,"65":14,"66":42,"67":11,"68":10,"73":26,"76":10,"87":16,"89":13,"91":24,"93":15,"94":15,"103":15,"108":4841,"109":704}},"geometry":{"type":"Point","coordinates":[-73.99669575983309,40.71916395721571]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002100","ancestry":{"1":6506,"5":435,"6":60,"8":12,"13":32,"15":16,"16":51,"18":27,"19":63,"21":13,"23":224,"26":48,"31":23,"33":95,"34":77,"35":273,"36":624,"38":278,"39":42,"40":223,"41":13,"42":417,"44":117,"46":42,"48":14,"49":367,"50":13,"51":768,"53":16,"58":42,"61":332,"62":57,"63":54,"64":794,"66":59,"67":84,"70":14,"73":50,"76":50,"89":92,"90":33,"91":25,"92":63,"93":11,"108":2292,"109":351}},"geometry":{"type":"Point","coordinates":[-74.01004337526028,40.714329573778855]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001402","ancestry":{"1":2666,"5":79,"6":33,"8":7,"10":26,"29":7,"34":13,"35":7,"36":73,"38":7,"40":108,"41":10,"42":148,"49":89,"51":185,"58":26,"59":53,"60":7,"61":31,"63":8,"64":15,"66":1,"67":12,"68":7,"73":40,"76":7,"87":33,"90":12,"92":46,"94":6,"105":6,"108":1560,"109":369}},"geometry":{"type":"Point","coordinates":[-73.98588138742056,40.71751342319089]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061028100","ancestry":{"1":2998,"5":84,"6":73,"10":68,"15":5,"18":11,"19":67,"21":8,"23":6,"27":11,"31":28,"33":13,"34":41,"35":11,"36":201,"38":55,"40":21,"41":53,"42":528,"44":58,"46":40,"48":11,"49":346,"50":8,"51":126,"53":103,"58":4,"61":134,"63":19,"64":292,"65":28,"66":11,"67":59,"68":22,"70":11,"73":9,"77":9,"89":75,"90":20,"92":37,"93":25,"108":961,"109":422}},"geometry":{"type":"Point","coordinates":[-73.93453429566159,40.85705775430149]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085017012","ancestry":{"1":4526,"3":37,"5":235,"6":104,"7":60,"12":44,"19":18,"31":13,"36":50,"40":7,"41":16,"42":204,"44":42,"49":1038,"51":2428,"59":12,"61":179,"63":6,"64":135,"73":30,"87":30,"89":12,"107":27,"108":488,"109":499}},"geometry":{"type":"Point","coordinates":[-74.17378706769279,40.55295868751669]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024100","ancestry":{"1":7541,"5":372,"6":60,"10":29,"11":29,"15":17,"23":33,"33":17,"34":73,"36":63,"38":19,"39":14,"40":43,"42":145,"44":10,"45":22,"49":175,"51":219,"52":11,"59":27,"61":91,"64":20,"67":10,"70":13,"73":233,"75":85,"76":75,"87":73,"89":16,"92":17,"93":15,"94":714,"97":11,"99":16,"101":246,"102":234,"103":99,"105":108,"108":4966,"109":881}},"geometry":{"type":"Point","coordinates":[-73.94606177995252,40.83412326886676]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017200","ancestry":{"1":5660,"3":37,"5":542,"6":10,"15":10,"19":12,"21":8,"23":1,"36":11,"38":77,"40":25,"41":11,"42":58,"44":12,"49":76,"51":74,"53":24,"61":127,"73":164,"87":164,"89":31,"94":133,"99":8,"101":70,"102":31,"103":24,"105":8,"108":4336,"109":204}},"geometry":{"type":"Point","coordinates":[-73.94513332177574,40.79382700155124]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011300","ancestry":{"1":146,"5":3,"36":5,"42":9,"49":12,"51":5,"64":4,"67":5,"108":108,"109":9}},"geometry":{"type":"Point","coordinates":[-73.98787020847979,40.75477521561877]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019000","ancestry":{"1":3010,"5":126,"23":9,"34":23,"35":9,"36":53,"37":7,"38":9,"40":18,"42":10,"45":15,"46":51,"49":149,"50":5,"51":104,"55":10,"58":7,"61":60,"62":32,"64":70,"66":11,"73":178,"79":33,"80":9,"87":136,"94":222,"95":37,"101":55,"102":79,"103":10,"105":41,"108":1932,"109":312}},"geometry":{"type":"Point","coordinates":[-73.9476193825519,40.80196158147297]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009500","ancestry":{"1":3334,"5":214,"6":65,"10":29,"11":6,"12":30,"18":8,"19":5,"23":20,"26":32,"28":17,"30":8,"31":6,"33":46,"34":55,"35":74,"36":204,"38":39,"40":56,"41":8,"42":249,"44":52,"46":83,"48":21,"49":299,"50":8,"51":195,"56":7,"59":23,"61":221,"62":24,"64":123,"66":40,"67":36,"70":17,"73":20,"83":20,"89":17,"91":33,"92":56,"94":8,"105":8,"108":1157,"109":684}},"geometry":{"type":"Point","coordinates":[-73.99335779493994,40.747236251370275]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061027300","ancestry":{"1":7020,"5":133,"6":29,"10":16,"15":13,"16":27,"18":18,"19":88,"22":12,"23":90,"26":15,"27":14,"29":15,"31":32,"33":56,"34":210,"35":217,"36":672,"38":36,"39":26,"40":291,"42":598,"44":56,"46":141,"48":27,"49":604,"50":39,"51":507,"53":29,"58":14,"59":59,"61":221,"62":17,"64":620,"66":167,"67":145,"68":40,"70":14,"71":22,"73":274,"75":35,"87":29,"88":210,"89":12,"90":36,"92":63,"94":105,"101":63,"103":27,"105":15,"108":3024,"109":519}},"geometry":{"type":"Point","coordinates":[-73.93738465126373,40.8539791123107]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010601","ancestry":{"1":7187,"5":1247,"6":68,"10":25,"11":43,"16":42,"19":64,"21":26,"22":25,"23":84,"26":38,"31":32,"33":22,"35":353,"36":452,"38":227,"40":119,"42":647,"44":244,"45":39,"46":125,"48":27,"49":548,"51":622,"52":20,"53":55,"61":449,"62":23,"63":95,"64":479,"66":10,"67":242,"68":41,"92":68,"93":52,"107":40,"108":1726,"109":565}},"geometry":{"type":"Point","coordinates":[-73.96159722351042,40.75737813053384]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005900","ancestry":{"1":5724,"3":16,"5":196,"6":51,"10":19,"11":17,"13":15,"19":120,"23":127,"26":16,"29":16,"31":36,"32":14,"33":22,"34":84,"35":298,"36":313,"38":55,"40":50,"41":16,"42":490,"44":18,"46":80,"48":19,"49":760,"50":59,"51":753,"52":14,"53":67,"56":16,"59":70,"61":556,"62":15,"63":36,"64":499,"66":66,"67":81,"70":10,"73":7,"75":7,"89":25,"91":24,"92":70,"93":28,"94":68,"101":68,"107":16,"108":1422,"109":782}},"geometry":{"type":"Point","coordinates":[-73.99456138440068,40.731289499350126]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014602","ancestry":{"1":7728,"5":791,"6":68,"7":26,"15":42,"16":20,"19":109,"21":20,"22":88,"23":22,"26":58,"29":13,"31":12,"33":12,"34":83,"35":305,"36":407,"38":204,"40":188,"41":19,"42":811,"46":31,"48":19,"49":756,"50":12,"51":802,"53":88,"58":24,"59":106,"61":396,"63":32,"64":963,"66":75,"67":177,"68":30,"89":19,"90":20,"93":11,"94":43,"102":15,"105":28,"108":1991,"109":770}},"geometry":{"type":"Point","coordinates":[-73.95097496927839,40.77881474684696]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006300","ancestry":{"1":6107,"5":418,"6":124,"10":14,"13":50,"15":60,"19":96,"22":12,"23":39,"24":65,"26":13,"29":35,"34":42,"35":139,"36":736,"37":12,"38":162,"40":228,"42":757,"44":25,"46":105,"48":120,"49":692,"50":2,"51":600,"58":37,"59":38,"60":16,"61":467,"63":78,"64":676,"66":135,"67":183,"70":25,"71":44,"73":14,"87":14,"89":81,"90":24,"91":43,"92":27,"93":14,"94":83,"100":47,"102":21,"103":15,"108":1556,"109":591}},"geometry":{"type":"Point","coordinates":[-73.99686023284993,40.73442144731975]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061025100","ancestry":{"1":2644,"5":48,"6":4,"10":4,"23":8,"30":8,"31":11,"36":29,"38":12,"40":37,"42":126,"49":43,"51":23,"59":11,"61":20,"63":3,"66":18,"67":7,"73":22,"78":12,"81":10,"94":220,"96":30,"101":136,"102":6,"105":48,"108":1942,"109":367}},"geometry":{"type":"Point","coordinates":[-73.93992272837171,40.84032603728697]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017900","ancestry":{"1":9333,"5":288,"6":25,"10":25,"18":97,"19":25,"21":23,"22":60,"23":111,"26":26,"33":30,"34":79,"35":578,"36":676,"38":337,"40":187,"41":27,"42":1000,"44":87,"45":79,"46":147,"48":41,"49":595,"50":15,"51":777,"53":19,"57":27,"59":25,"61":716,"63":59,"64":620,"65":41,"66":24,"67":140,"68":32,"73":71,"87":71,"89":29,"90":58,"91":15,"92":35,"93":109,"94":1,"96":1,"107":86,"108":3320,"109":909}},"geometry":{"type":"Point","coordinates":[-73.97568024621417,40.7929456740316]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011800","ancestry":{"1":9464,"5":975,"6":58,"8":17,"10":41,"15":17,"18":33,"19":197,"21":17,"22":28,"23":94,"26":32,"29":20,"31":58,"32":37,"33":80,"34":114,"35":150,"36":709,"37":85,"38":214,"40":380,"42":966,"46":84,"48":27,"49":782,"50":17,"51":1201,"53":108,"57":16,"58":18,"59":81,"61":561,"62":59,"63":22,"64":1160,"66":110,"67":215,"70":24,"71":17,"89":61,"90":86,"91":47,"92":172,"93":22,"108":2298,"109":993}},"geometry":{"type":"Point","coordinates":[-73.96085532545403,40.76527476891009]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003400","ancestry":{"1":6673,"3":19,"5":335,"6":46,"7":16,"10":30,"19":27,"20":51,"21":25,"23":122,"24":15,"26":86,"29":16,"31":45,"34":27,"35":48,"36":357,"38":136,"39":16,"40":166,"41":37,"42":387,"44":77,"46":43,"49":1046,"50":82,"51":517,"52":39,"53":12,"55":14,"57":37,"58":12,"59":54,"61":344,"62":20,"63":52,"64":252,"65":20,"66":15,"67":71,"68":23,"70":30,"73":28,"83":12,"88":16,"89":98,"90":38,"92":122,"93":85,"94":28,"99":28,"108":2237,"109":644}},"geometry":{"type":"Point","coordinates":[-73.98146180524127,40.72900917799141]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020500","ancestry":{"1":5191,"3":100,"5":343,"6":15,"7":3,"13":6,"15":6,"16":8,"18":9,"19":53,"21":24,"23":65,"26":16,"31":63,"32":9,"33":16,"34":121,"35":53,"36":376,"37":68,"38":142,"40":160,"41":26,"42":380,"44":40,"45":3,"48":7,"49":393,"50":8,"51":244,"52":9,"53":22,"58":15,"59":26,"61":78,"63":50,"64":261,"65":5,"66":34,"67":74,"70":26,"73":35,"87":35,"89":26,"90":32,"91":35,"93":45,"94":18,"101":4,"102":11,"105":3,"108":1298,"109":1461}},"geometry":{"type":"Point","coordinates":[-73.96512379487594,40.81025032855577]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018900","ancestry":{"1":12331,"3":127,"5":744,"6":70,"10":70,"19":11,"23":97,"34":85,"35":110,"36":288,"38":69,"40":476,"41":72,"42":447,"44":22,"46":23,"49":623,"51":355,"53":60,"55":32,"61":123,"63":42,"64":206,"66":82,"67":15,"73":16,"87":16,"91":12,"92":209,"93":60,"94":716,"101":623,"102":79,"105":14,"107":35,"108":7949,"109":1269}},"geometry":{"type":"Point","coordinates":[-73.9642507970582,40.79732813457946]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003002","ancestry":{"1":2934,"5":102,"6":13,"9":3,"15":10,"19":19,"23":25,"31":12,"33":15,"34":7,"36":210,"38":70,"39":7,"40":26,"41":8,"42":220,"44":19,"46":22,"49":225,"51":219,"52":21,"53":5,"59":14,"61":230,"62":22,"63":22,"64":53,"66":1,"67":100,"68":8,"71":8,"73":9,"87":9,"91":61,"92":32,"94":45,"102":38,"105":7,"108":1309,"109":304}},"geometry":{"type":"Point","coordinates":[-73.98586621603687,40.72296414417424]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013100","ancestry":{"1":2654,"5":84,"6":45,"10":32,"15":13,"18":10,"19":50,"22":13,"23":68,"29":7,"31":40,"34":26,"35":10,"36":171,"38":24,"40":43,"41":31,"42":300,"44":22,"46":39,"48":27,"49":120,"51":196,"52":20,"53":62,"61":120,"62":48,"63":23,"64":235,"65":14,"66":30,"67":84,"71":7,"73":28,"87":28,"89":20,"92":42,"93":20,"94":22,"105":22,"108":1035,"109":297}},"geometry":{"type":"Point","coordinates":[-73.98235341925144,40.76234581402587]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008200","ancestry":{"1":3427,"5":130,"6":24,"10":24,"19":20,"23":39,"24":10,"25":16,"31":20,"35":46,"36":264,"38":44,"40":128,"41":26,"42":248,"44":53,"46":39,"48":59,"49":392,"51":358,"53":33,"59":28,"61":324,"62":55,"63":15,"64":361,"67":64,"71":7,"89":99,"91":51,"92":11,"93":12,"108":1183,"109":172}},"geometry":{"type":"Point","coordinates":[-73.9808740378128,40.75061320706579]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020701","ancestry":{"1":3281,"2":10,"3":40,"5":71,"6":56,"10":56,"19":11,"22":17,"23":32,"24":33,"26":88,"31":24,"33":10,"35":31,"36":148,"37":8,"38":18,"39":11,"40":42,"41":7,"42":231,"44":42,"46":51,"48":12,"49":245,"51":196,"53":8,"59":15,"61":186,"62":9,"64":166,"67":73,"69":6,"71":8,"73":41,"79":10,"87":22,"88":9,"89":51,"90":8,"91":16,"92":26,"93":62,"94":7,"105":7,"108":1373,"109":471}},"geometry":{"type":"Point","coordinates":[-73.95845999305028,40.80897754971892]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008900","ancestry":{"1":5614,"5":276,"6":64,"10":56,"15":8,"17":16,"18":11,"23":167,"32":59,"33":35,"34":48,"35":68,"36":740,"38":97,"40":120,"42":624,"44":51,"45":20,"46":47,"49":650,"50":20,"51":613,"53":52,"55":19,"59":60,"61":473,"64":130,"66":19,"67":98,"69":9,"70":33,"89":187,"90":5,"92":122,"93":35,"94":92,"102":15,"103":1,"105":76,"108":1721,"109":607}},"geometry":{"type":"Point","coordinates":[-74.00267856804827,40.744638028492304]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002500","ancestry":{"1":5291,"5":67,"6":7,"12":7,"23":13,"36":9,"42":41,"49":19,"51":12,"67":9,"73":43,"87":43,"108":4438,"109":742}},"geometry":{"type":"Point","coordinates":[-73.99860005739284,40.71011053104053]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061002500","ancestry":{"1":5291,"5":67,"6":7,"12":7,"23":13,"36":9,"42":41,"49":19,"51":12,"67":9,"73":43,"87":43,"108":4438,"109":742}},"geometry":{"type":"Point","coordinates":[-73.99442178297129,40.70439118075233]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011100","ancestry":{"1":4374,"5":239,"6":78,"10":9,"11":69,"19":41,"22":34,"23":28,"26":12,"29":3,"31":25,"34":24,"35":80,"36":395,"38":18,"39":29,"40":218,"42":281,"44":68,"46":11,"48":31,"49":331,"51":439,"59":36,"61":325,"62":51,"64":22,"65":4,"66":9,"70":14,"73":104,"79":104,"89":45,"90":23,"92":24,"93":22,"94":102,"102":27,"103":75,"108":2047,"109":333}},"geometry":{"type":"Point","coordinates":[-73.99538787078785,40.754647516215215]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005000","ancestry":{"1":5238,"5":135,"6":44,"11":34,"13":10,"16":8,"19":63,"23":119,"24":14,"26":58,"33":11,"34":120,"35":113,"36":323,"37":14,"38":89,"40":117,"42":626,"44":88,"46":183,"49":773,"50":8,"51":441,"53":121,"55":43,"56":116,"59":47,"61":594,"63":91,"64":313,"67":127,"70":31,"89":35,"90":14,"92":106,"93":61,"108":1441,"109":489}},"geometry":{"type":"Point","coordinates":[-73.98721382564526,40.736111525322535]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000800","ancestry":{"1":9333,"5":233,"6":12,"10":12,"34":13,"36":7,"40":60,"42":33,"49":187,"51":277,"61":26,"64":11,"73":17,"87":17,"89":13,"92":31,"94":11,"102":11,"108":7293,"109":1359}},"geometry":{"type":"Point","coordinates":[-73.99452371506432,40.71176321397842]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061000800","ancestry":{"1":9333,"5":233,"6":12,"10":12,"34":13,"36":7,"40":60,"42":33,"49":187,"51":277,"61":26,"64":11,"73":17,"87":17,"89":13,"92":31,"94":11,"102":11,"108":7293,"109":1359}},"geometry":{"type":"Point","coordinates":[-73.99369308733593,40.70447613628696]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015802","ancestry":{"1":4524,"5":224,"6":75,"7":27,"13":9,"14":39,"16":11,"19":32,"21":12,"22":19,"23":124,"32":9,"34":47,"35":25,"36":165,"38":37,"39":9,"40":66,"41":62,"42":315,"44":19,"45":26,"46":23,"48":67,"49":316,"50":15,"51":615,"52":10,"58":16,"59":20,"61":156,"62":15,"63":12,"64":152,"66":25,"67":27,"73":42,"77":15,"88":27,"89":45,"90":16,"91":18,"93":14,"94":46,"101":2,"102":19,"103":16,"105":9,"108":1992,"109":460}},"geometry":{"type":"Point","coordinates":[-73.95046500392318,40.78652433581269]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014200","ancestry":{"1":4288,"5":678,"6":13,"8":13,"16":17,"19":142,"21":10,"22":132,"23":79,"31":14,"34":9,"35":197,"36":255,"38":47,"40":97,"42":256,"44":59,"46":132,"48":32,"49":270,"51":228,"59":43,"61":174,"63":91,"64":333,"66":31,"67":133,"89":22,"90":16,"91":18,"92":36,"93":29,"94":7,"101":7,"108":1118,"109":633}},"geometry":{"type":"Point","coordinates":[-73.96142563446887,40.77727422569431]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007200","ancestry":{"1":7500,"5":567,"6":51,"10":27,"13":24,"19":36,"22":32,"23":151,"24":174,"28":17,"30":20,"32":26,"34":129,"35":266,"36":393,"38":23,"39":29,"40":113,"42":772,"44":43,"45":43,"46":6,"48":56,"49":929,"50":25,"51":965,"59":9,"61":630,"63":27,"64":559,"66":16,"67":44,"70":66,"71":22,"73":38,"75":12,"83":16,"88":10,"89":88,"90":31,"91":110,"92":27,"93":62,"94":74,"101":33,"102":41,"108":2577,"109":513}},"geometry":{"type":"Point","coordinates":[-73.98085842799576,40.74486562493051]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021500","ancestry":{"1":3563,"5":42,"6":248,"12":7,"14":118,"15":130,"29":5,"34":11,"38":86,"40":44,"41":11,"42":32,"44":28,"45":11,"49":24,"51":33,"73":326,"80":76,"87":232,"88":18,"90":13,"94":57,"97":18,"99":11,"101":9,"103":16,"105":14,"108":2439,"109":205}},"geometry":{"type":"Point","coordinates":[-73.94947124827777,40.81352717966146]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061025900","ancestry":{"1":4408,"5":262,"6":149,"11":21,"13":41,"15":87,"19":18,"21":7,"22":6,"23":11,"29":32,"31":11,"34":8,"35":37,"36":81,"38":56,"40":55,"42":93,"45":82,"46":4,"48":12,"49":101,"50":7,"51":97,"59":18,"61":50,"63":6,"64":26,"73":298,"74":15,"75":47,"78":10,"79":20,"80":112,"87":81,"88":13,"89":23,"90":25,"92":6,"93":7,"94":205,"97":27,"99":14,"101":34,"102":30,"103":58,"105":48,"108":2889,"109":401}},"geometry":{"type":"Point","coordinates":[-73.94235609239533,40.823214567463815]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023801","ancestry":{"1":9667,"5":475,"6":452,"7":184,"10":12,"13":45,"14":211,"15":21,"16":80,"18":55,"19":19,"22":107,"23":94,"29":11,"31":9,"33":98,"34":89,"35":32,"36":134,"38":23,"39":10,"40":194,"41":22,"42":296,"44":44,"45":8,"46":32,"49":548,"51":347,"59":66,"61":111,"62":50,"63":108,"64":529,"66":59,"67":43,"68":47,"73":323,"75":13,"87":104,"88":206,"89":2,"90":13,"91":109,"92":312,"93":10,"94":204,"96":41,"101":3,"102":120,"103":23,"105":31,"107":24,"108":5040,"109":783}},"geometry":{"type":"Point","coordinates":[-73.95376410563422,40.7576583131661]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36061023801","ancestry":{"1":9667,"5":475,"6":452,"7":184,"10":12,"13":45,"14":211,"15":21,"16":80,"18":55,"19":19,"22":107,"23":94,"29":11,"31":9,"33":98,"34":89,"35":32,"36":134,"38":23,"39":10,"40":194,"41":22,"42":296,"44":44,"45":8,"46":32,"49":548,"51":347,"59":66,"61":111,"62":50,"63":108,"64":529,"66":59,"67":43,"68":47,"73":323,"75":13,"87":104,"88":206,"89":2,"90":13,"91":109,"92":312,"93":10,"94":204,"96":41,"101":3,"102":120,"103":23,"105":31,"107":24,"108":5040,"109":783}},"geometry":{"type":"Point","coordinates":[-73.95034009124997,40.755857798694834]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061031703","ancestry":{"1":8628,"3":28,"5":242,"6":69,"7":33,"10":25,"13":11,"15":17,"18":9,"19":146,"22":135,"23":47,"24":57,"26":35,"33":97,"34":37,"35":248,"36":835,"38":196,"40":365,"41":16,"42":831,"44":139,"46":141,"48":55,"49":1057,"50":105,"51":1422,"52":18,"53":97,"59":57,"61":359,"62":13,"63":101,"64":813,"67":199,"70":40,"73":124,"76":29,"83":82,"87":13,"89":77,"92":32,"93":31,"107":60,"108":2435,"109":680}},"geometry":{"type":"Point","coordinates":[-74.01510823184508,40.71528609009014]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004400","ancestry":{"1":16735,"5":386,"6":254,"10":78,"12":14,"13":41,"15":133,"18":56,"19":218,"22":79,"23":122,"24":16,"26":101,"27":38,"29":29,"31":150,"32":8,"33":71,"34":109,"35":563,"36":647,"38":364,"39":39,"40":340,"41":244,"42":1958,"44":22,"45":77,"46":282,"48":42,"49":3925,"50":12,"51":1246,"52":12,"53":57,"56":12,"58":50,"59":150,"61":988,"62":31,"63":167,"64":1006,"66":134,"67":269,"73":68,"75":45,"87":23,"89":222,"90":15,"92":294,"93":127,"94":106,"101":106,"108":4394,"109":2292}},"geometry":{"type":"Point","coordinates":[-73.97662381956216,40.73098436923118]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061004400","ancestry":{"1":16735,"5":386,"6":254,"10":78,"12":14,"13":41,"15":133,"18":56,"19":218,"22":79,"23":122,"24":16,"26":101,"27":38,"29":29,"31":150,"32":8,"33":71,"34":109,"35":563,"36":647,"38":364,"39":39,"40":340,"41":244,"42":1958,"44":22,"45":77,"46":282,"48":42,"49":3925,"50":12,"51":1246,"52":12,"53":57,"56":12,"58":50,"59":150,"61":988,"62":31,"63":167,"64":1006,"66":134,"67":269,"73":68,"75":45,"87":23,"89":222,"90":15,"92":294,"93":127,"94":106,"101":106,"108":4394,"109":2292}},"geometry":{"type":"Point","coordinates":[-73.96184549466227,40.72434533307508]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085013301","ancestry":{"1":1746,"3":9,"5":101,"40":5,"42":8,"45":6,"49":60,"51":55,"61":4,"73":5,"87":5,"92":31,"94":30,"103":30,"108":1273,"109":222}},"geometry":{"type":"Point","coordinates":[-74.11891029317299,40.63559839715304]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012200","ancestry":{"1":3286,"5":516,"6":96,"10":62,"15":34,"18":28,"19":57,"21":22,"23":12,"24":11,"32":31,"35":63,"36":246,"38":58,"40":150,"42":420,"46":77,"49":234,"51":263,"53":53,"61":296,"63":94,"64":452,"66":23,"67":87,"89":25,"90":15,"91":12,"93":38,"108":331,"109":454}},"geometry":{"type":"Point","coordinates":[-73.9679848994121,40.76828116698127]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013600","ancestry":{"1":15641,"5":1721,"6":126,"7":54,"10":33,"11":39,"16":35,"19":236,"22":29,"23":35,"26":244,"27":49,"29":53,"31":310,"32":12,"33":39,"34":104,"35":470,"36":610,"38":800,"39":39,"40":601,"41":37,"42":2103,"44":54,"45":60,"46":458,"48":131,"49":2303,"50":140,"51":1688,"52":23,"53":66,"58":34,"59":163,"60":41,"61":900,"63":211,"64":1503,"66":76,"67":62,"68":70,"69":38,"73":15,"83":15,"89":51,"90":44,"92":173,"93":392,"94":61,"101":23,"103":38,"108":3305,"109":1412}},"geometry":{"type":"Point","coordinates":[-73.94870131498254,40.77281431515763]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014402","ancestry":{"1":7537,"5":713,"6":31,"8":13,"11":18,"19":120,"22":16,"23":91,"24":13,"26":96,"29":9,"31":8,"33":10,"34":51,"35":172,"36":460,"38":240,"40":449,"41":35,"42":768,"44":53,"46":25,"48":13,"49":1310,"50":85,"51":795,"53":44,"56":13,"59":74,"61":604,"63":15,"64":323,"66":52,"67":141,"70":18,"71":45,"73":33,"87":33,"89":59,"90":18,"91":40,"92":142,"93":69,"94":115,"101":30,"102":57,"103":14,"105":14,"108":1760,"109":653}},"geometry":{"type":"Point","coordinates":[-73.94534281142626,40.7762388904678]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015601","ancestry":{"1":5719,"5":496,"6":125,"8":19,"9":17,"10":11,"11":77,"15":1,"18":23,"19":53,"22":22,"23":23,"24":18,"26":58,"29":27,"33":22,"34":46,"35":143,"36":207,"37":11,"38":127,"39":19,"40":122,"41":31,"42":288,"44":78,"46":14,"48":58,"49":514,"50":144,"51":458,"59":31,"61":216,"64":234,"67":35,"71":11,"72":14,"73":152,"79":23,"87":129,"89":24,"91":54,"92":118,"93":11,"94":11,"102":11,"108":2243,"109":478}},"geometry":{"type":"Point","coordinates":[-73.94750242417149,40.783568582447586]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021600","ancestry":{"1":8421,"3":11,"5":531,"6":39,"10":15,"13":15,"15":9,"18":15,"19":13,"23":56,"24":46,"29":11,"31":71,"33":57,"35":82,"36":251,"38":53,"40":10,"41":55,"42":182,"45":14,"49":355,"50":13,"51":303,"53":46,"59":13,"61":83,"63":17,"64":131,"65":18,"66":14,"67":128,"70":56,"73":732,"78":17,"79":17,"80":95,"87":536,"88":162,"89":33,"92":4,"93":20,"94":549,"96":29,"99":22,"101":76,"102":179,"103":59,"104":55,"105":116,"106":13,"108":4569,"109":1101}},"geometry":{"type":"Point","coordinates":[-73.95438799732008,40.80067681965912]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022000","ancestry":{"1":5577,"5":151,"6":54,"11":31,"14":23,"18":20,"33":59,"34":13,"36":79,"38":43,"40":138,"42":129,"44":67,"46":20,"49":77,"50":30,"51":44,"55":74,"59":14,"61":39,"62":39,"64":68,"66":13,"67":24,"68":11,"73":642,"74":15,"75":29,"76":13,"79":25,"87":560,"89":24,"93":7,"94":224,"99":116,"101":98,"105":10,"108":3699,"109":324}},"geometry":{"type":"Point","coordinates":[-73.95065705801906,40.805783595245416]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061025300","ancestry":{"1":11367,"5":275,"6":73,"7":12,"14":47,"15":45,"23":35,"29":7,"33":7,"34":23,"36":270,"38":144,"40":31,"41":6,"42":196,"44":10,"46":19,"48":19,"49":229,"51":95,"59":48,"61":69,"64":130,"65":38,"66":50,"67":61,"70":10,"71":14,"73":186,"74":21,"75":12,"76":94,"79":14,"87":45,"89":27,"91":8,"92":27,"93":13,"94":180,"97":56,"102":35,"103":75,"105":14,"108":8817,"109":1169}},"geometry":{"type":"Point","coordinates":[-73.93837910483819,40.842894879663525]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061027100","ancestry":{"1":9557,"5":175,"6":49,"11":41,"15":8,"19":35,"29":13,"31":36,"34":11,"35":80,"36":179,"38":149,"40":137,"42":372,"44":75,"45":23,"46":25,"49":393,"50":18,"51":221,"53":14,"58":11,"61":293,"62":59,"64":537,"66":32,"67":128,"69":15,"73":48,"87":17,"88":31,"89":84,"90":53,"92":35,"107":13,"108":6432,"109":1135}},"geometry":{"type":"Point","coordinates":[-73.93429401564156,40.851943804167895]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061028300","ancestry":{"1":7879,"5":119,"16":43,"20":31,"22":21,"24":31,"28":12,"31":7,"34":53,"35":22,"36":45,"38":22,"40":31,"41":25,"42":224,"44":244,"46":68,"49":111,"51":141,"58":24,"61":146,"64":44,"66":10,"73":78,"76":20,"87":13,"88":45,"90":5,"92":12,"93":31,"94":83,"102":83,"108":6160,"109":514}},"geometry":{"type":"Point","coordinates":[-73.92872486247967,40.8589100676882]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.04374543226163,40.6924419765546]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000201","ancestry":{"1":2709,"5":169,"23":12,"35":7,"38":12,"40":1,"42":25,"46":12,"49":27,"51":22,"59":5,"63":15,"94":49,"102":18,"103":21,"105":10,"108":2087,"109":308}},"geometry":{"type":"Point","coordinates":[-73.98585006401298,40.71187208315925]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061000201","ancestry":{"1":2709,"5":169,"23":12,"35":7,"38":12,"40":1,"42":25,"46":12,"49":27,"51":22,"59":5,"63":15,"94":49,"102":18,"103":21,"105":10,"108":2087,"109":308}},"geometry":{"type":"Point","coordinates":[-73.98491613318397,40.70551365899968]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000202","ancestry":{"1":8308,"5":78,"34":16,"35":29,"36":44,"38":129,"40":14,"42":167,"44":15,"49":196,"51":256,"61":120,"64":63,"66":17,"73":63,"87":22,"88":41,"92":67,"94":97,"101":47,"102":17,"103":17,"105":63,"108":6512,"109":754}},"geometry":{"type":"Point","coordinates":[-73.9813146723847,40.712139789605196]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061000202","ancestry":{"1":8308,"5":78,"34":16,"35":29,"36":44,"38":129,"40":14,"42":167,"44":15,"49":196,"51":256,"61":120,"64":63,"66":17,"73":63,"87":22,"88":41,"92":67,"94":97,"101":47,"102":17,"103":17,"105":63,"108":6512,"109":754}},"geometry":{"type":"Point","coordinates":[-73.97989493769256,40.70580531029029]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000500","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.01698137272344,40.68894613210733]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061000500","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.0120666865622,40.683856276592124]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000600","ancestry":{"1":11354,"5":104,"26":58,"34":2,"35":20,"36":21,"42":31,"44":58,"49":84,"50":49,"51":80,"53":19,"61":235,"64":35,"92":10,"94":70,"102":41,"105":29,"108":9669,"109":1142}},"geometry":{"type":"Point","coordinates":[-73.98947785181822,40.71194973566684]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061000600","ancestry":{"1":11354,"5":104,"26":58,"34":2,"35":20,"36":21,"42":31,"44":58,"49":84,"50":49,"51":80,"53":19,"61":235,"64":35,"92":10,"94":70,"102":41,"105":29,"108":9669,"109":1142}},"geometry":{"type":"Point","coordinates":[-73.98677218101257,40.70511722758746]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000700","ancestry":{"1":8598,"3":392,"5":114,"6":139,"10":19,"12":47,"14":73,"16":29,"18":96,"19":97,"22":17,"23":36,"26":50,"33":209,"34":28,"35":160,"36":436,"37":24,"38":185,"40":337,"41":8,"42":631,"44":68,"46":115,"48":93,"49":874,"51":1339,"59":46,"61":248,"62":87,"63":35,"64":360,"67":213,"73":31,"87":31,"89":222,"90":25,"91":105,"92":53,"93":54,"94":86,"96":27,"102":36,"103":19,"105":4,"108":3018,"109":421}},"geometry":{"type":"Point","coordinates":[-74.00753545869526,40.70537012678951]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061000700","ancestry":{"1":8598,"3":392,"5":114,"6":139,"10":19,"12":47,"14":73,"16":29,"18":96,"19":97,"22":17,"23":36,"26":50,"33":209,"34":28,"35":160,"36":436,"37":24,"38":185,"40":337,"41":8,"42":631,"44":68,"46":115,"48":93,"49":874,"51":1339,"59":46,"61":248,"62":87,"63":35,"64":360,"67":213,"73":31,"87":31,"89":222,"90":25,"91":105,"92":53,"93":54,"94":86,"96":27,"102":36,"103":19,"105":4,"108":3018,"109":421}},"geometry":{"type":"Point","coordinates":[-73.99712251517755,40.70024625519935]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061000900","ancestry":{"1":1396,"2":2,"5":141,"6":5,"10":5,"18":10,"19":14,"20":6,"22":9,"23":11,"31":39,"33":42,"34":14,"35":3,"36":124,"38":4,"39":5,"40":49,"41":6,"42":144,"44":4,"46":17,"47":73,"49":184,"50":29,"51":215,"59":7,"61":20,"64":50,"66":15,"67":21,"73":5,"88":5,"89":39,"93":14,"94":11,"103":11,"107":3,"108":399,"109":76}},"geometry":{"type":"Point","coordinates":[-74.00982865032228,40.702271496193035]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061000900","ancestry":{"1":1396,"2":2,"5":141,"6":5,"10":5,"18":10,"19":14,"20":6,"22":9,"23":11,"31":39,"33":42,"34":14,"35":3,"36":124,"38":4,"39":5,"40":49,"41":6,"42":144,"44":4,"46":17,"47":73,"49":184,"50":29,"51":215,"59":7,"61":20,"64":50,"66":15,"67":21,"73":5,"88":5,"89":39,"93":14,"94":11,"103":11,"107":3,"108":399,"109":76}},"geometry":{"type":"Point","coordinates":[-73.99869672011009,40.69743752465907]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001002","ancestry":{"1":6174,"5":132,"6":7,"14":7,"36":15,"38":12,"42":14,"45":11,"49":60,"51":69,"53":12,"62":26,"64":7,"73":185,"87":46,"88":139,"92":12,"94":20,"99":5,"101":5,"102":10,"108":5463,"109":340}},"geometry":{"type":"Point","coordinates":[-73.97695354026183,40.7173129776728]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061001002","ancestry":{"1":6174,"5":132,"6":7,"14":7,"36":15,"38":12,"42":14,"45":11,"49":60,"51":69,"53":12,"62":26,"64":7,"73":185,"87":46,"88":139,"92":12,"94":20,"99":5,"101":5,"102":10,"108":5463,"109":340}},"geometry":{"type":"Point","coordinates":[-73.96850040037144,40.7136904639015]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001200","ancestry":{"1":3552,"5":44,"6":10,"13":10,"18":9,"19":51,"23":21,"33":10,"35":43,"36":135,"38":11,"40":14,"42":99,"44":67,"46":38,"49":149,"50":21,"51":118,"52":11,"58":9,"61":177,"63":11,"64":141,"67":80,"68":66,"73":7,"80":7,"89":36,"90":47,"92":9,"93":33,"108":2400,"109":221}},"geometry":{"type":"Point","coordinates":[-73.9820936186547,40.71590648856881]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001300","ancestry":{"1":4167,"5":183,"6":43,"7":13,"10":15,"15":15,"18":100,"19":91,"23":13,"31":45,"33":19,"34":34,"35":15,"36":382,"38":69,"40":122,"41":10,"42":499,"44":57,"46":78,"48":11,"49":328,"50":26,"51":266,"55":17,"59":59,"61":282,"63":134,"64":220,"65":16,"66":11,"67":140,"73":29,"87":29,"89":30,"90":14,"91":47,"92":70,"93":20,"94":40,"102":40,"108":1392,"109":292}},"geometry":{"type":"Point","coordinates":[-74.01297774342551,40.70908386170679]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001401","ancestry":{"1":3205,"5":176,"6":41,"13":32,"15":9,"18":25,"19":25,"23":23,"24":8,"31":12,"32":10,"35":99,"36":100,"38":263,"40":36,"42":139,"44":7,"46":24,"48":9,"49":198,"51":186,"59":45,"61":182,"63":20,"64":163,"66":20,"67":68,"68":8,"92":34,"108":1700,"109":253}},"geometry":{"type":"Point","coordinates":[-73.98733141574182,40.71516028889909]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006500","ancestry":{"1":5847,"5":155,"6":278,"11":78,"14":95,"15":105,"42":8,"45":28,"51":31,"73":386,"79":23,"87":363,"94":226,"97":33,"99":4,"101":6,"102":67,"105":116,"108":4548,"109":354}},"geometry":{"type":"Point","coordinates":[-73.92165920840523,40.81739835816939]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020200","ancestry":{"1":2240,"3":6,"5":17,"36":3,"40":10,"42":11,"46":5,"49":45,"51":105,"61":1,"67":13,"70":14,"73":26,"79":6,"87":20,"94":141,"102":16,"105":132,"108":1709,"109":269}},"geometry":{"type":"Point","coordinates":[-73.84757917850919,40.83849116974543]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005015700","ancestry":{"1":3761,"5":302,"6":30,"14":30,"36":13,"49":6,"51":1,"73":303,"87":303,"94":377,"99":98,"101":9,"102":85,"105":188,"108":2716,"109":292}},"geometry":{"type":"Point","coordinates":[-73.88544996976418,40.832999072230685]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005200","ancestry":{"1":2128,"5":56,"23":9,"45":20,"51":12,"94":83,"102":68,"104":10,"106":5,"108":1809,"109":194}},"geometry":{"type":"Point","coordinates":[-73.88243294161843,40.825629157200844]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047005300","ancestry":{"1":2506,"4":26,"5":115,"6":50,"8":12,"11":14,"15":24,"19":6,"21":5,"23":20,"29":5,"31":29,"34":23,"35":45,"36":79,"38":74,"40":58,"41":12,"42":178,"44":7,"46":20,"48":5,"49":268,"50":6,"51":206,"53":6,"59":18,"61":107,"64":52,"65":39,"66":7,"67":26,"70":5,"73":15,"84":8,"87":7,"89":4,"90":24,"92":7,"93":8,"94":7,"103":7,"108":1291,"109":297}},"geometry":{"type":"Point","coordinates":[-74.01133359761894,40.68424913108351]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005300","ancestry":{"1":2506,"4":26,"5":115,"6":50,"8":12,"11":14,"15":24,"19":6,"21":5,"23":20,"29":5,"31":29,"34":23,"35":45,"36":79,"38":74,"40":58,"41":12,"42":178,"44":7,"46":20,"48":5,"49":268,"50":6,"51":206,"53":6,"59":18,"61":107,"64":52,"65":39,"66":7,"67":26,"70":5,"73":15,"84":8,"87":7,"89":4,"90":24,"92":7,"93":8,"94":7,"103":7,"108":1291,"109":297}},"geometry":{"type":"Point","coordinates":[-74.01026794297258,40.6745898811718]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012600","ancestry":{"1":2779,"5":125,"6":460,"7":239,"10":25,"13":9,"14":180,"15":31,"23":15,"33":3,"38":7,"40":15,"42":40,"44":57,"49":52,"51":84,"59":7,"61":24,"64":61,"70":39,"73":17,"84":17,"92":10,"94":37,"99":19,"105":18,"108":1702,"109":220}},"geometry":{"type":"Point","coordinates":[-74.01904154951914,40.63481902964335]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027100","ancestry":{"1":2663,"5":5,"6":108,"11":19,"15":89,"38":11,"42":5,"45":83,"49":10,"51":41,"70":10,"73":229,"84":25,"87":204,"94":472,"96":68,"97":52,"99":27,"101":33,"102":189,"103":42,"105":61,"108":1744,"109":142}},"geometry":{"type":"Point","coordinates":[-73.93696861334918,40.67879552776461]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034800","ancestry":{"1":2080,"5":42,"6":28,"14":28,"41":4,"42":67,"51":61,"53":4,"61":4,"63":9,"64":244,"73":52,"88":52,"92":101,"94":13,"101":1,"105":12,"108":1306,"109":241}},"geometry":{"type":"Point","coordinates":[-73.98264047790279,40.580908267949944]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044900","ancestry":{"1":3295,"5":342,"16":6,"24":63,"36":32,"38":135,"40":25,"42":52,"44":6,"45":66,"49":71,"50":11,"51":93,"61":115,"66":13,"67":7,"73":26,"76":26,"89":3,"90":13,"93":21,"94":199,"96":14,"99":14,"102":154,"105":17,"107":7,"108":2194,"109":256}},"geometry":{"type":"Point","coordinates":[-73.93127352081903,40.71780256512016]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047044900","ancestry":{"1":3295,"5":342,"16":6,"24":63,"36":32,"38":135,"40":25,"42":52,"44":6,"45":66,"49":71,"50":11,"51":93,"61":115,"66":13,"67":7,"73":26,"76":26,"89":3,"90":13,"93":21,"94":199,"96":14,"99":14,"102":154,"105":17,"107":7,"108":2194,"109":256}},"geometry":{"type":"Point","coordinates":[-73.92182134601549,40.711908939195105]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047046000","ancestry":{"1":3926,"5":527,"16":28,"19":13,"23":14,"26":7,"32":18,"34":8,"35":10,"40":16,"42":28,"46":19,"49":94,"51":127,"58":8,"59":34,"61":199,"62":7,"63":4,"64":119,"66":9,"67":16,"89":5,"92":77,"93":8,"94":47,"101":16,"102":10,"105":21,"108":2532,"109":284}},"geometry":{"type":"Point","coordinates":[-73.9655151261493,40.63184064596578]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047105804","ancestry":{"1":6200,"5":78,"34":13,"50":11,"51":50,"64":335,"73":216,"76":51,"87":165,"92":260,"94":632,"96":80,"101":112,"102":205,"103":185,"105":50,"108":3873,"109":906}},"geometry":{"type":"Point","coordinates":[-73.88352547975917,40.646389025072395]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051601","ancestry":{"1":5322,"5":89,"36":134,"40":47,"41":13,"42":99,"45":192,"49":135,"50":9,"51":16,"61":74,"67":25,"73":172,"87":166,"88":6,"94":1902,"96":30,"99":48,"101":993,"102":508,"103":111,"104":16,"105":186,"106":10,"108":2473,"109":420}},"geometry":{"type":"Point","coordinates":[-73.95671056967228,40.63862269466206]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047061003","ancestry":{"1":1824,"5":123,"6":4,"14":4,"16":6,"36":81,"40":75,"49":104,"64":192,"92":76,"108":1027,"109":217}},"geometry":{"type":"Point","coordinates":[-73.958695942156,40.58140902494214]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047061004","ancestry":{"1":6255,"3":62,"5":293,"6":76,"15":76,"16":117,"40":38,"42":28,"44":17,"46":22,"49":38,"51":85,"61":14,"63":242,"64":1427,"92":789,"108":2912,"109":410}},"geometry":{"type":"Point","coordinates":[-73.95576713962866,40.57987251408127]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047069601","ancestry":{"1":4279,"5":467,"6":213,"7":65,"10":82,"12":17,"14":49,"32":28,"36":18,"38":62,"40":25,"42":23,"44":26,"45":122,"49":133,"50":250,"51":163,"61":125,"63":45,"64":94,"73":39,"76":17,"79":8,"87":14,"91":16,"92":125,"94":983,"96":63,"99":68,"101":294,"102":308,"103":273,"105":35,"107":24,"108":1088,"109":499}},"geometry":{"type":"Point","coordinates":[-73.91513112433691,40.626805015762]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047069602","ancestry":{"1":6339,"3":32,"5":456,"6":140,"10":140,"35":46,"38":49,"40":90,"42":183,"44":109,"45":154,"46":15,"49":331,"50":209,"51":1073,"53":227,"59":13,"61":235,"62":56,"63":11,"64":558,"73":4,"76":2,"87":2,"92":39,"94":832,"99":98,"101":291,"102":83,"103":263,"105":97,"108":2252,"109":516}},"geometry":{"type":"Point","coordinates":[-73.90963526581714,40.62237243149585]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047079801","ancestry":{"1":2951,"5":116,"18":15,"22":9,"34":8,"35":14,"36":80,"40":41,"42":132,"46":15,"49":95,"51":107,"53":14,"61":104,"64":41,"67":37,"70":10,"73":125,"87":125,"89":31,"91":15,"93":7,"94":898,"96":86,"99":139,"101":24,"102":280,"103":175,"105":210,"108":1363,"109":237}},"geometry":{"type":"Point","coordinates":[-73.95871857875827,40.660010890105475]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047079802","ancestry":{"1":5805,"5":351,"6":225,"7":21,"12":28,"14":28,"15":148,"21":14,"23":35,"26":15,"31":19,"34":21,"35":88,"36":55,"39":23,"41":17,"42":166,"45":629,"48":21,"49":181,"51":110,"61":21,"64":90,"73":83,"87":83,"89":18,"93":22,"94":1998,"96":206,"99":283,"101":295,"102":705,"103":482,"105":139,"108":1767,"109":585}},"geometry":{"type":"Point","coordinates":[-73.96137122748867,40.65799075203781]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047105801","ancestry":{"1":6654,"5":468,"38":16,"42":104,"44":46,"45":46,"49":46,"51":145,"61":735,"64":387,"70":13,"73":230,"87":230,"92":49,"94":551,"96":48,"101":283,"102":111,"103":44,"105":110,"108":4091,"109":327}},"geometry":{"type":"Point","coordinates":[-73.88059590596899,40.64922063744028]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022703","ancestry":{"1":1871,"5":12,"49":6,"51":10,"64":18,"73":200,"76":106,"79":14,"87":65,"88":15,"94":7,"103":7,"108":1451,"109":192}},"geometry":{"type":"Point","coordinates":[-73.91052042933623,40.84403650218047]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022901","ancestry":{"1":5184,"5":41,"34":10,"36":10,"38":10,"44":21,"45":29,"73":575,"79":19,"87":171,"88":385,"94":95,"102":29,"106":66,"108":3625,"109":837}},"geometry":{"type":"Point","coordinates":[-73.90721907391679,40.84609275445489]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023000","ancestry":{"1":3340,"3":135,"5":11,"6":211,"15":211,"23":7,"32":9,"36":8,"38":13,"40":9,"42":37,"45":21,"49":72,"51":207,"61":9,"62":11,"73":25,"76":16,"79":9,"108":2605,"109":93}},"geometry":{"type":"Point","coordinates":[-73.86601542317086,40.849287265366435]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023200","ancestry":{"1":2772,"3":135,"5":35,"6":76,"9":11,"14":44,"15":21,"19":8,"22":10,"24":23,"34":3,"36":3,"38":4,"40":5,"42":52,"44":12,"45":15,"49":89,"51":255,"61":6,"62":5,"108":1951,"109":235}},"geometry":{"type":"Point","coordinates":[-73.863316429205,40.84697457593651]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023302","ancestry":{"1":3247,"5":41,"26":9,"36":10,"46":10,"51":4,"73":127,"76":55,"87":33,"88":39,"94":90,"99":7,"101":6,"103":77,"108":2744,"109":292}},"geometry":{"type":"Point","coordinates":[-73.90472911360648,40.84818520705681]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023502","ancestry":{"1":4652,"5":8,"6":49,"10":14,"11":35,"34":51,"45":64,"49":8,"51":21,"73":160,"76":53,"87":56,"88":75,"91":19,"94":103,"97":7,"99":26,"101":15,"102":36,"105":19,"108":3977,"109":284}},"geometry":{"type":"Point","coordinates":[-73.90346956885423,40.85129261679486]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023600","ancestry":{"1":2206,"3":213,"5":9,"6":151,"15":151,"36":3,"42":5,"44":3,"45":6,"49":9,"51":90,"61":4,"73":37,"87":37,"94":87,"103":15,"105":72,"108":1547,"109":63}},"geometry":{"type":"Point","coordinates":[-73.86725833426384,40.845090717682524]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023900","ancestry":{"1":8347,"5":168,"22":19,"40":51,"42":56,"45":46,"46":25,"49":15,"51":45,"73":295,"76":100,"87":126,"88":69,"94":175,"99":48,"101":20,"102":58,"105":68,"108":7350,"109":370}},"geometry":{"type":"Point","coordinates":[-73.90286817528565,40.85891337179202]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024000","ancestry":{"1":4244,"3":33,"5":123,"23":12,"36":28,"45":100,"49":12,"51":104,"73":354,"80":26,"87":328,"88":26,"93":28,"94":248,"96":13,"99":12,"102":62,"103":39,"105":122,"108":3190,"109":116}},"geometry":{"type":"Point","coordinates":[-73.86887842604551,40.8416183242682]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024300","ancestry":{"1":5685,"3":6,"5":297,"36":2,"45":12,"51":21,"59":20,"73":303,"76":150,"87":91,"88":62,"94":191,"97":21,"102":161,"103":9,"108":4966,"109":146}},"geometry":{"type":"Point","coordinates":[-73.91153448927292,40.85242817638891]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024600","ancestry":{"1":2198,"3":224,"35":7,"36":27,"40":5,"42":97,"46":18,"49":59,"50":36,"51":593,"61":15,"64":12,"67":22,"68":7,"94":11,"103":11,"107":9,"108":1137,"109":150}},"geometry":{"type":"Point","coordinates":[-73.86115569350909,40.851609870812034]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024700","ancestry":{"1":1856,"3":66,"5":103,"21":5,"38":11,"73":329,"76":158,"79":40,"87":131,"94":49,"101":5,"102":44,"108":1295,"109":106}},"geometry":{"type":"Point","coordinates":[-73.91840817256863,40.855465122747745]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024800","ancestry":{"1":3544,"3":516,"5":137,"6":15,"10":15,"22":25,"23":12,"36":51,"38":11,"40":72,"42":53,"44":23,"46":4,"49":137,"51":861,"55":48,"61":7,"64":26,"91":23,"92":37,"94":36,"102":24,"103":8,"105":4,"108":1452,"109":293}},"geometry":{"type":"Point","coordinates":[-73.85840971495477,40.855340954634116]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024900","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.91314132372275,40.857437531788015]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025000","ancestry":{"1":2817,"3":626,"5":115,"19":16,"24":17,"34":1,"36":23,"42":168,"45":11,"46":31,"49":134,"51":776,"61":9,"93":10,"94":11,"99":11,"108":1079,"109":90}},"geometry":{"type":"Point","coordinates":[-73.85570055567796,40.85170643082688]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025300","ancestry":{"1":5970,"5":47,"35":11,"40":10,"42":18,"45":32,"49":19,"51":13,"64":12,"66":9,"73":136,"74":14,"79":21,"81":65,"88":36,"94":109,"102":13,"103":2,"105":94,"108":5423,"109":311}},"geometry":{"type":"Point","coordinates":[-73.90455490053257,40.8610068930414]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025400","ancestry":{"1":1959,"3":191,"5":8,"19":11,"21":5,"23":6,"36":42,"38":30,"40":4,"42":38,"45":22,"49":142,"51":814,"52":5,"59":27,"61":35,"66":4,"67":5,"94":92,"102":36,"103":15,"105":41,"108":723,"109":118}},"geometry":{"type":"Point","coordinates":[-73.85247732393763,40.848498533935775]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025500","ancestry":{"1":5764,"5":45,"45":47,"51":35,"73":276,"87":158,"88":156,"92":18,"94":88,"102":88,"108":4760,"109":530}},"geometry":{"type":"Point","coordinates":[-73.90894046241074,40.860535158453246]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025600","ancestry":{"1":1727,"5":72,"6":19,"10":19,"34":7,"36":11,"40":4,"42":52,"44":5,"49":73,"51":374,"63":21,"73":143,"87":143,"92":5,"94":33,"101":17,"102":16,"108":911,"109":123}},"geometry":{"type":"Point","coordinates":[-73.85021898056635,40.84439113413922]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025700","ancestry":{"1":1661,"5":21,"40":11,"45":6,"51":6,"73":63,"76":38,"88":25,"94":30,"101":6,"102":19,"103":5,"108":1347,"109":204}},"geometry":{"type":"Point","coordinates":[-73.91431262197167,40.86010916746479]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026100","ancestry":{"1":1710,"5":96,"6":12,"7":12,"23":14,"38":4,"42":9,"49":25,"51":39,"64":7,"73":175,"76":84,"79":48,"87":47,"93":1,"94":94,"99":17,"101":19,"102":35,"105":23,"108":1199,"109":130}},"geometry":{"type":"Point","coordinates":[-73.90590223001767,40.866638950038976]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026400","ancestry":{"1":5911,"6":41,"15":41,"19":43,"31":12,"33":18,"36":63,"41":17,"42":269,"44":23,"49":528,"51":1159,"55":63,"59":37,"61":13,"67":26,"73":30,"87":30,"90":43,"92":91,"94":18,"102":18,"108":3261,"109":727}},"geometry":{"type":"Point","coordinates":[-73.83208884312516,40.84178129236126]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026500","ancestry":{"1":6914,"5":33,"19":13,"36":21,"42":46,"45":70,"49":22,"51":42,"64":47,"73":191,"76":180,"87":11,"92":24,"94":140,"99":82,"102":4,"103":45,"105":9,"108":5656,"109":708}},"geometry":{"type":"Point","coordinates":[-73.90024117670521,40.86622341061429]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026601","ancestry":{"1":2911,"3":297,"5":22,"6":14,"7":14,"36":59,"42":124,"44":101,"49":123,"51":915,"58":54,"61":66,"64":34,"67":21,"73":8,"87":8,"94":43,"105":43,"107":21,"108":1236,"109":152}},"geometry":{"type":"Point","coordinates":[-73.83410528859744,40.84745209218429]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026602","ancestry":{"1":5488,"3":110,"5":113,"16":11,"19":34,"33":39,"34":56,"36":140,"38":44,"42":88,"44":139,"46":159,"49":486,"51":1293,"55":62,"59":48,"61":78,"62":17,"64":14,"67":18,"73":1,"87":1,"92":15,"93":17,"94":177,"99":7,"102":55,"103":115,"108":2915,"109":371}},"geometry":{"type":"Point","coordinates":[-73.83062022221388,40.84597299777993]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026900","ancestry":{"1":3318,"5":47,"6":65,"9":65,"22":4,"38":9,"42":23,"44":9,"49":9,"51":14,"63":13,"68":24,"73":59,"76":6,"79":13,"87":40,"94":84,"99":25,"101":38,"102":11,"105":10,"108":2685,"109":349}},"geometry":{"type":"Point","coordinates":[-73.90854256270613,40.867637192613216]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005027300","ancestry":{"1":8429,"5":126,"6":7,"11":7,"19":16,"36":45,"40":10,"42":15,"44":95,"49":55,"51":163,"61":43,"62":14,"64":16,"73":233,"76":167,"87":24,"88":42,"93":26,"94":142,"101":49,"105":93,"108":7012,"109":758}},"geometry":{"type":"Point","coordinates":[-73.903229193072,40.873894494782746]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005027600","ancestry":{"1":62,"40":4,"66":4,"73":20,"79":20,"109":38}},"geometry":{"type":"Point","coordinates":[-73.82160077260478,40.8547259342189]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005027700","ancestry":{"1":5591,"5":90,"6":11,"7":11,"14":11,"23":26,"36":14,"41":9,"44":92,"46":49,"49":212,"51":8,"53":11,"63":17,"64":22,"66":11,"73":357,"75":80,"76":191,"79":6,"83":19,"87":61,"94":122,"99":20,"102":82,"103":20,"108":4161,"109":606}},"geometry":{"type":"Point","coordinates":[-73.90146339869703,40.87840651264266]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005027900","ancestry":{"1":6985,"3":56,"5":37,"6":102,"14":102,"19":17,"31":5,"32":13,"34":19,"35":99,"36":74,"38":28,"40":13,"42":78,"44":59,"45":32,"46":14,"49":262,"50":26,"51":230,"61":191,"62":35,"63":42,"64":131,"67":14,"73":111,"79":91,"87":20,"92":28,"94":252,"101":4,"102":146,"104":97,"105":5,"108":5320,"109":367}},"geometry":{"type":"Point","coordinates":[-73.89726726954811,40.88256092671098]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36005028300","ancestry":{"1":3390,"31":1,"40":10,"42":40,"44":9,"49":17,"73":11,"87":11,"93":22,"94":134,"101":61,"102":48,"103":16,"105":9,"108":3042,"109":224}},"geometry":{"type":"Point","coordinates":[-73.906921473857,40.875784201782004]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028300","ancestry":{"1":3390,"31":1,"40":10,"42":40,"44":9,"49":17,"73":11,"87":11,"93":22,"94":134,"101":61,"102":48,"103":16,"105":9,"108":3042,"109":224}},"geometry":{"type":"Point","coordinates":[-73.90247413183279,40.88074443950006]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028400","ancestry":{"1":707,"5":3,"6":19,"14":19,"36":2,"49":24,"51":48,"53":11,"61":11,"64":5,"93":7,"94":37,"102":37,"108":473,"109":108}},"geometry":{"type":"Point","coordinates":[-73.83869021954816,40.84943673055674]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028500","ancestry":{"1":3079,"3":193,"5":37,"6":44,"7":19,"10":10,"14":5,"15":10,"26":42,"28":8,"35":12,"36":75,"38":13,"40":20,"42":80,"44":11,"46":70,"48":52,"49":307,"51":179,"58":40,"61":47,"63":4,"64":224,"67":9,"68":30,"69":14,"73":25,"80":20,"87":5,"89":19,"92":69,"94":11,"96":11,"108":1506,"109":298}},"geometry":{"type":"Point","coordinates":[-73.90256675932518,40.88642956351209]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36005028900","ancestry":{"1":4027,"3":20,"5":120,"6":129,"14":129,"16":6,"19":11,"22":5,"23":8,"34":16,"36":17,"40":13,"41":7,"42":123,"44":24,"45":8,"49":454,"50":8,"51":60,"63":71,"64":81,"66":9,"73":5,"79":5,"91":8,"92":15,"94":136,"102":136,"107":22,"108":2773,"109":350}},"geometry":{"type":"Point","coordinates":[-73.90804248740822,40.87748030007161]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028900","ancestry":{"1":4027,"3":20,"5":120,"6":129,"14":129,"16":6,"19":11,"22":5,"23":8,"34":16,"36":17,"40":13,"41":7,"42":123,"44":24,"45":8,"49":454,"50":8,"51":60,"63":71,"64":81,"66":9,"73":5,"79":5,"91":8,"92":15,"94":136,"102":136,"107":22,"108":2773,"109":350}},"geometry":{"type":"Point","coordinates":[-73.90729310485743,40.87965881331159]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005029500","ancestry":{"1":4603,"3":42,"5":91,"6":27,"7":27,"19":29,"23":41,"26":28,"31":46,"34":14,"35":210,"36":261,"38":33,"40":11,"42":372,"44":11,"46":18,"48":31,"49":580,"50":49,"51":401,"59":15,"61":225,"63":15,"64":124,"67":23,"73":31,"88":31,"90":57,"91":11,"92":40,"93":9,"94":337,"96":9,"99":29,"102":286,"105":13,"108":2157,"109":422}},"geometry":{"type":"Point","coordinates":[-73.90856849548841,40.884939493082804]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005029600","ancestry":{"1":1842,"5":92,"22":44,"23":7,"24":7,"26":84,"34":14,"36":28,"38":4,"40":9,"42":62,"44":15,"48":23,"49":89,"51":221,"61":49,"63":12,"64":30,"73":58,"75":4,"87":54,"89":17,"92":10,"94":52,"99":8,"101":9,"102":25,"103":10,"108":937,"109":181}},"geometry":{"type":"Point","coordinates":[-73.84502218230602,40.85537210687693]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005030000","ancestry":{"1":5751,"3":41,"5":125,"6":198,"14":198,"22":13,"23":15,"30":14,"31":15,"36":71,"40":107,"41":13,"42":131,"44":85,"49":424,"51":1448,"58":27,"61":141,"63":13,"64":79,"89":15,"92":35,"94":140,"102":90,"103":40,"105":10,"108":2955,"109":522}},"geometry":{"type":"Point","coordinates":[-73.83122974232789,40.852194040702706]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005030100","ancestry":{"1":1367,"5":43,"19":11,"21":5,"23":28,"26":22,"33":18,"34":3,"35":48,"36":77,"37":4,"38":5,"40":45,"42":101,"44":6,"46":7,"49":182,"51":74,"54":5,"59":3,"60":6,"61":47,"62":13,"64":73,"66":10,"67":6,"69":5,"73":1,"88":1,"89":5,"92":5,"94":5,"96":4,"99":1,"108":669,"109":75}},"geometry":{"type":"Point","coordinates":[-73.91793382846504,40.883239898455976]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005030200","ancestry":{"1":9914,"5":297,"22":316,"34":12,"35":89,"36":21,"40":81,"42":136,"45":34,"46":25,"51":91,"61":98,"63":36,"64":81,"73":782,"74":67,"76":265,"87":450,"94":2043,"95":52,"96":46,"99":23,"102":802,"103":60,"105":1060,"108":5863,"109":648}},"geometry":{"type":"Point","coordinates":[-73.82212853919674,40.86369150624822]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005030701","ancestry":{"1":5283,"3":11,"5":542,"6":53,"10":53,"19":68,"23":57,"29":33,"31":17,"35":247,"36":123,"38":207,"40":38,"41":16,"42":265,"44":332,"46":110,"47":17,"48":11,"49":372,"50":29,"51":422,"58":43,"59":26,"61":476,"63":66,"64":443,"66":20,"67":51,"69":40,"90":32,"92":33,"94":30,"101":20,"103":10,"108":1936,"109":366}},"geometry":{"type":"Point","coordinates":[-73.91057417955017,40.89315130073037]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005031000","ancestry":{"1":4863,"3":221,"5":24,"6":14,"14":14,"19":22,"23":12,"36":26,"40":9,"42":175,"44":15,"49":277,"51":944,"59":9,"61":83,"63":4,"64":28,"65":4,"67":6,"73":8,"87":8,"89":9,"90":33,"91":10,"92":27,"93":20,"94":442,"97":6,"99":11,"101":14,"102":273,"103":8,"105":138,"107":20,"108":2627,"109":406}},"geometry":{"type":"Point","coordinates":[-73.83606605912516,40.86123796777536]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005031800","ancestry":{"1":2374,"3":328,"5":27,"6":40,"9":12,"12":28,"19":15,"35":32,"38":14,"42":47,"45":16,"46":36,"49":91,"51":467,"55":18,"61":6,"64":16,"67":10,"73":21,"87":21,"94":79,"101":13,"102":60,"105":6,"108":1029,"109":184}},"geometry":{"type":"Point","coordinates":[-73.85156772974476,40.86195455752362]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005031900","ancestry":{"1":647,"5":9,"19":2,"34":16,"36":12,"40":22,"42":65,"48":7,"49":243,"51":200,"59":7,"61":8,"62":10,"64":7,"67":9,"70":2,"73":4,"87":4,"89":22,"92":7,"94":27,"101":5,"102":22,"108":116,"109":71}},"geometry":{"type":"Point","coordinates":[-73.90681704380835,40.91283492592377]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005032300","ancestry":{"1":4489,"5":182,"6":75,"7":19,"15":56,"19":137,"20":126,"21":17,"22":23,"34":7,"36":152,"38":81,"40":80,"41":1,"42":159,"44":24,"46":206,"49":855,"51":234,"53":16,"56":12,"59":18,"61":110,"64":460,"73":41,"79":41,"90":38,"91":51,"94":32,"102":32,"107":80,"108":2287,"109":196}},"geometry":{"type":"Point","coordinates":[-73.90758043741597,40.905341899375436]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005032400","ancestry":{"1":2798,"5":58,"6":11,"14":11,"24":10,"36":35,"49":58,"51":133,"61":35,"73":31,"87":31,"94":307,"99":9,"102":152,"103":24,"105":122,"108":2239,"109":192}},"geometry":{"type":"Point","coordinates":[-73.85970517689755,40.86134153828972]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033400","ancestry":{"1":1329,"3":15,"5":6,"6":9,"7":9,"19":8,"24":10,"32":9,"36":10,"42":19,"49":40,"51":41,"61":6,"64":18,"73":139,"76":32,"78":5,"79":6,"87":67,"88":29,"92":5,"94":43,"102":17,"105":26,"108":902,"109":118}},"geometry":{"type":"Point","coordinates":[-73.87550163342084,40.85782127529261]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033600","ancestry":{"1":6587,"5":596,"45":35,"49":56,"51":16,"61":37,"63":57,"64":71,"73":172,"79":87,"87":85,"92":17,"94":717,"95":11,"99":34,"102":620,"105":86,"108":4336,"109":629}},"geometry":{"type":"Point","coordinates":[-73.86888531884185,40.86848958947492]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033800","ancestry":{"1":3876,"5":198,"6":82,"15":82,"36":48,"42":23,"46":11,"49":7,"51":64,"59":10,"61":7,"73":100,"79":17,"87":61,"88":22,"94":874,"99":34,"101":20,"102":769,"103":51,"108":2319,"109":237}},"geometry":{"type":"Point","coordinates":[-73.86581668659224,40.868438005912104]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005034000","ancestry":{"1":4459,"5":283,"6":225,"14":92,"15":133,"36":7,"39":7,"40":7,"45":19,"49":43,"51":57,"53":7,"61":22,"62":16,"64":6,"67":7,"73":173,"75":136,"79":102,"87":20,"88":17,"94":1017,"99":30,"102":924,"103":36,"105":55,"108":2441,"109":218}},"geometry":{"type":"Point","coordinates":[-73.86292315447179,40.868440519881496]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005034200","ancestry":{"1":1947,"5":63,"6":108,"14":108,"42":5,"44":22,"45":19,"46":6,"51":71,"61":19,"73":90,"79":51,"87":39,"93":19,"94":392,"96":6,"99":17,"102":255,"105":125,"108":1083,"109":173}},"geometry":{"type":"Point","coordinates":[-73.86002557684446,40.868416582617186]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005034300","ancestry":{"1":1697,"5":46,"19":9,"33":11,"35":34,"36":51,"38":12,"40":8,"42":31,"44":7,"46":5,"49":395,"51":49,"61":18,"64":79,"67":26,"69":64,"73":18,"87":18,"92":23,"94":73,"101":6,"105":67,"108":816,"109":166}},"geometry":{"type":"Point","coordinates":[-73.89817135273461,40.90966500523415]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005034400","ancestry":{"1":2288,"5":165,"16":12,"36":6,"40":17,"42":43,"45":134,"49":92,"51":33,"59":1,"61":7,"73":23,"87":23,"94":457,"97":6,"101":99,"102":351,"105":1,"107":138,"108":1193,"109":30}},"geometry":{"type":"Point","coordinates":[-73.85713170373614,40.868364390300286]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037800","ancestry":{"1":3062,"5":239,"6":164,"14":164,"42":1,"45":7,"49":9,"51":11,"73":80,"76":36,"87":44,"94":1098,"99":27,"101":104,"102":879,"105":99,"108":1372,"109":138}},"geometry":{"type":"Point","coordinates":[-73.86661526958403,40.87978170640097]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037900","ancestry":{"1":5225,"5":98,"26":5,"40":29,"49":30,"51":12,"64":97,"73":745,"76":196,"87":367,"88":182,"94":213,"99":80,"102":69,"105":74,"108":3657,"109":402}},"geometry":{"type":"Point","coordinates":[-73.89877759600371,40.851574258630116]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038000","ancestry":{"1":4362,"5":485,"41":10,"45":77,"49":35,"51":12,"73":492,"76":113,"79":118,"80":106,"87":101,"88":54,"94":928,"96":25,"99":79,"102":675,"103":15,"105":170,"108":2047,"109":447}},"geometry":{"type":"Point","coordinates":[-73.8624172363926,40.878087967208295]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038100","ancestry":{"1":6145,"5":128,"16":10,"22":23,"36":27,"45":91,"51":35,"73":298,"76":142,"81":19,"87":97,"88":40,"94":260,"102":160,"103":100,"108":4736,"109":758}},"geometry":{"type":"Point","coordinates":[-73.90115617092837,40.85201141001367]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038500","ancestry":{"1":5030,"5":23,"6":16,"11":16,"26":14,"49":9,"51":21,"73":470,"76":108,"87":44,"88":327,"94":102,"96":16,"99":44,"101":10,"102":13,"103":12,"105":23,"108":4098,"109":292}},"geometry":{"type":"Point","coordinates":[-73.89250555666445,40.85618266193467]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038600","ancestry":{"1":7448,"5":368,"35":51,"40":181,"42":10,"49":1,"51":9,"61":9,"73":917,"76":358,"79":165,"87":372,"88":36,"94":2683,"99":35,"101":150,"102":2069,"103":11,"105":418,"108":3037,"109":528}},"geometry":{"type":"Point","coordinates":[-73.84840012603976,40.87963547259258]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038700","ancestry":{"1":3023,"3":51,"19":11,"36":6,"38":33,"42":24,"44":7,"45":14,"49":66,"51":130,"61":7,"67":7,"73":142,"75":72,"87":70,"89":9,"91":11,"94":126,"101":1,"102":120,"105":5,"108":2049,"109":378}},"geometry":{"type":"Point","coordinates":[-73.88923088753971,40.858075293633334]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038900","ancestry":{"1":5528,"3":70,"5":96,"6":78,"11":78,"17":21,"33":16,"36":72,"40":123,"42":146,"44":17,"49":212,"51":616,"55":16,"61":50,"64":17,"67":38,"73":79,"79":30,"87":36,"88":13,"94":21,"101":21,"108":3792,"109":458}},"geometry":{"type":"Point","coordinates":[-73.8849976567394,40.85640008194021]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039100","ancestry":{"1":7201,"3":407,"6":220,"14":57,"15":163,"41":7,"42":80,"51":218,"55":282,"64":16,"73":110,"87":110,"93":17,"94":179,"97":45,"102":134,"108":5453,"109":370}},"geometry":{"type":"Point","coordinates":[-73.88712342843384,40.853119725228545]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039200","ancestry":{"1":1715,"5":60,"6":12,"14":12,"42":8,"45":38,"49":10,"51":20,"73":251,"76":18,"79":130,"87":103,"94":694,"97":35,"102":649,"105":10,"108":578,"109":115}},"geometry":{"type":"Point","coordinates":[-73.86473807373643,40.88328847844006]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039300","ancestry":{"1":7781,"3":38,"5":67,"34":15,"40":13,"48":29,"49":41,"51":83,"63":15,"64":25,"67":12,"73":371,"76":86,"88":285,"93":29,"94":170,"96":30,"99":10,"102":88,"105":42,"108":6393,"109":580}},"geometry":{"type":"Point","coordinates":[-73.88314367037049,40.85249768839326]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039400","ancestry":{"1":4702,"5":149,"19":3,"40":8,"42":19,"49":7,"51":96,"55":14,"61":4,"62":8,"64":6,"67":49,"73":485,"76":269,"87":168,"88":48,"94":1253,"99":12,"101":3,"102":1075,"103":10,"105":153,"108":2413,"109":325}},"geometry":{"type":"Point","coordinates":[-73.863399329328,40.886479158128374]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039700","ancestry":{"1":3862,"5":82,"19":20,"23":5,"29":6,"31":17,"34":10,"36":87,"38":9,"39":5,"40":117,"41":29,"42":278,"44":37,"46":5,"48":27,"49":880,"51":814,"59":7,"61":131,"62":7,"63":64,"64":77,"66":22,"67":37,"68":8,"70":8,"73":33,"76":13,"87":20,"89":32,"90":17,"91":5,"92":32,"93":14,"94":57,"101":11,"102":41,"103":5,"108":1361,"109":665}},"geometry":{"type":"Point","coordinates":[-73.88538781148098,40.861864833469994]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039902","ancestry":{"1":4786,"5":124,"18":22,"22":3,"36":13,"41":8,"49":3,"51":33,"53":73,"67":73,"73":222,"76":78,"88":144,"94":75,"99":9,"102":58,"103":8,"108":4157,"109":138}},"geometry":{"type":"Point","coordinates":[-73.89476486390922,40.86042383119688]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040100","ancestry":{"1":5457,"5":43,"6":46,"8":46,"34":21,"36":14,"40":9,"42":8,"44":25,"45":2,"49":43,"73":109,"76":83,"87":26,"94":128,"102":106,"103":18,"105":22,"108":4863,"109":264}},"geometry":{"type":"Point","coordinates":[-73.8976515398121,40.864611787917184]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040600","ancestry":{"1":3377,"5":91,"36":9,"42":8,"45":44,"61":8,"73":114,"79":46,"88":68,"94":1408,"97":115,"101":81,"102":793,"103":33,"105":386,"108":1726,"109":74}},"geometry":{"type":"Point","coordinates":[-73.8570053332023,40.88795111297558]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040701","ancestry":{"1":3260,"5":73,"6":36,"10":30,"14":6,"42":11,"45":95,"49":58,"51":24,"61":8,"73":124,"75":34,"76":90,"94":95,"101":95,"107":44,"108":2516,"109":229}},"geometry":{"type":"Point","coordinates":[-73.89026045668454,40.87157933689532]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040702","ancestry":{"1":6839,"3":610,"5":79,"6":68,"8":19,"12":49,"24":17,"31":20,"34":19,"42":49,"45":42,"49":65,"51":123,"64":12,"68":20,"73":143,"87":143,"94":272,"100":34,"102":134,"103":123,"105":25,"108":5201,"109":287}},"geometry":{"type":"Point","coordinates":[-73.88699723589691,40.869144446324]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005034500","ancestry":{"1":3325,"3":73,"5":33,"6":37,"10":37,"16":81,"23":13,"24":26,"26":20,"34":43,"35":13,"36":95,"40":10,"41":15,"42":92,"44":76,"46":14,"49":621,"51":240,"60":8,"61":92,"62":12,"63":13,"64":81,"67":32,"90":35,"91":21,"92":18,"93":37,"94":10,"95":10,"108":1868,"109":136}},"geometry":{"type":"Point","coordinates":[-73.89868994752248,40.9040602681348]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005035000","ancestry":{"1":1691,"5":24,"42":41,"49":44,"51":71,"73":62,"87":62,"94":622,"102":350,"105":272,"108":914,"109":53}},"geometry":{"type":"Point","coordinates":[-73.84825514672401,40.86852215918102]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018300","ancestry":{"1":6041,"4":12,"5":129,"6":177,"14":177,"16":171,"25":14,"29":14,"31":26,"34":26,"35":13,"36":151,"37":15,"38":194,"40":43,"41":19,"42":180,"44":77,"46":16,"49":544,"50":14,"51":328,"53":31,"61":129,"62":20,"63":253,"64":74,"91":26,"92":19,"93":17,"94":36,"101":36,"102":36,"107":13,"108":3476,"109":439}},"geometry":{"type":"Point","coordinates":[-73.91966868773878,40.74534100718997]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081070900","ancestry":{"1":2576,"5":62,"6":33,"11":33,"15":33,"16":27,"33":17,"34":8,"35":59,"36":46,"38":8,"40":11,"42":77,"44":32,"46":41,"48":8,"49":196,"50":16,"51":70,"61":96,"62":7,"63":8,"64":233,"67":2,"68":39,"69":107,"89":4,"92":29,"94":12,"103":12,"108":1290,"109":328}},"geometry":{"type":"Point","coordinates":[-73.85502056508184,40.71926520922239]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081006900","ancestry":{"1":4696,"3":8,"5":206,"6":279,"7":53,"9":9,"10":33,"11":80,"12":24,"14":80,"16":14,"22":39,"23":22,"24":52,"25":11,"29":69,"30":61,"34":15,"35":8,"36":84,"40":37,"41":16,"42":180,"44":402,"46":8,"48":8,"49":203,"51":467,"61":60,"62":8,"63":53,"64":65,"66":11,"67":30,"70":8,"73":22,"87":22,"91":18,"92":21,"94":9,"101":9,"107":82,"108":2239,"109":398}},"geometry":{"type":"Point","coordinates":[-73.92216449102207,40.7715036813204]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015900","ancestry":{"1":4242,"3":90,"5":97,"19":9,"22":136,"29":396,"31":21,"32":17,"36":111,"38":7,"40":19,"41":44,"42":191,"44":227,"49":356,"51":536,"55":16,"59":18,"61":188,"63":21,"64":32,"66":21,"67":15,"68":11,"70":9,"73":30,"79":13,"83":8,"84":9,"90":9,"91":15,"92":52,"94":12,"105":12,"107":37,"108":1580,"109":598}},"geometry":{"type":"Point","coordinates":[-73.91834248005111,40.7557869110048]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011600","ancestry":{"1":2419,"5":17,"36":4,"42":33,"44":6,"45":427,"49":21,"51":226,"56":10,"61":44,"63":35,"73":54,"87":54,"94":77,"103":41,"105":36,"108":1182,"109":521}},"geometry":{"type":"Point","coordinates":[-73.83880536442227,40.68877572149357]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055100","ancestry":{"1":5135,"3":143,"5":176,"6":116,"7":116,"16":8,"22":12,"24":15,"34":36,"36":12,"40":10,"42":94,"46":50,"49":135,"51":253,"55":94,"61":436,"63":459,"67":37,"68":207,"90":11,"92":24,"94":15,"101":12,"105":3,"107":17,"108":2817,"109":270}},"geometry":{"type":"Point","coordinates":[-73.9039117348746,40.70159506988554]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081048100","ancestry":{"1":6681,"5":78,"22":317,"36":13,"40":15,"42":77,"45":24,"46":33,"49":65,"51":78,"58":13,"59":11,"61":13,"64":33,"94":36,"101":9,"105":27,"108":5128,"109":942}},"geometry":{"type":"Point","coordinates":[-73.88505161947747,40.74221922874604]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046100","ancestry":{"1":3341,"2":11,"5":49,"6":13,"14":13,"36":23,"38":9,"40":7,"42":1,"44":76,"49":7,"51":8,"66":7,"91":60,"108":2631,"109":503}},"geometry":{"type":"Point","coordinates":[-73.871265540632,40.74171481185043]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081058500","ancestry":{"1":4630,"3":97,"5":77,"19":17,"24":26,"26":44,"31":5,"34":12,"36":20,"38":8,"42":146,"44":8,"46":23,"49":99,"51":327,"53":8,"61":732,"63":135,"64":5,"68":63,"71":7,"92":7,"94":32,"99":20,"100":12,"107":37,"108":2468,"109":376}},"geometry":{"type":"Point","coordinates":[-73.89942030369656,40.704370998655705]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081023600","ancestry":{"1":2537,"5":96,"6":98,"15":98,"23":6,"40":11,"42":34,"44":56,"45":50,"49":35,"51":5,"61":13,"64":22,"67":14,"73":6,"87":6,"93":8,"94":131,"101":87,"102":6,"103":26,"105":12,"108":1821,"109":260}},"geometry":{"type":"Point","coordinates":[-73.8049191010859,40.707343499729696]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081116300","ancestry":{"1":9076,"2":91,"5":246,"6":9,"9":9,"23":35,"34":16,"36":64,"38":16,"40":28,"42":126,"44":64,"45":6,"46":7,"49":134,"51":135,"61":59,"62":28,"64":220,"73":8,"87":8,"92":13,"93":6,"94":190,"101":132,"105":58,"108":7236,"109":699}},"geometry":{"type":"Point","coordinates":[-73.81920843603375,40.763817850371204]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081074700","ancestry":{"1":3193,"5":62,"6":33,"7":25,"11":8,"23":19,"36":1,"38":7,"40":20,"42":9,"45":1,"48":16,"49":38,"50":9,"51":48,"61":26,"63":12,"64":154,"73":16,"87":16,"92":24,"94":233,"101":188,"102":22,"105":28,"108":1981,"109":580}},"geometry":{"type":"Point","coordinates":[-73.84520651151448,40.7326162371602]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012100","ancestry":{"1":2090,"3":67,"5":121,"6":92,"9":26,"10":38,"15":54,"16":5,"19":5,"22":11,"23":27,"24":14,"29":7,"31":4,"32":1,"34":10,"35":43,"36":34,"38":30,"40":18,"41":10,"42":144,"44":202,"46":2,"48":22,"49":271,"51":308,"59":6,"61":60,"63":22,"64":31,"66":9,"67":23,"73":15,"88":15,"89":20,"92":39,"94":24,"96":10,"102":14,"107":22,"108":491,"109":281}},"geometry":{"type":"Point","coordinates":[-73.9035140746987,40.77275865278557]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014400","ancestry":{"1":2034,"5":9,"19":11,"36":7,"42":6,"45":171,"49":21,"51":4,"59":22,"61":5,"73":5,"79":5,"89":25,"92":11,"94":16,"103":16,"105":4,"107":8,"108":1499,"109":298}},"geometry":{"type":"Point","coordinates":[-73.82849617549402,40.69849684367855]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081032700","ancestry":{"1":3900,"5":135,"21":19,"22":11,"38":16,"40":22,"42":49,"44":27,"49":54,"51":79,"59":23,"61":11,"62":52,"73":59,"77":46,"87":13,"92":9,"94":55,"101":33,"102":22,"108":2674,"109":712}},"geometry":{"type":"Point","coordinates":[-73.885417629079,40.75843642125264]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053800","ancestry":{"1":1728,"5":25,"33":6,"45":5,"50":18,"51":20,"73":56,"76":5,"78":5,"79":38,"87":8,"94":830,"96":67,"99":5,"101":373,"102":269,"103":42,"105":84,"108":802,"109":23}},"geometry":{"type":"Point","coordinates":[-73.74253043552702,40.70647895057135]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050600","ancestry":{"1":1730,"5":418,"6":5,"14":5,"23":5,"36":19,"45":322,"51":41,"73":23,"87":23,"94":636,"96":42,"99":124,"101":128,"102":219,"103":122,"105":5,"108":412,"109":26}},"geometry":{"type":"Point","coordinates":[-73.75966884132444,40.70579299075418]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061000","ancestry":{"1":1641,"41":4,"42":33,"45":49,"49":20,"51":8,"63":30,"73":67,"74":2,"79":30,"87":35,"94":568,"101":3,"102":472,"103":31,"105":62,"108":786,"109":185}},"geometry":{"type":"Point","coordinates":[-73.74325036097352,40.690178237831]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081129102","ancestry":{"1":3367,"2":35,"5":200,"6":92,"15":92,"16":51,"18":13,"19":62,"21":22,"33":15,"34":8,"35":118,"36":42,"38":144,"40":12,"42":152,"44":107,"46":28,"49":162,"50":100,"51":258,"61":204,"63":7,"64":256,"67":4,"92":34,"94":2,"102":2,"108":1421,"109":298}},"geometry":{"type":"Point","coordinates":[-73.7543821910493,40.73163835685405]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027500","ancestry":{"1":6886,"19":50,"36":12,"39":39,"42":14,"44":52,"46":13,"49":99,"51":254,"52":51,"61":37,"63":13,"64":50,"73":87,"79":13,"87":33,"88":41,"108":5413,"109":897}},"geometry":{"type":"Point","coordinates":[-73.87556914581887,40.75215373310128]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026100","ancestry":{"1":7179,"3":104,"5":136,"34":10,"36":42,"40":16,"42":77,"44":120,"46":17,"49":188,"51":59,"59":31,"61":14,"62":37,"63":19,"73":28,"75":28,"93":14,"108":5373,"109":1142}},"geometry":{"type":"Point","coordinates":[-73.90060092117334,40.74721167401156]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081002000","ancestry":{"1":1861,"3":4,"5":23,"6":30,"15":30,"16":11,"23":3,"36":5,"42":58,"45":22,"49":37,"51":67,"61":13,"73":5,"80":5,"90":5,"94":12,"105":12,"107":16,"108":1365,"109":287}},"geometry":{"type":"Point","coordinates":[-73.8495159958109,40.6913525557551]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040900","ancestry":{"1":5407,"5":73,"44":26,"94":73,"99":18,"101":55,"108":4217,"109":1058}},"geometry":{"type":"Point","coordinates":[-73.8675921634972,40.74966297331998]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081120100","ancestry":{"1":1711,"5":18,"34":5,"38":6,"39":15,"41":5,"42":12,"44":25,"49":94,"51":98,"61":18,"70":20,"91":5,"94":2,"105":2,"108":1264,"109":250}},"geometry":{"type":"Point","coordinates":[-73.81405933027175,40.75321211940154]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081107201","ancestry":{"1":2058,"5":161,"23":12,"29":9,"32":37,"34":8,"36":67,"37":10,"40":15,"41":17,"42":631,"46":8,"49":963,"51":491,"53":6,"59":38,"61":102,"64":34,"66":16,"73":1,"87":1,"89":7,"91":4,"92":5,"94":1,"101":1,"108":137,"109":266}},"geometry":{"type":"Point","coordinates":[-73.82186537792848,40.60376891383177]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081058700","ancestry":{"1":3049,"3":136,"5":167,"6":78,"7":38,"15":40,"16":53,"19":7,"23":16,"31":9,"34":20,"36":16,"37":9,"42":173,"49":158,"51":205,"55":127,"56":9,"58":9,"61":662,"63":133,"68":281,"70":47,"71":17,"89":9,"90":33,"92":8,"93":9,"107":9,"108":801,"109":129}},"geometry":{"type":"Point","coordinates":[-73.90027835263986,40.707143925308934]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010100","ancestry":{"1":2470,"3":42,"5":97,"6":34,"7":27,"10":7,"19":19,"23":6,"29":22,"30":7,"31":11,"33":32,"34":19,"35":21,"36":44,"38":10,"40":15,"42":166,"44":450,"45":20,"46":41,"49":88,"51":322,"53":7,"61":59,"64":58,"67":39,"69":8,"70":59,"89":9,"92":7,"94":51,"103":51,"107":51,"108":811,"109":263}},"geometry":{"type":"Point","coordinates":[-73.91625575333964,40.77840322774058]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056200","ancestry":{"1":1665,"5":55,"6":41,"11":41,"23":22,"42":21,"44":34,"45":73,"49":57,"51":84,"59":4,"61":26,"62":17,"64":8,"92":9,"94":101,"99":10,"101":57,"102":34,"108":1107,"109":153}},"geometry":{"type":"Point","coordinates":[-73.73319468390487,40.7246382278448]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081024600","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.79649930080924,40.70120215950147]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081016400","ancestry":{"1":3689,"5":51,"6":18,"15":18,"42":87,"44":10,"45":708,"51":16,"73":25,"87":25,"94":462,"99":26,"101":29,"102":103,"103":90,"105":231,"108":2135,"109":314}},"geometry":{"type":"Point","coordinates":[-73.81655725601331,40.68508003302844]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081020200","ancestry":{"1":1573,"5":15,"45":222,"49":2,"94":505,"99":434,"102":37,"103":30,"105":4,"108":801,"109":33}},"geometry":{"type":"Point","coordinates":[-73.80781120795201,40.689757011494436]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050202","ancestry":{"1":1551,"5":91,"26":7,"38":2,"40":8,"45":97,"49":17,"52":9,"73":454,"79":315,"87":3,"88":136,"94":319,"99":28,"101":65,"102":186,"103":28,"105":12,"108":537,"109":50}},"geometry":{"type":"Point","coordinates":[-73.75929248694088,40.71018920329447]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059600","ancestry":{"1":1523,"5":104,"26":27,"36":3,"42":1,"45":12,"49":1,"73":19,"87":19,"94":476,"98":5,"101":75,"102":268,"103":42,"105":86,"108":894,"109":118}},"geometry":{"type":"Point","coordinates":[-73.73705648241601,40.697137224902626]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063000","ancestry":{"1":1750,"5":140,"26":44,"36":10,"38":1,"42":44,"45":17,"49":7,"51":6,"73":52,"87":52,"94":744,"96":16,"99":5,"101":92,"102":484,"103":26,"105":126,"108":740,"109":152}},"geometry":{"type":"Point","coordinates":[-73.74357940728423,40.680287830741406]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081022002","ancestry":{"1":6218,"5":296,"6":64,"15":64,"22":80,"23":18,"35":41,"36":47,"38":50,"40":95,"41":27,"42":183,"44":141,"45":232,"46":25,"48":101,"49":151,"50":80,"51":162,"61":161,"62":10,"63":71,"64":408,"65":38,"68":40,"73":242,"79":92,"85":137,"87":13,"89":6,"92":58,"94":566,"101":126,"102":72,"103":295,"105":73,"108":3271,"109":360}},"geometry":{"type":"Point","coordinates":[-73.81446409943027,40.7132006304761]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081085500","ancestry":{"1":6525,"2":129,"3":17,"5":70,"16":17,"31":14,"36":29,"38":10,"44":33,"46":25,"48":52,"49":82,"51":65,"67":14,"94":82,"99":18,"101":12,"102":35,"105":17,"108":5598,"109":469}},"geometry":{"type":"Point","coordinates":[-73.82363525246123,40.75964212337732]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011100","ancestry":{"1":3033,"3":58,"5":331,"6":40,"11":8,"15":32,"22":8,"23":38,"29":9,"30":8,"31":19,"34":9,"36":101,"40":25,"42":282,"44":230,"46":20,"48":17,"49":239,"51":359,"53":10,"56":24,"61":138,"62":14,"64":15,"67":16,"70":21,"73":10,"87":10,"89":21,"92":70,"94":20,"102":20,"107":8,"108":1059,"109":361}},"geometry":{"type":"Point","coordinates":[-73.90731311629253,40.7787953162537]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081067900","ancestry":{"1":3642,"2":8,"5":152,"6":41,"7":25,"8":8,"15":8,"16":17,"19":16,"24":54,"33":8,"34":9,"35":8,"36":55,"38":25,"40":22,"42":243,"44":10,"45":16,"46":35,"49":335,"51":267,"61":179,"62":10,"63":65,"64":227,"67":16,"69":21,"92":124,"94":49,"101":41,"103":8,"108":1997,"109":121}},"geometry":{"type":"Point","coordinates":[-73.87018389569957,40.72411794605948]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012000","ancestry":{"1":2360,"2":25,"5":5,"26":4,"36":4,"42":8,"45":48,"49":8,"51":39,"53":3,"61":3,"67":4,"70":5,"94":63,"99":16,"103":39,"105":8,"108":2036,"109":116}},"geometry":{"type":"Point","coordinates":[-73.82865360594656,40.691500961280916]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005700","ancestry":{"1":4566,"3":105,"5":200,"6":77,"7":38,"11":14,"12":18,"13":7,"14":14,"16":7,"19":9,"22":124,"23":10,"24":22,"26":18,"30":9,"31":19,"32":7,"34":16,"35":24,"36":182,"39":8,"40":100,"41":12,"42":163,"43":8,"44":165,"46":8,"49":206,"51":227,"53":50,"55":19,"59":15,"61":84,"62":34,"63":9,"64":17,"66":8,"67":18,"70":28,"90":8,"92":48,"93":8,"94":37,"103":8,"105":29,"108":2566,"109":502}},"geometry":{"type":"Point","coordinates":[-73.92567211345946,40.756954441945446]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081033700","ancestry":{"1":3471,"5":41,"6":7,"7":7,"45":79,"51":19,"64":16,"108":2987,"109":379}},"geometry":{"type":"Point","coordinates":[-73.88262806843923,40.758730756715714]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081037500","ancestry":{"1":3647,"2":14,"5":29,"6":13,"11":13,"22":11,"73":7,"87":7,"94":48,"101":48,"108":3167,"109":381}},"geometry":{"type":"Point","coordinates":[-73.8700007429622,40.75134777375831]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081085700","ancestry":{"1":5803,"5":128,"6":6,"11":6,"16":26,"22":19,"33":7,"35":7,"36":23,"42":22,"45":8,"46":14,"49":7,"51":254,"61":15,"64":15,"73":22,"76":9,"82":13,"87":9,"94":53,"101":46,"102":7,"108":4876,"109":444}},"geometry":{"type":"Point","coordinates":[-73.8230577650741,40.75706019838764]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062300","ancestry":{"1":1998,"3":178,"5":156,"6":41,"7":41,"16":94,"22":4,"29":50,"32":4,"34":13,"36":9,"38":12,"40":5,"42":136,"44":8,"46":4,"49":99,"51":387,"61":165,"63":86,"66":4,"68":8,"91":5,"92":4,"107":26,"108":525,"109":134}},"geometry":{"type":"Point","coordinates":[-73.87818471491907,40.704381211724936]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045900","ancestry":{"1":4172,"5":48,"29":9,"31":15,"36":9,"38":54,"40":12,"46":7,"49":47,"51":77,"61":10,"66":12,"108":3578,"109":452}},"geometry":{"type":"Point","coordinates":[-73.8706804595201,40.73987743931644]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081111300","ancestry":{"1":2612,"5":163,"6":17,"15":17,"16":21,"19":10,"24":17,"29":5,"30":15,"36":31,"37":6,"40":5,"42":106,"44":161,"46":36,"49":288,"51":257,"53":24,"61":179,"64":73,"70":6,"73":16,"87":16,"90":15,"92":17,"93":19,"94":2,"102":1,"105":1,"108":1418,"109":165}},"geometry":{"type":"Point","coordinates":[-73.76335295723719,40.767249607662116]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081140300","ancestry":{"1":2515,"5":53,"16":9,"21":6,"24":11,"26":4,"28":12,"32":3,"35":2,"36":43,"40":15,"42":17,"44":58,"46":18,"49":146,"50":2,"51":228,"53":1,"61":10,"62":6,"63":18,"64":50,"67":4,"70":4,"89":12,"92":4,"94":14,"96":14,"107":6,"108":1847,"109":138}},"geometry":{"type":"Point","coordinates":[-73.76960225921808,40.74816886058596]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005200","ancestry":{"1":2717,"5":20,"6":52,"10":22,"14":30,"36":20,"40":17,"42":33,"45":155,"49":44,"51":33,"61":27,"94":134,"96":25,"101":21,"102":7,"103":89,"104":9,"105":8,"108":1704,"109":585}},"geometry":{"type":"Point","coordinates":[-73.85466427759117,40.680759384190296]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081019800","ancestry":{"1":2943,"5":97,"45":506,"51":54,"73":38,"79":8,"87":19,"88":11,"94":442,"101":117,"102":131,"103":147,"105":47,"108":1715,"109":172}},"geometry":{"type":"Point","coordinates":[-73.8028033271759,40.69184465621388]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071900","ancestry":{"1":2402,"5":45,"32":6,"36":26,"37":12,"38":20,"42":59,"48":33,"49":111,"51":36,"61":12,"64":453,"68":5,"89":11,"91":6,"92":47,"94":14,"103":14,"108":1428,"109":239}},"geometry":{"type":"Point","coordinates":[-73.8556228376719,40.734687506649934]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026400","ancestry":{"1":2211,"5":53,"22":14,"42":5,"45":167,"51":66,"73":176,"79":115,"87":46,"88":15,"94":310,"96":29,"99":19,"101":69,"102":184,"103":9,"108":1338,"109":131}},"geometry":{"type":"Point","coordinates":[-73.78579035113407,40.692231785144266]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014100","ancestry":{"1":1825,"3":5,"5":51,"6":63,"7":48,"10":5,"11":10,"22":47,"24":119,"29":97,"34":13,"36":44,"38":21,"40":32,"42":72,"44":88,"48":34,"49":124,"51":230,"53":5,"56":12,"59":18,"61":24,"62":11,"63":50,"64":8,"67":13,"73":6,"87":6,"89":5,"93":14,"94":12,"103":12,"107":11,"108":676,"109":198}},"geometry":{"type":"Point","coordinates":[-73.906690056618,40.766990557272166]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081001400","ancestry":{"1":3860,"3":25,"5":66,"34":32,"36":28,"40":65,"41":8,"42":105,"44":11,"45":60,"46":40,"49":80,"51":262,"53":56,"56":25,"61":96,"63":6,"89":9,"93":9,"94":9,"102":9,"108":2724,"109":412}},"geometry":{"type":"Point","coordinates":[-73.85525001863508,40.69507876137347]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081052600","ancestry":{"1":1957,"5":583,"23":10,"36":74,"38":5,"45":108,"49":18,"51":46,"73":166,"79":10,"81":23,"87":4,"88":129,"94":543,"96":28,"99":44,"101":60,"102":334,"103":88,"105":5,"108":456,"109":85}},"geometry":{"type":"Point","coordinates":[-73.75976303859608,40.69709458852555]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081009700","ancestry":{"1":3492,"3":43,"5":44,"6":55,"11":55,"23":9,"26":9,"28":54,"29":46,"30":7,"31":19,"33":7,"35":16,"36":132,"38":30,"39":18,"40":16,"42":264,"44":602,"46":32,"48":10,"49":483,"51":686,"56":10,"59":42,"61":141,"62":28,"64":105,"65":17,"68":26,"70":34,"71":8,"89":49,"90":26,"93":33,"108":574,"109":709}},"geometry":{"type":"Point","coordinates":[-73.91860277578937,40.776481955234836]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081115900","ancestry":{"1":4378,"5":124,"19":7,"33":9,"35":10,"36":52,"42":50,"44":54,"45":29,"46":9,"49":63,"51":76,"61":65,"64":6,"67":10,"93":10,"94":63,"101":20,"102":34,"105":9,"108":3518,"109":397}},"geometry":{"type":"Point","coordinates":[-73.82075514526272,40.768639686760295]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081017900","ancestry":{"1":1039,"3":10,"6":106,"10":8,"15":98,"22":9,"23":14,"26":4,"29":10,"33":4,"42":13,"49":39,"51":19,"53":5,"61":12,"63":65,"67":13,"73":5,"87":5,"89":4,"91":6,"107":53,"108":646,"109":73}},"geometry":{"type":"Point","coordinates":[-73.93027726992433,40.74468926524305]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026700","ancestry":{"1":6417,"5":58,"6":8,"15":8,"16":7,"19":8,"23":14,"29":8,"36":6,"38":8,"40":15,"41":16,"42":80,"44":9,"49":112,"51":7,"61":8,"91":22,"108":5448,"109":795}},"geometry":{"type":"Point","coordinates":[-73.88803216543975,40.745327581911766]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010400","ancestry":{"1":3702,"5":31,"36":4,"42":6,"45":636,"49":60,"51":57,"53":6,"61":13,"62":6,"63":6,"94":519,"102":68,"103":199,"105":237,"106":15,"108":2185,"109":424}},"geometry":{"type":"Point","coordinates":[-73.8265465706576,40.68296819397006]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012601","ancestry":{"1":2596,"5":48,"6":11,"14":11,"22":54,"42":5,"45":144,"48":13,"49":37,"51":81,"53":4,"61":4,"73":12,"79":6,"87":6,"92":18,"94":162,"102":5,"103":157,"107":10,"108":1959,"109":281}},"geometry":{"type":"Point","coordinates":[-73.83741166487299,40.693653510181676]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081036100","ancestry":{"1":2998,"5":258,"42":2,"49":22,"51":52,"73":32,"87":32,"94":242,"99":19,"101":149,"102":49,"103":11,"105":46,"106":5,"108":2050,"109":454}},"geometry":{"type":"Point","coordinates":[-73.87241580026033,40.7612830140615]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040000","ancestry":{"1":1164,"5":161,"36":10,"45":78,"49":13,"73":21,"79":4,"87":17,"94":651,"96":48,"99":19,"101":67,"102":459,"103":16,"104":4,"105":46,"108":266,"109":57}},"geometry":{"type":"Point","coordinates":[-73.76486353335905,40.6981475991385]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045200","ancestry":{"1":974,"5":58,"19":3,"31":4,"36":5,"38":9,"39":4,"42":7,"45":7,"46":8,"49":86,"50":4,"51":56,"61":12,"64":32,"73":84,"79":3,"84":70,"87":11,"92":3,"94":25,"101":14,"105":11,"108":536,"109":79}},"geometry":{"type":"Point","coordinates":[-73.79955773590677,40.71457138204068]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081048000","ancestry":{"1":2877,"5":41,"6":4,"14":4,"22":1,"36":3,"42":13,"45":454,"46":12,"49":16,"51":29,"62":19,"73":24,"78":5,"79":18,"88":1,"94":417,"101":203,"102":26,"105":188,"108":1752,"109":209}},"geometry":{"type":"Point","coordinates":[-73.77300462250757,40.712889066033654]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081051200","ancestry":{"1":3068,"5":61,"42":6,"45":144,"49":26,"51":55,"62":24,"71":11,"73":253,"79":41,"87":253,"94":1230,"96":5,"101":583,"102":191,"103":93,"105":358,"108":1438,"109":92}},"geometry":{"type":"Point","coordinates":[-73.75011940601111,40.710410175845674]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053200","ancestry":{"1":1801,"5":479,"23":7,"42":169,"45":101,"51":141,"73":22,"83":10,"87":12,"94":541,"96":18,"99":14,"101":48,"102":288,"103":59,"104":38,"105":76,"108":433,"109":182}},"geometry":{"type":"Point","coordinates":[-73.74909204020861,40.70010260759757]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081059000","ancestry":{"1":1489,"5":135,"36":19,"42":9,"45":43,"48":19,"49":9,"73":49,"79":32,"87":17,"94":696,"99":17,"101":123,"102":364,"103":149,"105":43,"108":610,"109":145}},"geometry":{"type":"Point","coordinates":[-73.7369979057935,40.70125769601613]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081060300","ancestry":{"1":1839,"3":17,"5":64,"19":5,"23":6,"29":42,"36":17,"42":153,"44":14,"46":19,"49":375,"51":441,"61":153,"63":97,"64":4,"66":16,"67":40,"71":9,"92":6,"94":12,"102":12,"107":9,"108":755,"109":70}},"geometry":{"type":"Point","coordinates":[-73.89900116368169,40.71392193944913]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081063200","ancestry":{"1":2228,"5":50,"26":5,"38":4,"45":54,"51":30,"73":107,"76":16,"78":30,"79":8,"87":8,"88":45,"94":747,"95":6,"96":69,"97":15,"99":11,"101":93,"102":445,"103":75,"104":21,"105":66,"108":1225,"109":137}},"geometry":{"type":"Point","coordinates":[-73.74050872647786,40.67651638288703]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081066701","ancestry":{"1":2514,"3":79,"5":276,"16":29,"22":15,"24":11,"29":9,"31":10,"36":23,"40":17,"41":9,"42":224,"44":86,"46":55,"49":244,"51":794,"61":348,"63":36,"64":9,"89":18,"92":3,"108":343,"109":277}},"geometry":{"type":"Point","coordinates":[-73.89133654271382,40.721821966238615]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081070300","ancestry":{"1":1674,"5":16,"6":40,"7":27,"11":13,"22":10,"28":10,"34":5,"35":28,"36":4,"37":28,"38":18,"40":35,"41":48,"42":100,"44":20,"48":102,"49":102,"51":242,"59":5,"61":47,"63":12,"64":41,"68":32,"89":19,"92":75,"93":48,"108":675,"109":182}},"geometry":{"type":"Point","coordinates":[-73.85935680205696,40.71627942542797]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081076901","ancestry":{"1":3882,"3":120,"5":152,"19":63,"20":41,"22":15,"23":14,"29":19,"31":39,"34":17,"35":42,"36":121,"38":75,"42":367,"46":72,"48":113,"49":409,"51":297,"52":22,"59":32,"61":373,"62":19,"63":133,"64":238,"67":73,"92":37,"94":36,"101":18,"102":18,"108":1603,"109":342}},"geometry":{"type":"Point","coordinates":[-73.83756477814386,40.71645306509304]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081085300","ancestry":{"1":4624,"5":20,"34":14,"45":44,"49":29,"92":42,"94":2,"102":2,"108":3951,"109":556}},"geometry":{"type":"Point","coordinates":[-73.82765307694493,40.7571519896466]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081097202","ancestry":{"1":2407,"5":66,"34":149,"36":6,"40":7,"49":162,"51":5,"61":29,"73":411,"79":378,"87":33,"92":24,"94":139,"97":19,"99":5,"101":60,"102":24,"103":31,"105":7,"108":1433,"109":187}},"geometry":{"type":"Point","coordinates":[-73.7800929636423,40.591024802923414]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081041300","ancestry":{"1":4804,"5":25,"36":10,"44":46,"45":64,"49":60,"51":72,"108":3962,"109":565}},"geometry":{"type":"Point","coordinates":[-73.86130810907724,40.744736122168106]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081065501","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.8666470873535,40.71475237483708]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081077904","ancestry":{"1":6311,"5":407,"6":152,"8":60,"10":12,"15":80,"23":53,"26":43,"35":121,"36":32,"38":122,"42":92,"44":85,"46":16,"49":42,"50":446,"51":75,"53":5,"61":70,"63":76,"64":691,"67":5,"68":13,"73":6,"79":6,"89":5,"92":59,"93":22,"108":3532,"109":360}},"geometry":{"type":"Point","coordinates":[-73.81416463095952,40.720965139671264]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081114700","ancestry":{"1":1967,"5":76,"6":129,"10":129,"19":18,"29":20,"36":24,"42":43,"44":112,"46":25,"49":155,"51":313,"61":32,"62":4,"64":31,"89":4,"91":4,"92":9,"93":4,"108":1016,"109":136}},"geometry":{"type":"Point","coordinates":[-73.80195511602746,40.76826754698861]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081001600","ancestry":{"1":3193,"6":261,"7":23,"11":5,"14":233,"21":3,"34":28,"36":3,"40":4,"42":83,"49":62,"51":139,"53":12,"61":54,"67":4,"89":4,"94":50,"101":9,"103":41,"108":2245,"109":431}},"geometry":{"type":"Point","coordinates":[-73.85483949802035,40.68971775377806]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014201","ancestry":{"1":4347,"5":8,"6":15,"15":15,"40":7,"42":109,"45":361,"49":244,"51":46,"60":17,"67":24,"94":256,"101":32,"102":13,"103":170,"105":41,"108":3173,"109":462}},"geometry":{"type":"Point","coordinates":[-73.8246416712516,40.70097336989013]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081113300","ancestry":{"1":1671,"5":65,"6":115,"7":115,"22":15,"29":37,"31":5,"32":13,"34":4,"36":20,"40":11,"42":201,"44":154,"49":286,"51":420,"61":67,"62":5,"64":5,"66":10,"67":8,"69":4,"89":4,"108":487,"109":134}},"geometry":{"type":"Point","coordinates":[-73.78315190370708,40.76414938465459]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081115700","ancestry":{"1":3462,"5":187,"6":23,"10":23,"16":9,"30":23,"31":8,"34":31,"36":29,"42":19,"44":122,"46":16,"49":163,"51":186,"53":11,"61":36,"64":62,"91":9,"94":28,"102":20,"105":8,"108":2433,"109":267}},"geometry":{"type":"Point","coordinates":[-73.81516946784458,40.767573027381346]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081118500","ancestry":{"1":2122,"5":11,"16":16,"29":39,"36":42,"42":21,"44":87,"45":4,"49":29,"51":145,"53":9,"61":65,"63":42,"64":22,"66":18,"73":25,"75":25,"91":8,"94":9,"102":9,"108":1524,"109":156}},"geometry":{"type":"Point","coordinates":[-73.80380674434748,40.759467528101446]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081118700","ancestry":{"1":2325,"2":104,"5":26,"6":36,"13":36,"26":5,"31":3,"34":33,"36":16,"38":1,"40":10,"41":6,"42":67,"44":49,"49":69,"51":41,"59":5,"61":12,"65":6,"67":10,"89":5,"93":6,"94":19,"101":10,"103":9,"108":1739,"109":207}},"geometry":{"type":"Point","coordinates":[-73.81288016215473,40.75963208677555]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081121100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.80485510952508,40.745323692533205]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081137700","ancestry":{"1":6373,"2":108,"5":245,"6":4,"7":4,"19":38,"23":10,"24":11,"29":28,"34":30,"35":61,"36":52,"38":21,"40":14,"42":133,"44":182,"46":59,"49":202,"51":351,"61":62,"63":45,"64":180,"94":12,"102":12,"108":4171,"109":769}},"geometry":{"type":"Point","coordinates":[-73.75004591256028,40.74712583923953]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081145900","ancestry":{"1":2768,"5":17,"19":11,"29":72,"31":11,"32":7,"35":42,"36":57,"38":30,"40":14,"42":170,"44":168,"46":55,"49":155,"51":493,"63":9,"64":21,"68":5,"92":5,"93":6,"107":4,"108":1249,"109":443}},"geometry":{"type":"Point","coordinates":[-73.79196327857326,40.754220864960004]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081157102","ancestry":{"1":1996,"5":11,"23":2,"31":5,"34":8,"36":10,"40":5,"42":105,"44":15,"45":82,"46":18,"49":145,"51":77,"61":29,"62":32,"63":5,"67":10,"108":1435,"109":120}},"geometry":{"type":"Point","coordinates":[-73.72501882384717,40.73503535801559]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36081000100","ancestry":{"1":5928,"3":14,"5":310,"6":37,"10":14,"14":23,"18":27,"21":15,"22":61,"23":72,"24":124,"29":10,"31":21,"33":14,"34":10,"35":31,"36":249,"38":60,"39":17,"40":103,"41":49,"42":420,"44":161,"46":75,"49":738,"50":108,"51":693,"53":26,"59":79,"61":325,"62":42,"63":16,"64":336,"65":14,"66":26,"67":39,"71":16,"73":47,"87":47,"89":70,"90":28,"92":54,"93":10,"94":16,"103":8,"105":8,"108":2167,"109":498}},"geometry":{"type":"Point","coordinates":[-73.96144373293214,40.740390939767046]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081000100","ancestry":{"1":5928,"3":14,"5":310,"6":37,"10":14,"14":23,"18":27,"21":15,"22":61,"23":72,"24":124,"29":10,"31":21,"33":14,"34":10,"35":31,"36":249,"38":60,"39":17,"40":103,"41":49,"42":420,"44":161,"46":75,"49":738,"50":108,"51":693,"53":26,"59":79,"61":325,"62":42,"63":16,"64":336,"65":14,"66":26,"67":39,"71":16,"73":47,"87":47,"89":70,"90":28,"92":54,"93":10,"94":16,"103":8,"105":8,"108":2167,"109":498}},"geometry":{"type":"Point","coordinates":[-73.95065689871814,40.743205352987516]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081000400","ancestry":{"1":4929,"5":144,"31":6,"33":10,"40":10,"42":46,"44":56,"45":495,"46":24,"49":91,"51":136,"53":7,"61":71,"62":19,"73":123,"76":13,"86":110,"94":79,"101":24,"103":9,"105":46,"108":3236,"109":514}},"geometry":{"type":"Point","coordinates":[-73.86765096339379,40.68931448527562]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081000400","ancestry":{"1":4929,"5":144,"31":6,"33":10,"40":10,"42":46,"44":56,"45":495,"46":24,"49":91,"51":136,"53":7,"61":71,"62":19,"73":123,"76":13,"86":110,"94":79,"101":24,"103":9,"105":46,"108":3236,"109":514}},"geometry":{"type":"Point","coordinates":[-73.86477171904559,40.6896831520835]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081000600","ancestry":{"1":3871,"5":146,"23":9,"31":11,"33":7,"36":21,"40":19,"42":81,"44":8,"45":464,"49":106,"51":72,"73":18,"87":18,"94":89,"96":10,"99":20,"101":11,"102":18,"103":30,"108":2503,"109":580}},"geometry":{"type":"Point","coordinates":[-73.86689557844205,40.68640898725458]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081000600","ancestry":{"1":3871,"5":146,"23":9,"31":11,"33":7,"36":21,"40":19,"42":81,"44":8,"45":464,"49":106,"51":72,"73":18,"87":18,"94":89,"96":10,"99":20,"101":11,"102":18,"103":30,"108":2503,"109":580}},"geometry":{"type":"Point","coordinates":[-73.8637276346681,40.68590827454768]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081000700","ancestry":{"1":5247,"5":145,"6":13,"10":13,"19":106,"22":113,"23":29,"26":61,"34":14,"35":65,"36":280,"38":46,"39":19,"40":132,"41":81,"42":334,"44":66,"46":49,"48":53,"49":635,"51":665,"53":15,"59":61,"61":86,"62":106,"63":28,"64":112,"66":31,"67":276,"70":61,"90":55,"92":90,"93":57,"94":94,"101":16,"102":57,"105":21,"108":2229,"109":471}},"geometry":{"type":"Point","coordinates":[-73.9514086512224,40.74484318678793]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081000800","ancestry":{"1":3673,"5":25,"6":72,"11":72,"19":39,"34":6,"40":5,"42":49,"45":230,"46":15,"49":99,"51":147,"59":5,"61":38,"64":12,"66":5,"94":51,"102":7,"103":33,"105":11,"108":2467,"109":532}},"geometry":{"type":"Point","coordinates":[-73.85825866462585,40.68734728652801]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081001000","ancestry":{"1":3368,"5":37,"16":4,"19":12,"31":8,"34":58,"36":105,"42":37,"45":93,"49":163,"51":119,"53":25,"61":91,"66":15,"67":16,"89":6,"94":46,"101":15,"103":22,"105":9,"108":2369,"109":453}},"geometry":{"type":"Point","coordinates":[-73.85929869941012,40.690749280346864]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081001200","ancestry":{"1":4830,"3":8,"5":194,"6":44,"7":44,"19":18,"30":7,"34":8,"36":83,"38":7,"42":112,"45":89,"49":101,"51":371,"61":218,"64":8,"65":7,"70":22,"73":7,"87":7,"92":18,"94":116,"96":32,"102":55,"103":29,"107":8,"108":3422,"109":431}},"geometry":{"type":"Point","coordinates":[-73.8608412114681,40.694278393227094]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081001800","ancestry":{"1":3403,"5":76,"6":33,"7":33,"36":10,"40":37,"41":4,"42":69,"45":131,"49":56,"51":147,"53":5,"55":6,"62":4,"64":4,"69":5,"90":6,"92":12,"94":326,"103":224,"105":102,"108":2405,"109":245}},"geometry":{"type":"Point","coordinates":[-73.85201539855404,40.69028007990003]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081001900","ancestry":{"1":1343,"5":171,"6":5,"11":5,"16":6,"23":21,"24":44,"26":18,"33":5,"34":8,"36":111,"38":5,"39":7,"40":15,"41":11,"42":96,"44":17,"46":21,"49":6,"50":11,"51":148,"53":5,"61":20,"63":22,"64":12,"67":30,"70":6,"73":5,"87":5,"89":5,"92":5,"94":5,"105":5,"108":603,"109":125}},"geometry":{"type":"Point","coordinates":[-73.94503144042943,40.74856047961735]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081002200","ancestry":{"1":1918,"5":17,"6":4,"7":4,"15":4,"38":9,"42":55,"44":20,"45":62,"46":27,"49":132,"51":89,"53":58,"61":69,"89":4,"92":21,"94":54,"101":8,"102":5,"103":28,"105":13,"108":1322,"109":129}},"geometry":{"type":"Point","coordinates":[-73.8505706608647,40.69597769754022]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081002400","ancestry":{"1":2353,"5":30,"6":18,"15":18,"19":2,"23":4,"31":4,"34":1,"35":4,"36":1,"40":4,"42":50,"44":29,"45":30,"49":37,"51":47,"53":29,"56":4,"61":44,"64":7,"73":13,"88":13,"94":159,"101":64,"102":28,"105":86,"108":1455,"109":521}},"geometry":{"type":"Point","coordinates":[-73.84657554899506,40.69718815376189]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081002500","ancestry":{"1":6345,"5":310,"23":15,"36":62,"42":64,"49":34,"51":61,"73":60,"79":12,"87":48,"94":183,"101":39,"102":144,"108":4727,"109":1045}},"geometry":{"type":"Point","coordinates":[-73.94516445457927,40.75496057549644]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081002600","ancestry":{"1":2418,"5":17,"19":18,"34":5,"36":18,"38":7,"42":79,"45":126,"49":113,"51":28,"53":31,"59":3,"61":60,"62":6,"67":13,"73":158,"76":120,"87":38,"94":42,"98":7,"101":17,"102":12,"105":6,"108":1487,"109":329}},"geometry":{"type":"Point","coordinates":[-73.84309221588508,40.697260341148564]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081002800","ancestry":{"1":2782,"5":13,"19":23,"23":5,"31":4,"36":27,"38":19,"42":111,"45":352,"49":101,"51":352,"53":11,"61":66,"64":37,"94":24,"103":24,"108":1795,"109":144}},"geometry":{"type":"Point","coordinates":[-73.84437219833819,40.69238810341192]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003000","ancestry":{"1":1650,"3":10,"5":29,"6":46,"7":9,"14":37,"21":4,"24":6,"36":4,"42":14,"45":100,"46":5,"49":133,"51":70,"59":5,"61":38,"68":24,"94":43,"102":33,"106":10,"108":889,"109":315}},"geometry":{"type":"Point","coordinates":[-73.84726790616055,40.691641575765836]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003100","ancestry":{"1":1015,"5":6,"6":12,"11":12,"19":11,"22":131,"24":5,"36":27,"39":4,"40":6,"42":38,"44":11,"49":95,"50":9,"51":54,"55":10,"59":5,"61":38,"63":10,"67":5,"68":5,"89":20,"94":11,"102":11,"108":491,"109":161}},"geometry":{"type":"Point","coordinates":[-73.93390445321845,40.75317608496999]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003200","ancestry":{"1":1540,"42":13,"45":93,"49":30,"51":62,"61":74,"94":59,"99":18,"103":41,"108":993,"109":259}},"geometry":{"type":"Point","coordinates":[-73.84676699150572,40.68731543660989]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056400","ancestry":{"1":1749,"5":71,"6":23,"10":12,"14":11,"34":16,"36":73,"40":9,"42":44,"44":4,"45":37,"46":5,"49":102,"51":127,"59":23,"61":4,"62":57,"64":4,"67":5,"69":9,"89":9,"93":19,"94":169,"101":114,"105":55,"108":913,"109":231}},"geometry":{"type":"Point","coordinates":[-73.73340799743751,40.72155393414222]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081052000","ancestry":{"1":1765,"5":439,"36":47,"40":17,"42":7,"45":11,"50":8,"51":67,"61":3,"73":136,"86":86,"87":50,"94":699,"96":36,"99":12,"100":15,"101":112,"102":438,"103":101,"108":373,"109":142}},"geometry":{"type":"Point","coordinates":[-73.75468768523886,40.701139645371164]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027600","ancestry":{"1":1251,"5":6,"45":69,"51":43,"73":17,"87":17,"94":290,"101":145,"102":133,"103":12,"108":803,"109":93}},"geometry":{"type":"Point","coordinates":[-73.78623953183177,40.68758825622854]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081046000","ancestry":{"1":5979,"5":120,"6":132,"11":72,"15":60,"26":32,"43":7,"45":417,"49":10,"73":27,"88":27,"94":534,"96":25,"99":7,"101":333,"102":6,"103":157,"105":6,"108":4370,"109":438}},"geometry":{"type":"Point","coordinates":[-73.79348999502233,40.708256611565254]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081010800","ancestry":{"1":3242,"5":35,"6":19,"10":19,"33":4,"42":14,"45":382,"46":5,"49":57,"51":41,"53":15,"61":35,"62":44,"64":1,"94":168,"102":14,"103":74,"105":80,"108":2348,"109":178}},"geometry":{"type":"Point","coordinates":[-73.83059678902728,40.68860959992496]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081092500","ancestry":{"1":3739,"5":66,"6":161,"10":127,"12":22,"14":12,"22":30,"29":7,"33":21,"36":8,"42":168,"44":70,"46":9,"49":245,"51":232,"55":8,"59":10,"61":34,"62":19,"67":24,"89":21,"92":11,"94":16,"101":16,"108":2656,"109":408}},"geometry":{"type":"Point","coordinates":[-73.84476800610622,40.78248176212023]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081066900","ancestry":{"1":1611,"5":120,"6":20,"7":20,"16":21,"19":13,"24":16,"31":3,"34":12,"36":20,"42":125,"46":5,"49":231,"51":664,"55":15,"61":194,"63":62,"64":6,"68":4,"92":19,"108":183,"109":159}},"geometry":{"type":"Point","coordinates":[-73.88592161734059,40.72356697757026]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081023200","ancestry":{"1":5670,"2":119,"3":8,"5":98,"6":350,"15":350,"19":7,"22":40,"33":11,"36":9,"40":7,"42":98,"44":22,"45":436,"46":20,"49":57,"51":91,"53":6,"61":165,"64":130,"73":62,"80":37,"84":16,"87":9,"89":8,"92":8,"94":107,"101":70,"102":17,"104":20,"107":7,"108":3522,"109":526}},"geometry":{"type":"Point","coordinates":[-73.81128095819669,40.70958926465988]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081085900","ancestry":{"1":5457,"5":70,"19":33,"32":6,"42":53,"44":13,"46":34,"49":39,"51":28,"61":43,"63":12,"64":183,"92":24,"107":13,"108":4649,"109":343}},"geometry":{"type":"Point","coordinates":[-73.8207972468166,40.75498679306568]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005100","ancestry":{"1":2106,"5":138,"6":101,"7":55,"14":36,"15":10,"16":13,"22":24,"26":4,"31":84,"32":13,"34":4,"36":15,"38":20,"40":10,"42":14,"44":18,"45":28,"49":74,"51":181,"61":18,"62":5,"64":17,"66":4,"89":5,"93":20,"94":1,"102":1,"108":1284,"109":233}},"geometry":{"type":"Point","coordinates":[-73.93213814047543,40.75563976988748]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081124700","ancestry":{"1":3326,"2":10,"5":83,"6":137,"15":137,"19":41,"26":44,"32":21,"34":10,"35":22,"36":35,"38":25,"40":85,"42":81,"44":25,"46":30,"48":45,"49":66,"50":35,"51":111,"53":28,"59":7,"61":228,"63":18,"64":871,"70":15,"73":55,"75":46,"77":9,"90":10,"94":2,"102":2,"108":1602,"109":252}},"geometry":{"type":"Point","coordinates":[-73.79624394720604,40.72808115961773]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015300","ancestry":{"1":2083,"3":13,"5":31,"6":79,"11":13,"15":66,"22":83,"24":17,"29":45,"31":13,"35":11,"36":26,"38":29,"40":5,"41":4,"42":98,"44":45,"45":5,"46":16,"49":132,"51":166,"53":9,"61":57,"62":19,"64":25,"67":5,"68":17,"73":8,"88":8,"89":64,"90":11,"92":8,"93":5,"94":16,"105":16,"108":1029,"109":271}},"geometry":{"type":"Point","coordinates":[-73.91364741994083,40.758081636484164]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015100","ancestry":{"1":2700,"5":276,"6":73,"10":27,"14":46,"22":114,"23":8,"29":242,"31":21,"33":8,"34":9,"36":88,"40":105,"41":18,"42":151,"44":163,"49":278,"51":328,"53":8,"61":101,"63":9,"64":53,"66":8,"67":52,"70":8,"89":16,"90":21,"92":16,"108":728,"109":311}},"geometry":{"type":"Point","coordinates":[-73.91084430675794,40.76016698346404]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011400","ancestry":{"1":937,"5":9,"6":87,"7":65,"15":22,"42":13,"45":35,"49":39,"51":26,"94":26,"103":26,"108":742,"109":25}},"geometry":{"type":"Point","coordinates":[-73.84182855153908,40.687930860333736]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081101001","ancestry":{"1":10118,"5":598,"6":160,"7":4,"14":156,"16":5,"19":5,"22":5,"23":17,"26":10,"31":5,"33":14,"36":37,"38":29,"40":41,"42":93,"44":5,"45":81,"46":90,"49":126,"50":239,"51":365,"53":39,"61":369,"63":17,"64":399,"67":8,"73":201,"79":11,"87":190,"91":23,"92":5,"93":4,"94":540,"98":9,"101":26,"102":257,"103":112,"105":136,"108":6712,"109":776}},"geometry":{"type":"Point","coordinates":[-73.74927436632838,40.598036833407015]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081042600","ancestry":{"1":500,"5":32,"23":14,"31":6,"42":18,"44":7,"45":13,"46":7,"49":18,"51":22,"61":13,"64":12,"67":7,"73":10,"76":9,"87":1,"94":7,"101":6,"105":1,"108":288,"109":51}},"geometry":{"type":"Point","coordinates":[-73.77022974137266,40.68886991431318]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081038400","ancestry":{"1":2450,"5":197,"19":1,"23":5,"36":19,"41":5,"45":82,"49":5,"62":4,"64":1,"73":39,"79":39,"94":1250,"95":16,"96":68,"99":11,"101":370,"102":683,"103":78,"104":29,"105":13,"108":870,"109":106}},"geometry":{"type":"Point","coordinates":[-73.74763942736651,40.69334157078268]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061601","ancestry":{"1":2358,"5":146,"40":5,"42":6,"45":34,"61":5,"73":52,"87":52,"92":4,"94":858,"96":25,"101":374,"102":362,"103":5,"105":89,"106":3,"108":1226,"109":161}},"geometry":{"type":"Point","coordinates":[-73.73187529733397,40.68185538649796]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005500","ancestry":{"1":1125,"2":23,"3":43,"5":24,"6":13,"14":13,"22":43,"25":5,"36":19,"40":21,"42":24,"46":5,"49":32,"51":45,"61":21,"63":5,"64":13,"66":6,"67":5,"94":25,"103":17,"105":8,"108":710,"109":148}},"geometry":{"type":"Point","coordinates":[-73.9277887587446,40.75379479288282]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028300","ancestry":{"1":6619,"5":127,"6":102,"7":102,"16":16,"19":18,"21":15,"22":142,"23":48,"28":17,"34":82,"36":17,"38":87,"39":49,"40":50,"41":16,"42":179,"45":36,"46":39,"49":363,"51":239,"53":18,"59":17,"61":228,"62":36,"64":94,"66":14,"67":47,"89":19,"90":30,"92":33,"93":15,"94":20,"97":19,"102":1,"107":19,"108":4442,"109":769}},"geometry":{"type":"Point","coordinates":[-73.88486545631538,40.751173782943255]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081054900","ancestry":{"1":5431,"3":18,"5":129,"6":225,"7":186,"10":7,"15":32,"23":2,"24":6,"36":1,"41":7,"42":36,"49":108,"51":11,"61":336,"63":176,"66":7,"68":9,"73":40,"75":8,"79":7,"87":25,"94":21,"105":21,"108":4236,"109":154}},"geometry":{"type":"Point","coordinates":[-73.91118333451051,40.69988602895813]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081054900","ancestry":{"1":5431,"3":18,"5":129,"6":225,"7":186,"10":7,"15":32,"23":2,"24":6,"36":1,"41":7,"42":36,"49":108,"51":11,"61":336,"63":176,"66":7,"68":9,"73":40,"75":8,"79":7,"87":25,"94":21,"105":21,"108":4236,"109":154}},"geometry":{"type":"Point","coordinates":[-73.90781295891207,40.70219104412629]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081024700","ancestry":{"1":1477,"5":5,"6":37,"10":30,"15":7,"16":5,"36":5,"42":28,"46":5,"49":57,"51":16,"58":16,"61":17,"92":5,"108":1067,"109":267}},"geometry":{"type":"Point","coordinates":[-73.89944996586172,40.74227788521923]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081016100","ancestry":{"1":2444,"5":34,"6":23,"7":23,"16":12,"22":56,"29":5,"31":15,"35":11,"36":19,"41":10,"42":90,"44":158,"45":45,"46":26,"49":159,"51":163,"61":35,"62":6,"63":5,"64":62,"67":7,"89":10,"94":29,"96":6,"101":17,"102":6,"108":1659,"109":81}},"geometry":{"type":"Point","coordinates":[-73.91458623166321,40.75508187825017]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081017800","ancestry":{"1":2259,"5":9,"36":22,"42":6,"45":67,"49":6,"51":38,"73":20,"87":20,"94":644,"101":118,"102":5,"103":21,"105":500,"108":1289,"109":260}},"geometry":{"type":"Point","coordinates":[-73.80876058595645,40.67709110530769]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081027700","ancestry":{"1":7794,"5":259,"6":55,"7":40,"10":15,"19":12,"22":76,"24":27,"31":13,"36":129,"38":17,"40":14,"42":62,"43":15,"44":48,"45":32,"49":23,"51":14,"61":167,"62":38,"64":84,"67":13,"69":30,"89":37,"92":37,"94":41,"96":14,"102":27,"107":81,"108":5874,"109":1042}},"geometry":{"type":"Point","coordinates":[-73.87794492268853,40.75269418798985]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081004002","ancestry":{"1":1461,"5":5,"6":73,"11":16,"15":57,"34":13,"36":5,"42":42,"45":110,"49":77,"51":54,"67":4,"94":121,"103":121,"108":730,"109":316}},"geometry":{"type":"Point","coordinates":[-73.84299494412751,40.68153614143801]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081052500","ancestry":{"1":1719,"5":55,"6":22,"14":22,"22":9,"26":5,"36":28,"38":44,"40":28,"41":4,"42":138,"44":25,"46":10,"48":11,"49":176,"51":216,"53":9,"61":400,"63":16,"66":6,"67":19,"89":10,"108":653,"109":109}},"geometry":{"type":"Point","coordinates":[-73.90663746387064,40.71897032552233]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081040300","ancestry":{"1":7250,"5":38,"23":9,"36":12,"40":32,"42":7,"44":50,"51":95,"62":17,"66":7,"90":6,"94":117,"99":9,"102":108,"108":6530,"109":550}},"geometry":{"type":"Point","coordinates":[-73.86043259035604,40.750652342181226]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081045700","ancestry":{"1":3089,"5":19,"6":136,"7":77,"11":59,"22":10,"30":16,"40":7,"42":34,"49":39,"50":8,"51":11,"61":27,"63":8,"64":10,"92":8,"94":35,"103":35,"108":2244,"109":540}},"geometry":{"type":"Point","coordinates":[-73.8698382909303,40.737721705430374]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062500","ancestry":{"1":2377,"5":313,"6":24,"7":20,"13":4,"16":65,"18":5,"19":25,"26":9,"35":1,"36":34,"40":22,"42":356,"44":15,"46":32,"49":281,"51":341,"52":1,"53":10,"61":257,"62":6,"63":24,"64":27,"66":9,"68":93,"70":5,"71":9,"89":11,"92":54,"93":5,"94":5,"103":5,"107":33,"108":492,"109":186}},"geometry":{"type":"Point","coordinates":[-73.88241392093404,40.70413205515545]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081039900","ancestry":{"1":4290,"5":46,"6":9,"10":9,"45":59,"51":9,"108":3813,"109":354}},"geometry":{"type":"Point","coordinates":[-73.85358185798677,40.75180890126381]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012800","ancestry":{"1":2070,"5":34,"19":32,"28":11,"36":18,"38":5,"40":12,"42":79,"44":6,"45":49,"49":253,"51":227,"53":22,"61":54,"64":29,"73":17,"75":17,"87":17,"92":9,"94":12,"103":12,"108":1250,"109":205}},"geometry":{"type":"Point","coordinates":[-73.84011986317604,40.698254516867216]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081000200","ancestry":{"1":3288,"5":33,"6":8,"7":8,"22":15,"31":4,"38":5,"40":24,"41":8,"42":66,"44":23,"45":48,"49":117,"51":65,"53":13,"61":90,"63":23,"64":5,"73":17,"87":17,"94":53,"101":31,"105":22,"108":2433,"109":385}},"geometry":{"type":"Point","coordinates":[-73.86851538619098,40.69355793039885]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081000200","ancestry":{"1":3288,"5":33,"6":8,"7":8,"22":15,"31":4,"38":5,"40":24,"41":8,"42":66,"44":23,"45":48,"49":117,"51":65,"53":13,"61":90,"63":23,"64":5,"73":17,"87":17,"94":53,"101":31,"105":22,"108":2433,"109":385}},"geometry":{"type":"Point","coordinates":[-73.86612597951351,40.69328875758468]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081005900","ancestry":{"1":3754,"5":115,"6":94,"7":8,"11":30,"13":8,"14":33,"15":15,"20":8,"21":12,"22":97,"29":46,"32":7,"33":51,"36":25,"38":108,"40":38,"42":181,"44":361,"46":44,"48":8,"49":225,"50":9,"51":343,"52":8,"53":30,"55":14,"56":44,"58":16,"59":8,"61":110,"62":13,"63":13,"64":93,"65":8,"67":15,"68":27,"73":1,"87":1,"90":22,"91":19,"92":21,"94":50,"97":10,"101":8,"105":32,"107":20,"108":1550,"109":635}},"geometry":{"type":"Point","coordinates":[-73.92392556104653,40.75970059427958]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081014300","ancestry":{"1":4005,"3":15,"5":79,"6":280,"7":72,"11":191,"13":8,"15":9,"16":7,"19":17,"22":59,"23":7,"24":70,"29":87,"31":24,"33":8,"34":8,"36":32,"38":71,"40":16,"42":171,"44":178,"46":14,"49":173,"51":427,"55":33,"61":39,"63":8,"64":31,"66":9,"67":26,"68":54,"70":10,"73":16,"74":10,"87":6,"89":19,"90":8,"92":15,"93":15,"94":10,"101":10,"107":9,"108":1883,"109":485}},"geometry":{"type":"Point","coordinates":[-73.91151129022249,40.766299625328514]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081056000","ancestry":{"1":1431,"5":178,"42":19,"45":78,"49":68,"51":40,"59":1,"61":2,"62":27,"73":103,"87":73,"88":30,"92":2,"94":148,"101":131,"102":6,"103":9,"105":2,"108":710,"109":130}},"geometry":{"type":"Point","coordinates":[-73.73656345277769,40.72543518896459]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081058300","ancestry":{"1":3286,"3":40,"5":202,"6":35,"7":35,"19":53,"29":9,"36":36,"38":17,"42":124,"46":33,"49":224,"51":239,"61":490,"63":85,"64":27,"66":8,"70":9,"92":23,"94":10,"103":10,"107":20,"108":1683,"109":256}},"geometry":{"type":"Point","coordinates":[-73.89762026618695,40.70193799012648]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081072100","ancestry":{"1":4543,"3":55,"5":144,"6":75,"10":40,"15":35,"19":28,"22":11,"24":11,"35":59,"36":69,"38":91,"40":46,"42":125,"46":25,"48":29,"49":44,"51":115,"53":27,"61":49,"62":28,"63":80,"64":737,"67":13,"69":14,"89":38,"92":54,"94":116,"98":116,"108":2560,"109":449}},"geometry":{"type":"Point","coordinates":[-73.85373759549901,40.73118593428172]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081007300","ancestry":{"1":4452,"3":86,"5":322,"6":53,"7":30,"10":24,"13":15,"16":59,"22":14,"24":31,"29":88,"31":12,"34":14,"35":59,"36":157,"38":73,"40":15,"42":163,"44":197,"45":16,"46":40,"49":223,"50":12,"51":334,"54":15,"55":28,"59":33,"61":184,"63":73,"64":84,"67":115,"68":31,"70":16,"73":37,"76":21,"87":16,"89":24,"90":15,"91":30,"92":14,"94":32,"102":16,"105":16,"107":69,"108":1783,"109":527}},"geometry":{"type":"Point","coordinates":[-73.92537016660876,40.76699506180957]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081004401","ancestry":{"1":3691,"5":12,"6":49,"15":49,"42":90,"45":94,"49":40,"51":376,"61":64,"92":51,"94":91,"102":32,"103":49,"105":10,"108":2375,"109":581}},"geometry":{"type":"Point","coordinates":[-73.86290310792408,40.67908117373149]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081004401","ancestry":{"1":3691,"5":12,"6":49,"15":49,"42":90,"45":94,"49":40,"51":376,"61":64,"92":51,"94":91,"102":32,"103":49,"105":10,"108":2375,"109":581}},"geometry":{"type":"Point","coordinates":[-73.85937482042505,40.677167438242876]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081033401","ancestry":{"1":3753,"5":10,"34":9,"40":5,"45":114,"49":49,"64":17,"70":16,"73":83,"74":4,"79":33,"87":46,"94":1581,"96":16,"98":12,"99":53,"101":205,"102":1039,"103":169,"104":4,"105":94,"108":1692,"109":281}},"geometry":{"type":"Point","coordinates":[-73.76743643428286,40.67917637532537]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061200","ancestry":{"1":1493,"5":55,"33":5,"36":9,"42":5,"45":131,"51":14,"61":7,"73":75,"79":29,"87":46,"94":708,"96":4,"99":10,"101":96,"102":538,"105":60,"108":459,"109":131}},"geometry":{"type":"Point","coordinates":[-73.73672544761628,40.688291191338884]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081028500","ancestry":{"1":4944,"5":60,"6":230,"10":230,"19":6,"28":5,"34":31,"36":141,"37":15,"38":33,"39":14,"40":77,"42":201,"44":65,"46":35,"49":286,"51":367,"53":31,"61":114,"64":242,"67":37,"68":11,"73":16,"87":16,"90":16,"92":138,"108":3199,"109":178}},"geometry":{"type":"Point","coordinates":[-73.88711627888543,40.75146615331978]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081133900","ancestry":{"1":1401,"2":122,"5":99,"6":13,"7":13,"19":8,"29":13,"32":4,"35":24,"40":6,"41":10,"42":77,"44":52,"45":56,"46":4,"49":22,"51":62,"53":4,"61":97,"63":10,"64":150,"70":7,"91":4,"93":4,"94":6,"102":2,"106":4,"108":577,"109":131}},"geometry":{"type":"Point","coordinates":[-73.79003768777692,40.72864000240046]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081023800","ancestry":{"1":4552,"5":100,"6":66,"11":66,"42":17,"44":73,"45":442,"49":24,"73":135,"76":10,"79":32,"80":16,"81":35,"88":42,"94":81,"95":17,"99":7,"102":26,"103":31,"108":3469,"109":272}},"geometry":{"type":"Point","coordinates":[-73.80903748422482,40.705222069817125]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081074100","ancestry":{"1":3008,"5":168,"6":23,"11":23,"16":53,"19":29,"23":27,"26":27,"35":43,"36":9,"38":32,"40":20,"42":105,"45":8,"46":20,"48":8,"49":122,"50":46,"51":144,"58":26,"59":8,"61":184,"62":9,"63":85,"64":387,"67":15,"72":9,"73":9,"83":9,"92":55,"93":18,"94":7,"105":7,"108":1211,"109":420}},"geometry":{"type":"Point","coordinates":[-73.84704439424135,40.72828127149846]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081118900","ancestry":{"1":2722,"5":30,"23":13,"40":4,"42":57,"44":21,"46":9,"49":63,"51":36,"61":17,"62":5,"67":4,"89":4,"108":2404,"109":112}},"geometry":{"type":"Point","coordinates":[-73.81261354843451,40.75650549899264]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081013000","ancestry":{"1":1510,"36":25,"40":7,"41":11,"42":145,"45":15,"49":221,"50":29,"51":123,"59":11,"61":75,"63":42,"64":50,"66":3,"67":18,"89":29,"94":148,"99":15,"101":18,"103":115,"108":596,"109":222}},"geometry":{"type":"Point","coordinates":[-73.83783925828254,40.700348185488956]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099701","ancestry":{"1":2521,"5":61,"26":21,"29":18,"31":19,"32":91,"36":8,"38":24,"40":8,"42":128,"44":267,"46":41,"49":384,"50":23,"51":612,"53":8,"61":240,"62":22,"63":18,"64":106,"67":23,"91":7,"92":8,"108":793,"109":117}},"geometry":{"type":"Point","coordinates":[-73.78991247837557,40.78093587836809]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081011900","ancestry":{"1":1712,"5":155,"6":49,"7":17,"10":5,"15":27,"19":5,"22":14,"23":18,"26":17,"29":6,"30":21,"34":16,"36":53,"38":34,"39":16,"40":38,"41":6,"42":100,"44":226,"46":11,"49":47,"51":195,"55":4,"56":31,"59":11,"61":34,"62":11,"64":10,"66":21,"67":42,"70":5,"94":5,"99":5,"107":5,"108":479,"109":228}},"geometry":{"type":"Point","coordinates":[-73.90606408912014,40.771205444590365]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081035100","ancestry":{"1":4154,"5":168,"6":46,"15":46,"22":44,"42":32,"46":7,"48":24,"49":128,"51":50,"59":8,"61":58,"62":9,"63":8,"64":40,"68":21,"92":28,"108":3123,"109":613}},"geometry":{"type":"Point","coordinates":[-73.87704653969061,40.75909973100069]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081050400","ancestry":{"1":2034,"3":11,"5":257,"34":43,"36":29,"45":97,"49":20,"51":10,"60":9,"67":19,"73":14,"79":10,"87":14,"90":10,"94":894,"96":32,"101":90,"102":613,"103":103,"105":56,"108":671,"109":110}},"geometry":{"type":"Point","coordinates":[-73.76435860857107,40.70511963349909]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081043200","ancestry":{"1":1429,"5":10,"29":10,"45":34,"62":11,"94":525,"96":19,"97":46,"101":74,"102":393,"103":29,"105":8,"108":821,"109":42}},"geometry":{"type":"Point","coordinates":[-73.77589354161624,40.69134725387749]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081055600","ancestry":{"1":2574,"5":49,"6":11,"7":6,"14":5,"23":5,"40":6,"41":4,"42":33,"44":16,"45":140,"49":55,"51":109,"61":25,"62":78,"70":5,"73":18,"87":6,"88":12,"94":108,"101":41,"102":15,"103":3,"105":49,"108":1922,"109":199}},"geometry":{"type":"Point","coordinates":[-73.74500338744659,40.72555067923821]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025900","ancestry":{"1":3374,"5":51,"6":98,"7":12,"10":79,"14":7,"19":32,"22":16,"23":57,"29":28,"34":8,"42":41,"44":9,"48":13,"49":73,"51":45,"59":7,"62":10,"64":13,"71":7,"91":7,"94":6,"105":6,"108":2658,"109":372}},"geometry":{"type":"Point","coordinates":[-73.90352600423371,40.74857781014281]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081091900","ancestry":{"1":6444,"2":132,"5":191,"19":34,"21":22,"23":5,"31":9,"34":29,"35":5,"36":65,"37":4,"38":17,"40":57,"42":194,"44":16,"46":8,"48":7,"49":430,"50":14,"51":544,"55":11,"56":7,"61":159,"62":76,"63":4,"64":62,"67":5,"71":29,"73":14,"87":14,"89":8,"91":23,"93":5,"94":5,"105":5,"107":19,"108":4727,"109":155}},"geometry":{"type":"Point","coordinates":[-73.84555494297351,40.77728126945914]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081036300","ancestry":{"1":2225,"5":89,"42":7,"45":7,"49":7,"73":5,"87":5,"94":87,"97":25,"101":6,"102":56,"108":1789,"109":356}},"geometry":{"type":"Point","coordinates":[-73.8694173589333,40.75968381209332]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081037700","ancestry":{"1":3552,"5":86,"51":1,"73":13,"87":13,"94":189,"99":73,"101":67,"102":25,"103":6,"105":29,"108":3000,"109":378}},"geometry":{"type":"Point","coordinates":[-73.86871354673119,40.75566144029556]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081068300","ancestry":{"1":4589,"3":42,"5":15,"6":125,"14":125,"22":46,"46":1,"49":7,"50":25,"51":34,"61":66,"64":9,"73":74,"79":74,"90":10,"91":8,"94":31,"96":11,"101":10,"102":10,"108":3723,"109":447}},"geometry":{"type":"Point","coordinates":[-73.86908608728584,40.734975798195194]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061025700","ancestry":{"1":4470,"3":11,"5":196,"6":69,"10":50,"11":7,"15":12,"18":58,"19":15,"23":8,"26":28,"29":27,"34":35,"35":74,"36":78,"38":128,"40":57,"41":5,"42":123,"44":8,"45":28,"48":11,"49":153,"51":139,"59":35,"61":16,"64":77,"66":28,"67":10,"73":123,"75":21,"87":80,"88":22,"90":13,"94":445,"96":14,"97":18,"99":66,"101":174,"102":62,"103":69,"105":67,"108":2569,"109":387}},"geometry":{"type":"Point","coordinates":[-73.95407401284677,40.80843546664736]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061024200","ancestry":{"1":3709,"5":200,"36":8,"38":3,"41":20,"42":24,"45":30,"46":6,"49":33,"51":19,"53":7,"61":6,"62":16,"64":6,"73":95,"75":29,"84":18,"87":48,"94":146,"96":8,"99":3,"101":42,"102":52,"103":28,"105":21,"108":3161,"109":150}},"geometry":{"type":"Point","coordinates":[-73.93414293310423,40.80529983305636]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061024200","ancestry":{"1":3709,"5":200,"36":8,"38":3,"41":20,"42":24,"45":30,"46":6,"49":33,"51":19,"53":7,"61":6,"62":16,"64":6,"73":95,"75":29,"84":18,"87":48,"94":146,"96":8,"99":3,"101":42,"102":52,"103":28,"105":21,"108":3161,"109":150}},"geometry":{"type":"Point","coordinates":[-73.93075401451313,40.807018327277426]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008603","ancestry":{"1":4353,"5":510,"6":366,"8":45,"14":321,"19":76,"21":25,"22":65,"23":108,"26":15,"33":40,"34":135,"35":201,"36":400,"38":12,"40":142,"42":340,"44":134,"46":14,"48":36,"49":375,"50":34,"51":287,"53":56,"57":30,"59":18,"61":354,"62":14,"63":48,"64":476,"65":17,"66":45,"67":61,"73":108,"83":108,"90":37,"92":15,"93":17,"108":640,"109":244}},"geometry":{"type":"Point","coordinates":[-73.96439386901625,40.75402971567748]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047000502","ancestry":{"1":2632,"5":286,"6":20,"13":20,"18":7,"19":41,"23":89,"29":11,"31":8,"34":9,"35":106,"36":104,"38":58,"40":54,"42":207,"44":58,"46":30,"48":41,"49":453,"50":8,"51":233,"53":28,"58":6,"59":42,"61":205,"63":61,"64":187,"66":10,"67":61,"73":47,"85":47,"89":34,"90":11,"92":32,"93":6,"94":35,"102":35,"108":723,"109":147}},"geometry":{"type":"Point","coordinates":[-73.99286139500093,40.69513438038269]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035602","ancestry":{"1":4580,"5":321,"6":15,"10":15,"16":40,"19":16,"35":14,"36":39,"38":39,"42":48,"44":10,"46":42,"49":57,"51":32,"52":45,"59":14,"61":158,"63":14,"64":1095,"72":84,"91":15,"92":913,"93":14,"94":12,"101":12,"108":1692,"109":356}},"geometry":{"type":"Point","coordinates":[-73.97020437142531,40.57782984909345]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037401","ancestry":{"1":4177,"5":293,"6":81,"13":81,"19":18,"36":83,"40":36,"42":68,"44":27,"45":45,"49":65,"51":680,"52":13,"53":42,"61":93,"63":126,"64":661,"92":242,"107":70,"108":1718,"109":264}},"geometry":{"type":"Point","coordinates":[-73.96775497503486,40.587997860173594]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037402","ancestry":{"1":4367,"5":210,"16":55,"29":11,"34":33,"36":21,"42":53,"44":30,"46":11,"49":44,"51":386,"61":153,"63":136,"64":896,"92":735,"94":37,"102":37,"107":11,"108":1686,"109":239}},"geometry":{"type":"Point","coordinates":[-73.97200258097133,40.586788066284235]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050803","ancestry":{"1":2122,"5":38,"6":22,"11":17,"15":5,"16":5,"33":5,"36":70,"42":55,"45":57,"46":11,"49":38,"51":48,"59":13,"61":52,"62":9,"64":10,"67":9,"73":56,"87":45,"88":11,"92":12,"94":655,"96":7,"97":12,"99":75,"101":133,"102":228,"103":130,"105":86,"108":698,"109":400}},"geometry":{"type":"Point","coordinates":[-73.96062344958374,40.653908762753524]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050804","ancestry":{"1":5911,"5":259,"6":30,"10":16,"13":14,"19":18,"34":11,"35":25,"36":81,"38":156,"40":28,"42":153,"45":344,"49":94,"51":109,"61":6,"62":40,"64":36,"67":29,"73":35,"87":35,"94":1267,"96":112,"99":45,"101":442,"102":412,"103":250,"104":38,"105":43,"108":3244,"109":402}},"geometry":{"type":"Point","coordinates":[-73.96357300109416,40.65283495947414]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051002","ancestry":{"1":4716,"5":134,"6":8,"15":8,"23":52,"31":7,"33":16,"35":8,"36":52,"38":9,"40":44,"42":51,"45":277,"49":33,"51":18,"59":27,"64":16,"67":6,"70":7,"73":121,"76":7,"87":68,"88":46,"89":16,"90":7,"93":6,"94":1535,"96":69,"99":99,"101":715,"102":274,"103":296,"104":5,"105":53,"106":24,"108":2229,"109":363}},"geometry":{"type":"Point","coordinates":[-73.96036717030614,40.64875137061209]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047001500","ancestry":{"1":5240,"3":6,"5":233,"6":47,"9":15,"10":8,"11":15,"12":9,"15":15,"18":7,"19":21,"21":9,"24":24,"26":15,"31":9,"33":14,"34":17,"35":53,"36":180,"38":224,"39":13,"40":88,"41":19,"42":228,"44":76,"46":32,"49":247,"51":256,"59":13,"61":140,"64":207,"66":33,"67":66,"73":39,"79":11,"87":28,"89":21,"91":34,"92":28,"93":24,"94":195,"96":9,"101":22,"102":28,"103":43,"105":93,"108":3347,"109":314}},"geometry":{"type":"Point","coordinates":[-73.98298651772558,40.69425270652131]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047065200","ancestry":{"1":1277,"3":65,"5":169,"19":11,"22":19,"32":16,"34":5,"36":21,"38":37,"40":20,"42":61,"49":315,"50":23,"51":371,"61":83,"62":14,"64":51,"66":6,"89":5,"90":6,"94":57,"101":5,"102":18,"103":34,"108":207,"109":101}},"geometry":{"type":"Point","coordinates":[-73.93007269530099,40.61476200565553]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047068800","ancestry":{"1":1794,"5":154,"22":27,"23":4,"38":13,"40":6,"42":77,"44":21,"48":18,"49":161,"51":209,"61":14,"73":14,"87":14,"89":6,"94":652,"96":6,"99":6,"101":325,"102":239,"103":59,"105":23,"108":448,"109":146}},"geometry":{"type":"Point","coordinates":[-73.91910035970268,40.61721583804726]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047069200","ancestry":{"1":2582,"5":251,"6":22,"12":13,"14":7,"15":9,"19":7,"38":6,"40":24,"41":3,"42":34,"45":89,"49":80,"51":103,"64":4,"73":86,"87":18,"88":68,"89":11,"94":1028,"96":61,"99":138,"101":361,"102":281,"103":147,"105":40,"108":831,"109":231}},"geometry":{"type":"Point","coordinates":[-73.92008881953775,40.62367548626252]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047069800","ancestry":{"1":1373,"5":79,"6":12,"7":12,"36":10,"38":15,"41":22,"42":110,"44":14,"46":4,"49":145,"50":77,"51":361,"59":24,"61":42,"63":3,"64":61,"66":12,"92":28,"108":377,"109":285}},"geometry":{"type":"Point","coordinates":[-73.91569827181705,40.612980245701095]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047065800","ancestry":{"1":2226,"5":130,"6":45,"10":11,"14":34,"19":40,"31":32,"35":3,"36":80,"38":45,"40":42,"42":213,"44":69,"46":16,"49":445,"50":40,"51":622,"59":6,"61":85,"62":13,"63":33,"64":132,"67":17,"91":36,"92":74,"94":4,"103":4,"108":434,"109":276}},"geometry":{"type":"Point","coordinates":[-73.93120057908757,40.60808282777799]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047066000","ancestry":{"1":1957,"5":184,"19":11,"24":6,"31":9,"35":9,"36":26,"38":24,"40":8,"42":132,"44":53,"46":22,"49":269,"51":489,"52":12,"53":12,"59":6,"61":54,"64":128,"66":42,"89":6,"90":4,"92":30,"93":6,"108":571,"109":211}},"geometry":{"type":"Point","coordinates":[-73.92808004726224,40.6090465991938]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047066200","ancestry":{"1":1692,"5":63,"6":18,"7":18,"22":13,"36":19,"38":76,"40":22,"41":5,"42":70,"49":159,"51":522,"56":30,"61":27,"64":201,"67":1,"91":12,"92":39,"108":571,"109":134}},"geometry":{"type":"Point","coordinates":[-73.92437207540158,40.60930518418882]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047066600","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.91620623916934,40.59400753842169]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047067200","ancestry":{"1":1789,"5":95,"6":154,"7":48,"9":16,"12":83,"14":7,"45":56,"49":28,"51":12,"73":70,"79":70,"94":692,"96":21,"99":49,"101":349,"102":163,"103":112,"105":6,"108":407,"109":292}},"geometry":{"type":"Point","coordinates":[-73.92780422331941,40.61874714919058]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047067400","ancestry":{"1":1967,"5":161,"31":13,"36":34,"38":4,"40":27,"42":80,"44":34,"45":62,"49":133,"51":81,"61":70,"66":10,"67":35,"73":27,"84":7,"87":20,"94":609,"96":7,"97":11,"99":17,"101":242,"102":201,"103":68,"104":5,"105":58,"108":730,"109":172}},"geometry":{"type":"Point","coordinates":[-73.93027232542455,40.61983052036604]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047067600","ancestry":{"1":1933,"5":133,"6":18,"14":18,"23":8,"36":6,"42":61,"45":86,"49":6,"51":53,"61":16,"64":16,"73":52,"87":52,"92":6,"94":880,"96":75,"99":147,"101":365,"102":207,"103":58,"105":52,"108":670,"109":133}},"geometry":{"type":"Point","coordinates":[-73.92720103756511,40.62499499748046]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047068000","ancestry":{"1":2031,"5":92,"36":6,"42":9,"44":14,"45":30,"49":48,"51":124,"61":19,"64":3,"67":3,"73":78,"84":58,"87":20,"92":5,"94":647,"96":3,"97":14,"99":62,"101":243,"102":215,"103":43,"105":67,"108":868,"109":175}},"geometry":{"type":"Point","coordinates":[-73.9251878769069,40.62137637164269]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047068200","ancestry":{"1":2999,"5":98,"19":7,"22":24,"38":12,"42":23,"45":129,"49":186,"50":19,"51":332,"59":4,"61":42,"64":20,"73":50,"79":2,"87":48,"92":47,"94":1014,"96":6,"99":180,"101":685,"102":47,"103":64,"105":52,"108":1070,"109":208}},"geometry":{"type":"Point","coordinates":[-73.92413043827386,40.61664690855341]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047070000","ancestry":{"1":1799,"5":126,"6":37,"15":37,"29":1,"36":15,"38":37,"41":48,"42":56,"46":16,"49":101,"51":793,"53":18,"59":20,"60":138,"61":32,"64":62,"67":13,"94":41,"102":41,"107":37,"108":376,"109":109}},"geometry":{"type":"Point","coordinates":[-73.90674084595207,40.620045905267645]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047070201","ancestry":{"1":5852,"5":180,"6":287,"10":46,"14":182,"15":59,"19":25,"22":47,"26":16,"35":273,"36":26,"41":63,"42":128,"44":66,"46":59,"49":257,"50":498,"51":887,"59":176,"61":378,"63":23,"64":873,"91":10,"92":166,"93":19,"108":1579,"109":659}},"geometry":{"type":"Point","coordinates":[-73.90889055015094,40.609300800170345]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047070202","ancestry":{"1":16,"41":9,"108":7}},"geometry":{"type":"Point","coordinates":[-73.89187981613814,40.59322976805]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047070203","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.85889172725021,40.6114889038232]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047070203","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.83385480893095,40.617727436498704]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047072000","ancestry":{"1":2168,"5":244,"6":50,"14":50,"15":20,"45":26,"51":10,"61":16,"73":100,"79":99,"87":1,"92":11,"94":1085,"96":73,"99":78,"101":238,"102":526,"103":115,"105":55,"108":517,"109":221}},"geometry":{"type":"Point","coordinates":[-73.92004674001119,40.62885028098551]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047072200","ancestry":{"1":3111,"5":142,"23":4,"35":5,"38":5,"45":285,"49":3,"51":5,"73":124,"79":111,"87":13,"94":1410,"96":59,"99":104,"101":335,"102":623,"103":151,"105":138,"108":735,"109":517}},"geometry":{"type":"Point","coordinates":[-73.92438862186064,40.631999856679734]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047072400","ancestry":{"1":1989,"5":145,"23":3,"26":7,"42":14,"45":32,"49":26,"51":11,"73":44,"75":15,"83":20,"87":9,"94":1276,"96":41,"99":146,"100":11,"101":464,"102":500,"103":101,"105":23,"108":399,"109":126}},"geometry":{"type":"Point","coordinates":[-73.9270557106054,40.63410605542547]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047072600","ancestry":{"1":2329,"5":39,"36":5,"40":24,"42":17,"45":190,"49":24,"51":21,"73":49,"76":6,"87":43,"89":7,"94":1169,"96":91,"99":56,"101":337,"102":424,"103":119,"105":180,"108":819,"109":129}},"geometry":{"type":"Point","coordinates":[-73.93387617452069,40.63241390359646]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047073200","ancestry":{"1":2963,"5":150,"19":7,"36":13,"40":7,"42":9,"45":193,"46":7,"49":13,"51":8,"61":7,"73":86,"87":86,"94":1271,"96":186,"99":35,"101":275,"102":443,"103":72,"105":353,"108":798,"109":534}},"geometry":{"type":"Point","coordinates":[-73.93360628220921,40.627928117238014]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022000","ancestry":{"1":5000,"5":240,"6":25,"15":25,"16":23,"19":17,"21":26,"31":32,"32":31,"35":27,"36":33,"38":441,"46":760,"50":210,"51":31,"61":782,"63":152,"64":260,"92":17,"107":8,"108":1892,"109":603}},"geometry":{"type":"Point","coordinates":[-73.99555939950585,40.636163335119626]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022400","ancestry":{"1":6057,"3":77,"5":189,"6":65,"15":65,"21":37,"35":9,"36":26,"38":275,"42":18,"46":416,"49":33,"50":223,"51":236,"61":305,"63":17,"64":104,"90":14,"92":37,"108":3787,"109":441}},"geometry":{"type":"Point","coordinates":[-73.9903118201644,40.640515651531025]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022600","ancestry":{"1":2423,"5":67,"26":4,"35":91,"36":17,"38":6,"40":6,"42":18,"49":20,"51":116,"61":4,"64":4,"66":4,"94":5,"101":5,"108":1906,"109":200}},"geometry":{"type":"Point","coordinates":[-73.986347402617,40.641984029341344]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022700","ancestry":{"1":3449,"5":160,"6":42,"7":33,"10":9,"19":20,"23":43,"26":11,"29":20,"34":16,"35":9,"36":44,"38":22,"40":68,"41":9,"42":176,"44":31,"45":46,"46":23,"48":9,"49":176,"51":128,"55":9,"59":6,"61":32,"64":32,"66":11,"67":46,"73":168,"75":9,"76":10,"79":22,"87":127,"92":20,"93":27,"94":563,"96":104,"97":182,"99":31,"102":74,"103":23,"105":149,"108":1869,"109":182}},"geometry":{"type":"Point","coordinates":[-73.95725305472214,40.681508424533675]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022800","ancestry":{"1":3574,"3":60,"5":234,"6":29,"15":29,"19":9,"21":3,"32":11,"35":184,"38":72,"42":12,"44":5,"46":160,"48":2,"50":33,"51":18,"52":3,"61":207,"64":63,"67":5,"94":5,"105":5,"107":14,"108":2454,"109":285}},"geometry":{"type":"Point","coordinates":[-73.98152973182421,40.63912431062669]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023000","ancestry":{"1":4213,"5":353,"19":39,"31":9,"32":3,"34":8,"35":46,"36":53,"38":215,"42":41,"46":395,"49":38,"50":60,"51":139,"53":22,"55":46,"61":389,"63":25,"64":82,"73":21,"87":21,"92":21,"94":25,"96":25,"108":2282,"109":331}},"geometry":{"type":"Point","coordinates":[-73.98428115209141,40.637816051868306]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023100","ancestry":{"1":3434,"5":59,"6":24,"7":24,"18":109,"19":20,"22":14,"23":50,"26":35,"29":10,"31":11,"34":27,"35":121,"36":89,"38":161,"40":44,"41":11,"42":174,"44":35,"45":97,"46":21,"48":33,"49":243,"51":111,"58":10,"59":27,"61":66,"64":84,"73":65,"76":16,"87":65,"89":66,"93":25,"94":90,"95":14,"99":11,"101":44,"102":19,"103":21,"105":14,"108":1536,"109":561}},"geometry":{"type":"Point","coordinates":[-73.9608381643445,40.685786634352795]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023300","ancestry":{"1":4798,"5":95,"22":25,"23":2,"26":61,"29":15,"35":19,"36":83,"38":93,"42":59,"46":95,"48":11,"49":90,"51":67,"53":7,"58":15,"59":8,"61":21,"63":87,"64":15,"66":8,"68":12,"73":196,"87":196,"89":8,"91":9,"92":7,"94":405,"101":233,"102":53,"103":95,"105":24,"108":3149,"109":412}},"geometry":{"type":"Point","coordinates":[-73.95749006740986,40.688795710484435]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023400","ancestry":{"1":5453,"3":92,"5":367,"21":14,"23":26,"32":36,"35":7,"36":65,"38":86,"40":51,"42":70,"46":730,"50":43,"61":750,"63":217,"64":271,"70":7,"91":14,"92":9,"108":2405,"109":565}},"geometry":{"type":"Point","coordinates":[-73.98794070124468,40.63387119857926]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023500","ancestry":{"1":4306,"5":191,"22":2,"26":28,"29":14,"31":6,"34":7,"35":74,"36":237,"38":146,"40":65,"41":5,"42":220,"46":688,"49":156,"50":48,"51":64,"61":272,"63":38,"64":57,"67":7,"73":48,"87":48,"89":7,"94":96,"96":24,"101":8,"102":40,"105":24,"108":2271,"109":357}},"geometry":{"type":"Point","coordinates":[-73.95778486399857,40.69251301382654]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023600","ancestry":{"1":5470,"5":340,"6":18,"11":18,"19":26,"22":40,"23":8,"31":30,"32":47,"33":6,"35":77,"36":8,"38":169,"41":7,"42":25,"45":8,"46":1332,"50":45,"51":7,"61":570,"63":229,"64":154,"89":9,"90":37,"107":14,"108":2418,"109":467}},"geometry":{"type":"Point","coordinates":[-73.98968762285027,40.632190490647766]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022100","ancestry":{"1":4464,"5":162,"6":9,"14":9,"19":9,"21":13,"34":48,"35":52,"36":142,"38":72,"40":27,"41":29,"42":225,"44":17,"45":53,"46":25,"48":6,"49":110,"51":141,"53":10,"59":76,"61":122,"64":80,"65":9,"66":29,"67":34,"73":141,"77":13,"87":31,"88":97,"89":34,"90":19,"92":10,"93":23,"94":762,"96":6,"99":102,"101":27,"102":145,"103":302,"105":180,"108":2387,"109":334}},"geometry":{"type":"Point","coordinates":[-73.95435594524308,40.67616707219537]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024000","ancestry":{"1":4421,"5":277,"6":131,"7":111,"11":20,"19":55,"22":9,"26":5,"32":55,"35":55,"36":17,"38":349,"40":34,"42":17,"44":19,"45":2,"46":426,"50":9,"51":59,"61":303,"63":63,"64":138,"70":10,"92":106,"94":17,"103":8,"105":9,"107":35,"108":1832,"109":730}},"geometry":{"type":"Point","coordinates":[-73.99318622352699,40.62883158350044]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024200","ancestry":{"1":2936,"5":234,"19":11,"21":9,"31":11,"34":22,"35":22,"36":15,"38":109,"42":44,"46":384,"49":14,"50":43,"51":89,"59":5,"61":188,"63":47,"64":18,"70":5,"92":6,"107":12,"108":1480,"109":316}},"geometry":{"type":"Point","coordinates":[-73.99280990696428,40.625867760540245]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024400","ancestry":{"1":3523,"5":338,"6":40,"7":13,"11":6,"13":6,"14":15,"31":88,"32":17,"35":12,"38":68,"40":4,"41":14,"42":32,"44":10,"46":288,"49":30,"51":404,"53":6,"61":133,"64":15,"92":8,"93":9,"108":1874,"109":434}},"geometry":{"type":"Point","coordinates":[-73.98623643424294,40.62174747121253]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024500","ancestry":{"1":3885,"5":209,"22":28,"35":13,"36":31,"38":20,"39":10,"40":26,"42":97,"45":34,"46":7,"49":46,"51":122,"61":39,"64":33,"73":318,"78":15,"79":171,"84":12,"87":120,"89":10,"94":840,"96":88,"97":10,"99":190,"100":12,"101":102,"102":233,"103":217,"105":40,"106":17,"108":1989,"109":432}},"geometry":{"type":"Point","coordinates":[-73.95190118336939,40.68288097716894]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024600","ancestry":{"1":3552,"5":239,"6":13,"13":13,"26":7,"34":1,"36":36,"38":34,"42":82,"44":50,"46":182,"49":45,"50":7,"51":578,"59":9,"61":258,"64":83,"67":9,"92":34,"94":20,"101":20,"108":1775,"109":431}},"geometry":{"type":"Point","coordinates":[-73.98113934332285,40.61816982697615]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024800","ancestry":{"1":2880,"5":70,"6":124,"11":104,"15":20,"19":4,"24":8,"31":9,"35":5,"42":6,"46":54,"49":28,"50":20,"51":483,"61":56,"64":28,"89":5,"91":27,"92":18,"108":1873,"109":158}},"geometry":{"type":"Point","coordinates":[-73.98999314279442,40.62136294454685]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024900","ancestry":{"1":3853,"5":191,"6":7,"10":7,"19":22,"32":17,"34":53,"36":32,"38":50,"40":23,"42":106,"43":15,"45":25,"49":118,"51":112,"53":12,"59":9,"61":17,"64":55,"67":12,"73":225,"87":109,"88":116,"94":517,"96":49,"99":146,"101":4,"102":70,"103":200,"105":90,"108":2105,"109":389}},"geometry":{"type":"Point","coordinates":[-73.94839040348056,40.68298335308213]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025000","ancestry":{"1":1575,"5":55,"6":54,"7":54,"26":15,"31":23,"49":20,"51":227,"61":14,"64":16,"89":4,"108":1107,"109":137}},"geometry":{"type":"Point","coordinates":[-73.99583821580636,40.62362576741686]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025100","ancestry":{"1":3256,"5":98,"6":30,"7":30,"23":8,"36":41,"38":8,"42":64,"45":23,"49":28,"51":25,"61":27,"66":27,"71":8,"73":74,"79":20,"87":54,"92":9,"94":499,"96":74,"99":68,"101":141,"102":90,"103":106,"104":20,"105":11,"108":2183,"109":290}},"geometry":{"type":"Point","coordinates":[-73.94938779606693,40.687854567735315]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025200","ancestry":{"1":5307,"3":144,"5":209,"6":128,"11":20,"13":21,"14":21,"15":66,"23":48,"29":7,"35":31,"42":8,"46":62,"49":192,"51":733,"53":15,"56":16,"61":209,"62":8,"64":421,"67":6,"91":28,"92":90,"94":17,"102":17,"107":84,"108":2871,"109":454}},"geometry":{"type":"Point","coordinates":[-73.99213919580423,40.61982889809141]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025300","ancestry":{"1":2346,"5":23,"6":51,"15":51,"19":8,"34":6,"38":9,"39":17,"40":39,"42":91,"44":26,"46":13,"48":49,"49":105,"50":9,"51":110,"59":32,"61":30,"63":12,"67":42,"73":83,"87":83,"91":13,"94":191,"96":16,"102":147,"103":17,"105":11,"108":1548,"109":138}},"geometry":{"type":"Point","coordinates":[-73.9503366031493,40.69262197593075]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025600","ancestry":{"1":3243,"3":39,"5":167,"6":188,"7":100,"10":9,"11":53,"15":26,"33":13,"38":9,"49":11,"51":642,"61":7,"64":23,"92":12,"108":1906,"109":511}},"geometry":{"type":"Point","coordinates":[-73.98566622072042,40.614995011375086]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025700","ancestry":{"1":1997,"5":5,"6":14,"7":14,"26":15,"31":12,"34":10,"35":12,"36":6,"38":6,"39":6,"42":66,"45":13,"46":10,"49":58,"51":57,"61":6,"65":12,"67":6,"73":43,"87":43,"94":266,"96":31,"99":13,"102":21,"103":201,"107":4,"108":1285,"109":216}},"geometry":{"type":"Point","coordinates":[-73.94734443789793,40.6982179558959]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025901","ancestry":{"1":1574,"5":22,"18":13,"34":6,"36":15,"38":6,"40":27,"42":66,"45":48,"46":19,"49":34,"51":61,"59":5,"61":60,"64":8,"66":6,"73":66,"87":66,"94":42,"101":14,"105":28,"108":1040,"109":188}},"geometry":{"type":"Point","coordinates":[-73.94622401182535,40.694967514164105]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026000","ancestry":{"1":3610,"5":208,"6":56,"14":56,"23":51,"38":7,"42":52,"46":47,"49":46,"51":684,"53":7,"59":13,"61":51,"63":26,"64":39,"92":51,"93":11,"107":9,"108":2139,"109":427}},"geometry":{"type":"Point","coordinates":[-73.99234568925489,40.616917129078765]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034900","ancestry":{"1":5737,"5":280,"6":154,"15":154,"45":320,"48":11,"51":13,"59":10,"61":10,"73":901,"87":901,"94":2824,"96":63,"99":269,"101":255,"102":461,"103":336,"105":1440,"108":2030,"109":219}},"geometry":{"type":"Point","coordinates":[-73.92977821285272,40.66827715062815]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035000","ancestry":{"1":2812,"5":37,"6":18,"7":18,"19":10,"31":8,"32":24,"36":15,"38":9,"42":25,"49":8,"51":81,"53":9,"61":131,"64":1052,"91":48,"92":334,"93":8,"108":896,"109":405}},"geometry":{"type":"Point","coordinates":[-73.97890890683475,40.577568940035576]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035200","ancestry":{"1":1013,"5":88,"34":4,"36":18,"38":7,"40":9,"42":10,"44":5,"45":7,"46":7,"49":16,"51":80,"61":16,"64":119,"91":8,"92":96,"94":47,"101":20,"102":4,"103":9,"105":14,"108":486,"109":86}},"geometry":{"type":"Point","coordinates":[-73.9806962399138,40.57320943902427]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035400","ancestry":{"1":5082,"5":247,"6":170,"8":40,"9":130,"16":8,"35":5,"38":17,"40":33,"42":13,"44":12,"49":11,"51":274,"52":26,"61":148,"63":25,"64":1464,"91":16,"92":908,"108":1524,"109":452}},"geometry":{"type":"Point","coordinates":[-73.97261177401555,40.580133651394206]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035500","ancestry":{"1":4952,"5":289,"6":135,"7":21,"11":114,"23":15,"26":43,"31":18,"34":8,"36":104,"38":8,"42":38,"44":18,"45":26,"49":82,"50":9,"51":8,"61":84,"64":68,"65":10,"73":333,"87":333,"91":18,"93":8,"94":1635,"96":52,"99":106,"101":463,"102":457,"103":184,"105":373,"108":2041,"109":540}},"geometry":{"type":"Point","coordinates":[-73.93347222072423,40.66440495911408]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035700","ancestry":{"1":2544,"5":104,"41":6,"45":143,"50":37,"73":212,"87":212,"94":759,"96":36,"99":43,"101":13,"102":86,"103":51,"105":549,"108":1399,"109":146}},"geometry":{"type":"Point","coordinates":[-73.92684405881268,40.66804376469365]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035900","ancestry":{"1":5068,"5":289,"36":14,"45":508,"49":9,"51":81,"73":78,"87":78,"94":1124,"96":93,"99":84,"101":63,"102":368,"103":207,"105":336,"108":2863,"109":450}},"geometry":{"type":"Point","coordinates":[-73.92386433800861,40.67043313171504]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047073400","ancestry":{"1":2416,"5":96,"34":11,"36":10,"38":13,"40":8,"44":9,"45":186,"49":38,"51":54,"73":157,"87":157,"92":6,"94":1228,"96":18,"99":90,"101":673,"102":83,"103":106,"105":273,"108":713,"109":146}},"geometry":{"type":"Point","coordinates":[-73.93747782314861,40.62781535118832]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047075600","ancestry":{"1":2051,"5":20,"6":114,"7":77,"10":13,"11":5,"13":114,"24":18,"35":20,"38":104,"42":39,"44":3,"46":18,"49":102,"50":14,"51":69,"53":5,"61":116,"63":6,"64":146,"73":41,"87":41,"89":5,"92":35,"94":22,"99":6,"105":16,"108":1081,"109":235}},"geometry":{"type":"Point","coordinates":[-73.94798942630474,40.61685625431619]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047073600","ancestry":{"1":3742,"5":288,"6":90,"7":72,"15":18,"19":7,"35":42,"42":24,"45":323,"49":10,"51":17,"57":17,"64":16,"73":215,"79":30,"84":147,"87":38,"88":9,"94":885,"99":40,"101":253,"102":325,"103":107,"105":160,"108":1610,"109":342}},"geometry":{"type":"Point","coordinates":[-73.93579892200428,40.624035675370386]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047074000","ancestry":{"1":4185,"5":18,"36":6,"38":59,"42":17,"45":191,"49":31,"51":31,"59":3,"61":20,"64":13,"67":5,"73":30,"87":30,"89":3,"94":1773,"96":6,"99":93,"101":1079,"102":316,"103":23,"105":256,"108":1760,"109":290}},"geometry":{"type":"Point","coordinates":[-73.94125674204861,40.627394216201616]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047074400","ancestry":{"1":2828,"5":302,"6":6,"15":6,"26":5,"35":88,"36":225,"38":180,"40":19,"42":45,"46":50,"48":33,"49":61,"50":10,"51":51,"53":16,"59":40,"61":62,"64":10,"66":5,"67":5,"73":151,"77":90,"82":61,"91":14,"92":7,"93":5,"94":16,"101":2,"102":14,"108":1386,"109":233}},"geometry":{"type":"Point","coordinates":[-73.94311729692136,40.622329258406324]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047074600","ancestry":{"1":2207,"5":126,"6":57,"15":57,"19":7,"22":3,"31":5,"35":20,"38":127,"42":44,"44":11,"45":27,"46":173,"49":88,"50":1,"51":130,"61":54,"63":6,"64":35,"67":5,"89":4,"91":6,"92":64,"93":5,"94":276,"97":3,"99":37,"101":205,"102":30,"105":5,"108":937,"109":190}},"geometry":{"type":"Point","coordinates":[-73.94263493761831,40.61860943899133]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047074800","ancestry":{"1":1787,"5":175,"6":15,"7":4,"13":11,"19":3,"23":4,"26":3,"31":5,"33":4,"35":5,"36":5,"38":59,"40":12,"42":57,"45":15,"46":24,"48":8,"49":3,"50":14,"51":47,"53":5,"59":10,"61":80,"63":14,"64":16,"73":9,"76":9,"91":4,"92":9,"94":37,"99":8,"103":6,"105":23,"108":1060,"109":189}},"geometry":{"type":"Point","coordinates":[-73.94689572979557,40.62189308900991]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047075800","ancestry":{"1":1901,"5":88,"6":11,"12":5,"13":6,"16":5,"35":14,"36":13,"38":83,"40":21,"42":12,"46":52,"48":8,"49":48,"50":4,"51":102,"61":112,"63":18,"64":230,"91":25,"92":44,"108":929,"109":202}},"geometry":{"type":"Point","coordinates":[-73.95196193455429,40.61647510061801]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047076000","ancestry":{"1":2853,"5":304,"16":43,"19":6,"23":13,"31":7,"35":187,"38":31,"42":20,"45":9,"46":32,"51":4,"52":7,"53":15,"61":146,"64":378,"91":12,"92":274,"94":15,"102":15,"108":1290,"109":320}},"geometry":{"type":"Point","coordinates":[-73.95478851178947,40.621356938512285]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047076200","ancestry":{"1":5097,"3":42,"5":459,"6":154,"7":109,"11":20,"12":7,"13":18,"31":13,"34":6,"35":47,"36":6,"38":40,"42":58,"45":7,"46":101,"49":15,"51":26,"61":108,"64":283,"70":14,"73":22,"87":22,"90":6,"92":111,"94":123,"101":1,"102":6,"103":94,"105":22,"108":2994,"109":693}},"geometry":{"type":"Point","coordinates":[-73.95648588131971,40.625718549065866]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047076600","ancestry":{"1":2437,"3":94,"5":243,"6":1,"13":1,"19":5,"22":3,"35":4,"38":5,"40":5,"42":8,"49":5,"64":6,"73":38,"87":38,"89":11,"94":930,"96":5,"99":14,"101":761,"102":30,"103":47,"105":78,"108":1016,"109":229}},"geometry":{"type":"Point","coordinates":[-73.95684202668916,40.63318714493114]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047077000","ancestry":{"1":2823,"5":76,"6":25,"10":25,"19":11,"22":17,"31":26,"33":6,"36":4,"38":47,"41":16,"42":23,"45":36,"47":8,"49":90,"51":81,"60":11,"61":16,"62":8,"64":39,"94":1083,"95":19,"96":5,"99":6,"101":573,"102":22,"103":85,"105":386,"108":1330,"109":99}},"geometry":{"type":"Point","coordinates":[-73.95382956384442,40.63613614724577]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047095800","ancestry":{"1":3785,"5":196,"6":20,"7":20,"23":49,"32":7,"36":36,"38":5,"45":107,"49":23,"51":51,"61":23,"64":20,"73":112,"80":49,"87":63,"94":1769,"96":32,"99":253,"101":653,"102":428,"103":127,"105":276,"108":1240,"109":389}},"geometry":{"type":"Point","coordinates":[-73.91168599983477,40.64082210537127]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047096000","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.91476634158353,40.645927025618974]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047096200","ancestry":{"1":1654,"5":224,"6":48,"7":48,"23":9,"45":70,"49":10,"51":41,"61":2,"64":9,"73":36,"87":36,"94":656,"96":16,"97":49,"99":66,"101":133,"102":253,"103":100,"105":39,"108":447,"109":201}},"geometry":{"type":"Point","coordinates":[-73.91051735955101,40.6450267527126]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047096400","ancestry":{"1":2569,"5":418,"36":5,"42":30,"45":87,"49":23,"51":29,"73":158,"79":6,"87":152,"94":825,"96":14,"99":56,"101":342,"102":369,"103":33,"105":129,"108":899,"109":139}},"geometry":{"type":"Point","coordinates":[-73.90726866156257,40.641950075167614]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047096800","ancestry":{"1":1558,"5":77,"36":15,"40":61,"42":15,"45":148,"49":107,"51":75,"61":43,"64":4,"73":27,"87":27,"89":15,"93":7,"94":465,"99":34,"100":9,"101":24,"102":201,"103":163,"105":34,"108":493,"109":166}},"geometry":{"type":"Point","coordinates":[-73.90387691487993,40.64414181250328]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047097000","ancestry":{"1":1877,"5":131,"6":15,"14":15,"38":25,"41":20,"42":8,"45":126,"49":24,"51":91,"61":60,"62":3,"64":10,"73":66,"87":66,"94":805,"96":61,"99":134,"101":134,"102":166,"103":194,"105":134,"108":387,"109":219}},"geometry":{"type":"Point","coordinates":[-73.90735301377751,40.64726004991915]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047097400","ancestry":{"1":3297,"5":313,"40":16,"42":33,"45":171,"46":10,"49":52,"51":17,"73":204,"76":6,"79":13,"87":185,"91":4,"94":1170,"96":60,"97":6,"99":198,"101":65,"102":439,"103":238,"105":217,"108":1250,"109":402}},"geometry":{"type":"Point","coordinates":[-73.89976576933515,40.646984121575]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047098400","ancestry":{"1":2243,"5":73,"36":82,"42":6,"49":13,"73":83,"79":35,"87":48,"94":1286,"96":27,"97":49,"99":179,"101":526,"102":415,"103":100,"105":26,"108":573,"109":233}},"geometry":{"type":"Point","coordinates":[-73.89178957718751,40.646577914287256]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047098600","ancestry":{"1":3419,"5":193,"36":6,"40":6,"45":220,"51":9,"73":102,"87":102,"94":1803,"96":56,"99":182,"101":709,"102":773,"103":49,"105":57,"108":779,"109":455}},"geometry":{"type":"Point","coordinates":[-73.89431958410259,40.64493646739438]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047099000","ancestry":{"1":1582,"5":122,"45":230,"51":4,"73":285,"77":1,"79":93,"87":191,"94":593,"96":29,"99":54,"101":108,"102":165,"103":56,"105":188,"108":394,"109":169}},"geometry":{"type":"Point","coordinates":[-73.89856198458854,40.63937034695507]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047099400","ancestry":{"1":1910,"5":150,"45":34,"49":6,"51":49,"64":38,"73":92,"79":70,"87":22,"94":1045,"96":22,"99":17,"100":5,"101":228,"102":668,"103":112,"105":12,"108":381,"109":184}},"geometry":{"type":"Point","coordinates":[-73.90439926826889,40.63575973568341]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047099800","ancestry":{"1":4207,"5":239,"36":42,"42":10,"45":65,"49":52,"51":11,"59":28,"61":12,"64":18,"73":69,"76":24,"87":45,"94":3025,"99":263,"101":1751,"102":929,"103":125,"105":24,"108":640,"109":139}},"geometry":{"type":"Point","coordinates":[-73.90819411470973,40.62970302495369]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047100400","ancestry":{"1":2799,"5":343,"23":10,"34":8,"35":5,"36":8,"38":6,"45":181,"46":4,"61":28,"63":8,"64":17,"73":101,"87":101,"94":1570,"96":78,"99":58,"101":602,"102":529,"103":127,"105":190,"108":432,"109":270}},"geometry":{"type":"Point","coordinates":[-73.90380000157553,40.63064927953634]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047100800","ancestry":{"1":2036,"5":133,"19":20,"35":11,"40":7,"42":5,"45":141,"49":6,"51":63,"61":26,"64":26,"73":134,"87":134,"94":783,"96":15,"99":109,"101":62,"102":335,"103":129,"105":161,"108":719,"109":187}},"geometry":{"type":"Point","coordinates":[-73.89806645203781,40.634133154320565]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047101000","ancestry":{"1":2237,"5":256,"23":35,"29":20,"32":6,"36":6,"42":6,"45":92,"49":4,"51":49,"73":82,"79":21,"87":61,"94":733,"96":12,"99":7,"101":374,"102":159,"103":35,"105":146,"108":901,"109":88}},"geometry":{"type":"Point","coordinates":[-73.89497203839883,40.63602817329291]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047101200","ancestry":{"1":2176,"5":285,"36":20,"40":44,"42":9,"45":34,"49":59,"51":64,"64":24,"70":4,"73":161,"76":94,"87":67,"94":1059,"96":51,"97":42,"99":157,"101":249,"102":450,"103":45,"105":65,"108":470,"109":181}},"geometry":{"type":"Point","coordinates":[-73.89366769378357,40.63972652312496]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047101400","ancestry":{"1":2387,"5":243,"6":3,"14":3,"19":3,"38":2,"40":4,"45":109,"46":3,"51":10,"73":125,"79":18,"87":107,"94":1332,"96":92,"97":43,"99":117,"101":580,"102":284,"103":152,"105":72,"108":562,"109":59}},"geometry":{"type":"Point","coordinates":[-73.89067346721227,40.64166258112292]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047101600","ancestry":{"1":1471,"5":114,"45":75,"46":5,"61":5,"64":10,"73":37,"87":21,"88":16,"94":573,"96":24,"97":32,"99":52,"100":9,"101":233,"102":134,"103":30,"105":79,"108":599,"109":108}},"geometry":{"type":"Point","coordinates":[-73.88814087496016,40.643302990506385]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085027706","ancestry":{"1":3320,"3":157,"5":96,"6":75,"7":75,"19":19,"34":13,"36":66,"38":8,"40":8,"42":87,"46":59,"49":183,"50":107,"51":731,"59":12,"61":175,"62":71,"63":11,"64":138,"67":25,"92":1,"108":1367,"109":455}},"geometry":{"type":"Point","coordinates":[-74.16190154484975,40.59093698050885]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085018100","ancestry":{"1":3049,"5":111,"6":102,"10":90,"13":12,"19":16,"31":7,"32":8,"33":15,"36":38,"42":129,"44":59,"46":11,"49":413,"50":5,"51":1289,"59":41,"61":50,"62":165,"64":102,"67":6,"70":3,"89":7,"92":30,"94":16,"101":7,"105":9,"108":644,"109":467}},"geometry":{"type":"Point","coordinates":[-74.1207760508787,40.589099018411886]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026200","ancestry":{"1":2627,"3":20,"5":159,"6":25,"10":13,"15":12,"24":15,"35":20,"36":5,"40":17,"42":17,"44":15,"49":62,"51":678,"61":115,"62":8,"64":14,"91":13,"92":13,"108":1512,"109":146}},"geometry":{"type":"Point","coordinates":[-73.99707860118431,40.61872849258313]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026300","ancestry":{"1":2096,"5":62,"36":5,"40":9,"41":8,"42":9,"49":17,"51":8,"73":116,"74":27,"76":61,"87":28,"94":271,"96":48,"99":6,"100":6,"102":158,"103":22,"105":37,"108":1466,"109":169}},"geometry":{"type":"Point","coordinates":[-73.94513141987026,40.68946840893425]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026400","ancestry":{"1":4685,"3":82,"5":109,"6":114,"7":103,"13":11,"34":8,"42":87,"44":12,"49":71,"51":624,"59":9,"61":191,"64":52,"66":8,"92":9,"108":2684,"109":879}},"geometry":{"type":"Point","coordinates":[-73.99748156356343,40.614867854659636]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026600","ancestry":{"1":3638,"3":102,"5":256,"6":102,"14":102,"19":7,"29":16,"36":13,"40":22,"42":18,"44":15,"49":49,"51":556,"59":6,"61":176,"62":19,"64":211,"91":98,"92":100,"108":1664,"109":437}},"geometry":{"type":"Point","coordinates":[-73.9903255574935,40.612630335939]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026700","ancestry":{"1":3397,"5":216,"16":10,"19":10,"31":21,"33":9,"35":17,"36":30,"38":48,"39":13,"40":26,"42":95,"45":18,"46":9,"49":103,"51":84,"59":13,"61":21,"64":19,"67":38,"73":55,"79":24,"87":31,"89":21,"91":14,"94":744,"96":81,"99":37,"101":96,"102":261,"103":115,"104":8,"105":152,"106":32,"108":1999,"109":286}},"geometry":{"type":"Point","coordinates":[-73.94403819920927,40.68397314137142]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027000","ancestry":{"1":2338,"3":117,"5":63,"16":11,"19":6,"27":6,"38":19,"42":73,"44":19,"49":73,"51":230,"61":30,"63":12,"64":265,"68":7,"91":16,"92":64,"94":19,"102":19,"108":871,"109":585}},"geometry":{"type":"Point","coordinates":[-73.98998506495538,40.605861134875894]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027200","ancestry":{"1":3654,"5":142,"6":34,"14":34,"19":9,"29":55,"35":6,"36":18,"38":22,"42":9,"44":19,"46":8,"49":182,"51":318,"53":26,"60":112,"61":65,"64":253,"91":20,"92":180,"108":1793,"109":739}},"geometry":{"type":"Point","coordinates":[-73.99273840784939,40.608176507715065]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027400","ancestry":{"1":2786,"3":111,"5":92,"6":140,"7":26,"9":45,"12":46,"14":61,"21":9,"36":20,"40":27,"42":37,"49":142,"51":456,"61":34,"63":7,"64":101,"91":17,"92":86,"108":982,"109":718}},"geometry":{"type":"Point","coordinates":[-73.99529203147308,40.61094948334324]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027500","ancestry":{"1":4331,"5":250,"6":188,"10":26,"13":10,"14":152,"36":124,"40":37,"41":29,"42":74,"45":27,"46":9,"49":80,"51":140,"61":16,"66":11,"73":40,"76":5,"79":12,"87":23,"89":9,"94":669,"96":188,"97":64,"99":22,"101":4,"102":179,"103":97,"105":115,"108":2846,"109":318}},"geometry":{"type":"Point","coordinates":[-73.93817888170712,40.683897536038536]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027600","ancestry":{"1":4616,"3":41,"5":77,"36":23,"40":2,"42":10,"45":17,"46":20,"49":29,"51":283,"59":5,"61":46,"64":107,"89":9,"92":273,"108":2348,"109":1430}},"geometry":{"type":"Point","coordinates":[-73.99948896960531,40.610896456156766]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027700","ancestry":{"1":4584,"5":6,"22":9,"28":11,"40":22,"42":11,"45":18,"49":11,"51":22,"73":137,"78":23,"87":114,"94":392,"96":27,"99":18,"101":11,"102":60,"103":64,"105":222,"108":3745,"109":410}},"geometry":{"type":"Point","coordinates":[-73.93876039703058,40.68682893789758]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027800","ancestry":{"1":3140,"3":99,"5":129,"6":17,"14":8,"15":9,"22":24,"36":34,"40":26,"42":34,"49":59,"51":348,"61":31,"64":385,"92":98,"108":1342,"109":630}},"geometry":{"type":"Point","coordinates":[-74.00122103048909,40.606858537398175]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028100","ancestry":{"1":5087,"5":78,"34":9,"36":24,"38":30,"40":7,"41":8,"42":32,"45":158,"51":89,"57":8,"61":9,"67":14,"73":81,"75":9,"79":51,"87":21,"93":7,"94":246,"96":30,"99":28,"101":51,"102":68,"103":27,"105":63,"108":4081,"109":451}},"geometry":{"type":"Point","coordinates":[-73.93992860902515,40.6926887624819]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028400","ancestry":{"1":3694,"3":196,"5":61,"6":84,"7":84,"23":8,"49":63,"51":574,"53":10,"59":22,"61":135,"62":8,"63":17,"64":206,"70":30,"71":33,"89":11,"91":45,"92":96,"94":9,"102":9,"108":1607,"109":727}},"geometry":{"type":"Point","coordinates":[-73.9989427838789,40.605674228719316]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028502","ancestry":{"1":2552,"5":48,"36":15,"48":8,"94":23,"101":23,"108":2186,"109":280}},"geometry":{"type":"Point","coordinates":[-73.94088523367263,40.69745074144243]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028600","ancestry":{"1":4760,"3":93,"5":91,"6":85,"7":36,"14":19,"15":30,"19":14,"36":62,"40":18,"42":52,"49":92,"51":340,"61":112,"64":814,"92":103,"108":2345,"109":847}},"geometry":{"type":"Point","coordinates":[-74.00163898331829,40.59965141714598]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028700","ancestry":{"1":3011,"5":36,"6":12,"10":12,"35":23,"36":23,"38":52,"40":46,"42":41,"45":46,"49":70,"51":20,"65":58,"73":18,"87":18,"89":22,"94":690,"96":7,"99":11,"100":27,"101":1,"102":31,"105":585,"106":28,"108":1895,"109":229}},"geometry":{"type":"Point","coordinates":[-73.93542749393977,40.69563534997253]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028800","ancestry":{"1":3041,"3":168,"5":130,"6":96,"7":89,"15":7,"16":5,"19":35,"23":5,"26":6,"38":20,"40":14,"42":14,"44":37,"46":5,"49":20,"51":206,"61":51,"62":7,"64":410,"72":8,"92":46,"108":1121,"109":763}},"geometry":{"type":"Point","coordinates":[-73.99656222988366,40.60451136206323]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029000","ancestry":{"1":4215,"3":118,"5":242,"6":143,"11":10,"15":133,"16":5,"19":7,"22":8,"35":11,"38":6,"42":20,"49":43,"50":14,"51":207,"61":132,"63":11,"64":645,"91":34,"92":344,"108":1753,"109":675}},"geometry":{"type":"Point","coordinates":[-73.9943477752349,40.60317415404182]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029100","ancestry":{"1":3252,"5":74,"23":15,"34":12,"36":45,"40":25,"42":71,"49":66,"51":8,"59":10,"61":3,"64":17,"73":65,"79":2,"87":63,"88":2,"94":315,"96":6,"99":35,"102":58,"103":190,"105":26,"108":2540,"109":139}},"geometry":{"type":"Point","coordinates":[-73.93354101446185,40.69042721017021]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029200","ancestry":{"1":2308,"3":4,"5":135,"6":35,"7":12,"12":13,"15":10,"16":51,"35":6,"40":4,"42":4,"44":23,"48":5,"49":10,"50":3,"51":145,"53":21,"54":5,"61":67,"63":5,"64":147,"66":4,"91":22,"92":143,"107":6,"108":1123,"109":482}},"geometry":{"type":"Point","coordinates":[-73.999827412027,40.597946088145136]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029300","ancestry":{"1":3219,"5":110,"34":59,"35":8,"36":27,"41":48,"49":147,"51":62,"64":51,"73":118,"87":118,"94":369,"96":41,"102":155,"103":32,"105":141,"108":2470,"109":201}},"geometry":{"type":"Point","coordinates":[-73.93295814919922,40.68749676960328]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029700","ancestry":{"1":3895,"5":56,"6":146,"11":146,"19":9,"34":9,"36":30,"40":39,"42":44,"45":9,"46":23,"49":81,"51":61,"61":29,"64":9,"67":10,"73":51,"87":51,"89":9,"94":270,"101":43,"102":121,"103":40,"105":83,"108":3081,"109":410}},"geometry":{"type":"Point","coordinates":[-73.93161762566162,40.68127272665701]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029800","ancestry":{"1":3834,"3":40,"5":191,"6":118,"7":85,"10":8,"14":25,"19":23,"32":8,"36":8,"39":53,"41":7,"42":26,"44":22,"49":17,"51":534,"61":110,"64":537,"67":8,"70":11,"91":68,"92":89,"108":1570,"109":736}},"geometry":{"type":"Point","coordinates":[-73.98790746821241,40.60082333577347]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029900","ancestry":{"1":2610,"5":86,"6":20,"14":20,"18":11,"45":67,"49":15,"59":4,"61":4,"64":27,"73":40,"75":24,"87":16,"94":358,"99":74,"101":86,"102":126,"103":40,"105":42,"108":1893,"109":195}},"geometry":{"type":"Point","coordinates":[-73.92579787371011,40.67814476725783]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030000","ancestry":{"1":3280,"2":40,"3":58,"5":63,"6":83,"10":38,"11":45,"15":38,"36":24,"42":8,"44":26,"49":135,"51":390,"52":11,"61":69,"64":235,"67":9,"108":1642,"109":687}},"geometry":{"type":"Point","coordinates":[-73.98874447057658,40.59740308398243]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037000","ancestry":{"1":4085,"5":220,"6":130,"7":57,"13":61,"14":28,"16":9,"29":9,"30":10,"35":31,"36":22,"40":6,"42":44,"44":17,"49":83,"50":8,"51":150,"61":60,"62":7,"63":21,"64":464,"68":9,"91":81,"92":165,"108":2350,"109":461}},"geometry":{"type":"Point","coordinates":[-73.96316499995022,40.58784928035212]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037100","ancestry":{"1":4357,"5":92,"40":25,"45":138,"63":9,"73":295,"79":141,"87":164,"94":1465,"95":19,"96":99,"97":30,"99":119,"101":173,"102":362,"103":243,"105":459,"108":2091,"109":325}},"geometry":{"type":"Point","coordinates":[-73.91383953938777,40.680287315446556]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037300","ancestry":{"1":3918,"5":113,"19":10,"42":19,"45":96,"49":34,"51":33,"55":43,"62":49,"73":56,"87":56,"94":415,"97":25,"101":88,"102":154,"103":54,"105":94,"108":2930,"109":272}},"geometry":{"type":"Point","coordinates":[-73.91521540048595,40.68394878387888]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036001","ancestry":{"1":2928,"5":54,"6":10,"7":10,"31":7,"35":17,"36":14,"38":14,"40":29,"42":14,"44":14,"46":25,"49":47,"51":8,"53":24,"55":40,"59":7,"61":63,"63":14,"64":979,"92":425,"94":12,"105":12,"108":1175,"109":146}},"geometry":{"type":"Point","coordinates":[-73.96557080733119,40.575784686878116]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037500","ancestry":{"1":3228,"26":19,"34":22,"35":7,"40":40,"42":40,"45":29,"46":19,"49":18,"65":11,"73":159,"79":26,"87":133,"88":18,"94":522,"96":15,"97":82,"99":50,"102":279,"103":15,"105":81,"108":2274,"109":216}},"geometry":{"type":"Point","coordinates":[-73.92151676868231,40.68762000120154]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037700","ancestry":{"1":4123,"5":17,"6":10,"14":10,"19":20,"33":9,"34":28,"36":36,"40":46,"42":73,"49":80,"51":73,"59":18,"61":13,"62":48,"63":8,"64":52,"67":2,"70":8,"73":106,"79":12,"87":94,"89":8,"94":608,"96":78,"99":77,"101":110,"102":158,"103":33,"105":163,"108":2730,"109":481}},"geometry":{"type":"Point","coordinates":[-73.92018756035418,40.68408825702492]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047037900","ancestry":{"1":3412,"5":78,"6":19,"11":19,"21":23,"22":9,"36":19,"40":16,"45":139,"49":18,"73":8,"87":8,"94":970,"96":76,"97":111,"99":84,"101":78,"102":169,"103":41,"105":438,"108":1849,"109":410}},"geometry":{"type":"Point","coordinates":[-73.91936568956807,40.68049889203662]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036200","ancestry":{"1":3178,"3":8,"5":55,"6":18,"14":18,"16":39,"19":8,"29":1,"40":8,"42":35,"49":39,"51":23,"53":6,"54":8,"61":8,"64":352,"73":16,"80":2,"87":14,"90":18,"91":18,"92":88,"94":17,"101":15,"103":2,"108":2023,"109":475}},"geometry":{"type":"Point","coordinates":[-73.96400088127974,40.57811699250736]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036400","ancestry":{"1":2126,"5":47,"16":7,"19":5,"35":6,"38":5,"40":5,"42":15,"44":6,"49":15,"51":66,"53":7,"61":22,"62":4,"63":7,"64":224,"72":8,"92":289,"108":1293,"109":200}},"geometry":{"type":"Point","coordinates":[-73.96386375776518,40.58016139634137]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036501","ancestry":{"1":2624,"5":79,"40":12,"42":84,"45":14,"51":9,"73":449,"79":249,"87":200,"94":462,"99":29,"102":53,"105":380,"108":1610,"109":153}},"geometry":{"type":"Point","coordinates":[-73.91151368230618,40.67503121610664]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036502","ancestry":{"1":1101,"5":6,"26":5,"36":24,"51":11,"73":9,"87":9,"94":173,"96":60,"103":25,"105":88,"108":782,"109":125}},"geometry":{"type":"Point","coordinates":[-73.90754297473902,40.67472599885453]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036600","ancestry":{"1":4433,"5":217,"19":17,"33":17,"34":91,"42":23,"45":56,"49":5,"51":10,"53":39,"61":64,"64":254,"69":13,"73":18,"76":18,"91":38,"92":186,"94":38,"103":16,"105":22,"108":2896,"109":577}},"geometry":{"type":"Point","coordinates":[-73.96376769480497,40.58287057560019]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036900","ancestry":{"1":4785,"5":98,"6":127,"14":127,"26":1,"34":18,"36":27,"40":1,"42":17,"44":7,"45":321,"48":8,"49":15,"51":6,"73":214,"79":34,"87":180,"94":945,"95":21,"96":105,"99":83,"101":39,"102":375,"103":63,"105":305,"108":2951,"109":278}},"geometry":{"type":"Point","coordinates":[-73.90922834192624,40.679650009184755]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038200","ancestry":{"1":5841,"5":192,"29":12,"36":48,"40":48,"49":17,"51":211,"61":13,"62":26,"64":228,"73":129,"75":129,"92":13,"94":253,"96":13,"101":110,"102":66,"105":64,"108":4233,"109":772}},"geometry":{"type":"Point","coordinates":[-73.98148054806732,40.591525036408285]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038600","ancestry":{"1":3494,"3":39,"5":72,"6":70,"7":30,"10":40,"16":8,"36":21,"40":25,"42":32,"48":7,"49":103,"50":10,"51":938,"61":10,"64":6,"92":30,"108":2213,"109":252}},"geometry":{"type":"Point","coordinates":[-73.97510854891698,40.59234952044411]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038700","ancestry":{"1":3951,"5":55,"6":41,"15":41,"36":30,"40":27,"42":20,"46":9,"49":30,"51":5,"61":10,"64":10,"65":9,"73":57,"87":57,"89":9,"94":301,"96":12,"99":43,"101":11,"102":101,"103":42,"105":135,"108":3317,"109":243}},"geometry":{"type":"Point","coordinates":[-73.92774955548161,40.69053933826982]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038800","ancestry":{"1":4122,"3":10,"5":260,"6":334,"7":9,"13":325,"35":27,"38":42,"42":8,"45":29,"46":9,"49":61,"50":43,"51":622,"53":6,"61":80,"64":572,"66":7,"90":8,"92":169,"94":1,"95":1,"108":1598,"109":529}},"geometry":{"type":"Point","coordinates":[-73.9692516041802,40.59292479326415]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038900","ancestry":{"1":3331,"5":106,"19":16,"29":16,"34":10,"35":29,"36":71,"38":22,"40":66,"41":10,"42":61,"46":18,"49":81,"51":59,"61":47,"63":8,"64":50,"65":20,"66":8,"67":9,"69":17,"73":23,"87":23,"89":7,"93":9,"94":73,"99":10,"101":14,"102":21,"103":28,"105":10,"108":2670,"109":205}},"geometry":{"type":"Point","coordinates":[-73.93723496601987,40.69943851651338]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039000","ancestry":{"1":2318,"5":218,"6":517,"7":50,"10":40,"11":96,"13":356,"14":8,"26":5,"38":5,"40":43,"42":8,"49":46,"50":129,"51":221,"59":4,"61":50,"63":13,"64":96,"92":117,"93":6,"107":11,"108":733,"109":293}},"geometry":{"type":"Point","coordinates":[-73.96442664737121,40.592969284135016]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039100","ancestry":{"1":3187,"5":59,"23":19,"32":10,"35":9,"36":24,"38":102,"40":10,"42":47,"49":121,"51":90,"61":40,"64":7,"65":5,"66":19,"67":38,"73":87,"87":87,"94":142,"96":97,"102":45,"108":2639,"109":73}},"geometry":{"type":"Point","coordinates":[-73.93365508621443,40.69979502355247]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039300","ancestry":{"1":3768,"5":97,"22":46,"23":9,"26":24,"35":28,"36":13,"40":66,"42":112,"48":25,"49":75,"51":27,"61":34,"64":24,"67":24,"92":18,"94":355,"97":44,"99":9,"101":36,"102":254,"103":12,"105":9,"108":2874,"109":132}},"geometry":{"type":"Point","coordinates":[-73.93000455549999,40.69562797407316]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047077200","ancestry":{"1":3223,"5":235,"16":6,"19":10,"23":10,"32":9,"33":10,"34":136,"35":20,"36":34,"38":58,"40":9,"41":42,"42":126,"44":9,"45":60,"46":27,"49":19,"50":56,"51":42,"61":64,"64":42,"73":55,"76":9,"87":46,"94":699,"97":9,"101":336,"102":199,"105":155,"107":55,"108":1448,"109":250}},"geometry":{"type":"Point","coordinates":[-73.95317701475302,40.631609402960514]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047077400","ancestry":{"1":3121,"5":133,"23":19,"31":5,"34":8,"36":8,"38":21,"42":23,"44":24,"45":28,"51":32,"64":82,"73":78,"87":78,"94":1207,"101":458,"102":388,"103":51,"105":326,"108":1285,"109":298}},"geometry":{"type":"Point","coordinates":[-73.94808152517466,40.631198820464306]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047077600","ancestry":{"1":3913,"5":64,"6":61,"7":9,"10":52,"19":19,"23":11,"42":8,"45":306,"49":15,"51":4,"61":65,"64":1,"73":117,"76":2,"87":99,"88":16,"92":29,"94":1458,"96":39,"99":88,"100":7,"101":492,"102":364,"103":113,"105":394,"108":1820,"109":172}},"geometry":{"type":"Point","coordinates":[-73.9411360816283,40.630925519364645]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047078200","ancestry":{"1":4422,"5":28,"42":10,"45":397,"49":7,"73":22,"87":22,"94":1671,"96":52,"101":759,"102":243,"103":192,"105":408,"106":17,"108":1882,"109":479}},"geometry":{"type":"Point","coordinates":[-73.94144286230737,40.63785372080077]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047058400","ancestry":{"1":3247,"5":145,"6":116,"10":18,"13":53,"14":35,"15":10,"16":18,"19":9,"31":29,"34":19,"35":10,"36":33,"40":12,"42":35,"49":12,"50":18,"51":283,"55":5,"61":68,"63":70,"64":656,"72":9,"73":56,"79":45,"87":11,"91":21,"92":133,"94":35,"105":35,"108":1333,"109":362}},"geometry":{"type":"Point","coordinates":[-73.95867192487148,40.59407483631402]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007700","ancestry":{"1":4352,"5":254,"6":28,"7":28,"16":21,"26":30,"31":72,"34":28,"35":94,"36":399,"38":144,"40":273,"41":23,"42":434,"44":80,"45":4,"46":51,"48":95,"49":487,"50":16,"51":961,"53":37,"59":17,"61":400,"62":83,"64":115,"65":10,"67":38,"73":11,"88":11,"90":28,"92":93,"94":60,"99":60,"108":1416,"109":235}},"geometry":{"type":"Point","coordinates":[-73.99522370888388,40.67701996197361]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047046201","ancestry":{"1":2660,"5":289,"6":16,"7":16,"16":7,"19":8,"32":9,"35":40,"36":7,"38":9,"40":8,"42":31,"49":33,"50":46,"51":74,"61":232,"63":7,"64":204,"71":10,"89":31,"92":210,"107":44,"108":1378,"109":158}},"geometry":{"type":"Point","coordinates":[-73.97351636268947,40.62762293992654]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036700","ancestry":{"1":1285,"5":7,"23":14,"34":7,"36":5,"45":12,"49":5,"51":15,"61":33,"62":6,"64":32,"73":38,"76":14,"87":24,"94":172,"96":6,"99":28,"101":30,"102":68,"103":11,"105":59,"108":1021,"109":65}},"geometry":{"type":"Point","coordinates":[-73.90461302430951,40.677564587763136]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003000","ancestry":{"1":1870,"5":122,"6":150,"7":46,"9":24,"10":26,"14":32,"15":46,"16":6,"22":6,"23":49,"29":22,"33":13,"34":17,"36":27,"39":5,"40":18,"41":6,"42":51,"44":69,"48":6,"49":219,"51":218,"53":5,"59":24,"61":175,"64":207,"66":10,"70":7,"73":34,"88":34,"92":11,"93":11,"107":4,"108":475,"109":243}},"geometry":{"type":"Point","coordinates":[-74.02897659381689,40.63887885135751]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030400","ancestry":{"1":3984,"2":37,"3":8,"5":110,"6":67,"7":61,"8":6,"10":6,"13":6,"21":20,"34":23,"38":1,"42":42,"46":9,"51":575,"55":43,"57":8,"59":8,"61":39,"63":19,"64":342,"67":14,"92":133,"94":49,"97":14,"102":35,"107":87,"108":2037,"109":507}},"geometry":{"type":"Point","coordinates":[-73.99439443043387,40.59249165477232]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030600","ancestry":{"1":2019,"3":37,"4":4,"5":167,"6":58,"9":19,"14":39,"23":4,"36":17,"40":20,"41":4,"42":4,"44":17,"49":38,"51":346,"52":3,"53":5,"55":18,"61":16,"64":56,"67":24,"92":9,"108":934,"109":324}},"geometry":{"type":"Point","coordinates":[-73.9861335414988,40.59115561863564]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030700","ancestry":{"1":4288,"5":117,"36":59,"42":7,"45":39,"73":164,"87":156,"88":8,"94":408,"97":16,"98":18,"99":45,"100":8,"102":63,"103":145,"105":121,"108":3238,"109":378}},"geometry":{"type":"Point","coordinates":[-73.92621956774497,40.67558302907387]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030100","ancestry":{"1":2784,"5":28,"36":1,"42":21,"49":35,"51":21,"73":84,"79":41,"87":43,"94":567,"96":54,"99":33,"102":116,"103":172,"105":205,"108":1980,"109":225}},"geometry":{"type":"Point","coordinates":[-73.91622806947647,40.67762156705042]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030800","ancestry":{"1":2146,"5":73,"29":5,"36":33,"42":18,"44":20,"49":47,"51":285,"52":26,"61":7,"62":55,"64":201,"92":72,"108":863,"109":574}},"geometry":{"type":"Point","coordinates":[-73.97951073588861,40.58655148491961]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047031100","ancestry":{"1":2829,"5":72,"6":140,"14":134,"15":6,"33":8,"38":12,"42":66,"45":59,"49":11,"51":12,"73":101,"76":18,"87":83,"94":780,"96":29,"99":40,"101":35,"102":111,"103":192,"105":384,"108":1407,"109":328}},"geometry":{"type":"Point","coordinates":[-73.9389551048577,40.67647777289963]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047031400","ancestry":{"1":4201,"5":210,"6":55,"7":47,"8":8,"19":12,"22":1,"35":11,"36":14,"39":26,"40":7,"42":67,"49":128,"51":1059,"61":141,"63":47,"64":372,"67":12,"91":7,"92":125,"93":13,"94":27,"102":25,"105":2,"108":1292,"109":950}},"geometry":{"type":"Point","coordinates":[-73.99235047285495,40.58614471233753]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047031500","ancestry":{"1":4874,"5":177,"6":46,"7":23,"14":23,"19":12,"22":16,"23":44,"26":28,"34":40,"35":34,"36":171,"40":44,"41":41,"42":116,"44":71,"45":98,"46":10,"49":173,"51":115,"53":6,"57":69,"59":50,"61":30,"62":35,"63":21,"64":25,"66":16,"67":88,"73":201,"76":71,"79":44,"87":86,"90":16,"91":21,"92":14,"93":30,"94":1420,"96":308,"99":267,"101":7,"102":158,"103":504,"105":193,"108":1949,"109":476}},"geometry":{"type":"Point","coordinates":[-73.94992430980044,40.676913191033385]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047031701","ancestry":{"1":3128,"5":344,"6":20,"7":20,"22":7,"24":7,"26":25,"36":57,"40":20,"41":12,"42":53,"44":15,"45":33,"46":32,"47":7,"49":59,"51":58,"53":21,"59":9,"61":5,"63":21,"64":34,"66":24,"67":32,"73":22,"87":22,"92":24,"93":8,"94":1029,"96":135,"99":157,"101":200,"102":93,"103":441,"105":39,"108":1297,"109":249}},"geometry":{"type":"Point","coordinates":[-73.95012409893519,40.67386690920932]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030200","ancestry":{"1":4445,"5":159,"6":22,"15":22,"19":38,"31":17,"40":27,"41":18,"42":15,"44":22,"46":8,"49":78,"51":394,"61":9,"64":115,"91":39,"92":94,"108":2573,"109":990}},"geometry":{"type":"Point","coordinates":[-73.99064707627498,40.595712083612234]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047031900","ancestry":{"1":3652,"5":217,"6":20,"13":20,"35":10,"40":5,"42":21,"44":9,"45":126,"49":51,"51":12,"61":56,"63":11,"64":49,"68":12,"73":181,"76":15,"78":11,"87":130,"88":25,"94":1202,"96":156,"99":279,"101":223,"102":288,"103":65,"105":191,"108":1524,"109":450}},"geometry":{"type":"Point","coordinates":[-73.94939778521167,40.666885253331834]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047032300","ancestry":{"1":3743,"5":403,"6":147,"10":13,"15":134,"16":8,"21":12,"26":27,"34":11,"35":22,"36":12,"38":7,"40":41,"42":90,"45":9,"49":48,"51":49,"53":9,"58":17,"59":43,"61":30,"64":5,"67":22,"73":159,"76":80,"87":52,"88":36,"94":1149,"96":154,"99":44,"101":212,"102":127,"103":429,"105":209,"108":1675,"109":203}},"geometry":{"type":"Point","coordinates":[-73.95507441040277,40.666547457740435]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047032700","ancestry":{"1":2585,"5":114,"19":45,"22":30,"23":9,"36":95,"40":38,"42":53,"46":18,"49":106,"51":13,"59":13,"61":21,"64":8,"73":53,"76":9,"79":25,"87":7,"88":12,"89":24,"90":16,"94":773,"96":38,"99":74,"101":240,"102":308,"103":100,"105":13,"108":1113,"109":240}},"geometry":{"type":"Point","coordinates":[-73.9587960666779,40.66264644460291]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047032800","ancestry":{"1":2363,"5":65,"6":12,"7":12,"45":67,"49":15,"64":20,"92":45,"93":11,"94":351,"101":176,"102":111,"105":64,"108":1595,"109":289}},"geometry":{"type":"Point","coordinates":[-73.99768462288625,40.57636721669984]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047033000","ancestry":{"1":4331,"5":409,"19":10,"23":5,"36":24,"42":6,"49":24,"51":7,"61":78,"64":446,"73":66,"76":37,"87":29,"92":95,"94":164,"99":5,"101":114,"102":21,"103":7,"105":22,"108":2569,"109":567}},"geometry":{"type":"Point","coordinates":[-73.99871861923684,40.57917526470632]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047033100","ancestry":{"1":4350,"3":81,"5":149,"6":4,"11":4,"23":9,"35":7,"38":33,"40":5,"45":95,"48":8,"49":38,"50":30,"51":92,"61":163,"64":449,"73":46,"79":8,"87":38,"93":12,"94":720,"96":46,"99":43,"101":399,"102":71,"103":19,"105":142,"108":2358,"109":363}},"geometry":{"type":"Point","coordinates":[-73.94200742097962,40.66415811330725]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047033500","ancestry":{"1":3012,"5":289,"6":24,"10":7,"15":17,"18":5,"19":6,"23":10,"36":83,"38":68,"40":5,"42":12,"45":48,"46":5,"49":45,"51":5,"61":35,"64":73,"73":41,"79":16,"87":25,"89":16,"94":374,"96":93,"99":11,"101":9,"102":98,"103":5,"105":169,"108":1711,"109":406}},"geometry":{"type":"Point","coordinates":[-73.94238848655102,40.66759405502758]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047033600","ancestry":{"1":4287,"5":387,"6":118,"7":37,"10":6,"14":75,"19":17,"23":28,"31":13,"33":13,"35":70,"36":14,"38":2,"40":127,"42":118,"43":11,"44":63,"45":67,"46":17,"49":330,"50":34,"51":411,"61":290,"64":675,"73":27,"85":27,"92":147,"93":20,"94":89,"101":68,"103":20,"105":1,"108":1512,"109":423}},"geometry":{"type":"Point","coordinates":[-74.0073463194538,40.577191380451396]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047033900","ancestry":{"1":4365,"5":54,"6":8,"10":8,"13":8,"34":6,"36":45,"42":169,"45":35,"49":100,"51":52,"61":8,"67":29,"73":223,"87":223,"94":1183,"96":72,"99":153,"101":88,"102":146,"103":47,"105":680,"108":2313,"109":563}},"geometry":{"type":"Point","coordinates":[-73.942015077749,40.67121181361835]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034100","ancestry":{"1":2643,"5":60,"19":26,"23":26,"36":26,"38":1,"40":16,"41":17,"42":32,"45":7,"46":26,"49":93,"51":1,"61":5,"64":6,"67":16,"73":93,"87":93,"91":18,"92":26,"94":589,"96":107,"99":42,"101":89,"102":91,"103":136,"105":166,"108":1626,"109":256}},"geometry":{"type":"Point","coordinates":[-73.94458677992203,40.67356618965274]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034200","ancestry":{"1":5694,"5":381,"35":20,"44":13,"51":76,"59":12,"64":426,"92":408,"94":297,"96":49,"101":161,"103":37,"105":50,"108":3535,"109":728}},"geometry":{"type":"Point","coordinates":[-73.99686267152501,40.57410768861472]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034300","ancestry":{"1":5026,"5":115,"36":16,"42":25,"48":9,"49":74,"61":9,"73":71,"87":71,"89":10,"94":904,"95":15,"96":6,"97":9,"101":89,"102":178,"103":149,"105":458,"108":3413,"109":604}},"geometry":{"type":"Point","coordinates":[-73.93883768920192,40.673503019873934]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034500","ancestry":{"1":2579,"5":74,"45":148,"61":1,"73":92,"87":92,"94":1139,"96":223,"99":86,"101":19,"102":174,"103":29,"105":624,"108":1100,"109":147}},"geometry":{"type":"Point","coordinates":[-73.93369271581702,40.67322788851811]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040300","ancestry":{"1":3985,"5":543,"34":12,"40":17,"41":9,"42":19,"45":27,"49":9,"61":18,"62":10,"64":17,"73":12,"87":12,"94":757,"97":54,"99":41,"101":134,"102":98,"103":109,"104":48,"105":273,"106":10,"108":2674,"109":372}},"geometry":{"type":"Point","coordinates":[-73.9082093795583,40.68452261382641]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040500","ancestry":{"1":1445,"5":43,"23":4,"42":4,"45":11,"49":4,"73":18,"79":6,"87":12,"94":87,"96":3,"99":7,"101":41,"102":11,"105":25,"108":1128,"109":209}},"geometry":{"type":"Point","coordinates":[-73.90519264563086,40.681580813155584]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041100","ancestry":{"1":3380,"5":72,"23":4,"36":15,"41":7,"42":4,"45":50,"49":25,"51":130,"61":25,"62":8,"67":15,"73":6,"87":6,"94":461,"99":16,"101":71,"102":239,"103":52,"105":83,"108":2484,"109":318}},"geometry":{"type":"Point","coordinates":[-73.90714949390593,40.68787913999573]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041200","ancestry":{"1":2728,"5":125,"6":60,"7":12,"13":60,"42":18,"49":52,"50":7,"51":752,"61":37,"64":371,"69":12,"92":66,"108":1287,"109":215}},"geometry":{"type":"Point","coordinates":[-73.97419162053593,40.60415746199875]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039500","ancestry":{"1":3847,"5":47,"31":8,"36":13,"40":54,"46":5,"49":32,"51":70,"59":14,"61":8,"93":43,"94":344,"95":7,"96":7,"97":71,"99":10,"101":169,"102":54,"103":28,"105":26,"108":2962,"109":350}},"geometry":{"type":"Point","coordinates":[-73.9247375679264,40.692968328786264]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041300","ancestry":{"1":3895,"5":131,"21":19,"36":100,"40":24,"42":31,"45":32,"49":48,"51":18,"61":9,"62":11,"64":10,"67":23,"73":7,"79":7,"93":23,"94":303,"95":11,"101":22,"102":225,"103":45,"108":2885,"109":362}},"geometry":{"type":"Point","coordinates":[-73.9106200135087,40.689814594771924]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039600","ancestry":{"1":1992,"2":7,"5":99,"6":164,"10":6,"13":158,"16":7,"36":57,"40":38,"42":19,"48":6,"49":51,"50":6,"51":436,"53":16,"61":42,"63":12,"64":28,"92":5,"107":51,"108":939,"109":210}},"geometry":{"type":"Point","coordinates":[-73.96970675180242,40.59734962316721]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039700","ancestry":{"1":3062,"5":41,"6":72,"11":72,"16":17,"33":15,"36":15,"42":78,"45":17,"49":67,"51":18,"61":16,"68":20,"73":108,"79":55,"87":53,"94":132,"96":54,"97":13,"99":2,"102":63,"108":2224,"109":326}},"geometry":{"type":"Point","coordinates":[-73.91914043550888,40.68894875538498]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039800","ancestry":{"1":2699,"5":147,"6":16,"13":16,"16":2,"36":12,"42":26,"44":5,"45":5,"49":26,"51":387,"64":172,"72":22,"91":16,"92":103,"108":1376,"109":460}},"geometry":{"type":"Point","coordinates":[-73.97551240503051,40.595446816243395]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039900","ancestry":{"1":3680,"5":24,"6":25,"14":25,"23":9,"31":8,"35":7,"36":56,"40":17,"41":21,"42":24,"46":12,"49":44,"51":26,"61":11,"62":11,"63":45,"73":2,"87":2,"94":101,"97":5,"99":44,"102":19,"103":33,"108":3117,"109":282}},"geometry":{"type":"Point","coordinates":[-73.91755306962915,40.6902356307693]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040000","ancestry":{"1":3623,"5":47,"6":191,"14":191,"19":10,"31":9,"36":61,"42":95,"49":139,"51":712,"61":26,"63":8,"64":146,"67":8,"89":36,"92":24,"108":2055,"109":286}},"geometry":{"type":"Point","coordinates":[-73.97613522444537,40.59780877994775]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040200","ancestry":{"1":2490,"5":87,"6":23,"7":23,"18":15,"42":3,"44":14,"49":32,"51":531,"55":4,"59":4,"61":15,"64":150,"68":10,"92":31,"107":5,"108":1309,"109":393}},"geometry":{"type":"Point","coordinates":[-73.98272343748931,40.59600092101449]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041401","ancestry":{"1":1265,"5":35,"6":198,"10":7,"11":55,"13":136,"19":4,"36":4,"38":9,"42":9,"49":4,"50":62,"51":63,"63":4,"64":148,"91":3,"92":43,"108":652,"109":117}},"geometry":{"type":"Point","coordinates":[-73.9710653847407,40.6017064855792]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041500","ancestry":{"1":4238,"5":80,"6":9,"10":9,"35":8,"42":46,"45":125,"49":61,"59":12,"62":12,"63":9,"73":26,"87":16,"88":10,"94":297,"96":67,"99":34,"101":1,"102":46,"103":149,"108":3164,"109":464}},"geometry":{"type":"Point","coordinates":[-73.91438960082368,40.691950175005005]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041600","ancestry":{"1":2736,"5":387,"6":330,"7":67,"10":27,"11":16,"13":179,"14":10,"15":31,"16":9,"38":59,"40":6,"41":14,"42":15,"45":23,"46":3,"49":28,"51":99,"61":40,"64":145,"68":27,"91":21,"108":1587,"109":139}},"geometry":{"type":"Point","coordinates":[-73.96348640957594,40.602411234000876]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041800","ancestry":{"1":2024,"3":10,"5":124,"6":156,"7":19,"13":76,"14":20,"15":41,"35":5,"40":10,"42":23,"46":24,"50":10,"61":61,"64":188,"70":5,"91":4,"92":53,"108":1168,"109":267}},"geometry":{"type":"Point","coordinates":[-73.96485162787788,40.60539997480588]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041900","ancestry":{"1":4048,"5":147,"16":14,"23":13,"26":10,"29":9,"33":11,"38":61,"40":12,"42":65,"45":10,"49":85,"51":38,"61":14,"64":10,"67":25,"70":10,"73":20,"79":8,"88":12,"91":21,"94":174,"101":44,"102":111,"105":19,"108":3386,"109":210}},"geometry":{"type":"Point","coordinates":[-73.9210331182993,40.69532328952782]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042100","ancestry":{"1":3839,"5":25,"36":8,"40":83,"42":34,"49":94,"51":122,"53":7,"61":10,"62":8,"64":29,"66":7,"67":37,"89":10,"90":9,"94":50,"97":21,"102":27,"105":2,"108":3214,"109":261}},"geometry":{"type":"Point","coordinates":[-73.92403841065321,40.69702928246929]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042300","ancestry":{"1":4851,"5":166,"6":21,"7":21,"23":21,"29":58,"31":8,"32":7,"33":10,"34":10,"36":9,"38":7,"41":14,"42":123,"46":18,"49":98,"51":100,"53":14,"61":90,"64":22,"67":16,"68":16,"71":8,"90":8,"93":9,"94":16,"102":10,"103":6,"108":4001,"109":230}},"geometry":{"type":"Point","coordinates":[-73.92728868050533,40.69900207463827]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042500","ancestry":{"1":2665,"5":89,"6":24,"11":9,"12":15,"26":17,"36":93,"38":21,"40":48,"42":79,"44":34,"45":2,"48":8,"49":68,"51":92,"61":27,"62":17,"66":13,"67":45,"89":7,"90":5,"93":32,"94":10,"99":10,"108":1978,"109":174}},"geometry":{"type":"Point","coordinates":[-73.93095870851654,40.70144846867021]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042600","ancestry":{"1":4417,"3":97,"5":128,"6":60,"7":51,"15":9,"16":64,"32":23,"38":18,"42":32,"44":27,"45":41,"49":76,"51":487,"52":8,"61":52,"64":329,"73":14,"76":7,"87":7,"91":21,"92":76,"107":30,"108":2688,"109":246}},"geometry":{"type":"Point","coordinates":[-73.98018913615479,40.60567503673967]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042700","ancestry":{"1":5773,"5":113,"16":11,"23":9,"26":9,"31":10,"34":7,"35":9,"36":32,"38":65,"40":16,"41":8,"42":123,"45":94,"49":144,"51":148,"53":7,"59":7,"61":26,"64":33,"65":8,"66":8,"67":20,"73":34,"87":34,"89":8,"92":7,"94":161,"96":45,"101":8,"102":64,"105":89,"108":4656,"109":290}},"geometry":{"type":"Point","coordinates":[-73.92719133630168,40.70368317373985]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042800","ancestry":{"1":4036,"3":60,"5":177,"16":7,"35":26,"36":21,"38":57,"40":38,"42":7,"44":97,"49":21,"51":358,"59":6,"61":47,"62":22,"64":627,"70":106,"92":234,"108":1961,"109":358}},"geometry":{"type":"Point","coordinates":[-73.9843266485401,40.605645779028315]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042900","ancestry":{"1":5835,"5":75,"6":39,"10":17,"13":13,"15":9,"22":47,"23":21,"25":10,"34":9,"35":59,"36":44,"39":9,"40":36,"42":73,"44":18,"45":15,"46":9,"49":133,"51":111,"61":102,"64":49,"67":28,"89":9,"90":9,"93":9,"94":57,"101":57,"108":4844,"109":300}},"geometry":{"type":"Point","coordinates":[-73.9234556131054,40.70179912605395]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043000","ancestry":{"1":3080,"3":134,"5":155,"6":59,"7":40,"14":19,"38":7,"42":7,"51":290,"61":17,"64":484,"70":35,"92":35,"108":1731,"109":236}},"geometry":{"type":"Point","coordinates":[-73.98420200795368,40.60924934428503]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043100","ancestry":{"1":5695,"5":136,"6":63,"11":19,"14":44,"21":10,"23":18,"31":12,"34":21,"36":31,"38":31,"42":85,"45":18,"46":9,"49":98,"51":91,"61":62,"67":35,"69":8,"89":10,"91":10,"92":8,"94":131,"102":18,"103":51,"105":62,"108":4683,"109":372}},"geometry":{"type":"Point","coordinates":[-73.91969800342153,40.69966053170628]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039200","ancestry":{"1":2714,"3":34,"5":52,"6":364,"7":6,"10":96,"13":301,"14":26,"16":23,"18":23,"19":6,"33":10,"36":17,"38":9,"40":9,"41":8,"48":6,"49":50,"50":11,"51":319,"61":15,"63":6,"64":293,"69":11,"70":10,"89":8,"92":105,"94":24,"101":24,"107":6,"108":1245,"109":293}},"geometry":{"type":"Point","coordinates":[-73.96303960175747,40.595849952964734]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041402","ancestry":{"1":1735,"5":149,"6":125,"7":18,"13":93,"15":20,"31":6,"35":3,"38":12,"40":24,"42":13,"49":23,"50":55,"51":6,"52":13,"64":128,"73":8,"83":8,"91":97,"92":91,"108":997,"109":111}},"geometry":{"type":"Point","coordinates":[-73.9679363075321,40.602423308144836]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021200","ancestry":{"1":5130,"2":53,"3":65,"5":111,"6":284,"7":200,"9":15,"10":20,"14":36,"15":13,"19":8,"22":48,"36":8,"38":16,"40":6,"42":131,"44":15,"49":82,"50":17,"51":462,"61":182,"64":43,"92":6,"108":3525,"109":353}},"geometry":{"type":"Point","coordinates":[-74.00585010374489,40.629474521579475]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019400","ancestry":{"1":3653,"5":87,"26":24,"39":7,"42":30,"46":40,"49":77,"51":369,"53":21,"61":166,"64":72,"69":10,"73":57,"79":11,"87":46,"108":2677,"109":195}},"geometry":{"type":"Point","coordinates":[-74.00110772710944,40.62583686256543]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047117602","ancestry":{"1":2911,"5":47,"36":11,"42":5,"45":145,"49":11,"51":49,"64":5,"73":21,"87":21,"94":75,"101":9,"102":41,"103":25,"108":2388,"109":175}},"geometry":{"type":"Point","coordinates":[-73.87444754460452,40.68623497796647]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041700","ancestry":{"1":3389,"5":20,"40":10,"73":6,"88":6,"94":170,"101":19,"102":60,"103":91,"108":2968,"109":245}},"geometry":{"type":"Point","coordinates":[-73.91791786226139,40.69376251113323]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047089800","ancestry":{"1":1822,"5":87,"45":70,"51":6,"73":39,"79":15,"87":24,"94":667,"96":29,"99":152,"101":31,"102":293,"103":66,"104":6,"105":104,"108":961,"109":80}},"geometry":{"type":"Point","coordinates":[-73.9137076887378,40.66278614758227]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047072800","ancestry":{"1":3733,"5":178,"6":9,"7":9,"19":11,"35":15,"40":17,"42":23,"45":333,"46":18,"51":78,"61":12,"62":23,"64":29,"73":57,"74":11,"79":18,"87":28,"92":10,"94":1862,"96":71,"99":314,"101":662,"102":704,"103":78,"105":149,"108":764,"109":493}},"geometry":{"type":"Point","coordinates":[-73.92700413935955,40.62948561459655]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036002","ancestry":{"1":3818,"5":36,"16":126,"19":4,"36":22,"42":4,"51":74,"52":14,"61":68,"63":4,"64":859,"92":387,"107":6,"108":1885,"109":399}},"geometry":{"type":"Point","coordinates":[-73.96123763894758,40.57636213978713]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047098800","ancestry":{"1":3086,"5":240,"36":7,"38":13,"40":17,"42":25,"44":5,"45":55,"51":94,"61":25,"64":25,"73":100,"78":15,"79":11,"87":85,"94":1683,"96":119,"97":39,"99":48,"100":19,"101":684,"102":447,"103":202,"105":148,"108":723,"109":302}},"geometry":{"type":"Point","coordinates":[-73.89731527746574,40.64300188359531]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059600","ancestry":{"1":2416,"5":182,"6":33,"11":33,"19":21,"23":10,"35":5,"36":7,"41":50,"42":20,"44":29,"49":68,"51":141,"59":31,"61":118,"63":31,"64":283,"72":8,"92":209,"94":10,"102":10,"107":111,"108":923,"109":449}},"geometry":{"type":"Point","coordinates":[-73.94005652134562,40.59109678603977]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047058200","ancestry":{"1":2997,"5":153,"6":329,"7":55,"13":252,"14":22,"33":26,"38":23,"42":8,"49":86,"50":44,"51":184,"61":39,"64":139,"92":256,"108":1625,"109":231}},"geometry":{"type":"Point","coordinates":[-73.9592618468869,40.59853988780819]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047068600","ancestry":{"1":1441,"5":25,"6":11,"7":11,"31":5,"36":34,"40":19,"41":6,"42":8,"44":42,"46":5,"49":106,"51":206,"52":8,"61":42,"63":21,"64":51,"92":9,"94":401,"99":50,"101":151,"102":150,"105":50,"107":6,"108":518,"109":87}},"geometry":{"type":"Point","coordinates":[-73.91728162330621,40.61482258359437]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025400","ancestry":{"1":4076,"3":172,"5":72,"6":133,"14":133,"19":19,"31":6,"32":7,"36":6,"42":22,"46":103,"49":51,"51":299,"61":7,"63":63,"64":76,"66":10,"70":7,"92":34,"108":2705,"109":440}},"geometry":{"type":"Point","coordinates":[-73.98384491192157,40.61669723433688]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047032100","ancestry":{"1":5898,"5":347,"21":10,"23":24,"33":12,"36":75,"38":59,"40":46,"41":7,"42":130,"44":13,"45":96,"49":202,"50":16,"51":131,"61":61,"64":65,"66":12,"67":52,"73":91,"75":15,"82":32,"87":44,"94":2075,"96":53,"99":257,"101":944,"102":513,"103":244,"104":10,"105":112,"108":2007,"109":914}},"geometry":{"type":"Point","coordinates":[-73.95218334442174,40.666869194986724]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047081600","ancestry":{"1":2773,"3":19,"5":161,"6":4,"13":4,"14":4,"23":7,"36":7,"45":89,"63":9,"67":13,"73":405,"87":405,"94":1768,"95":15,"96":67,"99":103,"101":510,"102":455,"103":253,"105":417,"108":518,"109":159}},"geometry":{"type":"Point","coordinates":[-73.94420530794888,40.65352966684333]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047078800","ancestry":{"1":3524,"5":138,"36":10,"40":8,"42":10,"45":242,"73":98,"74":12,"79":29,"87":57,"94":1773,"96":9,"99":191,"101":758,"102":145,"103":202,"105":487,"108":1124,"109":272}},"geometry":{"type":"Point","coordinates":[-73.94883670425449,40.63746549513458]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019500","ancestry":{"1":3998,"5":54,"6":49,"7":24,"10":25,"15":8,"18":33,"19":48,"20":8,"29":12,"31":30,"34":10,"35":77,"36":141,"37":10,"38":68,"40":97,"42":219,"44":55,"46":26,"49":294,"50":57,"51":347,"55":9,"59":41,"61":140,"63":17,"64":70,"65":12,"66":26,"67":147,"73":92,"79":36,"86":25,"87":31,"89":11,"90":9,"92":12,"93":20,"94":329,"96":99,"99":17,"101":194,"102":25,"103":11,"108":1911,"109":233}},"geometry":{"type":"Point","coordinates":[-73.96749983442436,40.69141014082056]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044800","ancestry":{"1":1936,"5":213,"6":73,"7":11,"13":40,"15":22,"19":10,"31":15,"32":12,"35":11,"36":16,"38":53,"42":18,"46":14,"48":120,"49":24,"50":21,"51":119,"53":5,"59":8,"61":92,"63":9,"64":128,"71":10,"89":8,"91":7,"92":63,"94":4,"103":4,"108":595,"109":406}},"geometry":{"type":"Point","coordinates":[-73.97324680671714,40.61809342475675]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007400","ancestry":{"1":5633,"5":132,"6":103,"7":103,"34":8,"38":16,"40":10,"42":10,"44":10,"49":81,"51":30,"59":8,"64":7,"66":10,"67":8,"89":8,"92":9,"94":10,"99":10,"107":10,"108":4834,"109":445}},"geometry":{"type":"Point","coordinates":[-74.01702880093792,40.641855221736655]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047004600","ancestry":{"1":1396,"5":74,"6":182,"10":92,"13":85,"15":5,"16":8,"19":7,"20":19,"22":15,"33":7,"36":14,"38":24,"40":26,"42":126,"44":129,"49":207,"51":420,"54":6,"59":18,"61":46,"64":25,"66":7,"108":367,"109":87}},"geometry":{"type":"Point","coordinates":[-74.03629124479795,40.62699071768187]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043200","ancestry":{"1":4730,"3":41,"5":128,"6":130,"13":4,"14":5,"15":121,"16":99,"19":16,"24":12,"36":28,"38":29,"42":8,"44":17,"48":22,"49":45,"50":4,"51":327,"61":73,"64":499,"66":25,"91":23,"92":223,"93":15,"107":108,"108":2765,"109":453}},"geometry":{"type":"Point","coordinates":[-73.98068468061948,40.61068151592479]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043300","ancestry":{"1":4370,"5":75,"6":26,"10":26,"32":18,"34":7,"36":66,"42":80,"49":69,"51":72,"53":27,"61":12,"67":53,"73":31,"87":31,"108":3852,"109":177}},"geometry":{"type":"Point","coordinates":[-73.9159389455482,40.697522040481545]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043400","ancestry":{"1":3472,"5":149,"6":189,"7":189,"16":9,"36":7,"38":12,"42":112,"44":160,"49":37,"50":17,"51":631,"61":135,"64":414,"89":5,"92":182,"94":7,"103":7,"107":16,"108":1486,"109":211}},"geometry":{"type":"Point","coordinates":[-73.97692769619333,40.610042414872105]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043500","ancestry":{"1":5161,"5":26,"6":1,"7":1,"38":30,"41":10,"42":78,"44":12,"49":43,"51":2,"61":17,"65":24,"89":16,"90":33,"94":332,"101":195,"102":126,"103":11,"108":4433,"109":216}},"geometry":{"type":"Point","coordinates":[-73.912180181658,40.695383977944836]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043900","ancestry":{"1":4259,"3":24,"5":5,"6":6,"8":6,"19":20,"40":6,"42":33,"45":71,"49":11,"51":40,"58":11,"59":24,"61":34,"94":152,"101":127,"105":25,"108":3590,"109":306}},"geometry":{"type":"Point","coordinates":[-73.90930859892252,40.69747107628614]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047043900","ancestry":{"1":4259,"3":24,"5":5,"6":6,"8":6,"19":20,"40":6,"42":33,"45":71,"49":11,"51":40,"58":11,"59":24,"61":34,"94":152,"101":127,"105":25,"108":3590,"109":306}},"geometry":{"type":"Point","coordinates":[-73.90982523401452,40.698879985100774]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044000","ancestry":{"1":2637,"5":489,"6":131,"7":5,"10":13,"11":52,"13":88,"15":9,"31":8,"32":13,"35":4,"36":7,"37":6,"39":6,"40":14,"42":12,"44":59,"46":58,"48":30,"49":9,"50":9,"51":118,"52":12,"61":96,"64":228,"67":5,"92":23,"108":1006,"109":385}},"geometry":{"type":"Point","coordinates":[-73.97097696006193,40.613038534770425]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044100","ancestry":{"1":6547,"5":179,"36":22,"38":32,"40":56,"41":23,"42":26,"45":36,"49":43,"51":59,"53":10,"61":32,"67":9,"92":11,"94":8,"105":8,"108":5999,"109":161}},"geometry":{"type":"Point","coordinates":[-73.91405202423347,40.701422790362116]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047044100","ancestry":{"1":6547,"5":179,"36":22,"38":32,"40":56,"41":23,"42":26,"45":36,"49":43,"51":59,"53":10,"61":32,"67":9,"92":11,"94":8,"105":8,"108":5999,"109":161}},"geometry":{"type":"Point","coordinates":[-73.91181608210212,40.702002753339244]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044200","ancestry":{"1":2675,"5":759,"6":183,"7":12,"11":25,"13":146,"31":5,"35":5,"38":19,"42":47,"46":9,"49":5,"50":71,"51":97,"61":247,"63":41,"64":59,"68":5,"71":6,"89":5,"92":49,"108":1117,"109":92}},"geometry":{"type":"Point","coordinates":[-73.96559357897476,40.612396562567696]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044300","ancestry":{"1":6198,"5":52,"6":207,"11":16,"15":191,"16":16,"22":15,"26":18,"33":9,"34":16,"36":67,"38":7,"40":29,"41":18,"42":42,"45":26,"46":8,"49":119,"51":236,"53":6,"61":51,"63":6,"64":33,"65":25,"66":7,"67":10,"73":40,"75":34,"87":6,"89":6,"92":9,"94":101,"101":16,"105":85,"108":5020,"109":231}},"geometry":{"type":"Point","coordinates":[-73.91668623220946,40.70330433716116]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047044300","ancestry":{"1":6198,"5":52,"6":207,"11":16,"15":191,"16":16,"22":15,"26":18,"33":9,"34":16,"36":67,"38":7,"40":29,"41":18,"42":42,"45":26,"46":8,"49":119,"51":236,"53":6,"61":51,"63":6,"64":33,"65":25,"66":7,"67":10,"73":40,"75":34,"87":6,"89":6,"92":9,"94":101,"101":16,"105":85,"108":5020,"109":231}},"geometry":{"type":"Point","coordinates":[-73.91428562028351,40.70490098403642]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044400","ancestry":{"1":3237,"5":685,"6":251,"11":6,"13":245,"26":9,"32":5,"35":7,"38":18,"40":17,"42":18,"44":8,"46":23,"49":46,"50":19,"51":241,"53":4,"61":136,"63":35,"64":101,"73":7,"87":7,"90":9,"92":37,"94":5,"101":5,"108":1184,"109":687}},"geometry":{"type":"Point","coordinates":[-73.96932195612744,40.615767413981814]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044500","ancestry":{"1":4825,"5":90,"6":134,"14":32,"15":102,"20":12,"21":10,"23":20,"29":8,"33":20,"34":27,"36":74,"40":30,"41":10,"42":237,"45":19,"46":9,"48":9,"49":123,"51":108,"61":88,"62":18,"64":34,"66":6,"67":40,"73":57,"87":57,"89":24,"92":9,"93":15,"94":138,"102":10,"105":128,"108":3631,"109":227}},"geometry":{"type":"Point","coordinates":[-73.91967164910187,40.7050360343047]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047044500","ancestry":{"1":4825,"5":90,"6":134,"14":32,"15":102,"20":12,"21":10,"23":20,"29":8,"33":20,"34":27,"36":74,"40":30,"41":10,"42":237,"45":19,"46":9,"48":9,"49":123,"51":108,"61":88,"62":18,"64":34,"66":6,"67":40,"73":57,"87":57,"89":24,"92":9,"93":15,"94":138,"102":10,"105":128,"108":3631,"109":227}},"geometry":{"type":"Point","coordinates":[-73.91746353092621,40.7067814346969]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044600","ancestry":{"1":1933,"3":119,"5":69,"6":28,"10":12,"15":16,"19":19,"23":12,"36":10,"38":19,"40":8,"44":19,"46":5,"49":49,"51":381,"52":24,"61":7,"63":9,"64":154,"73":2,"76":2,"89":8,"91":27,"92":70,"108":770,"109":266}},"geometry":{"type":"Point","coordinates":[-73.97605763818328,40.6152294211598]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047045000","ancestry":{"1":507,"5":83,"6":55,"11":3,"13":52,"23":4,"26":4,"35":4,"36":37,"38":4,"42":22,"46":20,"49":34,"51":25,"53":4,"61":32,"63":3,"64":12,"66":19,"94":6,"105":6,"108":138,"109":75}},"geometry":{"type":"Point","coordinates":[-73.97288106678405,40.6216296317886]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047045200","ancestry":{"1":2672,"5":504,"6":315,"7":38,"8":18,"10":9,"13":184,"15":71,"23":7,"32":6,"34":9,"35":7,"36":7,"38":10,"40":18,"42":45,"44":32,"46":67,"48":18,"49":19,"50":40,"51":34,"53":13,"61":211,"64":151,"108":1063,"109":330}},"geometry":{"type":"Point","coordinates":[-73.96816212847018,40.62017426343671]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047045300","ancestry":{"1":2168,"5":94,"19":6,"22":14,"23":8,"26":19,"31":7,"33":5,"34":16,"35":4,"36":35,"40":22,"42":61,"44":4,"46":30,"48":7,"49":139,"51":53,"53":4,"59":43,"61":35,"62":4,"63":19,"64":16,"66":17,"71":4,"89":4,"92":5,"93":9,"94":7,"96":7,"108":1432,"109":287}},"geometry":{"type":"Point","coordinates":[-73.92895687154257,40.70658438741623]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047045400","ancestry":{"1":1918,"5":282,"6":98,"7":9,"13":89,"36":4,"38":32,"42":31,"46":40,"49":18,"50":4,"51":20,"52":8,"53":32,"61":216,"64":84,"89":4,"90":4,"92":9,"94":2,"105":2,"108":994,"109":225}},"geometry":{"type":"Point","coordinates":[-73.96500248300858,40.61868264141185]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047079400","ancestry":{"1":1820,"5":67,"40":6,"42":2,"45":85,"51":19,"73":157,"76":15,"87":43,"88":99,"92":3,"94":698,"96":42,"99":177,"101":212,"102":146,"103":55,"105":75,"108":808,"109":87}},"geometry":{"type":"Point","coordinates":[-73.95528601111259,40.64860530498308]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047078600","ancestry":{"1":4767,"5":44,"34":18,"35":10,"38":38,"40":18,"42":20,"45":139,"49":15,"51":6,"63":9,"64":96,"73":69,"87":69,"94":1674,"96":56,"97":10,"99":99,"101":798,"102":131,"103":166,"105":427,"108":2468,"109":260}},"geometry":{"type":"Point","coordinates":[-73.94706257493448,40.63441400391287]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047079000","ancestry":{"1":5087,"5":56,"6":37,"7":19,"15":18,"26":31,"36":9,"42":36,"45":291,"49":36,"51":19,"61":29,"67":6,"73":120,"76":29,"87":91,"90":22,"94":2174,"96":163,"99":276,"101":720,"102":689,"103":176,"105":150,"108":2219,"109":329}},"geometry":{"type":"Point","coordinates":[-73.95369671749276,40.640977820330704]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047079200","ancestry":{"1":3864,"5":106,"42":44,"45":116,"49":48,"73":58,"79":19,"87":17,"88":22,"94":1546,"96":29,"97":6,"99":282,"101":529,"102":339,"103":235,"105":127,"106":21,"108":1780,"109":358}},"geometry":{"type":"Point","coordinates":[-73.95491068690087,40.64476416362564]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047080400","ancestry":{"1":3169,"5":138,"23":7,"32":1,"35":25,"38":15,"40":13,"42":45,"45":80,"48":6,"49":32,"51":13,"59":1,"61":15,"64":29,"73":42,"87":25,"88":17,"94":1240,"96":201,"97":35,"99":109,"101":151,"102":590,"103":130,"105":39,"108":1197,"109":433}},"geometry":{"type":"Point","coordinates":[-73.94899025637835,40.65897444773053]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047080600","ancestry":{"1":3892,"5":63,"31":11,"36":22,"38":81,"42":132,"45":101,"46":10,"49":25,"50":164,"61":59,"63":11,"64":174,"73":141,"79":40,"87":101,"92":33,"94":981,"96":11,"97":46,"99":110,"100":21,"101":383,"102":258,"103":47,"105":152,"108":2004,"109":349}},"geometry":{"type":"Point","coordinates":[-73.94386145671372,40.66165903846874]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048200","ancestry":{"1":5976,"3":7,"5":660,"19":29,"23":8,"26":13,"31":16,"33":8,"34":4,"36":26,"38":7,"40":17,"42":69,"45":8,"46":27,"48":17,"49":60,"50":47,"51":67,"53":7,"61":92,"63":36,"64":432,"67":13,"69":31,"70":13,"73":25,"87":25,"92":159,"94":162,"101":104,"103":37,"105":21,"108":3900,"109":530}},"geometry":{"type":"Point","coordinates":[-73.96953122711899,40.6332088667193]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007800","ancestry":{"1":5582,"5":218,"23":17,"36":48,"40":8,"41":12,"42":96,"43":7,"49":72,"51":110,"59":7,"61":7,"64":22,"66":14,"67":17,"70":13,"73":94,"87":94,"89":7,"92":12,"94":13,"101":1,"105":12,"108":4814,"109":403}},"geometry":{"type":"Point","coordinates":[-74.012337021746,40.6463204407773]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028501","ancestry":{"1":423,"5":12,"22":8,"23":9,"31":5,"36":17,"38":15,"49":9,"51":9,"67":17,"94":8,"99":3,"101":5,"108":296,"109":52}},"geometry":{"type":"Point","coordinates":[-73.94209134844459,40.6994265760502]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026100","ancestry":{"1":5062,"26":12,"31":15,"34":27,"36":82,"38":81,"40":105,"42":144,"45":470,"49":111,"51":79,"53":27,"62":57,"64":43,"66":21,"73":152,"78":34,"87":108,"88":10,"94":161,"96":11,"101":52,"102":33,"103":65,"108":3653,"109":433}},"geometry":{"type":"Point","coordinates":[-73.94571421915339,40.6923989165407]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047067800","ancestry":{"1":2563,"5":96,"6":42,"7":41,"10":1,"32":12,"38":21,"42":5,"45":103,"46":13,"49":32,"50":40,"51":2,"61":90,"64":25,"73":116,"76":49,"79":5,"87":68,"94":1420,"96":5,"99":250,"101":558,"102":179,"103":260,"104":46,"105":157,"108":592,"109":90}},"geometry":{"type":"Point","coordinates":[-73.92277904381083,40.62614894467402]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047075400","ancestry":{"1":1488,"5":64,"6":9,"7":9,"35":27,"38":29,"40":11,"42":11,"46":21,"49":24,"50":59,"51":26,"61":123,"64":211,"92":4,"93":1,"94":1,"105":1,"108":757,"109":156}},"geometry":{"type":"Point","coordinates":[-73.95071151073728,40.621473792138936]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047009000","ancestry":{"1":3330,"5":122,"6":171,"7":60,"9":8,"12":9,"14":94,"18":10,"23":5,"36":10,"40":4,"42":11,"44":11,"46":6,"49":9,"51":66,"61":70,"62":5,"63":15,"67":5,"70":18,"89":14,"94":5,"105":5,"108":2742,"109":199}},"geometry":{"type":"Point","coordinates":[-73.99729941991257,40.647256789141416]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018100","ancestry":{"1":3530,"5":83,"6":132,"7":14,"10":94,"13":65,"18":9,"19":12,"21":15,"22":32,"23":22,"29":79,"31":23,"33":25,"34":89,"35":54,"36":366,"38":149,"40":36,"42":368,"44":16,"46":41,"49":519,"51":172,"59":13,"61":84,"64":244,"65":13,"66":14,"67":25,"68":15,"73":69,"79":16,"87":53,"89":28,"90":14,"92":25,"93":43,"94":78,"102":78,"108":1596,"109":273}},"geometry":{"type":"Point","coordinates":[-73.97236793617866,40.68777503099622]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047080200","ancestry":{"1":5115,"3":73,"5":353,"36":23,"38":17,"41":18,"42":14,"45":263,"46":11,"49":110,"51":58,"59":9,"61":22,"63":11,"67":19,"73":114,"76":24,"77":10,"79":10,"81":27,"87":43,"89":9,"93":9,"94":1323,"95":8,"96":27,"99":189,"101":565,"102":237,"103":267,"105":44,"108":2371,"109":622}},"geometry":{"type":"Point","coordinates":[-73.95344071951648,40.65763987140323]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047083800","ancestry":{"1":2545,"5":58,"26":12,"31":4,"45":261,"49":66,"51":53,"64":1,"73":136,"76":10,"87":126,"94":1487,"96":4,"97":19,"99":401,"101":349,"102":426,"103":129,"105":170,"108":410,"109":230}},"geometry":{"type":"Point","coordinates":[-73.93513505377086,40.64175608988594]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055100","ancestry":{"1":5507,"4":6,"5":202,"6":33,"7":17,"10":16,"19":17,"22":45,"23":60,"31":17,"32":21,"33":17,"34":29,"35":17,"36":283,"38":146,"40":46,"41":17,"42":164,"44":47,"46":45,"49":175,"51":201,"59":75,"61":137,"63":14,"64":42,"67":31,"68":19,"70":16,"71":15,"89":88,"91":45,"93":28,"108":3561,"109":576}},"geometry":{"type":"Point","coordinates":[-73.96439122037594,40.71394741765521]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019300","ancestry":{"1":5967,"2":49,"5":265,"6":107,"7":95,"10":29,"19":15,"23":12,"26":8,"29":8,"31":14,"36":91,"38":5,"42":223,"44":9,"46":110,"49":338,"51":245,"61":121,"62":9,"64":57,"66":13,"67":9,"68":14,"73":50,"83":9,"87":41,"89":62,"91":7,"92":73,"93":5,"94":431,"96":20,"99":13,"101":21,"102":200,"103":20,"104":88,"105":69,"108":3336,"109":1085}},"geometry":{"type":"Point","coordinates":[-73.96264074489571,40.69127954119619]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047086800","ancestry":{"1":3102,"5":53,"6":141,"15":141,"45":201,"51":10,"73":791,"79":21,"87":770,"94":1895,"96":110,"99":95,"101":230,"102":615,"103":66,"105":769,"106":10,"108":560,"109":205}},"geometry":{"type":"Point","coordinates":[-73.92973090606428,40.65431245116947]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047099600","ancestry":{"1":3755,"5":234,"36":9,"42":7,"45":138,"51":59,"61":12,"64":16,"73":88,"79":42,"87":46,"94":2513,"96":47,"99":129,"101":881,"102":649,"103":525,"105":317,"108":699,"109":239}},"geometry":{"type":"Point","coordinates":[-73.90778779538809,40.633443805379315]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042000","ancestry":{"1":1979,"5":407,"6":184,"7":5,"10":15,"11":4,"13":55,"15":105,"35":23,"36":1,"38":62,"42":10,"46":4,"48":6,"49":1,"50":5,"51":16,"61":80,"63":10,"64":33,"92":4,"108":967,"109":193}},"geometry":{"type":"Point","coordinates":[-73.96433224324223,40.60923771891978]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020200","ancestry":{"1":1979,"3":24,"5":34,"6":94,"7":36,"10":54,"13":4,"19":5,"22":15,"29":9,"30":9,"34":68,"36":11,"40":9,"42":186,"44":129,"49":237,"51":805,"53":4,"59":19,"61":24,"64":13,"66":4,"92":45,"108":633,"109":78}},"geometry":{"type":"Point","coordinates":[-74.01102143750826,40.62202001727002]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047065400","ancestry":{"1":1793,"3":10,"5":122,"23":5,"26":11,"31":8,"35":18,"36":41,"38":143,"40":19,"42":86,"44":20,"49":471,"51":395,"53":9,"59":3,"61":33,"64":26,"67":44,"89":36,"92":21,"94":17,"101":12,"102":5,"108":512,"109":138}},"geometry":{"type":"Point","coordinates":[-73.93180782354487,40.61294874156856]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040400","ancestry":{"1":2279,"5":106,"6":84,"7":84,"34":28,"36":17,"42":45,"44":22,"49":14,"51":734,"59":7,"61":25,"63":35,"64":15,"92":37,"108":1028,"109":237}},"geometry":{"type":"Point","coordinates":[-73.98541944343546,40.60218572083996]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047004100","ancestry":{"1":3587,"2":7,"5":174,"6":32,"10":4,"15":28,"16":12,"18":20,"19":101,"21":10,"23":12,"24":6,"26":28,"31":20,"33":41,"34":45,"35":162,"36":366,"38":51,"40":200,"41":16,"42":260,"44":19,"45":29,"46":42,"49":523,"51":312,"53":10,"57":35,"59":26,"60":5,"61":148,"62":64,"63":20,"64":137,"66":33,"67":59,"70":8,"73":9,"87":9,"89":43,"90":18,"93":28,"94":169,"101":65,"105":104,"108":1234,"109":223}},"geometry":{"type":"Point","coordinates":[-73.98505370249626,40.68659970161512]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047032900","ancestry":{"1":5494,"5":130,"6":33,"10":9,"13":24,"23":23,"26":29,"35":31,"36":10,"38":39,"40":140,"42":121,"45":45,"46":82,"49":88,"50":81,"51":61,"61":127,"64":349,"73":38,"79":14,"88":24,"89":12,"92":9,"94":2085,"96":109,"97":18,"99":293,"101":1061,"102":235,"103":218,"105":153,"106":19,"108":2069,"109":357}},"geometry":{"type":"Point","coordinates":[-73.94841956907906,40.663263557870316]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013900","ancestry":{"1":3470,"5":233,"6":109,"7":37,"13":5,"14":67,"16":9,"19":48,"23":19,"29":8,"33":10,"34":47,"35":53,"36":246,"38":156,"40":67,"42":337,"44":8,"46":59,"49":620,"51":300,"53":14,"59":18,"61":201,"63":54,"64":107,"66":17,"67":37,"70":7,"73":8,"75":8,"89":18,"92":18,"93":35,"94":58,"101":18,"102":31,"105":18,"108":1429,"109":203}},"geometry":{"type":"Point","coordinates":[-73.98733648078992,40.66798621465746]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047002300","ancestry":{"1":4370,"5":61,"6":16,"14":16,"19":8,"36":6,"42":8,"48":27,"49":16,"73":17,"87":17,"94":279,"101":100,"102":179,"108":3620,"109":397}},"geometry":{"type":"Point","coordinates":[-73.98327988442509,40.69956168060721]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016000","ancestry":{"1":4415,"3":28,"5":277,"6":599,"7":319,"10":156,"12":8,"13":37,"14":69,"15":27,"19":9,"21":11,"35":10,"36":44,"38":49,"40":57,"42":97,"44":242,"49":479,"51":436,"53":10,"59":46,"61":83,"62":10,"64":67,"66":9,"67":20,"69":8,"73":26,"81":26,"89":36,"92":11,"94":162,"101":24,"105":138,"107":98,"108":2017,"109":254}},"geometry":{"type":"Point","coordinates":[-74.02687206208047,40.61897968287426]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036300","ancestry":{"1":3977,"5":263,"34":18,"36":45,"45":199,"51":8,"73":204,"81":37,"87":159,"88":35,"94":1165,"96":9,"99":138,"100":18,"101":48,"102":685,"103":33,"105":243,"108":1956,"109":243}},"geometry":{"type":"Point","coordinates":[-73.91699229944554,40.67217567875397]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047092800","ancestry":{"1":2566,"5":174,"23":15,"34":8,"40":1,"45":177,"51":8,"59":2,"64":7,"73":101,"87":101,"94":1480,"96":104,"99":450,"101":95,"102":605,"103":114,"105":126,"108":591,"109":132}},"geometry":{"type":"Point","coordinates":[-73.91177257111183,40.65247930752504]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012801","ancestry":{"1":1992,"5":91,"6":205,"7":57,"10":31,"11":17,"12":15,"14":85,"19":10,"36":9,"42":12,"44":20,"46":25,"48":11,"49":65,"51":108,"59":23,"61":71,"64":46,"70":5,"89":11,"91":42,"92":5,"94":6,"99":6,"108":1226,"109":230}},"geometry":{"type":"Point","coordinates":[-74.01330270914826,40.63080087155582]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047046800","ancestry":{"1":2151,"5":206,"6":17,"15":17,"22":17,"31":16,"35":55,"36":71,"38":73,"40":25,"42":50,"46":279,"49":26,"50":145,"51":123,"59":5,"61":42,"92":11,"94":3,"101":3,"108":905,"109":282}},"geometry":{"type":"Point","coordinates":[-73.98075964029772,40.62149375782024]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047047000","ancestry":{"1":2763,"5":119,"19":20,"26":6,"31":5,"32":19,"35":45,"36":15,"38":154,"40":6,"41":5,"42":28,"46":175,"49":42,"51":182,"59":34,"61":131,"63":20,"64":13,"70":9,"92":18,"94":22,"101":22,"107":16,"108":1590,"109":284}},"geometry":{"type":"Point","coordinates":[-73.98675071428028,40.62558900626326]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047045800","ancestry":{"1":1508,"5":122,"6":210,"7":10,"13":181,"15":19,"19":12,"34":12,"35":21,"36":5,"38":5,"42":5,"49":10,"50":16,"51":5,"61":36,"64":85,"67":15,"89":14,"90":5,"92":20,"94":30,"102":5,"103":11,"105":14,"108":787,"109":189}},"geometry":{"type":"Point","coordinates":[-73.96900614150506,40.625701769091876]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047046202","ancestry":{"1":2030,"5":417,"6":78,"7":7,"13":72,"15":6,"19":11,"22":13,"31":15,"32":8,"35":16,"38":7,"40":6,"42":73,"46":58,"49":45,"50":19,"51":68,"53":11,"59":9,"61":133,"62":12,"64":62,"92":8,"108":1018,"109":108}},"geometry":{"type":"Point","coordinates":[-73.97428008621513,40.62450152276055]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047046400","ancestry":{"1":2826,"3":27,"5":167,"6":31,"7":23,"11":8,"19":5,"26":8,"31":6,"34":5,"35":21,"36":65,"38":131,"42":117,"44":65,"46":359,"49":113,"50":16,"51":138,"61":268,"63":16,"64":9,"90":2,"92":11,"107":28,"108":1566,"109":121}},"geometry":{"type":"Point","coordinates":[-73.97839451223244,40.62457523321513]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047047400","ancestry":{"1":3127,"5":66,"19":18,"23":23,"26":4,"31":9,"32":4,"35":27,"36":105,"38":155,"41":6,"42":24,"46":181,"50":92,"51":36,"61":544,"64":204,"90":4,"107":42,"108":1396,"109":462}},"geometry":{"type":"Point","coordinates":[-73.98236589099959,40.62868358867217]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047047600","ancestry":{"1":3929,"5":159,"6":68,"7":68,"19":15,"27":6,"31":9,"35":159,"38":13,"42":6,"46":309,"50":35,"51":100,"61":328,"64":42,"94":2,"101":2,"108":2040,"109":835}},"geometry":{"type":"Point","coordinates":[-73.98058088128934,40.6305694006789]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047047700","ancestry":{"1":3548,"5":269,"19":9,"21":12,"29":24,"31":15,"34":51,"35":24,"36":117,"38":60,"40":118,"42":250,"44":9,"45":19,"48":26,"49":370,"51":490,"53":36,"59":14,"61":241,"62":15,"64":88,"66":24,"68":8,"69":15,"73":12,"87":12,"89":32,"91":43,"92":30,"93":18,"94":84,"99":82,"101":2,"108":1478,"109":323}},"geometry":{"type":"Point","coordinates":[-73.94213667262123,40.71821809491384]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047047800","ancestry":{"1":4690,"5":196,"6":115,"7":48,"11":8,"14":59,"35":82,"36":145,"38":57,"40":23,"42":167,"44":7,"45":58,"46":244,"49":6,"51":49,"53":1,"61":499,"63":5,"64":267,"94":6,"96":6,"108":2708,"109":612}},"geometry":{"type":"Point","coordinates":[-73.97887442148716,40.63339839110595]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048000","ancestry":{"1":3416,"5":264,"23":13,"36":30,"38":6,"40":66,"42":40,"44":8,"46":144,"49":22,"50":36,"51":40,"59":5,"61":234,"64":159,"67":8,"69":61,"89":8,"91":36,"92":111,"93":8,"108":2063,"109":306}},"geometry":{"type":"Point","coordinates":[-73.97449216408884,40.63029311610056]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048100","ancestry":{"1":2779,"5":31,"6":26,"10":26,"23":40,"26":29,"28":7,"29":5,"34":17,"35":7,"36":55,"37":14,"38":85,"40":31,"42":144,"44":39,"49":202,"51":324,"59":11,"61":129,"64":40,"66":34,"67":35,"68":26,"89":26,"93":32,"94":76,"96":29,"99":11,"103":47,"108":1515,"109":233}},"geometry":{"type":"Point","coordinates":[-73.93849886238483,40.71386042032625]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047081400","ancestry":{"1":2688,"5":21,"36":9,"40":42,"45":238,"48":5,"59":5,"73":459,"76":1,"87":458,"94":1656,"96":75,"99":173,"101":442,"102":142,"103":133,"105":691,"108":728,"109":144}},"geometry":{"type":"Point","coordinates":[-73.94023800905845,40.653640769506765]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047082000","ancestry":{"1":5023,"5":82,"33":14,"36":39,"38":32,"45":430,"49":8,"51":29,"73":199,"79":44,"87":101,"88":54,"94":1965,"96":94,"99":468,"101":437,"102":408,"103":454,"105":136,"106":24,"108":1977,"109":335}},"geometry":{"type":"Point","coordinates":[-73.95130970320076,40.653453064941736]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047082200","ancestry":{"1":7326,"5":408,"26":14,"35":57,"36":13,"42":55,"45":162,"49":13,"51":20,"53":25,"61":5,"64":22,"73":260,"86":13,"87":247,"92":22,"94":3102,"96":116,"97":176,"99":312,"101":1271,"102":696,"103":379,"105":162,"108":3067,"109":534}},"geometry":{"type":"Point","coordinates":[-73.95442817816294,40.65328881280539]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047082600","ancestry":{"1":5271,"5":86,"36":48,"40":17,"42":47,"45":180,"49":39,"51":9,"64":9,"73":325,"79":19,"87":306,"94":2991,"96":79,"97":23,"99":212,"101":1006,"102":948,"103":490,"105":241,"108":1792,"109":233}},"geometry":{"type":"Point","coordinates":[-73.94897316281913,40.64506471670702]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047082800","ancestry":{"1":3751,"5":119,"6":8,"7":8,"42":10,"45":182,"49":11,"51":2,"61":2,"73":291,"79":123,"84":79,"87":89,"90":23,"94":1705,"96":134,"97":55,"99":149,"101":699,"102":229,"103":264,"105":131,"106":44,"108":1419,"109":166}},"geometry":{"type":"Point","coordinates":[-73.9496047067662,40.64099107418034]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047083000","ancestry":{"1":6484,"5":93,"40":34,"45":1124,"49":64,"51":13,"62":15,"73":678,"76":104,"79":32,"87":447,"88":95,"94":3225,"96":156,"99":117,"101":1362,"102":732,"103":433,"105":475,"108":1525,"109":289}},"geometry":{"type":"Point","coordinates":[-73.94550283265717,40.64088698941571]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047083200","ancestry":{"1":2238,"5":15,"34":10,"45":163,"49":10,"51":57,"73":412,"76":16,"78":4,"79":5,"87":387,"94":1085,"96":25,"99":49,"100":8,"101":234,"102":251,"103":60,"105":469,"108":887,"109":110}},"geometry":{"type":"Point","coordinates":[-73.94162433331061,40.64152406257711]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047083400","ancestry":{"1":1466,"5":29,"6":70,"15":70,"26":5,"40":5,"45":96,"49":5,"62":5,"73":135,"87":135,"94":767,"96":118,"99":59,"101":84,"102":260,"103":101,"105":163,"108":449,"109":58}},"geometry":{"type":"Point","coordinates":[-73.9384750968992,40.64154991248847]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057400","ancestry":{"1":2942,"5":45,"6":17,"15":17,"16":17,"19":10,"23":34,"35":16,"36":46,"38":46,"40":9,"42":13,"44":11,"46":45,"49":251,"51":234,"61":10,"63":33,"64":95,"67":6,"73":12,"87":12,"92":141,"94":14,"102":14,"108":1741,"109":320}},"geometry":{"type":"Point","coordinates":[-73.94433847192612,40.60114988764842]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047102400","ancestry":{"1":1985,"5":218,"6":15,"11":15,"36":16,"42":5,"45":165,"46":8,"49":6,"51":36,"61":10,"62":16,"73":171,"79":44,"87":127,"89":6,"92":5,"94":807,"95":21,"96":28,"99":78,"101":148,"102":300,"103":164,"104":4,"105":89,"108":528,"109":150}},"geometry":{"type":"Point","coordinates":[-73.89327559613793,40.63292842675475]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048400","ancestry":{"1":5509,"3":52,"5":631,"6":5,"10":5,"16":27,"23":56,"26":5,"31":49,"35":338,"36":27,"38":120,"40":16,"42":100,"45":153,"46":206,"49":74,"50":121,"51":82,"53":16,"61":320,"63":8,"64":287,"67":12,"69":40,"73":43,"84":43,"89":8,"91":23,"92":36,"94":189,"99":11,"101":170,"102":8,"108":2734,"109":275}},"geometry":{"type":"Point","coordinates":[-73.97362710201432,40.634286126684124]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024100","ancestry":{"1":2480,"5":18,"18":6,"31":13,"34":27,"35":8,"36":152,"38":125,"39":5,"40":36,"42":109,"44":14,"45":5,"46":191,"49":157,"51":120,"59":6,"61":132,"64":43,"67":48,"73":15,"87":15,"91":10,"94":191,"99":136,"102":44,"103":18,"107":19,"108":1313,"109":165}},"geometry":{"type":"Point","coordinates":[-73.95380347899327,40.69222208645149]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026500","ancestry":{"1":3764,"5":144,"16":21,"23":20,"31":10,"36":18,"38":12,"40":27,"41":20,"42":70,"44":10,"45":53,"49":19,"59":11,"61":10,"67":9,"73":44,"79":22,"88":22,"89":11,"94":407,"96":10,"99":84,"101":45,"102":121,"103":99,"105":48,"108":2773,"109":298}},"geometry":{"type":"Point","coordinates":[-73.94462060605993,40.686904488715676]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029500","ancestry":{"1":3947,"5":87,"6":18,"10":9,"13":9,"18":9,"23":14,"24":12,"38":10,"40":44,"41":11,"42":125,"45":22,"46":38,"49":59,"51":157,"58":10,"59":9,"61":29,"62":19,"69":41,"73":93,"87":82,"88":11,"89":22,"91":43,"94":408,"99":61,"101":102,"102":45,"103":83,"105":139,"108":2536,"109":597}},"geometry":{"type":"Point","coordinates":[-73.93237588562667,40.684565948845716]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015100","ancestry":{"1":3994,"5":274,"16":9,"18":9,"19":16,"21":8,"22":59,"23":72,"24":28,"26":34,"29":32,"31":17,"33":25,"34":32,"35":128,"36":207,"38":131,"40":167,"41":24,"42":239,"44":45,"46":67,"47":6,"49":466,"50":9,"51":335,"52":31,"59":23,"61":208,"62":28,"63":30,"64":213,"65":9,"67":133,"69":14,"70":9,"71":22,"89":18,"92":23,"93":10,"94":24,"101":7,"103":17,"108":1747,"109":343}},"geometry":{"type":"Point","coordinates":[-73.98258556301114,40.66568899211047]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021700","ancestry":{"1":3610,"5":86,"6":195,"10":10,"14":135,"15":50,"19":8,"22":8,"23":34,"26":5,"31":8,"34":6,"35":108,"36":113,"38":72,"40":40,"41":24,"42":103,"44":7,"45":156,"46":9,"48":9,"49":144,"50":20,"51":102,"58":27,"59":6,"61":27,"62":6,"63":13,"64":138,"66":8,"67":82,"71":13,"73":100,"83":16,"87":84,"89":8,"92":11,"93":15,"94":503,"96":45,"97":6,"99":91,"101":37,"102":272,"103":28,"105":24,"108":1758,"109":174}},"geometry":{"type":"Point","coordinates":[-73.95902563801091,40.67276570388018]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055800","ancestry":{"1":2256,"3":23,"5":93,"6":252,"7":3,"8":5,"10":25,"11":75,"13":129,"14":4,"15":48,"19":5,"35":10,"36":4,"40":28,"42":40,"44":4,"49":121,"51":136,"52":28,"53":7,"59":4,"61":51,"64":170,"91":4,"92":77,"108":1032,"109":331}},"geometry":{"type":"Point","coordinates":[-73.9553779287127,40.60365366374467]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007600","ancestry":{"1":4432,"5":80,"6":67,"11":18,"15":49,"18":10,"33":6,"36":14,"38":16,"40":7,"41":10,"42":23,"46":7,"49":183,"51":41,"61":23,"64":63,"67":8,"73":61,"74":17,"87":25,"88":19,"94":95,"101":34,"102":18,"103":43,"108":3511,"109":501}},"geometry":{"type":"Point","coordinates":[-74.0146698325864,40.64408359136173]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012200","ancestry":{"1":5175,"5":253,"6":167,"7":30,"9":37,"14":9,"15":91,"33":16,"34":17,"36":30,"40":7,"41":8,"42":49,"44":108,"45":56,"49":244,"50":50,"51":115,"53":12,"59":7,"61":81,"64":23,"67":19,"73":10,"87":10,"93":15,"108":3832,"109":412}},"geometry":{"type":"Point","coordinates":[-74.01757718555552,40.63816605210028]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047010200","ancestry":{"1":5257,"5":350,"6":14,"9":14,"19":7,"34":25,"36":60,"40":42,"42":41,"45":8,"46":15,"49":122,"51":55,"59":7,"61":39,"67":16,"73":1,"83":1,"89":7,"93":38,"108":4598,"109":314}},"geometry":{"type":"Point","coordinates":[-74.01278720383198,40.63928443944587]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040900","ancestry":{"1":3944,"5":156,"36":9,"40":48,"42":4,"45":9,"49":50,"51":35,"61":24,"66":13,"89":10,"94":133,"97":6,"99":22,"102":53,"103":19,"105":33,"108":3437,"109":92}},"geometry":{"type":"Point","coordinates":[-73.90464256892562,40.691080818060534]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047040900","ancestry":{"1":3944,"5":156,"36":9,"40":48,"42":4,"45":9,"49":50,"51":35,"61":24,"66":13,"89":10,"94":133,"97":6,"99":22,"102":53,"103":19,"105":33,"108":3437,"109":92}},"geometry":{"type":"Point","coordinates":[-73.9015862625037,40.691209596434184]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047116800","ancestry":{"1":1545,"5":2,"22":1,"36":6,"45":59,"49":59,"73":39,"87":15,"88":24,"94":170,"97":36,"102":12,"103":122,"108":1185,"109":59}},"geometry":{"type":"Point","coordinates":[-73.8825160370363,40.678990846233674]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047096600","ancestry":{"1":2478,"5":307,"36":4,"42":45,"45":174,"49":22,"51":55,"66":7,"73":155,"79":49,"87":106,"94":948,"96":26,"99":126,"101":347,"102":358,"103":33,"105":64,"108":676,"109":210}},"geometry":{"type":"Point","coordinates":[-73.90314195829853,40.64063989828959]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005202","ancestry":{"1":2439,"3":43,"5":173,"6":42,"10":42,"13":9,"16":29,"19":11,"23":20,"26":20,"34":7,"36":143,"38":34,"41":10,"42":178,"44":76,"46":38,"49":597,"51":671,"53":10,"59":94,"61":73,"63":10,"64":151,"67":25,"89":23,"92":62,"108":397,"109":140}},"geometry":{"type":"Point","coordinates":[-74.03893387706972,40.619307355855184]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042200","ancestry":{"1":2993,"5":187,"6":358,"7":40,"10":52,"11":4,"13":154,"14":17,"15":111,"23":13,"36":9,"42":16,"44":32,"49":12,"50":101,"51":99,"52":23,"61":20,"62":9,"64":176,"91":2,"92":101,"93":8,"94":4,"105":4,"108":1673,"109":329}},"geometry":{"type":"Point","coordinates":[-73.96999230358432,40.60687049252237]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047073800","ancestry":{"1":3593,"5":177,"6":25,"11":17,"15":8,"19":8,"38":17,"42":10,"44":1,"45":74,"46":13,"49":2,"51":41,"53":4,"61":69,"64":178,"67":6,"73":34,"87":34,"92":113,"94":1189,"101":696,"102":169,"103":266,"105":58,"108":1467,"109":214}},"geometry":{"type":"Point","coordinates":[-73.93907726514016,40.622409546891]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054600","ancestry":{"1":4407,"5":172,"6":14,"7":8,"13":6,"16":71,"19":11,"35":103,"42":16,"44":19,"46":57,"49":45,"50":44,"51":20,"52":12,"53":8,"61":226,"63":64,"64":926,"66":7,"68":44,"70":10,"73":16,"87":16,"91":28,"92":408,"94":51,"101":22,"102":25,"105":4,"107":30,"108":2064,"109":281}},"geometry":{"type":"Point","coordinates":[-73.95312390643467,40.61314113457886]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017600","ancestry":{"1":2198,"3":64,"5":143,"6":81,"14":81,"24":5,"26":5,"35":8,"36":18,"40":2,"42":10,"49":34,"51":346,"55":15,"56":7,"61":97,"63":5,"64":102,"92":13,"93":9,"108":956,"109":378}},"geometry":{"type":"Point","coordinates":[-74.00881288221059,40.60251504124555]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028200","ancestry":{"1":3114,"3":15,"5":79,"6":27,"7":27,"16":8,"23":3,"31":13,"35":21,"36":8,"40":4,"42":30,"46":9,"49":37,"51":442,"55":18,"61":70,"62":70,"64":159,"67":7,"69":8,"92":79,"108":1382,"109":799}},"geometry":{"type":"Point","coordinates":[-74.00407263244519,40.60070379080827]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047031300","ancestry":{"1":4303,"5":157,"19":21,"34":12,"36":33,"40":30,"41":12,"42":48,"45":249,"46":20,"49":55,"51":46,"61":15,"67":15,"73":257,"79":70,"87":187,"94":1297,"96":129,"99":183,"101":115,"102":87,"103":602,"105":201,"108":2284,"109":182}},"geometry":{"type":"Point","coordinates":[-73.94430294515249,40.67657139355326]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047081000","ancestry":{"1":2196,"5":27,"30":11,"45":41,"49":12,"50":5,"51":42,"61":43,"62":22,"64":34,"73":653,"79":78,"87":575,"94":865,"96":7,"99":23,"101":46,"102":216,"103":102,"105":471,"108":927,"109":99}},"geometry":{"type":"Point","coordinates":[-73.944548818992,40.6591130874284]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047085800","ancestry":{"1":2378,"5":34,"40":6,"42":9,"45":306,"49":88,"51":23,"73":319,"79":11,"87":308,"94":1223,"96":25,"99":56,"101":246,"102":316,"103":264,"105":352,"108":544,"109":182}},"geometry":{"type":"Point","coordinates":[-73.93902719758758,40.650207457639326]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013500","ancestry":{"1":3735,"5":269,"6":19,"14":19,"16":11,"19":18,"20":36,"22":46,"23":13,"24":26,"26":8,"32":25,"33":7,"34":38,"35":65,"36":210,"38":176,"40":91,"41":40,"42":398,"44":39,"46":50,"48":26,"49":440,"50":30,"51":474,"53":9,"59":46,"61":218,"62":63,"64":157,"66":15,"67":73,"73":18,"83":6,"87":12,"89":28,"90":37,"92":34,"93":56,"94":67,"101":57,"103":10,"108":1281,"109":413}},"geometry":{"type":"Point","coordinates":[-73.98331332690648,40.67281095151989]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047032500","ancestry":{"1":6640,"5":312,"6":309,"15":309,"35":36,"36":32,"38":19,"41":11,"42":17,"45":17,"49":46,"51":15,"61":26,"62":16,"67":11,"73":759,"76":107,"79":99,"81":36,"87":421,"88":96,"94":1659,"95":39,"96":66,"97":9,"99":226,"101":520,"102":446,"103":252,"105":101,"108":3211,"109":478}},"geometry":{"type":"Point","coordinates":[-73.95776542908342,40.66729836483952]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049400","ancestry":{"1":5651,"3":27,"5":324,"16":49,"19":11,"21":11,"28":8,"34":27,"35":6,"36":130,"38":18,"40":33,"41":8,"42":156,"45":73,"46":33,"49":172,"51":268,"53":12,"55":10,"59":8,"61":397,"63":42,"64":312,"67":20,"72":13,"73":54,"79":19,"83":16,"87":19,"89":8,"91":7,"92":135,"94":160,"99":18,"101":93,"102":11,"103":26,"105":25,"108":2986,"109":799}},"geometry":{"type":"Point","coordinates":[-73.97382070209878,40.64296417236139]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048800","ancestry":{"1":3945,"5":590,"6":143,"7":10,"10":36,"12":87,"14":10,"19":22,"26":8,"35":19,"36":12,"38":53,"39":7,"41":5,"42":84,"44":30,"46":18,"49":109,"50":23,"51":131,"53":7,"56":6,"59":8,"61":115,"63":20,"64":73,"65":8,"67":7,"70":9,"89":56,"92":50,"94":138,"101":74,"102":64,"108":2322,"109":221}},"geometry":{"type":"Point","coordinates":[-73.97620865005075,40.64047688580466]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049000","ancestry":{"1":5968,"3":31,"5":340,"6":42,"7":8,"10":15,"15":19,"23":29,"33":14,"34":16,"35":74,"36":53,"38":342,"40":9,"42":133,"45":139,"46":88,"49":153,"50":20,"51":351,"53":25,"56":12,"59":12,"61":462,"64":370,"73":180,"79":180,"92":75,"94":39,"102":39,"108":3166,"109":604}},"geometry":{"type":"Point","coordinates":[-73.97302138696,40.63811652726431]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049200","ancestry":{"1":3524,"5":251,"6":42,"7":20,"10":6,"11":16,"24":16,"29":33,"34":9,"35":20,"36":18,"38":217,"40":17,"42":55,"44":21,"46":49,"49":107,"50":150,"51":133,"61":83,"63":16,"64":171,"69":95,"73":97,"84":74,"87":23,"89":6,"92":210,"93":12,"94":76,"99":6,"101":31,"102":17,"103":13,"105":9,"108":1815,"109":391}},"geometry":{"type":"Point","coordinates":[-73.970204670873,40.640907106810076]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049300","ancestry":{"1":7628,"5":42,"18":18,"36":198,"38":25,"39":17,"40":54,"42":255,"49":137,"51":301,"53":76,"58":14,"59":68,"61":133,"62":18,"63":21,"64":86,"66":20,"67":22,"73":257,"75":24,"87":233,"89":32,"92":15,"94":34,"99":20,"102":34,"108":5539,"109":789}},"geometry":{"type":"Point","coordinates":[-73.94135386393177,40.70780764347904]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049600","ancestry":{"1":4344,"3":54,"5":251,"6":182,"12":8,"15":174,"19":8,"23":10,"26":16,"29":32,"31":15,"32":25,"34":20,"35":12,"36":29,"38":32,"40":98,"42":174,"44":27,"45":64,"49":125,"51":350,"53":70,"59":7,"61":197,"62":7,"64":101,"66":8,"67":52,"90":31,"92":187,"93":26,"94":22,"96":22,"108":2522,"109":234}},"geometry":{"type":"Point","coordinates":[-73.98043824806021,40.64368702213985]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049700","ancestry":{"1":2914,"5":204,"6":19,"7":10,"15":9,"19":18,"20":9,"21":15,"23":8,"26":10,"31":8,"33":10,"34":31,"35":27,"36":103,"38":125,"40":37,"42":201,"47":8,"49":174,"51":768,"52":11,"58":9,"59":34,"61":250,"62":20,"64":137,"66":36,"67":4,"89":33,"92":8,"94":47,"98":20,"102":27,"108":1033,"109":159}},"geometry":{"type":"Point","coordinates":[-73.94459405734433,40.71621666056394]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049800","ancestry":{"1":4580,"3":14,"5":648,"6":34,"13":8,"14":16,"15":13,"19":55,"20":9,"23":9,"27":20,"31":8,"35":8,"36":98,"38":55,"39":16,"40":37,"41":8,"42":121,"44":8,"46":10,"49":284,"50":16,"51":329,"55":6,"59":25,"60":9,"61":232,"63":23,"64":243,"66":13,"67":33,"69":10,"73":20,"75":9,"87":11,"89":11,"92":95,"94":90,"96":45,"102":67,"108":2318,"109":470}},"geometry":{"type":"Point","coordinates":[-73.98268127809797,40.64542943266292]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049900","ancestry":{"1":1793,"5":90,"6":18,"10":18,"22":5,"23":4,"29":25,"35":17,"36":63,"38":86,"40":35,"42":122,"44":36,"49":165,"51":247,"53":10,"59":13,"61":577,"62":5,"64":14,"67":30,"89":16,"91":14,"94":17,"103":9,"105":8,"108":528,"109":82}},"geometry":{"type":"Point","coordinates":[-73.94688323914964,40.72090875702854]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050000","ancestry":{"1":3508,"3":20,"5":429,"6":103,"7":56,"10":9,"14":47,"16":11,"19":127,"23":54,"24":29,"31":20,"33":23,"34":18,"35":17,"36":148,"38":46,"40":23,"42":220,"44":10,"45":40,"46":25,"48":10,"49":245,"50":10,"51":324,"59":16,"61":134,"64":46,"66":14,"67":59,"89":15,"91":28,"93":26,"94":89,"101":50,"105":39,"108":1173,"109":581}},"geometry":{"type":"Point","coordinates":[-73.9774137468062,40.64826326840027]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050100","ancestry":{"1":2732,"5":176,"6":62,"14":53,"15":9,"18":13,"21":31,"23":8,"31":10,"34":11,"35":21,"36":94,"38":33,"40":24,"42":180,"44":13,"49":169,"50":11,"51":746,"59":21,"61":91,"63":17,"64":43,"67":20,"89":17,"94":96,"99":89,"102":7,"108":1131,"109":161}},"geometry":{"type":"Point","coordinates":[-73.94892023319383,40.71573502639284]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047010400","ancestry":{"1":6104,"5":230,"36":33,"40":18,"42":15,"49":201,"51":49,"59":35,"61":17,"73":9,"87":9,"91":50,"108":5482,"109":365}},"geometry":{"type":"Point","coordinates":[-74.00838139290772,40.63662395769806]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051300","ancestry":{"1":4285,"3":3,"5":240,"6":13,"10":13,"22":25,"23":60,"26":15,"29":7,"30":12,"31":75,"33":25,"34":24,"35":41,"36":93,"38":112,"40":47,"41":88,"42":225,"49":345,"51":466,"61":47,"62":15,"64":65,"66":43,"67":16,"89":13,"90":34,"91":12,"94":51,"102":43,"105":8,"108":2548,"109":452}},"geometry":{"type":"Point","coordinates":[-73.95216336952436,40.711791279003975]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040700","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.9012092626089,40.684294112584126]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047040700","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.89789204341385,40.68401760586712]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014300","ancestry":{"1":3755,"5":131,"6":110,"14":47,"15":63,"19":8,"23":7,"25":7,"26":9,"34":7,"35":8,"36":164,"38":59,"40":41,"42":366,"45":16,"46":8,"49":304,"51":424,"59":22,"61":111,"66":36,"67":52,"68":14,"73":52,"74":44,"80":8,"89":50,"93":15,"94":75,"101":7,"102":12,"103":20,"105":36,"108":2245,"109":268}},"geometry":{"type":"Point","coordinates":[-73.99265587354759,40.66362659009114]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018400","ancestry":{"1":2213,"5":68,"29":9,"35":4,"42":46,"44":59,"49":191,"51":862,"64":49,"67":11,"92":12,"94":39,"102":39,"108":971,"109":157}},"geometry":{"type":"Point","coordinates":[-74.0071447456125,40.61370537792124]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029600","ancestry":{"1":5144,"5":445,"6":10,"10":10,"16":43,"29":78,"40":33,"42":33,"49":197,"51":1046,"61":250,"63":115,"64":503,"90":123,"92":472,"108":1820,"109":621}},"geometry":{"type":"Point","coordinates":[-73.99301871469467,40.600957463088456]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028300","ancestry":{"1":3654,"5":214,"34":27,"36":20,"42":38,"45":21,"49":66,"51":71,"67":9,"89":34,"94":210,"97":12,"99":22,"101":28,"102":44,"103":38,"105":75,"108":2923,"109":316}},"geometry":{"type":"Point","coordinates":[-73.94043791559712,40.695256288796635]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047076400","ancestry":{"1":3820,"3":50,"5":475,"35":8,"36":21,"38":38,"40":16,"42":24,"46":10,"48":68,"49":58,"51":103,"53":5,"61":154,"62":7,"63":7,"64":138,"65":9,"66":4,"73":70,"87":70,"94":824,"96":10,"97":14,"99":14,"101":609,"102":103,"103":46,"105":39,"108":1164,"109":732}},"geometry":{"type":"Point","coordinates":[-73.95864481175056,40.63192631351666]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015500","ancestry":{"1":3683,"5":513,"6":59,"7":40,"8":13,"10":6,"16":27,"19":25,"23":75,"29":29,"31":37,"33":6,"34":60,"35":231,"36":251,"38":200,"39":6,"40":126,"41":6,"42":333,"44":20,"46":70,"49":595,"50":18,"51":354,"53":103,"59":37,"61":144,"62":9,"63":7,"64":270,"65":8,"66":53,"67":95,"68":23,"69":8,"70":7,"73":14,"83":5,"87":9,"89":79,"90":53,"91":7,"92":82,"93":19,"94":51,"101":15,"102":3,"103":9,"105":24,"108":846,"109":187}},"geometry":{"type":"Point","coordinates":[-73.97856128045171,40.67051359843253]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021300","ancestry":{"1":4399,"5":282,"21":8,"34":20,"35":21,"36":78,"38":8,"40":11,"41":8,"42":119,"44":7,"45":122,"46":17,"49":110,"51":96,"52":8,"53":9,"58":21,"59":7,"61":23,"64":49,"66":6,"67":9,"73":201,"79":13,"86":83,"87":65,"88":40,"89":10,"90":15,"91":77,"92":13,"93":16,"94":1330,"96":121,"99":90,"101":209,"102":449,"103":254,"105":216,"108":1624,"109":491}},"geometry":{"type":"Point","coordinates":[-73.960467418202,40.66835485973218]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038100","ancestry":{"1":5047,"5":60,"36":39,"37":10,"40":22,"42":38,"46":20,"51":40,"64":10,"67":10,"73":250,"79":118,"87":33,"88":99,"89":8,"91":8,"94":469,"96":11,"97":13,"99":11,"101":44,"102":203,"103":22,"105":176,"108":3604,"109":639}},"geometry":{"type":"Point","coordinates":[-73.92542625495038,40.68104777831252]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047070600","ancestry":{"1":2824,"2":18,"5":253,"6":38,"7":14,"8":8,"15":16,"19":27,"24":7,"32":16,"36":21,"38":21,"40":5,"41":7,"42":75,"44":100,"46":27,"49":125,"51":1177,"59":8,"61":28,"63":33,"64":80,"89":8,"92":223,"108":585,"109":240}},"geometry":{"type":"Point","coordinates":[-73.89875458749997,40.613688787189375]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047114202","ancestry":{"1":2212,"5":220,"36":1,"42":19,"45":69,"49":1,"51":28,"73":58,"87":58,"94":320,"99":12,"101":113,"102":71,"105":124,"108":1447,"109":119}},"geometry":{"type":"Point","coordinates":[-73.8912213146616,40.682479025627686]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047114202","ancestry":{"1":2212,"5":220,"36":1,"42":19,"45":69,"49":1,"51":28,"73":58,"87":58,"94":320,"99":12,"101":113,"102":71,"105":124,"108":1447,"109":119}},"geometry":{"type":"Point","coordinates":[-73.88980994241508,40.68450238814757]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005601","ancestry":{"1":2622,"3":8,"5":16,"6":131,"7":23,"10":10,"11":7,"13":24,"14":67,"19":19,"21":7,"24":37,"29":6,"31":9,"32":9,"33":10,"34":9,"35":9,"36":163,"37":10,"38":5,"40":19,"41":22,"42":82,"44":160,"46":67,"48":60,"49":331,"51":646,"59":18,"61":63,"64":116,"67":9,"92":78,"93":10,"94":17,"102":7,"103":10,"108":856,"109":79}},"geometry":{"type":"Point","coordinates":[-74.03632120327073,40.615183048548346]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003600","ancestry":{"1":4512,"3":36,"5":134,"6":359,"9":19,"10":46,"12":19,"13":7,"14":262,"15":35,"16":25,"19":7,"23":45,"29":9,"30":10,"34":9,"35":23,"36":135,"39":15,"40":29,"42":220,"44":24,"45":18,"46":16,"49":374,"50":8,"51":690,"53":15,"55":33,"59":78,"61":43,"64":289,"65":9,"66":40,"67":34,"73":88,"74":9,"85":79,"89":67,"90":9,"92":238,"94":129,"101":94,"105":35,"108":2096,"109":214}},"geometry":{"type":"Point","coordinates":[-74.03089785752786,40.63468616510765]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047008000","ancestry":{"1":4252,"5":332,"6":114,"14":49,"15":65,"19":10,"33":11,"34":10,"35":30,"36":57,"38":20,"40":52,"42":89,"44":7,"48":10,"49":61,"51":45,"57":10,"58":12,"59":21,"61":10,"63":17,"64":45,"67":25,"89":21,"90":8,"91":8,"92":20,"108":3495,"109":234}},"geometry":{"type":"Point","coordinates":[-74.01001664253735,40.64857490290044]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047093800","ancestry":{"1":2191,"5":66,"36":24,"45":187,"49":10,"73":271,"87":271,"94":1240,"96":36,"99":141,"100":8,"101":138,"102":292,"103":297,"105":346,"108":630,"109":95}},"geometry":{"type":"Point","coordinates":[-73.92455815315576,40.650446905710275]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047064800","ancestry":{"1":1848,"3":45,"5":53,"19":4,"33":5,"35":43,"36":9,"38":20,"42":56,"44":84,"45":43,"46":13,"49":189,"51":345,"59":5,"61":8,"63":4,"64":6,"67":5,"73":64,"87":64,"91":13,"94":151,"101":60,"102":22,"103":29,"105":40,"108":835,"109":91}},"geometry":{"type":"Point","coordinates":[-73.93646018118751,40.617689802803746]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025902","ancestry":{"1":3591,"5":195,"38":62,"62":11,"73":21,"87":21,"94":701,"97":111,"101":185,"102":101,"103":465,"108":2356,"109":437}},"geometry":{"type":"Point","coordinates":[-73.94515400778783,40.696965953257035]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034000","ancestry":{"1":2321,"5":103,"36":22,"37":9,"38":11,"42":14,"46":8,"49":18,"51":83,"61":45,"62":4,"64":163,"73":25,"75":9,"79":8,"87":8,"92":61,"94":97,"96":9,"99":8,"101":30,"102":17,"103":4,"105":29,"108":1412,"109":400}},"geometry":{"type":"Point","coordinates":[-73.99647642261507,40.57232224503486]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047086600","ancestry":{"1":3084,"5":185,"36":9,"38":18,"45":139,"73":541,"87":541,"94":1880,"96":44,"99":108,"101":173,"102":791,"103":222,"105":572,"108":900,"109":148}},"geometry":{"type":"Point","coordinates":[-73.92676155504765,40.65637506348517]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047110600","ancestry":{"1":4513,"5":428,"42":19,"73":271,"81":11,"87":260,"88":11,"94":382,"96":12,"101":104,"102":161,"103":59,"104":19,"105":27,"108":3217,"109":363}},"geometry":{"type":"Point","coordinates":[-73.88429809535876,40.65731418606366]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047117601","ancestry":{"1":3116,"5":77,"21":5,"42":35,"45":362,"49":16,"51":44,"67":6,"89":6,"90":8,"94":57,"97":16,"101":13,"102":22,"105":13,"108":2329,"109":261}},"geometry":{"type":"Point","coordinates":[-73.87687920570534,40.68477979064334]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059402","ancestry":{"1":4462,"5":157,"19":17,"26":8,"29":8,"35":19,"36":50,"37":9,"38":22,"39":10,"40":10,"42":26,"44":29,"45":18,"46":8,"49":196,"51":187,"53":39,"61":133,"63":141,"64":942,"90":8,"91":120,"92":375,"93":19,"94":9,"105":9,"108":1828,"109":455}},"geometry":{"type":"Point","coordinates":[-73.94301813005085,40.594614656538745]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043600","ancestry":{"1":4360,"3":71,"5":82,"6":157,"7":33,"10":27,"11":36,"15":61,"16":40,"19":8,"36":1,"38":4,"40":62,"41":26,"42":27,"44":7,"46":44,"49":38,"51":590,"55":26,"61":7,"63":70,"64":625,"67":14,"72":9,"92":185,"108":2137,"109":374}},"geometry":{"type":"Point","coordinates":[-73.97785729693081,40.61313002478498]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057200","ancestry":{"1":4561,"5":316,"35":20,"36":43,"46":10,"49":135,"51":51,"61":95,"64":62,"73":20,"87":20,"89":92,"92":19,"94":726,"101":661,"102":10,"103":39,"105":16,"108":2914,"109":418}},"geometry":{"type":"Point","coordinates":[-73.93821591911116,40.596368764180475]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050202","ancestry":{"1":2351,"5":448,"6":13,"11":13,"19":53,"23":20,"31":31,"34":20,"35":4,"36":219,"38":103,"39":28,"40":40,"41":18,"42":259,"44":29,"46":7,"49":373,"51":244,"53":22,"58":17,"59":35,"61":31,"64":140,"66":59,"67":74,"89":18,"92":89,"93":30,"108":555,"109":112}},"geometry":{"type":"Point","coordinates":[-73.97528450122073,40.65351041230793]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050400","ancestry":{"1":4687,"5":470,"6":98,"7":61,"10":10,"11":16,"15":11,"16":8,"19":10,"31":6,"33":5,"34":26,"35":41,"36":127,"37":14,"38":50,"40":46,"42":128,"44":66,"45":21,"46":13,"48":4,"49":311,"50":7,"51":274,"52":21,"53":37,"58":38,"59":24,"61":386,"62":15,"63":58,"64":197,"67":10,"69":11,"70":25,"89":37,"90":15,"91":33,"92":124,"93":5,"94":252,"101":96,"102":96,"103":89,"107":8,"108":2105,"109":312}},"geometry":{"type":"Point","coordinates":[-73.97352008008282,40.64871932077476]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050500","ancestry":{"1":4179,"5":63,"6":51,"14":51,"21":13,"23":5,"31":28,"33":36,"34":32,"36":82,"38":97,"40":17,"41":5,"42":128,"44":5,"45":26,"46":10,"49":153,"51":138,"52":10,"53":9,"56":5,"59":36,"61":185,"62":14,"64":49,"67":45,"89":22,"90":14,"94":34,"96":14,"105":20,"108":2762,"109":483}},"geometry":{"type":"Point","coordinates":[-73.94494514385819,40.70805199080832]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050600","ancestry":{"1":5630,"5":428,"23":12,"24":20,"34":8,"35":15,"36":91,"38":41,"40":8,"42":94,"45":38,"49":113,"51":144,"59":11,"61":59,"62":13,"64":47,"67":17,"73":87,"79":23,"87":64,"89":18,"90":11,"91":8,"92":10,"93":7,"94":1225,"96":22,"99":205,"100":22,"101":469,"102":139,"103":307,"105":61,"107":37,"108":3095,"109":379}},"geometry":{"type":"Point","coordinates":[-73.96685800187262,40.648978411619034]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050700","ancestry":{"1":2452,"5":143,"36":57,"38":141,"42":6,"46":509,"49":17,"50":74,"51":23,"61":72,"63":99,"68":13,"73":67,"87":67,"94":52,"102":37,"103":8,"106":7,"107":9,"108":1015,"109":320}},"geometry":{"type":"Point","coordinates":[-73.94700791608797,40.701409617596155]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051100","ancestry":{"1":3707,"5":127,"6":8,"10":8,"18":13,"28":25,"34":10,"35":10,"36":146,"40":76,"42":128,"46":10,"48":23,"49":216,"51":108,"59":10,"61":145,"64":87,"66":20,"67":38,"70":30,"89":36,"90":9,"92":21,"93":11,"94":49,"96":37,"102":12,"105":13,"108":2597,"109":254}},"geometry":{"type":"Point","coordinates":[-73.94857911636498,40.70755960306144]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051200","ancestry":{"1":6103,"5":156,"6":17,"15":17,"21":14,"33":14,"38":30,"40":37,"42":32,"44":17,"49":85,"51":35,"61":69,"64":35,"67":31,"73":302,"76":195,"87":107,"90":17,"94":2105,"95":18,"99":72,"101":983,"102":427,"103":512,"105":137,"108":3014,"109":454}},"geometry":{"type":"Point","coordinates":[-73.96336112852882,40.64655247536205]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047075000","ancestry":{"1":2998,"5":383,"6":24,"7":8,"10":9,"13":5,"14":2,"22":34,"31":18,"32":21,"35":96,"36":16,"38":62,"42":41,"44":8,"46":21,"48":6,"49":49,"50":25,"51":102,"53":18,"59":6,"61":195,"64":231,"91":39,"92":15,"94":159,"101":93,"102":4,"103":5,"105":61,"108":1316,"109":421}},"geometry":{"type":"Point","coordinates":[-73.94876600249539,40.62656784344258]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018800","ancestry":{"1":2950,"5":239,"6":160,"7":47,"12":47,"13":13,"14":84,"26":14,"33":11,"36":25,"42":113,"44":5,"49":166,"51":1137,"59":9,"61":56,"64":54,"94":31,"101":31,"108":1311,"109":146}},"geometry":{"type":"Point","coordinates":[-74.00274000779936,40.61747792946385]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025800","ancestry":{"1":4445,"3":19,"5":277,"6":101,"7":16,"14":85,"36":19,"49":14,"50":34,"51":655,"59":5,"61":252,"62":22,"63":10,"64":301,"92":173,"94":25,"97":25,"108":2371,"109":427}},"geometry":{"type":"Point","coordinates":[-73.98740981711863,40.61328838939685]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049500","ancestry":{"1":2680,"5":153,"18":19,"19":25,"21":21,"23":32,"25":20,"26":11,"30":9,"31":18,"34":8,"35":10,"36":126,"38":12,"40":23,"41":39,"42":191,"49":315,"50":29,"51":385,"52":8,"53":44,"58":11,"61":160,"63":10,"64":112,"65":20,"66":16,"67":46,"69":8,"70":11,"89":13,"90":4,"92":30,"93":54,"94":1,"103":1,"108":1139,"109":198}},"geometry":{"type":"Point","coordinates":[-73.943357195289,40.7123628018123]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047088800","ancestry":{"1":3929,"5":240,"6":35,"14":35,"45":406,"61":12,"73":238,"87":238,"94":1497,"96":79,"97":12,"99":220,"101":216,"102":393,"103":420,"105":125,"106":69,"108":1214,"109":385}},"geometry":{"type":"Point","coordinates":[-73.91808524550935,40.653940936196086]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047011800","ancestry":{"1":2131,"5":64,"21":10,"26":3,"35":5,"36":6,"49":9,"51":88,"61":14,"66":7,"108":1671,"109":344}},"geometry":{"type":"Point","coordinates":[-74.0114899982868,40.63510442948322]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053200","ancestry":{"1":2467,"5":395,"6":11,"12":11,"18":5,"19":29,"23":38,"31":5,"35":17,"36":16,"38":46,"40":60,"42":43,"46":46,"48":30,"49":48,"50":32,"51":56,"53":5,"61":75,"63":20,"64":134,"73":77,"87":77,"89":7,"91":13,"92":130,"93":4,"94":64,"102":11,"105":53,"108":1217,"109":158}},"geometry":{"type":"Point","coordinates":[-73.96025459084859,40.626219595977645]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022900","ancestry":{"1":3743,"5":70,"6":69,"10":52,"14":8,"15":9,"16":7,"18":13,"21":4,"23":24,"33":11,"34":9,"35":74,"36":99,"38":63,"40":64,"42":92,"44":64,"45":26,"47":9,"48":8,"49":118,"50":9,"51":226,"59":10,"61":71,"64":35,"66":14,"67":23,"73":40,"80":21,"87":19,"89":20,"94":371,"95":15,"96":29,"101":51,"102":185,"103":80,"105":11,"108":2214,"109":282}},"geometry":{"type":"Point","coordinates":[-73.95676155172431,40.68513169948845]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040100","ancestry":{"1":3379,"5":139,"33":12,"35":9,"38":12,"40":12,"42":33,"45":59,"49":90,"51":3,"62":9,"73":118,"87":118,"94":364,"96":59,"97":85,"99":45,"102":107,"103":23,"104":9,"105":36,"108":2251,"109":398}},"geometry":{"type":"Point","coordinates":[-73.91274084351674,40.68645913552779]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047112000","ancestry":{"1":3552,"5":178,"18":1,"33":26,"45":40,"49":14,"51":11,"61":28,"73":71,"79":25,"87":46,"93":14,"94":605,"99":105,"101":35,"102":323,"103":142,"105":13,"108":2439,"109":249}},"geometry":{"type":"Point","coordinates":[-73.8805196502745,40.66662753634421]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047058600","ancestry":{"1":2591,"5":10,"6":5,"10":5,"36":20,"38":13,"40":6,"42":10,"44":17,"46":4,"49":29,"51":54,"61":4,"63":5,"64":181,"91":108,"92":92,"93":13,"108":1850,"109":227}},"geometry":{"type":"Point","coordinates":[-73.95461369071212,40.59456376182733]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005800","ancestry":{"1":3424,"3":183,"5":122,"6":221,"7":163,"10":18,"13":18,"14":9,"15":44,"22":17,"23":9,"31":8,"36":57,"38":51,"39":8,"42":58,"44":369,"46":27,"49":287,"50":25,"51":543,"53":7,"59":76,"61":101,"64":158,"66":20,"67":11,"73":24,"87":24,"89":27,"91":53,"92":25,"108":1348,"109":144}},"geometry":{"type":"Point","coordinates":[-74.03218846358625,40.619088741335]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014000","ancestry":{"1":1862,"2":6,"3":10,"5":239,"6":262,"7":23,"10":4,"11":53,"12":70,"13":82,"14":9,"15":103,"36":22,"42":46,"44":277,"46":4,"49":222,"51":421,"52":18,"53":9,"59":15,"61":121,"64":3,"89":41,"108":435,"109":120}},"geometry":{"type":"Point","coordinates":[-74.01967784557176,40.62077819478607]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014800","ancestry":{"1":1353,"3":33,"5":145,"6":38,"13":20,"15":18,"29":44,"34":20,"35":21,"40":18,"42":14,"45":27,"49":207,"51":874,"61":45,"64":7,"65":7,"66":33,"67":6,"70":5,"108":92,"109":120}},"geometry":{"type":"Point","coordinates":[-74.01296096687611,40.61670771095574]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047064200","ancestry":{"1":2355,"3":15,"5":177,"6":35,"7":16,"13":19,"26":12,"31":5,"34":4,"35":15,"36":5,"38":78,"42":32,"44":28,"46":178,"49":49,"50":4,"51":72,"53":4,"61":241,"63":39,"64":390,"70":12,"92":103,"94":18,"101":18,"108":950,"109":161}},"geometry":{"type":"Point","coordinates":[-73.94639394655722,40.61219746020031]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030900","ancestry":{"1":2201,"49":5,"61":4,"64":4,"73":141,"79":114,"87":27,"90":4,"94":1055,"96":20,"101":306,"102":380,"103":248,"105":237,"108":809,"109":212}},"geometry":{"type":"Point","coordinates":[-73.93300361882137,40.676150776338915]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047082400","ancestry":{"1":4004,"5":71,"21":10,"45":132,"73":105,"76":15,"79":26,"87":64,"94":1602,"97":86,"99":257,"101":313,"102":366,"103":467,"105":113,"108":1739,"109":432}},"geometry":{"type":"Point","coordinates":[-73.94935797493498,40.648847337658225]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021500","ancestry":{"1":5366,"5":43,"6":78,"10":41,"15":37,"19":31,"23":89,"26":81,"31":19,"33":18,"34":19,"35":172,"36":173,"38":180,"40":70,"42":191,"44":71,"45":55,"46":15,"49":339,"51":215,"58":15,"59":50,"61":167,"64":136,"66":26,"67":32,"73":194,"75":10,"87":184,"89":119,"92":58,"93":55,"94":1138,"96":36,"99":222,"101":267,"102":290,"103":232,"105":91,"108":2033,"109":448}},"geometry":{"type":"Point","coordinates":[-73.96329002640316,40.67337508428739]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038500","ancestry":{"1":3404,"5":61,"23":10,"26":1,"32":9,"42":20,"45":10,"49":9,"51":10,"90":10,"94":292,"96":10,"99":107,"101":7,"102":7,"103":134,"104":27,"105":17,"108":2794,"109":246}},"geometry":{"type":"Point","coordinates":[-73.92678913244814,40.68745535097388]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047094402","ancestry":{"1":2723,"5":377,"45":19,"51":17,"52":13,"61":7,"94":636,"96":75,"97":13,"99":50,"101":247,"102":155,"103":109,"108":1642,"109":182}},"geometry":{"type":"Point","coordinates":[-73.92078036038144,40.63508173948917]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024300","ancestry":{"1":4236,"5":154,"22":20,"23":4,"25":11,"34":24,"35":10,"36":79,"38":116,"40":35,"42":137,"45":42,"46":34,"49":107,"51":110,"53":27,"58":9,"59":3,"61":44,"64":52,"65":7,"66":7,"67":31,"73":158,"87":147,"88":11,"92":29,"94":550,"96":67,"99":77,"101":36,"102":169,"103":108,"105":93,"107":28,"108":2639,"109":310}},"geometry":{"type":"Point","coordinates":[-73.95285596920289,40.68745554861869]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003800","ancestry":{"1":1673,"5":131,"6":78,"10":42,"12":3,"13":12,"14":21,"15":21,"16":9,"19":5,"22":10,"26":17,"29":12,"34":5,"36":111,"40":6,"42":24,"44":24,"46":5,"49":171,"51":411,"58":6,"59":27,"61":93,"64":28,"89":15,"92":45,"94":14,"102":14,"108":642,"109":67}},"geometry":{"type":"Point","coordinates":[-74.03574622871676,40.63442096948927]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047033300","ancestry":{"1":4482,"5":457,"35":128,"42":10,"45":133,"46":11,"49":16,"50":95,"51":38,"53":7,"59":4,"61":131,"62":33,"63":32,"64":229,"67":66,"73":45,"83":14,"87":31,"89":6,"92":51,"93":21,"94":297,"96":122,"99":88,"102":59,"105":54,"108":2608,"109":471}},"geometry":{"type":"Point","coordinates":[-73.94252629346822,40.66583729183874]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003500","ancestry":{"1":1723,"5":96,"16":11,"19":4,"21":14,"22":25,"26":8,"31":6,"33":5,"34":19,"35":7,"36":65,"38":4,"40":23,"42":96,"49":83,"50":13,"51":50,"57":40,"61":50,"64":55,"67":29,"73":26,"75":13,"80":6,"87":7,"89":12,"92":5,"93":16,"94":259,"99":14,"101":138,"103":81,"105":26,"108":846,"109":177}},"geometry":{"type":"Point","coordinates":[-73.9761802857117,40.68532522658803]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047009200","ancestry":{"1":5249,"5":208,"6":76,"11":10,"12":57,"14":19,"29":12,"31":10,"36":42,"37":11,"40":12,"41":12,"42":40,"45":25,"49":106,"51":66,"59":27,"61":30,"64":9,"66":10,"73":24,"79":24,"89":31,"92":7,"94":97,"101":63,"103":34,"108":4382,"109":295}},"geometry":{"type":"Point","coordinates":[-73.99933837757087,40.645316817535026]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051400","ancestry":{"1":7009,"5":382,"6":33,"15":33,"32":17,"34":72,"36":61,"38":46,"40":29,"41":32,"42":28,"44":40,"45":113,"46":14,"47":15,"49":84,"51":78,"61":12,"64":34,"66":38,"67":61,"73":128,"87":128,"93":30,"94":1538,"99":179,"101":680,"102":362,"103":212,"104":16,"105":110,"108":4401,"109":521}},"geometry":{"type":"Point","coordinates":[-73.96142833578284,40.64279169629288]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047052600","ancestry":{"1":4672,"3":33,"5":401,"6":95,"7":53,"10":10,"13":32,"16":10,"17":2,"19":7,"22":11,"34":8,"35":153,"36":105,"38":52,"40":41,"42":123,"45":11,"46":9,"49":185,"51":138,"52":6,"53":11,"57":23,"59":23,"61":110,"63":21,"64":214,"66":57,"67":38,"70":7,"72":30,"73":46,"86":10,"87":36,"89":9,"91":20,"92":92,"93":6,"94":303,"101":177,"102":100,"103":40,"108":2326,"109":628}},"geometry":{"type":"Point","coordinates":[-73.96667767674106,40.636470149038466]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051500","ancestry":{"1":1561,"5":58,"6":11,"10":11,"18":5,"19":23,"23":9,"26":13,"31":9,"32":4,"34":28,"35":21,"36":30,"38":11,"40":48,"41":2,"42":157,"44":16,"46":6,"49":170,"50":17,"51":222,"56":7,"61":43,"64":64,"65":13,"66":6,"67":12,"69":6,"71":6,"89":11,"90":10,"92":3,"93":4,"94":27,"101":27,"108":823,"109":87}},"geometry":{"type":"Point","coordinates":[-73.95052966986697,40.719127684397286]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051700","ancestry":{"1":1665,"5":97,"6":11,"10":11,"19":28,"26":53,"31":20,"32":11,"33":59,"34":19,"36":77,"38":22,"40":21,"41":23,"42":202,"46":18,"49":205,"50":31,"51":116,"53":20,"59":32,"61":223,"62":10,"64":90,"66":10,"67":37,"71":6,"89":16,"92":12,"93":6,"108":560,"109":107}},"geometry":{"type":"Point","coordinates":[-73.95450013292614,40.72065024880108]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051800","ancestry":{"1":3267,"5":124,"6":12,"11":12,"26":10,"31":12,"33":5,"34":49,"35":51,"36":57,"38":20,"40":18,"41":10,"42":99,"44":45,"45":34,"49":64,"51":96,"59":20,"61":105,"64":31,"67":5,"73":6,"87":6,"90":10,"94":773,"96":49,"97":10,"99":40,"101":125,"102":365,"103":184,"105":44,"108":1586,"109":344}},"geometry":{"type":"Point","coordinates":[-73.96079507962372,40.63799090910944]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051900","ancestry":{"1":4297,"2":15,"5":227,"6":88,"8":10,"10":37,"15":53,"16":21,"21":39,"22":40,"23":95,"26":3,"31":9,"34":58,"35":12,"36":327,"38":123,"39":3,"40":185,"41":88,"42":445,"44":29,"46":25,"48":47,"49":429,"50":11,"51":490,"59":29,"61":189,"63":13,"64":173,"66":11,"67":55,"92":16,"93":15,"94":80,"97":1,"99":22,"102":37,"103":11,"105":20,"108":1637,"109":241}},"geometry":{"type":"Point","coordinates":[-73.95515703493768,40.71571595080596]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047052000","ancestry":{"1":4404,"5":197,"6":214,"7":37,"10":5,"11":11,"15":161,"23":33,"35":219,"36":33,"38":80,"40":26,"42":195,"44":21,"45":106,"49":142,"51":155,"52":7,"59":8,"61":114,"63":17,"64":133,"66":18,"73":8,"88":8,"92":10,"94":532,"96":8,"97":8,"99":83,"101":238,"102":194,"103":12,"105":16,"108":2442,"109":215}},"geometry":{"type":"Point","coordinates":[-73.9641874733151,40.63744547893436]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047052300","ancestry":{"1":5824,"5":163,"18":34,"22":25,"23":64,"34":55,"35":16,"36":78,"38":76,"40":65,"42":132,"46":39,"49":178,"51":258,"53":14,"59":39,"61":17,"64":41,"67":27,"71":27,"73":21,"83":21,"89":50,"90":10,"93":45,"94":100,"99":59,"102":41,"108":4405,"109":424}},"geometry":{"type":"Point","coordinates":[-73.95880695863494,40.71166325935053]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047052700","ancestry":{"1":6520,"5":231,"6":16,"10":16,"21":19,"22":7,"23":22,"31":36,"34":14,"35":12,"36":5,"38":72,"40":21,"42":122,"48":11,"49":88,"51":87,"61":61,"64":24,"66":24,"67":24,"90":12,"92":41,"94":30,"101":30,"108":5452,"109":517}},"geometry":{"type":"Point","coordinates":[-73.95369468153582,40.708399757729325]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047052900","ancestry":{"1":4246,"5":86,"21":10,"26":7,"34":27,"35":91,"38":88,"40":27,"42":71,"46":251,"49":55,"50":13,"51":51,"61":9,"63":29,"64":165,"108":2850,"109":530}},"geometry":{"type":"Point","coordinates":[-73.95450594349026,40.70587147126704]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053000","ancestry":{"1":3284,"5":446,"6":73,"15":73,"21":73,"22":18,"31":7,"35":11,"36":83,"38":102,"42":76,"44":31,"45":16,"46":40,"49":46,"50":46,"51":35,"55":15,"61":174,"64":272,"66":11,"91":35,"92":108,"94":43,"103":30,"105":13,"108":1573,"109":259}},"geometry":{"type":"Point","coordinates":[-73.96373438704286,40.627363416992765]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053100","ancestry":{"1":8415,"5":226,"16":11,"26":167,"31":95,"32":11,"35":10,"36":103,"38":756,"40":51,"42":304,"46":2573,"49":18,"50":23,"51":9,"53":9,"61":110,"63":525,"68":34,"89":37,"90":81,"94":18,"99":18,"108":2987,"109":1506}},"geometry":{"type":"Point","coordinates":[-73.9541698530723,40.70072893823485]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053300","ancestry":{"1":6704,"5":106,"6":60,"14":60,"26":17,"31":62,"32":20,"36":50,"38":225,"42":71,"46":1003,"49":33,"50":93,"61":179,"63":181,"64":7,"73":31,"87":31,"94":13,"105":13,"107":30,"108":4235,"109":795}},"geometry":{"type":"Point","coordinates":[-73.95736014415344,40.70376685725158]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053400","ancestry":{"1":4100,"3":66,"5":534,"6":8,"11":8,"26":9,"31":5,"35":124,"36":41,"38":107,"42":92,"44":17,"46":12,"49":170,"50":43,"51":80,"52":16,"53":12,"61":102,"64":209,"91":12,"92":138,"94":169,"99":7,"101":42,"102":50,"105":70,"108":2245,"109":274}},"geometry":{"type":"Point","coordinates":[-73.96283022676974,40.62258257782971]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053500","ancestry":{"1":4061,"5":322,"26":12,"35":78,"36":53,"38":174,"40":13,"42":41,"46":421,"49":23,"51":44,"59":12,"61":83,"63":44,"64":12,"92":33,"108":2506,"109":329}},"geometry":{"type":"Point","coordinates":[-73.9612198321604,40.7061438202261]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047067000","ancestry":{"1":2901,"5":191,"6":18,"13":9,"14":9,"19":4,"35":13,"40":31,"42":34,"44":84,"45":85,"46":4,"49":114,"51":259,"61":32,"64":18,"73":20,"79":20,"89":7,"92":19,"93":10,"94":981,"96":49,"99":58,"101":194,"102":522,"103":175,"105":7,"106":8,"108":704,"109":509}},"geometry":{"type":"Point","coordinates":[-73.92276421391699,40.61272458133821]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047025500","ancestry":{"1":5302,"5":147,"40":19,"42":21,"59":42,"64":10,"73":14,"87":14,"91":142,"94":138,"96":6,"99":6,"102":52,"105":74,"108":4546,"109":418}},"geometry":{"type":"Point","coordinates":[-73.95128617676288,40.6973922561494]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047029400","ancestry":{"1":2399,"2":6,"3":52,"5":74,"6":15,"7":4,"11":6,"15":5,"38":10,"39":66,"40":4,"42":19,"44":24,"45":5,"46":6,"49":30,"50":11,"51":193,"59":5,"61":11,"64":209,"67":5,"92":52,"93":4,"94":3,"103":3,"108":1069,"109":677}},"geometry":{"type":"Point","coordinates":[-73.99844987660181,40.59534505587112]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027900","ancestry":{"1":3934,"5":120,"36":8,"42":8,"45":13,"49":48,"51":11,"59":46,"61":7,"67":8,"73":27,"87":27,"94":282,"96":43,"97":17,"99":75,"101":32,"102":53,"103":24,"105":54,"108":3091,"109":438}},"geometry":{"type":"Point","coordinates":[-73.93934458492,40.68975934820052]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047062600","ancestry":{"1":2620,"5":65,"6":44,"14":44,"16":10,"19":16,"26":25,"29":6,"36":14,"38":8,"40":201,"42":40,"44":69,"46":7,"49":150,"51":289,"56":17,"59":24,"61":73,"64":266,"66":5,"67":33,"73":77,"79":68,"87":9,"92":41,"94":34,"101":15,"102":19,"108":1423,"109":136}},"geometry":{"type":"Point","coordinates":[-73.93443911276741,40.5923335311273]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005100","ancestry":{"1":2181,"3":28,"5":270,"6":27,"11":27,"16":20,"21":5,"22":8,"23":14,"26":9,"31":21,"33":25,"34":5,"35":59,"36":242,"38":20,"40":34,"42":143,"45":10,"46":15,"49":445,"51":252,"59":28,"61":65,"62":7,"63":7,"64":130,"66":24,"67":18,"70":13,"89":23,"92":15,"94":20,"97":9,"103":11,"108":781,"109":223}},"geometry":{"type":"Point","coordinates":[-74.0034690826297,40.68348758275078]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047111800","ancestry":{"1":2735,"5":103,"42":55,"45":187,"73":161,"79":120,"87":41,"94":453,"96":55,"99":16,"102":208,"103":174,"108":1677,"109":161}},"geometry":{"type":"Point","coordinates":[-73.87601804864966,40.66875670036156]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021600","ancestry":{"1":4210,"5":152,"6":79,"7":79,"22":7,"23":3,"31":15,"32":177,"35":51,"38":128,"40":7,"42":31,"46":990,"49":47,"50":53,"51":203,"53":11,"61":525,"63":354,"64":18,"92":8,"108":1631,"109":282}},"geometry":{"type":"Point","coordinates":[-73.9997692596708,40.63279468953887]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020500","ancestry":{"1":2609,"5":75,"6":17,"12":5,"15":12,"23":32,"33":9,"34":17,"35":52,"36":78,"38":118,"40":162,"42":295,"44":6,"45":113,"46":52,"49":313,"50":10,"51":144,"56":9,"58":39,"59":20,"61":119,"62":5,"64":56,"66":13,"67":123,"73":85,"79":20,"87":65,"89":16,"90":8,"92":24,"93":59,"94":70,"96":12,"102":32,"105":26,"108":980,"109":209}},"geometry":{"type":"Point","coordinates":[-73.96570369928449,40.67747545511559]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015700","ancestry":{"1":4397,"5":444,"6":12,"8":12,"16":14,"18":37,"19":35,"23":89,"26":36,"31":85,"33":53,"34":24,"35":312,"36":412,"38":267,"39":11,"40":24,"41":19,"42":356,"44":16,"46":44,"48":32,"49":835,"50":39,"51":499,"53":24,"59":70,"61":240,"63":43,"64":315,"65":25,"66":12,"67":88,"73":67,"83":67,"89":63,"90":14,"92":26,"93":30,"94":38,"99":14,"105":24,"108":1042,"109":395}},"geometry":{"type":"Point","coordinates":[-73.97641655177436,40.67305237159791]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003300","ancestry":{"1":3008,"5":162,"6":147,"7":19,"12":10,"14":118,"19":10,"23":36,"26":32,"29":9,"33":9,"35":30,"36":124,"38":81,"40":117,"41":23,"42":220,"44":21,"46":15,"48":16,"49":245,"50":32,"51":218,"53":19,"55":20,"58":11,"59":22,"61":112,"62":32,"63":11,"64":104,"66":6,"67":69,"70":7,"73":59,"83":12,"87":47,"89":50,"91":45,"92":46,"93":54,"94":114,"101":45,"102":29,"103":11,"105":29,"108":1178,"109":281}},"geometry":{"type":"Point","coordinates":[-73.97810629732562,40.68851115982819]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047009400","ancestry":{"1":5972,"5":246,"22":18,"26":19,"31":8,"34":9,"36":19,"38":38,"39":9,"40":26,"42":18,"45":18,"46":74,"49":66,"50":17,"51":146,"55":15,"59":24,"61":156,"63":40,"64":53,"89":8,"92":7,"93":6,"94":72,"102":28,"103":11,"105":33,"108":4912,"109":292}},"geometry":{"type":"Point","coordinates":[-74.00137892413139,40.64335651677766]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040800","ancestry":{"1":3125,"5":48,"17":16,"31":8,"40":5,"42":5,"46":8,"49":47,"51":1005,"61":7,"64":15,"73":23,"84":23,"91":18,"92":14,"108":1793,"109":214}},"geometry":{"type":"Point","coordinates":[-73.97913414215023,40.601201261393975]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050900","ancestry":{"1":3821,"5":185,"23":52,"36":157,"38":143,"40":8,"42":94,"46":969,"49":32,"50":116,"51":40,"59":23,"61":161,"63":68,"90":74,"93":5,"108":1799,"109":426}},"geometry":{"type":"Point","coordinates":[-73.95056454721549,40.703277222909136]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026900","ancestry":{"1":2832,"5":118,"6":16,"15":16,"23":12,"26":17,"36":37,"40":9,"41":24,"42":65,"45":115,"48":26,"49":17,"51":17,"59":11,"61":16,"64":44,"73":124,"77":19,"79":45,"87":60,"94":405,"96":73,"97":32,"99":183,"102":18,"103":66,"105":54,"108":1720,"109":269}},"geometry":{"type":"Point","coordinates":[-73.94331732272522,40.6812826539535]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047045600","ancestry":{"1":2532,"3":28,"5":372,"6":145,"7":20,"11":7,"13":82,"15":56,"19":33,"22":5,"32":4,"35":55,"36":28,"38":76,"42":55,"45":2,"46":16,"48":6,"49":42,"50":40,"51":30,"61":113,"63":5,"64":263,"91":17,"92":157,"108":1134,"109":167}},"geometry":{"type":"Point","coordinates":[-73.96662058395113,40.62616307316838]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035300","ancestry":{"1":4686,"5":157,"6":24,"11":8,"14":16,"23":11,"31":17,"38":34,"40":50,"41":14,"42":44,"45":314,"49":18,"51":44,"61":39,"64":49,"73":445,"76":7,"79":20,"87":418,"91":13,"92":8,"94":1504,"96":34,"99":123,"101":92,"102":221,"103":256,"105":806,"108":1801,"109":543}},"geometry":{"type":"Point","coordinates":[-73.93531385644376,40.66857967859985]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047100600","ancestry":{"1":2673,"5":219,"35":8,"45":147,"51":12,"61":8,"64":20,"73":104,"79":16,"87":88,"92":5,"94":1426,"96":107,"99":132,"101":633,"102":226,"103":251,"105":104,"108":596,"109":281}},"geometry":{"type":"Point","coordinates":[-73.90088969114282,40.63225328935946]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047040600","ancestry":{"1":3030,"5":20,"6":160,"10":36,"14":124,"31":4,"32":26,"36":21,"42":13,"49":51,"51":715,"61":9,"64":43,"92":17,"108":1834,"109":169}},"geometry":{"type":"Point","coordinates":[-73.98232184442621,40.60051164776392]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047084800","ancestry":{"1":1810,"5":19,"45":133,"67":6,"73":546,"87":546,"94":1198,"96":33,"97":13,"99":10,"101":53,"102":163,"103":345,"105":592,"108":403,"109":95}},"geometry":{"type":"Point","coordinates":[-73.92786107685278,40.646426965782844]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056000","ancestry":{"1":3464,"5":337,"6":57,"7":43,"13":43,"16":7,"19":7,"23":6,"24":8,"35":70,"36":10,"38":84,"40":6,"42":130,"44":74,"48":181,"49":17,"51":209,"61":58,"63":40,"64":579,"91":19,"92":383,"94":20,"102":20,"108":1142,"109":256}},"geometry":{"type":"Point","coordinates":[-73.95143583017874,40.60408550723575]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023200","ancestry":{"1":6142,"5":225,"6":27,"12":27,"19":34,"21":392,"31":7,"34":9,"35":43,"36":45,"38":132,"40":16,"42":54,"46":669,"49":6,"50":161,"51":67,"53":5,"61":876,"63":170,"64":43,"108":2703,"109":945}},"geometry":{"type":"Point","coordinates":[-73.98622068341803,40.63609985344794]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047091600","ancestry":{"1":4324,"5":203,"42":7,"45":318,"49":10,"73":52,"87":52,"94":800,"96":64,"97":26,"99":148,"101":12,"102":168,"103":149,"105":233,"108":2638,"109":411}},"geometry":{"type":"Point","coordinates":[-73.90910125513261,40.65910382597179]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048900","ancestry":{"1":3921,"5":101,"40":34,"45":14,"51":126,"73":56,"87":56,"93":9,"94":67,"96":20,"99":8,"102":9,"103":14,"105":16,"108":3400,"109":287}},"geometry":{"type":"Point","coordinates":[-73.93925886512686,40.70292063073089]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047010800","ancestry":{"1":4661,"5":254,"6":7,"10":7,"23":20,"40":9,"42":20,"49":83,"51":86,"59":41,"61":146,"62":8,"64":2,"66":20,"67":20,"92":28,"108":4046,"109":183}},"geometry":{"type":"Point","coordinates":[-74.00371058265307,40.64111596037213]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013300","ancestry":{"1":4523,"5":483,"6":38,"10":16,"11":22,"17":8,"18":14,"19":47,"21":21,"22":12,"23":15,"26":15,"31":5,"33":8,"34":21,"35":222,"36":336,"38":210,"40":134,"41":20,"42":381,"44":56,"46":109,"48":8,"49":744,"51":594,"53":33,"59":7,"60":9,"61":203,"63":68,"64":287,"66":26,"67":73,"70":20,"73":12,"87":12,"89":21,"91":24,"92":20,"93":10,"94":67,"97":10,"99":57,"108":1629,"109":354}},"geometry":{"type":"Point","coordinates":[-73.98130925977789,40.675182459128614]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054500","ancestry":{"1":6966,"5":401,"19":14,"21":8,"34":12,"36":104,"38":125,"42":125,"46":532,"49":104,"51":15,"61":44,"63":70,"67":11,"73":14,"78":14,"107":12,"108":4651,"109":1117}},"geometry":{"type":"Point","coordinates":[-73.96528600197432,40.70523764568978]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006200","ancestry":{"1":2883,"5":408,"6":430,"7":167,"10":130,"11":23,"14":110,"23":10,"31":34,"33":10,"35":18,"36":28,"38":8,"40":62,"42":65,"44":66,"46":1,"49":278,"51":459,"59":11,"61":77,"62":11,"64":14,"65":11,"66":33,"67":6,"70":15,"89":56,"92":15,"94":28,"101":19,"103":9,"108":1048,"109":147}},"geometry":{"type":"Point","coordinates":[-74.03044590218687,40.62491100239305]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005014701","ancestry":{"1":7209,"5":405,"40":25,"42":7,"49":29,"51":9,"73":567,"76":131,"87":436,"94":182,"99":32,"102":109,"105":41,"108":5194,"109":1076}},"geometry":{"type":"Point","coordinates":[-73.90532923640745,40.8342262381223]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005017901","ancestry":{"1":4711,"5":73,"45":12,"49":29,"51":61,"67":9,"73":552,"76":24,"79":25,"80":53,"87":359,"88":91,"94":111,"102":37,"103":69,"105":5,"108":3779,"109":249}},"geometry":{"type":"Point","coordinates":[-73.91518669881117,40.834834968350094]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005018301","ancestry":{"1":4241,"3":52,"5":125,"36":10,"42":29,"45":16,"49":30,"51":24,"61":8,"66":9,"73":118,"76":34,"87":79,"88":5,"89":9,"94":169,"99":41,"101":85,"102":25,"103":38,"108":3671,"109":201}},"geometry":{"type":"Point","coordinates":[-73.92081332648051,40.82863710052585]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022102","ancestry":{"1":5006,"38":8,"45":50,"73":379,"76":17,"87":362,"94":110,"97":73,"101":23,"105":14,"108":4087,"109":484}},"geometry":{"type":"Point","coordinates":[-73.91609563989734,40.83765861641016]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023703","ancestry":{"1":4919,"5":45,"6":89,"10":51,"15":38,"36":7,"40":38,"42":43,"46":7,"49":54,"51":95,"73":260,"87":20,"88":260,"91":7,"94":135,"102":135,"108":4164,"109":200}},"geometry":{"type":"Point","coordinates":[-73.8995705611203,40.8600425850229]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026702","ancestry":{"1":6206,"3":14,"5":22,"36":34,"40":24,"42":68,"44":15,"49":53,"51":53,"73":324,"75":9,"79":1,"81":15,"87":299,"94":173,"96":25,"102":146,"105":2,"107":36,"108":5330,"109":347}},"geometry":{"type":"Point","coordinates":[-73.90011900726914,40.872266396910874]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033201","ancestry":{"1":3861,"3":53,"5":129,"16":6,"19":18,"21":20,"23":10,"29":16,"36":48,"38":2,"42":34,"45":18,"49":11,"50":17,"51":105,"55":16,"61":34,"64":124,"73":51,"87":51,"92":62,"94":134,"101":39,"102":60,"103":35,"108":2924,"109":232}},"geometry":{"type":"Point","coordinates":[-73.86923232669194,40.85947561406438]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040303","ancestry":{"1":4505,"3":27,"5":128,"40":10,"49":10,"51":31,"73":152,"76":102,"81":50,"94":109,"99":24,"102":83,"103":2,"107":85,"108":3646,"109":489}},"geometry":{"type":"Point","coordinates":[-73.89347105781275,40.869683912823845]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021700","ancestry":{"1":5093,"5":171,"36":3,"42":9,"44":9,"49":9,"51":47,"73":299,"76":149,"79":10,"87":114,"88":26,"94":375,"96":5,"97":5,"99":38,"101":84,"102":164,"103":33,"105":54,"108":4002,"109":351}},"geometry":{"type":"Point","coordinates":[-73.91330813538993,40.8481818086145]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023702","ancestry":{"1":1345,"5":21,"36":20,"40":18,"49":28,"51":41,"61":15,"94":38,"99":7,"102":14,"105":17,"108":1135,"109":107}},"geometry":{"type":"Point","coordinates":[-73.89731943910084,40.86064409788289]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040302","ancestry":{"1":4182,"38":29,"40":31,"51":38,"73":65,"76":11,"87":54,"93":21,"108":3729,"109":338}},"geometry":{"type":"Point","coordinates":[-73.8921973700637,40.867846315407995]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006300","ancestry":{"1":4480,"5":87,"6":8,"11":8,"36":8,"38":7,"39":22,"46":9,"49":36,"51":50,"73":165,"76":38,"87":120,"88":7,"89":8,"94":62,"97":9,"99":6,"102":24,"103":23,"108":3621,"109":505}},"geometry":{"type":"Point","coordinates":[-73.92839103147958,40.82385091339535]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007600","ancestry":{"1":5853,"5":21,"6":34,"12":34,"40":84,"45":371,"49":4,"50":19,"51":60,"62":105,"73":64,"76":43,"79":21,"94":131,"99":17,"102":91,"105":23,"108":4704,"109":311}},"geometry":{"type":"Point","coordinates":[-73.86765570989314,40.83337502240841]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005009000","ancestry":{"1":3824,"5":145,"34":2,"36":39,"40":15,"42":19,"49":13,"51":89,"61":17,"64":19,"94":26,"102":16,"105":10,"108":3360,"109":323}},"geometry":{"type":"Point","coordinates":[-73.84173149973783,40.8216926890553]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005015900","ancestry":{"1":1845,"5":14,"36":5,"45":6,"49":35,"65":5,"73":6,"87":6,"108":1715,"109":113}},"geometry":{"type":"Point","coordinates":[-73.89355690823548,40.82236995130496]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005001","ancestry":{"1":5040,"5":127,"23":19,"36":10,"40":8,"42":11,"45":205,"51":16,"61":11,"73":193,"79":27,"87":41,"88":125,"94":601,"96":142,"98":8,"99":23,"101":19,"102":293,"103":27,"104":25,"105":97,"108":3797,"109":260}},"geometry":{"type":"Point","coordinates":[-73.87785329384059,40.82499698885627]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053700","ancestry":{"1":3540,"5":87,"19":38,"21":43,"22":9,"31":12,"32":12,"36":6,"38":93,"40":8,"41":53,"42":94,"46":733,"49":8,"50":77,"51":12,"61":54,"63":97,"64":19,"92":21,"94":5,"105":5,"108":2114,"109":379}},"geometry":{"type":"Point","coordinates":[-73.9599545887728,40.70029810856266]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054700","ancestry":{"1":5031,"5":489,"6":9,"11":9,"21":17,"22":18,"23":40,"26":11,"29":8,"32":21,"34":23,"36":145,"38":98,"40":126,"42":145,"44":27,"46":565,"48":8,"49":165,"50":34,"51":72,"59":6,"61":173,"63":79,"64":48,"67":18,"73":11,"87":11,"89":21,"94":16,"102":16,"108":2630,"109":526}},"geometry":{"type":"Point","coordinates":[-73.9665933977794,40.70852584340497]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054800","ancestry":{"1":2261,"5":127,"16":24,"19":5,"23":6,"33":5,"35":59,"36":34,"38":5,"40":21,"41":5,"42":52,"46":19,"48":22,"49":42,"50":35,"51":317,"52":13,"61":125,"63":5,"64":216,"68":118,"70":8,"92":41,"94":2,"101":2,"107":51,"108":878,"109":287}},"geometry":{"type":"Point","coordinates":[-73.94837716900965,40.6092526706062]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053900","ancestry":{"1":2756,"5":72,"6":6,"15":6,"19":7,"26":9,"31":4,"36":28,"38":133,"40":6,"41":2,"42":5,"46":291,"49":66,"50":84,"51":28,"61":25,"63":75,"64":10,"66":2,"67":2,"70":9,"108":1714,"109":341}},"geometry":{"type":"Point","coordinates":[-73.9625586723049,40.702647751703736]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054300","ancestry":{"1":347,"22":45,"32":14,"34":16,"35":11,"36":9,"40":5,"42":41,"46":9,"49":21,"51":48,"61":17,"64":8,"94":26,"97":12,"101":12,"102":14,"108":197,"109":9}},"geometry":{"type":"Point","coordinates":[-73.97118325688803,40.7008521877573]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054400","ancestry":{"1":2969,"3":39,"5":99,"6":30,"8":30,"10":30,"19":18,"21":14,"26":8,"35":33,"36":14,"38":9,"42":144,"44":20,"46":53,"48":32,"49":10,"50":10,"51":68,"59":8,"61":292,"64":631,"66":8,"91":22,"92":67,"108":1326,"109":364}},"geometry":{"type":"Point","coordinates":[-73.95719041961206,40.613219584613084]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054900","ancestry":{"1":3174,"5":207,"6":20,"11":20,"16":9,"18":19,"19":8,"21":9,"22":46,"23":8,"26":41,"34":17,"35":9,"36":64,"38":96,"40":68,"42":143,"46":164,"48":10,"49":143,"51":154,"53":35,"58":11,"59":9,"61":35,"63":9,"64":67,"70":25,"89":71,"91":18,"94":8,"102":8,"107":16,"108":1973,"109":157}},"geometry":{"type":"Point","coordinates":[-73.96569324339794,40.71115990771238]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055000","ancestry":{"1":3607,"3":194,"5":101,"6":146,"7":34,"10":33,"11":67,"13":61,"24":10,"27":10,"35":9,"38":18,"40":5,"42":9,"49":9,"50":6,"53":35,"55":63,"61":5,"63":22,"64":462,"91":246,"92":251,"94":13,"103":13,"107":79,"108":1351,"109":733}},"geometry":{"type":"Point","coordinates":[-73.95231742201567,40.60873390980868]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055300","ancestry":{"1":2790,"5":77,"6":47,"10":9,"11":8,"14":20,"15":10,"16":9,"18":11,"19":8,"20":9,"21":11,"23":12,"31":9,"33":22,"35":21,"36":133,"38":140,"40":63,"41":9,"42":225,"44":38,"46":18,"49":205,"50":14,"51":256,"52":20,"53":8,"59":30,"61":209,"63":19,"64":114,"66":43,"67":66,"89":102,"90":7,"92":18,"93":9,"94":26,"101":26,"108":1245,"109":235}},"geometry":{"type":"Point","coordinates":[-73.95923574991264,40.716457561687704]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055400","ancestry":{"1":3684,"3":59,"5":146,"6":47,"7":12,"13":35,"16":32,"19":8,"22":132,"24":19,"26":132,"35":18,"36":53,"38":30,"42":13,"44":10,"46":14,"48":26,"49":48,"50":132,"51":53,"52":9,"61":131,"63":57,"64":717,"91":65,"92":280,"108":1385,"109":521}},"geometry":{"type":"Point","coordinates":[-73.96007159319076,40.60787012795802]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047055500","ancestry":{"1":4706,"3":90,"5":267,"6":45,"7":13,"10":9,"14":23,"16":22,"18":67,"19":21,"21":16,"22":29,"23":98,"26":5,"29":8,"31":17,"34":72,"35":45,"36":271,"38":88,"39":21,"40":78,"42":436,"44":40,"47":10,"48":13,"49":316,"50":19,"51":220,"52":9,"58":8,"59":32,"61":299,"62":23,"63":35,"64":66,"65":22,"66":8,"67":180,"68":9,"69":31,"70":6,"71":16,"89":44,"90":17,"92":34,"93":6,"94":58,"99":44,"103":9,"105":5,"108":2174,"109":361}},"geometry":{"type":"Point","coordinates":[-73.96424541384239,40.720608957794596]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055500","ancestry":{"1":4706,"3":90,"5":267,"6":45,"7":13,"10":9,"14":23,"16":22,"18":67,"19":21,"21":16,"22":29,"23":98,"26":5,"29":8,"31":17,"34":72,"35":45,"36":271,"38":88,"39":21,"40":78,"42":436,"44":40,"47":10,"48":13,"49":316,"50":19,"51":220,"52":9,"58":8,"59":32,"61":299,"62":23,"63":35,"64":66,"65":22,"66":8,"67":180,"68":9,"69":31,"70":6,"71":16,"89":44,"90":17,"92":34,"93":6,"94":58,"99":44,"103":9,"105":5,"108":2174,"109":361}},"geometry":{"type":"Point","coordinates":[-73.96323844242376,40.718077751276304]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055600","ancestry":{"1":3885,"5":416,"6":255,"7":11,"10":14,"11":15,"13":130,"14":85,"19":20,"24":63,"32":8,"35":8,"36":9,"38":63,"40":11,"41":8,"42":50,"46":44,"48":9,"50":70,"51":84,"52":8,"61":95,"64":745,"65":6,"91":20,"92":302,"108":1173,"109":650}},"geometry":{"type":"Point","coordinates":[-73.9594057273233,40.60316088748211]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055700","ancestry":{"1":2122,"5":159,"6":11,"15":11,"19":36,"22":23,"23":24,"31":15,"33":47,"34":9,"35":41,"36":90,"38":49,"40":35,"42":211,"44":10,"46":9,"48":10,"49":151,"51":181,"52":19,"58":10,"59":10,"61":286,"62":3,"64":46,"65":17,"67":30,"68":10,"89":28,"90":9,"91":37,"92":20,"93":18,"94":27,"101":27,"108":728,"109":185}},"geometry":{"type":"Point","coordinates":[-73.9593134105464,40.72199737369684]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056200","ancestry":{"1":1668,"5":67,"6":138,"7":6,"8":17,"10":16,"13":66,"15":46,"19":26,"31":4,"32":37,"34":6,"38":175,"40":2,"42":165,"46":40,"48":25,"49":29,"50":34,"51":92,"61":41,"63":62,"64":129,"67":5,"92":15,"108":441,"109":316}},"geometry":{"type":"Point","coordinates":[-73.94750336570425,40.60451811483807]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047056300","ancestry":{"1":4143,"5":156,"6":56,"10":38,"14":18,"21":16,"23":17,"31":47,"32":12,"34":39,"36":116,"38":184,"39":34,"40":61,"41":21,"42":249,"44":22,"45":78,"46":59,"49":269,"51":167,"59":28,"61":959,"62":15,"63":20,"64":141,"66":62,"67":21,"70":18,"73":16,"87":16,"92":69,"93":97,"94":16,"101":16,"108":1544,"109":398}},"geometry":{"type":"Point","coordinates":[-73.96228688013946,40.732987413155556]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056300","ancestry":{"1":4143,"5":156,"6":56,"10":38,"14":18,"21":16,"23":17,"31":47,"32":12,"34":39,"36":116,"38":184,"39":34,"40":61,"41":21,"42":249,"44":22,"45":78,"46":59,"49":269,"51":167,"59":28,"61":959,"62":15,"63":20,"64":141,"66":62,"67":21,"70":18,"73":16,"87":16,"92":69,"93":97,"94":16,"101":16,"108":1544,"109":398}},"geometry":{"type":"Point","coordinates":[-73.95820952791037,40.73484164610271]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056400","ancestry":{"1":2627,"3":40,"5":80,"6":314,"7":69,"11":5,"13":240,"19":11,"31":21,"35":125,"36":36,"38":72,"42":42,"46":6,"48":42,"49":102,"50":39,"51":163,"53":4,"61":69,"63":8,"64":321,"73":9,"87":9,"92":115,"94":10,"102":4,"103":6,"105":6,"108":813,"109":364}},"geometry":{"type":"Point","coordinates":[-73.94337356155029,40.60691583812457]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047008200","ancestry":{"1":4304,"5":79,"6":102,"12":29,"14":12,"15":61,"22":8,"36":57,"38":40,"40":40,"42":27,"44":18,"48":12,"49":91,"51":44,"52":7,"59":13,"61":37,"63":11,"64":39,"92":17,"94":8,"102":8,"108":3484,"109":361}},"geometry":{"type":"Point","coordinates":[-74.00768893708396,40.65081801864592]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028900","ancestry":{"1":3344,"5":97,"35":13,"36":18,"38":4,"40":5,"42":84,"45":31,"49":102,"51":21,"61":14,"67":5,"73":65,"79":2,"87":63,"89":11,"94":371,"96":34,"99":94,"101":23,"102":124,"103":43,"105":53,"108":2416,"109":240}},"geometry":{"type":"Point","coordinates":[-73.93300410844557,40.693051429825154]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047026800","ancestry":{"1":3868,"3":45,"5":377,"6":24,"11":24,"15":8,"19":4,"36":13,"38":8,"40":27,"42":41,"44":74,"46":14,"49":102,"51":777,"61":44,"64":131,"69":36,"92":88,"107":19,"108":1768,"109":650}},"geometry":{"type":"Point","coordinates":[-73.99036197896983,40.610449397874945]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047078400","ancestry":{"1":2660,"5":24,"6":3,"10":3,"26":26,"33":12,"40":9,"42":5,"45":80,"46":5,"49":12,"61":4,"62":19,"73":168,"79":152,"87":16,"92":4,"94":1042,"97":25,"99":73,"100":26,"101":299,"102":114,"103":111,"105":394,"108":1111,"109":212}},"geometry":{"type":"Point","coordinates":[-73.94295578089948,40.63426238443645]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057100","ancestry":{"1":3873,"5":263,"6":26,"14":26,"19":25,"22":34,"23":35,"24":6,"31":52,"34":47,"36":104,"38":46,"39":14,"40":76,"42":224,"46":35,"49":336,"50":21,"51":558,"56":16,"59":78,"61":1714,"64":74,"67":32,"69":33,"70":14,"89":42,"90":16,"92":28,"94":14,"95":14,"108":594,"109":114}},"geometry":{"type":"Point","coordinates":[-73.94761876322892,40.72478369285779]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047086200","ancestry":{"1":2926,"5":132,"26":14,"36":5,"45":322,"73":325,"87":325,"94":1948,"99":131,"101":357,"102":731,"103":196,"105":543,"108":524,"109":141}},"geometry":{"type":"Point","coordinates":[-73.92822566194668,40.650216457417095]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047111000","ancestry":{"1":3536,"5":239,"42":7,"51":11,"73":115,"79":75,"87":40,"90":7,"92":9,"94":158,"97":9,"99":8,"101":62,"102":35,"103":15,"105":29,"108":2702,"109":332}},"geometry":{"type":"Point","coordinates":[-73.88134582292176,40.660544550698205]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047004300","ancestry":{"1":3107,"5":349,"6":99,"10":24,"14":75,"15":75,"19":5,"22":13,"23":95,"24":10,"26":25,"31":57,"33":9,"34":20,"35":37,"36":290,"38":251,"40":91,"41":19,"42":200,"44":43,"46":11,"49":327,"51":142,"53":29,"58":9,"59":24,"61":166,"63":22,"64":127,"65":18,"66":15,"67":61,"68":8,"70":9,"73":34,"77":10,"83":20,"87":4,"89":7,"90":24,"92":11,"93":18,"94":10,"95":4,"101":3,"102":3,"108":1100,"109":243}},"geometry":{"type":"Point","coordinates":[-73.98959923599602,40.68820290152208]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030300","ancestry":{"1":5189,"5":92,"36":111,"42":10,"45":66,"60":3,"64":10,"67":32,"73":95,"79":55,"87":40,"94":1204,"96":14,"99":149,"101":135,"102":323,"103":108,"105":482,"108":3477,"109":289}},"geometry":{"type":"Point","coordinates":[-73.9179373885488,40.675116028246244]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047031702","ancestry":{"1":4114,"5":61,"6":6,"10":6,"19":22,"23":7,"34":11,"36":56,"38":60,"40":14,"41":6,"42":76,"45":385,"46":8,"48":11,"49":113,"51":69,"59":8,"61":46,"62":17,"64":22,"66":9,"67":51,"73":92,"86":26,"87":58,"88":8,"89":34,"92":12,"93":7,"94":999,"96":17,"99":197,"101":207,"102":287,"103":249,"105":98,"108":1826,"109":432}},"geometry":{"type":"Point","coordinates":[-73.95037486279091,40.67119302260422]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047033700","ancestry":{"1":3832,"5":207,"6":52,"7":16,"11":36,"19":2,"23":6,"29":14,"34":6,"36":14,"38":48,"40":23,"42":12,"44":14,"45":105,"46":21,"49":50,"51":50,"52":33,"61":126,"63":19,"64":138,"67":25,"73":167,"87":167,"89":22,"90":7,"92":10,"93":8,"94":1118,"96":163,"99":79,"101":288,"102":245,"103":53,"105":302,"108":1747,"109":249}},"geometry":{"type":"Point","coordinates":[-73.94218133679439,40.669401590859486]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035100","ancestry":{"1":4409,"5":123,"6":264,"15":264,"38":21,"45":167,"48":10,"50":14,"51":26,"61":182,"64":262,"73":324,"76":15,"87":309,"94":1711,"96":54,"99":315,"100":11,"101":333,"102":93,"103":134,"105":794,"108":1202,"109":522}},"geometry":{"type":"Point","coordinates":[-73.93254730598333,40.668429265007376]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047036100","ancestry":{"1":2407,"5":43,"17":4,"36":8,"42":7,"45":161,"51":31,"73":34,"83":15,"87":19,"94":662,"96":124,"99":47,"101":45,"102":270,"103":119,"105":57,"108":1405,"109":141}},"geometry":{"type":"Point","coordinates":[-73.91995917828814,40.669566161524415]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047038300","ancestry":{"1":4509,"5":58,"35":8,"36":10,"38":1,"42":50,"45":125,"49":19,"51":39,"62":8,"66":15,"73":205,"79":10,"80":119,"87":56,"88":20,"94":580,"96":31,"99":35,"101":9,"102":146,"103":68,"104":8,"105":283,"108":3179,"109":454}},"geometry":{"type":"Point","coordinates":[-73.92620556821814,40.68452456343932]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047039400","ancestry":{"1":2152,"5":142,"6":415,"7":47,"10":98,"11":13,"13":145,"14":17,"15":123,"19":6,"38":6,"42":83,"46":5,"49":98,"50":12,"51":205,"61":9,"64":93,"67":6,"91":30,"92":67,"94":6,"102":6,"108":942,"109":268}},"geometry":{"type":"Point","coordinates":[-73.96506909742233,40.598492967371165]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047042400","ancestry":{"1":3113,"3":105,"5":25,"6":37,"13":9,"14":10,"15":18,"16":8,"35":25,"36":9,"38":72,"42":44,"49":39,"50":36,"51":647,"61":18,"64":523,"91":110,"92":71,"94":19,"99":19,"108":1246,"109":321}},"geometry":{"type":"Point","coordinates":[-73.97604836402957,40.60674834162797]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043800","ancestry":{"1":2531,"3":24,"5":334,"6":98,"7":22,"13":38,"15":38,"33":5,"35":11,"36":161,"37":11,"38":25,"40":20,"42":69,"44":7,"48":8,"49":33,"50":5,"51":129,"53":4,"55":11,"59":11,"61":52,"64":191,"67":7,"91":6,"92":108,"108":1130,"109":278}},"geometry":{"type":"Point","coordinates":[-73.97109444165244,40.61033014639483]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047044700","ancestry":{"1":2620,"5":38,"6":7,"15":7,"16":7,"18":18,"23":22,"33":6,"36":43,"38":37,"40":35,"42":113,"49":49,"51":88,"53":7,"61":6,"62":8,"63":7,"64":6,"67":7,"73":31,"83":17,"87":14,"89":12,"91":10,"94":78,"99":12,"101":27,"103":11,"105":28,"108":2004,"109":210}},"geometry":{"type":"Point","coordinates":[-73.92261855100452,40.7066908028734]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047044700","ancestry":{"1":2620,"5":38,"6":7,"15":7,"16":7,"18":18,"23":22,"33":6,"36":43,"38":37,"40":35,"42":113,"49":49,"51":88,"53":7,"61":6,"62":8,"63":7,"64":6,"67":7,"73":31,"83":17,"87":14,"89":12,"91":10,"94":78,"99":12,"101":27,"103":11,"105":28,"108":2004,"109":210}},"geometry":{"type":"Point","coordinates":[-73.92101238301208,40.70887903065486]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047047200","ancestry":{"1":2894,"3":9,"5":246,"21":10,"23":5,"26":19,"31":46,"35":80,"36":5,"38":335,"42":28,"46":205,"50":26,"51":8,"61":348,"63":15,"64":78,"94":9,"96":9,"108":1304,"109":460}},"geometry":{"type":"Point","coordinates":[-73.98412750188852,40.627036091225214]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047049100","ancestry":{"1":5848,"5":180,"16":37,"19":20,"31":16,"36":87,"40":53,"42":161,"44":88,"45":336,"49":32,"51":103,"59":29,"61":269,"64":33,"93":29,"94":48,"102":32,"103":16,"108":4785,"109":271}},"geometry":{"type":"Point","coordinates":[-73.94409996572782,40.70357294753839]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050300","ancestry":{"1":2423,"5":26,"6":15,"15":15,"26":19,"31":7,"33":16,"35":15,"36":122,"38":35,"40":133,"41":30,"42":138,"46":16,"49":256,"51":388,"53":25,"57":15,"59":24,"61":293,"63":8,"64":42,"66":14,"67":48,"69":9,"73":11,"87":11,"89":33,"90":9,"91":19,"92":8,"93":8,"108":1051,"109":184}},"geometry":{"type":"Point","coordinates":[-73.94746234885396,40.71220179432497]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047055200","ancestry":{"1":3253,"3":80,"5":69,"6":25,"7":20,"13":5,"16":46,"35":24,"36":16,"38":7,"40":25,"42":84,"44":15,"46":14,"49":84,"51":43,"53":45,"61":123,"63":7,"64":822,"68":14,"89":8,"91":76,"92":196,"93":15,"94":29,"97":10,"101":19,"108":1337,"109":286}},"geometry":{"type":"Point","coordinates":[-73.95625883733675,40.60830959347888]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056500","ancestry":{"1":3581,"5":135,"6":30,"7":22,"11":8,"16":38,"18":16,"22":8,"23":24,"26":8,"31":41,"33":8,"34":75,"35":10,"36":256,"38":42,"40":91,"42":435,"45":26,"46":45,"49":394,"50":17,"51":326,"59":59,"61":830,"62":8,"63":19,"64":120,"66":18,"67":46,"68":8,"70":8,"71":15,"73":43,"83":34,"88":9,"89":29,"92":7,"93":64,"94":21,"102":21,"108":913,"109":343}},"geometry":{"type":"Point","coordinates":[-73.95775719901658,40.73021779459349]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057500","ancestry":{"1":3673,"3":39,"5":264,"19":19,"21":26,"22":37,"23":45,"26":82,"34":21,"35":45,"36":35,"38":53,"39":25,"40":88,"41":20,"42":293,"44":13,"46":18,"49":316,"50":18,"51":149,"59":18,"61":1133,"64":95,"66":19,"67":20,"71":48,"89":18,"93":18,"108":1140,"109":175}},"geometry":{"type":"Point","coordinates":[-73.95323059176224,40.73210530600432]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057600","ancestry":{"1":3090,"3":34,"5":76,"6":39,"13":23,"15":16,"34":17,"38":127,"40":19,"42":12,"44":24,"49":50,"50":50,"51":138,"61":47,"63":5,"64":459,"91":77,"92":264,"108":1392,"109":403}},"geometry":{"type":"Point","coordinates":[-73.94757100263766,40.59987316101304]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056600","ancestry":{"1":2951,"5":55,"6":41,"7":17,"15":24,"19":9,"29":15,"36":9,"40":57,"42":37,"46":6,"49":610,"51":387,"53":6,"59":12,"61":55,"63":16,"64":250,"73":1,"83":1,"89":5,"91":31,"92":52,"94":38,"99":11,"101":6,"102":21,"108":1186,"109":346}},"geometry":{"type":"Point","coordinates":[-73.94140350303152,40.60285254115712]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056800","ancestry":{"1":1425,"5":23,"6":9,"10":9,"36":13,"38":10,"40":6,"42":66,"44":76,"49":185,"51":380,"53":4,"61":26,"63":47,"64":25,"70":7,"92":131,"108":488,"109":149}},"geometry":{"type":"Point","coordinates":[-73.93781849954883,40.60267168657836]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056900","ancestry":{"1":1452,"5":76,"6":4,"7":4,"33":11,"35":28,"36":118,"38":14,"39":19,"40":48,"42":75,"44":13,"46":24,"48":12,"49":92,"50":6,"51":139,"59":10,"61":323,"63":32,"64":90,"66":4,"67":6,"70":6,"73":16,"87":16,"89":4,"90":37,"92":11,"93":12,"94":16,"105":16,"108":458,"109":108}},"geometry":{"type":"Point","coordinates":[-73.95236735113303,40.72376641723887]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057000","ancestry":{"1":3609,"5":122,"6":21,"7":14,"14":18,"19":34,"22":5,"24":4,"35":17,"36":135,"38":12,"40":15,"41":8,"42":139,"44":9,"45":59,"46":92,"49":292,"50":12,"51":259,"52":17,"59":16,"61":166,"64":604,"89":6,"92":118,"94":16,"101":16,"108":1431,"109":519}},"geometry":{"type":"Point","coordinates":[-73.93688262844681,40.599266778868994]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057300","ancestry":{"1":2299,"3":26,"5":219,"18":13,"23":18,"26":26,"31":20,"35":7,"36":61,"40":57,"41":8,"42":116,"44":40,"45":107,"46":8,"48":21,"49":226,"51":255,"61":742,"62":9,"63":9,"64":18,"66":8,"67":13,"89":7,"90":11,"92":18,"94":31,"101":7,"105":24,"108":402,"109":250}},"geometry":{"type":"Point","coordinates":[-73.94883001010724,40.72804873998185]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057800","ancestry":{"1":3141,"3":9,"5":98,"6":110,"10":17,"11":9,"13":75,"15":9,"19":9,"34":5,"38":74,"40":23,"42":26,"44":20,"49":108,"50":32,"51":162,"53":23,"61":34,"63":8,"64":182,"73":11,"88":11,"91":99,"92":164,"94":25,"102":25,"108":1656,"109":424}},"geometry":{"type":"Point","coordinates":[-73.95151267819914,40.59943985858356]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047057900","ancestry":{"1":813,"5":20,"26":17,"31":9,"34":19,"36":15,"38":5,"40":17,"41":11,"42":67,"49":69,"51":61,"53":15,"59":7,"61":237,"62":10,"64":13,"67":6,"89":19,"90":10,"93":10,"94":7,"103":7,"108":269,"109":72}},"geometry":{"type":"Point","coordinates":[-73.9485460487308,40.73414818652806]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047058000","ancestry":{"1":3833,"3":30,"5":157,"6":145,"11":22,"13":123,"19":22,"23":7,"35":10,"36":36,"38":8,"40":16,"42":37,"44":8,"49":46,"51":251,"59":12,"61":75,"64":346,"73":8,"79":8,"90":8,"91":39,"92":118,"94":28,"103":28,"108":2413,"109":311}},"geometry":{"type":"Point","coordinates":[-73.95545392983345,40.59900677633336]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047058800","ancestry":{"1":3722,"3":191,"5":174,"6":16,"14":16,"19":7,"35":50,"36":9,"38":8,"42":209,"49":142,"51":283,"61":55,"63":16,"64":491,"73":8,"87":8,"89":10,"91":23,"92":300,"94":35,"101":24,"102":11,"108":1652,"109":436}},"geometry":{"type":"Point","coordinates":[-73.95854796875035,40.589621771523326]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059000","ancestry":{"1":1881,"5":30,"6":85,"14":85,"34":6,"35":19,"36":8,"40":5,"42":16,"49":25,"50":5,"51":75,"61":33,"64":138,"73":13,"87":13,"92":137,"94":89,"96":4,"101":13,"102":45,"103":20,"105":11,"108":1064,"109":286}},"geometry":{"type":"Point","coordinates":[-73.95468623087686,40.58998856868811]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059401","ancestry":{"1":7638,"5":165,"6":50,"11":13,"14":37,"16":61,"19":47,"24":35,"35":20,"36":17,"40":101,"42":22,"49":105,"50":13,"51":510,"53":1,"56":27,"61":265,"63":24,"64":661,"73":18,"88":18,"89":13,"91":81,"92":997,"94":1,"105":1,"108":3977,"109":891}},"geometry":{"type":"Point","coordinates":[-73.9476257353649,40.593012007014345]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047083600","ancestry":{"1":1990,"5":22,"36":33,"45":58,"49":26,"51":14,"62":23,"67":14,"73":357,"87":357,"94":1335,"97":8,"99":214,"101":127,"102":284,"103":166,"105":542,"108":479,"109":171}},"geometry":{"type":"Point","coordinates":[-73.9351273201826,40.63710285161226]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047084000","ancestry":{"1":2363,"5":28,"6":80,"15":80,"26":7,"36":79,"45":46,"49":54,"51":62,"73":301,"79":2,"83":7,"87":292,"94":1040,"96":13,"99":142,"101":291,"102":205,"103":47,"105":342,"108":899,"109":171}},"geometry":{"type":"Point","coordinates":[-73.93129199292042,40.641994310828096]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047085000","ancestry":{"1":1642,"5":24,"51":13,"73":84,"79":24,"87":60,"94":599,"96":40,"97":31,"99":70,"101":122,"102":145,"103":175,"104":5,"105":37,"108":884,"109":92}},"geometry":{"type":"Point","coordinates":[-73.93231599253426,40.6457433910809]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047085200","ancestry":{"1":8,"108":8}},"geometry":{"type":"Point","coordinates":[-73.93824111033908,40.64700292423209]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047085400","ancestry":{"1":1804,"5":36,"23":5,"40":28,"45":67,"49":39,"73":500,"76":21,"87":466,"88":13,"94":1024,"96":75,"99":47,"101":216,"102":202,"103":32,"105":457,"108":497,"109":117}},"geometry":{"type":"Point","coordinates":[-73.94254992130661,40.64467281644211]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047090000","ancestry":{"1":5671,"5":283,"6":26,"15":26,"26":19,"45":359,"51":64,"73":170,"87":163,"88":7,"94":1449,"96":26,"99":585,"101":267,"102":259,"103":242,"105":133,"108":3433,"109":292}},"geometry":{"type":"Point","coordinates":[-73.91981234456414,40.6662473952882]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047092000","ancestry":{"1":3366,"5":183,"36":22,"40":9,"42":5,"45":347,"49":19,"51":19,"73":22,"87":22,"94":627,"96":14,"99":85,"101":51,"102":96,"103":143,"105":321,"107":4,"108":1847,"109":446}},"geometry":{"type":"Point","coordinates":[-73.90298759678832,40.658564416570705]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047090200","ancestry":{"1":3958,"5":157,"32":16,"40":19,"42":5,"45":125,"61":16,"73":68,"79":17,"87":46,"88":5,"94":821,"96":177,"99":154,"101":34,"102":124,"103":190,"105":171,"108":2518,"109":337}},"geometry":{"type":"Point","coordinates":[-73.91500743475153,40.66755315613552]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047090600","ancestry":{"1":4394,"5":177,"42":47,"45":38,"51":18,"61":83,"64":17,"73":81,"87":81,"94":306,"96":45,"98":18,"99":9,"101":74,"102":149,"103":11,"108":3415,"109":344}},"geometry":{"type":"Point","coordinates":[-73.90885946041456,40.6701302092797]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047090800","ancestry":{"1":4936,"5":190,"49":23,"51":7,"64":10,"73":92,"79":18,"87":87,"94":418,"97":11,"99":89,"101":13,"102":174,"103":21,"105":110,"108":3478,"109":847}},"geometry":{"type":"Point","coordinates":[-73.90477192477815,40.671322642470514]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047091000","ancestry":{"1":6469,"5":188,"45":19,"49":13,"51":19,"73":14,"87":14,"94":623,"96":13,"99":261,"101":138,"102":136,"105":75,"108":4853,"109":810}},"geometry":{"type":"Point","coordinates":[-73.90340655297165,40.665751510354795]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047091800","ancestry":{"1":2994,"5":299,"36":7,"40":7,"45":65,"62":1,"73":187,"79":29,"87":171,"94":385,"96":24,"99":20,"101":29,"102":100,"103":112,"105":100,"108":2082,"109":74}},"geometry":{"type":"Point","coordinates":[-73.90458554047972,40.66165272253834]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047092200","ancestry":{"1":2927,"5":71,"23":14,"36":18,"45":164,"51":18,"73":172,"87":172,"94":1129,"95":18,"96":92,"97":19,"99":195,"100":17,"101":112,"102":312,"103":225,"105":158,"108":1247,"109":214}},"geometry":{"type":"Point","coordinates":[-73.90634962601712,40.65524058240959]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047093000","ancestry":{"1":2493,"5":268,"45":75,"48":22,"51":1,"70":12,"73":93,"87":93,"94":1268,"96":192,"99":246,"101":108,"102":529,"103":169,"105":24,"108":661,"109":190}},"geometry":{"type":"Point","coordinates":[-73.91540747085962,40.64992906007304]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047093400","ancestry":{"1":2492,"5":184,"23":37,"36":53,"45":81,"64":11,"73":107,"76":13,"87":94,"94":1339,"96":77,"99":246,"101":145,"102":512,"103":161,"105":225,"108":571,"109":205}},"geometry":{"type":"Point","coordinates":[-73.91901488096823,40.64892513061109]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047093600","ancestry":{"1":1931,"5":95,"23":20,"45":96,"62":5,"73":316,"79":5,"87":311,"94":1004,"96":96,"99":47,"101":39,"102":361,"103":176,"105":291,"108":672,"109":232}},"geometry":{"type":"Point","coordinates":[-73.92158372744323,40.648796271278776]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047058900","ancestry":{"1":1795,"5":95,"6":5,"7":5,"23":14,"26":7,"29":1,"31":4,"34":11,"35":54,"36":73,"38":95,"40":16,"42":101,"44":25,"45":14,"46":19,"48":8,"49":279,"51":132,"53":59,"59":6,"61":539,"62":17,"63":6,"64":23,"67":12,"70":18,"89":12,"92":34,"94":43,"101":13,"102":30,"108":386,"109":113}},"geometry":{"type":"Point","coordinates":[-73.94120382838908,40.72895726910878]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059200","ancestry":{"1":4379,"5":62,"6":61,"9":18,"13":35,"14":8,"16":81,"35":35,"36":6,"38":8,"42":33,"46":16,"49":78,"51":213,"52":8,"53":27,"61":74,"63":13,"64":645,"91":130,"92":299,"107":43,"108":2251,"109":503}},"geometry":{"type":"Point","coordinates":[-73.95145084142534,40.592337986360086]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047060600","ancestry":{"1":2552,"5":200,"16":120,"34":34,"35":8,"37":8,"38":20,"42":28,"46":9,"49":17,"51":24,"61":56,"64":255,"89":12,"91":32,"92":302,"107":31,"108":1307,"109":220}},"geometry":{"type":"Point","coordinates":[-73.95612308706617,40.586463672901985]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047063200","ancestry":{"1":1454,"5":71,"19":5,"23":5,"36":40,"38":9,"42":31,"49":189,"51":251,"61":87,"63":20,"64":154,"67":4,"89":4,"92":63,"94":6,"105":6,"108":363,"109":377}},"geometry":{"type":"Point","coordinates":[-73.93156834386762,40.59976040723486]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047065600","ancestry":{"1":1873,"5":164,"6":6,"13":6,"19":4,"23":5,"26":13,"30":4,"31":16,"36":98,"38":23,"42":80,"44":18,"46":5,"49":462,"51":585,"59":19,"61":35,"62":29,"63":6,"64":105,"67":4,"73":11,"87":11,"89":11,"91":6,"92":34,"108":661,"109":33}},"geometry":{"type":"Point","coordinates":[-73.93498225847729,40.61301094015061]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059100","ancestry":{"1":3825,"5":213,"6":14,"10":14,"13":14,"19":22,"23":16,"26":11,"29":11,"31":46,"33":6,"34":9,"35":44,"36":204,"37":6,"38":107,"40":91,"41":6,"42":315,"44":35,"45":24,"46":34,"49":428,"50":23,"51":599,"53":8,"59":19,"60":9,"61":1219,"64":77,"65":9,"66":24,"67":122,"70":66,"89":22,"90":7,"92":14,"94":17,"105":17,"108":863,"109":230}},"geometry":{"type":"Point","coordinates":[-73.94293382452817,40.723530436892695]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047069000","ancestry":{"1":1827,"5":176,"6":5,"13":5,"42":57,"44":23,"45":89,"49":100,"51":90,"56":11,"59":15,"70":5,"89":9,"90":7,"92":11,"94":805,"96":70,"99":209,"101":248,"102":199,"103":66,"105":13,"108":492,"109":120}},"geometry":{"type":"Point","coordinates":[-73.92067009324849,40.61996538975594]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047073000","ancestry":{"1":2683,"5":139,"6":16,"14":16,"23":8,"42":17,"44":13,"45":279,"49":1,"51":21,"61":16,"64":6,"73":45,"87":45,"94":1225,"99":264,"101":296,"102":574,"103":104,"105":47,"108":526,"109":479}},"geometry":{"type":"Point","coordinates":[-73.92984883203928,40.626200728594114]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047074200","ancestry":{"1":3505,"5":142,"6":31,"14":31,"19":7,"26":9,"34":35,"35":7,"36":5,"38":44,"40":12,"42":61,"44":27,"45":128,"46":5,"49":100,"50":57,"51":46,"61":124,"64":101,"73":23,"87":23,"91":29,"92":16,"94":720,"96":13,"101":437,"102":144,"105":126,"108":1759,"109":352}},"geometry":{"type":"Point","coordinates":[-73.94497531801404,40.62699439681205]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047078000","ancestry":{"1":2409,"5":124,"6":6,"10":6,"36":14,"41":25,"42":7,"45":49,"49":9,"51":5,"62":8,"73":70,"87":70,"94":1481,"96":71,"97":15,"99":45,"101":503,"102":166,"103":297,"105":384,"108":417,"109":308}},"geometry":{"type":"Point","coordinates":[-73.93914858208706,40.63449792834823]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047080000","ancestry":{"1":3942,"5":307,"26":14,"34":35,"35":85,"36":72,"38":111,"39":20,"40":7,"42":118,"45":65,"46":21,"49":88,"51":86,"52":9,"61":37,"64":91,"67":7,"70":3,"73":35,"87":35,"94":1124,"96":82,"97":10,"99":162,"101":147,"102":458,"103":238,"105":43,"108":1516,"109":347}},"geometry":{"type":"Point","coordinates":[-73.95376665707467,40.66068603679591]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047084600","ancestry":{"1":1555,"5":9,"38":1,"45":77,"50":21,"73":230,"87":230,"94":820,"96":69,"99":26,"101":159,"102":318,"103":61,"105":187,"108":461,"109":125}},"geometry":{"type":"Point","coordinates":[-73.92745492594251,40.642285039051124]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047087200","ancestry":{"1":2538,"5":60,"36":8,"40":23,"45":208,"59":11,"67":8,"73":489,"79":9,"87":480,"94":1138,"96":28,"99":64,"101":33,"102":413,"103":118,"105":533,"108":872,"109":216}},"geometry":{"type":"Point","coordinates":[-73.93664981071598,40.653675394834266]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047088000","ancestry":{"1":3202,"5":67,"36":17,"42":36,"45":74,"49":36,"64":21,"73":418,"87":418,"94":1821,"96":116,"101":158,"102":409,"103":341,"105":797,"108":981,"109":242}},"geometry":{"type":"Point","coordinates":[-73.93102263212029,40.66151931609827]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047091200","ancestry":{"1":6425,"5":300,"42":10,"45":465,"46":45,"51":74,"73":134,"87":134,"94":200,"101":25,"102":175,"108":5049,"109":459}},"geometry":{"type":"Point","coordinates":[-73.90763463051006,40.66512903413559]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047098200","ancestry":{"1":4040,"5":478,"23":11,"40":10,"45":54,"73":84,"87":84,"94":408,"96":9,"99":48,"101":163,"102":78,"103":27,"105":98,"108":2742,"109":347}},"geometry":{"type":"Point","coordinates":[-73.89436661734442,40.65099885664249]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047099200","ancestry":{"1":1960,"5":177,"6":59,"15":59,"40":9,"45":117,"51":96,"73":149,"79":4,"87":145,"92":6,"94":1051,"97":7,"99":190,"101":329,"102":301,"103":105,"105":132,"108":453,"109":90}},"geometry":{"type":"Point","coordinates":[-73.90128448305995,40.63740348486446]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047102800","ancestry":{"1":1523,"5":211,"45":37,"51":10,"73":34,"79":13,"87":21,"94":714,"96":35,"97":29,"99":5,"101":173,"102":325,"103":163,"105":65,"108":473,"109":101}},"geometry":{"type":"Point","coordinates":[-73.89300585351305,40.62785757170348]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047115000","ancestry":{"1":2804,"5":126,"45":135,"49":7,"51":44,"73":40,"87":40,"94":452,"96":23,"97":45,"99":79,"101":6,"102":175,"103":101,"105":23,"108":1780,"109":274}},"geometry":{"type":"Point","coordinates":[-73.88652252525176,40.67392233399972]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047116200","ancestry":{"1":2086,"5":156,"41":9,"45":286,"49":9,"73":22,"79":22,"94":600,"96":34,"99":197,"100":27,"102":74,"103":27,"105":241,"108":868,"109":236}},"geometry":{"type":"Point","coordinates":[-73.88503492026321,40.66993819448574]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047119000","ancestry":{"1":2528,"40":7,"45":486,"51":6,"94":175,"97":17,"99":6,"100":13,"102":51,"103":61,"105":27,"108":1626,"109":247}},"geometry":{"type":"Point","coordinates":[-73.87163108628158,40.679059609306684]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047000100","ancestry":{"1":4367,"2":51,"5":367,"6":9,"10":9,"18":6,"19":108,"22":19,"23":34,"26":58,"31":12,"34":165,"35":144,"36":349,"38":78,"40":61,"41":7,"42":295,"44":13,"46":143,"48":42,"49":314,"51":402,"58":12,"59":30,"61":372,"62":21,"64":332,"66":49,"67":41,"68":39,"69":15,"89":75,"90":14,"91":6,"92":12,"94":72,"96":47,"101":7,"102":18,"108":1391,"109":345}},"geometry":{"type":"Point","coordinates":[-73.9956975081016,40.70222389097095]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047000100","ancestry":{"1":4367,"2":51,"5":367,"6":9,"10":9,"18":6,"19":108,"22":19,"23":34,"26":58,"31":12,"34":165,"35":144,"36":349,"38":78,"40":61,"41":7,"42":295,"44":13,"46":143,"48":42,"49":314,"51":402,"58":12,"59":30,"61":372,"62":21,"64":332,"66":49,"67":41,"68":39,"69":15,"89":75,"90":14,"91":6,"92":12,"94":72,"96":47,"101":7,"102":18,"108":1391,"109":345}},"geometry":{"type":"Point","coordinates":[-73.99379702406091,40.70021579813404]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047000200","ancestry":{"1":1561,"5":49,"6":42,"7":18,"12":24,"40":13,"51":4,"59":8,"67":3,"94":38,"96":3,"101":27,"105":8,"108":1249,"109":228}},"geometry":{"type":"Point","coordinates":[-74.0110677763363,40.65324754788918]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047000301","ancestry":{"1":3944,"5":578,"6":37,"13":37,"18":45,"19":41,"23":77,"26":46,"29":17,"31":14,"34":35,"35":46,"36":315,"38":83,"40":57,"42":405,"46":31,"49":501,"51":543,"58":12,"59":74,"61":179,"63":19,"64":277,"66":72,"67":44,"70":17,"89":61,"90":63,"92":27,"93":14,"94":120,"101":12,"102":108,"108":1011,"109":306}},"geometry":{"type":"Point","coordinates":[-73.99813316557808,40.69860993571034]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047000301","ancestry":{"1":3944,"5":578,"6":37,"13":37,"18":45,"19":41,"23":77,"26":46,"29":17,"31":14,"34":35,"35":46,"36":315,"38":83,"40":57,"42":405,"46":31,"49":501,"51":543,"58":12,"59":74,"61":179,"63":19,"64":277,"66":72,"67":44,"70":17,"89":61,"90":63,"92":27,"93":14,"94":120,"101":12,"102":108,"108":1011,"109":306}},"geometry":{"type":"Point","coordinates":[-73.99737217213091,40.69637111239277]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014200","ancestry":{"1":3139,"3":101,"5":143,"6":416,"7":61,"10":47,"13":49,"14":244,"15":20,"16":17,"22":62,"23":39,"26":6,"28":14,"32":22,"36":47,"37":14,"38":26,"39":7,"40":46,"41":9,"42":66,"44":436,"46":20,"48":11,"49":208,"51":248,"53":20,"59":31,"61":118,"62":2,"63":52,"64":101,"67":26,"73":31,"87":31,"92":33,"108":824,"109":366}},"geometry":{"type":"Point","coordinates":[-74.0224900639139,40.62250456348442]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014500","ancestry":{"1":4629,"5":346,"6":65,"9":60,"13":5,"18":9,"19":8,"24":27,"26":16,"29":17,"31":25,"35":26,"36":137,"38":37,"39":19,"40":89,"41":59,"42":288,"44":12,"46":23,"49":374,"50":14,"51":395,"53":56,"56":1,"59":31,"60":12,"61":352,"62":9,"63":79,"64":157,"66":18,"67":86,"70":16,"73":28,"84":28,"89":27,"90":11,"91":14,"92":28,"93":28,"94":162,"103":91,"105":71,"108":2124,"109":466}},"geometry":{"type":"Point","coordinates":[-73.99496344111166,40.66136713429623]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014700","ancestry":{"1":2244,"5":60,"6":34,"10":23,"12":11,"23":5,"34":41,"35":15,"36":244,"38":48,"39":14,"40":11,"41":7,"42":232,"44":6,"46":14,"49":210,"50":12,"51":102,"57":8,"58":4,"59":12,"61":68,"63":4,"64":50,"66":37,"67":78,"71":5,"73":36,"83":36,"86":23,"89":67,"92":48,"93":12,"94":67,"101":29,"105":38,"108":1112,"109":205}},"geometry":{"type":"Point","coordinates":[-73.9896720312826,40.65985581647386]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014900","ancestry":{"1":5723,"5":183,"6":88,"11":42,"13":46,"16":14,"19":12,"22":72,"23":66,"26":34,"27":42,"29":14,"31":191,"33":37,"34":129,"35":128,"36":312,"38":31,"39":78,"40":159,"42":732,"44":97,"46":83,"47":32,"48":44,"49":1018,"51":884,"52":13,"53":82,"56":27,"59":87,"61":320,"62":28,"63":13,"64":409,"66":18,"67":120,"69":15,"70":16,"73":3,"79":3,"89":67,"92":73,"93":69,"94":182,"96":1,"101":128,"102":1,"103":28,"105":24,"108":2033,"109":223}},"geometry":{"type":"Point","coordinates":[-73.98518149494434,40.662426101710984]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015000","ancestry":{"1":1660,"3":12,"5":106,"6":44,"9":24,"12":44,"26":6,"40":17,"42":28,"44":4,"49":197,"51":1005,"59":16,"61":17,"62":26,"64":30,"91":5,"108":291,"109":185}},"geometry":{"type":"Point","coordinates":[-74.01075855871477,40.6153783009796]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015300","ancestry":{"1":2909,"5":156,"6":53,"10":22,"12":11,"15":20,"18":46,"19":51,"23":34,"33":14,"34":25,"35":96,"36":259,"38":194,"39":19,"40":100,"42":172,"44":39,"46":36,"48":40,"49":294,"51":259,"53":22,"58":40,"59":38,"61":122,"63":8,"64":184,"65":21,"66":7,"67":21,"69":4,"89":63,"91":19,"92":24,"93":16,"94":56,"101":8,"103":26,"105":22,"108":854,"109":383}},"geometry":{"type":"Point","coordinates":[-73.98057592582475,40.66810024243578]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015400","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.01893346868,40.611148222267225]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047014100","ancestry":{"1":3980,"5":341,"6":26,"7":11,"10":11,"15":15,"19":29,"23":80,"26":44,"31":46,"34":12,"35":110,"36":192,"38":98,"40":49,"41":43,"42":249,"44":99,"46":9,"49":208,"50":10,"51":238,"53":12,"59":12,"61":204,"62":28,"64":177,"66":10,"67":56,"70":11,"73":31,"83":21,"87":10,"89":79,"90":29,"92":15,"93":11,"94":181,"97":12,"99":26,"101":135,"102":8,"108":1846,"109":405}},"geometry":{"type":"Point","coordinates":[-73.98937785898404,40.665441302339126]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015900","ancestry":{"1":5148,"3":63,"5":216,"6":58,"10":11,"15":47,"18":32,"19":17,"21":15,"22":29,"23":58,"26":16,"31":11,"34":75,"35":182,"36":517,"38":239,"40":162,"41":22,"42":505,"44":117,"46":38,"49":620,"51":597,"53":15,"55":188,"59":75,"61":169,"63":34,"64":356,"67":195,"70":48,"73":17,"83":17,"87":17,"89":91,"90":32,"91":9,"92":78,"93":38,"94":268,"102":17,"103":212,"105":39,"108":1268,"109":266}},"geometry":{"type":"Point","coordinates":[-73.97306679921792,40.67519337253565]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016100","ancestry":{"1":3167,"5":260,"6":93,"10":8,"11":13,"14":52,"15":20,"16":7,"19":35,"23":43,"25":9,"26":9,"31":32,"33":6,"34":38,"35":92,"36":240,"38":74,"40":103,"42":299,"44":13,"46":7,"48":20,"49":326,"51":179,"52":5,"53":22,"59":42,"61":123,"63":29,"64":163,"66":33,"67":66,"70":17,"73":7,"87":7,"89":120,"92":22,"93":23,"94":146,"99":5,"101":40,"102":42,"103":26,"105":33,"107":7,"108":1141,"109":345}},"geometry":{"type":"Point","coordinates":[-73.97318947076455,40.679888564379425]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016200","ancestry":{"1":2574,"3":21,"5":68,"6":305,"7":153,"10":46,"11":25,"15":81,"35":7,"36":74,"39":5,"41":5,"42":99,"48":42,"49":327,"51":439,"53":6,"56":7,"59":58,"61":72,"64":214,"65":7,"66":9,"67":10,"70":12,"89":18,"91":93,"92":15,"94":23,"96":23,"108":1014,"109":72}},"geometry":{"type":"Point","coordinates":[-74.03138429567808,40.61321990425253]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016300","ancestry":{"1":3060,"5":223,"17":7,"19":15,"23":16,"24":8,"26":35,"31":17,"32":9,"33":13,"35":82,"36":172,"37":13,"38":101,"40":100,"41":7,"42":219,"46":55,"49":255,"50":28,"51":57,"53":23,"59":8,"61":94,"62":7,"63":7,"64":151,"65":15,"66":9,"67":47,"73":93,"75":7,"87":86,"89":16,"90":22,"92":28,"93":22,"94":213,"96":40,"101":30,"102":74,"103":69,"108":1284,"109":276}},"geometry":{"type":"Point","coordinates":[-73.97000503802266,40.67918429386278]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016400","ancestry":{"1":896,"5":131,"23":1,"34":9,"36":122,"40":22,"41":13,"42":54,"49":82,"51":117,"64":28,"66":22,"67":11,"93":8,"108":216,"109":233}},"geometry":{"type":"Point","coordinates":[-74.02773789345342,40.6081549727255]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016500","ancestry":{"1":5638,"4":48,"5":227,"6":85,"7":22,"10":19,"13":7,"14":17,"15":20,"19":52,"20":17,"23":16,"29":16,"33":105,"34":67,"35":333,"36":615,"38":119,"39":13,"40":151,"42":639,"44":37,"46":79,"49":805,"51":365,"53":30,"58":33,"59":29,"61":599,"63":52,"64":668,"65":75,"66":18,"67":169,"70":36,"73":38,"79":17,"82":21,"89":170,"90":15,"93":124,"94":46,"102":46,"107":52,"108":1782,"109":458}},"geometry":{"type":"Point","coordinates":[-73.97404003108761,40.66997609976297]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016700","ancestry":{"1":4946,"5":506,"6":22,"10":12,"15":10,"18":35,"21":12,"22":59,"23":151,"29":33,"31":60,"32":11,"34":38,"35":180,"36":609,"38":90,"39":24,"40":260,"41":12,"42":847,"44":10,"46":64,"48":48,"49":752,"51":463,"53":26,"59":97,"61":185,"62":11,"64":358,"65":10,"66":10,"67":173,"73":18,"87":18,"89":62,"92":65,"93":41,"94":84,"102":84,"108":1392,"109":293}},"geometry":{"type":"Point","coordinates":[-73.97877537637223,40.66429692683901]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016800","ancestry":{"1":1682,"5":110,"6":34,"7":17,"10":17,"19":22,"33":14,"34":13,"35":11,"36":15,"38":34,"41":11,"42":78,"44":5,"49":42,"51":695,"53":16,"61":49,"62":15,"63":24,"64":183,"92":9,"94":9,"105":9,"108":433,"109":100}},"geometry":{"type":"Point","coordinates":[-74.0157636284614,40.6042316706079]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016900","ancestry":{"1":4620,"5":524,"6":11,"10":11,"16":22,"18":12,"19":14,"23":16,"26":69,"31":1,"33":8,"34":54,"35":22,"36":178,"38":154,"40":33,"41":14,"42":479,"44":161,"49":755,"51":548,"52":29,"53":15,"56":13,"58":64,"61":52,"64":254,"66":74,"67":171,"68":43,"70":10,"73":12,"74":12,"89":61,"90":28,"92":13,"93":18,"94":24,"103":24,"105":13,"108":2039,"109":371}},"geometry":{"type":"Point","coordinates":[-73.98128382636486,40.659292734713695]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017100","ancestry":{"1":3967,"5":451,"6":41,"8":6,"11":17,"13":18,"16":12,"19":44,"22":10,"23":59,"31":27,"33":29,"34":15,"35":113,"36":299,"38":80,"40":130,"41":14,"42":431,"44":83,"46":39,"49":785,"50":17,"51":761,"53":7,"59":33,"61":154,"63":59,"64":287,"66":27,"67":35,"70":61,"89":23,"92":39,"93":7,"94":62,"96":11,"99":25,"103":26,"107":38,"108":945,"109":423}},"geometry":{"type":"Point","coordinates":[-73.97686185722252,40.65696376503231]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017200","ancestry":{"1":4103,"3":105,"5":160,"6":77,"7":77,"36":11,"42":23,"44":80,"49":222,"51":877,"59":8,"61":27,"64":73,"67":8,"70":56,"94":42,"101":9,"102":33,"108":1636,"109":1037}},"geometry":{"type":"Point","coordinates":[-74.01034622193127,40.60888236949034]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017400","ancestry":{"1":2064,"5":121,"6":18,"12":18,"36":11,"38":11,"40":11,"44":13,"46":12,"49":39,"51":536,"61":43,"64":152,"92":73,"108":812,"109":347}},"geometry":{"type":"Point","coordinates":[-74.01158860724124,40.60374287088243]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017500","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.99023941690933,40.65213489398227]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047085600","ancestry":{"1":3521,"5":34,"40":23,"45":376,"51":16,"62":11,"67":8,"73":542,"79":23,"87":519,"94":1838,"96":110,"97":9,"99":161,"100":5,"101":205,"102":477,"103":190,"105":789,"108":1208,"109":115}},"geometry":{"type":"Point","coordinates":[-73.9448275526187,40.64862444971538]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047086000","ancestry":{"1":3398,"5":74,"23":12,"45":146,"73":1030,"87":1030,"94":2061,"96":19,"99":93,"101":116,"102":436,"103":292,"105":1158,"108":928,"109":236}},"geometry":{"type":"Point","coordinates":[-73.93292331257392,40.649995612446595]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047086400","ancestry":{"1":2376,"5":59,"34":11,"45":106,"73":632,"76":85,"79":16,"87":531,"94":1402,"96":25,"99":144,"101":96,"102":427,"103":160,"104":30,"105":542,"108":637,"109":138}},"geometry":{"type":"Point","coordinates":[-73.92384657797933,40.65433900760194]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047087000","ancestry":{"1":3124,"5":29,"45":118,"51":2,"73":729,"80":45,"87":684,"94":1864,"99":53,"100":9,"101":218,"102":724,"103":203,"104":20,"105":643,"108":1048,"109":165}},"geometry":{"type":"Point","coordinates":[-73.93340386503294,40.65418032034304]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047087401","ancestry":{"1":3395,"5":84,"36":27,"42":6,"45":158,"61":21,"64":15,"73":317,"79":15,"87":302,"94":1722,"96":135,"99":104,"101":549,"102":233,"103":292,"105":442,"108":997,"109":437}},"geometry":{"type":"Point","coordinates":[-73.93845878509693,40.66047444433815]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047087600","ancestry":{"1":1630,"5":75,"6":90,"15":90,"19":4,"22":10,"36":21,"38":32,"42":8,"45":21,"46":66,"49":70,"50":21,"51":77,"61":21,"62":7,"64":80,"73":14,"87":14,"91":12,"94":489,"96":11,"99":42,"101":84,"102":134,"104":13,"105":230,"108":678,"109":203}},"geometry":{"type":"Point","coordinates":[-73.93570591642647,40.66064785505037]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047087800","ancestry":{"1":3504,"5":157,"16":17,"45":360,"49":12,"73":645,"76":19,"87":626,"94":1984,"96":20,"99":284,"100":20,"101":257,"102":472,"103":97,"105":844,"108":881,"109":179}},"geometry":{"type":"Point","coordinates":[-73.93103382047863,40.65884654951085]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047088200","ancestry":{"1":6587,"5":159,"23":16,"36":35,"38":1,"40":16,"45":620,"51":27,"62":34,"73":422,"77":14,"79":152,"87":266,"88":29,"94":2584,"96":77,"97":54,"99":428,"101":131,"102":813,"103":683,"105":504,"108":2113,"109":823}},"geometry":{"type":"Point","coordinates":[-73.92598190011229,40.66049457941429]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059800","ancestry":{"1":3365,"5":139,"6":403,"11":20,"14":329,"15":54,"19":14,"35":22,"36":9,"38":39,"40":9,"42":140,"44":17,"45":34,"46":7,"51":421,"61":115,"63":37,"64":557,"91":181,"92":108,"94":30,"99":10,"101":10,"102":10,"107":18,"108":1272,"109":152}},"geometry":{"type":"Point","coordinates":[-73.93622651385238,40.587896176875354]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047061002","ancestry":{"1":4499,"5":183,"6":77,"10":77,"16":108,"19":12,"31":9,"36":18,"38":29,"40":78,"41":16,"42":37,"49":31,"50":14,"51":51,"53":18,"61":189,"63":30,"64":826,"70":24,"91":59,"92":465,"108":2020,"109":532}},"geometry":{"type":"Point","coordinates":[-73.9563681185862,40.57597989961304]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047061200","ancestry":{"1":1021,"3":31,"5":15,"6":10,"7":10,"16":14,"35":4,"36":25,"40":25,"42":14,"44":7,"49":36,"51":32,"52":14,"53":11,"61":14,"64":202,"89":4,"91":3,"92":21,"108":484,"109":135}},"geometry":{"type":"Point","coordinates":[-73.9496009858955,40.58088707329576]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047060000","ancestry":{"1":5510,"5":215,"6":13,"10":10,"15":3,"19":58,"35":97,"36":13,"38":40,"40":42,"42":59,"44":8,"46":11,"49":194,"51":402,"53":10,"61":90,"63":57,"64":1063,"67":21,"69":122,"92":386,"94":43,"103":11,"105":43,"108":2621,"109":417}},"geometry":{"type":"Point","coordinates":[-73.94569214437406,40.587074276039644]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047060800","ancestry":{"1":3031,"5":245,"6":17,"7":10,"10":7,"16":8,"23":8,"31":7,"34":9,"35":16,"36":8,"38":5,"42":45,"49":62,"51":173,"61":6,"63":98,"64":560,"67":8,"73":22,"77":22,"89":12,"91":41,"92":323,"93":8,"94":55,"101":55,"107":80,"108":1230,"109":219}},"geometry":{"type":"Point","coordinates":[-73.95015614502141,40.58426364991269]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047061600","ancestry":{"1":1757,"5":72,"16":31,"19":9,"34":1,"35":17,"36":3,"38":17,"40":9,"42":8,"48":14,"49":8,"51":99,"61":61,"64":314,"92":63,"108":855,"109":248}},"geometry":{"type":"Point","coordinates":[-73.94012598159895,40.57749139108351]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047062200","ancestry":{"1":3054,"3":149,"5":357,"6":58,"7":8,"15":50,"22":27,"32":8,"36":9,"38":5,"40":28,"42":26,"44":10,"46":11,"49":33,"50":73,"51":223,"61":35,"64":412,"67":9,"70":7,"91":24,"92":291,"94":39,"96":17,"101":22,"108":1122,"109":305}},"geometry":{"type":"Point","coordinates":[-73.93524080959834,40.58473772918307]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047062800","ancestry":{"1":5456,"5":241,"6":9,"15":9,"21":23,"26":11,"31":25,"33":19,"34":15,"35":38,"36":148,"38":101,"40":71,"42":282,"44":54,"45":20,"46":9,"48":59,"49":2228,"51":1298,"53":20,"59":97,"60":7,"61":150,"62":18,"64":29,"67":46,"73":20,"87":20,"89":120,"92":47,"93":9,"108":641,"109":919}},"geometry":{"type":"Point","coordinates":[-73.92690323076964,40.590431261076574]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047063600","ancestry":{"1":1344,"5":141,"19":8,"22":12,"36":15,"42":98,"44":9,"49":227,"51":424,"61":68,"63":6,"64":171,"66":10,"92":10,"108":308,"109":182}},"geometry":{"type":"Point","coordinates":[-73.93614332039216,40.60993553574879]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047063800","ancestry":{"1":1736,"5":63,"19":5,"23":50,"33":5,"34":5,"35":4,"36":65,"38":20,"40":16,"42":72,"44":22,"46":5,"49":219,"51":330,"53":9,"61":36,"64":70,"66":11,"89":5,"90":47,"92":328,"108":505,"109":104}},"geometry":{"type":"Point","coordinates":[-73.93881049593924,40.60666840139743]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047064000","ancestry":{"1":1906,"5":124,"6":6,"13":6,"19":15,"21":5,"26":5,"31":10,"35":5,"36":18,"38":37,"40":3,"42":41,"44":53,"49":243,"50":7,"51":363,"61":72,"63":13,"64":153,"66":6,"67":5,"89":13,"90":7,"92":115,"108":765,"109":184}},"geometry":{"type":"Point","coordinates":[-73.94024630312292,40.610997138807974]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047064400","ancestry":{"1":2872,"5":134,"6":30,"7":20,"13":5,"15":25,"18":14,"20":9,"32":11,"35":126,"38":33,"42":60,"44":23,"46":31,"48":58,"49":421,"50":4,"51":242,"59":11,"61":126,"64":70,"67":4,"73":1,"87":1,"94":11,"102":2,"105":9,"108":1338,"109":335}},"geometry":{"type":"Point","coordinates":[-73.94247912493498,40.61379651963814]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047065000","ancestry":{"1":1465,"5":146,"6":15,"7":15,"19":23,"36":12,"39":11,"42":22,"49":164,"51":211,"59":22,"64":10,"73":62,"76":40,"79":12,"87":10,"94":234,"96":10,"99":25,"101":112,"102":12,"105":80,"108":535,"109":192}},"geometry":{"type":"Point","coordinates":[-73.93364663363185,40.619978543079384]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047094401","ancestry":{"1":3826,"5":113,"45":217,"46":8,"51":26,"73":235,"76":18,"87":199,"88":18,"94":2293,"96":15,"99":263,"101":712,"102":791,"103":244,"105":271,"108":782,"109":307}},"geometry":{"type":"Point","coordinates":[-73.92296816459934,40.6387430418034]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047095000","ancestry":{"1":3070,"5":236,"23":48,"36":22,"45":93,"61":15,"63":10,"64":5,"73":43,"87":43,"94":1850,"96":50,"97":12,"99":180,"101":815,"102":669,"103":101,"105":54,"108":594,"109":228}},"geometry":{"type":"Point","coordinates":[-73.91714517188439,40.63624877888781]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047095400","ancestry":{"1":4547,"5":351,"42":10,"45":42,"50":8,"51":37,"61":18,"73":213,"76":85,"87":77,"88":51,"94":2901,"96":76,"97":64,"99":147,"100":17,"101":1378,"102":910,"103":222,"105":112,"108":804,"109":363}},"geometry":{"type":"Point","coordinates":[-73.91463256302316,40.63896688433361]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047095600","ancestry":{"1":4682,"5":472,"6":10,"7":10,"23":18,"36":21,"40":22,"45":92,"51":28,"61":25,"64":25,"73":368,"87":368,"94":2552,"96":49,"99":187,"101":1189,"102":481,"103":390,"105":248,"106":18,"108":921,"109":343}},"geometry":{"type":"Point","coordinates":[-73.91091852104093,40.63557409725249]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005044902","ancestry":{"1":2031,"5":184,"19":9,"26":6,"29":5,"36":68,"40":11,"42":63,"44":25,"49":1115,"51":223,"61":10,"65":5,"66":12,"70":6,"89":2,"108":409,"109":169}},"geometry":{"type":"Point","coordinates":[-73.86898874885699,40.89882569863093]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025100","ancestry":{"1":6246,"5":28,"36":15,"40":14,"42":29,"49":39,"51":32,"73":434,"76":121,"79":57,"87":177,"88":79,"94":273,"97":16,"99":30,"102":42,"103":160,"105":25,"108":4983,"109":484}},"geometry":{"type":"Point","coordinates":[-73.90773356850697,40.856541234063684]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022404","ancestry":{"1":3951,"3":442,"5":37,"6":106,"8":19,"9":16,"14":24,"15":47,"19":6,"33":20,"36":14,"38":94,"42":50,"46":6,"49":85,"51":255,"61":76,"64":61,"66":8,"73":50,"87":22,"88":28,"89":10,"92":71,"94":271,"102":227,"103":13,"105":31,"107":32,"108":2227,"109":205}},"geometry":{"type":"Point","coordinates":[-73.86630088889484,40.85274453585521]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039901","ancestry":{"1":5268,"5":93,"40":22,"42":23,"45":80,"46":6,"48":30,"49":33,"51":10,"53":11,"73":298,"76":36,"78":47,"79":20,"81":71,"87":40,"88":84,"94":313,"97":112,"101":121,"102":31,"105":65,"108":4422,"109":99}},"geometry":{"type":"Point","coordinates":[-73.89364063731566,40.86351114612043]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023704","ancestry":{"1":3702,"5":59,"36":20,"38":12,"42":46,"45":24,"51":14,"62":16,"73":255,"75":24,"76":34,"87":197,"89":12,"94":146,"101":77,"102":58,"105":11,"108":3107,"109":151}},"geometry":{"type":"Point","coordinates":[-73.90190537220312,40.85626753064099]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005015300","ancestry":{"1":4471,"5":65,"6":53,"14":33,"15":20,"26":17,"38":43,"42":10,"49":10,"51":8,"73":543,"78":21,"79":19,"87":181,"88":343,"94":278,"96":15,"99":30,"102":213,"105":20,"108":3407,"109":204}},"geometry":{"type":"Point","coordinates":[-73.89414292514712,40.83348089471646]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047000700","ancestry":{"1":3765,"4":9,"5":384,"6":45,"7":8,"10":18,"15":19,"16":30,"19":38,"21":8,"22":34,"23":62,"29":13,"33":27,"34":38,"35":197,"36":423,"37":7,"38":148,"40":190,"41":19,"42":502,"44":50,"46":95,"49":502,"51":401,"53":7,"59":36,"61":156,"64":150,"65":18,"66":117,"67":98,"71":16,"73":6,"83":6,"89":61,"90":47,"91":10,"92":7,"93":55,"94":18,"99":13,"102":5,"103":13,"108":959,"109":338}},"geometry":{"type":"Point","coordinates":[-74.00136051617963,40.693139375467766]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047000700","ancestry":{"1":3765,"4":9,"5":384,"6":45,"7":8,"10":18,"15":19,"16":30,"19":38,"21":8,"22":34,"23":62,"29":13,"33":27,"34":38,"35":197,"36":423,"37":7,"38":148,"40":190,"41":19,"42":502,"44":50,"46":95,"49":502,"51":401,"53":7,"59":36,"61":156,"64":150,"65":18,"66":117,"67":98,"71":16,"73":6,"83":6,"89":61,"90":47,"91":10,"92":7,"93":55,"94":18,"99":13,"102":5,"103":13,"108":959,"109":338}},"geometry":{"type":"Point","coordinates":[-73.99734315100855,40.692350409896925]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047000900","ancestry":{"1":4163,"3":7,"5":473,"6":35,"11":7,"12":28,"18":11,"19":77,"21":7,"22":7,"23":17,"26":18,"31":35,"33":25,"34":48,"35":190,"36":335,"38":169,"40":75,"42":425,"44":35,"46":82,"48":6,"49":491,"50":13,"51":590,"53":25,"57":6,"59":22,"61":255,"63":12,"64":177,"66":23,"67":62,"73":16,"83":16,"89":112,"90":8,"92":20,"93":7,"94":58,"101":41,"102":12,"105":5,"108":1287,"109":405}},"geometry":{"type":"Point","coordinates":[-73.99160178484168,40.691720611950096]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047001100","ancestry":{"1":701,"5":42,"6":27,"12":12,"14":5,"15":10,"16":5,"19":8,"29":5,"34":5,"35":15,"36":28,"38":10,"40":47,"42":85,"49":90,"51":52,"53":2,"59":6,"61":14,"62":4,"64":6,"66":5,"67":30,"73":8,"87":8,"89":6,"90":12,"94":12,"102":12,"108":266,"109":87}},"geometry":{"type":"Point","coordinates":[-73.98770870470253,40.69329033883267]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047001300","ancestry":{"1":2627,"5":747,"6":20,"10":16,"13":20,"16":10,"19":70,"21":7,"22":10,"23":69,"26":10,"29":11,"31":6,"34":15,"35":97,"36":59,"38":26,"39":14,"40":18,"42":59,"44":19,"45":18,"46":28,"49":187,"51":225,"53":5,"58":10,"61":41,"62":11,"63":8,"64":93,"66":5,"67":14,"73":21,"79":11,"83":10,"89":4,"92":5,"94":37,"95":10,"97":11,"102":5,"105":11,"108":948,"109":110}},"geometry":{"type":"Point","coordinates":[-73.98835860581055,40.697614999197654]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047001800","ancestry":{"1":2206,"16":16,"19":15,"22":16,"26":15,"38":16,"49":32,"51":137,"59":14,"61":30,"62":15,"64":31,"73":123,"76":32,"79":15,"87":91,"94":78,"101":30,"102":32,"105":16,"108":1181,"109":594}},"geometry":{"type":"Point","coordinates":[-74.01336675635577,40.65530864064332]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047002000","ancestry":{"1":1321,"5":28,"6":15,"10":15,"26":9,"44":8,"51":7,"61":14,"63":9,"64":32,"73":6,"87":6,"91":4,"94":49,"103":39,"105":10,"108":1108,"109":69}},"geometry":{"type":"Point","coordinates":[-74.01592762349973,40.6480407363748]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047002100","ancestry":{"1":3798,"4":10,"5":169,"6":9,"13":9,"16":31,"18":38,"22":2,"23":62,"26":5,"31":49,"33":13,"34":46,"35":120,"36":338,"38":124,"39":23,"40":126,"41":5,"42":683,"44":52,"45":10,"46":45,"49":503,"50":9,"51":332,"53":5,"58":22,"61":164,"62":3,"63":7,"64":166,"65":44,"66":10,"67":26,"73":72,"79":45,"83":27,"89":133,"90":35,"91":8,"92":18,"93":28,"94":42,"101":21,"103":13,"105":8,"108":979,"109":508}},"geometry":{"type":"Point","coordinates":[-73.99225932901606,40.70413312822735]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047002100","ancestry":{"1":3798,"4":10,"5":169,"6":9,"13":9,"16":31,"18":38,"22":2,"23":62,"26":5,"31":49,"33":13,"34":46,"35":120,"36":338,"38":124,"39":23,"40":126,"41":5,"42":683,"44":52,"45":10,"46":45,"49":503,"50":9,"51":332,"53":5,"58":22,"61":164,"62":3,"63":7,"64":166,"65":44,"66":10,"67":26,"73":72,"79":45,"83":27,"89":133,"90":35,"91":8,"92":18,"93":28,"94":42,"101":21,"103":13,"105":8,"108":979,"109":508}},"geometry":{"type":"Point","coordinates":[-73.98651398456911,40.70317876425892]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047002200","ancestry":{"1":4774,"5":161,"6":103,"9":15,"11":18,"15":70,"16":16,"26":7,"36":40,"38":4,"42":48,"49":198,"50":8,"51":126,"53":6,"61":14,"64":144,"66":7,"73":8,"87":8,"89":9,"92":20,"94":37,"99":8,"101":14,"102":18,"105":9,"108":3534,"109":554}},"geometry":{"type":"Point","coordinates":[-74.02169319380354,40.64345854790981]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047002901","ancestry":{"1":3409,"5":26,"51":117,"61":11,"73":188,"76":61,"79":90,"80":9,"87":28,"94":161,"101":47,"102":20,"103":77,"104":12,"105":27,"108":2773,"109":277}},"geometry":{"type":"Point","coordinates":[-73.97809591074552,40.6949933078964]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003100","ancestry":{"1":2745,"3":3,"5":125,"6":70,"7":64,"10":6,"22":4,"23":5,"31":7,"34":10,"35":23,"36":61,"38":80,"40":4,"41":4,"42":85,"45":45,"46":16,"48":13,"49":173,"51":201,"59":18,"61":37,"64":30,"66":5,"67":16,"73":169,"75":41,"76":5,"77":4,"78":11,"79":55,"83":4,"87":49,"88":6,"89":39,"92":11,"93":9,"94":193,"96":5,"99":5,"101":40,"102":114,"103":11,"105":13,"106":20,"108":1499,"109":282}},"geometry":{"type":"Point","coordinates":[-73.977699783354,40.691616395682736]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003400","ancestry":{"1":3127,"5":103,"6":681,"7":76,"10":175,"11":15,"12":384,"13":13,"15":18,"16":14,"19":16,"34":12,"35":39,"36":126,"38":7,"42":172,"44":170,"49":229,"51":350,"54":19,"55":31,"59":105,"61":86,"64":153,"66":18,"67":30,"89":14,"92":13,"94":2,"97":2,"108":825,"109":382}},"geometry":{"type":"Point","coordinates":[-74.0336420548555,40.63940991199817]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003700","ancestry":{"1":882,"5":88,"6":82,"10":13,"12":8,"14":37,"15":24,"19":4,"20":4,"21":7,"22":6,"23":6,"26":8,"34":8,"35":18,"36":43,"38":26,"40":9,"42":86,"49":58,"51":92,"53":13,"56":3,"59":3,"61":11,"62":3,"64":45,"67":9,"70":4,"73":9,"76":9,"89":3,"91":8,"92":8,"93":13,"94":17,"101":9,"105":8,"108":392,"109":59}},"geometry":{"type":"Point","coordinates":[-73.98470093086938,40.689392546497174]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047003900","ancestry":{"1":2498,"3":34,"5":216,"6":26,"10":18,"11":8,"16":7,"19":23,"23":65,"26":23,"29":12,"34":7,"35":42,"36":146,"38":139,"39":8,"40":69,"42":159,"44":8,"46":8,"49":173,"50":7,"51":165,"52":15,"59":8,"61":50,"64":16,"66":14,"67":60,"68":15,"73":128,"79":10,"84":71,"87":47,"89":11,"92":32,"94":72,"102":62,"104":10,"108":1072,"109":261}},"geometry":{"type":"Point","coordinates":[-73.98082401682795,40.68490131368309]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005014100","ancestry":{"1":4620,"5":48,"22":7,"42":27,"49":29,"51":5,"64":17,"73":433,"87":433,"89":9,"94":204,"97":44,"99":32,"101":85,"102":7,"105":36,"108":3697,"109":283}},"geometry":{"type":"Point","coordinates":[-73.91229499910047,40.82376530950567]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033000","ancestry":{"1":5744,"3":858,"5":81,"6":122,"11":122,"35":23,"40":62,"44":21,"45":24,"49":13,"51":143,"63":25,"64":25,"70":11,"73":28,"87":9,"88":19,"91":81,"94":238,"101":131,"102":77,"103":30,"108":3718,"109":486}},"geometry":{"type":"Point","coordinates":[-73.86602552483029,40.861656158432716]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021100","ancestry":{"1":5721,"5":108,"49":29,"73":671,"76":33,"79":78,"87":374,"88":203,"94":319,"96":34,"102":150,"103":45,"105":90,"108":4339,"109":380}},"geometry":{"type":"Point","coordinates":[-73.92350337865673,40.84043366770768]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005004600","ancestry":{"1":1659,"36":6,"42":3,"45":45,"49":40,"51":34,"73":7,"87":7,"94":19,"102":11,"103":8,"108":1520,"109":114}},"geometry":{"type":"Point","coordinates":[-73.86917755455191,40.82241894711743]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005902","ancestry":{"1":2856,"5":27,"6":27,"14":27,"42":37,"49":21,"51":11,"61":14,"64":14,"67":13,"73":9,"87":9,"94":344,"99":78,"101":9,"103":213,"105":44,"108":2118,"109":398}},"geometry":{"type":"Point","coordinates":[-73.92341941303727,40.824129915367365]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028100","ancestry":{"1":3940,"5":152,"16":45,"19":23,"24":44,"35":33,"36":54,"38":24,"39":11,"40":9,"42":157,"45":7,"46":43,"48":76,"49":248,"50":25,"51":145,"53":28,"58":9,"61":160,"63":22,"64":347,"73":34,"87":34,"92":40,"93":10,"94":193,"101":159,"102":25,"105":9,"108":2141,"109":323}},"geometry":{"type":"Point","coordinates":[-73.89064672006297,40.883789307018915]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022701","ancestry":{"1":5981,"3":44,"5":82,"44":24,"51":38,"73":523,"87":376,"88":193,"94":205,"97":33,"101":31,"102":54,"103":21,"105":66,"108":4607,"109":540}},"geometry":{"type":"Point","coordinates":[-73.91101474906036,40.846849851450585]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005031600","ancestry":{"1":1996,"3":106,"5":25,"6":51,"14":51,"31":26,"35":2,"36":15,"40":10,"42":76,"44":44,"46":29,"49":11,"51":383,"61":41,"64":34,"73":19,"79":19,"94":170,"99":6,"102":164,"103":6,"107":13,"108":1003,"109":126}},"geometry":{"type":"Point","coordinates":[-73.84872466181676,40.8619716942302]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005019500","ancestry":{"1":7593,"5":101,"42":39,"49":16,"51":16,"62":21,"73":593,"76":309,"79":26,"87":223,"88":55,"94":474,"97":15,"99":25,"101":89,"102":340,"104":5,"108":5779,"109":730}},"geometry":{"type":"Point","coordinates":[-73.92252348360918,40.830477471686855]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028600","ancestry":{"1":1225,"3":96,"5":19,"23":7,"36":13,"38":8,"40":5,"42":12,"49":66,"51":339,"61":52,"92":74,"94":26,"102":26,"108":531,"109":239}},"geometry":{"type":"Point","coordinates":[-73.84777516413686,40.84918491695499]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016400","ancestry":{"1":907,"5":28,"34":5,"36":11,"40":4,"42":59,"46":9,"49":87,"51":345,"61":8,"62":10,"67":5,"68":1,"69":5,"89":4,"92":5,"94":45,"101":13,"102":2,"105":30,"108":397,"109":36}},"geometry":{"type":"Point","coordinates":[-73.82484696546116,40.83220251338824]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036800","ancestry":{"1":2364,"5":97,"45":16,"49":33,"51":18,"62":7,"73":195,"76":24,"79":113,"87":58,"94":964,"99":34,"101":92,"102":645,"103":13,"105":187,"108":1001,"109":109}},"geometry":{"type":"Point","coordinates":[-73.85594203883952,40.875307173669846]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006000","ancestry":{"1":1192,"5":74,"6":16,"11":16,"34":5,"42":7,"51":6,"59":4,"73":27,"79":14,"87":13,"94":14,"101":14,"108":1059,"109":48}},"geometry":{"type":"Point","coordinates":[-73.87797047603809,40.837707275639886]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037600","ancestry":{"1":2477,"5":196,"45":47,"51":6,"62":10,"73":9,"76":9,"94":353,"99":11,"102":342,"108":1730,"109":162}},"geometry":{"type":"Point","coordinates":[-73.86920495831536,40.87453865088672]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023301","ancestry":{"1":4378,"5":89,"6":23,"12":23,"40":10,"51":6,"73":383,"76":175,"81":23,"87":95,"88":113,"94":63,"99":32,"102":31,"108":3542,"109":338}},"geometry":{"type":"Point","coordinates":[-73.90875427642024,40.84956124717568]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005004001","ancestry":{"1":1550,"2":13,"5":53,"6":238,"14":139,"15":99,"16":17,"36":7,"40":7,"42":6,"45":224,"51":69,"67":19,"94":26,"99":18,"103":8,"108":894,"109":56}},"geometry":{"type":"Point","coordinates":[-73.85833548161936,40.82827191338203]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006900","ancestry":{"1":7769,"5":32,"26":30,"34":16,"36":34,"42":16,"45":13,"49":16,"51":176,"73":1078,"79":15,"80":267,"87":586,"88":250,"94":78,"99":19,"101":33,"102":11,"105":15,"108":6225,"109":323}},"geometry":{"type":"Point","coordinates":[-73.91575673243635,40.8218665599606]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005003100","ancestry":{"1":1538,"5":11,"36":26,"49":4,"51":3,"73":206,"79":39,"87":30,"88":137,"108":1197,"109":128}},"geometry":{"type":"Point","coordinates":[-73.90569010106134,40.80989882003664]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039000","ancestry":{"1":3265,"5":211,"6":13,"15":13,"45":51,"49":63,"51":52,"73":364,"76":98,"79":79,"87":187,"94":782,"99":37,"101":46,"102":628,"103":11,"105":60,"108":1551,"109":348}},"geometry":{"type":"Point","coordinates":[-73.86076005639713,40.88123522850446]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042800","ancestry":{"1":2043,"5":52,"16":8,"40":8,"42":19,"45":2,"49":24,"51":32,"64":18,"73":99,"76":19,"79":8,"80":41,"87":31,"94":1022,"95":9,"99":6,"102":633,"103":24,"105":350,"108":801,"109":104}},"geometry":{"type":"Point","coordinates":[-73.84570302962905,40.894509374634914]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038800","ancestry":{"1":2612,"5":155,"23":51,"38":23,"49":1,"70":5,"73":51,"87":51,"94":1204,"102":980,"105":177,"106":47,"108":1239,"109":140}},"geometry":{"type":"Point","coordinates":[-73.85536652126765,40.87959819202969]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005600","ancestry":{"1":2391,"5":31,"6":8,"7":4,"11":4,"45":100,"61":5,"73":14,"87":12,"88":4,"94":117,"99":20,"101":7,"102":80,"103":10,"108":1900,"109":259}},"geometry":{"type":"Point","coordinates":[-73.87907572663481,40.83261183512381]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005014500","ancestry":{"1":6757,"5":252,"44":25,"49":21,"51":184,"73":594,"76":66,"87":280,"88":299,"94":317,"95":7,"101":9,"102":179,"103":122,"108":5100,"109":600}},"geometry":{"type":"Point","coordinates":[-73.90703152094946,40.831511005402376]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017700","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.96892136095286,40.66160549461951]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017800","ancestry":{"1":3090,"2":24,"5":136,"6":69,"7":32,"10":5,"13":17,"14":15,"16":6,"42":3,"44":36,"49":31,"51":260,"53":19,"59":3,"61":28,"64":82,"73":5,"87":5,"90":5,"92":5,"94":5,"105":5,"107":4,"108":1674,"109":792}},"geometry":{"type":"Point","coordinates":[-74.00472335526429,40.60696865877801]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017900","ancestry":{"1":4262,"5":59,"6":8,"8":8,"19":9,"29":11,"35":48,"36":59,"38":24,"39":12,"42":123,"44":5,"45":16,"48":5,"49":163,"50":12,"51":90,"53":12,"55":8,"58":21,"59":21,"61":34,"62":18,"63":11,"64":83,"67":39,"68":8,"70":9,"73":134,"79":86,"87":48,"89":19,"90":22,"91":13,"92":10,"94":616,"96":131,"99":26,"101":47,"102":172,"103":199,"105":58,"108":2524,"109":440}},"geometry":{"type":"Point","coordinates":[-73.97133389450151,40.68424537376976]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018000","ancestry":{"1":3253,"5":229,"6":296,"9":42,"12":43,"14":211,"29":17,"37":16,"38":37,"40":30,"42":26,"49":28,"51":694,"61":17,"63":21,"64":63,"66":14,"70":28,"92":62,"107":17,"108":1466,"109":342}},"geometry":{"type":"Point","coordinates":[-74.0071511256626,40.60830007001967]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018200","ancestry":{"1":3218,"3":35,"5":311,"42":14,"44":6,"46":15,"49":47,"51":414,"59":7,"61":26,"64":9,"92":67,"94":15,"102":15,"108":1762,"109":752}},"geometry":{"type":"Point","coordinates":[-74.00268128140384,40.61245971351595]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018300","ancestry":{"1":2710,"2":8,"5":22,"18":25,"19":21,"23":39,"26":10,"29":33,"33":9,"34":74,"35":95,"36":221,"38":68,"40":305,"41":21,"42":186,"44":12,"45":62,"46":42,"49":306,"51":240,"53":6,"59":25,"61":123,"62":7,"63":7,"64":81,"66":10,"67":97,"73":31,"76":19,"87":12,"89":40,"94":215,"95":9,"96":114,"102":85,"103":6,"105":40,"107":20,"108":1211,"109":47}},"geometry":{"type":"Point","coordinates":[-73.97147790393005,40.69137601014532]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018501","ancestry":{"1":4496,"5":23,"36":40,"40":12,"41":11,"42":45,"45":6,"49":50,"51":81,"61":28,"67":15,"73":38,"79":21,"87":17,"89":6,"90":5,"91":12,"94":325,"99":17,"101":27,"102":11,"103":220,"105":50,"108":3560,"109":436}},"geometry":{"type":"Point","coordinates":[-73.97415669300399,40.69478661301239]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018600","ancestry":{"1":2162,"3":51,"5":106,"18":5,"19":12,"23":5,"29":29,"35":5,"36":20,"42":61,"44":44,"45":19,"48":5,"49":59,"51":693,"62":128,"64":9,"89":4,"92":10,"94":23,"102":23,"108":732,"109":318}},"geometry":{"type":"Point","coordinates":[-74.00510633937182,40.6156438860357]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047018700","ancestry":{"1":1584,"5":39,"6":62,"15":62,"19":5,"21":4,"23":15,"24":17,"35":36,"36":61,"38":24,"40":5,"42":52,"45":16,"49":158,"51":76,"59":24,"61":5,"63":18,"64":31,"65":17,"66":21,"67":25,"73":9,"83":4,"87":5,"89":77,"94":112,"99":13,"101":61,"102":3,"103":6,"104":8,"105":24,"107":5,"108":870,"109":110}},"geometry":{"type":"Point","coordinates":[-73.97064045227147,40.694657850361004]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019000","ancestry":{"1":5310,"5":195,"6":209,"7":113,"12":90,"13":6,"23":6,"32":10,"38":1,"42":117,"49":124,"51":796,"61":376,"64":87,"67":15,"92":57,"93":7,"94":8,"105":8,"108":3542,"109":207}},"geometry":{"type":"Point","coordinates":[-74.00038572052976,40.62103806262556]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019100","ancestry":{"1":2861,"5":43,"6":17,"15":17,"16":10,"20":14,"23":6,"31":38,"34":32,"35":42,"36":105,"38":18,"40":76,"42":109,"44":20,"48":90,"49":208,"51":174,"53":15,"58":3,"59":15,"61":17,"62":5,"63":19,"64":14,"67":46,"73":37,"79":11,"83":26,"87":11,"89":10,"92":35,"94":13,"102":13,"108":1786,"109":338}},"geometry":{"type":"Point","coordinates":[-73.96442781476573,40.69524270333753]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019200","ancestry":{"1":3264,"5":68,"6":36,"7":36,"34":5,"35":79,"36":42,"38":27,"40":7,"41":7,"42":5,"45":2,"46":548,"49":23,"50":105,"51":292,"61":57,"63":36,"64":35,"91":14,"107":10,"108":1906,"109":215}},"geometry":{"type":"Point","coordinates":[-73.99892815294018,40.62845846539846]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019600","ancestry":{"1":5361,"3":126,"5":313,"6":43,"10":43,"36":44,"38":4,"39":8,"40":11,"42":34,"44":112,"46":30,"49":164,"51":1053,"59":35,"61":133,"64":23,"67":20,"89":4,"92":8,"94":3,"101":3,"108":3561,"109":130}},"geometry":{"type":"Point","coordinates":[-74.00418502999241,40.623423430831316]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019700","ancestry":{"1":3348,"5":47,"16":5,"19":23,"22":15,"23":84,"26":19,"29":10,"31":8,"33":19,"34":7,"35":22,"36":310,"38":32,"40":57,"41":8,"42":280,"44":8,"45":17,"46":19,"49":319,"51":245,"57":9,"58":4,"59":23,"61":39,"62":10,"63":8,"64":98,"66":9,"67":52,"70":7,"73":43,"84":20,"87":43,"89":26,"90":19,"91":20,"94":219,"96":10,"99":27,"101":122,"102":18,"103":25,"105":17,"108":1669,"109":306}},"geometry":{"type":"Point","coordinates":[-73.96674677504382,40.68800224508454]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019800","ancestry":{"1":1903,"5":116,"6":216,"7":190,"10":13,"12":9,"14":4,"16":5,"24":8,"29":7,"33":8,"36":7,"40":17,"42":13,"44":7,"49":122,"51":762,"58":7,"59":25,"61":40,"62":13,"64":6,"65":7,"67":7,"70":6,"89":15,"92":6,"93":8,"108":523,"109":208}},"geometry":{"type":"Point","coordinates":[-74.00661762698624,40.61935937765125]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047019900","ancestry":{"1":2875,"3":9,"5":42,"6":30,"7":4,"10":9,"15":17,"21":10,"23":15,"26":25,"31":31,"35":46,"36":163,"38":16,"40":14,"41":7,"42":241,"44":35,"46":7,"48":8,"49":293,"51":164,"58":8,"59":65,"61":73,"62":16,"64":46,"66":8,"67":12,"70":9,"73":243,"74":49,"75":29,"77":36,"79":11,"83":68,"87":50,"89":16,"92":9,"94":224,"99":10,"101":179,"103":35,"108":1100,"109":455}},"geometry":{"type":"Point","coordinates":[-73.9669265049523,40.684032907356226]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020000","ancestry":{"1":2182,"5":87,"6":129,"7":96,"13":4,"14":29,"23":8,"28":4,"33":15,"36":23,"41":10,"42":43,"44":62,"49":100,"51":510,"53":8,"59":4,"64":23,"90":4,"92":26,"108":1144,"109":180}},"geometry":{"type":"Point","coordinates":[-74.00881965275813,40.62068903395499]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020300","ancestry":{"1":1624,"5":20,"6":4,"10":4,"21":12,"22":20,"23":10,"29":17,"31":15,"34":7,"35":34,"36":86,"38":49,"39":10,"40":20,"42":86,"44":3,"45":10,"46":8,"49":259,"51":114,"53":11,"59":28,"61":62,"62":12,"64":47,"67":26,"70":5,"73":11,"87":11,"89":40,"93":4,"94":128,"97":15,"99":11,"101":70,"102":4,"103":9,"105":9,"106":10,"108":714,"109":142}},"geometry":{"type":"Point","coordinates":[-73.96481230336695,40.679956754361605]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020400","ancestry":{"1":1849,"3":44,"5":234,"6":145,"10":36,"12":89,"13":15,"14":20,"33":4,"36":6,"39":17,"40":17,"42":68,"44":92,"49":282,"50":48,"51":509,"59":35,"61":58,"64":18,"66":7,"67":4,"73":10,"88":10,"89":5,"91":20,"92":4,"108":466,"109":160}},"geometry":{"type":"Point","coordinates":[-74.01322386852944,40.6233502284107]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020600","ancestry":{"1":2611,"3":154,"5":41,"6":88,"7":4,"10":38,"12":11,"14":20,"15":15,"19":5,"31":5,"33":5,"34":2,"36":24,"38":1,"40":2,"42":47,"44":141,"45":59,"46":16,"49":224,"51":445,"59":38,"61":9,"64":37,"67":29,"70":8,"89":29,"94":5,"105":5,"108":914,"109":522}},"geometry":{"type":"Point","coordinates":[-74.01545084538166,40.6248806942945]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020700","ancestry":{"1":4402,"3":16,"5":490,"6":13,"12":13,"19":27,"22":12,"23":15,"31":26,"32":34,"34":74,"35":199,"36":201,"38":69,"40":74,"41":37,"42":391,"44":56,"46":78,"47":14,"49":312,"50":13,"51":94,"57":26,"59":14,"61":170,"64":180,"67":35,"71":13,"73":35,"87":35,"89":32,"90":13,"93":72,"94":429,"96":22,"97":22,"101":170,"102":57,"103":34,"105":124,"108":1926,"109":363}},"geometry":{"type":"Point","coordinates":[-73.96661238896786,40.674954685989526]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026300","ancestry":{"1":6412,"5":14,"16":8,"22":33,"36":28,"40":17,"42":21,"46":40,"49":24,"51":54,"61":36,"64":69,"67":23,"73":319,"75":203,"79":80,"87":26,"88":10,"94":358,"99":115,"102":139,"105":104,"108":5193,"109":353}},"geometry":{"type":"Point","coordinates":[-73.9044667183761,40.8647667657671]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005029700","ancestry":{"1":3971,"5":106,"16":51,"18":27,"19":151,"21":8,"22":11,"26":29,"29":6,"31":9,"32":8,"34":74,"35":73,"36":163,"38":119,"39":11,"40":32,"42":418,"44":11,"45":53,"46":62,"48":78,"49":327,"50":10,"51":578,"52":10,"53":14,"60":6,"61":173,"63":22,"64":261,"66":8,"67":27,"70":9,"89":17,"90":8,"91":11,"92":8,"94":46,"95":22,"101":7,"103":17,"108":1214,"109":794}},"geometry":{"type":"Point","coordinates":[-73.91184142505725,40.88492656017584]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020601","ancestry":{"1":2758,"5":7,"6":76,"15":76,"42":30,"45":66,"49":29,"51":36,"73":74,"76":31,"87":43,"94":106,"97":32,"99":25,"101":22,"102":7,"103":7,"105":38,"108":2295,"109":161}},"geometry":{"type":"Point","coordinates":[-73.85054043003275,40.836647574705935]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005043100","ancestry":{"1":10419,"3":46,"5":400,"24":35,"31":14,"36":6,"40":2,"42":2,"49":37,"51":280,"64":4,"73":429,"76":204,"81":23,"83":72,"87":23,"88":130,"94":1291,"97":488,"101":21,"102":563,"103":139,"105":101,"108":7741,"109":438}},"geometry":{"type":"Point","coordinates":[-73.87663852908058,40.88191797610423]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042000","ancestry":{"1":3397,"5":58,"19":8,"32":27,"34":31,"45":100,"46":27,"49":35,"51":41,"64":8,"73":313,"76":74,"79":14,"87":225,"94":1152,"96":10,"99":39,"101":14,"102":777,"103":17,"105":312,"108":1530,"109":198}},"geometry":{"type":"Point","coordinates":[-73.85985561867395,40.89302614181619]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005015800","ancestry":{"1":1233,"5":27,"6":18,"7":18,"30":10,"31":9,"36":10,"42":102,"44":68,"45":22,"49":93,"51":320,"53":9,"61":20,"67":7,"69":5,"73":14,"76":14,"89":1,"94":55,"102":28,"105":27,"107":13,"108":604,"109":67}},"geometry":{"type":"Point","coordinates":[-73.81861825013473,40.82486725556282]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007400","ancestry":{"1":3724,"5":20,"34":90,"42":106,"46":7,"49":29,"73":56,"76":11,"87":35,"88":10,"94":179,"96":7,"98":7,"99":16,"102":50,"105":99,"108":3016,"109":394}},"geometry":{"type":"Point","coordinates":[-73.85286085221747,40.81947347672558]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028800","ancestry":{"1":3496,"3":375,"5":89,"19":8,"36":67,"40":1,"42":198,"44":10,"46":9,"49":490,"51":1361,"58":6,"61":17,"64":18,"92":26,"94":64,"99":64,"108":920,"109":262}},"geometry":{"type":"Point","coordinates":[-73.85147215964767,40.8542921681792]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022902","ancestry":{"1":3262,"5":20,"36":21,"42":100,"49":100,"73":202,"76":59,"87":56,"88":87,"94":223,"102":223,"108":2453,"109":258}},"geometry":{"type":"Point","coordinates":[-73.9071528973723,40.84379521438333]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005013300","ancestry":{"1":7067,"5":409,"36":67,"45":84,"73":337,"87":32,"88":305,"94":135,"99":55,"102":13,"103":15,"105":52,"108":5872,"109":186}},"geometry":{"type":"Point","coordinates":[-73.90348499666595,40.82282256125346]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005017100","ancestry":{"1":1,"108":1}},"geometry":{"type":"Point","coordinates":[-73.90750408411927,40.84042308908117]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005045101","ancestry":{"1":1408,"3":10,"5":73,"19":3,"26":21,"32":8,"34":6,"36":28,"39":5,"41":20,"42":70,"49":815,"50":26,"51":170,"55":10,"61":15,"64":37,"67":9,"70":7,"91":57,"94":6,"102":6,"108":188,"109":75}},"geometry":{"type":"Point","coordinates":[-73.86431368985882,40.89745447208707]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005008300","ancestry":{"1":5974,"5":155,"42":33,"49":6,"51":15,"61":6,"67":18,"73":26,"76":3,"87":23,"92":15,"94":26,"99":14,"105":12,"108":5396,"109":499}},"geometry":{"type":"Point","coordinates":[-73.90184002901059,40.81367782260842]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040400","ancestry":{"1":2872,"5":9,"45":93,"49":72,"51":22,"73":145,"76":31,"79":48,"87":66,"93":23,"94":1452,"101":54,"102":1061,"105":337,"108":1172,"109":130}},"geometry":{"type":"Point","coordinates":[-73.85134866976298,40.886169107532616]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005046000","ancestry":{"1":2608,"3":3,"5":43,"33":7,"36":20,"42":10,"45":71,"49":6,"73":137,"79":96,"87":41,"94":904,"96":3,"99":3,"101":1,"102":580,"104":7,"105":310,"108":1273,"109":194}},"geometry":{"type":"Point","coordinates":[-73.84264806738418,40.882443850819826]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005025200","ancestry":{"1":2549,"5":34,"19":5,"36":10,"40":22,"42":69,"49":165,"50":5,"51":764,"64":5,"73":58,"75":19,"76":11,"87":28,"92":8,"94":22,"102":22,"107":208,"108":1293,"109":166}},"geometry":{"type":"Point","coordinates":[-73.85496630349886,40.847131988123905]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023501","ancestry":{"1":3514,"2":19,"5":21,"36":6,"42":6,"49":26,"73":66,"76":35,"87":10,"88":21,"94":57,"97":57,"108":3197,"109":169}},"geometry":{"type":"Point","coordinates":[-73.9045718682394,40.85214713641278]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036501","ancestry":{"1":3713,"5":314,"42":32,"73":386,"76":38,"87":278,"88":70,"94":86,"96":10,"99":6,"101":30,"102":40,"108":2960,"109":203}},"geometry":{"type":"Point","coordinates":[-73.8857768592809,40.84540828254148]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021601","ancestry":{"1":3970,"3":101,"5":131,"19":8,"26":18,"35":7,"36":1,"42":113,"44":1,"45":39,"46":109,"49":37,"51":64,"61":46,"70":7,"73":170,"76":9,"79":19,"87":142,"94":177,"99":110,"102":33,"103":24,"105":10,"108":3101,"109":121}},"geometry":{"type":"Point","coordinates":[-73.8648221153902,40.83753860674776]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040304","ancestry":{"1":3932,"3":70,"5":52,"6":51,"14":51,"35":13,"42":11,"49":13,"51":28,"61":5,"89":6,"94":271,"102":99,"105":172,"107":25,"108":3005,"109":448}},"geometry":{"type":"Point","coordinates":[-73.89518728249028,40.867669950151935]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022800","ancestry":{"1":6156,"3":304,"5":92,"6":39,"11":39,"14":39,"36":15,"42":91,"46":13,"49":92,"50":13,"51":161,"55":16,"61":15,"62":14,"64":59,"73":291,"74":7,"76":64,"79":137,"87":83,"90":13,"92":13,"94":278,"102":251,"105":27,"108":4671,"109":144}},"geometry":{"type":"Point","coordinates":[-73.86353632768385,40.853489635706985]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005003800","ancestry":{"1":1303,"23":5,"45":37,"49":8,"51":50,"73":215,"76":106,"78":32,"87":65,"88":12,"94":83,"102":22,"103":26,"105":35,"108":894,"109":129}},"geometry":{"type":"Point","coordinates":[-73.86334346753732,40.82029461146446]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020400","ancestry":{"1":3210,"5":71,"23":38,"42":38,"45":109,"46":44,"49":11,"51":157,"64":16,"94":206,"99":19,"101":32,"105":155,"108":2672,"109":109}},"geometry":{"type":"Point","coordinates":[-73.85085674865329,40.840865876440674]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005003300","ancestry":{"1":3852,"5":135,"49":17,"51":13,"73":60,"87":60,"94":39,"102":21,"103":12,"105":6,"108":3449,"109":192}},"geometry":{"type":"Point","coordinates":[-73.91192459341109,40.80822258852028]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037100","ancestry":{"1":3767,"5":2,"36":16,"40":8,"42":7,"45":24,"48":49,"49":9,"51":184,"67":25,"73":425,"76":101,"87":61,"88":281,"94":94,"99":87,"102":7,"108":2534,"109":597}},"geometry":{"type":"Point","coordinates":[-73.88737809098248,40.84722039591914]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005013100","ancestry":{"1":4906,"5":2,"22":2,"31":1,"34":6,"42":3,"45":13,"49":30,"51":63,"59":2,"61":1,"62":10,"73":479,"76":62,"79":136,"87":206,"88":75,"94":96,"97":9,"99":26,"101":27,"102":8,"105":17,"106":9,"108":4042,"109":294}},"geometry":{"type":"Point","coordinates":[-73.897881805715,40.825954025257545]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020800","ancestry":{"1":3153,"3":60,"5":89,"6":112,"7":16,"10":53,"11":30,"15":13,"23":25,"33":11,"36":20,"40":88,"42":32,"44":173,"49":365,"51":645,"53":4,"59":7,"61":17,"64":24,"67":17,"94":9,"102":9,"108":1605,"109":244}},"geometry":{"type":"Point","coordinates":[-74.00976758347512,40.62597610056526]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021000","ancestry":{"1":5100,"3":91,"5":226,"6":289,"7":132,"10":15,"11":17,"12":22,"13":43,"14":35,"15":25,"32":18,"36":48,"41":17,"42":63,"44":70,"49":87,"51":760,"59":9,"61":95,"63":82,"64":46,"89":25,"91":62,"108":3296,"109":272}},"geometry":{"type":"Point","coordinates":[-74.00815614797614,40.627626067902725]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021400","ancestry":{"1":2599,"5":103,"6":31,"7":31,"35":5,"38":5,"40":9,"42":14,"46":241,"48":4,"50":70,"51":135,"59":41,"61":54,"63":7,"64":65,"69":6,"71":1,"108":1730,"109":312}},"geometry":{"type":"Point","coordinates":[-74.00318166848967,40.63161038607795]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021800","ancestry":{"1":4630,"5":93,"6":35,"15":35,"31":58,"32":66,"35":200,"38":277,"42":12,"46":903,"50":56,"51":56,"59":8,"61":453,"63":5,"64":56,"89":12,"90":1,"108":2393,"109":344}},"geometry":{"type":"Point","coordinates":[-73.99782292422618,40.634354122371214]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047021900","ancestry":{"1":3855,"5":193,"6":11,"7":11,"19":8,"23":17,"31":5,"34":13,"36":73,"38":44,"40":50,"42":111,"45":42,"49":143,"51":137,"59":7,"61":24,"64":63,"66":14,"67":34,"73":60,"87":60,"92":9,"94":1286,"96":80,"97":15,"99":43,"101":109,"102":637,"103":216,"105":186,"108":1505,"109":367}},"geometry":{"type":"Point","coordinates":[-73.95525923565043,40.67197385637628]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081019400","ancestry":{"1":2512,"5":92,"36":14,"40":5,"45":355,"62":6,"67":5,"73":90,"78":75,"87":15,"88":10,"94":706,"96":5,"99":55,"100":18,"101":107,"102":155,"103":229,"104":7,"105":130,"108":973,"109":376}},"geometry":{"type":"Point","coordinates":[-73.80347591444537,40.68591996149648]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081020500","ancestry":{"1":1023,"16":11,"23":2,"36":5,"40":5,"42":8,"45":128,"48":4,"49":26,"51":20,"61":28,"66":5,"91":21,"108":826,"109":82}},"geometry":{"type":"Point","coordinates":[-73.92181092271353,40.7303818948626]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081095400","ancestry":{"1":5067,"2":67,"5":182,"6":6,"11":6,"23":5,"26":4,"36":55,"40":32,"41":12,"42":211,"45":356,"49":191,"51":152,"53":45,"61":68,"64":39,"66":20,"67":7,"73":262,"76":19,"79":166,"87":77,"89":12,"92":10,"94":667,"96":147,"99":83,"102":252,"103":81,"105":104,"108":2503,"109":637}},"geometry":{"type":"Point","coordinates":[-73.7995227738366,40.592907002245155]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081127700","ancestry":{"1":3409,"5":8,"6":34,"7":8,"12":9,"13":17,"16":7,"19":35,"29":10,"35":64,"36":26,"38":212,"40":62,"42":24,"44":72,"46":70,"49":151,"50":25,"51":189,"53":9,"55":145,"61":103,"62":8,"63":67,"64":739,"70":40,"90":9,"92":8,"94":9,"105":9,"108":1367,"109":264}},"geometry":{"type":"Point","coordinates":[-73.78339322594768,40.7244036062356]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081042400","ancestry":{"1":2569,"5":25,"40":9,"45":20,"51":9,"66":5,"67":6,"73":26,"79":1,"87":25,"94":496,"96":2,"97":17,"101":62,"102":334,"103":55,"105":45,"106":2,"108":1960,"109":114}},"geometry":{"type":"Point","coordinates":[-73.77226845508102,40.69539228689025]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081062200","ancestry":{"1":1668,"5":50,"34":6,"40":11,"42":11,"45":23,"49":18,"73":12,"87":12,"94":770,"96":24,"99":49,"101":264,"102":363,"103":17,"105":53,"108":810,"109":109}},"geometry":{"type":"Point","coordinates":[-73.72888038013076,40.69195003792195]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081079702","ancestry":{"1":4604,"5":16,"22":20,"44":40,"49":17,"51":25,"61":58,"64":18,"94":36,"103":28,"105":8,"108":4119,"109":303}},"geometry":{"type":"Point","coordinates":[-73.8293897493768,40.75136169695148]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081025400","ancestry":{"1":12663,"5":288,"36":4,"45":377,"46":4,"49":30,"73":315,"74":10,"76":154,"79":43,"87":108,"94":1179,"99":306,"101":195,"102":485,"103":37,"105":156,"108":10326,"109":313}},"geometry":{"type":"Point","coordinates":[-73.7944321892211,40.69667129277374]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081030600","ancestry":{"1":4155,"5":33,"36":59,"42":29,"45":96,"49":2,"51":35,"73":438,"79":378,"84":2,"87":58,"89":1,"94":1446,"96":58,"97":136,"99":43,"101":150,"102":685,"103":201,"105":200,"108":1897,"109":300}},"geometry":{"type":"Point","coordinates":[-73.78038197346126,40.66489117968286]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015802","ancestry":{"1":4257,"5":94,"36":38,"42":25,"45":915,"49":17,"51":28,"92":17,"94":257,"102":28,"103":100,"105":129,"108":2616,"109":281}},"geometry":{"type":"Point","coordinates":[-73.81963599913605,40.68754544158841]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018102","ancestry":{"1":3511,"3":27,"5":44,"16":105,"22":23,"24":33,"26":19,"29":19,"31":15,"32":8,"35":21,"36":26,"38":28,"40":20,"42":162,"44":29,"46":60,"49":425,"51":321,"53":8,"56":15,"61":119,"63":181,"64":118,"66":27,"89":8,"91":148,"92":90,"93":17,"94":90,"102":63,"103":27,"107":17,"108":1364,"109":478}},"geometry":{"type":"Point","coordinates":[-73.92226962859293,40.74429179162403]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081012500","ancestry":{"1":1831,"3":65,"5":75,"6":14,"11":9,"15":5,"19":4,"23":63,"24":15,"29":31,"31":4,"33":6,"36":17,"38":9,"40":13,"42":72,"44":268,"45":24,"46":4,"49":31,"51":185,"58":4,"59":10,"61":29,"63":7,"64":23,"66":20,"67":14,"73":18,"84":7,"88":11,"90":4,"91":26,"93":10,"94":23,"102":19,"105":4,"108":842,"109":192}},"geometry":{"type":"Point","coordinates":[-73.91566958336485,40.770926732404156]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081065703","ancestry":{"1":2858,"3":62,"5":496,"19":13,"24":68,"29":9,"31":4,"33":8,"34":10,"35":24,"36":38,"38":28,"40":28,"41":4,"42":265,"44":50,"46":82,"49":467,"51":811,"61":155,"62":9,"63":47,"66":8,"67":9,"71":9,"89":3,"107":34,"108":284,"109":270}},"geometry":{"type":"Point","coordinates":[-73.87529773121942,40.71511864339595]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081008500","ancestry":{"1":1173,"5":168,"6":134,"10":21,"11":68,"15":45,"22":34,"40":14,"42":35,"44":6,"49":59,"51":54,"61":17,"90":13,"94":6,"102":6,"108":482,"109":243}},"geometry":{"type":"Point","coordinates":[-73.94072215908494,40.760021628146426]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081026901","ancestry":{"1":4925,"5":76,"34":19,"38":19,"40":52,"41":8,"42":9,"49":56,"51":34,"61":62,"64":7,"92":8,"93":8,"108":4272,"109":414}},"geometry":{"type":"Point","coordinates":[-73.88221138782895,40.74687437448276]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081074900","ancestry":{"1":1628,"5":33,"6":46,"7":41,"12":5,"14":5,"19":20,"21":5,"23":6,"30":5,"31":5,"33":5,"35":28,"36":76,"37":5,"38":8,"40":45,"41":24,"42":136,"44":62,"45":6,"46":30,"48":5,"49":178,"50":12,"51":260,"59":3,"61":170,"63":85,"64":78,"68":5,"92":17,"108":477,"109":256}},"geometry":{"type":"Point","coordinates":[-73.84007536386764,40.71324987267964]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099802","ancestry":{"1":5258,"5":201,"21":39,"42":205,"44":3,"45":70,"49":298,"51":16,"52":33,"61":77,"64":384,"73":795,"75":338,"79":424,"87":16,"88":17,"92":69,"94":395,"97":18,"99":80,"102":239,"103":19,"105":55,"108":2644,"109":476}},"geometry":{"type":"Point","coordinates":[-73.75844373466387,40.59339520724717]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081035700","ancestry":{"1":3930,"5":201,"19":10,"22":53,"23":19,"31":25,"36":47,"38":15,"40":15,"42":49,"44":19,"45":27,"48":11,"49":30,"51":90,"53":11,"61":14,"62":19,"64":24,"67":10,"73":99,"87":99,"90":32,"92":7,"94":193,"99":7,"101":59,"102":113,"103":7,"105":7,"108":2686,"109":409}},"geometry":{"type":"Point","coordinates":[-73.87123991695137,40.768015444393846]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081006502","ancestry":{"1":3976,"2":25,"3":72,"5":48,"6":177,"7":49,"10":42,"15":86,"18":19,"19":8,"22":182,"23":16,"29":53,"31":9,"34":8,"36":110,"38":9,"40":76,"41":18,"42":218,"44":403,"46":40,"49":204,"51":517,"53":8,"56":22,"59":22,"61":104,"62":8,"63":28,"64":34,"66":8,"67":17,"70":15,"71":33,"73":30,"87":30,"90":8,"91":80,"92":43,"93":8,"94":16,"103":16,"108":1417,"109":437}},"geometry":{"type":"Point","coordinates":[-73.9151193984338,40.766795159490236]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081029400","ancestry":{"1":7478,"5":263,"6":11,"11":11,"36":26,"38":12,"42":23,"45":144,"51":7,"59":9,"73":351,"76":44,"87":307,"94":1349,"96":154,"99":161,"101":35,"102":699,"103":164,"105":175,"108":4832,"109":608}},"geometry":{"type":"Point","coordinates":[-73.78106227968192,40.6713216561639]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081061301","ancestry":{"1":5782,"3":120,"5":430,"19":8,"24":77,"26":17,"31":16,"35":25,"36":27,"38":60,"40":50,"41":16,"42":258,"44":20,"45":8,"49":364,"51":659,"55":42,"61":1233,"63":175,"64":72,"66":18,"68":71,"89":8,"91":4,"92":26,"93":39,"94":128,"104":101,"105":27,"107":108,"108":1854,"109":531}},"geometry":{"type":"Point","coordinates":[-73.89318202908294,40.70895875371306]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081072300","ancestry":{"1":1831,"2":14,"5":97,"6":31,"10":31,"16":20,"19":35,"21":4,"22":32,"23":4,"34":28,"35":8,"36":20,"38":76,"40":20,"42":104,"44":50,"46":17,"48":10,"49":123,"50":21,"51":73,"53":19,"59":32,"61":92,"63":53,"64":87,"66":14,"67":10,"73":57,"87":57,"90":5,"92":14,"94":10,"101":10,"107":9,"108":774,"109":125}},"geometry":{"type":"Point","coordinates":[-73.84774401822442,40.71623983021559]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081086900","ancestry":{"1":2072,"5":29,"39":4,"45":10,"46":15,"51":17,"94":5,"106":5,"108":1917,"109":79}},"geometry":{"type":"Point","coordinates":[-73.83380508986757,40.76532705937751]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081015801","ancestry":{"1":3709,"5":12,"6":16,"10":16,"16":4,"23":17,"44":8,"45":360,"49":7,"53":31,"94":369,"101":8,"102":311,"103":50,"108":2437,"109":483}},"geometry":{"type":"Point","coordinates":[-73.81233221193668,40.688882920604]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047101800","ancestry":{"1":1642,"5":76,"42":5,"45":42,"51":4,"61":5,"63":5,"64":16,"73":68,"79":29,"87":39,"94":650,"96":18,"99":70,"101":123,"102":342,"103":57,"105":84,"108":672,"109":140}},"geometry":{"type":"Point","coordinates":[-73.88569190333888,40.64234453475181]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047102000","ancestry":{"1":2164,"5":159,"6":118,"15":118,"19":9,"36":34,"38":18,"45":445,"51":6,"61":12,"64":3,"73":59,"87":59,"92":5,"94":1024,"96":48,"99":31,"101":234,"102":561,"103":149,"105":41,"108":452,"109":36}},"geometry":{"type":"Point","coordinates":[-73.8870181640369,40.638378473444384]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047102600","ancestry":{"1":2852,"5":370,"22":5,"35":6,"45":150,"51":5,"61":43,"66":3,"73":191,"76":7,"79":101,"87":83,"94":1549,"96":56,"97":6,"99":222,"101":783,"102":277,"103":179,"105":57,"106":2,"108":620,"109":115}},"geometry":{"type":"Point","coordinates":[-73.89848045484561,40.629606762638886]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047103400","ancestry":{"1":3697,"5":502,"6":83,"7":9,"14":56,"15":18,"26":5,"36":24,"38":8,"40":10,"42":10,"45":8,"49":71,"50":8,"51":113,"59":10,"61":69,"64":70,"73":26,"87":26,"92":28,"94":299,"96":6,"97":16,"101":29,"102":148,"103":40,"105":60,"108":2127,"109":445}},"geometry":{"type":"Point","coordinates":[-73.88320991814963,40.63449538737985]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018501","ancestry":{"1":3707,"5":198,"6":16,"7":7,"15":9,"16":118,"24":25,"28":9,"29":17,"31":8,"33":19,"35":14,"36":90,"38":14,"40":17,"41":6,"42":105,"44":61,"49":270,"51":175,"53":10,"59":19,"61":126,"62":8,"63":170,"64":129,"67":8,"70":8,"89":29,"91":179,"92":41,"93":8,"94":13,"102":13,"108":2093,"109":280}},"geometry":{"type":"Point","coordinates":[-73.92243124414213,40.738709647876874]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047107000","ancestry":{"1":913,"5":20,"45":13,"49":6,"51":14,"73":11,"87":11,"94":128,"96":3,"99":33,"101":3,"102":86,"105":6,"108":623,"109":119}},"geometry":{"type":"Point","coordinates":[-73.86908845604667,40.649118417174236]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047107000","ancestry":{"1":913,"5":20,"45":13,"49":6,"51":14,"73":11,"87":11,"94":128,"96":3,"99":33,"101":3,"102":86,"105":6,"108":623,"109":119}},"geometry":{"type":"Point","coordinates":[-73.85862596504936,40.65232547074235]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047107800","ancestry":{"1":3704,"5":285,"36":26,"38":6,"45":176,"62":21,"64":8,"73":328,"76":17,"79":82,"87":229,"94":859,"96":193,"99":66,"100":31,"101":66,"102":252,"103":154,"105":126,"108":2023,"109":193}},"geometry":{"type":"Point","coordinates":[-73.87595868153674,40.658841652025224]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047109800","ancestry":{"1":2054,"5":153,"40":7,"45":58,"49":8,"51":15,"64":20,"94":753,"101":205,"102":324,"103":171,"105":53,"108":814,"109":276}},"geometry":{"type":"Point","coordinates":[-73.90165049470227,40.65266176741352]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047112200","ancestry":{"1":3456,"5":71,"6":148,"14":11,"15":137,"36":17,"45":192,"73":119,"87":119,"94":1109,"96":102,"99":311,"101":113,"102":341,"103":213,"105":29,"108":1590,"109":255}},"geometry":{"type":"Point","coordinates":[-73.88592226739152,40.66372793219951]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047112400","ancestry":{"1":3361,"5":58,"36":19,"42":3,"45":183,"49":3,"51":3,"73":190,"87":190,"94":663,"99":145,"102":366,"105":163,"108":1825,"109":457}},"geometry":{"type":"Point","coordinates":[-73.88715359420964,40.666003661074186]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047112600","ancestry":{"1":3936,"5":174,"6":109,"15":109,"36":3,"45":344,"51":25,"73":125,"79":65,"87":60,"94":767,"96":29,"99":172,"101":33,"102":194,"103":262,"105":107,"108":2368,"109":267}},"geometry":{"type":"Point","coordinates":[-73.89311181363941,40.66489859246546]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047112800","ancestry":{"1":3898,"5":93,"40":121,"42":29,"45":200,"51":30,"61":61,"73":122,"87":122,"94":1169,"96":156,"97":22,"99":29,"100":13,"101":218,"102":285,"103":267,"105":203,"108":2044,"109":287}},"geometry":{"type":"Point","coordinates":[-73.89210877318409,40.66174109592593]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047113000","ancestry":{"1":4347,"5":88,"23":13,"36":11,"40":19,"45":415,"51":31,"73":292,"87":292,"94":973,"96":34,"99":102,"100":67,"101":52,"102":469,"103":86,"105":163,"108":2492,"109":204}},"geometry":{"type":"Point","coordinates":[-73.89647078534021,40.66217218009733]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047113200","ancestry":{"1":2011,"5":129,"40":5,"45":78,"73":51,"79":34,"87":17,"94":580,"96":49,"99":109,"101":55,"102":182,"103":137,"105":62,"108":1192,"109":100}},"geometry":{"type":"Point","coordinates":[-73.8988885060468,40.66128847003257]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047114201","ancestry":{"1":1855,"5":10,"41":6,"42":24,"49":6,"51":34,"53":8,"64":3,"94":60,"101":2,"105":58,"108":1550,"109":184}},"geometry":{"type":"Point","coordinates":[-73.8972793421238,40.68046944996127]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047114201","ancestry":{"1":1855,"5":10,"41":6,"42":24,"49":6,"51":34,"53":8,"64":3,"94":60,"101":2,"105":58,"108":1550,"109":184}},"geometry":{"type":"Point","coordinates":[-73.89556790819681,40.68369857252247]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047114600","ancestry":{"1":3088,"5":75,"36":5,"45":116,"49":8,"51":39,"73":18,"87":11,"88":7,"89":5,"94":173,"102":117,"105":56,"108":2486,"109":266}},"geometry":{"type":"Point","coordinates":[-73.89234180930445,40.67920656176137]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047115200","ancestry":{"1":3092,"5":148,"6":2,"15":2,"40":4,"45":177,"73":44,"87":44,"94":515,"95":12,"96":11,"99":39,"101":54,"102":195,"103":100,"105":121,"108":2076,"109":216}},"geometry":{"type":"Point","coordinates":[-73.89093008564927,40.673269312269355]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047115600","ancestry":{"1":4397,"5":128,"45":62,"49":24,"51":34,"73":152,"79":18,"87":134,"94":776,"96":130,"99":56,"101":36,"102":410,"103":132,"105":12,"108":2931,"109":436}},"geometry":{"type":"Point","coordinates":[-73.89589468924517,40.66832669583736]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047116000","ancestry":{"1":1915,"5":102,"36":2,"41":5,"45":154,"67":18,"73":31,"87":31,"94":426,"96":30,"99":74,"102":128,"103":27,"105":171,"108":1230,"109":101}},"geometry":{"type":"Point","coordinates":[-73.88853049641399,40.66941952591489]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047116400","ancestry":{"1":2929,"5":34,"45":94,"51":10,"73":104,"79":26,"87":78,"88":4,"94":631,"96":32,"97":48,"99":64,"101":117,"102":194,"103":61,"105":139,"108":1836,"109":317}},"geometry":{"type":"Point","coordinates":[-73.88118218147262,40.67050987827493]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047117000","ancestry":{"1":1817,"5":82,"36":3,"41":86,"45":114,"49":83,"94":233,"99":6,"101":83,"103":40,"105":104,"108":1145,"109":191}},"geometry":{"type":"Point","coordinates":[-73.88618102727949,40.677600018346375]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047117201","ancestry":{"1":2546,"5":45,"6":12,"13":6,"14":6,"42":28,"45":91,"49":27,"51":16,"61":5,"64":5,"94":180,"101":17,"102":131,"103":13,"105":19,"108":2010,"109":229}},"geometry":{"type":"Point","coordinates":[-73.88751489991985,40.68081167276788]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047117202","ancestry":{"1":3107,"42":66,"45":199,"51":133,"62":167,"73":16,"79":16,"94":237,"96":128,"99":35,"102":68,"105":44,"108":2228,"109":253}},"geometry":{"type":"Point","coordinates":[-73.88376496859696,40.682736510004084]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047117400","ancestry":{"1":3956,"5":40,"42":37,"45":202,"46":7,"49":7,"59":22,"61":38,"67":8,"92":9,"94":84,"99":17,"102":37,"105":30,"108":3265,"109":320}},"geometry":{"type":"Point","coordinates":[-73.87978617748092,40.68285844231931]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047117800","ancestry":{"1":1693,"41":7,"45":130,"49":8,"51":12,"61":4,"94":263,"96":5,"101":13,"103":161,"105":74,"106":10,"108":1274,"109":42}},"geometry":{"type":"Point","coordinates":[-73.87428811495022,40.6816513448905]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047118000","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.87773778229166,40.68947715204132]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047118000","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.87897525623687,40.69131983743299]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047118201","ancestry":{"1":3081,"5":45,"42":13,"45":419,"46":19,"51":18,"94":123,"101":14,"102":6,"103":103,"108":2263,"109":212}},"geometry":{"type":"Point","coordinates":[-73.87189759821284,40.687908560852215]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047118202","ancestry":{"1":2642,"5":63,"42":11,"45":80,"49":15,"51":98,"61":10,"94":76,"102":39,"103":37,"108":2285,"109":130}},"geometry":{"type":"Point","coordinates":[-73.8690023638878,40.68866470261914]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047118202","ancestry":{"1":2642,"5":63,"42":11,"45":80,"49":15,"51":98,"61":10,"94":76,"102":39,"103":37,"108":2285,"109":130}},"geometry":{"type":"Point","coordinates":[-73.867407432838,40.68831026640269]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047118400","ancestry":{"1":5079,"5":72,"42":12,"45":405,"49":12,"51":88,"61":23,"73":73,"79":54,"87":19,"94":208,"97":70,"99":70,"103":94,"105":44,"108":3773,"109":507}},"geometry":{"type":"Point","coordinates":[-73.86941101204897,40.684304287751026]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047118400","ancestry":{"1":5079,"5":72,"42":12,"45":405,"49":12,"51":88,"61":23,"73":73,"79":54,"87":19,"94":208,"97":70,"99":70,"103":94,"105":44,"108":3773,"109":507}},"geometry":{"type":"Point","coordinates":[-73.86638396217461,40.68372255492611]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047118600","ancestry":{"1":2896,"5":2,"19":6,"36":8,"45":272,"49":14,"51":27,"64":10,"94":72,"97":5,"99":30,"105":37,"108":2268,"109":245}},"geometry":{"type":"Point","coordinates":[-73.86778164537887,40.68146544350251]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047118600","ancestry":{"1":2896,"5":2,"19":6,"36":8,"45":272,"49":14,"51":27,"64":10,"94":72,"97":5,"99":30,"105":37,"108":2268,"109":245}},"geometry":{"type":"Point","coordinates":[-73.86619558871875,40.682891246068685]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047118800","ancestry":{"1":4385,"5":45,"23":6,"45":158,"46":8,"51":20,"53":8,"61":16,"63":8,"73":42,"79":42,"94":270,"101":21,"103":233,"105":16,"108":3422,"109":420}},"geometry":{"type":"Point","coordinates":[-73.86591410641059,40.67904116280874]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047118800","ancestry":{"1":4385,"5":45,"23":6,"45":158,"46":8,"51":20,"53":8,"61":16,"63":8,"73":42,"79":42,"94":270,"101":21,"103":233,"105":16,"108":3422,"109":420}},"geometry":{"type":"Point","coordinates":[-73.86319625084757,40.679241477667176]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047119200","ancestry":{"1":3073,"5":48,"6":19,"14":19,"45":188,"51":22,"67":11,"73":23,"87":23,"94":326,"96":6,"99":53,"102":125,"103":142,"108":2282,"109":168}},"geometry":{"type":"Point","coordinates":[-73.87815741018714,40.67711013739894]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047119400","ancestry":{"1":3827,"5":149,"38":116,"45":382,"49":28,"73":150,"87":150,"94":602,"96":83,"99":171,"101":58,"102":247,"103":82,"105":19,"108":2117,"109":366}},"geometry":{"type":"Point","coordinates":[-73.87706022747625,40.672552721581624]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047119600","ancestry":{"1":4872,"5":24,"38":10,"42":1,"45":473,"49":15,"62":8,"73":81,"79":81,"94":623,"96":45,"99":178,"101":13,"102":185,"103":185,"105":17,"108":3202,"109":451}},"geometry":{"type":"Point","coordinates":[-73.87316342532792,40.67589569066747]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047120000","ancestry":{"1":2057,"5":16,"45":244,"49":54,"51":61,"73":83,"79":72,"87":11,"91":5,"93":10,"94":133,"101":8,"102":104,"103":19,"105":2,"108":1364,"109":124}},"geometry":{"type":"Point","coordinates":[-73.86727232277747,40.67487740537183]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047120200","ancestry":{"1":2104,"5":2,"35":7,"45":319,"49":2,"51":148,"60":8,"64":7,"73":50,"87":43,"88":7,"94":96,"96":34,"101":2,"103":54,"105":18,"108":1428,"109":93}},"geometry":{"type":"Point","coordinates":[-73.86436983578015,40.676344574443156]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047120200","ancestry":{"1":2104,"5":2,"35":7,"45":319,"49":2,"51":148,"60":8,"64":7,"73":50,"87":43,"88":7,"94":96,"96":34,"101":2,"103":54,"105":18,"108":1428,"109":93}},"geometry":{"type":"Point","coordinates":[-73.86119965702794,40.67465632984579]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047120800","ancestry":{"1":8706,"5":103,"22":6,"44":5,"45":599,"46":25,"49":53,"51":20,"64":12,"73":1181,"76":14,"79":294,"87":778,"88":95,"94":1064,"96":34,"97":33,"99":151,"101":66,"102":595,"103":86,"105":99,"108":4611,"109":1194}},"geometry":{"type":"Point","coordinates":[-73.8651655205295,40.67130391295539]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047120800","ancestry":{"1":8706,"5":103,"22":6,"44":5,"45":599,"46":25,"49":53,"51":20,"64":12,"73":1181,"76":14,"79":294,"87":778,"88":95,"94":1064,"96":34,"97":33,"99":151,"101":66,"102":595,"103":86,"105":99,"108":4611,"109":1194}},"geometry":{"type":"Point","coordinates":[-73.8605274918218,40.67290934986052]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047121000","ancestry":{"1":4363,"5":127,"45":13,"73":84,"87":84,"94":437,"99":49,"101":101,"102":223,"103":64,"105":49,"108":3406,"109":376}},"geometry":{"type":"Point","coordinates":[-73.87223427000315,40.67006801930676]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081084900","ancestry":{"1":7871,"3":105,"5":6,"51":79,"61":35,"92":35,"108":6779,"109":838}},"geometry":{"type":"Point","coordinates":[-73.83299960117797,40.754707177796135]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081003300","ancestry":{"1":2675,"5":109,"6":50,"7":24,"11":26,"19":13,"22":21,"36":51,"38":25,"39":8,"40":21,"42":37,"44":5,"45":20,"46":3,"48":5,"49":93,"51":110,"53":4,"59":4,"61":45,"62":4,"63":15,"64":20,"65":5,"66":5,"70":10,"73":47,"87":23,"88":24,"89":7,"91":5,"94":1,"102":1,"107":18,"108":1670,"109":448}},"geometry":{"type":"Point","coordinates":[-73.93809952259151,40.75438455877422]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081019900","ancestry":{"1":1257,"5":100,"49":4,"51":26,"61":11,"73":41,"87":41,"108":916,"109":176}},"geometry":{"type":"Point","coordinates":[-73.93374038975074,40.735304626461485]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081067100","ancestry":{"1":2074,"5":100,"6":25,"7":25,"16":4,"19":11,"24":16,"26":3,"29":15,"33":5,"36":52,"38":24,"40":11,"42":213,"44":34,"46":7,"49":429,"51":641,"56":14,"59":6,"61":97,"63":56,"64":37,"66":6,"68":12,"89":10,"91":13,"92":23,"93":10,"107":31,"108":509,"109":190}},"geometry":{"type":"Point","coordinates":[-73.8781024386198,40.72447516925321]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081053100","ancestry":{"1":2486,"5":50,"19":9,"34":16,"42":89,"49":71,"51":362,"53":32,"59":19,"61":835,"63":69,"67":17,"89":8,"108":679,"109":408}},"geometry":{"type":"Point","coordinates":[-73.90833408851908,40.72305782209096]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081006201","ancestry":{"1":5982,"3":76,"5":338,"19":27,"35":122,"36":66,"38":148,"42":596,"44":7,"45":113,"49":815,"50":52,"51":730,"52":101,"61":403,"62":12,"63":54,"64":312,"67":13,"68":70,"94":65,"102":1,"103":51,"105":13,"108":1973,"109":1041}},"geometry":{"type":"Point","coordinates":[-73.84678623591911,40.66679640918857]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081006501","ancestry":{"1":3418,"3":45,"5":116,"6":74,"10":9,"11":29,"15":36,"16":13,"19":9,"22":156,"23":10,"24":18,"26":10,"29":8,"31":9,"34":14,"36":70,"38":41,"40":34,"42":289,"44":259,"46":33,"49":433,"50":5,"51":431,"59":8,"60":1,"61":262,"62":28,"63":14,"64":236,"66":55,"67":23,"68":9,"69":8,"71":22,"73":35,"76":35,"92":8,"107":31,"108":754,"109":583}},"geometry":{"type":"Point","coordinates":[-73.91767476175957,40.76804434036224]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081018101","ancestry":{"1":4413,"3":23,"5":120,"6":132,"7":7,"10":8,"14":51,"15":66,"16":30,"33":4,"36":7,"38":46,"40":13,"42":145,"44":17,"46":29,"48":16,"49":159,"51":174,"53":13,"55":60,"56":50,"59":8,"61":26,"63":157,"64":52,"89":7,"91":95,"92":8,"108":2981,"109":361}},"geometry":{"type":"Point","coordinates":[-73.92412325925635,40.74450994392837]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047122000","ancestry":{"1":5407,"5":190,"6":17,"11":17,"42":119,"45":78,"51":15,"73":281,"79":213,"87":68,"94":1120,"96":86,"99":63,"101":81,"102":656,"103":218,"105":16,"108":3512,"109":388}},"geometry":{"type":"Point","coordinates":[-73.86287625864142,40.66388485989906]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36047122000","ancestry":{"1":5407,"5":190,"6":17,"11":17,"42":119,"45":78,"51":15,"73":281,"79":213,"87":68,"94":1120,"96":86,"99":63,"101":81,"102":656,"103":218,"105":16,"108":3512,"109":388}},"geometry":{"type":"Point","coordinates":[-73.85668781024415,40.66521740516072]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013000","ancestry":{"1":4971,"3":58,"5":232,"6":821,"7":121,"9":17,"12":62,"13":10,"14":394,"15":225,"19":7,"23":11,"26":9,"28":9,"36":102,"38":19,"40":91,"42":192,"44":63,"49":495,"51":371,"59":64,"61":144,"62":51,"63":9,"64":110,"67":34,"68":10,"70":8,"73":77,"79":48,"87":29,"89":30,"90":24,"92":36,"108":2167,"109":561}},"geometry":{"type":"Point","coordinates":[-74.0213843099924,40.632587339571195]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047017000","ancestry":{"1":3758,"5":107,"6":28,"7":17,"14":11,"36":44,"42":17,"44":116,"49":116,"51":985,"61":85,"64":43,"67":7,"70":27,"92":46,"108":1801,"109":580}},"geometry":{"type":"Point","coordinates":[-74.0126338811764,40.6101330994828]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047020100","ancestry":{"1":3814,"5":68,"6":10,"13":10,"16":8,"19":9,"21":8,"22":23,"23":90,"24":11,"33":10,"34":83,"35":99,"36":126,"38":114,"40":120,"42":320,"44":9,"45":11,"46":18,"48":17,"49":301,"51":164,"52":10,"59":28,"61":81,"63":12,"64":73,"67":59,"73":26,"78":8,"87":18,"88":8,"89":61,"90":21,"91":8,"93":12,"94":256,"96":77,"99":86,"102":68,"103":18,"105":7,"108":2065,"109":298}},"geometry":{"type":"Point","coordinates":[-73.96338754173387,40.68384771656525]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047022200","ancestry":{"1":4471,"3":8,"5":152,"6":129,"11":56,"13":73,"23":11,"31":23,"32":27,"34":20,"35":33,"36":27,"38":207,"41":11,"42":30,"44":5,"46":788,"50":113,"55":26,"61":911,"63":46,"64":87,"92":75,"107":30,"108":1763,"109":546}},"geometry":{"type":"Point","coordinates":[-73.9929635157043,40.638239440401584]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047121400","ancestry":{"1":4306,"5":128,"38":50,"45":37,"51":15,"73":102,"87":102,"94":425,"101":360,"102":25,"103":40,"108":3367,"109":292}},"geometry":{"type":"Point","coordinates":[-73.86517174608338,40.66746457141434]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047023800","ancestry":{"1":4167,"5":420,"19":32,"32":40,"34":19,"35":113,"36":68,"38":222,"42":107,"46":675,"50":35,"51":28,"53":16,"61":453,"63":71,"64":153,"92":56,"108":1561,"109":461}},"geometry":{"type":"Point","coordinates":[-73.99143768811085,40.63051118396434]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047024700","ancestry":{"1":1999,"5":85,"6":8,"7":8,"22":14,"33":6,"34":25,"35":8,"36":43,"38":36,"40":39,"41":11,"42":77,"45":45,"49":42,"51":84,"61":15,"64":9,"67":21,"68":5,"73":216,"79":102,"87":92,"88":22,"89":20,"90":12,"94":141,"96":13,"99":27,"101":9,"102":32,"103":40,"105":20,"108":1136,"109":144}},"geometry":{"type":"Point","coordinates":[-73.94926972116332,40.67944309799455]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047027300","ancestry":{"1":2582,"5":136,"26":81,"31":81,"36":35,"38":9,"45":9,"49":5,"51":5,"73":74,"81":9,"87":65,"94":601,"96":2,"99":94,"101":97,"102":173,"103":14,"105":259,"108":1723,"109":94}},"geometry":{"type":"Point","coordinates":[-73.93743825519572,40.68108408846942]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047028000","ancestry":{"1":1672,"3":49,"5":71,"22":12,"24":4,"36":14,"38":4,"40":7,"42":16,"49":42,"51":364,"61":54,"63":12,"64":111,"73":7,"87":7,"92":40,"94":4,"105":4,"108":692,"109":275}},"geometry":{"type":"Point","coordinates":[-74.00593719115763,40.60216695042769]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047032600","ancestry":{"1":7140,"5":428,"6":333,"12":118,"14":88,"15":127,"34":79,"40":4,"49":239,"51":54,"61":14,"64":203,"73":93,"76":67,"87":26,"92":107,"94":208,"101":67,"102":130,"104":11,"108":4483,"109":1360}},"geometry":{"type":"Point","coordinates":[-73.98821376843564,40.5765298639528]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047034700","ancestry":{"1":3157,"5":19,"6":10,"13":10,"45":31,"51":28,"62":7,"73":196,"87":196,"94":872,"96":104,"99":57,"101":106,"102":210,"103":69,"105":365,"108":1954,"109":167}},"geometry":{"type":"Point","coordinates":[-73.92797216728923,40.67265827098814]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047041000","ancestry":{"1":1794,"5":63,"33":4,"36":35,"42":9,"44":5,"46":5,"48":5,"49":66,"51":605,"56":6,"61":9,"63":18,"64":126,"67":4,"92":15,"108":805,"109":115}},"geometry":{"type":"Point","coordinates":[-73.97545137088306,40.600979725388626]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047048600","ancestry":{"1":3492,"3":17,"5":122,"6":20,"7":20,"23":4,"38":4,"42":42,"46":74,"48":48,"49":114,"50":44,"51":58,"59":26,"61":108,"64":30,"70":5,"73":4,"76":4,"94":6,"103":6,"108":2856,"109":209}},"geometry":{"type":"Point","coordinates":[-73.97842520090985,40.63891915581822]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047052500","ancestry":{"1":3513,"3":16,"5":176,"16":10,"26":20,"31":41,"33":9,"34":9,"36":38,"38":115,"39":5,"40":6,"42":146,"44":7,"46":660,"49":29,"51":67,"59":5,"61":66,"67":20,"89":5,"91":7,"108":2028,"109":215}},"geometry":{"type":"Point","coordinates":[-73.95997835246227,40.70888331943946]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047052800","ancestry":{"1":2101,"5":331,"19":4,"23":6,"31":15,"32":2,"34":11,"35":40,"36":32,"38":24,"40":15,"42":49,"46":47,"49":81,"50":31,"51":152,"52":1,"59":32,"61":127,"63":10,"64":134,"66":5,"67":10,"89":21,"91":37,"94":56,"101":46,"103":6,"105":4,"108":866,"109":279}},"geometry":{"type":"Point","coordinates":[-73.96260859921075,40.63084714407674]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047053800","ancestry":{"1":3922,"3":107,"5":493,"6":142,"13":142,"19":37,"32":14,"35":38,"36":14,"38":82,"44":14,"46":17,"48":67,"49":14,"51":94,"61":150,"63":25,"64":559,"67":14,"72":12,"73":39,"87":39,"89":11,"92":411,"94":39,"105":39,"107":15,"108":1668,"109":235}},"geometry":{"type":"Point","coordinates":[-73.95683501932979,40.61819827207841]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047054200","ancestry":{"1":4608,"3":60,"5":828,"6":55,"11":25,"13":30,"19":11,"22":19,"34":16,"35":58,"36":155,"38":38,"40":19,"42":21,"44":68,"46":33,"49":150,"50":102,"51":276,"61":78,"64":494,"67":7,"92":122,"93":23,"94":21,"103":21,"108":2352,"109":249}},"geometry":{"type":"Point","coordinates":[-73.9609789642851,40.612802761611164]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047059300","ancestry":{"1":2047,"5":220,"6":14,"7":14,"19":6,"23":9,"36":81,"38":93,"40":78,"42":181,"44":2,"46":7,"49":262,"51":346,"53":25,"59":7,"61":656,"64":40,"67":39,"69":6,"70":28,"71":6,"73":14,"87":14,"89":11,"94":5,"102":5,"108":422,"109":165}},"geometry":{"type":"Point","coordinates":[-73.93833331622353,40.72599631902201]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047064600","ancestry":{"1":2507,"5":148,"6":10,"11":10,"21":4,"34":7,"36":11,"38":49,"40":21,"42":109,"44":72,"45":202,"46":30,"49":329,"50":51,"51":348,"53":7,"59":30,"61":156,"63":9,"64":85,"94":44,"102":13,"105":31,"108":1018,"109":186}},"geometry":{"type":"Point","coordinates":[-73.93953515550403,40.61591474780711]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047075200","ancestry":{"1":1035,"5":69,"6":20,"10":4,"13":16,"19":4,"26":3,"31":10,"33":3,"35":11,"36":13,"38":31,"42":13,"46":76,"49":12,"50":69,"51":27,"61":143,"64":14,"91":5,"108":332,"109":331}},"geometry":{"type":"Point","coordinates":[-73.95254617567188,40.626153163828455]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047081800","ancestry":{"1":4560,"5":129,"6":11,"9":11,"26":13,"36":23,"40":30,"42":34,"45":288,"49":11,"51":11,"53":12,"73":280,"79":22,"83":20,"87":238,"94":1539,"96":36,"97":16,"99":157,"101":291,"102":604,"103":206,"105":216,"106":22,"108":2026,"109":502}},"geometry":{"type":"Point","coordinates":[-73.94797516272926,40.65309226859574]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047102200","ancestry":{"1":2150,"5":322,"6":1,"7":1,"23":4,"35":5,"36":14,"40":9,"42":29,"44":4,"45":171,"49":14,"51":44,"61":49,"64":11,"73":33,"87":33,"94":802,"96":27,"99":68,"101":332,"102":185,"103":107,"105":97,"108":632,"109":212}},"geometry":{"type":"Point","coordinates":[-73.89001057848117,40.636441292248776]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047113400","ancestry":{"1":3000,"5":154,"45":17,"51":7,"64":5,"73":122,"79":63,"87":59,"94":275,"97":16,"99":15,"101":41,"102":96,"103":34,"105":80,"107":20,"108":2168,"109":342}},"geometry":{"type":"Point","coordinates":[-73.89960816026353,40.66777935427624]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047115800","ancestry":{"1":2849,"5":304,"44":7,"45":172,"51":1,"73":61,"75":12,"76":17,"87":17,"88":32,"94":536,"96":118,"99":115,"101":17,"102":106,"103":102,"105":51,"106":27,"108":1551,"109":317}},"geometry":{"type":"Point","coordinates":[-73.89216235944673,40.66888091985175]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047116600","ancestry":{"1":2721,"5":38,"18":5,"36":5,"40":8,"42":5,"45":326,"73":233,"79":99,"87":134,"94":255,"96":45,"99":10,"101":32,"102":16,"103":139,"105":13,"108":1836,"109":70}},"geometry":{"type":"Point","coordinates":[-73.8822051756282,40.67456274860214]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099703","ancestry":{"1":4172,"2":63,"5":177,"6":9,"12":9,"16":10,"19":82,"29":9,"34":36,"35":49,"36":98,"38":21,"40":21,"42":93,"44":316,"45":192,"46":32,"48":20,"49":235,"50":9,"51":372,"53":9,"61":127,"63":19,"64":468,"67":39,"68":125,"73":9,"79":9,"92":82,"94":11,"102":11,"107":88,"108":1500,"109":462}},"geometry":{"type":"Point","coordinates":[-73.77470687618933,40.78297580434428]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099704","ancestry":{"1":6936,"5":488,"6":14,"14":14,"19":150,"29":46,"31":82,"32":20,"34":57,"35":12,"36":55,"37":1,"38":69,"40":67,"42":150,"44":174,"45":17,"46":151,"48":9,"49":288,"50":181,"51":850,"53":61,"59":42,"61":830,"63":138,"64":588,"67":15,"91":208,"92":79,"93":33,"107":47,"108":2773,"109":447}},"geometry":{"type":"Point","coordinates":[-73.78068434514121,40.78172975186903]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099705","ancestry":{"1":2613,"5":52,"16":275,"35":29,"36":61,"38":49,"42":108,"44":169,"46":10,"49":144,"50":10,"51":477,"53":27,"61":160,"62":23,"63":134,"64":30,"91":11,"94":11,"105":11,"108":918,"109":160}},"geometry":{"type":"Point","coordinates":[-73.78590020524948,40.787431667121595]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081099801","ancestry":{"1":7110,"5":675,"6":59,"7":50,"9":6,"15":3,"34":7,"36":64,"38":64,"40":97,"42":26,"44":6,"45":279,"46":2,"48":6,"49":31,"50":2,"51":81,"52":82,"61":6,"64":37,"67":9,"73":350,"76":317,"87":33,"92":6,"94":1599,"96":264,"99":68,"101":163,"102":834,"103":270,"108":3298,"109":825}},"geometry":{"type":"Point","coordinates":[-73.75759916670398,40.598083458147734]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081100802","ancestry":{"1":8615,"5":278,"6":2,"11":2,"34":1,"35":251,"38":66,"40":16,"42":13,"45":487,"46":78,"49":52,"50":15,"51":34,"53":28,"61":164,"63":137,"64":188,"67":1,"73":177,"79":48,"87":128,"88":1,"94":1662,"96":35,"99":149,"101":436,"102":722,"103":109,"105":304,"108":4142,"109":1248}},"geometry":{"type":"Point","coordinates":[-73.76320559475585,40.60295822609663]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081075702","ancestry":{"1":4408,"3":18,"5":77,"6":5,"9":5,"19":33,"23":26,"32":14,"35":90,"36":40,"38":52,"39":28,"40":52,"42":208,"44":15,"46":28,"48":22,"49":66,"50":5,"51":241,"61":230,"62":5,"63":125,"64":332,"67":75,"68":79,"69":24,"89":14,"91":27,"92":13,"93":22,"94":39,"96":11,"102":28,"107":40,"108":2359,"109":589}},"geometry":{"type":"Point","coordinates":[-73.84019502587252,40.724319255114025]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081079701","ancestry":{"1":6649,"5":74,"33":13,"34":1,"36":12,"38":11,"40":35,"42":52,"45":10,"49":65,"51":93,"61":10,"63":13,"64":140,"73":41,"75":19,"87":22,"90":13,"92":17,"94":142,"99":15,"101":100,"102":11,"103":16,"108":5456,"109":642}},"geometry":{"type":"Point","coordinates":[-73.82475607599818,40.75334542852375]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081044302","ancestry":{"1":4787,"5":189,"16":59,"40":11,"42":31,"51":109,"56":40,"63":54,"73":327,"87":327,"94":45,"99":11,"102":34,"108":3582,"109":464}},"geometry":{"type":"Point","coordinates":[-73.86406294674372,40.7398123505757]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081129103","ancestry":{"1":3646,"5":129,"6":19,"8":19,"16":44,"19":147,"21":24,"31":23,"35":122,"36":50,"38":112,"40":39,"41":8,"42":148,"44":7,"46":27,"49":219,"50":25,"51":496,"52":14,"53":12,"55":8,"56":9,"61":313,"63":23,"64":247,"67":24,"70":8,"94":61,"105":61,"107":76,"108":1378,"109":381}},"geometry":{"type":"Point","coordinates":[-73.75971184999597,40.736704253810785]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081129104","ancestry":{"1":4017,"5":150,"6":8,"10":8,"16":14,"19":25,"23":29,"24":58,"29":10,"32":8,"34":9,"35":8,"36":51,"40":39,"41":22,"42":144,"44":69,"45":1,"46":54,"48":8,"49":553,"50":16,"51":541,"53":20,"61":141,"62":21,"63":47,"64":315,"67":31,"70":14,"71":8,"73":91,"75":39,"77":52,"91":8,"94":156,"101":42,"102":109,"105":38,"108":1767,"109":336}},"geometry":{"type":"Point","coordinates":[-73.75006908517322,40.73809509584943]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071303","ancestry":{"1":5241,"5":623,"6":17,"11":17,"19":99,"35":147,"36":32,"38":92,"40":34,"42":229,"44":31,"45":17,"46":89,"49":354,"50":222,"51":270,"54":14,"56":19,"61":120,"62":31,"63":62,"64":412,"66":16,"67":19,"91":27,"92":25,"94":46,"96":18,"101":10,"103":18,"107":22,"108":2337,"109":457}},"geometry":{"type":"Point","coordinates":[-73.84955789969054,40.72581404906258]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071304","ancestry":{"1":6179,"5":55,"6":141,"7":15,"11":20,"13":92,"15":106,"19":63,"35":55,"36":58,"38":60,"40":52,"42":121,"44":76,"48":174,"49":297,"51":138,"59":18,"61":158,"63":52,"64":1282,"92":70,"94":169,"102":169,"108":3476,"109":563}},"geometry":{"type":"Point","coordinates":[-73.85408130456938,40.72886094430721]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071305","ancestry":{"1":5026,"5":375,"6":164,"8":61,"11":44,"14":59,"16":26,"19":69,"31":26,"35":27,"36":39,"38":41,"40":57,"41":15,"42":108,"44":28,"46":28,"48":83,"49":137,"50":300,"51":321,"61":184,"63":46,"64":257,"67":26,"89":13,"90":22,"91":58,"92":7,"94":53,"102":28,"103":18,"105":7,"108":2655,"109":502}},"geometry":{"type":"Point","coordinates":[-73.85147420775655,40.72416856189479]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071701","ancestry":{"1":5236,"3":80,"5":140,"6":93,"7":12,"14":48,"15":45,"16":40,"19":43,"22":18,"35":16,"36":75,"42":99,"44":30,"45":14,"46":11,"48":10,"49":252,"50":94,"51":45,"61":307,"62":15,"63":54,"64":991,"68":11,"73":29,"80":28,"87":1,"89":17,"90":12,"92":51,"108":2697,"109":408}},"geometry":{"type":"Point","coordinates":[-73.85988100006882,40.73133337633756]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081071702","ancestry":{"1":3330,"3":76,"5":38,"6":99,"7":91,"15":8,"16":27,"29":66,"34":17,"40":95,"42":38,"44":30,"46":32,"48":18,"49":17,"50":9,"51":30,"53":8,"61":110,"63":26,"64":494,"69":87,"91":8,"92":30,"94":9,"102":9,"108":1844,"109":305}},"geometry":{"type":"Point","coordinates":[-73.86283045577666,40.73347702919572]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081075701","ancestry":{"1":5102,"5":443,"6":39,"8":16,"10":23,"19":67,"21":48,"35":42,"36":58,"38":132,"40":49,"42":269,"44":208,"46":60,"49":251,"51":223,"53":22,"59":16,"61":320,"62":16,"63":18,"64":607,"70":16,"89":44,"92":19,"94":50,"102":37,"105":13,"107":88,"108":2386,"109":425}},"geometry":{"type":"Point","coordinates":[-73.83478479635211,40.71820753844134]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081093401","ancestry":{"1":3641,"5":229,"6":8,"7":8,"18":28,"19":63,"22":23,"31":8,"35":9,"36":37,"38":23,"40":47,"41":28,"42":327,"44":152,"46":8,"49":1432,"50":16,"51":527,"61":167,"64":297,"66":14,"67":11,"92":20,"94":6,"103":6,"108":796,"109":407}},"geometry":{"type":"Point","coordinates":[-73.84670443763247,40.57781822172092]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081093402","ancestry":{"1":4057,"5":338,"6":26,"8":23,"10":3,"17":28,"22":8,"26":10,"31":7,"35":21,"36":41,"38":7,"40":62,"41":10,"42":461,"44":44,"45":10,"46":11,"49":1455,"50":9,"51":753,"61":197,"63":18,"64":99,"66":26,"67":19,"70":9,"73":29,"87":29,"94":64,"101":11,"102":21,"103":4,"105":28,"108":1019,"109":387}},"geometry":{"type":"Point","coordinates":[-73.84025063587733,40.57876528688117]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081038301","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.84125250527066,40.760635579207445]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081097203","ancestry":{"1":7072,"5":239,"36":57,"61":130,"73":119,"79":101,"87":18,"94":363,"101":341,"104":22,"108":5588,"109":695}},"geometry":{"type":"Point","coordinates":[-73.7801152467363,40.60104974513707]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021303","ancestry":{"1":5686,"5":69,"23":19,"24":14,"34":23,"36":139,"38":20,"42":144,"44":7,"49":82,"50":56,"51":121,"59":29,"61":33,"63":9,"64":24,"66":9,"67":47,"69":55,"73":581,"75":10,"80":53,"87":407,"88":111,"89":34,"90":39,"94":371,"96":15,"97":16,"99":23,"101":182,"102":130,"105":5,"107":46,"108":3742,"109":337}},"geometry":{"type":"Point","coordinates":[-73.9531391190653,40.81455877951395]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023100","ancestry":{"1":6428,"5":503,"6":34,"7":34,"23":13,"31":45,"33":10,"34":149,"36":182,"38":210,"40":154,"42":335,"45":17,"48":26,"49":200,"51":182,"53":16,"61":77,"64":75,"66":21,"67":14,"70":18,"73":181,"76":24,"87":67,"88":90,"89":20,"93":20,"94":384,"101":203,"102":138,"103":28,"105":15,"108":3515,"109":1041}},"geometry":{"type":"Point","coordinates":[-73.94409352362655,40.82583019801196]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023802","ancestry":{"1":2383,"5":61,"6":18,"15":18,"19":30,"20":6,"21":19,"23":8,"24":16,"26":7,"31":15,"34":6,"35":9,"36":47,"38":29,"39":13,"40":34,"41":9,"42":87,"46":8,"48":11,"49":94,"50":93,"51":154,"53":5,"59":8,"61":65,"63":30,"64":80,"66":27,"67":59,"73":31,"75":4,"78":12,"87":8,"88":7,"89":54,"90":6,"91":12,"93":17,"94":61,"102":42,"103":7,"104":12,"108":1114,"109":356}},"geometry":{"type":"Point","coordinates":[-73.94437898788762,40.76808490148935]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36061023802","ancestry":{"1":2383,"5":61,"6":18,"15":18,"19":30,"20":6,"21":19,"23":8,"24":16,"26":7,"31":15,"34":6,"35":9,"36":47,"38":29,"39":13,"40":34,"41":9,"42":87,"46":8,"48":11,"49":94,"50":93,"51":154,"53":5,"59":8,"61":65,"63":30,"64":80,"66":27,"67":59,"73":31,"75":4,"78":12,"87":8,"88":7,"89":54,"90":6,"91":12,"93":17,"94":61,"102":42,"103":7,"104":12,"108":1114,"109":356}},"geometry":{"type":"Point","coordinates":[-73.94146288955773,40.76664402852582]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061031704","ancestry":{"1":6375,"5":216,"6":59,"8":9,"10":25,"13":25,"18":101,"21":14,"23":107,"26":9,"32":12,"33":29,"34":21,"35":173,"36":369,"38":62,"39":46,"40":122,"41":10,"42":474,"44":39,"46":43,"48":45,"49":936,"50":120,"51":528,"61":212,"62":36,"63":81,"64":378,"65":18,"66":12,"67":134,"70":13,"73":25,"87":25,"92":10,"93":74,"94":38,"101":21,"102":17,"107":12,"108":2825,"109":267}},"geometry":{"type":"Point","coordinates":[-74.01702805972607,40.70832506394813]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005018102","ancestry":{"1":5862,"5":162,"36":9,"40":41,"42":28,"45":43,"46":5,"51":68,"60":9,"61":5,"62":8,"64":10,"73":829,"76":150,"79":21,"80":85,"87":327,"88":255,"91":36,"94":165,"97":22,"99":8,"100":4,"102":52,"104":23,"105":56,"108":4266,"109":405}},"geometry":{"type":"Point","coordinates":[-73.91813837908538,40.832265000609034]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020502","ancestry":{"1":2077,"5":87,"36":1,"40":101,"42":11,"44":1,"73":119,"76":77,"87":42,"94":232,"99":9,"101":42,"102":69,"105":121,"108":1418,"109":204}},"geometry":{"type":"Point","coordinates":[-73.91948553483027,40.851372717758565]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022101","ancestry":{"1":3956,"5":22,"22":11,"36":13,"45":5,"48":12,"51":10,"73":201,"76":80,"87":115,"88":6,"94":221,"96":12,"97":124,"101":77,"102":12,"105":8,"108":3081,"109":443}},"geometry":{"type":"Point","coordinates":[-73.91812320186028,40.838277780426594]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024501","ancestry":{"1":5085,"45":38,"51":7,"73":84,"76":45,"87":39,"94":332,"101":42,"102":196,"105":41,"106":53,"108":4561,"109":82}},"geometry":{"type":"Point","coordinates":[-73.91546182509839,40.852879330190724]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005027401","ancestry":{"1":4723,"3":46,"5":120,"6":73,"7":73,"26":46,"30":22,"34":8,"35":10,"36":86,"38":57,"40":15,"42":582,"44":318,"45":36,"49":1191,"51":2519,"56":13,"61":9,"62":16,"64":37,"92":20,"108":519,"109":205}},"geometry":{"type":"Point","coordinates":[-73.82263028610889,40.840444651333726]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36005029302","ancestry":{"1":5471,"5":419,"6":46,"14":17,"15":29,"19":161,"22":29,"23":10,"24":13,"31":12,"32":18,"35":47,"36":183,"38":231,"40":17,"42":696,"44":46,"46":92,"49":845,"50":17,"51":342,"61":308,"62":46,"64":513,"66":17,"70":11,"89":87,"91":23,"92":34,"93":8,"94":37,"102":37,"108":2126,"109":231}},"geometry":{"type":"Point","coordinates":[-73.91524697282269,40.876027145233344]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005029302","ancestry":{"1":5471,"5":419,"6":46,"14":17,"15":29,"19":161,"22":29,"23":10,"24":13,"31":12,"32":18,"35":47,"36":183,"38":231,"40":17,"42":696,"44":46,"46":92,"49":845,"50":17,"51":342,"61":308,"62":46,"64":513,"66":17,"70":11,"89":87,"91":23,"92":34,"93":8,"94":37,"102":37,"108":2126,"109":231}},"geometry":{"type":"Point","coordinates":[-73.91588357230319,40.87930255996639]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038301","ancestry":{"1":4372,"5":39,"42":32,"44":18,"51":61,"73":447,"76":262,"87":185,"92":3,"94":91,"96":6,"101":26,"102":41,"105":18,"108":3569,"109":245}},"geometry":{"type":"Point","coordinates":[-73.89852102108324,40.85720744123613]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040501","ancestry":{"1":3916,"5":9,"36":20,"45":35,"49":14,"59":13,"61":33,"62":11,"67":13,"73":433,"76":360,"79":20,"87":12,"88":61,"94":123,"99":19,"102":104,"108":2823,"109":433}},"geometry":{"type":"Point","coordinates":[-73.89093239164742,40.86712932963917]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005032600","ancestry":{"1":3573,"3":272,"5":9,"19":39,"22":12,"34":20,"35":7,"36":107,"38":106,"40":35,"42":48,"44":8,"46":60,"49":195,"51":717,"55":201,"62":12,"64":45,"65":8,"73":40,"88":40,"94":65,"101":8,"102":12,"103":45,"107":141,"108":1526,"109":293}},"geometry":{"type":"Point","coordinates":[-73.85547776933444,40.86218780342063]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005018500","ancestry":{"1":6904,"5":12,"6":67,"10":67,"36":4,"40":16,"42":21,"44":4,"45":122,"49":24,"51":22,"57":3,"61":4,"70":13,"73":632,"76":59,"78":9,"81":114,"87":345,"88":179,"94":469,"97":10,"99":9,"101":108,"102":149,"103":19,"105":183,"108":5148,"109":471}},"geometry":{"type":"Point","coordinates":[-73.90746995681339,40.8267039586194]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005002","ancestry":{"1":5791,"5":70,"6":100,"7":12,"15":88,"45":164,"51":15,"67":49,"73":222,"76":10,"80":17,"87":88,"88":107,"94":114,"96":6,"99":58,"101":19,"105":31,"108":4716,"109":448}},"geometry":{"type":"Point","coordinates":[-73.87843502457258,40.827362896472906]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005012901","ancestry":{"1":3828,"5":67,"6":18,"14":5,"15":18,"40":22,"49":1,"61":21,"73":231,"76":142,"87":85,"88":4,"94":76,"101":1,"102":56,"105":19,"108":3084,"109":348}},"geometry":{"type":"Point","coordinates":[-73.89873395613084,40.82262939333884]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005015200","ancestry":{"1":2960,"5":128,"19":5,"22":13,"29":5,"34":43,"36":6,"38":21,"40":33,"41":24,"42":99,"49":226,"51":468,"61":5,"64":43,"70":5,"73":26,"79":26,"92":27,"94":20,"99":20,"108":1921,"109":211}},"geometry":{"type":"Point","coordinates":[-73.82490963790828,40.82638086005326]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005014702","ancestry":{"1":5089,"5":96,"51":15,"64":35,"73":468,"79":145,"87":88,"88":235,"94":367,"96":66,"99":124,"101":45,"102":39,"103":117,"108":3539,"109":763}},"geometry":{"type":"Point","coordinates":[-73.90439147245947,40.836534984758586]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005017701","ancestry":{"1":4459,"5":211,"36":36,"40":11,"42":9,"51":11,"63":8,"73":141,"87":126,"88":15,"94":213,"99":9,"101":95,"102":83,"105":26,"108":3576,"109":254}},"geometry":{"type":"Point","coordinates":[-73.91117741573738,40.83319576359651]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005017702","ancestry":{"1":5456,"5":18,"6":11,"7":11,"36":9,"42":1,"45":80,"49":1,"73":690,"76":57,"79":119,"87":480,"88":34,"94":144,"99":8,"101":61,"102":8,"103":53,"105":29,"108":4222,"109":364}},"geometry":{"type":"Point","coordinates":[-73.90954983040984,40.83617755305412]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005017902","ancestry":{"1":3618,"5":72,"38":1,"42":2,"45":15,"49":10,"51":13,"73":570,"80":35,"87":414,"88":121,"94":72,"99":20,"102":8,"104":44,"108":2750,"109":187}},"geometry":{"type":"Point","coordinates":[-73.91349887164256,40.8370141834136]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005018101","ancestry":{"1":2946,"5":74,"6":30,"14":30,"73":461,"84":110,"87":351,"88":24,"94":479,"99":124,"102":244,"104":34,"105":109,"108":1841,"109":225}},"geometry":{"type":"Point","coordinates":[-73.91611117284371,40.83160744530961]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005018302","ancestry":{"1":3934,"5":245,"6":16,"15":16,"73":211,"75":17,"87":194,"94":190,"97":33,"102":49,"103":66,"105":42,"108":2978,"109":328}},"geometry":{"type":"Point","coordinates":[-73.91875208384565,40.827911940867246]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020501","ancestry":{"1":6568,"5":129,"51":37,"73":87,"87":87,"94":533,"102":314,"103":28,"105":191,"108":5616,"109":533}},"geometry":{"type":"Point","coordinates":[-73.92364026618904,40.84744617927266]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021001","ancestry":{"1":9094,"5":219,"33":18,"36":18,"40":22,"42":49,"45":81,"46":17,"48":28,"49":57,"51":122,"61":12,"73":559,"76":162,"78":42,"87":355,"92":17,"94":1300,"97":55,"99":28,"102":502,"103":103,"105":612,"108":5790,"109":1260}},"geometry":{"type":"Point","coordinates":[-73.85827934803017,40.840805436574094]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021002","ancestry":{"1":6081,"5":166,"22":33,"45":88,"49":75,"51":93,"61":15,"64":13,"73":532,"76":210,"87":322,"92":33,"94":640,"99":47,"101":11,"102":251,"103":135,"105":219,"108":4086,"109":550}},"geometry":{"type":"Point","coordinates":[-73.85651579977798,40.83847854682784]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022403","ancestry":{"1":3309,"5":60,"18":11,"24":19,"31":12,"36":9,"38":18,"40":203,"42":38,"44":14,"46":12,"49":75,"51":101,"61":6,"64":61,"73":61,"76":61,"92":28,"94":55,"102":55,"108":2723,"109":256}},"geometry":{"type":"Point","coordinates":[-73.8654304472142,40.85647626103185]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024502","ancestry":{"1":3669,"5":220,"49":1,"64":7,"73":354,"76":204,"87":112,"88":38,"94":63,"99":22,"102":16,"105":25,"108":3019,"109":238}},"geometry":{"type":"Point","coordinates":[-73.9135653451703,40.85510940904857]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005026701","ancestry":{"1":3439,"3":78,"5":56,"6":25,"15":25,"42":6,"45":12,"49":13,"51":53,"61":13,"73":83,"76":69,"87":14,"94":27,"102":27,"108":2929,"109":182}},"geometry":{"type":"Point","coordinates":[-73.90122760265312,40.8693519146939]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005027402","ancestry":{"1":3754,"5":153,"33":18,"36":96,"38":41,"42":425,"44":168,"45":23,"46":42,"49":315,"51":1916,"59":4,"61":123,"70":189,"73":50,"87":50,"89":8,"94":42,"98":42,"108":911,"109":295}},"geometry":{"type":"Point","coordinates":[-73.81747331156748,40.84276714080441]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36005029301","ancestry":{"1":2037,"5":108,"6":36,"10":22,"15":14,"19":35,"23":61,"24":1,"26":5,"33":3,"34":24,"35":51,"36":39,"37":5,"38":6,"40":26,"42":134,"44":36,"46":17,"49":284,"50":24,"51":225,"52":15,"53":3,"59":5,"61":140,"63":51,"64":146,"66":6,"67":22,"71":6,"73":11,"87":11,"89":24,"92":81,"93":8,"94":25,"95":8,"96":5,"102":5,"105":7,"107":24,"108":558,"109":261}},"geometry":{"type":"Point","coordinates":[-73.92362688037376,40.878918179530736]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005029301","ancestry":{"1":2037,"5":108,"6":36,"10":22,"15":14,"19":35,"23":61,"24":1,"26":5,"33":3,"34":24,"35":51,"36":39,"37":5,"38":6,"40":26,"42":134,"44":36,"46":17,"49":284,"50":24,"51":225,"52":15,"53":3,"59":5,"61":140,"63":51,"64":146,"66":6,"67":22,"71":6,"73":11,"87":11,"89":24,"92":81,"93":8,"94":25,"95":8,"96":5,"102":5,"105":7,"107":24,"108":558,"109":261}},"geometry":{"type":"Point","coordinates":[-73.92116868875186,40.88222074592118]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005030900","ancestry":{"1":3945,"5":124,"6":18,"11":8,"13":10,"19":100,"23":24,"31":32,"34":165,"35":335,"36":199,"38":81,"40":23,"42":242,"44":75,"45":10,"46":40,"49":297,"50":89,"51":190,"53":10,"58":9,"59":47,"61":103,"63":121,"64":278,"67":56,"70":16,"73":88,"75":62,"79":5,"83":20,"87":1,"91":91,"92":26,"94":95,"101":31,"102":33,"103":26,"105":5,"108":1113,"109":666}},"geometry":{"type":"Point","coordinates":[-73.9139922090004,40.89725735791189]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033202","ancestry":{"1":3908,"3":19,"5":170,"6":38,"15":38,"35":9,"40":11,"42":12,"45":50,"49":10,"51":114,"61":54,"62":8,"64":72,"73":346,"76":228,"79":20,"80":10,"87":143,"88":130,"93":7,"94":420,"99":179,"102":119,"105":122,"108":2436,"109":369}},"geometry":{"type":"Point","coordinates":[-73.86894133725174,40.86338181875945]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038302","ancestry":{"1":5350,"5":109,"40":7,"45":48,"49":28,"67":7,"73":688,"76":180,"87":88,"88":420,"94":241,"99":22,"102":147,"105":72,"108":4091,"109":252}},"geometry":{"type":"Point","coordinates":[-73.89500562938485,40.85745437590494]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040502","ancestry":{"1":5594,"5":110,"34":62,"42":25,"45":27,"49":32,"62":22,"73":131,"87":32,"88":99,"94":571,"97":53,"101":18,"102":127,"105":373,"108":4298,"109":455}},"geometry":{"type":"Point","coordinates":[-73.88896128594554,40.86587799819691]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020000","ancestry":{"1":4672,"5":93,"6":194,"15":194,"36":19,"38":38,"40":10,"42":62,"45":25,"49":88,"51":204,"61":20,"89":9,"94":48,"99":13,"105":35,"108":3704,"109":426}},"geometry":{"type":"Point","coordinates":[-73.84551623138525,40.84283491610333]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033500","ancestry":{"1":2323,"5":10,"6":27,"11":13,"12":5,"14":9,"16":6,"19":5,"23":15,"31":29,"33":7,"34":15,"35":50,"36":80,"37":11,"38":87,"40":35,"42":147,"44":5,"46":11,"48":6,"49":323,"50":40,"51":247,"53":6,"58":19,"61":239,"63":9,"64":129,"67":41,"70":11,"89":9,"92":5,"94":20,"102":13,"103":7,"108":874,"109":311}},"geometry":{"type":"Point","coordinates":[-73.9052017313844,40.894303874845264]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005033700","ancestry":{"1":2353,"3":32,"5":16,"6":32,"15":32,"19":5,"23":22,"26":3,"29":17,"31":21,"34":10,"35":48,"36":47,"39":10,"40":50,"42":157,"44":14,"46":20,"48":20,"49":808,"51":256,"52":24,"55":5,"61":57,"63":15,"64":187,"66":12,"67":72,"70":2,"73":25,"76":21,"87":4,"90":17,"91":5,"92":21,"94":31,"96":12,"102":16,"105":15,"108":659,"109":121}},"geometry":{"type":"Point","coordinates":[-73.90251659797721,40.906313617246454]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005034800","ancestry":{"1":7357,"5":119,"36":87,"42":6,"44":4,"49":12,"50":1,"51":41,"73":335,"74":106,"79":38,"87":191,"94":2088,"99":101,"102":1525,"104":19,"105":503,"108":4307,"109":591}},"geometry":{"type":"Point","coordinates":[-73.85307063453259,40.86944715354706]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036000","ancestry":{"1":3299,"3":57,"5":75,"16":5,"24":5,"31":14,"36":2,"40":6,"42":97,"45":45,"49":32,"51":197,"67":5,"68":2,"73":108,"76":12,"79":3,"87":93,"94":960,"97":37,"99":7,"101":19,"102":462,"103":26,"105":416,"108":1637,"109":229}},"geometry":{"type":"Point","coordinates":[-73.8431181905533,40.86684048600408]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039500","ancestry":{"1":3893,"5":87,"49":7,"73":191,"76":41,"79":4,"87":134,"88":17,"94":110,"99":78,"102":16,"103":5,"105":19,"108":2970,"109":597}},"geometry":{"type":"Point","coordinates":[-73.89668137522695,40.84819867072887]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005043400","ancestry":{"1":3709,"3":36,"5":35,"36":8,"41":1,"42":1,"45":77,"51":85,"59":1,"61":1,"62":20,"71":9,"73":10,"79":9,"87":1,"94":1803,"99":9,"102":1208,"103":21,"105":565,"108":1482,"109":234}},"geometry":{"type":"Point","coordinates":[-73.85233889916807,40.8982107356511]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005044400","ancestry":{"1":3617,"5":30,"42":93,"45":64,"49":95,"51":146,"64":7,"67":8,"73":125,"78":8,"87":117,"94":1532,"96":18,"99":13,"100":7,"101":89,"102":1078,"103":26,"104":12,"105":289,"108":1496,"109":220}},"geometry":{"type":"Point","coordinates":[-73.84374026923578,40.89949877229679]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005001900","ancestry":{"1":2569,"5":25,"6":6,"14":6,"19":10,"34":5,"35":14,"36":6,"38":6,"40":27,"42":17,"45":5,"49":23,"51":54,"61":6,"64":7,"67":6,"73":13,"87":13,"88":9,"91":2,"94":69,"99":5,"101":15,"102":17,"103":17,"104":2,"105":13,"108":2196,"109":176}},"geometry":{"type":"Point","coordinates":[-73.91461469635173,40.80303815215233]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005004200","ancestry":{"1":7599,"5":207,"23":15,"42":15,"45":39,"49":59,"51":155,"62":52,"73":301,"87":301,"94":871,"99":39,"101":19,"102":16,"103":15,"105":782,"108":5259,"109":807}},"geometry":{"type":"Point","coordinates":[-73.8620067328994,40.82393050519245]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005100","ancestry":{"1":5814,"5":159,"22":20,"36":9,"40":3,"41":2,"42":2,"44":2,"49":32,"51":39,"61":2,"68":1,"73":34,"75":21,"88":13,"94":46,"102":15,"105":31,"108":5098,"109":546}},"geometry":{"type":"Point","coordinates":[-73.92756591627422,40.8132068720008]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005009300","ancestry":{"1":6265,"5":94,"6":7,"14":7,"22":7,"23":8,"42":11,"45":19,"49":20,"51":44,"61":6,"62":20,"73":523,"74":20,"76":63,"79":22,"87":273,"88":154,"94":304,"97":7,"99":6,"101":7,"102":144,"103":54,"105":86,"108":5077,"109":339}},"geometry":{"type":"Point","coordinates":[-73.88927282603336,40.80934934605993]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005009600","ancestry":{"1":2557,"5":68,"6":6,"15":6,"42":23,"49":14,"51":47,"64":4,"73":44,"76":44,"89":11,"94":154,"97":4,"101":56,"102":90,"105":48,"108":2036,"109":182}},"geometry":{"type":"Point","coordinates":[-73.84383235964214,40.83453841592359]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005011700","ancestry":{"1":1512,"5":37,"73":70,"79":34,"87":25,"88":11,"94":44,"105":44,"108":1275,"109":116}},"geometry":{"type":"Point","coordinates":[-73.87667614266256,40.81059527617535]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020900","ancestry":{"1":4519,"5":138,"42":29,"45":21,"51":33,"62":6,"73":265,"76":178,"78":18,"83":23,"87":48,"88":6,"94":99,"96":14,"99":7,"102":66,"105":12,"108":3736,"109":362}},"geometry":{"type":"Point","coordinates":[-73.91501733149796,40.84307036266626]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022200","ancestry":{"1":2965,"5":22,"6":75,"10":18,"11":57,"40":9,"42":7,"45":144,"49":46,"51":119,"53":3,"61":6,"62":9,"73":95,"87":95,"94":112,"102":33,"105":79,"108":2207,"109":177}},"geometry":{"type":"Point","coordinates":[-73.85520494640694,40.835687861512085]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023800","ancestry":{"1":2628,"3":54,"5":200,"6":11,"14":11,"22":4,"29":3,"31":5,"32":6,"36":5,"45":46,"49":43,"51":182,"62":3,"73":40,"76":30,"81":5,"87":5,"94":82,"102":26,"103":57,"105":6,"108":1894,"109":144}},"geometry":{"type":"Point","coordinates":[-73.86109361684073,40.84370808167131]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037504","ancestry":{"1":4041,"5":14,"6":90,"15":90,"40":10,"45":44,"49":3,"51":55,"61":12,"64":12,"73":231,"76":76,"78":19,"79":18,"87":120,"88":10,"94":119,"99":5,"101":19,"102":14,"103":58,"104":3,"105":20,"108":3115,"109":410}},"geometry":{"type":"Point","coordinates":[-73.89266895686745,40.85030627839305]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005045600","ancestry":{"1":3336,"5":482,"23":61,"32":12,"36":21,"42":50,"44":66,"46":12,"49":28,"51":469,"59":1,"62":68,"73":30,"87":30,"94":926,"96":5,"99":10,"102":416,"105":495,"108":1267,"109":97}},"geometry":{"type":"Point","coordinates":[-73.82113431687443,40.88869837893765]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005300","ancestry":{"1":3305,"5":136,"19":13,"36":25,"51":15,"67":7,"73":259,"87":92,"88":167,"94":51,"95":11,"102":21,"103":19,"108":2700,"109":221}},"geometry":{"type":"Point","coordinates":[-73.92177888087325,40.852212546102514]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085014604","ancestry":{"1":7666,"3":61,"5":381,"6":157,"7":157,"18":11,"29":55,"31":18,"36":197,"38":110,"39":17,"40":72,"41":16,"42":196,"44":31,"46":15,"49":1474,"51":4262,"55":70,"59":32,"61":353,"63":35,"64":334,"67":36,"92":94,"108":1136,"109":372}},"geometry":{"type":"Point","coordinates":[-74.15975458147503,40.550038313423805]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085024800","ancestry":{"1":4860,"5":179,"6":92,"7":68,"12":24,"19":5,"23":16,"34":19,"36":92,"38":8,"40":23,"42":563,"46":17,"49":1413,"50":28,"51":2602,"53":8,"59":36,"61":152,"62":6,"64":51,"67":81,"70":52,"89":15,"90":8,"92":3,"107":9,"108":578,"109":539}},"geometry":{"type":"Point","coordinates":[-74.2424656508844,40.51541457354462]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085025100","ancestry":{"1":5796,"5":191,"6":172,"13":31,"14":141,"19":50,"23":18,"29":44,"32":12,"33":17,"34":107,"36":121,"38":45,"40":72,"42":88,"44":101,"49":1786,"50":48,"51":2441,"53":15,"59":28,"61":477,"62":46,"64":164,"66":41,"67":17,"89":14,"92":15,"107":56,"108":797,"109":402}},"geometry":{"type":"Point","coordinates":[-74.14603476204053,40.61801839697267]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085027301","ancestry":{"1":3938,"5":144,"6":134,"7":134,"19":39,"26":5,"34":6,"35":24,"36":101,"38":14,"40":55,"42":103,"46":6,"49":231,"50":6,"51":1146,"59":26,"61":252,"63":77,"64":171,"67":148,"70":6,"90":9,"92":56,"94":231,"102":101,"103":130,"108":1125,"109":708}},"geometry":{"type":"Point","coordinates":[-74.15183715023792,40.599754642434505]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085027702","ancestry":{"1":6097,"5":157,"19":29,"21":19,"26":13,"33":13,"34":13,"36":171,"38":100,"40":65,"41":14,"42":200,"44":10,"46":24,"49":675,"51":1716,"55":155,"59":27,"61":502,"63":97,"64":359,"73":22,"79":22,"89":14,"92":156,"94":16,"102":15,"105":1,"108":1993,"109":780}},"geometry":{"type":"Point","coordinates":[-74.1636580949004,40.58010492171968]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085027900","ancestry":{"1":2106,"3":30,"5":54,"6":45,"7":4,"10":33,"14":8,"19":11,"20":8,"31":24,"32":24,"33":4,"34":17,"35":13,"36":12,"38":10,"39":4,"40":8,"41":8,"42":137,"44":28,"46":53,"49":201,"51":881,"53":4,"58":4,"59":24,"61":210,"62":5,"63":29,"64":65,"67":9,"89":4,"90":8,"92":4,"94":8,"101":8,"108":371,"109":338}},"geometry":{"type":"Point","coordinates":[-74.14910706543452,40.5749591509683]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085029102","ancestry":{"1":2712,"3":28,"5":96,"6":178,"7":151,"10":16,"13":6,"14":11,"16":4,"19":3,"23":24,"28":8,"33":28,"34":21,"35":10,"36":35,"38":9,"40":18,"42":148,"44":51,"45":20,"46":13,"49":548,"51":767,"59":84,"61":115,"62":23,"64":18,"66":6,"70":25,"89":18,"92":5,"93":8,"94":55,"102":40,"105":15,"108":753,"109":152}},"geometry":{"type":"Point","coordinates":[-74.19025157407737,40.60945906496961]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085029103","ancestry":{"1":7405,"3":472,"5":301,"6":252,"7":86,"10":116,"11":41,"15":9,"19":56,"24":12,"33":11,"34":10,"36":57,"38":1,"40":42,"41":68,"42":177,"44":28,"49":614,"51":3302,"59":21,"61":383,"63":10,"64":252,"89":67,"91":37,"92":63,"107":44,"108":1929,"109":531}},"geometry":{"type":"Point","coordinates":[-74.17045333070047,40.6043058657436]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085030301","ancestry":{"1":5061,"3":223,"5":96,"6":213,"7":10,"10":10,"11":106,"12":87,"16":4,"19":13,"34":13,"36":24,"38":114,"42":143,"44":8,"45":67,"49":707,"51":1152,"59":24,"61":191,"62":8,"64":133,"70":34,"73":140,"76":32,"79":84,"87":46,"89":2,"94":73,"99":21,"102":14,"105":38,"107":23,"108":2275,"109":347}},"geometry":{"type":"Point","coordinates":[-74.15612027634712,40.61891970109964]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085031901","ancestry":{"1":2916,"5":573,"6":69,"7":69,"45":25,"49":48,"51":35,"73":357,"76":45,"79":160,"87":63,"88":89,"94":111,"99":35,"102":53,"105":23,"108":1346,"109":442}},"geometry":{"type":"Point","coordinates":[-74.16332110328987,40.630303588583054]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085032300","ancestry":{"1":1106,"34":9,"42":91,"45":31,"49":115,"51":240,"53":7,"61":8,"64":19,"73":10,"76":10,"94":117,"102":117,"108":616,"109":17}},"geometry":{"type":"Point","coordinates":[-74.17855053167675,40.63400940414805]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085001800","ancestry":{"1":712,"5":40,"6":14,"10":14,"33":7,"34":18,"35":4,"36":85,"38":32,"39":4,"40":14,"42":59,"49":100,"51":108,"53":2,"59":1,"61":23,"62":5,"65":31,"66":2,"67":38,"73":5,"74":5,"90":4,"92":3,"108":222,"109":150}},"geometry":{"type":"Point","coordinates":[-74.058510539757,40.60153984857306]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085014100","ancestry":{"1":2725,"3":94,"5":29,"6":155,"7":127,"12":24,"15":4,"18":2,"26":14,"32":9,"36":6,"42":78,"45":42,"46":5,"49":336,"51":508,"53":8,"59":6,"61":81,"64":22,"66":3,"67":4,"73":52,"76":32,"87":20,"89":3,"90":12,"92":5,"94":184,"101":50,"102":108,"105":26,"108":1536,"109":64}},"geometry":{"type":"Point","coordinates":[-74.12689362597628,40.628861667949415]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085024402","ancestry":{"1":4426,"3":64,"5":197,"6":141,"7":141,"22":29,"23":23,"33":18,"36":78,"40":53,"42":220,"44":260,"46":27,"49":313,"50":12,"51":2492,"53":25,"59":18,"61":28,"62":14,"64":229,"67":22,"89":15,"91":87,"92":35,"108":1168,"109":254}},"geometry":{"type":"Point","coordinates":[-74.23786438059462,40.50254010800688]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085027705","ancestry":{"1":5788,"2":11,"5":139,"6":462,"7":299,"11":26,"12":8,"13":20,"14":101,"15":8,"35":49,"36":72,"42":225,"44":58,"48":12,"49":515,"50":225,"51":1609,"52":9,"53":7,"55":103,"59":24,"61":151,"64":79,"67":60,"92":175,"94":14,"103":14,"108":1993,"109":662}},"geometry":{"type":"Point","coordinates":[-74.15698194712772,40.58824800019663]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085012806","ancestry":{"1":6293,"3":173,"5":81,"6":146,"7":60,"15":86,"16":14,"19":12,"28":14,"36":108,"40":30,"42":247,"44":83,"49":918,"51":1792,"59":12,"61":78,"62":10,"64":388,"67":17,"73":133,"87":133,"89":12,"92":279,"93":14,"94":29,"103":18,"105":11,"107":89,"108":2464,"109":412}},"geometry":{"type":"Point","coordinates":[-74.11002565001839,40.55942331833984]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001501","ancestry":{"1":6006,"5":346,"18":115,"19":55,"23":97,"31":22,"34":11,"35":124,"36":323,"38":171,"40":98,"41":21,"42":344,"44":32,"46":99,"49":415,"51":716,"58":59,"59":41,"61":182,"63":86,"64":219,"65":9,"66":27,"67":13,"89":36,"90":32,"92":105,"93":12,"94":65,"96":51,"101":2,"103":12,"108":2506,"109":590}},"geometry":{"type":"Point","coordinates":[-74.00362733612458,40.70909985985379]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061001501","ancestry":{"1":6006,"5":346,"18":115,"19":55,"23":97,"31":22,"34":11,"35":124,"36":323,"38":171,"40":98,"41":21,"42":344,"44":32,"46":99,"49":415,"51":716,"58":59,"59":41,"61":182,"63":86,"64":219,"65":9,"66":27,"67":13,"89":36,"90":32,"92":105,"93":12,"94":65,"96":51,"101":2,"103":12,"108":2506,"109":590}},"geometry":{"type":"Point","coordinates":[-73.99466211537485,40.70421139746252]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001600","ancestry":{"1":7675,"5":145,"6":41,"10":41,"19":15,"29":48,"31":30,"36":80,"38":41,"40":253,"42":87,"46":28,"49":60,"51":81,"61":82,"62":38,"63":13,"64":22,"66":17,"67":16,"70":29,"73":15,"87":15,"89":40,"108":6533,"109":330}},"geometry":{"type":"Point","coordinates":[-73.99326604094546,40.71595682395283]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061001800","ancestry":{"1":8232,"5":191,"6":11,"10":11,"19":48,"23":59,"26":33,"34":13,"35":94,"36":218,"38":59,"40":72,"41":14,"42":225,"44":27,"46":46,"49":204,"51":255,"53":59,"58":13,"61":114,"62":16,"64":126,"67":79,"89":25,"90":51,"91":17,"93":9,"94":51,"99":16,"101":29,"102":6,"108":6014,"109":785}},"geometry":{"type":"Point","coordinates":[-73.99084081418977,40.719046381185564]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002000","ancestry":{"1":4872,"5":61,"6":9,"15":9,"33":8,"34":11,"36":8,"38":8,"40":9,"49":25,"51":34,"61":9,"67":27,"73":34,"87":34,"94":47,"100":8,"103":39,"108":4158,"109":535}},"geometry":{"type":"Point","coordinates":[-73.97570762318448,40.72039253850956]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061002000","ancestry":{"1":4872,"5":61,"6":9,"15":9,"33":8,"34":11,"36":8,"38":8,"40":9,"49":25,"51":34,"61":9,"67":27,"73":34,"87":34,"94":47,"100":8,"103":39,"108":4158,"109":535}},"geometry":{"type":"Point","coordinates":[-73.96681983055218,40.717590113407795]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004000","ancestry":{"1":9543,"5":504,"6":53,"10":35,"15":18,"16":27,"18":11,"19":23,"20":23,"22":192,"23":22,"26":79,"29":7,"33":13,"35":111,"36":688,"38":138,"40":202,"41":239,"42":743,"44":96,"46":54,"48":28,"49":1502,"50":34,"51":783,"53":29,"58":81,"59":15,"61":263,"62":128,"63":221,"64":345,"66":24,"67":95,"70":19,"73":43,"83":15,"88":28,"89":256,"90":51,"91":24,"92":86,"93":29,"108":2592,"109":1831}},"geometry":{"type":"Point","coordinates":[-73.98602354758142,40.7307447616782]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002201","ancestry":{"1":6874,"5":136,"6":39,"10":14,"11":12,"14":13,"21":15,"26":13,"36":127,"38":37,"40":49,"42":80,"45":29,"46":30,"48":10,"49":51,"50":28,"51":107,"59":53,"61":250,"62":57,"64":146,"67":52,"73":20,"75":20,"89":28,"90":13,"92":43,"93":12,"94":12,"102":12,"108":5343,"109":750}},"geometry":{"type":"Point","coordinates":[-73.9818442665371,40.71911563772236]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002202","ancestry":{"1":1944,"5":81,"6":13,"10":7,"13":7,"14":6,"18":7,"19":9,"23":16,"24":8,"28":12,"31":7,"34":17,"35":51,"36":163,"38":62,"40":29,"41":8,"42":123,"44":20,"46":14,"49":200,"51":189,"59":7,"61":41,"64":54,"66":8,"67":8,"70":7,"73":12,"81":12,"91":20,"93":17,"94":27,"103":6,"105":21,"108":886,"109":109}},"geometry":{"type":"Point","coordinates":[-73.98114119401124,40.72125973140086]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002400","ancestry":{"1":5658,"5":35,"6":23,"7":23,"21":10,"23":10,"36":19,"38":19,"40":36,"42":36,"44":4,"45":10,"46":16,"49":130,"51":260,"61":48,"64":30,"67":7,"70":11,"73":25,"87":25,"93":10,"94":6,"102":6,"108":4773,"109":394}},"geometry":{"type":"Point","coordinates":[-73.97369413122394,40.723925830774654]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061002400","ancestry":{"1":5658,"5":35,"6":23,"7":23,"21":10,"23":10,"36":19,"38":19,"40":36,"42":36,"44":4,"45":10,"46":16,"49":130,"51":260,"61":48,"64":30,"67":7,"70":11,"73":25,"87":25,"93":10,"94":6,"102":6,"108":4773,"109":394}},"geometry":{"type":"Point","coordinates":[-73.96534368848913,40.71958169101945]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002601","ancestry":{"1":4052,"5":55,"6":21,"11":21,"25":12,"33":57,"34":42,"35":36,"36":120,"38":45,"40":67,"41":11,"42":266,"44":10,"45":60,"46":13,"49":110,"50":19,"51":229,"59":21,"60":8,"61":67,"62":20,"63":3,"64":147,"67":14,"73":3,"87":3,"89":15,"90":8,"92":4,"94":111,"99":11,"101":11,"102":28,"103":22,"104":25,"105":14,"108":2755,"109":234}},"geometry":{"type":"Point","coordinates":[-73.97993025573932,40.72258497209659]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002602","ancestry":{"1":4377,"5":26,"6":148,"8":31,"10":47,"11":70,"15":78,"19":122,"21":75,"23":61,"26":18,"32":13,"34":37,"35":124,"36":146,"38":100,"40":170,"41":34,"42":269,"44":115,"46":60,"49":424,"51":469,"53":91,"55":18,"58":76,"61":152,"62":25,"63":7,"64":78,"67":80,"89":77,"90":10,"93":60,"94":63,"101":63,"108":1940,"109":217}},"geometry":{"type":"Point","coordinates":[-73.97861595798025,40.724390088944226]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002700","ancestry":{"1":1238,"5":6,"6":9,"11":9,"26":4,"35":12,"36":29,"40":29,"41":4,"42":25,"44":9,"49":9,"51":61,"53":9,"59":2,"61":19,"64":23,"67":6,"89":15,"108":834,"109":221}},"geometry":{"type":"Point","coordinates":[-73.99901209397494,40.71255078395224]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002800","ancestry":{"1":7409,"5":58,"6":67,"10":39,"14":28,"18":76,"22":22,"26":8,"30":14,"31":56,"33":36,"35":87,"36":241,"38":77,"40":84,"41":16,"42":211,"44":25,"45":33,"49":388,"51":428,"58":9,"59":44,"61":254,"62":12,"64":79,"66":15,"67":42,"71":11,"73":211,"83":23,"87":117,"88":71,"89":14,"90":48,"91":15,"92":14,"93":11,"94":22,"101":12,"102":4,"103":6,"108":5301,"109":182}},"geometry":{"type":"Point","coordinates":[-73.97681236327159,40.72686318766197]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061002900","ancestry":{"1":5841,"2":13,"3":14,"5":99,"18":17,"23":13,"27":1,"33":47,"35":28,"36":22,"40":29,"41":14,"42":45,"44":1,"49":56,"50":14,"51":80,"59":12,"64":9,"67":30,"73":32,"76":8,"79":12,"87":12,"91":14,"94":78,"99":14,"101":1,"102":64,"105":13,"108":4735,"109":581}},"geometry":{"type":"Point","coordinates":[-74.0005400009154,40.7141595533595]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003001","ancestry":{"1":4215,"5":102,"6":56,"10":23,"11":17,"13":16,"18":15,"21":16,"23":47,"26":37,"28":19,"33":16,"35":73,"36":136,"38":228,"40":87,"41":37,"42":264,"46":77,"49":465,"50":10,"51":186,"53":12,"59":60,"61":131,"64":141,"66":16,"67":20,"70":30,"71":16,"73":32,"74":16,"83":16,"89":157,"92":8,"93":13,"94":27,"101":27,"108":2158,"109":351}},"geometry":{"type":"Point","coordinates":[-73.98683870798561,40.721005659696935]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003100","ancestry":{"1":2701,"5":180,"6":3,"10":3,"16":5,"18":5,"22":35,"23":8,"24":13,"26":16,"33":6,"34":13,"35":22,"36":105,"38":5,"39":5,"40":12,"42":103,"44":55,"46":52,"48":21,"49":112,"51":117,"59":22,"61":49,"62":9,"64":38,"65":4,"67":20,"73":37,"76":7,"79":8,"87":22,"89":10,"91":21,"92":11,"94":13,"102":13,"108":1117,"109":741}},"geometry":{"type":"Point","coordinates":[-74.00381499821653,40.715310993486405]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003300","ancestry":{"1":5262,"5":260,"6":39,"12":11,"13":9,"15":30,"16":60,"19":53,"23":112,"26":32,"29":17,"31":50,"33":29,"34":78,"35":151,"36":509,"38":267,"40":88,"41":12,"42":618,"44":46,"46":60,"47":18,"48":83,"49":628,"51":494,"52":11,"57":10,"58":39,"59":66,"60":27,"61":165,"64":447,"66":91,"67":138,"73":38,"75":18,"76":20,"89":63,"90":59,"92":36,"93":29,"94":26,"102":26,"108":1754,"109":413}},"geometry":{"type":"Point","coordinates":[-74.00614633704606,40.718862436032545]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003601","ancestry":{"1":3266,"5":286,"6":22,"15":22,"16":64,"18":19,"19":23,"23":4,"24":36,"29":3,"31":15,"34":32,"35":7,"36":51,"38":20,"39":6,"40":58,"42":80,"44":16,"45":10,"46":22,"48":9,"49":193,"51":156,"52":15,"61":69,"64":83,"67":23,"73":42,"87":31,"88":11,"89":2,"94":173,"102":44,"103":73,"105":56,"107":3,"108":1819,"109":294}},"geometry":{"type":"Point","coordinates":[-73.99113968149379,40.722322211356186]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003800","ancestry":{"1":8407,"5":250,"6":27,"7":6,"11":21,"19":192,"22":48,"23":76,"26":38,"31":10,"33":83,"34":163,"35":53,"36":672,"38":303,"40":286,"41":95,"42":935,"44":16,"46":148,"48":23,"49":1019,"51":784,"52":39,"53":41,"59":39,"61":541,"62":115,"63":12,"64":445,"66":16,"67":213,"68":14,"70":32,"71":17,"73":108,"75":58,"83":46,"87":4,"89":30,"90":71,"92":400,"93":106,"94":39,"102":33,"103":3,"105":3,"107":29,"108":3021,"109":803}},"geometry":{"type":"Point","coordinates":[-73.98846556250452,40.727366956955514]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061003900","ancestry":{"1":5155,"3":13,"5":255,"6":163,"7":10,"10":60,"11":93,"19":18,"23":73,"24":31,"26":38,"29":13,"31":14,"33":75,"34":73,"35":110,"36":403,"38":35,"40":137,"41":28,"42":292,"44":17,"46":79,"49":565,"50":38,"51":590,"56":14,"59":26,"61":481,"63":57,"64":441,"65":3,"66":52,"67":120,"68":48,"89":53,"91":58,"92":64,"93":15,"94":34,"99":18,"105":16,"108":1968,"109":275}},"geometry":{"type":"Point","coordinates":[-74.01058692710903,40.720789254773834]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004200","ancestry":{"1":5045,"5":182,"6":74,"10":65,"13":9,"18":20,"19":51,"22":17,"23":27,"26":32,"31":13,"32":9,"33":43,"34":21,"35":81,"36":244,"38":69,"40":64,"41":31,"42":215,"44":19,"46":58,"49":375,"50":30,"51":250,"52":9,"53":22,"58":9,"59":108,"61":194,"62":7,"63":34,"64":258,"66":13,"67":14,"70":13,"89":5,"90":36,"92":38,"93":76,"94":15,"95":15,"108":1676,"109":1523}},"geometry":{"type":"Point","coordinates":[-73.989367897859,40.731803562462886]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004300","ancestry":{"1":4308,"5":185,"6":82,"10":68,"13":14,"16":18,"18":16,"19":24,"23":43,"24":34,"31":15,"33":39,"34":111,"35":17,"36":108,"38":62,"39":16,"40":167,"41":47,"42":359,"44":115,"46":19,"49":459,"51":530,"53":27,"59":83,"61":177,"62":13,"63":9,"64":214,"67":42,"73":1,"88":1,"89":77,"90":9,"108":2035,"109":245}},"geometry":{"type":"Point","coordinates":[-73.99546626121717,40.7233237293987]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008602","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.96731469347068,40.75034711850819]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004500","ancestry":{"1":1010,"5":25,"6":29,"10":18,"15":11,"22":10,"29":6,"31":5,"33":5,"34":18,"35":20,"36":47,"38":80,"40":57,"42":101,"44":5,"46":25,"49":54,"51":116,"56":6,"58":27,"59":15,"61":36,"63":5,"64":44,"67":14,"68":8,"70":2,"73":9,"83":9,"89":36,"90":7,"92":16,"93":5,"108":381,"109":83}},"geometry":{"type":"Point","coordinates":[-73.9993911813922,40.720570134217745]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004700","ancestry":{"1":2397,"5":102,"16":14,"18":19,"19":19,"23":61,"26":31,"29":11,"34":19,"35":58,"36":265,"38":120,"40":139,"41":38,"42":224,"44":44,"46":11,"47":6,"49":412,"51":153,"53":23,"57":15,"58":11,"59":22,"60":25,"61":266,"62":49,"64":165,"66":45,"67":41,"89":22,"90":19,"91":14,"92":21,"93":33,"94":17,"105":17,"107":11,"108":547,"109":214}},"geometry":{"type":"Point","coordinates":[-74.0028627799712,40.72241899269948]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061004900","ancestry":{"1":4544,"5":80,"6":73,"8":15,"10":37,"11":7,"12":15,"13":14,"15":37,"16":55,"21":26,"26":14,"31":33,"32":30,"33":28,"34":93,"35":46,"36":743,"38":14,"39":35,"40":291,"41":10,"42":521,"44":15,"46":15,"49":989,"51":619,"52":52,"53":21,"56":54,"59":50,"61":195,"62":51,"63":47,"64":273,"65":23,"67":83,"70":2,"73":31,"75":31,"89":53,"90":41,"91":49,"92":27,"93":30,"108":879,"109":351}},"geometry":{"type":"Point","coordinates":[-74.00048020915327,40.72506073352283]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005400","ancestry":{"1":4533,"5":161,"6":31,"8":15,"9":16,"19":62,"22":12,"23":94,"24":43,"26":2,"29":9,"31":28,"34":37,"35":388,"36":362,"38":120,"40":172,"41":22,"42":443,"44":24,"46":25,"48":19,"49":378,"50":59,"51":647,"58":34,"59":13,"60":14,"61":380,"64":286,"66":104,"67":136,"89":9,"92":60,"93":25,"94":4,"105":4,"108":1514,"109":485}},"geometry":{"type":"Point","coordinates":[-73.9936779628946,40.738811219880496]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005501","ancestry":{"1":5060,"5":137,"6":77,"10":9,"14":68,"19":62,"20":7,"21":10,"22":15,"23":88,"29":15,"31":15,"34":158,"35":255,"36":332,"38":245,"39":19,"40":155,"41":67,"42":422,"44":14,"46":54,"48":69,"49":445,"50":26,"51":251,"53":10,"59":56,"61":666,"63":50,"64":407,"66":36,"67":135,"68":14,"89":108,"90":11,"91":46,"92":55,"93":31,"94":54,"102":41,"105":13,"107":22,"108":1220,"109":618}},"geometry":{"type":"Point","coordinates":[-73.99708301776936,40.72767333736394]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005600","ancestry":{"1":2734,"5":131,"6":19,"7":3,"13":14,"14":2,"16":30,"18":41,"19":50,"21":7,"23":38,"34":15,"35":59,"36":96,"38":44,"40":40,"42":130,"44":45,"46":15,"48":23,"49":145,"51":365,"58":17,"59":6,"61":159,"63":43,"64":260,"66":13,"67":8,"73":14,"83":14,"89":39,"92":27,"94":2,"101":2,"108":1315,"109":158}},"geometry":{"type":"Point","coordinates":[-73.9872973454994,40.74179221463186]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005700","ancestry":{"1":2928,"3":154,"5":97,"16":24,"18":8,"19":57,"23":51,"31":50,"34":6,"35":89,"36":86,"38":150,"40":98,"42":174,"44":43,"46":20,"49":185,"51":235,"53":46,"55":130,"59":11,"61":289,"62":12,"63":44,"64":569,"65":28,"67":8,"70":10,"73":26,"87":26,"89":19,"91":44,"92":24,"93":35,"94":19,"97":11,"102":8,"108":674,"109":310}},"geometry":{"type":"Point","coordinates":[-73.99239114156127,40.72941596754989]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061005800","ancestry":{"1":3006,"5":143,"6":16,"13":16,"19":16,"23":48,"29":17,"31":61,"34":46,"35":34,"36":170,"38":35,"40":60,"41":14,"42":288,"44":48,"47":15,"48":66,"49":296,"50":18,"51":208,"53":50,"59":18,"61":285,"64":183,"67":28,"68":25,"73":2,"87":2,"89":33,"90":82,"92":34,"108":1068,"109":522}},"geometry":{"type":"Point","coordinates":[-73.99051720302761,40.74314980582421]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006000","ancestry":{"1":5026,"5":204,"6":41,"8":17,"9":8,"10":16,"19":32,"22":18,"23":57,"26":19,"31":15,"33":23,"34":55,"35":110,"36":269,"38":207,"40":158,"41":4,"42":499,"44":49,"46":65,"48":155,"49":1125,"50":50,"51":604,"53":16,"59":28,"61":187,"62":64,"64":309,"67":26,"71":8,"73":121,"87":121,"89":82,"90":17,"91":114,"92":146,"93":12,"108":1527,"109":177}},"geometry":{"type":"Point","coordinates":[-73.97657051048935,40.73468009501696]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061006000","ancestry":{"1":5026,"5":204,"6":41,"8":17,"9":8,"10":16,"19":32,"22":18,"23":57,"26":19,"31":15,"33":23,"34":55,"35":110,"36":269,"38":207,"40":158,"41":4,"42":499,"44":49,"46":65,"48":155,"49":1125,"50":50,"51":604,"53":16,"59":28,"61":187,"62":64,"64":309,"67":26,"71":8,"73":121,"87":121,"89":82,"90":17,"91":114,"92":146,"93":12,"108":1527,"109":177}},"geometry":{"type":"Point","coordinates":[-73.96106388437595,40.72883048819536]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006100","ancestry":{"1":4997,"5":285,"6":63,"11":11,"13":41,"15":11,"18":41,"19":121,"21":10,"22":39,"23":13,"26":16,"31":22,"32":15,"33":7,"34":13,"35":288,"36":304,"38":112,"40":193,"41":9,"42":393,"49":618,"51":390,"61":523,"64":325,"66":43,"67":116,"70":12,"89":70,"92":69,"93":13,"94":15,"102":15,"108":1290,"109":1022}},"geometry":{"type":"Point","coordinates":[-73.99232930717984,40.733707627380944]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006200","ancestry":{"1":4559,"5":250,"6":83,"7":70,"12":8,"14":43,"16":30,"18":27,"19":21,"20":18,"21":8,"23":18,"26":74,"28":10,"29":11,"32":10,"33":25,"34":9,"35":64,"36":112,"38":73,"39":15,"40":204,"41":17,"42":141,"44":5,"48":62,"49":199,"50":22,"51":192,"53":48,"61":118,"62":9,"64":186,"67":20,"68":21,"73":23,"83":13,"87":10,"89":44,"91":46,"92":56,"94":36,"101":32,"102":4,"107":10,"108":2200,"109":664}},"geometry":{"type":"Point","coordinates":[-73.97445473272124,40.73892737063431]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36061006200","ancestry":{"1":4559,"5":250,"6":83,"7":70,"12":8,"14":43,"16":30,"18":27,"19":21,"20":18,"21":8,"23":18,"26":74,"28":10,"29":11,"32":10,"33":25,"34":9,"35":64,"36":112,"38":73,"39":15,"40":204,"41":17,"42":141,"44":5,"48":62,"49":199,"50":22,"51":192,"53":48,"61":118,"62":9,"64":186,"67":20,"68":21,"73":23,"83":13,"87":10,"89":44,"91":46,"92":56,"94":36,"101":32,"102":4,"107":10,"108":2200,"109":664}},"geometry":{"type":"Point","coordinates":[-73.96192329919053,40.73205714862601]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36061006200","ancestry":{"1":4559,"5":250,"6":83,"7":70,"12":8,"14":43,"16":30,"18":27,"19":21,"20":18,"21":8,"23":18,"26":74,"28":10,"29":11,"32":10,"33":25,"34":9,"35":64,"36":112,"38":73,"39":15,"40":204,"41":17,"42":141,"44":5,"48":62,"49":199,"50":22,"51":192,"53":48,"61":118,"62":9,"64":186,"67":20,"68":21,"73":23,"83":13,"87":10,"89":44,"91":46,"92":56,"94":36,"101":32,"102":4,"107":10,"108":2200,"109":664}},"geometry":{"type":"Point","coordinates":[-73.96261876572684,40.739006205275096]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006400","ancestry":{"1":7634,"5":464,"6":23,"10":23,"19":64,"21":21,"22":10,"23":59,"26":15,"27":3,"29":20,"31":30,"32":77,"34":40,"35":181,"36":328,"37":17,"38":238,"39":13,"40":68,"41":14,"42":835,"44":54,"46":177,"49":776,"50":118,"51":605,"53":71,"61":436,"62":22,"63":79,"64":793,"66":45,"67":142,"70":21,"73":43,"87":43,"89":79,"90":52,"91":21,"92":13,"93":136,"94":104,"103":21,"105":83,"108":2323,"109":967}},"geometry":{"type":"Point","coordinates":[-73.981456959431,40.73694878379979]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006500","ancestry":{"1":6142,"3":40,"5":157,"6":171,"7":15,"10":60,"12":5,"15":91,"16":15,"18":47,"19":10,"21":24,"22":24,"23":50,"24":14,"26":37,"29":30,"31":43,"34":15,"35":88,"36":454,"38":33,"40":190,"41":55,"42":589,"44":11,"47":72,"48":51,"49":883,"50":113,"51":927,"53":60,"59":33,"61":404,"62":158,"63":15,"64":284,"65":19,"66":65,"67":142,"71":6,"73":75,"75":48,"79":13,"87":14,"89":36,"91":27,"92":117,"94":52,"101":52,"108":1256,"109":991}},"geometry":{"type":"Point","coordinates":[-73.99957733185055,40.72996849862638]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006700","ancestry":{"1":5006,"5":223,"6":40,"12":40,"16":11,"18":17,"19":80,"22":19,"23":32,"28":14,"31":18,"33":17,"34":99,"35":109,"36":765,"38":44,"39":108,"40":206,"42":843,"44":62,"46":110,"49":715,"50":16,"51":902,"53":56,"57":8,"58":16,"59":28,"61":244,"63":34,"64":276,"65":36,"66":53,"67":159,"68":13,"69":14,"70":12,"73":12,"79":12,"89":94,"92":75,"93":66,"94":16,"102":16,"108":1045,"109":455}},"geometry":{"type":"Point","coordinates":[-74.00412044606377,40.730451323054616]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006800","ancestry":{"1":6973,"5":339,"16":33,"19":189,"23":30,"26":29,"29":60,"34":16,"35":115,"36":473,"38":266,"39":58,"40":114,"42":475,"44":36,"46":271,"49":518,"51":447,"58":9,"61":558,"63":16,"64":497,"65":33,"66":65,"67":87,"70":17,"89":149,"90":24,"92":15,"93":46,"107":37,"108":2294,"109":1372}},"geometry":{"type":"Point","coordinates":[-73.98408025915418,40.740436617343946]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061006900","ancestry":{"1":2684,"5":73,"6":25,"12":13,"15":12,"18":53,"19":11,"22":12,"33":7,"34":49,"35":64,"36":226,"38":48,"39":9,"40":105,"42":322,"44":38,"46":40,"49":313,"50":23,"51":310,"52":18,"53":11,"59":18,"61":151,"62":16,"63":22,"64":177,"66":20,"67":53,"73":25,"83":25,"92":34,"93":12,"108":703,"109":390}},"geometry":{"type":"Point","coordinates":[-74.00999809525962,40.730379113729064]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007000","ancestry":{"1":7977,"5":400,"6":67,"7":47,"13":20,"16":13,"19":416,"23":64,"25":20,"26":19,"29":32,"31":95,"33":21,"34":43,"35":211,"36":480,"37":16,"38":294,"40":23,"41":31,"42":474,"44":64,"46":252,"48":52,"49":963,"50":81,"51":1019,"52":6,"55":20,"61":236,"63":71,"64":574,"66":14,"67":144,"71":15,"73":14,"83":14,"91":138,"92":127,"94":19,"105":19,"108":2697,"109":1127}},"geometry":{"type":"Point","coordinates":[-73.97696138574206,40.74318496693856]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007100","ancestry":{"1":5987,"5":170,"6":60,"10":13,"11":14,"15":33,"18":29,"19":101,"23":137,"26":34,"31":14,"33":13,"34":93,"35":29,"36":375,"38":142,"40":179,"41":103,"42":828,"44":202,"46":35,"49":871,"50":17,"51":613,"52":42,"53":89,"58":14,"59":9,"61":589,"63":60,"64":574,"65":40,"66":43,"67":205,"70":44,"73":24,"83":12,"87":12,"89":16,"90":56,"91":4,"92":84,"93":28,"108":1632,"109":555}},"geometry":{"type":"Point","coordinates":[-73.9999138640594,40.73544768973597]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007300","ancestry":{"1":5774,"5":152,"6":47,"8":12,"11":35,"19":208,"23":89,"26":91,"29":125,"31":11,"33":71,"34":118,"35":89,"36":1008,"38":60,"40":221,"41":19,"42":780,"44":83,"46":248,"48":12,"49":930,"50":47,"51":677,"53":31,"59":69,"61":436,"63":164,"64":475,"65":22,"66":174,"67":165,"73":23,"87":23,"89":60,"90":30,"92":71,"93":38,"94":43,"105":43,"107":12,"108":1205,"109":268}},"geometry":{"type":"Point","coordinates":[-74.00410650548123,40.73411464386684]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047043700","ancestry":{"1":6063,"5":239,"23":38,"31":6,"36":35,"39":17,"40":43,"42":32,"46":6,"49":162,"51":180,"61":31,"64":35,"66":36,"67":20,"73":144,"87":144,"94":426,"99":89,"101":171,"102":76,"103":43,"105":60,"108":4602,"109":475}},"geometry":{"type":"Point","coordinates":[-73.90842394273953,40.693245037682665]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007500","ancestry":{"1":4554,"5":210,"6":92,"10":48,"13":24,"15":44,"19":135,"21":22,"22":18,"23":11,"26":18,"29":12,"31":10,"33":21,"34":125,"35":79,"36":326,"38":29,"40":199,"41":43,"42":629,"44":19,"46":65,"48":15,"49":615,"50":58,"51":751,"58":22,"59":19,"61":248,"62":19,"63":37,"64":351,"66":29,"67":124,"70":121,"89":21,"90":28,"91":48,"92":39,"93":17,"94":2,"105":2,"107":19,"108":1207,"109":369}},"geometry":{"type":"Point","coordinates":[-74.00873723396649,40.73438537289735]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007600","ancestry":{"1":2065,"5":27,"6":16,"10":16,"16":11,"19":68,"21":25,"22":26,"23":17,"30":5,"32":24,"33":9,"35":10,"36":201,"40":53,"42":247,"44":55,"46":9,"48":15,"49":159,"50":20,"51":142,"53":9,"61":40,"64":131,"66":19,"67":28,"71":15,"73":27,"87":27,"89":6,"91":30,"94":18,"105":18,"108":972,"109":226}},"geometry":{"type":"Point","coordinates":[-73.98729801138585,40.74756722724538]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007800","ancestry":{"1":7640,"5":509,"6":259,"7":23,"10":236,"16":101,"19":59,"22":23,"23":32,"24":6,"29":44,"31":55,"33":72,"34":56,"35":401,"36":312,"38":40,"39":17,"40":167,"41":71,"42":288,"44":54,"46":47,"48":14,"49":442,"51":742,"56":11,"61":538,"62":23,"64":683,"66":54,"67":47,"68":36,"69":56,"70":31,"73":184,"88":184,"89":103,"90":55,"92":232,"94":69,"95":50,"102":19,"108":3135,"109":387}},"geometry":{"type":"Point","coordinates":[-73.97467287488209,40.746323505151565]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061007900","ancestry":{"1":4607,"5":191,"19":46,"23":124,"26":10,"31":15,"33":18,"34":362,"35":78,"36":689,"38":95,"39":223,"40":77,"41":22,"42":871,"44":14,"46":86,"49":544,"50":47,"51":424,"52":42,"53":51,"56":34,"58":41,"59":31,"61":263,"62":15,"63":22,"64":263,"65":17,"66":43,"67":201,"89":52,"91":9,"92":162,"93":28,"108":985,"109":427}},"geometry":{"type":"Point","coordinates":[-74.00833505845122,40.73909205283732]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008100","ancestry":{"1":8799,"2":89,"5":167,"6":127,"8":77,"10":26,"12":24,"13":24,"16":110,"19":15,"23":32,"24":24,"26":39,"29":29,"32":28,"33":23,"34":21,"35":158,"36":671,"38":457,"40":280,"41":38,"42":1062,"44":65,"46":159,"48":32,"49":831,"51":1097,"53":53,"58":32,"59":57,"61":569,"62":86,"64":563,"65":88,"66":194,"67":175,"68":22,"73":14,"87":14,"89":183,"90":30,"91":77,"92":35,"93":72,"94":140,"101":84,"102":90,"108":2633,"109":1127}},"geometry":{"type":"Point","coordinates":[-73.99877128933488,40.73980529296276]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008400","ancestry":{"1":1885,"5":75,"6":34,"7":5,"10":3,"11":14,"14":8,"15":9,"18":4,"19":16,"22":10,"23":13,"26":5,"29":10,"31":26,"33":26,"34":8,"35":28,"36":64,"40":8,"42":101,"46":5,"48":16,"49":111,"51":98,"59":5,"61":26,"64":86,"67":22,"73":25,"87":25,"89":19,"93":14,"108":1161,"109":153}},"geometry":{"type":"Point","coordinates":[-73.98409419461741,40.75196947022029]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008700","ancestry":{"1":7302,"5":142,"6":32,"10":32,"18":28,"19":36,"21":68,"22":25,"23":127,"26":43,"29":22,"33":22,"34":46,"35":164,"36":477,"38":286,"39":22,"40":283,"41":114,"42":868,"44":114,"46":245,"48":17,"49":588,"51":557,"55":220,"58":82,"59":31,"61":239,"62":29,"64":810,"66":20,"67":64,"68":76,"89":51,"91":70,"92":74,"107":100,"108":2692,"109":665}},"geometry":{"type":"Point","coordinates":[-73.99699618695601,40.74224391120951]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061008800","ancestry":{"1":6747,"3":31,"5":307,"6":106,"10":55,"11":21,"15":30,"16":104,"18":20,"19":113,"22":35,"23":134,"26":19,"31":107,"34":48,"35":83,"36":438,"38":357,"40":342,"42":736,"44":169,"45":26,"46":97,"49":565,"50":29,"51":687,"53":19,"59":82,"60":9,"61":172,"62":116,"63":30,"64":385,"65":10,"66":20,"67":83,"89":92,"90":30,"92":74,"93":61,"94":46,"102":21,"106":25,"108":2450,"109":468}},"geometry":{"type":"Point","coordinates":[-73.9723846821704,40.7494996687413]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009000","ancestry":{"1":7194,"5":444,"6":302,"7":63,"8":114,"9":25,"11":23,"13":19,"14":58,"16":26,"19":38,"21":32,"23":102,"26":20,"29":13,"31":7,"33":22,"34":77,"35":203,"36":448,"38":32,"39":31,"40":132,"41":107,"42":529,"44":51,"46":36,"49":502,"51":537,"59":38,"61":227,"62":24,"63":9,"64":395,"65":37,"66":27,"67":74,"73":27,"75":17,"87":10,"89":104,"90":21,"91":53,"92":11,"94":19,"101":9,"102":10,"107":181,"108":2968,"109":684}},"geometry":{"type":"Point","coordinates":[-73.97009391205349,40.75265855680359]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009200","ancestry":{"1":1700,"5":55,"6":21,"14":21,"16":24,"19":9,"21":7,"22":7,"23":26,"31":8,"34":4,"35":21,"36":133,"38":22,"40":28,"42":134,"44":50,"46":17,"48":8,"49":187,"50":8,"51":236,"52":7,"61":86,"63":11,"64":85,"66":6,"67":48,"90":9,"94":12,"99":4,"102":8,"105":8,"108":675,"109":118}},"geometry":{"type":"Point","coordinates":[-73.97474219951512,40.753647591010576]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009300","ancestry":{"1":10583,"5":205,"16":219,"18":25,"19":137,"21":33,"22":97,"23":25,"31":37,"33":14,"34":161,"35":148,"36":1028,"38":68,"40":57,"41":8,"42":628,"44":151,"45":33,"46":153,"49":1082,"50":190,"51":1505,"52":68,"53":62,"58":24,"59":78,"61":975,"62":21,"63":21,"64":683,"66":115,"67":261,"73":1185,"79":5,"88":1180,"89":133,"90":44,"92":75,"93":38,"94":79,"102":79,"108":3151,"109":1217}},"geometry":{"type":"Point","coordinates":[-74.00087525770901,40.74711190019062]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009400","ancestry":{"1":33,"6":3,"10":3,"34":4,"40":4,"48":3,"49":13,"51":3,"108":4,"109":10}},"geometry":{"type":"Point","coordinates":[-73.97774630166542,40.75522796048391]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009600","ancestry":{"1":147,"6":9,"7":9,"42":9,"44":4,"49":32,"61":4,"64":7,"90":3,"92":4,"108":53,"109":30}},"geometry":{"type":"Point","coordinates":[-73.98088607602816,40.75637477961812]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009800","ancestry":{"1":7233,"3":68,"5":565,"6":88,"7":46,"10":28,"13":42,"18":55,"19":94,"23":117,"26":25,"31":13,"33":62,"34":179,"36":499,"38":54,"40":198,"42":557,"44":44,"45":17,"46":117,"48":27,"49":890,"51":748,"53":109,"60":43,"61":303,"63":144,"64":411,"66":83,"67":304,"70":48,"89":118,"91":39,"108":2022,"109":879}},"geometry":{"type":"Point","coordinates":[-73.96777449867807,40.755788035050045]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061009900","ancestry":{"1":4042,"5":89,"6":17,"10":17,"16":7,"19":53,"22":10,"23":49,"24":16,"26":24,"30":7,"31":8,"32":22,"33":27,"34":57,"35":31,"36":436,"38":21,"39":6,"40":70,"41":65,"42":396,"44":51,"46":52,"48":9,"49":534,"50":9,"51":370,"53":15,"57":10,"59":41,"61":149,"62":44,"63":119,"64":180,"65":5,"66":12,"67":155,"68":23,"71":9,"73":49,"79":24,"87":25,"89":30,"90":8,"91":40,"92":9,"93":9,"94":45,"101":9,"102":11,"103":15,"105":10,"108":1736,"109":239}},"geometry":{"type":"Point","coordinates":[-74.00488371327499,40.75201406029104]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010000","ancestry":{"1":1826,"5":131,"6":29,"10":29,"18":24,"23":39,"31":14,"32":11,"34":10,"35":69,"36":95,"38":43,"40":60,"41":11,"42":33,"44":81,"46":13,"49":141,"51":199,"57":6,"59":32,"61":86,"62":11,"63":29,"64":70,"66":5,"67":10,"73":1,"87":1,"89":33,"92":10,"94":7,"99":7,"108":751,"109":133}},"geometry":{"type":"Point","coordinates":[-73.97123178899116,40.75806528800457]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010200","ancestry":{"1":225,"5":69,"6":16,"10":16,"36":5,"40":8,"42":10,"44":72,"49":12,"51":8,"62":8,"63":4,"64":4,"73":2,"79":2,"87":2,"93":5,"108":15,"109":5}},"geometry":{"type":"Point","coordinates":[-73.97444931653739,40.759423831556084]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010300","ancestry":{"1":1999,"3":4,"18":7,"22":19,"23":10,"26":25,"29":22,"31":51,"32":3,"33":46,"34":22,"35":35,"36":125,"38":24,"39":9,"40":55,"42":262,"44":13,"45":29,"49":215,"50":9,"51":193,"61":55,"62":9,"63":5,"64":69,"67":51,"68":16,"70":6,"73":102,"77":44,"87":72,"88":30,"89":16,"92":21,"93":28,"94":18,"100":5,"102":13,"108":792,"109":208}},"geometry":{"type":"Point","coordinates":[-73.9972172388969,40.752135061233695]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061010400","ancestry":{"1":1021,"2":7,"5":58,"6":14,"14":5,"15":9,"16":9,"19":13,"20":16,"21":5,"28":4,"31":6,"32":28,"34":5,"35":4,"36":76,"38":9,"40":40,"42":58,"46":5,"48":6,"49":77,"51":43,"58":4,"59":5,"61":22,"62":14,"63":5,"64":60,"67":4,"68":4,"89":15,"90":24,"92":14,"93":3,"94":10,"103":10,"108":399,"109":135}},"geometry":{"type":"Point","coordinates":[-73.97767287859843,40.76077908829679]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011401","ancestry":{"1":1337,"3":72,"5":245,"6":6,"15":6,"19":23,"22":11,"23":83,"26":9,"31":7,"34":15,"36":146,"38":36,"40":104,"42":123,"44":44,"46":13,"49":86,"50":5,"51":36,"61":66,"62":25,"64":113,"66":13,"67":27,"70":12,"89":21,"90":18,"91":6,"92":48,"93":20,"94":20,"99":20,"108":231,"109":77}},"geometry":{"type":"Point","coordinates":[-73.97049389447207,40.76484022766349]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011402","ancestry":{"1":2385,"5":193,"6":62,"10":26,"14":9,"15":27,"19":35,"22":25,"23":27,"26":18,"31":8,"33":8,"34":75,"35":27,"36":241,"38":64,"40":99,"41":8,"42":337,"44":28,"46":27,"49":259,"50":35,"51":160,"53":19,"59":18,"61":136,"62":25,"63":37,"64":228,"65":9,"66":19,"67":31,"73":11,"79":11,"89":22,"90":37,"91":10,"92":75,"108":648,"109":95}},"geometry":{"type":"Point","coordinates":[-73.96727885967327,40.76348305379544]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011500","ancestry":{"1":2688,"5":12,"16":31,"19":122,"22":9,"23":69,"26":6,"29":8,"31":8,"34":18,"35":60,"36":114,"38":8,"39":9,"40":16,"41":9,"42":210,"44":47,"45":2,"46":54,"49":216,"50":14,"51":154,"53":9,"61":71,"62":19,"63":17,"64":16,"65":14,"66":7,"67":27,"70":27,"73":38,"78":7,"87":31,"89":25,"91":28,"92":11,"108":1425,"109":256}},"geometry":{"type":"Point","coordinates":[-73.99354860901352,40.75716792770458]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011700","ancestry":{"1":3535,"3":84,"5":120,"19":25,"23":74,"24":17,"26":14,"33":15,"34":16,"36":219,"38":51,"40":222,"41":8,"42":304,"44":22,"46":32,"49":251,"51":417,"61":106,"63":31,"64":167,"71":14,"73":158,"79":117,"87":41,"89":50,"90":54,"91":12,"93":7,"94":36,"101":36,"108":1656,"109":280}},"geometry":{"type":"Point","coordinates":[-73.99964297289975,40.759795790375996]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061011900","ancestry":{"1":1071,"5":24,"6":8,"13":8,"22":9,"39":12,"40":10,"41":25,"42":59,"46":8,"49":95,"51":85,"53":9,"61":35,"64":53,"67":54,"73":98,"87":98,"91":28,"92":8,"94":95,"101":56,"102":39,"108":476,"109":55}},"geometry":{"type":"Point","coordinates":[-73.98602468210369,40.75731511652661]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012000","ancestry":{"1":3282,"5":671,"6":59,"7":39,"10":12,"15":8,"19":55,"21":15,"23":36,"34":20,"35":97,"36":334,"38":81,"40":174,"42":359,"46":61,"48":16,"49":420,"50":13,"51":189,"52":11,"53":25,"59":17,"61":178,"62":59,"63":12,"64":245,"66":12,"67":15,"73":12,"83":12,"91":56,"92":34,"93":14,"94":19,"102":13,"105":6,"108":574,"109":335}},"geometry":{"type":"Point","coordinates":[-73.96476725162692,40.76692640431877]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012100","ancestry":{"1":8288,"5":242,"6":79,"10":51,"14":28,"18":61,"19":114,"21":22,"23":10,"26":26,"28":42,"32":27,"34":47,"35":90,"36":1095,"38":118,"39":10,"40":331,"41":58,"42":734,"44":14,"46":54,"49":1295,"50":74,"51":1209,"53":15,"57":41,"59":42,"61":392,"62":208,"63":32,"64":600,"66":44,"67":58,"68":38,"69":19,"70":23,"71":15,"90":25,"91":10,"92":10,"93":85,"94":42,"97":10,"102":32,"108":3011,"109":596}},"geometry":{"type":"Point","coordinates":[-73.99170043074116,40.759709163130516]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012400","ancestry":{"1":10397,"3":16,"5":1345,"6":172,"7":45,"10":21,"11":28,"12":22,"14":34,"15":22,"16":250,"19":49,"23":16,"26":37,"30":16,"31":36,"32":32,"35":269,"36":612,"38":59,"39":93,"40":579,"42":863,"44":116,"46":63,"48":159,"49":950,"50":107,"51":800,"56":59,"58":40,"59":71,"61":244,"62":46,"63":216,"64":649,"66":35,"67":31,"70":21,"73":60,"75":34,"87":26,"89":14,"91":21,"92":169,"94":92,"96":24,"104":68,"107":21,"108":3395,"109":889}},"geometry":{"type":"Point","coordinates":[-73.95383584613018,40.76669952563194]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012700","ancestry":{"1":6635,"5":323,"6":12,"10":12,"19":70,"22":160,"23":32,"26":39,"29":14,"32":27,"34":43,"35":19,"36":553,"38":89,"40":97,"41":8,"42":608,"44":102,"45":21,"46":20,"48":22,"49":820,"51":397,"52":23,"59":21,"61":351,"62":25,"63":112,"64":407,"65":23,"66":28,"67":141,"70":61,"73":3,"87":3,"89":95,"92":131,"93":20,"94":26,"101":15,"102":11,"108":2632,"109":650}},"geometry":{"type":"Point","coordinates":[-73.9898560468088,40.76223701567086]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012800","ancestry":{"1":5875,"5":574,"6":30,"8":15,"12":15,"16":13,"19":132,"21":88,"23":31,"24":15,"29":15,"31":61,"32":14,"35":259,"36":483,"38":340,"40":267,"41":7,"42":452,"44":142,"46":124,"49":522,"51":352,"53":16,"54":20,"57":10,"58":11,"59":70,"61":400,"62":99,"64":802,"65":14,"66":77,"67":88,"89":58,"90":34,"91":13,"92":42,"93":47,"108":1069,"109":679}},"geometry":{"type":"Point","coordinates":[-73.96151721432162,40.77138090505668]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061012900","ancestry":{"1":5285,"3":38,"5":94,"19":12,"21":21,"22":25,"23":134,"25":15,"29":14,"33":12,"34":60,"35":30,"36":276,"38":121,"39":7,"40":91,"42":722,"44":14,"46":12,"49":561,"51":665,"52":12,"54":12,"56":59,"59":98,"61":230,"62":25,"64":216,"65":39,"66":46,"67":84,"68":11,"73":19,"79":2,"86":12,"87":5,"90":35,"91":39,"92":10,"93":27,"94":65,"101":12,"102":50,"103":3,"107":37,"108":2139,"109":457}},"geometry":{"type":"Point","coordinates":[-73.99705870555287,40.76359300292985]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013000","ancestry":{"1":3693,"3":13,"5":780,"6":36,"9":13,"14":23,"19":58,"23":49,"26":9,"32":14,"33":10,"34":13,"35":155,"36":316,"38":281,"40":48,"41":19,"42":367,"44":71,"46":72,"48":10,"49":166,"50":36,"51":196,"53":25,"59":41,"61":95,"63":8,"64":345,"66":21,"67":27,"73":21,"83":21,"89":34,"92":12,"93":9,"108":764,"109":367}},"geometry":{"type":"Point","coordinates":[-73.96473313236679,40.77273640871977]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013200","ancestry":{"1":9869,"3":75,"5":1435,"6":13,"10":13,"16":13,"19":155,"21":35,"22":230,"23":53,"26":61,"31":169,"33":43,"34":116,"35":70,"36":507,"38":272,"39":43,"40":304,"41":62,"42":1161,"44":215,"45":111,"46":37,"49":1400,"50":34,"51":1060,"53":125,"59":126,"61":555,"62":38,"63":23,"64":380,"66":115,"67":95,"89":43,"90":65,"91":18,"92":39,"107":60,"108":2024,"109":1258}},"geometry":{"type":"Point","coordinates":[-73.95130173256062,40.76966846457365]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013300","ancestry":{"1":5226,"5":282,"6":27,"14":27,"18":23,"19":16,"21":10,"23":65,"26":4,"31":1,"33":23,"34":83,"35":70,"36":458,"38":103,"40":328,"41":30,"42":571,"44":90,"48":10,"49":525,"50":11,"51":648,"52":12,"57":1,"59":13,"61":121,"62":27,"64":145,"65":29,"66":15,"67":29,"70":17,"89":34,"90":11,"92":67,"93":67,"94":20,"101":12,"102":6,"103":2,"108":2217,"109":338}},"geometry":{"type":"Point","coordinates":[-73.98803518377262,40.76473807318303]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013400","ancestry":{"1":11195,"3":562,"5":1274,"6":163,"7":15,"10":18,"11":13,"13":53,"14":64,"17":53,"19":239,"22":202,"23":66,"24":48,"27":51,"29":13,"31":71,"32":16,"33":11,"34":142,"35":172,"36":545,"38":270,"39":21,"40":235,"41":10,"42":1316,"44":104,"46":58,"49":1091,"50":39,"51":1138,"53":95,"56":87,"59":112,"61":631,"63":123,"64":988,"66":73,"67":179,"69":204,"89":228,"90":45,"92":143,"108":2904,"109":989}},"geometry":{"type":"Point","coordinates":[-73.95616578537289,40.771701727529226]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013500","ancestry":{"1":6053,"5":343,"6":92,"7":13,"13":12,"14":54,"15":13,"16":29,"19":25,"21":13,"22":41,"23":25,"24":19,"31":46,"33":16,"34":89,"35":58,"36":153,"38":69,"39":23,"40":121,"42":275,"44":14,"45":44,"48":25,"49":589,"51":303,"52":11,"53":12,"59":46,"61":60,"64":121,"66":15,"67":54,"68":16,"73":142,"83":40,"87":102,"89":61,"90":13,"91":11,"92":25,"93":16,"94":43,"105":43,"107":9,"108":3489,"109":532}},"geometry":{"type":"Point","coordinates":[-73.99329542339152,40.768810133361995]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061013700","ancestry":{"1":6977,"5":416,"6":90,"7":74,"10":16,"19":104,"21":27,"22":83,"23":139,"26":24,"29":29,"34":22,"35":92,"36":345,"37":25,"38":135,"40":164,"42":862,"45":8,"46":11,"48":19,"49":680,"50":83,"51":869,"53":60,"57":10,"61":437,"62":75,"63":25,"64":515,"66":25,"67":55,"68":19,"70":12,"89":114,"90":64,"91":55,"92":17,"94":32,"102":16,"105":16,"107":33,"108":2000,"109":793}},"geometry":{"type":"Point","coordinates":[-73.98023375096686,40.76520699432469]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014000","ancestry":{"1":7633,"4":15,"5":863,"6":82,"7":31,"8":36,"10":15,"16":17,"19":182,"21":41,"23":279,"26":137,"29":17,"31":109,"33":14,"34":76,"35":279,"36":460,"37":14,"38":337,"39":15,"40":261,"42":769,"46":39,"48":34,"49":619,"50":43,"51":581,"52":54,"53":29,"56":69,"58":16,"59":14,"61":578,"63":77,"64":586,"66":54,"67":96,"70":12,"89":139,"90":37,"91":14,"92":79,"93":113,"107":110,"108":1815,"109":551}},"geometry":{"type":"Point","coordinates":[-73.95820998527397,40.775914134788486]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014300","ancestry":{"1":4,"108":1,"109":3}},"geometry":{"type":"Point","coordinates":[-73.96555390434834,40.78247745874529]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014401","ancestry":{"1":4956,"5":643,"6":87,"7":26,"10":8,"11":53,"19":82,"22":36,"23":91,"29":32,"31":10,"33":58,"34":69,"35":121,"36":297,"37":11,"38":92,"40":265,"42":506,"44":193,"46":83,"48":43,"49":525,"50":65,"51":619,"53":54,"54":16,"55":34,"56":74,"59":33,"61":263,"62":8,"63":35,"64":546,"66":29,"67":146,"68":42,"69":11,"89":58,"90":12,"91":18,"92":16,"93":12,"108":973,"109":371}},"geometry":{"type":"Point","coordinates":[-73.94755201569824,40.77524857094626]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014500","ancestry":{"1":5460,"3":55,"5":302,"6":30,"15":30,"16":79,"18":15,"19":70,"22":37,"23":80,"26":26,"31":11,"34":13,"35":62,"36":230,"38":93,"40":235,"41":16,"42":549,"44":53,"46":84,"48":13,"49":455,"50":75,"51":249,"58":9,"59":13,"61":256,"64":334,"66":13,"67":118,"70":27,"73":27,"83":27,"89":37,"90":15,"91":14,"94":31,"101":31,"108":1957,"109":855}},"geometry":{"type":"Point","coordinates":[-73.98425504932368,40.76980857180138]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014601","ancestry":{"1":4404,"3":94,"5":466,"6":40,"7":18,"10":22,"16":32,"19":11,"21":14,"23":100,"24":104,"33":25,"34":46,"35":97,"36":207,"38":69,"39":24,"40":127,"41":7,"42":331,"44":21,"49":643,"50":13,"51":485,"52":13,"53":22,"59":13,"61":240,"63":77,"64":473,"67":24,"70":9,"89":30,"90":24,"91":49,"92":38,"93":22,"108":1170,"109":408}},"geometry":{"type":"Point","coordinates":[-73.9521610097123,40.77719177490825]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014801","ancestry":{"1":2933,"5":384,"6":11,"11":11,"18":11,"19":83,"23":32,"31":57,"33":8,"35":107,"36":125,"38":155,"39":18,"40":76,"41":21,"42":353,"44":18,"48":23,"49":277,"50":33,"51":263,"53":12,"58":11,"59":11,"61":157,"63":11,"64":276,"65":27,"67":85,"70":12,"73":26,"76":26,"90":9,"91":52,"92":8,"93":5,"108":675,"109":300}},"geometry":{"type":"Point","coordinates":[-73.95607433339178,40.77884161281847]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014802","ancestry":{"1":7125,"5":733,"6":51,"13":51,"16":14,"18":14,"19":96,"21":25,"23":191,"24":167,"26":13,"28":15,"31":32,"32":14,"34":80,"35":122,"36":397,"38":148,"39":14,"40":128,"41":13,"42":851,"44":212,"46":106,"48":55,"49":636,"50":60,"51":435,"52":23,"53":16,"56":16,"59":49,"61":320,"62":72,"63":23,"64":443,"66":50,"67":101,"70":27,"71":27,"89":179,"90":28,"91":15,"92":78,"93":60,"108":1863,"109":932}},"geometry":{"type":"Point","coordinates":[-73.95443210580831,40.78109269677209]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061014900","ancestry":{"1":5897,"5":278,"6":15,"7":15,"16":84,"18":5,"19":32,"21":14,"23":15,"26":30,"31":36,"33":35,"34":20,"35":241,"36":426,"38":293,"40":63,"41":14,"42":700,"43":16,"45":14,"46":87,"48":98,"49":498,"50":37,"51":704,"53":114,"57":33,"59":33,"61":697,"63":97,"64":619,"66":28,"67":51,"68":19,"70":16,"73":11,"79":11,"89":58,"91":18,"92":49,"93":32,"108":1656,"109":454}},"geometry":{"type":"Point","coordinates":[-73.98248329978681,40.77235435887236]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015100","ancestry":{"1":7480,"3":30,"5":422,"6":185,"10":44,"12":25,"13":41,"15":100,"18":56,"19":145,"23":39,"24":63,"31":41,"34":9,"35":127,"36":555,"38":93,"40":218,"41":28,"42":240,"44":65,"46":8,"49":646,"50":39,"51":488,"53":171,"59":16,"61":93,"63":64,"64":156,"69":45,"71":42,"89":52,"90":15,"94":135,"99":75,"100":37,"105":23,"108":4244,"109":541}},"geometry":{"type":"Point","coordinates":[-73.98958113874811,40.77414735656023]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015400","ancestry":{"1":14969,"5":2133,"6":228,"7":194,"10":34,"19":80,"21":61,"22":68,"23":105,"26":82,"27":16,"31":63,"33":81,"34":130,"35":322,"36":609,"38":356,"39":90,"40":191,"41":44,"42":2018,"44":198,"46":212,"48":78,"49":2285,"50":11,"51":1529,"59":7,"61":835,"62":189,"64":633,"65":27,"66":73,"67":53,"68":95,"70":54,"73":259,"79":259,"89":109,"90":305,"91":139,"92":169,"93":14,"94":25,"99":25,"107":10,"108":4666,"109":836}},"geometry":{"type":"Point","coordinates":[-73.94912450210859,40.78134939078227]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015500","ancestry":{"1":10244,"5":934,"6":38,"10":13,"14":25,"19":310,"23":76,"29":16,"31":24,"33":43,"34":68,"35":698,"36":843,"38":201,"40":313,"41":101,"42":982,"44":53,"46":254,"48":52,"49":937,"50":41,"51":477,"53":100,"58":50,"59":23,"61":1011,"63":70,"64":872,"67":190,"70":76,"89":66,"90":31,"91":27,"92":93,"93":17,"94":61,"101":38,"105":23,"108":3050,"109":806}},"geometry":{"type":"Point","coordinates":[-73.98663676294444,40.777387047405554]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015700","ancestry":{"1":10123,"5":445,"6":117,"7":31,"10":72,"13":14,"16":28,"18":214,"19":127,"21":16,"22":168,"23":120,"31":78,"33":26,"34":132,"35":278,"36":587,"38":285,"39":172,"40":195,"41":101,"42":826,"45":36,"46":138,"48":127,"49":1565,"50":32,"51":1429,"53":64,"58":45,"59":80,"61":945,"62":113,"64":876,"66":113,"67":194,"70":40,"72":9,"73":144,"88":144,"89":268,"91":41,"92":61,"93":24,"94":6,"102":6,"107":16,"108":1707,"109":1045}},"geometry":{"type":"Point","coordinates":[-73.9787896122197,40.77741745973025]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015801","ancestry":{"1":5585,"3":60,"5":449,"6":13,"7":13,"17":19,"18":8,"19":52,"21":13,"23":50,"26":17,"29":12,"31":44,"32":17,"33":15,"34":97,"35":238,"36":588,"38":186,"40":61,"42":786,"44":41,"46":119,"48":28,"49":824,"50":25,"51":331,"53":14,"56":12,"59":15,"61":203,"63":13,"64":398,"66":41,"67":287,"68":20,"69":20,"70":47,"91":9,"92":40,"93":15,"108":1021,"109":725}},"geometry":{"type":"Point","coordinates":[-73.95210366005209,40.784278411717096]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061015900","ancestry":{"1":8621,"5":613,"6":30,"8":30,"16":15,"18":32,"19":460,"23":170,"29":31,"31":56,"32":24,"33":54,"34":64,"35":1117,"36":596,"39":37,"40":137,"41":82,"42":786,"44":97,"46":264,"48":15,"49":1023,"50":79,"51":635,"52":33,"53":72,"58":13,"59":58,"61":557,"63":317,"64":1157,"66":131,"67":154,"73":44,"83":29,"87":15,"89":61,"91":16,"92":41,"93":71,"94":2,"96":2,"107":116,"108":2031,"109":543}},"geometry":{"type":"Point","coordinates":[-73.9845421595856,40.779652900235305]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016001","ancestry":{"1":3695,"5":351,"6":11,"10":11,"13":11,"16":50,"18":37,"19":46,"23":56,"26":9,"29":20,"33":20,"34":29,"35":88,"36":539,"38":58,"39":21,"40":294,"41":11,"42":409,"44":11,"46":45,"48":30,"49":723,"51":284,"53":12,"54":8,"59":37,"61":188,"63":28,"64":173,"65":11,"66":78,"67":65,"68":10,"89":91,"90":20,"92":11,"93":31,"94":1,"101":1,"107":44,"108":730,"109":323}},"geometry":{"type":"Point","coordinates":[-73.9553223094519,40.78563493832207]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016100","ancestry":{"1":6563,"5":778,"6":30,"8":16,"15":14,"18":100,"19":45,"22":55,"23":107,"26":33,"29":16,"31":18,"33":131,"34":122,"35":228,"36":775,"38":198,"39":11,"40":177,"41":69,"42":790,"44":28,"46":129,"48":78,"49":624,"50":31,"51":632,"53":111,"55":17,"57":17,"58":32,"59":71,"61":293,"62":19,"63":45,"64":386,"66":71,"67":358,"68":37,"89":79,"90":7,"91":24,"92":58,"93":20,"108":1573,"109":429}},"geometry":{"type":"Point","coordinates":[-73.97719338905175,40.779949161006485]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016200","ancestry":{"1":8993,"5":1157,"22":11,"23":28,"36":18,"42":14,"46":17,"48":25,"51":29,"61":37,"73":437,"76":39,"87":398,"94":86,"95":16,"99":51,"105":44,"108":6434,"109":839}},"geometry":{"type":"Point","coordinates":[-73.93951480382643,40.787857289644684]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36061016200","ancestry":{"1":8993,"5":1157,"22":11,"23":28,"36":18,"42":14,"46":17,"48":25,"51":29,"61":37,"73":437,"76":39,"87":398,"94":86,"95":16,"99":51,"105":44,"108":6434,"109":839}},"geometry":{"type":"Point","coordinates":[-73.92820329147008,40.77761537361089]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016600","ancestry":{"1":7693,"3":53,"5":1022,"6":119,"7":14,"12":10,"14":95,"22":68,"23":10,"24":38,"29":11,"31":15,"33":22,"34":17,"35":9,"36":147,"38":57,"40":108,"42":190,"44":43,"47":12,"49":225,"50":15,"51":75,"59":41,"61":43,"63":23,"64":53,"66":5,"67":52,"69":11,"73":32,"87":32,"89":33,"90":11,"94":129,"101":19,"102":26,"103":64,"105":20,"107":29,"108":4834,"109":739}},"geometry":{"type":"Point","coordinates":[-73.94839273352493,40.78937314510949]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016700","ancestry":{"1":6309,"3":52,"4":15,"5":247,"6":48,"10":15,"13":17,"15":16,"19":125,"21":9,"22":28,"23":48,"26":9,"29":15,"33":16,"34":71,"35":309,"36":530,"38":219,"40":59,"41":19,"42":817,"44":49,"46":76,"49":711,"50":16,"51":539,"52":36,"53":90,"58":52,"59":15,"61":585,"63":76,"64":766,"65":26,"66":49,"67":86,"70":14,"73":17,"83":17,"89":42,"90":43,"91":102,"92":97,"93":34,"94":13,"102":13,"108":1354,"109":820}},"geometry":{"type":"Point","coordinates":[-73.98094676707935,40.785195651393444]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016800","ancestry":{"1":4974,"5":598,"6":30,"8":30,"22":18,"23":9,"31":6,"33":24,"34":8,"36":68,"38":13,"40":70,"42":72,"44":27,"45":12,"48":9,"49":126,"51":33,"53":7,"61":80,"64":7,"73":45,"81":11,"87":34,"89":26,"90":37,"94":59,"102":7,"105":52,"108":3340,"109":508}},"geometry":{"type":"Point","coordinates":[-73.95135646284004,40.791075140996966]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017000","ancestry":{"1":7598,"5":249,"19":13,"23":8,"26":1,"33":21,"36":8,"38":39,"40":62,"42":64,"44":38,"49":133,"51":102,"61":48,"66":10,"67":7,"70":16,"73":44,"80":7,"87":29,"88":8,"92":30,"93":7,"94":208,"99":3,"101":14,"102":36,"103":11,"105":144,"108":6295,"109":564}},"geometry":{"type":"Point","coordinates":[-73.94214684843267,40.79090245869735]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017100","ancestry":{"1":9441,"5":418,"6":84,"8":32,"13":29,"15":23,"19":90,"21":127,"22":188,"23":189,"26":69,"29":24,"31":15,"34":12,"35":861,"36":469,"38":133,"40":262,"41":30,"42":921,"44":54,"46":378,"48":76,"49":851,"50":127,"51":648,"52":44,"53":146,"55":15,"59":15,"61":641,"63":70,"64":1495,"66":78,"67":116,"73":63,"83":47,"87":16,"89":71,"90":21,"91":31,"92":50,"94":58,"99":26,"101":10,"102":9,"105":13,"108":2823,"109":606}},"geometry":{"type":"Point","coordinates":[-73.9793757048199,40.78781897808588]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017300","ancestry":{"1":8968,"3":258,"5":446,"18":54,"19":93,"23":56,"28":12,"31":41,"32":15,"33":53,"34":162,"35":336,"36":493,"38":135,"40":315,"42":775,"44":108,"46":51,"49":982,"50":12,"51":775,"53":15,"55":373,"56":52,"57":28,"58":39,"59":51,"61":398,"63":62,"64":630,"67":94,"68":27,"73":32,"87":32,"89":20,"90":144,"91":13,"92":113,"94":110,"101":78,"102":32,"107":155,"108":3214,"109":959}},"geometry":{"type":"Point","coordinates":[-73.9712361506932,40.7877704647178]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017402","ancestry":{"1":2562,"5":336,"16":10,"29":7,"31":6,"33":7,"34":19,"35":6,"36":49,"38":88,"40":59,"42":41,"46":11,"49":18,"51":46,"61":68,"62":10,"64":37,"66":17,"67":5,"73":12,"87":12,"92":13,"93":1,"94":4,"105":4,"108":1745,"109":218}},"geometry":{"type":"Point","coordinates":[-73.94716243882955,40.79680257615619]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017500","ancestry":{"1":10933,"5":759,"6":75,"10":61,"15":14,"16":14,"19":292,"21":36,"23":205,"31":28,"33":22,"34":203,"35":538,"36":887,"38":131,"40":203,"41":45,"42":1055,"44":144,"46":87,"48":41,"49":1118,"51":756,"53":107,"59":85,"61":901,"63":49,"64":1193,"66":79,"67":62,"70":48,"73":26,"87":26,"89":90,"90":68,"92":81,"93":50,"94":121,"99":26,"101":83,"102":12,"108":3709,"109":1105}},"geometry":{"type":"Point","coordinates":[-73.97752095068377,40.79040897016143]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017700","ancestry":{"1":9426,"5":306,"6":79,"14":79,"18":38,"19":87,"22":177,"23":23,"26":20,"29":26,"31":37,"33":24,"34":65,"35":259,"36":265,"38":111,"39":17,"40":258,"42":777,"46":65,"48":38,"49":783,"51":324,"59":24,"61":631,"62":44,"63":40,"64":654,"65":22,"67":73,"70":128,"89":48,"90":43,"91":22,"92":38,"93":11,"94":306,"96":96,"101":100,"102":25,"103":84,"105":1,"108":4882,"109":962}},"geometry":{"type":"Point","coordinates":[-73.9693890760403,40.79030825913535]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061017800","ancestry":{"1":3931,"5":261,"6":51,"9":19,"11":32,"19":17,"26":24,"34":15,"36":57,"38":69,"40":90,"41":13,"42":94,"46":18,"49":111,"51":313,"57":9,"59":17,"61":10,"66":12,"67":19,"73":183,"83":15,"87":129,"88":54,"90":15,"94":99,"102":58,"103":31,"105":10,"108":2547,"109":301}},"geometry":{"type":"Point","coordinates":[-73.9333796565405,40.794644437851325]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018100","ancestry":{"1":9267,"5":413,"6":31,"11":21,"13":10,"19":28,"21":23,"22":25,"23":101,"31":38,"33":27,"34":27,"35":389,"36":520,"38":220,"40":336,"42":601,"44":24,"46":121,"49":774,"50":124,"51":382,"52":15,"53":85,"59":15,"61":242,"63":48,"64":817,"67":61,"73":231,"79":46,"83":185,"89":44,"92":119,"93":139,"94":95,"101":55,"102":40,"108":4148,"109":1327}},"geometry":{"type":"Point","coordinates":[-73.96774602887022,40.79255617374557]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018200","ancestry":{"1":6553,"5":629,"18":111,"23":23,"36":38,"38":39,"40":20,"42":36,"46":14,"49":11,"51":158,"61":27,"64":38,"73":112,"83":17,"87":51,"88":44,"92":12,"94":85,"95":18,"102":30,"103":25,"105":12,"108":4852,"109":556}},"geometry":{"type":"Point","coordinates":[-73.94185108478655,40.79832113072051]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018300","ancestry":{"1":8382,"3":226,"5":201,"6":50,"7":28,"11":22,"16":12,"19":72,"22":56,"23":70,"24":79,"31":23,"34":48,"35":529,"36":418,"38":52,"40":228,"41":19,"42":827,"44":17,"46":175,"47":73,"49":723,"50":61,"51":603,"52":33,"53":57,"55":60,"59":30,"61":427,"62":29,"63":73,"64":478,"65":28,"66":85,"67":126,"89":12,"91":12,"92":16,"93":32,"94":106,"101":23,"102":83,"108":3481,"109":754}},"geometry":{"type":"Point","coordinates":[-73.97383896736389,40.795514069312965]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018400","ancestry":{"1":8274,"5":958,"6":13,"14":13,"22":15,"34":10,"36":14,"40":45,"42":36,"45":27,"46":20,"49":49,"51":10,"53":16,"61":57,"64":4,"67":10,"73":284,"76":146,"87":126,"88":12,"89":14,"91":29,"94":251,"99":49,"101":24,"102":38,"103":76,"105":64,"108":6448,"109":638}},"geometry":{"type":"Point","coordinates":[-73.94506868607878,40.799684113952544]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018500","ancestry":{"1":5296,"5":422,"6":29,"7":29,"19":8,"20":19,"23":35,"29":45,"31":16,"34":15,"35":152,"36":254,"38":88,"39":48,"40":169,"42":423,"44":84,"46":69,"49":383,"50":25,"51":267,"52":20,"53":32,"54":14,"58":21,"59":28,"61":238,"62":24,"63":79,"64":236,"67":82,"71":24,"73":44,"87":44,"90":18,"92":95,"93":17,"94":270,"100":24,"101":123,"102":106,"105":17,"108":2373,"109":379}},"geometry":{"type":"Point","coordinates":[-73.96636362844228,40.794500089995324]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018600","ancestry":{"1":7245,"5":133,"6":14,"10":14,"23":11,"29":11,"36":110,"38":27,"40":28,"42":50,"44":2,"45":12,"49":33,"51":100,"61":9,"64":3,"67":39,"73":434,"75":47,"80":86,"87":301,"94":113,"95":43,"102":39,"103":12,"104":3,"105":16,"108":6012,"109":503}},"geometry":{"type":"Point","coordinates":[-73.94970881946169,40.79910595871933]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061018800","ancestry":{"1":5570,"5":266,"6":43,"11":12,"15":43,"22":13,"23":15,"24":26,"26":6,"29":71,"34":13,"35":48,"36":25,"38":54,"40":15,"42":59,"44":14,"48":17,"49":52,"51":336,"61":58,"64":19,"68":47,"73":178,"75":33,"79":20,"87":125,"89":42,"92":127,"93":9,"94":90,"101":26,"102":26,"103":24,"105":14,"107":35,"108":3973,"109":137}},"geometry":{"type":"Point","coordinates":[-73.93725996019764,40.797594817434394]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019200","ancestry":{"1":4103,"5":134,"36":38,"38":61,"49":30,"51":32,"64":8,"66":4,"73":108,"87":102,"88":6,"94":110,"101":90,"102":15,"105":5,"108":3583,"109":273}},"geometry":{"type":"Point","coordinates":[-73.93076208224257,40.799170023659094]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061019200","ancestry":{"1":4103,"5":134,"36":38,"38":61,"49":30,"51":32,"64":8,"66":4,"73":108,"87":102,"88":6,"94":110,"101":90,"102":15,"105":5,"108":3583,"109":273}},"geometry":{"type":"Point","coordinates":[-73.92642987580913,40.80251651632158]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019300","ancestry":{"1":9305,"5":329,"6":41,"13":41,"18":28,"20":67,"22":346,"23":27,"26":140,"29":3,"31":78,"34":100,"36":559,"38":37,"40":197,"41":25,"42":467,"44":43,"46":28,"48":276,"49":536,"51":439,"59":46,"61":54,"64":76,"65":12,"66":32,"67":151,"71":30,"73":100,"87":100,"89":49,"90":65,"92":15,"93":17,"94":183,"101":7,"102":127,"103":15,"105":34,"108":5623,"109":744}},"geometry":{"type":"Point","coordinates":[-73.96195645784212,40.80050512746312]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019400","ancestry":{"1":6694,"5":242,"6":88,"7":88,"23":17,"26":7,"33":7,"38":28,"42":48,"45":69,"49":39,"51":136,"64":22,"73":178,"77":59,"87":13,"88":106,"94":194,"101":108,"102":69,"105":17,"108":5451,"109":349}},"geometry":{"type":"Point","coordinates":[-73.93518598751864,40.800465127497105]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019500","ancestry":{"1":7911,"5":285,"6":12,"10":12,"16":12,"19":11,"21":21,"22":25,"23":51,"24":10,"29":23,"31":161,"33":45,"34":133,"35":105,"36":514,"38":109,"40":283,"41":30,"42":733,"44":59,"46":31,"48":10,"49":623,"50":85,"51":532,"52":13,"53":12,"54":17,"58":15,"59":25,"61":429,"63":25,"64":574,"65":12,"66":11,"67":182,"70":12,"73":40,"76":15,"87":25,"88":15,"89":109,"90":22,"91":70,"92":12,"93":58,"94":34,"99":24,"103":10,"108":3120,"109":1158}},"geometry":{"type":"Point","coordinates":[-73.96832887142943,40.8031556529871]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019600","ancestry":{"1":4245,"5":67,"6":91,"7":16,"14":67,"15":8,"22":8,"38":9,"40":31,"42":74,"44":28,"49":9,"51":18,"61":16,"64":22,"73":10,"87":10,"89":23,"91":24,"94":109,"96":42,"101":26,"102":41,"108":3464,"109":416}},"geometry":{"type":"Point","coordinates":[-73.93857613125931,40.80280545375843]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019701","ancestry":{"1":898,"5":19,"6":4,"10":4,"19":12,"22":11,"23":5,"26":18,"35":30,"36":53,"38":8,"41":5,"42":42,"44":9,"49":58,"51":59,"59":14,"61":18,"62":11,"64":13,"67":13,"90":26,"91":52,"92":9,"108":440,"109":136}},"geometry":{"type":"Point","coordinates":[-73.95939922399182,40.80531112555924]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061019702","ancestry":{"1":2202,"3":9,"5":161,"6":103,"7":75,"15":54,"18":8,"21":8,"23":5,"35":29,"36":59,"38":85,"40":89,"41":6,"42":39,"44":14,"46":11,"49":80,"50":26,"51":77,"59":21,"61":119,"63":4,"64":6,"66":14,"67":15,"73":103,"79":54,"87":49,"92":16,"94":46,"101":26,"105":20,"108":1100,"109":249}},"geometry":{"type":"Point","coordinates":[-73.95798785682379,40.802189017603915]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020000","ancestry":{"1":3018,"5":103,"19":8,"21":33,"23":26,"33":8,"34":24,"36":10,"38":38,"40":85,"41":14,"42":95,"45":5,"46":25,"49":76,"51":115,"58":14,"59":14,"61":19,"62":130,"63":18,"64":26,"66":16,"67":9,"70":9,"73":173,"75":27,"77":15,"79":5,"80":6,"83":18,"87":105,"89":31,"90":9,"92":42,"93":11,"94":136,"95":6,"97":8,"99":8,"102":99,"103":6,"104":6,"105":6,"108":1788,"109":185}},"geometry":{"type":"Point","coordinates":[-73.9452336053757,40.80578592868639]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020102","ancestry":{"1":4203,"5":143,"18":8,"19":1,"22":51,"23":13,"26":16,"33":8,"34":5,"35":61,"36":129,"38":7,"40":98,"41":6,"42":211,"44":15,"45":13,"46":17,"49":133,"51":170,"58":5,"59":89,"60":8,"61":116,"63":12,"64":10,"67":50,"73":195,"75":9,"87":186,"89":29,"90":1,"91":20,"92":22,"94":391,"97":9,"101":165,"102":69,"103":23,"105":125,"108":2302,"109":522}},"geometry":{"type":"Point","coordinates":[-73.95663292507851,40.80505105901058]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020300","ancestry":{"1":3368,"3":6,"5":117,"6":39,"7":4,"10":20,"15":15,"19":39,"22":10,"26":12,"29":7,"31":10,"32":31,"33":26,"34":30,"35":37,"36":116,"38":52,"40":17,"41":12,"42":151,"44":4,"45":7,"46":45,"47":2,"48":6,"49":140,"50":16,"51":95,"58":6,"59":12,"60":3,"61":11,"62":5,"63":56,"64":35,"67":43,"73":93,"74":13,"75":30,"83":9,"87":41,"90":6,"94":51,"101":38,"102":13,"108":1110,"109":1306}},"geometry":{"type":"Point","coordinates":[-73.9615616629133,40.80866906651555]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022700","ancestry":{"1":5532,"5":81,"18":12,"22":13,"23":17,"26":28,"31":31,"34":37,"36":76,"38":21,"40":126,"41":13,"42":331,"46":45,"49":178,"51":109,"61":116,"62":8,"65":8,"67":61,"73":241,"75":27,"80":103,"87":111,"89":17,"92":4,"93":24,"94":226,"97":30,"102":180,"105":16,"108":4010,"109":484}},"geometry":{"type":"Point","coordinates":[-73.94646214371213,40.82296624002892]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020600","ancestry":{"1":3025,"5":243,"6":37,"7":22,"14":15,"23":4,"33":9,"36":9,"38":11,"40":35,"42":11,"49":59,"50":22,"51":48,"53":5,"59":6,"61":9,"65":6,"67":19,"73":90,"79":24,"87":66,"92":13,"94":208,"95":10,"96":74,"99":10,"101":13,"102":47,"103":7,"105":47,"108":2127,"109":329}},"geometry":{"type":"Point","coordinates":[-73.9387852642527,40.80829167750097]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061020901","ancestry":{"1":3987,"5":107,"6":33,"14":33,"33":5,"36":10,"40":7,"42":31,"49":8,"51":36,"61":10,"64":28,"65":8,"73":61,"79":22,"87":39,"94":65,"99":19,"101":22,"102":15,"103":9,"108":3338,"109":367}},"geometry":{"type":"Point","coordinates":[-73.95500320772256,40.811557829506256]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021000","ancestry":{"1":7144,"2":17,"5":753,"6":105,"14":105,"21":17,"23":13,"36":47,"40":15,"42":18,"49":15,"51":17,"61":17,"64":16,"67":17,"73":379,"76":15,"79":37,"80":32,"87":295,"88":17,"94":337,"96":14,"99":13,"100":15,"103":102,"105":193,"108":5336,"109":678}},"geometry":{"type":"Point","coordinates":[-73.93568461935884,40.8130840045094]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36061021000","ancestry":{"1":7144,"2":17,"5":753,"6":105,"14":105,"21":17,"23":13,"36":47,"40":15,"42":18,"49":15,"51":17,"61":17,"64":16,"67":17,"73":379,"76":15,"79":37,"80":32,"87":295,"88":17,"94":337,"96":14,"99":13,"100":15,"103":102,"105":193,"108":5336,"109":678}},"geometry":{"type":"Point","coordinates":[-73.93236985585355,40.81634896879943]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021100","ancestry":{"1":9709,"5":218,"6":19,"15":19,"18":4,"19":31,"23":79,"26":69,"29":106,"31":34,"34":56,"35":52,"36":250,"38":101,"40":180,"42":419,"44":9,"45":276,"46":97,"47":12,"48":85,"49":479,"50":104,"51":559,"56":16,"59":11,"61":130,"63":15,"64":244,"66":108,"67":30,"68":16,"73":203,"75":54,"83":12,"87":137,"91":28,"93":12,"94":165,"99":12,"101":14,"102":124,"103":15,"108":5967,"109":811}},"geometry":{"type":"Point","coordinates":[-73.96067975637801,40.81430230534501]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021200","ancestry":{"1":4211,"5":212,"6":17,"10":17,"22":19,"23":32,"34":24,"35":25,"36":41,"38":11,"40":24,"41":35,"42":25,"45":4,"49":65,"51":140,"61":44,"64":41,"66":16,"73":396,"75":22,"78":31,"83":24,"87":319,"94":306,"101":54,"102":193,"103":16,"104":7,"105":36,"108":3248,"109":130}},"geometry":{"type":"Point","coordinates":[-73.93900094832162,40.813761246918126]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021400","ancestry":{"1":2871,"5":333,"6":13,"8":13,"26":13,"36":9,"38":71,"41":6,"42":5,"45":8,"49":20,"51":12,"61":17,"62":7,"73":227,"79":28,"80":21,"85":49,"87":97,"88":32,"94":300,"96":9,"97":6,"99":17,"101":23,"102":196,"103":16,"104":13,"105":30,"108":2055,"109":166}},"geometry":{"type":"Point","coordinates":[-73.9362051789018,40.81778758044047]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021703","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.94975622654373,40.817934994097385]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021800","ancestry":{"1":7381,"2":18,"5":479,"6":133,"7":57,"14":76,"19":19,"22":34,"23":66,"29":126,"36":121,"38":27,"40":28,"42":165,"44":12,"45":11,"46":27,"48":13,"49":184,"51":256,"60":27,"64":61,"65":12,"67":27,"73":707,"75":13,"80":46,"87":608,"88":40,"94":1009,"97":69,"101":568,"102":157,"103":42,"105":181,"108":3717,"109":752}},"geometry":{"type":"Point","coordinates":[-73.95252415620314,40.80322212875661]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061021900","ancestry":{"1":6089,"5":199,"38":3,"40":11,"41":21,"45":57,"49":11,"51":20,"61":39,"64":13,"73":111,"80":13,"87":98,"89":23,"94":173,"99":32,"101":113,"105":43,"108":5119,"109":441}},"geometry":{"type":"Point","coordinates":[-73.95718821306883,40.817407404962154]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022102","ancestry":{"1":2392,"3":22,"5":163,"18":12,"19":1,"21":24,"22":65,"23":11,"34":24,"36":53,"38":20,"40":37,"41":25,"42":62,"45":24,"49":61,"51":70,"59":25,"61":13,"64":51,"69":7,"73":358,"79":87,"80":73,"83":24,"87":100,"88":74,"89":8,"94":225,"96":39,"102":65,"105":121,"108":1351,"109":201}},"geometry":{"type":"Point","coordinates":[-73.9461861395734,40.8186544153602]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022302","ancestry":{"1":3426,"5":281,"19":22,"22":16,"34":21,"36":26,"38":23,"41":8,"42":79,"49":49,"51":33,"59":47,"61":25,"62":6,"64":42,"67":12,"73":93,"76":16,"87":77,"89":12,"90":12,"93":7,"94":109,"97":33,"101":23,"102":23,"103":14,"104":10,"105":13,"108":2702,"109":288}},"geometry":{"type":"Point","coordinates":[-73.95739302165278,40.820231781157624]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022400","ancestry":{"1":7344,"5":133,"6":57,"14":57,"36":71,"40":160,"42":16,"49":26,"51":81,"61":54,"64":34,"67":3,"73":440,"77":41,"79":34,"87":396,"94":399,"95":11,"96":3,"97":22,"99":18,"102":159,"103":14,"105":190,"108":5766,"109":568}},"geometry":{"type":"Point","coordinates":[-73.94695978982269,40.81112218941392]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022600","ancestry":{"1":4053,"5":155,"6":5,"10":5,"21":8,"35":51,"36":19,"38":10,"40":14,"42":78,"44":1,"45":7,"46":16,"49":99,"51":28,"53":16,"59":8,"61":76,"64":11,"67":30,"73":351,"79":115,"87":274,"88":68,"92":16,"93":10,"94":229,"96":8,"97":60,"101":45,"102":46,"103":59,"105":20,"108":2709,"109":422}},"geometry":{"type":"Point","coordinates":[-73.94481162128555,40.813430455080336]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022800","ancestry":{"1":5714,"5":226,"6":25,"15":25,"26":16,"36":89,"38":13,"40":60,"42":98,"45":45,"49":183,"51":256,"52":17,"61":11,"64":51,"67":27,"73":346,"87":99,"88":247,"89":14,"90":16,"93":15,"94":257,"96":10,"97":29,"101":21,"102":197,"107":10,"108":4265,"109":390}},"geometry":{"type":"Point","coordinates":[-73.94324534184803,40.815929727977874]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061022900","ancestry":{"1":8340,"3":77,"5":526,"6":156,"7":42,"10":18,"11":16,"14":80,"18":9,"19":28,"22":104,"23":29,"25":12,"35":18,"36":257,"38":42,"40":113,"42":238,"49":343,"51":77,"55":16,"61":68,"62":14,"64":42,"66":17,"73":304,"75":70,"79":24,"80":172,"87":38,"92":16,"93":18,"94":535,"99":56,"101":17,"102":301,"103":120,"105":41,"107":27,"108":5690,"109":836}},"geometry":{"type":"Point","coordinates":[-73.95171401528845,40.825924182873024]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061023000","ancestry":{"1":9124,"5":550,"18":34,"23":25,"26":34,"36":95,"38":17,"40":34,"41":16,"42":114,"45":69,"46":14,"48":15,"49":111,"51":96,"59":23,"62":58,"63":14,"64":94,"67":69,"73":863,"76":22,"78":45,"79":22,"80":86,"85":37,"87":341,"88":332,"89":43,"93":29,"94":580,"99":18,"100":32,"101":58,"102":170,"103":157,"105":145,"108":6428,"109":789}},"geometry":{"type":"Point","coordinates":[-73.94138964162019,40.81847248823174]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047152200","ancestry":{"1":3563,"3":24,"5":162,"6":42,"10":12,"13":9,"15":21,"19":17,"21":102,"23":23,"25":9,"28":19,"31":15,"33":9,"34":7,"35":128,"36":151,"38":61,"40":47,"42":230,"44":49,"45":128,"46":32,"49":132,"51":136,"53":35,"58":9,"59":31,"61":267,"63":6,"64":193,"66":16,"67":94,"73":36,"87":26,"88":10,"89":93,"90":37,"92":37,"93":8,"94":443,"99":8,"101":35,"102":13,"103":379,"105":8,"108":1519,"109":175}},"geometry":{"type":"Point","coordinates":[-73.96718359164596,40.643974274838186]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047150200","ancestry":{"1":2900,"5":277,"6":39,"7":7,"8":8,"10":4,"13":20,"26":64,"31":17,"33":27,"34":5,"35":43,"36":97,"38":143,"40":39,"41":37,"42":327,"44":27,"46":20,"49":490,"51":463,"56":9,"59":26,"61":113,"64":75,"66":13,"67":45,"70":11,"73":6,"79":6,"89":10,"92":5,"93":10,"94":33,"102":5,"105":28,"108":950,"109":319}},"geometry":{"type":"Point","coordinates":[-73.98127815875463,40.65464074462465]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085012805","ancestry":{"1":2719,"3":14,"5":89,"6":119,"7":92,"10":10,"13":17,"36":30,"38":14,"40":154,"42":135,"44":24,"46":38,"49":248,"51":996,"52":9,"53":46,"59":29,"61":76,"64":294,"65":5,"66":90,"67":33,"89":17,"92":101,"108":458,"109":293}},"geometry":{"type":"Point","coordinates":[-74.11763174162814,40.55470032479242]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085990100","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.05314085604772,40.576240138635974]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085019800","ancestry":{"1":6588,"3":166,"5":132,"6":52,"7":52,"19":12,"36":249,"40":65,"42":414,"44":52,"49":971,"51":2971,"59":120,"61":117,"63":27,"64":375,"66":73,"69":33,"72":48,"92":206,"107":54,"108":1247,"109":748}},"geometry":{"type":"Point","coordinates":[-74.20493274401404,40.51770752411795]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085014607","ancestry":{"1":5014,"3":26,"5":188,"6":102,"7":89,"13":13,"19":30,"23":10,"26":10,"31":24,"33":44,"35":20,"36":84,"38":63,"40":20,"41":18,"42":342,"44":41,"46":75,"49":788,"50":22,"51":2204,"53":7,"55":29,"59":101,"61":151,"63":5,"64":422,"67":96,"70":18,"89":23,"92":21,"108":694,"109":436}},"geometry":{"type":"Point","coordinates":[-74.1641209456028,40.55692200133365]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006100","ancestry":{"1":4007,"5":377,"42":40,"44":20,"49":35,"61":33,"63":18,"73":89,"76":26,"87":63,"89":17,"94":226,"99":45,"102":44,"103":37,"105":110,"108":2990,"109":638}},"geometry":{"type":"Point","coordinates":[-73.92266679967825,40.822251660081456]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006400","ancestry":{"1":3565,"5":84,"45":108,"49":35,"51":145,"73":76,"87":76,"93":25,"94":571,"96":10,"97":9,"99":49,"101":27,"102":367,"103":35,"105":74,"107":47,"108":2485,"109":217}},"geometry":{"type":"Point","coordinates":[-73.8722067288283,40.83302893505023]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006700","ancestry":{"1":7782,"5":72,"45":413,"49":57,"51":85,"73":556,"76":219,"87":180,"88":157,"94":167,"97":167,"108":6264,"109":510}},"geometry":{"type":"Point","coordinates":[-73.91817674434385,40.81950226729371]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006800","ancestry":{"1":2976,"5":84,"42":83,"44":10,"45":177,"49":82,"51":118,"53":13,"73":205,"76":71,"79":9,"80":39,"87":29,"88":57,"94":334,"96":14,"99":15,"102":103,"103":166,"105":36,"108":1986,"109":137}},"geometry":{"type":"Point","coordinates":[-73.87048197959706,40.828966897468746]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007000","ancestry":{"1":4646,"5":46,"41":1,"42":6,"45":231,"49":11,"51":19,"61":23,"73":157,"76":26,"79":3,"80":128,"94":231,"97":37,"99":38,"101":16,"102":100,"105":51,"108":3618,"109":359}},"geometry":{"type":"Point","coordinates":[-73.86562331804095,40.829815202856516]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007100","ancestry":{"1":2358,"5":37,"34":5,"45":5,"49":5,"51":10,"66":13,"73":51,"76":6,"81":20,"87":25,"88":3,"94":27,"101":10,"103":17,"108":2076,"109":192}},"geometry":{"type":"Point","coordinates":[-73.91283004836934,40.818221405307334]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007300","ancestry":{"1":3735,"5":46,"40":21,"51":25,"73":276,"76":51,"81":19,"87":164,"88":42,"94":60,"99":56,"105":38,"108":3292,"109":111}},"geometry":{"type":"Point","coordinates":[-73.90938901848057,40.814675220946626]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007500","ancestry":{"1":4932,"5":109,"34":10,"36":43,"40":9,"47":11,"49":45,"51":35,"73":91,"79":42,"87":49,"94":159,"96":8,"101":19,"102":19,"105":121,"108":4257,"109":333}},"geometry":{"type":"Point","coordinates":[-73.90862376474514,40.818776871733355]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007700","ancestry":{"1":1904,"44":13,"51":47,"73":46,"88":46,"94":49,"99":10,"105":39,"108":1710,"109":52}},"geometry":{"type":"Point","coordinates":[-73.90442305849241,40.81973393716634]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007800","ancestry":{"1":6868,"5":64,"6":175,"15":175,"36":11,"42":29,"45":102,"49":139,"51":53,"61":10,"73":120,"76":43,"79":16,"87":61,"94":65,"99":64,"105":1,"108":5641,"109":566}},"geometry":{"type":"Point","coordinates":[-73.8526456814897,40.82913041696948]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007900","ancestry":{"1":6099,"5":62,"42":130,"49":133,"51":31,"61":58,"73":81,"87":58,"88":23,"94":219,"102":194,"105":25,"108":5449,"109":295}},"geometry":{"type":"Point","coordinates":[-73.90487131870418,40.81579202447501]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005008400","ancestry":{"1":2447,"5":41,"34":6,"42":6,"45":38,"49":24,"73":30,"87":30,"91":15,"94":51,"97":5,"99":10,"100":6,"102":24,"105":6,"108":2161,"109":133}},"geometry":{"type":"Point","coordinates":[-73.8477353737752,40.81560881891125]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005019700","ancestry":{"1":7084,"5":40,"36":15,"42":15,"45":245,"73":1071,"76":85,"79":28,"87":903,"88":75,"94":138,"102":13,"103":125,"108":5202,"109":396}},"geometry":{"type":"Point","coordinates":[-73.91997777945568,40.835205060752514]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047114400","ancestry":{"1":2700,"5":209,"40":2,"42":2,"44":3,"45":37,"51":37,"73":8,"77":5,"87":3,"94":507,"97":12,"99":66,"102":154,"103":98,"105":173,"106":4,"108":1763,"109":230}},"geometry":{"type":"Point","coordinates":[-73.89855268822421,40.67280959267165]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005019900","ancestry":{"1":7635,"5":81,"23":6,"40":47,"42":9,"49":40,"51":32,"73":724,"76":224,"79":28,"87":472,"94":174,"97":32,"99":23,"102":97,"105":22,"108":5686,"109":1062}},"geometry":{"type":"Point","coordinates":[-73.92544698637639,40.83674372323756]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005020100","ancestry":{"1":4292,"5":48,"36":21,"42":16,"49":24,"51":21,"64":7,"73":349,"76":190,"79":46,"87":68,"88":45,"94":344,"99":158,"101":72,"102":93,"103":30,"105":21,"108":3182,"109":369}},"geometry":{"type":"Point","coordinates":[-73.92692447480326,40.842143995984074]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047015200","ancestry":{"1":2595,"5":81,"6":111,"7":18,"9":34,"10":10,"13":49,"16":12,"19":5,"23":5,"31":5,"35":5,"36":18,"38":26,"40":77,"41":17,"42":164,"44":121,"46":10,"49":341,"51":586,"59":24,"61":106,"64":52,"70":4,"89":78,"92":43,"108":854,"109":328}},"geometry":{"type":"Point","coordinates":[-74.02446110032687,40.61451508268666]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021200","ancestry":{"1":5169,"5":254,"6":7,"7":7,"36":12,"40":7,"42":92,"44":17,"49":12,"51":45,"61":32,"63":11,"64":15,"73":151,"81":15,"87":136,"94":455,"96":20,"97":33,"99":25,"102":141,"103":224,"105":12,"108":4038,"109":459}},"geometry":{"type":"Point","coordinates":[-73.85896368729513,40.83612732919163]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021301","ancestry":{"1":1101,"5":34,"51":4,"94":6,"99":6,"108":981,"109":110}},"geometry":{"type":"Point","coordinates":[-73.91994771835607,40.84549808503679]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021302","ancestry":{"1":6250,"5":31,"36":83,"44":1,"51":13,"61":12,"73":1014,"76":116,"80":3,"87":519,"88":394,"94":101,"102":72,"105":29,"108":4733,"109":334}},"geometry":{"type":"Point","coordinates":[-73.92034190427903,40.84301646834315]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021501","ancestry":{"1":4317,"5":176,"6":11,"9":5,"10":6,"22":9,"38":25,"45":11,"49":6,"73":252,"76":104,"87":143,"88":5,"94":152,"99":10,"101":34,"102":98,"105":10,"108":3527,"109":340}},"geometry":{"type":"Point","coordinates":[-73.91824517055005,40.849466056464045]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021502","ancestry":{"1":6110,"5":127,"6":19,"7":11,"15":8,"21":11,"42":17,"51":5,"62":7,"64":11,"67":2,"73":153,"76":19,"79":7,"87":74,"88":67,"94":218,"101":3,"102":74,"103":11,"105":130,"108":5191,"109":529}},"geometry":{"type":"Point","coordinates":[-73.91671037100716,40.848044419102436]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021602","ancestry":{"1":6059,"5":71,"6":252,"11":252,"19":23,"22":42,"40":17,"49":93,"51":26,"62":41,"67":24,"73":235,"79":15,"87":145,"88":75,"94":501,"96":24,"99":14,"101":101,"102":214,"103":30,"105":130,"108":4310,"109":744}},"geometry":{"type":"Point","coordinates":[-73.86227194401705,40.83719279376955]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021800","ancestry":{"1":7049,"5":345,"45":139,"47":14,"49":15,"59":15,"62":28,"73":438,"80":28,"87":410,"94":510,"96":15,"97":15,"99":42,"102":228,"103":15,"105":209,"108":5431,"109":458}},"geometry":{"type":"Point","coordinates":[-73.86974001311923,40.83740315820857]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005021900","ancestry":{"1":1205,"5":3,"73":49,"87":49,"94":6,"102":6,"108":1015,"109":135}},"geometry":{"type":"Point","coordinates":[-73.9196220186534,40.839644782364246]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022000","ancestry":{"1":2070,"5":12,"36":8,"38":7,"42":10,"73":36,"76":30,"87":6,"94":79,"97":8,"102":40,"103":21,"105":10,"108":1750,"109":193}},"geometry":{"type":"Point","coordinates":[-73.87231864106067,40.84347612105895]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047056100","ancestry":{"1":2891,"3":22,"5":319,"18":51,"19":11,"22":44,"23":35,"29":18,"31":14,"34":16,"35":14,"36":187,"38":53,"40":16,"41":17,"42":259,"44":34,"46":22,"49":374,"51":229,"56":13,"61":663,"62":5,"64":41,"67":29,"70":10,"89":39,"90":8,"92":9,"94":69,"102":63,"105":6,"108":609,"109":322}},"geometry":{"type":"Point","coordinates":[-73.9563463165039,40.72648574710407]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022300","ancestry":{"1":5214,"5":42,"6":125,"14":75,"15":50,"38":10,"42":7,"45":7,"49":27,"51":10,"73":696,"87":696,"94":420,"97":23,"99":133,"101":33,"102":141,"103":14,"104":23,"105":53,"108":3702,"109":208}},"geometry":{"type":"Point","coordinates":[-73.91508850128325,40.840525134726505]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022401","ancestry":{"1":2598,"3":101,"5":102,"29":47,"36":10,"38":10,"42":60,"44":9,"45":14,"49":8,"51":47,"53":17,"61":10,"64":72,"73":49,"79":40,"87":9,"92":10,"94":120,"99":7,"102":60,"105":53,"108":1994,"109":37}},"geometry":{"type":"Point","coordinates":[-73.86850958575374,40.855018481509084]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022500","ancestry":{"1":8071,"5":26,"36":30,"42":13,"49":59,"51":82,"73":777,"80":145,"87":394,"88":238,"94":303,"97":202,"99":23,"101":10,"102":68,"108":6630,"109":383}},"geometry":{"type":"Point","coordinates":[-73.91097199533324,40.84013993964399]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005022702","ancestry":{"1":1525,"5":13,"6":13,"8":13,"45":80,"73":265,"76":33,"79":4,"87":203,"88":33,"94":140,"97":6,"99":49,"101":19,"102":66,"108":910,"109":122}},"geometry":{"type":"Point","coordinates":[-73.9132320692974,40.84452244583563]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047092400","ancestry":{"1":3133,"5":43,"38":20,"45":350,"73":173,"79":24,"87":156,"94":1054,"96":69,"99":53,"101":154,"102":433,"103":143,"105":247,"108":1337,"109":196}},"geometry":{"type":"Point","coordinates":[-73.91147948357433,40.66693315058555]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036901","ancestry":{"1":2284,"5":42,"45":73,"49":17,"51":4,"61":5,"73":61,"80":50,"88":51,"92":5,"94":3,"102":3,"108":2012,"109":129}},"geometry":{"type":"Point","coordinates":[-73.89188294937232,40.84435678638846]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047000501","ancestry":{"1":4661,"3":22,"5":384,"6":35,"7":26,"12":9,"19":33,"21":11,"22":11,"23":44,"26":41,"29":32,"31":8,"34":87,"35":189,"36":288,"38":130,"39":18,"40":159,"41":21,"42":373,"44":39,"46":42,"49":323,"51":435,"52":11,"53":55,"55":65,"59":62,"60":14,"61":223,"62":11,"64":367,"65":11,"66":26,"67":94,"68":6,"73":10,"80":10,"90":39,"91":11,"92":61,"93":22,"94":160,"99":9,"101":21,"102":21,"103":109,"108":1293,"109":675}},"geometry":{"type":"Point","coordinates":[-73.9947006695011,40.695814302008685]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036400","ancestry":{"1":2373,"5":116,"36":5,"42":4,"45":5,"73":188,"87":188,"94":1086,"99":18,"101":90,"102":883,"105":95,"108":1016,"109":137}},"geometry":{"type":"Point","coordinates":[-73.84923497773558,40.87363540744518]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005007200","ancestry":{"1":5981,"5":54,"6":249,"7":7,"15":242,"38":24,"42":22,"45":57,"48":12,"49":30,"51":102,"59":20,"67":8,"73":155,"79":106,"87":26,"88":76,"94":184,"99":9,"102":56,"103":64,"105":55,"108":4889,"109":444}},"geometry":{"type":"Point","coordinates":[-73.86069249457206,40.83104782996438]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005012101","ancestry":{"1":3014,"5":7,"40":12,"42":5,"73":260,"76":6,"79":74,"87":53,"88":156,"92":5,"94":19,"99":5,"101":9,"102":5,"108":2508,"109":210}},"geometry":{"type":"Point","coordinates":[-73.88889415332673,40.82827579074377]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005000200","ancestry":{"1":5095,"5":55,"42":63,"45":242,"49":91,"51":48,"61":52,"66":21,"73":123,"79":68,"88":55,"94":249,"96":16,"97":18,"102":156,"105":59,"108":3934,"109":361}},"geometry":{"type":"Point","coordinates":[-73.8592731177018,40.81086523074766]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047035601","ancestry":{"1":2503,"5":104,"16":4,"35":13,"36":35,"42":19,"44":10,"46":4,"49":23,"51":15,"53":18,"61":55,"63":7,"64":410,"65":18,"91":9,"92":226,"94":9,"102":9,"105":9,"108":1478,"109":173}},"geometry":{"type":"Point","coordinates":[-73.96970243458753,40.5808796524875]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005005400","ancestry":{"1":6334,"5":111,"42":10,"45":318,"51":20,"62":11,"73":317,"76":45,"78":3,"80":59,"87":7,"88":203,"94":507,"97":22,"99":213,"101":31,"102":207,"103":34,"108":4747,"109":557}},"geometry":{"type":"Point","coordinates":[-73.87971537594292,40.829898437572574]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047050801","ancestry":{"1":3804,"5":91,"6":28,"15":28,"23":20,"34":9,"35":5,"36":41,"38":19,"40":10,"42":41,"45":176,"46":10,"53":4,"55":5,"61":4,"73":203,"76":112,"79":30,"87":61,"93":10,"94":1445,"96":21,"101":822,"102":275,"103":253,"105":74,"107":4,"108":1701,"109":225}},"geometry":{"type":"Point","coordinates":[-73.96073629039513,40.65123519557579]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005002701","ancestry":{"1":3172,"5":4,"38":8,"73":275,"79":118,"87":145,"88":12,"108":2681,"109":212}},"geometry":{"type":"Point","coordinates":[-73.9163335157451,40.8050605949854]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005006200","ancestry":{"1":7682,"3":28,"23":37,"34":9,"36":13,"42":1,"45":73,"49":1,"51":44,"61":1,"64":58,"73":55,"87":1,"88":54,"93":9,"94":373,"99":81,"101":87,"102":153,"105":52,"108":6907,"109":203}},"geometry":{"type":"Point","coordinates":[-73.87552753944229,40.83327566791508]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005028700","ancestry":{"1":3489,"3":149,"5":69,"6":178,"11":127,"14":51,"16":8,"23":18,"26":8,"32":9,"34":118,"36":56,"40":15,"41":13,"42":77,"44":47,"46":17,"49":288,"51":151,"59":9,"61":71,"64":19,"66":9,"67":107,"70":19,"73":11,"88":11,"89":4,"94":79,"105":79,"107":14,"108":2219,"109":258}},"geometry":{"type":"Point","coordinates":[-73.90465640418046,40.882714705594545]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051001","ancestry":{"1":4054,"5":175,"23":8,"26":14,"34":5,"38":21,"40":16,"42":6,"49":12,"51":50,"61":20,"62":6,"64":6,"66":16,"73":61,"87":61,"90":15,"93":8,"94":1828,"96":100,"99":249,"100":109,"101":437,"102":295,"103":322,"105":316,"108":1848,"109":221}},"geometry":{"type":"Point","coordinates":[-73.95976773906284,40.64612175643016]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005023100","ancestry":{"1":1594,"5":24,"40":14,"42":4,"46":12,"49":14,"51":27,"61":7,"64":7,"73":194,"76":45,"79":4,"87":40,"88":105,"94":150,"99":12,"101":93,"102":13,"103":7,"105":25,"108":1067,"109":150}},"geometry":{"type":"Point","coordinates":[-73.90245616207581,40.84621923324835]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024100","ancestry":{"1":6421,"5":95,"42":16,"51":75,"64":10,"73":445,"76":290,"87":118,"88":37,"94":346,"95":138,"96":36,"102":156,"103":50,"105":82,"108":5126,"109":434}},"geometry":{"type":"Point","coordinates":[-73.90618629338066,40.85314711983824]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047051602","ancestry":{"1":3641,"5":9,"6":25,"14":5,"15":20,"34":8,"35":12,"36":21,"38":8,"42":16,"45":183,"49":13,"51":72,"61":13,"64":12,"73":47,"87":47,"92":22,"94":1687,"97":24,"99":106,"101":961,"102":521,"103":36,"105":39,"108":1414,"109":204}},"geometry":{"type":"Point","coordinates":[-73.95814077291806,40.641613048227086]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047079601","ancestry":{"1":4385,"5":377,"6":82,"14":26,"15":56,"21":9,"34":10,"35":24,"36":75,"38":220,"40":28,"42":74,"45":87,"46":10,"49":127,"51":68,"53":20,"59":24,"61":56,"63":20,"64":60,"66":19,"67":10,"73":196,"76":38,"87":139,"88":19,"89":34,"93":39,"94":1416,"96":73,"99":181,"101":435,"102":389,"103":289,"105":89,"108":1395,"109":455}},"geometry":{"type":"Point","coordinates":[-73.95827228858424,40.656596412348705]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047079602","ancestry":{"1":4871,"5":58,"6":15,"15":15,"18":5,"23":6,"35":19,"36":22,"38":38,"40":22,"41":9,"42":8,"45":488,"48":10,"51":11,"61":9,"73":263,"75":35,"76":154,"79":30,"80":18,"87":26,"89":8,"94":1694,"96":29,"99":105,"100":10,"101":577,"102":475,"103":296,"105":207,"106":11,"108":2139,"109":218}},"geometry":{"type":"Point","coordinates":[-73.95765514934288,40.65276026033566]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005038200","ancestry":{"1":2686,"5":57,"31":1,"36":5,"49":6,"51":15,"61":26,"73":86,"79":74,"87":12,"94":978,"97":6,"99":66,"101":84,"102":779,"105":53,"107":1,"108":1480,"109":136}},"geometry":{"type":"Point","coordinates":[-73.85473942648778,40.87731193682129]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039600","ancestry":{"1":3483,"5":317,"31":41,"45":244,"49":8,"73":63,"76":32,"79":18,"87":13,"94":870,"99":29,"102":682,"103":36,"104":7,"105":116,"108":1648,"109":380}},"geometry":{"type":"Point","coordinates":[-73.85895558916184,40.884423804241564]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005041500","ancestry":{"1":5449,"3":83,"5":97,"29":8,"31":29,"36":71,"38":13,"40":14,"42":43,"49":119,"51":235,"64":30,"67":11,"70":16,"73":99,"76":42,"79":6,"87":51,"92":15,"94":39,"101":5,"102":34,"108":4583,"109":197}},"geometry":{"type":"Point","coordinates":[-73.88354910318819,40.870105162826555]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042901","ancestry":{"1":3777,"3":170,"5":133,"6":185,"15":185,"19":5,"36":28,"46":24,"49":65,"51":85,"61":11,"73":31,"87":10,"88":21,"94":39,"102":39,"108":2871,"109":233}},"geometry":{"type":"Point","coordinates":[-73.87429247957135,40.87494986740009]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005044901","ancestry":{"1":1669,"5":163,"19":6,"29":5,"33":11,"36":9,"38":10,"40":37,"42":172,"44":13,"46":5,"49":885,"50":5,"51":142,"61":17,"66":22,"67":9,"89":19,"108":309,"109":191}},"geometry":{"type":"Point","coordinates":[-73.8733942786325,40.89749988846907]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005000100","ancestry":{"1":8430,"3":17,"5":112,"6":37,"7":22,"10":4,"14":6,"15":5,"23":7,"42":14,"45":59,"48":3,"49":65,"50":36,"51":133,"61":19,"62":5,"63":38,"64":35,"73":65,"76":17,"87":48,"92":3,"94":286,"99":31,"101":69,"102":99,"103":75,"104":7,"105":10,"108":7567,"109":12}},"geometry":{"type":"Point","coordinates":[-73.88266602968052,40.79113579153594]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36005000100","ancestry":{"1":8430,"3":17,"5":112,"6":37,"7":22,"10":4,"14":6,"15":5,"23":7,"42":14,"45":59,"48":3,"49":65,"50":36,"51":133,"61":19,"62":5,"63":38,"64":35,"73":65,"76":17,"87":48,"92":3,"94":286,"99":31,"101":69,"102":99,"103":75,"104":7,"105":10,"108":7567,"109":12}},"geometry":{"type":"Point","coordinates":[-73.8728244505773,40.78593959304599]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005000400","ancestry":{"1":5572,"5":128,"42":8,"45":45,"49":8,"51":71,"61":22,"66":39,"73":140,"76":25,"87":115,"94":436,"96":15,"97":8,"98":11,"99":33,"102":124,"105":261,"108":4531,"109":280}},"geometry":{"type":"Point","coordinates":[-73.8524168998257,40.81060898425674]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005001600","ancestry":{"1":5412,"5":80,"16":8,"36":21,"38":54,"40":9,"42":11,"44":4,"45":10,"49":14,"51":14,"64":7,"73":221,"76":40,"80":7,"87":185,"94":471,"97":24,"99":55,"101":17,"102":283,"103":49,"105":55,"108":4231,"109":415}},"geometry":{"type":"Point","coordinates":[-73.85807635854403,40.818847798267605]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005008500","ancestry":{"1":6324,"34":7,"41":14,"42":4,"45":8,"49":72,"51":22,"66":8,"73":340,"80":312,"87":28,"94":111,"99":5,"101":44,"102":54,"105":14,"108":5124,"109":713}},"geometry":{"type":"Point","coordinates":[-73.8990831611249,40.816276261216565]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005013000","ancestry":{"1":1334,"5":70,"34":35,"40":16,"42":62,"44":14,"45":20,"49":251,"51":508,"59":35,"61":13,"89":5,"108":486,"109":43}},"geometry":{"type":"Point","coordinates":[-73.81474856614987,40.81930549026905]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005013200","ancestry":{"1":7150,"3":50,"5":267,"19":12,"30":83,"36":51,"38":15,"42":210,"44":39,"49":811,"51":1165,"61":39,"66":39,"73":1,"87":1,"93":45,"94":146,"102":146,"108":4251,"109":888}},"geometry":{"type":"Point","coordinates":[-73.82066341894772,40.815514275891104]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005013500","ancestry":{"1":3957,"5":116,"49":8,"51":55,"56":9,"73":184,"76":21,"87":118,"88":63,"94":242,"99":28,"102":158,"105":56,"108":3172,"109":376}},"geometry":{"type":"Point","coordinates":[-73.90209640144776,40.827133324123125]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005013800","ancestry":{"1":3301,"3":146,"5":246,"33":9,"34":9,"36":19,"37":10,"38":13,"40":37,"41":53,"42":464,"46":17,"49":1012,"51":923,"55":44,"61":13,"62":25,"64":31,"67":8,"68":29,"89":23,"93":65,"94":47,"99":46,"105":1,"108":1074,"109":122}},"geometry":{"type":"Point","coordinates":[-73.81014648055735,40.82157548539055]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005014300","ancestry":{"1":942,"5":21,"36":5,"73":147,"76":8,"79":112,"87":9,"88":18,"108":761,"109":29}},"geometry":{"type":"Point","coordinates":[-73.91212971594659,40.82774740218474]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005014400","ancestry":{"1":6062,"5":53,"23":14,"36":59,"40":15,"42":48,"45":51,"49":66,"51":57,"61":16,"73":141,"87":14,"88":127,"94":75,"102":26,"105":49,"108":5394,"109":302}},"geometry":{"type":"Point","coordinates":[-73.82333706013307,40.8212966147929]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005014900","ancestry":{"1":4531,"5":64,"26":20,"36":8,"49":32,"51":38,"64":6,"67":17,"73":486,"76":20,"80":64,"87":466,"88":14,"94":297,"99":24,"102":121,"103":113,"104":39,"105":24,"108":3578,"109":179}},"geometry":{"type":"Point","coordinates":[-73.90148213420873,40.832609977881475]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005015100","ancestry":{"1":5662,"5":45,"41":15,"42":8,"49":61,"51":37,"61":11,"73":614,"79":145,"81":50,"87":222,"88":197,"94":347,"97":14,"99":60,"101":107,"102":71,"103":37,"104":5,"105":53,"108":4210,"109":437}},"geometry":{"type":"Point","coordinates":[-73.89848022530781,40.831083377162194]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005015500","ancestry":{"1":3058,"2":9,"5":39,"73":136,"87":136,"94":29,"99":23,"105":6,"108":2459,"109":408}},"geometry":{"type":"Point","coordinates":[-73.88998630300452,40.83552636680678]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016000","ancestry":{"1":4429,"3":15,"5":490,"6":94,"10":94,"19":28,"29":74,"36":56,"40":115,"41":17,"42":325,"44":63,"46":29,"49":682,"50":13,"51":1395,"59":12,"61":72,"64":133,"89":12,"91":124,"108":1294,"109":447}},"geometry":{"type":"Point","coordinates":[-73.8175233014081,40.83112032257113]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016100","ancestry":{"1":4130,"5":113,"62":19,"73":236,"76":131,"79":9,"87":96,"94":99,"102":86,"105":13,"108":3544,"109":214}},"geometry":{"type":"Point","coordinates":[-73.88501520322667,40.83684654742133]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016200","ancestry":{"1":1989,"3":46,"5":88,"19":43,"26":26,"31":25,"32":12,"36":61,"42":142,"44":50,"45":18,"49":128,"51":384,"61":11,"63":5,"94":123,"102":17,"103":36,"105":70,"108":934,"109":170}},"geometry":{"type":"Point","coordinates":[-73.82175925183788,40.828850248787695]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016300","ancestry":{"1":77,"108":77}},"geometry":{"type":"Point","coordinates":[-73.8949708896757,40.83856449081961]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016500","ancestry":{"1":1296,"5":53,"61":10,"73":146,"76":8,"79":10,"87":75,"88":53,"94":55,"97":23,"101":17,"102":6,"103":5,"105":4,"108":970,"109":77}},"geometry":{"type":"Point","coordinates":[-73.90027736398248,40.84310885284828]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005008900","ancestry":{"1":3540,"5":63,"40":67,"42":139,"73":143,"76":143,"88":74,"94":95,"96":16,"102":11,"104":61,"105":7,"108":3009,"109":323}},"geometry":{"type":"Point","coordinates":[-73.89390602990485,40.81856681008747]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047093200","ancestry":{"1":1280,"5":55,"45":142,"51":13,"73":309,"87":309,"94":678,"96":14,"99":51,"100":15,"101":49,"102":153,"103":73,"105":323,"108":403,"109":54}},"geometry":{"type":"Point","coordinates":[-73.92950913347993,40.6375676485289]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005009200","ancestry":{"1":5397,"5":120,"6":18,"14":18,"22":8,"36":13,"40":5,"42":32,"45":194,"49":5,"51":48,"61":17,"67":25,"73":212,"76":106,"87":106,"92":9,"94":348,"96":23,"99":8,"101":33,"102":60,"103":48,"105":155,"106":29,"108":4052,"109":376}},"geometry":{"type":"Point","coordinates":[-73.85215452165181,40.832339439391795]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047110400","ancestry":{"1":4725,"5":219,"34":9,"36":39,"45":189,"49":19,"61":6,"73":81,"87":81,"94":1135,"96":30,"97":40,"99":95,"101":105,"102":369,"103":341,"104":23,"105":182,"108":2669,"109":492}},"geometry":{"type":"Point","coordinates":[-73.88877118497483,40.65741334541609]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005009800","ancestry":{"1":4922,"5":115,"6":27,"7":27,"22":45,"38":20,"42":10,"44":67,"45":55,"49":21,"51":161,"61":15,"73":91,"76":62,"88":29,"94":170,"99":54,"102":21,"103":44,"104":10,"105":62,"108":4027,"109":278}},"geometry":{"type":"Point","coordinates":[-73.84950513622518,40.82545049851315]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047011900","ancestry":{"1":1915,"5":256,"6":6,"10":6,"19":6,"23":7,"26":1,"31":5,"33":4,"34":41,"35":22,"36":92,"38":56,"40":25,"41":21,"42":190,"44":13,"45":20,"46":3,"49":200,"51":230,"53":6,"56":15,"61":91,"63":15,"64":19,"66":6,"67":44,"69":5,"89":50,"92":37,"94":17,"95":7,"101":6,"103":4,"108":954,"109":143}},"geometry":{"type":"Point","coordinates":[-73.9898079443851,40.6753263679065]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047016600","ancestry":{"1":2239,"5":103,"6":72,"7":9,"10":17,"12":19,"14":22,"15":9,"23":5,"26":6,"34":5,"35":5,"36":50,"40":5,"42":37,"44":242,"49":148,"51":1367,"59":27,"61":23,"64":12,"67":20,"89":4,"108":349,"109":130}},"geometry":{"type":"Point","coordinates":[-74.01626242864917,40.61870310750237]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005008600","ancestry":{"1":3916,"5":12,"40":6,"42":13,"51":10,"73":24,"87":24,"94":35,"99":35,"108":3575,"109":288}},"geometry":{"type":"Point","coordinates":[-73.84980595936621,40.81987887628111]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005008700","ancestry":{"1":6406,"5":17,"6":8,"15":8,"34":17,"42":9,"49":34,"51":189,"73":129,"82":25,"87":69,"88":35,"94":194,"96":72,"101":3,"102":88,"103":8,"104":33,"105":18,"108":5623,"109":361}},"geometry":{"type":"Point","coordinates":[-73.89728469904631,40.81967198915409]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005011000","ancestry":{"1":205,"108":205}},"geometry":{"type":"Point","coordinates":[-73.83255297281185,40.81663208264479]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005011502","ancestry":{"1":4446,"5":53,"23":10,"34":27,"40":9,"42":7,"49":16,"51":7,"73":193,"87":169,"88":39,"94":50,"103":24,"105":26,"108":3889,"109":290}},"geometry":{"type":"Point","coordinates":[-73.88603356482852,40.81968864212937]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047111600","ancestry":{"1":3406,"5":120,"6":76,"12":8,"14":68,"38":16,"40":8,"42":7,"44":4,"45":159,"73":61,"79":28,"87":33,"94":303,"97":99,"99":112,"102":7,"103":30,"105":66,"108":2503,"109":173}},"geometry":{"type":"Point","coordinates":[-73.87568821803272,40.66386320195326]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047004400","ancestry":{"1":2382,"5":93,"6":183,"10":77,"12":27,"13":79,"19":25,"20":23,"34":6,"35":10,"36":65,"38":6,"39":5,"40":20,"41":12,"42":105,"44":318,"46":20,"48":5,"49":384,"51":828,"53":7,"56":5,"59":12,"61":124,"64":35,"66":19,"67":13,"89":14,"92":6,"93":12,"108":504,"109":168}},"geometry":{"type":"Point","coordinates":[-74.03598029109641,40.63080840845732]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047030500","ancestry":{"1":5809,"5":425,"6":77,"14":18,"15":59,"19":13,"23":14,"29":20,"31":13,"33":12,"34":50,"35":147,"36":125,"38":89,"40":57,"41":39,"42":262,"44":14,"45":183,"46":81,"49":313,"51":455,"53":29,"56":16,"59":32,"61":118,"62":39,"64":103,"66":53,"67":83,"70":17,"73":95,"76":16,"84":30,"87":49,"89":16,"90":16,"91":18,"92":48,"93":38,"94":482,"96":34,"97":16,"99":8,"101":38,"102":166,"103":191,"105":29,"108":2581,"109":697}},"geometry":{"type":"Point","coordinates":[-73.95906026637071,40.6773163643544]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005002000","ancestry":{"1":8959,"5":52,"23":44,"36":26,"45":38,"49":25,"73":104,"87":104,"94":573,"96":9,"99":22,"101":36,"102":305,"104":12,"105":201,"108":7158,"109":1085}},"geometry":{"type":"Point","coordinates":[-73.86609622403151,40.81758007820279]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005002300","ancestry":{"1":4860,"5":76,"36":1,"42":31,"49":10,"51":4,"67":1,"73":137,"76":56,"87":70,"88":53,"94":103,"101":14,"102":62,"104":24,"105":17,"108":4190,"109":392}},"geometry":{"type":"Point","coordinates":[-73.92584407523609,40.809082313539506]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005002400","ancestry":{}},"geometry":{"type":"Point","coordinates":[-73.87138983287225,40.816495202326394]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005002500","ancestry":{"1":5143,"5":9,"34":54,"49":39,"62":26,"92":55,"94":10,"105":10,"108":4701,"109":353}},"geometry":{"type":"Point","coordinates":[-73.92087492512655,40.80700247872159]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005002702","ancestry":{"1":4683,"5":105,"61":23,"73":17,"87":7,"88":10,"94":109,"99":46,"102":63,"108":4098,"109":447}},"geometry":{"type":"Point","coordinates":[-73.91377291326029,40.80644895514418]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005002800","ancestry":{"1":5746,"5":49,"41":11,"42":54,"45":21,"51":31,"73":480,"75":11,"76":212,"87":257,"94":259,"96":18,"102":176,"105":65,"108":4701,"109":337}},"geometry":{"type":"Point","coordinates":[-73.87821426773802,40.82160145550681]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005003500","ancestry":{"1":3753,"5":79,"38":10,"49":9,"51":18,"73":148,"87":139,"88":18,"94":119,"101":6,"105":113,"108":2982,"109":416}},"geometry":{"type":"Point","coordinates":[-73.90866958654162,40.8109651157374]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005003700","ancestry":{"1":199,"46":28,"73":11,"87":11,"108":158,"109":13}},"geometry":{"type":"Point","coordinates":[-73.91218701072854,40.811442403924865]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005003900","ancestry":{"1":6580,"5":108,"20":16,"36":24,"38":19,"40":15,"42":9,"45":23,"46":19,"51":23,"61":36,"66":9,"73":11,"87":11,"89":22,"92":14,"93":10,"94":129,"97":74,"99":31,"102":24,"105":11,"108":5658,"109":572}},"geometry":{"type":"Point","coordinates":[-73.92142647300665,40.80972167380296]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005004300","ancestry":{"1":5841,"5":285,"36":14,"40":25,"42":20,"49":17,"51":76,"61":8,"73":188,"87":188,"94":205,"96":31,"99":95,"103":10,"105":69,"108":5050,"109":342}},"geometry":{"type":"Point","coordinates":[-73.91703759685335,40.81362131412285]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005004400","ancestry":{"1":4830,"5":163,"22":42,"40":6,"45":27,"49":23,"51":12,"94":185,"102":153,"105":32,"108":4348,"109":321}},"geometry":{"type":"Point","coordinates":[-73.86641353962143,40.826515453130824]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005004800","ancestry":{"1":4024,"5":106,"6":19,"14":19,"22":9,"24":8,"42":8,"45":42,"73":100,"79":35,"80":43,"87":15,"88":7,"94":155,"97":7,"102":148,"108":3548,"109":95}},"geometry":{"type":"Point","coordinates":[-73.87430440361294,40.827017177605626]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016700","ancestry":{"1":2433,"5":26,"41":31,"49":4,"73":329,"76":172,"79":38,"87":82,"88":56,"94":210,"99":102,"102":82,"103":26,"108":1693,"109":204}},"geometry":{"type":"Point","coordinates":[-73.90217084174085,40.840480789085646]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016900","ancestry":{"1":1498,"5":87,"23":18,"32":2,"42":5,"49":52,"51":18,"62":3,"67":11,"73":117,"76":16,"79":13,"87":88,"94":87,"102":38,"105":49,"108":1114,"109":84}},"geometry":{"type":"Point","coordinates":[-73.90272470763351,40.83778990216507]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005017300","ancestry":{"1":6697,"5":98,"6":10,"14":10,"22":45,"42":50,"51":75,"73":349,"76":61,"87":23,"88":265,"94":79,"96":12,"99":23,"102":16,"105":28,"108":5675,"109":493}},"geometry":{"type":"Point","coordinates":[-73.91652268157708,40.82629598164052]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005016600","ancestry":{"1":2292,"5":100,"19":21,"32":5,"35":7,"36":12,"42":126,"44":13,"45":60,"49":118,"51":661,"61":7,"62":13,"63":32,"64":6,"67":2,"89":6,"94":8,"101":8,"108":1285,"109":166}},"geometry":{"type":"Point","coordinates":[-73.83018392840573,40.82952916332093]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005017500","ancestry":{"1":7021,"5":132,"38":31,"41":20,"51":28,"63":11,"73":400,"76":4,"79":39,"87":289,"88":72,"91":26,"94":504,"99":34,"102":346,"103":27,"105":97,"108":5696,"109":582}},"geometry":{"type":"Point","coordinates":[-73.91365113602454,40.83082255848835]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005018400","ancestry":{"1":3928,"3":30,"5":167,"6":88,"7":72,"14":16,"16":11,"19":121,"23":8,"31":51,"32":7,"34":48,"40":13,"42":312,"44":132,"49":404,"51":1152,"61":82,"64":6,"67":17,"70":12,"89":8,"93":7,"94":163,"105":163,"107":77,"108":1628,"109":199}},"geometry":{"type":"Point","coordinates":[-73.82928130466178,40.83741589446805]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005018900","ancestry":{"1":8389,"3":174,"5":84,"6":57,"7":57,"40":70,"49":28,"51":91,"73":325,"76":69,"87":194,"88":62,"92":18,"94":313,"99":21,"100":4,"101":13,"102":65,"103":127,"105":83,"108":6909,"109":422}},"geometry":{"type":"Point","coordinates":[-73.93020718665434,40.83172310869965]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005019300","ancestry":{"1":5301,"5":63,"33":10,"42":7,"49":16,"73":494,"76":19,"79":114,"87":329,"88":32,"94":44,"102":44,"108":4077,"109":665}},"geometry":{"type":"Point","coordinates":[-73.92932289563225,40.83634712365801]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005019400","ancestry":{"1":2282,"3":39,"5":40,"26":14,"33":21,"36":27,"42":35,"45":148,"49":68,"51":215,"64":28,"67":5,"89":4,"92":5,"94":173,"103":19,"105":173,"108":1493,"109":196}},"geometry":{"type":"Point","coordinates":[-73.83588913503966,40.83351138481591]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085022800","ancestry":{"1":231,"36":41,"42":14,"51":56,"61":5,"64":5,"89":135,"108":150,"109":21}},"geometry":{"type":"Point","coordinates":[-74.18633955268166,40.57688612558164]}},{"type":"Feature","properties":{"BoroName":"Staten Island","geo_id":"36085024401","ancestry":{"1":6199,"3":295,"5":59,"6":91,"7":91,"22":35,"26":10,"33":23,"36":108,"40":34,"41":65,"42":589,"49":1170,"50":94,"51":3446,"53":27,"56":144,"59":153,"61":20,"64":175,"66":26,"89":38,"92":22,"108":605,"109":595}},"geometry":{"type":"Point","coordinates":[-74.23752254252635,40.50973962259023]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005011800","ancestry":{"1":5328,"5":221,"19":9,"23":9,"26":20,"29":7,"31":20,"32":8,"33":227,"34":16,"36":217,"38":38,"40":134,"42":672,"44":60,"46":9,"48":8,"49":1858,"51":1636,"53":8,"59":10,"61":90,"63":42,"64":66,"66":43,"67":36,"89":27,"91":16,"92":17,"94":67,"101":18,"102":41,"103":8,"108":1326,"109":360}},"geometry":{"type":"Point","coordinates":[-73.80426068320035,40.812633465527064]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005012102","ancestry":{"1":1485,"5":5,"36":17,"108":1374,"109":89}},"geometry":{"type":"Point","coordinates":[-73.88796203155135,40.82600667098119]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005012300","ancestry":{"1":4144,"49":24,"62":25,"73":205,"79":197,"88":8,"94":123,"99":26,"102":32,"105":65,"108":3538,"109":270}},"geometry":{"type":"Point","coordinates":[-73.88735825172705,40.82854553539933]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005012500","ancestry":{"1":4139,"5":9,"36":32,"40":7,"42":31,"49":41,"51":30,"64":9,"73":303,"75":21,"76":120,"79":7,"80":12,"87":56,"88":94,"94":431,"96":47,"97":18,"99":11,"101":1,"102":333,"105":21,"108":3158,"109":365}},"geometry":{"type":"Point","coordinates":[-73.89351643444684,40.82864617535005]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005012701","ancestry":{"1":2117,"5":18,"19":10,"42":26,"45":5,"49":12,"51":31,"66":15,"73":38,"87":38,"89":10,"94":56,"102":4,"105":52,"108":1919,"109":115}},"geometry":{"type":"Point","coordinates":[-73.89232366655962,40.8256392963467]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047076800","ancestry":{"1":3512,"5":499,"6":35,"13":31,"15":26,"19":59,"21":9,"38":64,"40":25,"42":85,"46":30,"48":16,"49":142,"50":30,"51":33,"53":8,"61":181,"64":414,"69":4,"92":56,"94":8,"105":8,"107":70,"108":1506,"109":538}},"geometry":{"type":"Point","coordinates":[-73.96080169581344,40.618804211052755]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047094600","ancestry":{"1":1985,"3":19,"5":18,"23":13,"31":2,"45":147,"49":5,"51":24,"64":6,"73":132,"76":6,"87":126,"94":1112,"96":152,"99":222,"101":221,"102":425,"103":23,"105":161,"108":596,"109":92}},"geometry":{"type":"Point","coordinates":[-73.9232797566214,40.64461692074791]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047119800","ancestry":{"1":3120,"5":212,"42":5,"45":124,"49":5,"51":57,"63":5,"64":6,"73":8,"87":8,"92":6,"94":455,"96":7,"99":29,"101":9,"102":397,"103":8,"105":5,"108":1989,"109":409}},"geometry":{"type":"Point","coordinates":[-73.89438606649406,40.6763144688233]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040900","ancestry":{"1":3500,"3":61,"5":69,"35":25,"38":8,"42":36,"44":70,"49":20,"51":8,"61":27,"63":37,"64":60,"73":1463,"75":36,"76":1174,"78":47,"82":28,"87":206,"88":25,"91":50,"92":7,"94":185,"102":73,"105":112,"107":14,"108":1216,"109":372}},"geometry":{"type":"Point","coordinates":[-73.89314704988166,40.87677982386402]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005041100","ancestry":{"1":2928,"3":31,"5":62,"6":110,"11":110,"22":16,"36":50,"42":51,"49":39,"51":20,"53":54,"61":11,"73":287,"76":181,"87":18,"88":88,"89":10,"94":157,"101":15,"102":59,"105":83,"107":11,"108":1961,"109":262}},"geometry":{"type":"Point","coordinates":[-73.88713715868381,40.875582814778134]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005041300","ancestry":{"1":7598,"3":273,"5":116,"6":17,"7":17,"29":44,"31":87,"33":38,"36":31,"38":26,"42":22,"45":59,"49":107,"51":103,"55":27,"59":26,"61":55,"64":17,"68":29,"73":24,"87":24,"94":141,"96":13,"99":32,"105":96,"107":156,"108":6148,"109":360}},"geometry":{"type":"Point","coordinates":[-73.88519716300458,40.87409460151997]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005041400","ancestry":{"1":4834,"5":86,"40":25,"42":47,"44":56,"45":199,"46":21,"49":38,"51":167,"61":4,"62":31,"64":21,"73":390,"76":143,"79":77,"81":62,"87":108,"94":1332,"99":68,"101":28,"102":943,"103":131,"105":208,"106":6,"107":1,"108":2239,"109":384}},"geometry":{"type":"Point","coordinates":[-73.85408792276355,40.90351427078713]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005041800","ancestry":{"1":3804,"5":45,"6":9,"14":9,"40":11,"42":17,"44":20,"45":241,"49":24,"51":24,"61":11,"62":47,"70":21,"73":169,"79":73,"87":96,"94":1003,"101":49,"102":362,"104":8,"105":612,"108":1978,"109":283}},"geometry":{"type":"Point","coordinates":[-73.8584636331717,40.897115485580635]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005040800","ancestry":{"1":4191,"5":134,"21":43,"23":20,"40":6,"42":8,"44":11,"45":8,"49":23,"51":34,"73":390,"76":134,"79":182,"87":74,"94":1365,"99":12,"101":43,"102":690,"103":40,"105":596,"108":1762,"109":506}},"geometry":{"type":"Point","coordinates":[-73.8617074373463,40.88974285565017]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005041900","ancestry":{"1":6965,"5":393,"6":270,"11":26,"14":73,"15":171,"36":72,"38":23,"42":270,"49":393,"51":91,"55":56,"61":35,"62":18,"64":5,"73":325,"76":231,"87":40,"88":54,"92":83,"94":177,"99":7,"102":65,"103":90,"105":29,"108":4865,"109":456}},"geometry":{"type":"Point","coordinates":[-73.88168373624211,40.87685593573029]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042100","ancestry":{"1":5717,"5":42,"6":186,"7":35,"10":57,"14":14,"15":80,"31":13,"36":16,"38":43,"42":105,"45":36,"48":13,"49":165,"51":38,"58":13,"61":36,"64":73,"73":57,"76":40,"87":17,"89":12,"92":9,"94":286,"102":194,"103":71,"105":21,"108":4477,"109":423}},"geometry":{"type":"Point","coordinates":[-73.88272653529857,40.88145580842652]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042200","ancestry":{"1":3287,"5":64,"36":52,"45":64,"49":26,"51":153,"61":9,"73":43,"79":34,"87":9,"92":11,"94":1656,"96":12,"99":69,"102":1383,"103":157,"105":35,"108":1212,"109":229}},"geometry":{"type":"Point","coordinates":[-73.85527532656876,40.891097130206106]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042300","ancestry":{"1":4203,"3":135,"5":235,"6":36,"14":36,"24":83,"36":10,"42":37,"44":9,"49":180,"51":88,"59":8,"61":93,"64":8,"73":23,"87":23,"89":15,"94":202,"102":200,"105":30,"108":2921,"109":452}},"geometry":{"type":"Point","coordinates":[-73.87732099493228,40.87706822179853]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042400","ancestry":{"1":2891,"5":109,"23":13,"36":4,"45":4,"46":11,"49":10,"51":42,"73":44,"76":31,"79":7,"87":13,"94":1112,"96":7,"102":790,"103":23,"104":20,"105":294,"108":1339,"109":245}},"geometry":{"type":"Point","coordinates":[-73.84953880049326,40.88928250576459]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042500","ancestry":{"1":6637,"3":90,"5":260,"16":16,"24":64,"34":14,"36":40,"40":56,"42":204,"46":266,"49":169,"51":197,"57":28,"61":16,"64":14,"67":1,"73":85,"76":15,"87":70,"94":325,"102":156,"103":99,"105":70,"108":4949,"109":108}},"geometry":{"type":"Point","coordinates":[-73.87909041891004,40.87104729226266]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042600","ancestry":{"1":7198,"5":150,"42":8,"45":145,"51":27,"73":248,"76":178,"79":62,"87":8,"94":3978,"99":16,"101":351,"102":2406,"103":20,"105":1255,"108":2079,"109":626}},"geometry":{"type":"Point","coordinates":[-73.84192916008529,40.89084106255992]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005042902","ancestry":{"1":4086,"5":147,"16":5,"24":5,"40":5,"42":25,"45":33,"49":293,"51":43,"59":21,"61":43,"73":67,"87":19,"88":48,"94":240,"99":98,"102":116,"105":62,"108":3126,"109":323}},"geometry":{"type":"Point","coordinates":[-73.87390901236073,40.87711755866603]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005043000","ancestry":{"1":3550,"5":54,"22":56,"40":26,"45":42,"46":16,"51":154,"67":97,"73":23,"87":23,"94":1654,"96":26,"101":46,"102":1110,"103":12,"105":460,"108":1227,"109":410}},"geometry":{"type":"Point","coordinates":[-73.85065739477994,40.89345986029703]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005035100","ancestry":{"1":3202,"5":36,"6":36,"8":23,"10":13,"19":10,"23":12,"28":7,"34":12,"35":8,"36":116,"38":19,"40":37,"41":8,"42":320,"44":26,"46":12,"49":669,"51":445,"53":14,"59":17,"61":111,"62":22,"64":147,"67":14,"70":2,"89":38,"92":33,"93":14,"94":115,"101":15,"102":68,"103":8,"105":24,"108":1485,"109":238}},"geometry":{"type":"Point","coordinates":[-73.89999749046717,40.89506978315975]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005035600","ancestry":{"1":2423,"5":63,"45":29,"51":51,"67":15,"73":248,"76":82,"79":27,"87":139,"94":862,"96":22,"99":6,"102":548,"105":286,"108":1145,"109":180}},"geometry":{"type":"Point","coordinates":[-73.83604365992176,40.866899463418974]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005035800","ancestry":{"1":8113,"5":536,"33":16,"36":8,"45":112,"49":27,"51":190,"64":24,"66":16,"73":920,"76":106,"79":336,"87":520,"88":1,"94":2917,"96":7,"99":218,"102":2168,"103":93,"104":33,"105":442,"108":3297,"109":839}},"geometry":{"type":"Point","coordinates":[-73.8426047343003,40.873975319451816]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005035900","ancestry":{"1":1902,"5":223,"42":27,"49":21,"73":231,"76":65,"87":166,"94":13,"102":4,"103":9,"108":1470,"109":96}},"geometry":{"type":"Point","coordinates":[-73.88338470224014,40.84020927516292]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036100","ancestry":{"1":6453,"5":407,"36":155,"46":8,"49":1,"93":8,"94":1,"105":1,"108":5736,"109":515}},"geometry":{"type":"Point","coordinates":[-73.87957687780093,40.84226077915535]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036300","ancestry":{"1":7855,"5":441,"49":31,"51":18,"61":18,"73":96,"87":19,"88":77,"94":238,"102":148,"103":26,"105":64,"108":6928,"109":586}},"geometry":{"type":"Point","coordinates":[-73.88275759947531,40.844543827229906]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036502","ancestry":{"1":1832,"5":18,"46":3,"49":4,"51":4,"73":90,"76":16,"87":74,"94":95,"102":95,"108":1537,"109":105}},"geometry":{"type":"Point","coordinates":[-73.88782553017714,40.84238772628715]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036700","ancestry":{"1":2556,"5":112,"40":4,"42":32,"49":47,"51":22,"61":14,"73":35,"76":4,"87":31,"88":4,"91":9,"94":65,"101":9,"102":15,"103":21,"104":8,"105":12,"108":2283,"109":145}},"geometry":{"type":"Point","coordinates":[-73.88931074489778,40.84076403322308]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005036902","ancestry":{"1":2309,"5":28,"36":10,"40":79,"51":82,"64":12,"73":91,"76":20,"87":71,"94":81,"96":13,"99":4,"102":64,"108":1533,"109":581}},"geometry":{"type":"Point","coordinates":[-73.89291990894274,40.84255959772658]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005043500","ancestry":{"1":55,"108":35,"109":20}},"geometry":{"type":"Point","coordinates":[-73.8819660343253,40.89453666563685]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005043600","ancestry":{"1":2264,"5":68,"36":1,"42":67,"49":15,"51":25,"61":13,"73":96,"87":88,"88":8,"94":674,"96":11,"102":572,"105":91,"108":1166,"109":191}},"geometry":{"type":"Point","coordinates":[-73.84975898055879,40.897279532298235]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005044200","ancestry":{"1":4108,"3":46,"5":144,"45":46,"51":24,"73":84,"77":33,"79":25,"87":26,"94":2092,"96":57,"99":43,"102":1295,"103":10,"105":687,"108":1550,"109":240}},"geometry":{"type":"Point","coordinates":[-73.84626576169447,40.903862327748755]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005044800","ancestry":{"1":2184,"5":89,"40":32,"42":13,"51":86,"73":17,"87":17,"94":984,"102":680,"103":32,"105":272,"108":1029,"109":157}},"geometry":{"type":"Point","coordinates":[-73.84131024124727,40.895471204485744]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005045102","ancestry":{"1":1847,"3":74,"5":18,"26":4,"31":18,"34":42,"36":46,"40":15,"42":83,"46":33,"48":16,"49":927,"51":202,"58":21,"61":14,"63":49,"66":8,"94":22,"102":22,"108":279,"109":186}},"geometry":{"type":"Point","coordinates":[-73.86414947251058,40.90036688332172]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005045800","ancestry":{"1":5287,"5":44,"36":17,"45":30,"49":17,"51":77,"63":32,"64":8,"73":23,"88":23,"94":266,"96":23,"102":85,"105":158,"108":4087,"109":746}},"geometry":{"type":"Point","coordinates":[-73.84520273727586,40.885861129954264]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005046201","ancestry":{"1":28827,"5":473,"6":51,"7":47,"15":4,"19":53,"26":25,"34":7,"35":21,"36":46,"38":163,"39":17,"40":9,"42":40,"44":85,"45":101,"46":78,"48":46,"49":237,"51":218,"57":6,"61":565,"62":9,"63":184,"64":572,"67":59,"73":2095,"75":717,"76":955,"79":17,"87":380,"88":26,"89":14,"92":37,"94":3835,"96":95,"97":141,"99":130,"101":135,"102":2845,"103":73,"105":499,"108":18156,"109":2989}},"geometry":{"type":"Point","coordinates":[-73.82732157663959,40.874377046199605]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005046202","ancestry":{"1":8701,"5":50,"19":8,"23":18,"36":82,"38":118,"40":8,"42":9,"45":11,"49":16,"51":76,"61":6,"62":14,"64":15,"73":503,"76":208,"79":29,"87":290,"92":27,"94":2474,"96":179,"97":22,"99":190,"101":8,"102":1394,"103":246,"105":473,"108":4780,"109":873}},"geometry":{"type":"Point","coordinates":[-73.83397908530797,40.879053123029735]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005048400","ancestry":{"1":3779,"5":21,"23":12,"36":29,"42":20,"45":21,"49":11,"51":9,"61":22,"70":10,"73":194,"76":52,"79":64,"87":107,"94":1568,"99":14,"101":20,"102":950,"103":28,"105":556,"108":1716,"109":274}},"geometry":{"type":"Point","coordinates":[-73.83458722888221,40.8863050328491]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037200","ancestry":{"1":2280,"5":208,"23":5,"45":94,"49":50,"51":34,"73":170,"79":37,"86":13,"87":107,"88":13,"94":471,"101":32,"102":238,"105":201,"108":1098,"109":298}},"geometry":{"type":"Point","coordinates":[-73.86328030678172,40.87380248959481]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037000","ancestry":{"1":2487,"3":21,"5":109,"6":11,"14":6,"15":5,"36":13,"51":53,"66":4,"73":147,"74":16,"76":40,"79":44,"87":47,"94":903,"95":5,"97":30,"102":818,"105":50,"108":1173,"109":139}},"geometry":{"type":"Point","coordinates":[-73.85902141749034,40.87309208068112]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037300","ancestry":{"1":5096,"5":69,"45":64,"49":10,"51":58,"67":10,"73":223,"75":50,"87":137,"88":36,"94":321,"95":69,"99":9,"101":10,"102":122,"103":53,"104":14,"105":53,"108":3965,"109":497}},"geometry":{"type":"Point","coordinates":[-73.8901414810599,40.84867332058227]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005037400","ancestry":{"1":3525,"5":324,"44":38,"45":21,"51":7,"62":18,"67":18,"73":251,"87":192,"88":59,"94":443,"102":443,"108":2083,"109":451}},"geometry":{"type":"Point","coordinates":[-73.86667108498408,40.874537990314096]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005050400","ancestry":{"1":54,"44":8,"108":49}},"geometry":{"type":"Point","coordinates":[-73.80439650942208,40.87161806014916]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005051600","ancestry":{"1":4336,"5":182,"6":13,"14":13,"23":20,"33":75,"34":27,"35":35,"36":442,"38":13,"42":526,"44":15,"46":281,"49":1324,"51":1034,"56":22,"59":60,"61":225,"64":63,"66":20,"67":87,"91":10,"92":32,"93":13,"94":1,"102":1,"108":1180,"109":163}},"geometry":{"type":"Point","coordinates":[-73.78198536209995,40.849084341140454]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005004100","ancestry":{"1":6483,"5":43,"34":8,"36":36,"49":33,"51":60,"94":104,"95":8,"101":55,"102":41,"105":14,"108":5989,"109":387}},"geometry":{"type":"Point","coordinates":[-73.91940998857129,40.81138557966759]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005011900","ancestry":{"1":5570,"5":38,"6":60,"14":18,"15":60,"40":13,"42":5,"49":9,"51":12,"73":248,"76":54,"80":78,"87":30,"88":86,"94":154,"99":46,"102":18,"105":90,"108":4771,"109":389}},"geometry":{"type":"Point","coordinates":[-73.88958025604911,40.82328288939154]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005024400","ancestry":{"1":2588,"3":144,"6":36,"14":36,"33":6,"36":22,"38":14,"42":94,"49":97,"51":548,"55":9,"61":20,"63":6,"64":10,"73":13,"79":13,"94":81,"97":4,"102":62,"105":15,"108":1569,"109":153}},"geometry":{"type":"Point","coordinates":[-73.85751985743858,40.8462265446098]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005031200","ancestry":{"1":2124,"3":98,"5":59,"19":14,"36":10,"38":69,"40":14,"42":32,"45":17,"49":36,"51":698,"61":24,"63":10,"64":7,"68":7,"73":55,"79":54,"87":1,"94":113,"102":100,"105":41,"108":859,"109":209}},"geometry":{"type":"Point","coordinates":[-73.84244917259525,40.862061665782385]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005031400","ancestry":{"1":2336,"5":77,"6":28,"14":18,"15":10,"19":19,"35":9,"36":19,"38":26,"42":111,"44":10,"45":47,"46":23,"49":13,"51":583,"61":19,"64":16,"67":5,"69":16,"73":41,"76":41,"94":77,"101":17,"102":52,"103":8,"108":1041,"109":285}},"geometry":{"type":"Point","coordinates":[-73.84553259482021,40.86153674678346]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005032800","ancestry":{"1":4354,"3":260,"5":172,"6":29,"14":15,"15":14,"42":1,"46":8,"49":54,"51":152,"61":19,"64":8,"70":1,"73":223,"87":19,"88":204,"91":10,"92":10,"94":133,"99":24,"102":109,"108":2973,"109":335}},"geometry":{"type":"Point","coordinates":[-73.863130114536,40.86173671291484]}},{"type":"Feature","properties":{"BoroName":"Bronx","geo_id":"36005039800","ancestry":{"1":2899,"5":92,"45":20,"49":23,"51":140,"73":251,"76":17,"79":112,"87":122,"94":1290,"96":10,"99":27,"102":1095,"105":165,"108":834,"109":336}},"geometry":{"type":"Point","coordinates":[-73.85346982138404,40.88269701503712]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047088400","ancestry":{"1":5540,"5":214,"6":19,"14":19,"36":119,"40":35,"45":540,"51":139,"61":25,"67":11,"73":142,"87":142,"94":2482,"96":90,"97":9,"99":928,"101":234,"102":620,"103":342,"104":26,"105":261,"108":1827,"109":456}},"geometry":{"type":"Point","coordinates":[-73.92455063110593,40.66222813448492]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047088600","ancestry":{"1":4321,"5":142,"36":10,"45":132,"49":20,"51":38,"62":21,"73":302,"76":37,"79":51,"87":214,"94":1894,"96":90,"99":521,"101":113,"102":872,"103":198,"105":119,"108":1645,"109":462}},"geometry":{"type":"Point","coordinates":[-73.92067652126025,40.6574880003729]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047089000","ancestry":{"1":6781,"5":256,"38":66,"45":277,"49":14,"73":131,"87":131,"94":2702,"96":15,"97":16,"99":483,"101":250,"102":1336,"103":289,"105":348,"108":2737,"109":709}},"geometry":{"type":"Point","coordinates":[-73.91548928097812,40.65698775715753]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047089200","ancestry":{"1":3605,"5":189,"38":1,"40":49,"44":1,"45":335,"73":7,"87":7,"94":1914,"96":164,"99":341,"101":150,"102":746,"103":410,"105":103,"108":1064,"109":167}},"geometry":{"type":"Point","coordinates":[-73.92192292047366,40.66328211940277]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047089400","ancestry":{"1":3879,"5":138,"42":5,"45":513,"49":20,"61":5,"62":6,"73":430,"87":206,"88":224,"94":936,"96":50,"99":205,"101":11,"102":287,"103":308,"105":75,"108":1628,"109":287}},"geometry":{"type":"Point","coordinates":[-73.91648525771214,40.66150397881586]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047089600","ancestry":{"1":3258,"5":154,"6":8,"7":8,"36":14,"45":494,"49":21,"51":7,"73":179,"79":65,"87":114,"94":1513,"96":42,"97":9,"99":176,"101":118,"102":598,"103":404,"104":21,"105":145,"108":848,"109":115}},"geometry":{"type":"Point","coordinates":[-73.9124094717936,40.65800738553492]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047004500","ancestry":{"1":3438,"5":254,"6":88,"10":50,"13":30,"14":8,"19":25,"23":74,"26":36,"29":5,"31":16,"32":16,"33":25,"34":80,"35":158,"36":462,"38":85,"40":163,"41":24,"42":467,"44":51,"48":6,"49":492,"51":431,"52":24,"53":5,"58":50,"59":26,"61":202,"62":15,"63":20,"64":160,"65":7,"66":76,"67":107,"89":48,"90":13,"92":43,"94":25,"102":25,"108":865,"109":252}},"geometry":{"type":"Point","coordinates":[-73.99528700309632,40.68814601277876]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36047004700","ancestry":{"1":1699,"3":14,"5":208,"6":11,"7":6,"10":5,"19":24,"29":19,"33":19,"34":10,"35":4,"36":46,"38":31,"40":82,"41":6,"42":108,"44":6,"46":10,"48":6,"49":274,"50":34,"51":123,"59":16,"61":53,"63":10,"64":76,"66":8,"67":15,"73":6,"87":6,"89":11,"93":5,"94":59,"101":55,"105":4,"108":778,"109":176}},"geometry":{"type":"Point","coordinates":[-74.00151122598574,40.691147312814415]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047004700","ancestry":{"1":1699,"3":14,"5":208,"6":11,"7":6,"10":5,"19":24,"29":19,"33":19,"34":10,"35":4,"36":46,"38":31,"40":82,"41":6,"42":108,"44":6,"46":10,"48":6,"49":274,"50":34,"51":123,"59":16,"61":53,"63":10,"64":76,"66":8,"67":15,"73":6,"87":6,"89":11,"93":5,"94":59,"101":55,"105":4,"108":778,"109":176}},"geometry":{"type":"Point","coordinates":[-74.00186624643013,40.688351247122114]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047004900","ancestry":{"1":2410,"2":2,"5":149,"6":52,"13":8,"15":44,"16":30,"19":17,"23":24,"26":33,"31":11,"34":70,"35":8,"36":158,"38":97,"40":143,"42":217,"44":8,"46":17,"48":12,"49":370,"51":279,"52":20,"53":15,"58":4,"59":25,"61":58,"63":2,"64":122,"66":27,"67":47,"69":9,"70":25,"73":3,"79":3,"87":1,"89":11,"90":23,"91":5,"92":29,"93":39,"94":54,"101":8,"102":28,"103":3,"105":15,"108":870,"109":166}},"geometry":{"type":"Point","coordinates":[-73.99843618351588,40.68799894295604]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005000","ancestry":{"1":2468,"3":8,"5":125,"6":317,"7":34,"10":67,"13":115,"14":51,"15":50,"31":8,"33":13,"36":14,"38":1,"40":8,"42":179,"44":300,"49":535,"51":569,"59":27,"61":122,"64":25,"66":5,"67":7,"70":32,"92":108,"93":28,"108":501,"109":224}},"geometry":{"type":"Point","coordinates":[-74.03756527053017,40.624133870989446]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005201","ancestry":{"1":1716,"5":67,"6":3,"10":3,"35":34,"36":27,"41":30,"42":98,"44":121,"46":10,"49":273,"51":473,"53":9,"56":3,"59":35,"61":74,"64":189,"67":6,"69":8,"89":19,"91":3,"92":55,"94":1,"103":1,"108":565,"109":99}},"geometry":{"type":"Point","coordinates":[-74.03820002958905,40.62160889773935]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005400","ancestry":{"1":3529,"3":46,"5":186,"6":212,"7":37,"10":17,"12":23,"13":102,"14":33,"15":8,"16":20,"19":16,"22":9,"31":6,"33":19,"35":8,"36":68,"39":9,"40":46,"41":14,"42":183,"44":168,"46":22,"49":448,"50":125,"51":470,"59":26,"61":140,"62":18,"64":383,"66":9,"67":9,"70":6,"89":8,"91":39,"92":85,"108":1068,"109":339}},"geometry":{"type":"Point","coordinates":[-74.03587961930471,40.61710316913872]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005602","ancestry":{"1":1862,"5":46,"6":132,"10":6,"14":126,"19":10,"35":17,"36":47,"38":14,"42":85,"44":207,"46":11,"49":228,"50":114,"51":295,"52":4,"53":6,"59":26,"61":88,"62":5,"64":45,"67":17,"70":6,"89":11,"91":13,"92":17,"108":683,"109":99}},"geometry":{"type":"Point","coordinates":[-74.03570977989459,40.61276032074209]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047005900","ancestry":{"1":1280,"5":94,"6":40,"7":16,"13":24,"19":14,"20":11,"22":6,"23":5,"34":12,"35":29,"36":45,"38":42,"40":50,"41":6,"42":151,"44":24,"48":6,"49":133,"51":184,"59":33,"61":29,"64":14,"66":25,"67":25,"73":8,"87":8,"90":7,"93":11,"108":543,"109":119}},"geometry":{"type":"Point","coordinates":[-74.00611905868978,40.67940734529903]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006000","ancestry":{"1":2798,"3":25,"5":73,"6":316,"7":140,"13":115,"14":28,"15":44,"19":8,"22":49,"23":8,"26":9,"34":32,"35":37,"36":29,"38":29,"40":26,"42":133,"44":341,"46":56,"48":57,"49":371,"51":495,"56":15,"59":56,"61":164,"64":26,"67":17,"73":70,"75":12,"83":58,"89":46,"92":20,"93":7,"108":761,"109":105}},"geometry":{"type":"Point","coordinates":[-74.03160423258906,40.62208314050891]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006300","ancestry":{"1":1943,"5":85,"6":30,"10":19,"11":11,"21":5,"23":16,"33":6,"34":6,"35":114,"36":240,"38":41,"40":90,"41":5,"42":213,"44":39,"46":49,"49":228,"50":9,"51":519,"53":5,"59":17,"61":94,"64":23,"67":49,"71":5,"89":16,"108":608,"109":228}},"geometry":{"type":"Point","coordinates":[-74.00132656545716,40.68194993037014]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006400","ancestry":{"1":3618,"5":87,"6":929,"7":91,"10":39,"11":48,"12":108,"13":274,"14":292,"15":119,"16":19,"19":13,"22":8,"23":49,"33":6,"36":35,"38":37,"40":12,"41":33,"42":189,"44":380,"48":7,"49":564,"51":361,"53":11,"59":126,"61":144,"63":7,"64":71,"65":17,"68":17,"73":35,"87":35,"89":25,"91":22,"92":7,"93":8,"108":844,"109":259}},"geometry":{"type":"Point","coordinates":[-74.02880939365231,40.62892526436189]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006500","ancestry":{"1":5319,"5":447,"6":18,"15":18,"19":16,"20":16,"21":61,"23":65,"24":33,"26":48,"31":17,"33":29,"34":97,"35":61,"36":738,"37":16,"38":86,"40":114,"41":49,"42":451,"44":81,"46":14,"49":887,"50":25,"51":1603,"52":17,"58":27,"59":71,"61":272,"62":60,"64":423,"65":37,"66":15,"67":212,"70":16,"71":18,"73":29,"75":29,"89":13,"90":10,"92":84,"93":89,"94":79,"95":1,"101":15,"103":63,"108":839,"109":361}},"geometry":{"type":"Point","coordinates":[-73.9994591386177,40.6790828510063]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006600","ancestry":{"1":3933,"3":76,"5":298,"6":551,"7":183,"10":46,"11":51,"12":32,"13":43,"14":118,"15":130,"16":10,"32":16,"34":25,"35":55,"36":36,"38":19,"39":10,"40":44,"41":26,"42":122,"44":204,"46":26,"49":502,"50":12,"51":507,"53":13,"59":50,"61":224,"63":8,"64":186,"66":19,"67":36,"69":11,"70":31,"73":9,"75":9,"89":23,"108":1431,"109":236}},"geometry":{"type":"Point","coordinates":[-74.02749849403322,40.63213088816352]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006700","ancestry":{"1":3616,"2":8,"5":235,"6":18,"10":9,"13":9,"19":10,"21":9,"22":6,"23":37,"26":35,"29":7,"31":11,"33":12,"34":43,"35":93,"36":420,"38":171,"39":16,"40":115,"41":37,"42":555,"44":16,"46":82,"48":23,"49":629,"51":743,"53":7,"59":40,"61":161,"62":24,"63":18,"64":247,"66":68,"67":93,"70":25,"72":8,"89":63,"92":17,"93":41,"108":839,"109":131}},"geometry":{"type":"Point","coordinates":[-73.99722320483154,40.68417586193051]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006800","ancestry":{"1":5213,"3":30,"5":409,"6":1200,"7":193,"10":177,"11":17,"12":136,"13":309,"14":336,"15":41,"19":6,"23":15,"24":44,"33":8,"36":73,"38":6,"40":6,"41":4,"42":124,"44":137,"46":6,"49":274,"51":192,"58":6,"59":43,"61":305,"62":11,"63":5,"64":83,"65":7,"67":13,"71":37,"73":59,"80":12,"84":23,"87":24,"90":13,"92":25,"94":7,"105":7,"107":135,"108":2318,"109":355}},"geometry":{"type":"Point","coordinates":[-74.02623043146139,40.63517491205648]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047006900","ancestry":{"1":3913,"5":455,"6":186,"10":17,"13":4,"14":115,"15":50,"16":8,"18":5,"19":20,"23":42,"26":5,"31":37,"34":13,"35":94,"36":270,"38":131,"39":13,"40":170,"41":16,"42":444,"44":36,"46":96,"48":6,"49":441,"51":439,"52":3,"53":65,"56":9,"58":7,"59":88,"61":171,"62":15,"63":17,"64":227,"65":4,"66":54,"67":51,"71":31,"73":6,"86":6,"89":17,"90":15,"91":22,"92":37,"93":7,"94":29,"101":10,"102":7,"103":4,"105":8,"108":1364,"109":264}},"geometry":{"type":"Point","coordinates":[-73.99170121112131,40.68523478524556]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007000","ancestry":{"1":2672,"3":22,"5":252,"6":476,"9":8,"10":39,"11":36,"14":41,"15":360,"23":26,"29":15,"31":15,"32":7,"33":7,"35":17,"36":26,"38":3,"42":90,"44":24,"49":230,"51":269,"59":29,"60":8,"61":35,"62":20,"64":229,"73":95,"87":95,"89":19,"92":20,"94":17,"97":8,"102":9,"108":1057,"109":80}},"geometry":{"type":"Point","coordinates":[-74.02429752780475,40.63819705433612]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007100","ancestry":{"1":4835,"5":327,"16":28,"19":42,"22":14,"23":57,"33":6,"34":37,"36":231,"38":151,"40":88,"41":12,"42":183,"44":12,"45":76,"48":11,"49":127,"51":85,"59":15,"61":74,"63":12,"64":89,"67":34,"70":7,"89":15,"90":5,"92":25,"93":10,"94":251,"96":32,"102":64,"103":166,"108":3266,"109":478}},"geometry":{"type":"Point","coordinates":[-73.98716723174618,40.68330896238626]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007200","ancestry":{"1":2284,"5":92,"6":193,"11":23,"15":170,"29":13,"36":3,"40":2,"42":2,"44":4,"49":51,"51":65,"64":26,"70":10,"73":37,"87":23,"88":14,"108":1837,"109":45}},"geometry":{"type":"Point","coordinates":[-74.0204134469599,40.64029778321453]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047007500","ancestry":{"1":4909,"5":377,"16":15,"19":73,"23":39,"26":10,"29":11,"31":21,"33":19,"34":19,"35":89,"36":361,"38":217,"40":372,"41":30,"42":435,"44":51,"49":661,"51":669,"58":14,"59":40,"61":149,"62":45,"63":45,"64":266,"66":93,"67":89,"89":28,"91":19,"92":12,"93":12,"108":1889,"109":364}},"geometry":{"type":"Point","coordinates":[-73.99201631893277,40.68129534735769]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047008400","ancestry":{"1":3905,"5":262,"6":92,"9":17,"10":14,"14":61,"19":4,"27":10,"28":10,"36":48,"38":15,"40":5,"42":30,"44":11,"49":61,"50":11,"51":404,"61":84,"62":7,"64":7,"67":16,"92":12,"94":19,"102":19,"108":3144,"109":80}},"geometry":{"type":"Point","coordinates":[-74.00448589355645,40.65389757734246]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081038302","ancestry":{"1":44,"6":5,"11":5,"49":5,"108":34}},"geometry":{"type":"Point","coordinates":[-73.84081968115179,40.74061558020222]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047008500","ancestry":{"1":6654,"5":202,"42":45,"45":39,"49":15,"51":17,"59":51,"62":28,"94":352,"99":43,"101":19,"102":124,"103":15,"105":151,"108":5406,"109":774}},"geometry":{"type":"Point","coordinates":[-74.00647160487131,40.67585695701001]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047008600","ancestry":{}},"geometry":{"type":"Point","coordinates":[-74.00374378317395,40.64797690373246]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047008800","ancestry":{"1":3126,"2":6,"5":17,"34":7,"36":70,"39":36,"42":71,"44":67,"45":101,"46":7,"49":72,"51":155,"59":8,"61":81,"64":18,"67":17,"89":9,"108":2177,"109":427}},"geometry":{"type":"Point","coordinates":[-74.00140314316742,40.65021015666029]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047009600","ancestry":{"1":6461,"5":198,"6":206,"12":22,"14":184,"23":5,"29":11,"31":8,"34":18,"35":19,"36":127,"37":8,"38":16,"40":42,"41":20,"42":80,"44":19,"45":8,"49":64,"51":164,"61":93,"64":41,"65":20,"66":47,"89":8,"90":30,"94":79,"103":70,"105":9,"108":4792,"109":744}},"geometry":{"type":"Point","coordinates":[-74.00578473686105,40.64601529734546]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047009800","ancestry":{"1":7614,"5":470,"6":73,"9":11,"15":62,"26":10,"36":17,"42":64,"45":4,"49":53,"51":111,"58":11,"59":10,"61":8,"67":18,"94":11,"102":10,"103":1,"108":6849,"109":482}},"geometry":{"type":"Point","coordinates":[-74.0081153156395,40.64377640259977]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047010000","ancestry":{"1":6413,"5":215,"6":196,"7":32,"10":38,"12":119,"14":7,"33":27,"36":7,"40":52,"42":12,"49":139,"51":103,"59":9,"61":11,"73":20,"87":20,"89":39,"92":11,"94":45,"102":45,"108":5443,"109":379}},"geometry":{"type":"Point","coordinates":[-74.0104456840428,40.64153552890691]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047010100","ancestry":{"1":4120,"5":259,"6":171,"10":17,"14":104,"15":50,"16":9,"23":6,"26":11,"31":10,"33":19,"34":9,"36":106,"38":27,"40":35,"42":79,"44":16,"45":16,"48":9,"49":226,"51":286,"59":39,"61":175,"63":28,"64":9,"65":19,"66":10,"67":10,"89":8,"90":8,"94":47,"101":14,"105":33,"108":2711,"109":297}},"geometry":{"type":"Point","coordinates":[-73.99982443954303,40.65839070973697]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047010600","ancestry":{"1":6008,"5":257,"44":2,"49":26,"51":62,"59":31,"61":59,"64":22,"89":6,"94":30,"102":30,"108":5264,"109":486}},"geometry":{"type":"Point","coordinates":[-74.00604000954583,40.63887464497836]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047011000","ancestry":{"1":2482,"5":120,"26":1,"32":66,"34":5,"36":7,"38":24,"42":15,"46":36,"49":21,"50":29,"51":68,"61":41,"64":9,"89":11,"94":51,"101":11,"103":40,"108":1800,"109":284}},"geometry":{"type":"Point","coordinates":[-73.99277381006948,40.64457888618413]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047011200","ancestry":{"1":6503,"3":5,"5":132,"6":16,"7":16,"24":42,"38":28,"44":8,"46":272,"51":150,"61":392,"63":24,"64":62,"92":105,"94":225,"101":9,"102":216,"108":4912,"109":407}},"geometry":{"type":"Point","coordinates":[-73.99567494902483,40.64225283460696]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047011400","ancestry":{"1":4481,"3":46,"5":296,"6":10,"13":10,"35":32,"36":73,"38":221,"42":81,"44":31,"45":10,"46":581,"49":20,"50":30,"51":212,"52":9,"55":18,"61":29,"63":9,"64":8,"69":9,"73":11,"81":2,"87":9,"92":54,"94":57,"99":10,"101":9,"102":29,"103":9,"108":2820,"109":228}},"geometry":{"type":"Point","coordinates":[-73.99921174746602,40.63942330338683]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047011600","ancestry":{"1":4523,"5":218,"6":112,"14":112,"32":24,"41":10,"42":22,"46":8,"49":89,"51":35,"59":25,"61":39,"64":3,"73":15,"87":15,"89":25,"91":104,"92":21,"94":23,"102":23,"108":3956,"109":75}},"geometry":{"type":"Point","coordinates":[-74.00364871928943,40.635873150881864]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047011700","ancestry":{"1":2749,"5":149,"6":216,"10":6,"14":199,"15":11,"16":9,"18":38,"19":11,"23":6,"25":38,"26":83,"31":12,"34":46,"35":33,"36":173,"38":12,"39":9,"40":21,"41":10,"42":186,"49":268,"50":11,"51":236,"53":12,"59":23,"61":117,"62":16,"63":21,"64":77,"66":22,"67":40,"69":32,"89":74,"91":9,"92":6,"94":28,"101":21,"103":7,"108":1134,"109":298}},"geometry":{"type":"Point","coordinates":[-73.99331067517362,40.66856258314138]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012000","ancestry":{"1":1311,"5":55,"6":3,"12":3,"49":8,"51":14,"61":10,"64":5,"108":1189,"109":77}},"geometry":{"type":"Point","coordinates":[-74.01172959037109,40.63278170090557]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012100","ancestry":{"1":1824,"5":67,"6":48,"7":43,"13":5,"16":11,"19":14,"23":16,"31":6,"34":10,"35":158,"36":143,"38":71,"39":8,"40":15,"41":16,"42":157,"44":17,"46":3,"48":7,"49":127,"50":8,"51":184,"61":43,"62":5,"64":63,"66":8,"67":52,"70":4,"71":6,"89":20,"92":14,"93":45,"94":46,"96":25,"102":10,"103":11,"108":764,"109":157}},"geometry":{"type":"Point","coordinates":[-73.99104903704442,40.67147898055381]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012700","ancestry":{"1":3825,"5":207,"6":116,"13":7,"14":109,"17":7,"18":29,"22":5,"23":13,"31":10,"35":71,"36":62,"38":30,"40":15,"42":102,"49":126,"51":227,"53":8,"61":39,"62":9,"63":27,"66":19,"67":43,"73":14,"75":4,"87":10,"89":34,"94":257,"96":17,"101":129,"102":26,"105":93,"108":2701,"109":250}},"geometry":{"type":"Point","coordinates":[-73.98285070590413,40.68174759676502]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012901","ancestry":{"1":2724,"3":7,"5":374,"6":84,"13":25,"14":59,"18":45,"19":19,"22":18,"23":15,"31":18,"34":30,"35":95,"36":54,"38":71,"40":58,"42":171,"46":29,"48":10,"49":241,"51":122,"53":14,"59":11,"61":75,"63":18,"64":75,"66":23,"67":6,"73":57,"79":7,"83":44,"87":6,"89":54,"91":36,"92":9,"93":6,"94":25,"101":18,"102":7,"108":1344,"109":157}},"geometry":{"type":"Point","coordinates":[-73.97852755980394,40.681726510257555]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047012902","ancestry":{"1":1998,"5":258,"6":112,"7":9,"12":4,"14":96,"15":3,"19":3,"20":8,"23":16,"33":32,"34":46,"35":25,"36":254,"38":87,"40":26,"41":12,"42":132,"44":34,"46":16,"48":5,"49":91,"50":4,"51":125,"53":8,"59":8,"61":74,"63":7,"64":49,"66":60,"67":32,"70":12,"73":4,"88":4,"89":33,"92":17,"93":8,"94":106,"95":30,"101":20,"102":30,"103":14,"105":12,"108":718,"109":167}},"geometry":{"type":"Point","coordinates":[-73.97602663541441,40.68076932150526]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013100","ancestry":{"1":4107,"5":543,"18":12,"19":19,"23":61,"24":7,"26":23,"29":9,"31":10,"33":9,"34":41,"35":114,"36":239,"38":91,"39":7,"40":42,"41":8,"42":510,"44":18,"46":59,"49":361,"50":9,"51":329,"53":5,"58":27,"59":9,"61":180,"63":11,"64":278,"66":39,"67":35,"68":10,"73":19,"80":19,"88":19,"90":9,"91":45,"92":32,"93":60,"94":165,"99":8,"101":22,"102":88,"103":20,"105":27,"108":1761,"109":315}},"geometry":{"type":"Point","coordinates":[-73.97960187273661,40.677717547805244]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013200","ancestry":{"1":2078,"3":19,"5":99,"6":62,"14":35,"15":27,"16":17,"19":9,"22":15,"36":4,"40":23,"42":74,"44":188,"49":278,"50":4,"51":263,"59":52,"61":34,"63":4,"64":5,"66":4,"89":10,"92":14,"94":5,"105":5,"107":4,"108":1117,"109":161}},"geometry":{"type":"Point","coordinates":[-74.01567072963277,40.627974391126095]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013400","ancestry":{"1":4029,"5":131,"6":772,"7":92,"10":107,"11":62,"12":44,"14":310,"15":157,"19":27,"22":42,"23":45,"26":21,"34":17,"35":10,"36":28,"38":46,"42":87,"44":257,"49":503,"51":658,"56":9,"59":44,"61":95,"64":71,"67":9,"89":9,"92":23,"93":21,"94":10,"102":10,"108":1370,"109":232}},"geometry":{"type":"Point","coordinates":[-74.02027055342253,40.6295240933642]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013600","ancestry":{"1":3816,"3":191,"5":198,"6":372,"7":88,"9":33,"10":204,"11":9,"12":28,"15":10,"19":11,"23":19,"29":9,"33":8,"34":69,"35":36,"36":93,"38":14,"40":5,"41":7,"42":157,"44":374,"46":16,"48":7,"49":563,"50":8,"51":619,"58":13,"59":128,"60":14,"61":178,"62":36,"63":8,"64":62,"70":18,"89":19,"91":5,"108":995,"109":375}},"geometry":{"type":"Point","coordinates":[-74.02259395784306,40.62689837521371]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013700","ancestry":{"1":3308,"5":314,"6":6,"7":6,"13":6,"19":51,"21":15,"22":20,"23":10,"26":17,"28":12,"29":28,"31":37,"32":12,"33":51,"34":18,"35":41,"36":216,"38":182,"39":14,"40":120,"41":7,"42":243,"44":36,"46":26,"49":425,"51":394,"53":40,"58":7,"61":198,"64":155,"65":25,"66":39,"67":48,"70":14,"73":27,"87":27,"89":34,"90":19,"91":6,"93":45,"94":74,"101":37,"102":24,"103":13,"107":15,"108":1107,"109":344}},"geometry":{"type":"Point","coordinates":[-73.98532739422724,40.67039730474643]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36047013800","ancestry":{"1":3683,"3":72,"5":97,"6":344,"10":102,"13":132,"14":31,"15":79,"16":11,"29":6,"31":24,"33":11,"34":10,"36":180,"38":31,"40":12,"42":150,"44":186,"46":10,"49":397,"51":337,"59":61,"61":175,"62":114,"64":44,"66":7,"67":27,"69":43,"70":37,"73":9,"87":9,"89":62,"91":84,"92":90,"94":6,"102":6,"107":112,"108":1317,"109":270}},"geometry":{"type":"Point","coordinates":[-74.02551735559054,40.62431115046491]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081044400","ancestry":{"1":2843,"5":45,"6":11,"11":11,"45":377,"50":71,"73":36,"76":14,"87":22,"94":257,"99":4,"101":38,"102":135,"103":51,"105":29,"108":1755,"109":365}},"geometry":{"type":"Point","coordinates":[-73.78179646948519,40.705767159454965]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081058200","ancestry":{"1":5398,"5":165,"19":2,"34":10,"36":17,"42":9,"44":34,"45":253,"49":48,"51":31,"61":3,"64":4,"73":380,"84":29,"87":351,"94":2778,"96":81,"99":15,"101":1523,"102":718,"103":132,"105":324,"108":1435,"109":456}},"geometry":{"type":"Point","coordinates":[-73.73755377060385,40.70698903045889]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081108500","ancestry":{"1":2764,"5":90,"6":4,"11":4,"16":14,"19":4,"29":46,"31":11,"32":5,"33":13,"35":20,"36":9,"38":119,"41":6,"42":153,"44":85,"46":19,"48":4,"49":201,"50":4,"51":497,"61":54,"63":11,"64":41,"67":6,"69":4,"89":24,"92":61,"94":6,"103":6,"107":5,"108":1501,"109":200}},"geometry":{"type":"Point","coordinates":[-73.78907193283544,40.77244528268316]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081109300","ancestry":{"1":3312,"3":5,"5":59,"6":23,"7":16,"10":7,"16":26,"19":44,"24":84,"29":33,"31":6,"32":6,"34":1,"35":9,"36":73,"38":2,"39":8,"40":9,"42":119,"44":388,"45":9,"46":36,"48":48,"49":201,"51":563,"61":136,"63":48,"64":116,"67":8,"70":26,"91":7,"92":28,"94":15,"102":14,"105":1,"108":1625,"109":144}},"geometry":{"type":"Point","coordinates":[-73.77410827210639,40.774569568076394]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081141700","ancestry":{"1":4627,"2":143,"5":110,"16":40,"19":28,"20":31,"29":27,"35":17,"40":13,"42":183,"44":147,"46":19,"48":11,"49":231,"51":669,"61":103,"64":39,"67":10,"69":9,"94":46,"101":46,"108":2636,"109":553}},"geometry":{"type":"Point","coordinates":[-73.79172029562037,40.74481481540893]}},{"type":"Feature","properties":{"BoroName":"Brooklyn","geo_id":"36081006202","ancestry":{"1":6988,"2":155,"3":99,"5":95,"19":12,"29":22,"35":61,"36":66,"42":69,"44":57,"49":181,"51":1433,"61":316,"62":15,"63":60,"64":397,"66":15,"69":13,"73":21,"83":21,"91":51,"92":13,"94":194,"101":194,"108":2472,"109":1798}},"geometry":{"type":"Point","coordinates":[-73.86069300710368,40.667978593260926]}},{"type":"Feature","properties":{"BoroName":"Queens","geo_id":"36081006202","ancestry":{"1":6988,"2":155,"3":99,"5":95,"19":12,"29":22,"35":61,"36":66,"42":69,"44":57,"49":181,"51":1433,"61":316,"62":15,"63":60,"64":397,"66":15,"69":13,"73":21,"83":21,"91":51,"92":13,"94":194,"101":194,"108":2472,"109":1798}},"geometry":{"type":"Point","coordinates":[-73.85471236593357,40.66563845292753]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016900","ancestry":{"1":7811,"5":451,"6":76,"7":12,"10":21,"11":43,"18":31,"19":106,"21":18,"23":128,"24":69,"31":47,"34":13,"35":291,"36":712,"38":265,"40":290,"42":1397,"44":44,"46":163,"48":237,"49":718,"50":171,"51":427,"57":57,"59":46,"61":337,"62":182,"63":67,"64":656,"65":19,"66":92,"67":133,"70":46,"73":78,"87":78,"89":22,"90":21,"91":12,"92":27,"94":132,"101":132,"107":31,"108":1789,"109":938}},"geometry":{"type":"Point","coordinates":[-73.97311958086932,40.78519591139671]}},{"type":"Feature","properties":{"BoroName":"Manhattan","geo_id":"36061016400","ancestry":{"1":6722,"5":526,"22":15,"23":67,"26":34,"36":66,"38":34,"40":7,"42":73,"48":8,"49":143,"51":128,"53":17,"61":120,"63":41,"64":87,"66":6,"73":513,"79":11,"80":94,"87":408,"88":44,"90":16,"94":18,"99":18,"108":4713,"109":555}},"geometry":{"type":"Point","coordinates":[-73.94447448097192,40.787714064187135]}}],"properties":{"ancestries":[{"ancestry_id":2,"ancestry_name":"Afghan","people":9648},{"ancestry_id":3,"ancestry_name":"Albanian","people":51633},{"ancestry_id":4,"ancestry_name":"Alsatian","people":1010},{"ancestry_id":5,"ancestry_name":"American","people":984823},{"ancestry_id":7,"ancestry_name":"Egyptian","people":30464},{"ancestry_id":8,"ancestry_name":"Iraqi","people":4399},{"ancestry_id":9,"ancestry_name":"Jordanian","people":4532},{"ancestry_id":10,"ancestry_name":"Lebanese","people":32167},{"ancestry_id":11,"ancestry_name":"Moroccan","people":11458},{"ancestry_id":12,"ancestry_name":"Palestinian","people":5917},{"ancestry_id":13,"ancestry_name":"Syrian","people":16058},{"ancestry_id":14,"ancestry_name":"Arab","people":28449},{"ancestry_id":15,"ancestry_name":"Other Arab","people":29501},{"ancestry_id":16,"ancestry_name":"Armenian","people":24497},{"ancestry_id":17,"ancestry_name":"Assyrian/Chaldean/Syriac","people":717},{"ancestry_id":18,"ancestry_name":"Australian","people":8190},{"ancestry_id":19,"ancestry_name":"Austrian","people":78753},{"ancestry_id":20,"ancestry_name":"Basque","people":1583},{"ancestry_id":21,"ancestry_name":"Belgian","people":12568},{"ancestry_id":22,"ancestry_name":"Brazilian","people":27781},{"ancestry_id":23,"ancestry_name":"British","people":57965},{"ancestry_id":24,"ancestry_name":"Bulgarian","people":7792},{"ancestry_id":25,"ancestry_name":"Cajun","people":586},{"ancestry_id":26,"ancestry_name":"Canadian","people":46895},{"ancestry_id":27,"ancestry_name":"Carpatho Rusyn","people":1045},{"ancestry_id":28,"ancestry_name":"Celtic","people":2549},{"ancestry_id":29,"ancestry_name":"Croatian","people":24038},{"ancestry_id":30,"ancestry_name":"Cypriot","people":1923},{"ancestry_id":31,"ancestry_name":"Czech","people":55092},{"ancestry_id":32,"ancestry_name":"Czechoslovakian","people":20057},{"ancestry_id":33,"ancestry_name":"Danish","people":34311},{"ancestry_id":34,"ancestry_name":"Dutch","people":244708},{"ancestry_id":35,"ancestry_name":"Eastern European","people":96907},{"ancestry_id":36,"ancestry_name":"English","people":1053798},{"ancestry_id":37,"ancestry_name":"Estonian","people":3165},{"ancestry_id":38,"ancestry_name":"European","people":170567},{"ancestry_id":39,"ancestry_name":"Finnish","people":16220},{"ancestry_id":40,"ancestry_name":"French (except Basque)","people":448339},{"ancestry_id":41,"ancestry_name":"French Canadian","people":126168},{"ancestry_id":42,"ancestry_name":"German","people":2065163},{"ancestry_id":43,"ancestry_name":"German Russian","people":715},{"ancestry_id":44,"ancestry_name":"Greek","people":150860},{"ancestry_id":45,"ancestry_name":"Guyanese","people":137059},{"ancestry_id":46,"ancestry_name":"Hungarian","people":149715},{"ancestry_id":47,"ancestry_name":"Icelander","people":1554},{"ancestry_id":48,"ancestry_name":"Iranian","people":29267},{"ancestry_id":49,"ancestry_name":"Irish","people":2431259},{"ancestry_id":50,"ancestry_name":"Israeli","people":32900},{"ancestry_id":51,"ancestry_name":"Italian","people":2601578},{"ancestry_id":52,"ancestry_name":"Latvian","people":8570},{"ancestry_id":53,"ancestry_name":"Lithuanian","people":44481},{"ancestry_id":54,"ancestry_name":"Luxemburger","people":825},{"ancestry_id":55,"ancestry_name":"Macedonian","people":9461},{"ancestry_id":56,"ancestry_name":"Maltese","people":6336},{"ancestry_id":57,"ancestry_name":"New Zealander","people":1039},{"ancestry_id":58,"ancestry_name":"Northern European","people":10878},{"ancestry_id":59,"ancestry_name":"Norwegian","people":82063},{"ancestry_id":60,"ancestry_name":"Pennsylvania German","people":15020},{"ancestry_id":61,"ancestry_name":"Polish","people":944540},{"ancestry_id":62,"ancestry_name":"Portuguese","people":53270},{"ancestry_id":63,"ancestry_name":"Romanian","people":54234},{"ancestry_id":64,"ancestry_name":"Russian","people":432318},{"ancestry_id":65,"ancestry_name":"Scandinavian","people":12725},{"ancestry_id":66,"ancestry_name":"Scotch-Irish","people":67719},{"ancestry_id":67,"ancestry_name":"Scottish","people":207243},{"ancestry_id":68,"ancestry_name":"Serbian","people":9067},{"ancestry_id":69,"ancestry_name":"Slavic","people":9195},{"ancestry_id":70,"ancestry_name":"Slovak","people":33993},{"ancestry_id":71,"ancestry_name":"Slovene","people":4836},{"ancestry_id":72,"ancestry_name":"Soviet Union","people":442},{"ancestry_id":74,"ancestry_name":"Cape Verdean","people":1341},{"ancestry_id":75,"ancestry_name":"Ethiopian","people":7304},{"ancestry_id":76,"ancestry_name":"Ghanaian","people":24848},{"ancestry_id":77,"ancestry_name":"Kenyan","people":1911},{"ancestry_id":78,"ancestry_name":"Liberian","people":3422},{"ancestry_id":79,"ancestry_name":"Nigerian","people":29143},{"ancestry_id":80,"ancestry_name":"Senegalese","people":3825},{"ancestry_id":81,"ancestry_name":"Sierra Leonean","people":2273},{"ancestry_id":82,"ancestry_name":"Somali","people":3026},{"ancestry_id":83,"ancestry_name":"South African","people":4177},{"ancestry_id":84,"ancestry_name":"Sudanese","people":2725},{"ancestry_id":85,"ancestry_name":"Ugandan","people":1192},{"ancestry_id":86,"ancestry_name":"Zimbabwean","people":622},{"ancestry_id":87,"ancestry_name":"African","people":140512},{"ancestry_id":88,"ancestry_name":"Other Subsaharan African","people":26956},{"ancestry_id":89,"ancestry_name":"Swedish","people":122434},{"ancestry_id":90,"ancestry_name":"Swiss","people":35288},{"ancestry_id":91,"ancestry_name":"Turkish","people":30868},{"ancestry_id":92,"ancestry_name":"Ukrainian","people":135733},{"ancestry_id":93,"ancestry_name":"Welsh","people":81452},{"ancestry_id":95,"ancestry_name":"Bahamian","people":2080},{"ancestry_id":96,"ancestry_name":"Barbadian","people":27679},{"ancestry_id":97,"ancestry_name":"Belizean","people":8899},{"ancestry_id":98,"ancestry_name":"Bermudan","people":499},{"ancestry_id":99,"ancestry_name":"British West Indian","people":52029},{"ancestry_id":100,"ancestry_name":"Dutch West Indian","people":1965},{"ancestry_id":101,"ancestry_name":"Haitian","people":193457},{"ancestry_id":102,"ancestry_name":"Jamaican","people":316155},{"ancestry_id":103,"ancestry_name":"Trinidadian and Tobagonian","people":91044},{"ancestry_id":104,"ancestry_name":"U.S. Virgin Islander","people":2847},{"ancestry_id":105,"ancestry_name":"West Indian","people":130807},{"ancestry_id":106,"ancestry_name":"Other West Indian","people":1708},{"ancestry_id":107,"ancestry_name":"Yugoslavian","people":24750}]}},"boroughs":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","coordinates":[[[[-73.9089323524159,40.87215734797062],[-73.90774270784563,40.872845952111575],[-73.9066509953948,40.875752504192604],[-73.9068282285684,40.87663155188877],[-73.90765281705262,40.87742802285939],[-73.90949832117471,40.8787767321817],[-73.91148913190446,40.87901885880952],[-73.91205830030243,40.87811932004863],[-73.91484624156382,40.87666671027649],[-73.91578515638108,40.875716945064816],[-73.9177566939592,40.87566362786068],[-73.91978381299064,40.876421436106405],[-73.92206723651888,40.87857241480293],[-73.92359172553137,40.87895215933268],[-73.92362973950415,40.87896394324327],[-73.92453549396537,40.87905106885194],[-73.92380525605499,40.88032490163606],[-73.92058641877227,40.88718267861979],[-73.91888014391616,40.89160572195282],[-73.91518455871677,40.90158428286215],[-73.91543172958428,40.901812683688334],[-73.91459039243315,40.90411900219637],[-73.91418416752518,40.90413933380095],[-73.9126493217288,40.90807081195536],[-73.9114321302785,40.91282382621967],[-73.91165472402211,40.9134178518967],[-73.91116014617741,40.914294384533825],[-73.910006,40.915076],[-73.902106,40.912879],[-73.89950499999999,40.911978],[-73.89725299999999,40.911654999999996],[-73.89663399999999,40.911324],[-73.892799,40.910058],[-73.88601,40.907979],[-73.88303257442062,40.90733363115719],[-73.8678904371365,40.90298695415229],[-73.866952,40.902474999999995],[-73.86466899999999,40.901793],[-73.86272155055119,40.90149246118945],[-73.86025699999999,40.900616],[-73.85931,40.900479],[-73.85886401316355,40.90171169504956],[-73.857199,40.902878],[-73.85699157413099,40.904584209064005],[-73.856118,40.905167999999996],[-73.856326,40.905801],[-73.853802,40.907179],[-73.8538336099959,40.907974349819604],[-73.85485259075402,40.90825689944192],[-73.85399699999999,40.909276],[-73.852935,40.909918999999995],[-73.852184,40.909515],[-73.853528,40.907464999999995],[-73.851057,40.906458],[-73.850225,40.907368],[-73.84532,40.905581999999995],[-73.844847,40.90531],[-73.84489264975497,40.904190866797066],[-73.841318,40.903987],[-73.84086546181517,40.90186243376293],[-73.83924604741868,40.89950115404915],[-73.839208,40.898818999999996],[-73.839696,40.897385],[-73.838407,40.894061],[-73.835174,40.89317],[-73.828716,40.891273999999996],[-73.82794299999999,40.890927999999995],[-73.8232648987923,40.88998702106102],[-73.822959,40.891056],[-73.81504799999999,40.888951],[-73.80873161059989,40.88748293772563],[-73.806395,40.886801],[-73.80452615015594,40.88640924834346],[-73.79300652649339,40.883358736880396],[-73.79379237490447,40.88197032676493],[-73.79491705586673,40.880543790984866],[-73.79502596232845,40.87974779721172],[-73.79625097535786,40.87701199977853],[-73.79712701174674,40.87619040090389],[-73.79743815457287,40.87513533295314],[-73.79855330787723,40.87440142827448],[-73.7998138958034,40.874159849716236],[-73.79987713793571,40.87348466729258],[-73.80087270458256,40.87159011989391],[-73.80252284756598,40.870506644696796],[-73.80317726501728,40.87168315507057],[-73.8037333939929,40.87096260282379],[-73.80358314939252,40.86994806102859],[-73.80302203685265,40.86915511979649],[-73.80422027051762,40.869002148168185],[-73.80574486080332,40.8696925765528],[-73.808415968188,40.87118969336756],[-73.80838731046333,40.87057162161169],[-73.80754063636184,40.870377552173444],[-73.80695275224397,40.869657948175885],[-73.80673074905108,40.868770013078354],[-73.80487266169939,40.86823330283224],[-73.80464604502923,40.86664711643687],[-73.8038528078145,40.86716648480004],[-73.80300388108954,40.8670418365688],[-73.80306041484552,40.865815133706796],[-73.80225816157765,40.865608206410805],[-73.80069778002712,40.86808147781563],[-73.79780377219309,40.87225613227392],[-73.79479044681607,40.87320048403398],[-73.79397363837724,40.874566594568314],[-73.79316703778711,40.87705563906647],[-73.7944029458625,40.87764184299895],[-73.79384702788165,40.87859445979079],[-73.79174583941251,40.879890071652454],[-73.79090368014795,40.8800293151983],[-73.7904304650308,40.88079725802921],[-73.78926161019818,40.88120541462362],[-73.78912020636919,40.88008021099346],[-73.7900633286077,40.879594661514844],[-73.78952309368802,40.878998127060534],[-73.78827313470907,40.87887357315423],[-73.78588496976653,40.87906723175261],[-73.78438168107569,40.87842053167044],[-73.78417738368827,40.877721353928486],[-73.78470964026452,40.87635799484773],[-73.78596895445068,40.87513675012745],[-73.78708678479042,40.87353624221612],[-73.78719087560508,40.87273055372914],[-73.78568099853844,40.87238726505711],[-73.78526152075716,40.8717453223324],[-73.78439311743479,40.87278409492873],[-73.78306853426032,40.87215357592273],[-73.783201754263,40.87067036085381],[-73.78490216077775,40.86976397324066],[-73.78521800238876,40.86913652413008],[-73.78657103927216,40.86977789988557],[-73.78901059796523,40.869663275452666],[-73.79038207692942,40.8689944256248],[-73.79139032586127,40.868141307466104],[-73.79228914014462,40.865814377219436],[-73.7926509576707,40.86413665318474],[-73.79147317119893,40.86220710624896],[-73.79190454927513,40.860829562712],[-73.7935102975772,40.86055168129084],[-73.79486983866906,40.85807555125802],[-73.79426303171199,40.85671919854404],[-73.79685461759922,40.856264358213366],[-73.7979853348085,40.854848932595694],[-73.79872255600088,40.85491440117259],[-73.79904776834833,40.85405156055039],[-73.79795583310255,40.85298833071622],[-73.79780522990599,40.85194959859706],[-73.79819365996848,40.850592561406636],[-73.79932043160211,40.8499127753765],[-73.8004643119959,40.84809828798352],[-73.80158374343466,40.84895730755684],[-73.80183056444132,40.850130657058415],[-73.80278584120158,40.851601477389075],[-73.8041755793241,40.85334012018914],[-73.80454247276612,40.85473937751507],[-73.80352359809022,40.85555669488957],[-73.80413784756404,40.85784176037563],[-73.80420585726536,40.85895904893253],[-73.8046429388229,40.85996820157231],[-73.80460527769027,40.86121718099268],[-73.80498671118451,40.86169001267949],[-73.80624571930771,40.86142748444245],[-73.80582041215634,40.86003461246942],[-73.80655629956539,40.85981792610008],[-73.80723863215414,40.86037280313714],[-73.80816306112645,40.85974534956733],[-73.80767772098902,40.85852945182874],[-73.81110457149282,40.86246446873077],[-73.81329281853385,40.86323679379236],[-73.81384566155022,40.863901758029655],[-73.81510315384156,40.86305746536774],[-73.81641392102729,40.861180627703874],[-73.81526321415281,40.86111774712499],[-73.81381802586876,40.86054827867073],[-73.81273146495046,40.85887754194777],[-73.81230602708419,40.85416202647321],[-73.81640870908019,40.854082255114704],[-73.81684981404563,40.8532846825016],[-73.81720828353124,40.85182816577732],[-73.81685873870751,40.850957375998696],[-73.81604706927787,40.85077792604361],[-73.81624901704862,40.85012517763017],[-73.81532344002716,40.848577570692655],[-73.81590281420539,40.84801312198427],[-73.81617026811986,40.84701547486436],[-73.81420573129108,40.846010180888356],[-73.81380544590593,40.845351482968276],[-73.81403961944162,40.84450194481136],[-73.81346278880895,40.84365980304929],[-73.81499955039786,40.84350445264185],[-73.8156729262599,40.84442877578541],[-73.81669068165957,40.84397496582525],[-73.81615112347617,40.84300653420625],[-73.81541503896415,40.8423913277834],[-73.81478277740277,40.83907648795762],[-73.8158472115133,40.8386615862932],[-73.81645257929445,40.8377698259248],[-73.81606068234679,40.83603019645689],[-73.81608401401114,40.8345903462652],[-73.81548695785723,40.83229989105653],[-73.81476387691961,40.83081679999349],[-73.81382087385572,40.82996758146248],[-73.81275469994524,40.82824823625133],[-73.81265206400512,40.82755877961475],[-73.8138974213581,40.82668501172798],[-73.81378080191394,40.823999920518325],[-73.81244604433098,40.82448815521093],[-73.81201913394885,40.8243256872264],[-73.80965481141753,40.825275535621635],[-73.8090923463355,40.825873398164084],[-73.8078342131929,40.82576745480304],[-73.8069965461088,40.82532231281297],[-73.80669402711513,40.824637308590155],[-73.80666166000628,40.82341958423711],[-73.80586237168588,40.82189812884765],[-73.8059915984894,40.820823558490076],[-73.80572802989735,40.820177338695004],[-73.80441057109267,40.818832043751954],[-73.80336840175117,40.81825107167598],[-73.80246811886737,40.818540907528245],[-73.80058906737116,40.81793542809665],[-73.80032337978147,40.8175628339145],[-73.79759032777329,40.816507532070105],[-73.79738112573537,40.81576350489562],[-73.79902816314001,40.81554113493866],[-73.80011146864281,40.81402452556061],[-73.80091593237643,40.81376140250653],[-73.80145800517317,40.81294094720312],[-73.80295404275847,40.8124469708149],[-73.80365392095108,40.81257959356961],[-73.80319870538824,40.81350524057212],[-73.8051146552651,40.81563585002803],[-73.80661216122776,40.81657794543157],[-73.8065932847178,40.815616706154735],[-73.80531902580665,40.81478131299822],[-73.80519224369252,40.81314382111636],[-73.8043871979125,40.81222979321571],[-73.80334845213237,40.81163206806387],[-73.80272595399755,40.810630164397054],[-73.80204964632905,40.81016071487725],[-73.80010949916638,40.809710954078284],[-73.79853765964961,40.8095870755297],[-73.79228907337429,40.80684900557948],[-73.79073479983782,40.806588828856576],[-73.79006256328049,40.805408941834415],[-73.79103717515582,40.80426303170201],[-73.79224529219167,40.80399636431484],[-73.79338982286725,40.804204330036235],[-73.79518335679424,40.8057293551148],[-73.79601037569108,40.80592103186701],[-73.79884822044157,40.807177192765735],[-73.80167190595046,40.8090165729852],[-73.80278236265667,40.80912012289719],[-73.80405363821475,40.80875165808884],[-73.80713987884192,40.81066167645373],[-73.80839689705718,40.81202835512157],[-73.81026812262415,40.8129994803722],[-73.81083144208928,40.81285225098788],[-73.8127657266265,40.813158630665804],[-73.81388857435479,40.81358988857696],[-73.81551416367418,40.813504720993286],[-73.81648015546541,40.813853232883915],[-73.81738942091526,40.81357073625063],[-73.8211796069534,40.812952587068494],[-73.82494076044944,40.811857261519314],[-73.82630784757444,40.811284122208924],[-73.82763907883003,40.81145841666507],[-73.8291639703963,40.811265116727824],[-73.83080429776476,40.81040376130807],[-73.83183868741162,40.80926188456993],[-73.83220579644005,40.80783877534257],[-73.83157902485699,40.80666933894923],[-73.83139548735754,40.805170708059734],[-73.83168804504808,40.80495287845647],[-73.83431545191426,40.805162656846925],[-73.83691225653237,40.80592909422706],[-73.83806795314457,40.8070671070544],[-73.83813869838782,40.80793445799727],[-73.83897298831994,40.80951471994908],[-73.8402595289626,40.81144303678275],[-73.84032701554437,40.81313578813779],[-73.8396623668359,40.81392164508063],[-73.83953766669556,40.81581918222216],[-73.84019020523161,40.81718827305636],[-73.84005323723346,40.817921288113624],[-73.83892733295296,40.8190012101071],[-73.83904904481196,40.822688748145836],[-73.84007814578014,40.82425267122906],[-73.84222047999329,40.828341887943814],[-73.84223013648115,40.829830691248915],[-73.84188643774446,40.83071317653444],[-73.83899809143149,40.83338245535809],[-73.83882717280254,40.83381022387019],[-73.83923392305539,40.83674104126337],[-73.83919255235712,40.838713628057775],[-73.83972014515537,40.83956540598612],[-73.84030282537186,40.839524313945],[-73.83984235556306,40.836116241463905],[-73.83941220310876,40.8346000651074],[-73.83992048478558,40.83332079530203],[-73.84221334664696,40.831550507277164],[-73.84310691599906,40.829794139319866],[-73.84303394542387,40.82893498494009],[-73.84170466295856,40.82576738198707],[-73.8404497031631,40.823345566496634],[-73.83982926241694,40.82157150149603],[-73.84028506253647,40.81962626612638],[-73.84198684834045,40.81877437390815],[-73.84209366311858,40.81805954295158],[-73.84417911440973,40.81435717709199],[-73.8452073688511,40.81188702200953],[-73.84576561702228,40.81158227884198],[-73.84617302872056,40.81067666443041],[-73.84746772168273,40.81090394285425],[-73.84821486515595,40.81246290949828],[-73.84938556147978,40.813236865345026],[-73.85041066820118,40.81358402388847],[-73.85114472260703,40.814396548875926],[-73.85206357413178,40.81372606016077],[-73.8509921880284,40.813479852662965],[-73.84955032365977,40.81268732885846],[-73.84903294180678,40.81211891007853],[-73.84917358424853,40.81092434078401],[-73.85000539859053,40.80940678988159],[-73.8499669680282,40.808578018843626],[-73.84938838508386,40.80787753283625],[-73.84841640961653,40.80736877579531],[-73.84837953721416,40.80636018633455],[-73.84748822641912,40.805448909149135],[-73.84870097964966,40.80473178627723],[-73.84997722709184,40.805059594981856],[-73.85014867564313,40.80453421881293],[-73.85204922599489,40.804599116241015],[-73.85407120427062,40.80445746241943],[-73.8558544633539,40.80451464613952],[-73.85612542563203,40.80528168175337],[-73.85812705699666,40.80546652055186],[-73.85866505169194,40.8068327514956],[-73.85838996228816,40.80825880914878],[-73.85907662566419,40.809975558102096],[-73.86033575825903,40.809503790681845],[-73.86440333379421,40.81027598694017],[-73.86765646284469,40.81058376193716],[-73.86976955850038,40.81342369975716],[-73.87077804885938,40.814486895487796],[-73.87171606450121,40.81492233549019],[-73.87651996033631,40.81613106342414],[-73.87673185506819,40.815386496486575],[-73.87250110885974,40.813888128234055],[-73.871657776834,40.81325426197599],[-73.86811219140081,40.80675183283182],[-73.86846346959146,40.80593654893904],[-73.87174509373921,40.80154736611615],[-73.87287711063708,40.80084008904614],[-73.87814218819925,40.801319290306466],[-73.87823464921802,40.802646805768205],[-73.87921348407689,40.80279532683509],[-73.88369542422478,40.80216212360289],[-73.88505172336711,40.80213090679801],[-73.8872709734712,40.80394700233667],[-73.88795897223956,40.80499792592066],[-73.88859217706322,40.80478927560038],[-73.89005932692346,40.80570432518386],[-73.89149717186737,40.80592719896937],[-73.89197929534274,40.8063847089762],[-73.89463252351096,40.806232331922104],[-73.895098364874,40.806863639173535],[-73.8961958530148,40.80624103132255],[-73.89829494887952,40.806097570698334],[-73.8981301370758,40.80564435705386],[-73.90097298881537,40.80487609789114],[-73.90219185700565,40.80482326064536],[-73.90321268862616,40.80389963951354],[-73.90452954095736,40.803170235651876],[-73.905521532407,40.80201995489853],[-73.90816794754276,40.79946198619374],[-73.90830303542089,40.79895913592012],[-73.91109827415711,40.79688807133548],[-73.91168831241197,40.79662376988877],[-73.91372255973515,40.79678943926124],[-73.91880394070587,40.79887972972227],[-73.92024068158877,40.79961368787029],[-73.92132730778516,40.80128459163141],[-73.92292710065786,40.802373294642884],[-73.9242270684116,40.802545011358106],[-73.9266579478849,40.80240980391467],[-73.9276278865885,40.80269566548155],[-73.92728271943604,40.80350826441704],[-73.92766050067098,40.80400725290056],[-73.92872607489831,40.80410362522726],[-73.9305175883918,40.80659056356681],[-73.93228261982793,40.808363973622974],[-73.93287412001966,40.81041404342896],[-73.93237568884736,40.814651574300306],[-73.93233582201997,40.81763040538414],[-73.93246603585044,40.82157743497618],[-73.93276594581116,40.82545822768758],[-73.93347556906163,40.83122141107765],[-73.93360592036707,40.832789530520785],[-73.9329963900161,40.835678789188684],[-73.93051572386133,40.839933642184214],[-73.93036686159282,40.84062002230496],[-73.92919408007185,40.84281841573954],[-73.92861574822355,40.84467686502998],[-73.9276707334657,40.84603348248417],[-73.92465379930343,40.84978504351307],[-73.9239478950143,40.8512217851191],[-73.92256178946536,40.85318891152729],[-73.91956620944693,40.85684018368812],[-73.91776041251107,40.85870809795828],[-73.91720664647052,40.85892892273455],[-73.91580528008551,40.86046973585609],[-73.91462116355157,40.862096690734745],[-73.91091292411954,40.86593794649016],[-73.91034827112131,40.866742336116],[-73.90949664378591,40.86883115613831],[-73.90893714929899,40.87101984030882],[-73.9089323524159,40.87215734797062]]],[[[-73.87287195903878,40.78597502780476],[-73.87288496983655,40.785962633215966],[-73.8734276328672,40.78576182995938],[-73.8767709578346,40.78581140789894],[-73.87830680057651,40.78535662050845],[-73.88596200181904,40.78675251948483],[-73.88830725732265,40.78700634478622],[-73.88940460873124,40.787791280577736],[-73.89012684970685,40.78963627999305],[-73.89056971575141,40.79010763571031],[-73.8921818298494,40.790394269608974],[-73.89282283610937,40.79281708195143],[-73.89179289686581,40.79677524575866],[-73.89060785824257,40.79776750713775],[-73.88921283898101,40.79780120410409],[-73.8882335331365,40.79824288428592],[-73.8871867416842,40.79829965046025],[-73.88531358206157,40.79705652568047],[-73.88391718206043,40.795795021959435],[-73.88166054417219,40.79507083151595],[-73.87975745821167,40.794883683670676],[-73.8778942239403,40.794319244803035],[-73.87584483848292,40.793158507210265],[-73.87491771753024,40.79230347842359],[-73.87288457445668,40.79145210820715],[-73.87119724046634,40.78999989667402],[-73.87080888633558,40.787896691683784],[-73.87163065373363,40.78679790584308],[-73.87287195903878,40.78597502780476]]],[[[-73.89720352348871,40.79571083291973],[-73.89796839783743,40.795644839161994],[-73.89919434249983,40.79650245601822],[-73.89788253240185,40.797116532147044],[-73.89678526341235,40.796329166487105],[-73.89720352348871,40.79571083291973]]],[[[-73.89833036270558,40.80241282094003],[-73.89646668834573,40.80079047089132],[-73.89864038714997,40.799101164621355],[-73.89978738800846,40.79950955437454],[-73.89971563817446,40.800798808502776],[-73.89938748571052,40.801935665070275],[-73.89833036270558,40.80241282094003]]],[[[-73.77093249874724,40.860093634103784],[-73.76947305424014,40.859330136668575],[-73.7683627729079,40.85835828885185],[-73.76836085918806,40.85765536370589],[-73.76533243995293,40.855043595124876],[-73.76783205637169,40.85444220574204],[-73.76855660327055,40.853238322959406],[-73.769385291397,40.8525361339968],[-73.76860817687103,40.85078839537809],[-73.76959674311472,40.8475945190982],[-73.76950321562758,40.84721783423517],[-73.76789492672654,40.84528943351963],[-73.76901389181126,40.84509734272185],[-73.77118378010577,40.846944513312096],[-73.77157218833243,40.847500058580366],[-73.77088920221178,40.849751771338],[-73.77204963668456,40.851618289757404],[-73.77246892938173,40.851709147389286],[-73.77214036841819,40.85441271260058],[-73.77219223055424,40.859986638596936],[-73.77093249874724,40.860093634103784]]],[[[-73.79255157672597,40.85763004873328],[-73.79129378852156,40.85726323869809],[-73.79006133563246,40.85845954856123],[-73.78898385013126,40.8584708437399],[-73.78870485884444,40.85710678617594],[-73.78888830770916,40.85660428310891],[-73.78835943222367,40.85562648914825],[-73.7884826037563,40.85444792872274],[-73.78796264288073,40.85347472093554],[-73.78641733510769,40.85214457646967],[-73.78447953199854,40.851071802992394],[-73.78420047134388,40.850060644240614],[-73.7835782526039,40.849266386802206],[-73.78244952709215,40.849341154015676],[-73.78149386587498,40.84858047582578],[-73.78142920347918,40.84745634535724],[-73.78251345116863,40.84640877155118],[-73.78305074940802,40.845496823175864],[-73.78306040951672,40.84437206489799],[-73.78347481249256,40.84365473810972],[-73.7828649930492,40.842478101882705],[-73.78154308949136,40.84078478253004],[-73.78132522577035,40.83929178135656],[-73.78188455720283,40.83765027660475],[-73.78410164591314,40.83672552935795],[-73.7855779685095,40.837927113225355],[-73.78573509298693,40.839234231775826],[-73.78652598496427,40.83972311560698],[-73.78730353132518,40.839674724501016],[-73.78823199262379,40.84219608477209],[-73.78933708725715,40.84368149805553],[-73.78959737629597,40.844501973111164],[-73.79148034725687,40.8468020527137],[-73.79136288106801,40.848232302390265],[-73.79088710207056,40.84888656430167],[-73.78975711070612,40.84953146928762],[-73.79012439171834,40.85118991219456],[-73.79113795170933,40.852055852573656],[-73.79144640027789,40.85277157192415],[-73.79111431429386,40.853264451924666],[-73.79129282160649,40.85458402597681],[-73.79207675667556,40.8556451677071],[-73.79170704257365,40.85685184285502],[-73.79255157672597,40.85763004873328]]],[[[-73.80222295355264,40.841634813144104],[-73.80263811156154,40.84108115326708],[-73.80529495910667,40.8411349248502],[-73.806946086416,40.84146244718634],[-73.80680801372392,40.842489139987514],[-73.8039307330741,40.842594072549915],[-73.80222295355264,40.841634813144104]]],[[[-73.77080975398201,40.871549946847914],[-73.76990710668555,40.87047694447027],[-73.7728804266524,40.871245263430254],[-73.7721778649229,40.87198111068933],[-73.77080975398201,40.871549946847914]]],[[[-73.78833349834534,40.834667129759346],[-73.78931223606625,40.834464886553434],[-73.78951019872316,40.83536404252571],[-73.78845700015215,40.83530991431538],[-73.78833349834534,40.834667129759346]]],[[[-73.78452431937968,40.86047706314781],[-73.78470517053267,40.859174381442294],[-73.78525697970893,40.85891920831329],[-73.7865714822541,40.859231890585946],[-73.78685886773305,40.86004505783956],[-73.78452431937968,40.86047706314781]]]]},{"type":"MultiPolygon","coordinates":[[[[-73.96659690332696,40.717967980887636],[-73.96656241897497,40.71801586680623],[-73.96587893532673,40.71875507768641],[-73.96585847175177,40.718773228346464],[-73.96513713628346,40.72034359475438],[-73.96439765915949,40.72029673502919],[-73.96435090640153,40.72040403237191],[-73.96408769213926,40.72075552952244],[-73.96399793724464,40.72093843807274],[-73.96296566403018,40.722034477122904],[-73.96207271943886,40.72388030040293],[-73.96200744865077,40.723991901607995],[-73.96116366368419,40.72526460583091],[-73.9583307822691,40.72441170076615],[-73.95842611843923,40.725400535832144],[-73.96012497133245,40.725319636636904],[-73.96028544944213,40.72594812241296],[-73.96161518901998,40.72586556307425],[-73.96161717029825,40.726661421991246],[-73.96099640907723,40.72876912558351],[-73.96143187677839,40.73096517164786],[-73.96190947783957,40.73165137399766],[-73.96226340489366,40.73291555162372],[-73.96230391870557,40.73311366098219],[-73.96209034449912,40.73450799787361],[-73.95981583252671,40.737072737871266],[-73.95693002865117,40.738887073071524],[-73.95476314020354,40.739123536058855],[-73.95323299037706,40.738992683138186],[-73.950387481977,40.73828483712566],[-73.94644229140863,40.73678062626314],[-73.94557048457219,40.73661230391041],[-73.9423944354243,40.73542574994752],[-73.94114746701953,40.73415292753755],[-73.93974607754154,40.731065475472064],[-73.93808900912056,40.72974684626047],[-73.93693124799871,40.729108091265545],[-73.93492926391873,40.72854391575297],[-73.93200420453816,40.728145082893455],[-73.92958020690881,40.727612820708664],[-73.92786431997048,40.7258266790583],[-73.92779650104079,40.7249256692162],[-73.92561470516624,40.720061662212444],[-73.924817989437,40.72026513747531],[-73.92451999415134,40.719612730424224],[-73.92481555677267,40.718486835906006],[-73.92837930101503,40.71757836729008],[-73.92889108105992,40.71771331116421],[-73.92970762282208,40.717040203803165],[-73.92947356921462,40.71572145262114],[-73.93210478113063,40.71504259926927],[-73.93124067059492,40.71372481088469],[-73.93264693956344,40.713000730286225],[-73.9309322754774,40.709165311254125],[-73.93025038849085,40.70892791291994],[-73.9318463511812,40.712547249138176],[-73.93042263899011,40.71319163126943],[-73.93105231901718,40.71461022392334],[-73.93085190134032,40.71490298559279],[-73.92843881814595,40.71553094957575],[-73.92890242854062,40.7165728123179],[-73.92809688744704,40.71712903466927],[-73.92458407107216,40.71795024074147],[-73.9236398926207,40.71732065749339],[-73.92305500014335,40.716342664793366],[-73.92431329961576,40.71584705657674],[-73.92483287559028,40.71528291204132],[-73.92405909737052,40.71411155964491],[-73.92223466477623,40.712855954362894],[-73.92154601695685,40.71104328353483],[-73.92074853115805,40.71053364895873],[-73.92189184698695,40.70939609671081],[-73.9118071006937,40.7034349525292],[-73.91290404121895,40.70236189179922],[-73.91067882737423,40.70104596906408],[-73.91180820104422,40.69993800312441],[-73.9042601841169,40.695700371443195],[-73.90579597075312,40.69412715501155],[-73.90139840662042,40.69158999203776],[-73.90188776254818,40.69107772057583],[-73.90042465113092,40.68818389887683],[-73.90116155060394,40.687877935355566],[-73.896526442364,40.68240329924157],[-73.8955485950465,40.68379189231616],[-73.89417463267101,40.685283248673166],[-73.89252316898268,40.68342453280464],[-73.89015418738838,40.6850039903077],[-73.88962787578853,40.684236453750316],[-73.88808341842547,40.68529363217106],[-73.88452250957425,40.686684749095576],[-73.88377698649367,40.68786341068235],[-73.87950641220901,40.69114676884316],[-73.87402053306799,40.69419129471559],[-73.86891762756882,40.6951465610122],[-73.86842489778819,40.694718119515144],[-73.86859478104995,40.693884374691834],[-73.86746088891043,40.688415017596455],[-73.86659848349271,40.685269559069894],[-73.86601993220731,40.68191958702799],[-73.86410096679136,40.68237285029262],[-73.86328640844616,40.679077196561074],[-73.86234580535024,40.679164786146856],[-73.86038519920736,40.67125171099048],[-73.85763323174373,40.67165619403885],[-73.85568461221145,40.66386749237292],[-73.85842950857304,40.66345336093184],[-73.85761537251578,40.660118933154614],[-73.86035978206012,40.65964582901219],[-73.86317083340406,40.65827651294886],[-73.86269778299535,40.65761830901237],[-73.86327623068608,40.656941215328146],[-73.86264117343165,40.655667537007666],[-73.86098917353914,40.65520976710517],[-73.85722330984366,40.65027867054137],[-73.85755268067123,40.64993257596532],[-73.8578346941633,40.64830233828766],[-73.85837605317674,40.647274415313476],[-73.85716978298213,40.64367855888599],[-73.85867998081399,40.64326346969549],[-73.8620130102775,40.64288704102009],[-73.86331138939126,40.64229912902855],[-73.86531173665128,40.64075119144379],[-73.86732291072714,40.63987198395283],[-73.86867282895089,40.6409250792034],[-73.86991239339436,40.64327820299356],[-73.87001708273583,40.64407137240543],[-73.87119172949643,40.64530535631246],[-73.87257043102893,40.64557561235964],[-73.879216582309,40.65459108377298],[-73.87910837392923,40.65370623553959],[-73.87676193956314,40.65056095449513],[-73.876721924919,40.650323221967845],[-73.87318593330956,40.64544501336161],[-73.8734360557259,40.64444773945349],[-73.8727563570499,40.643248964654774],[-73.87194880116556,40.64239408453873],[-73.87008544224427,40.639844181366264],[-73.86952435189366,40.638645701918676],[-73.86799709668131,40.63811526520963],[-73.86920846110642,40.637465809261],[-73.86955902490305,40.637947484327505],[-73.87108640707615,40.63739437357766],[-73.87243460834044,40.636548519200154],[-73.87347939154503,40.6362855457988],[-73.87547103730131,40.637273324467664],[-73.87716909788728,40.63865806970164],[-73.87829429281805,40.63883944495014],[-73.87930954528382,40.64006707427808],[-73.8804780102218,40.64111896455314],[-73.88006714132426,40.642003446626724],[-73.88139306230622,40.64234733997912],[-73.88214832562572,40.64374372784059],[-73.88341999203028,40.644523815649485],[-73.8848075041113,40.643946303680245],[-73.88557762148909,40.64404095029236],[-73.88720113465536,40.645602172219434],[-73.88763668640422,40.64632545126505],[-73.88764072166731,40.647802390007236],[-73.88863638434103,40.64802449261566],[-73.88995674148605,40.64926200244805],[-73.89108330605373,40.64879257569601],[-73.88945074227671,40.647173955596436],[-73.88820050726659,40.647140869529096],[-73.88809441935733,40.64621278654932],[-73.88602529679086,40.64366145040647],[-73.88463356426685,40.64308692194503],[-73.88373578763789,40.6424503491884],[-73.88078889725558,40.63975743364067],[-73.88055123882258,40.639158819737276],[-73.87953888017083,40.63821783932069],[-73.87887362648671,40.63843940524681],[-73.87846702145721,40.63748983032812],[-73.87714434868599,40.63597649800752],[-73.87820590489784,40.634572943662576],[-73.87998767503845,40.633514883481006],[-73.88127068104544,40.63236911916103],[-73.88301362103513,40.631626149535364],[-73.88364451728232,40.63094331213858],[-73.88404726149386,40.62956011854651],[-73.88263248433405,40.62827427312689],[-73.88369231571504,40.627559373914],[-73.88512954023781,40.62882725867138],[-73.88705568015078,40.62850632412861],[-73.88828461263452,40.62789246022349],[-73.89042299743558,40.6262785987977],[-73.89148720748322,40.62448172241517],[-73.89300558864318,40.623356469095974],[-73.89351878316624,40.62335269335132],[-73.89548467972037,40.62248556837443],[-73.89646138309115,40.623016776359385],[-73.90289816742137,40.62587758767365],[-73.90412793207629,40.626306200134294],[-73.91633195427595,40.63203873255835],[-73.9174261457105,40.63158132538347],[-73.91731998946489,40.63100715271805],[-73.91535460301415,40.62999169507067],[-73.90396106711266,40.62483361555412],[-73.90269333271979,40.62421333487324],[-73.9028248165286,40.623475991194745],[-73.900979476775,40.62253429542464],[-73.90072598723953,40.62164062591384],[-73.89811767568025,40.62185156212634],[-73.89647475412453,40.621428246088946],[-73.89561842775312,40.619752599162126],[-73.89662424028315,40.61712890782728],[-73.89644931551065,40.61611605784325],[-73.89541819432462,40.61441401010708],[-73.89445096385656,40.613931963927506],[-73.89249926249607,40.613792312183776],[-73.89095414564684,40.612834047317094],[-73.89141430474193,40.61212544769949],[-73.89404227901501,40.61142833356317],[-73.89354938853045,40.611000897636444],[-73.89054936434657,40.61211910978468],[-73.88979163130149,40.611685915674535],[-73.88980307538793,40.61092830904871],[-73.89030211389492,40.61031765686251],[-73.89225205821357,40.60918128899883],[-73.89274578072484,40.607195148342534],[-73.89334621420019,40.60674344623467],[-73.89489159174688,40.60639386514719],[-73.89672573151205,40.60563653751715],[-73.8986471891848,40.60529798036113],[-73.89983224542384,40.605503117043106],[-73.90087037418705,40.60691946077623],[-73.90056595304034,40.607474509790066],[-73.90044811559753,40.61044477136071],[-73.90271124133432,40.61224706649885],[-73.90838646239617,40.61739102978062],[-73.90964406040364,40.616575371499515],[-73.9085747448176,40.615440196311866],[-73.90730153384288,40.614808913007636],[-73.90544378702968,40.61301450900806],[-73.9042410385934,40.61236227321877],[-73.90429103725162,40.61201485612882],[-73.90221442765916,40.61034331603202],[-73.90167739606477,40.60609454913328],[-73.90189710069488,40.60572961179578],[-73.90520530979806,40.604908182909426],[-73.9059746117786,40.606384028704305],[-73.90811001167575,40.606273265343056],[-73.90861472394569,40.606660837768835],[-73.9098452832665,40.60616830550712],[-73.90885691315675,40.6050600737971],[-73.90832536835175,40.6040733739186],[-73.91092270021183,40.603505476100686],[-73.9135250091696,40.60392913916154],[-73.91673556486204,40.60681456155017],[-73.91632230017528,40.608675662669],[-73.91678394432759,40.608773884392214],[-73.91616475037732,40.61051557507611],[-73.91449542205984,40.61165322366485],[-73.91493418790436,40.61395815505495],[-73.9166280437116,40.61344358926545],[-73.91573181927137,40.611830844513776],[-73.91805286362064,40.610275343080204],[-73.91772902651738,40.60975703538172],[-73.91802964454186,40.60884669674349],[-73.91950358918929,40.60797490397522],[-73.91924135011541,40.60738541386061],[-73.91701787907765,40.60538177850363],[-73.91560086104265,40.60393625315706],[-73.913298546358,40.60225035124642],[-73.91029382758013,40.60195194506713],[-73.90904839322084,40.60161777072543],[-73.9076785933026,40.602291666719935],[-73.90538730361921,40.602649653479254],[-73.90289817410735,40.60263905970301],[-73.90143013761227,40.603272677456],[-73.89983493430695,40.60333979138547],[-73.89884507669342,40.603651918207994],[-73.89793178098233,40.60332534051489],[-73.89526973559379,40.603121916019205],[-73.89345382364215,40.60342764775276],[-73.89138371189256,40.60353201113376],[-73.89080178893191,40.603980914426046],[-73.88897627762162,40.6045481331631],[-73.88764437104096,40.60527704731358],[-73.88465003854404,40.60518154801071],[-73.88396434882078,40.60554914042642],[-73.8827177721047,40.604178837179326],[-73.88339145273291,40.6030163225246],[-73.88268429496466,40.601658536392144],[-73.88230056809384,40.60016855237836],[-73.88181902411144,40.599394006300344],[-73.88159431944102,40.59764542558085],[-73.88080392861772,40.596087761776296],[-73.88076383624812,40.59462881561261],[-73.87971492228004,40.59139889182901],[-73.87896840364144,40.58973041813032],[-73.87913901161359,40.589373200231265],[-73.87871042580302,40.587831105495454],[-73.87788478766812,40.586422202115635],[-73.87671672482075,40.5849144302008],[-73.87970231664002,40.58013510069815],[-73.88174290022101,40.57959170076462],[-73.88422554751041,40.57864115503993],[-73.8894522939513,40.577824286304015],[-73.89104014553803,40.577878233436756],[-73.89454772077407,40.5768395097076],[-73.89552381007172,40.576769818436404],[-73.89604942697278,40.57822136792874],[-73.89698659156099,40.579543370944606],[-73.89706859660005,40.58058875301626],[-73.89651771599014,40.58189383393114],[-73.89647069939969,40.582637446513154],[-73.89703138264115,40.583987579866005],[-73.89795609974416,40.58494815339031],[-73.89794445722234,40.58601164332806],[-73.89880458585411,40.58746425427505],[-73.8995792794888,40.5879878062505],[-73.90088030290646,40.58805352438208],[-73.90209953736365,40.58735654117639],[-73.90436592432978,40.58696016202153],[-73.9058534506541,40.5874882109311],[-73.90651874663767,40.588025473892536],[-73.90712502406387,40.58752970296233],[-73.90647377807494,40.58702098941501],[-73.90810885035974,40.58679650530154],[-73.91088554171193,40.58594764500447],[-73.91191811783662,40.58642796543394],[-73.91157677449867,40.58726262488534],[-73.91189192575364,40.588216876657015],[-73.91148579005623,40.59110875301852],[-73.91193317875775,40.59261502415899],[-73.91198964223294,40.5942704697703],[-73.9124051173296,40.59526981590439],[-73.9130387449903,40.59594965823767],[-73.91512578543998,40.59876999472121],[-73.91857336923091,40.600786824423906],[-73.9197428061191,40.600982006203544],[-73.92147002357949,40.601914592297604],[-73.92259804503611,40.601608378761604],[-73.92324120433767,40.60107939346005],[-73.92400307854615,40.599730145227916],[-73.9250762560669,40.59992460579022],[-73.92812448977604,40.60194492725579],[-73.92950671202789,40.60270923350431],[-73.92901905320194,40.6036752112739],[-73.93117476161741,40.60385040643471],[-73.93196227064442,40.60312163761543],[-73.93148823885089,40.60210772913052],[-73.93031885833555,40.601288573581776],[-73.9296695236837,40.601214719521174],[-73.92922698259744,40.60048810851604],[-73.92840113840316,40.60053063589315],[-73.92504791458931,40.5982845816942],[-73.92252021192989,40.59604328854047],[-73.92177536324357,40.59503092620112],[-73.92083695184243,40.594871989341236],[-73.91908617945425,40.59380130525552],[-73.91788506186865,40.59282585142073],[-73.9165655623066,40.591117376875076],[-73.91507343618837,40.590403144927166],[-73.91458333215584,40.5898795895891],[-73.91454699795437,40.58874232600696],[-73.91708037510355,40.58757879416149],[-73.91820329129602,40.586387042371406],[-73.92101218266104,40.585753595858215],[-73.922353373773,40.586023936562356],[-73.9247570979969,40.58563257509923],[-73.92684232736036,40.587289689953785],[-73.92776143639115,40.58866060975881],[-73.92395294850095,40.59113985052505],[-73.92419963392662,40.59136428018869],[-73.92815905123098,40.58882524959],[-73.93003427450553,40.58942599650071],[-73.93053560681565,40.590263661461684],[-73.93028656348365,40.59244557546534],[-73.92971282036603,40.59312004824805],[-73.93001650952083,40.59409453606215],[-73.93101903473394,40.59461691000355],[-73.93282654852891,40.594803744969134],[-73.93156462560295,40.59255174077164],[-73.93109178164585,40.589326565572115],[-73.92970255020447,40.587607355474155],[-73.9280823297159,40.58669769393762],[-73.9274440014018,40.58601571445449],[-73.92529083981735,40.58464073566465],[-73.92348001331943,40.584817654048486],[-73.92271703901413,40.58467254721226],[-73.92000618741413,40.58466465273652],[-73.91879590737994,40.58522386859482],[-73.91569387717738,40.58621442339275],[-73.91322318497225,40.586000960995],[-73.91255391691257,40.585526336006225],[-73.91238199348398,40.584623153394496],[-73.91286173083529,40.58307045982728],[-73.91498685680605,40.583152840328545],[-73.915961510809,40.582435758340225],[-73.91435652574027,40.582396338075576],[-73.91335911446286,40.5829540210143],[-73.91178656705166,40.582906464135164],[-73.91147523338653,40.58184362959963],[-73.91501420402972,40.58153929551703],[-73.91814011869593,40.582138697172766],[-73.91988900617505,40.58267810299274],[-73.92321384460415,40.58344293381896],[-73.92712531836808,40.58357927388332],[-73.92963248074904,40.58339880862546],[-73.9309600314458,40.5827286107861],[-73.93420971486968,40.58297979889342],[-73.93611243752986,40.58331301354184],[-73.94144050857206,40.583340147476186],[-73.94157408083576,40.58360755593937],[-73.94369153004573,40.583467754265975],[-73.94628634691874,40.58356868570793],[-73.94836747924889,40.58348859676083],[-73.95349322048682,40.58298819826098],[-73.95330135995678,40.58200274963349],[-73.949696724994,40.582319401066634],[-73.94274062592515,40.58099558955925],[-73.93250341155829,40.58114698863908],[-73.93106028108008,40.57626592009684],[-73.9315025674406,40.57566050512677],[-73.93507861830439,40.5755094660102],[-73.93647107586592,40.575860496356384],[-73.9368496516707,40.575556494514004],[-73.94250907828429,40.575373554531765],[-73.94393460727697,40.57580102036187],[-73.94554290851472,40.575574035723605],[-73.9459239023584,40.5751154323094],[-73.94896375973474,40.57477820421151],[-73.95254341027398,40.574223979504254],[-73.95439793821808,40.574370845907175],[-73.9584347635901,40.57408881554887],[-73.9685633598548,40.573125946551876],[-73.97249673747083,40.57257625674741],[-73.97547081902786,40.571969003816925],[-73.97766384588144,40.571729387799095],[-73.97884498357963,40.57188119517078],[-73.98726866835311,40.57107594447702],[-73.9931574188674,40.57037978943883],[-73.99744814048583,40.57028603439305],[-73.99863242815941,40.57050800669026],[-74.0010643863451,40.570401541435466],[-74.00205780931621,40.570152462901774],[-74.00248707737711,40.571738388872454],[-74.00440185899228,40.57279789263785],[-74.00666915632598,40.57339364837534],[-74.008708657302,40.573759818587654],[-74.01007410785428,40.57383080951765],[-74.01115668729265,40.574166761858805],[-74.01201540191131,40.57488505247421],[-74.0124595183103,40.57668177066741],[-74.01303148001797,40.57791001271719],[-74.01235035929241,40.57922182165902],[-74.01147928530143,40.580078407145194],[-74.00812030080372,40.58162226871542],[-74.00604734235819,40.58198365303583],[-74.00294374157808,40.581432835521014],[-74.00013617935201,40.58124924484471],[-73.99812217170772,40.58145494865325],[-73.99776522704227,40.58058803387577],[-73.99182912790279,40.57924708092878],[-73.9903620646656,40.579424580120474],[-73.98899093556341,40.57883509996884],[-73.98739064388407,40.57908698306367],[-73.98702138577707,40.58002276487527],[-73.98588567394853,40.581144424564755],[-73.98684478996452,40.581232102005174],[-73.988009733767
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment