Skip to content

Instantly share code, notes, and snippets.

@benlyall
Forked from anonymous/index.html
Last active August 29, 2015 14:16
Show Gist options
  • Save benlyall/6a81499abf7a0e2ad304 to your computer and use it in GitHub Desktop.
Save benlyall/6a81499abf7a0e2ad304 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>NY State Counties With Map Markers</title>
<style>
body {
margin-top: 50px;
padding: 0;
background-color: #eee8d5;
}
.map-county {
stroke: #93a1a1;
fill: #fdf6e3;
}
.map-marker {
fill: #268bd2;
opacity: 0.75;
stroke-width: 0;
}
</style>
</head>
<body>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="nyCountiesGeoJSON.js"></script>
<script type="text/javascript">
var countyGeoData = nyCountiesGeoJSON, // load from JavaScript tab as it's a big ugly dataset
nodeGeoData = [
[-75.52, 42.53], [-73.93, 42.81],
[-75.93, 42.09], [-76.46, 42.48],
[-76.54, 42.46], [-75.52, 42.54],
[-76.20, 42.60], [-76.16, 42.60],
[-75.96, 42.10], [-76.49, 42.44],
],
svg = d3.select("body").append("svg").attr('width', 500).attr('height', 500),
g = svg.append('g'),
projection = d3.geo.mercator().scale(7000).center([-74, 42]),
path = d3.geo.path().projection(projection),
// Scale border width and node radius dynamically with zoom
countyBorderWidth = 0.1,
nodeRadius = 12, // Max radius if node is free of collision
radiusStep = 0.01,
zoom = d3.behavior.zoom().on("zoom",function() {
g.attr("transform","translate("+ d3.event.translate.join(",")+")scale("+d3.event.scale+")");
//g.selectAll("circle")
//.attr("r", nodeRadius / d3.event.scale);
g.selectAll("path")
.style('stroke-width', countyBorderWidth / d3.event.scale )
.attr("d", path.projection(projection));
}),
nodes = nodeGeoData.map(function(n) {
var pos = projection(n);
return {
collided: false,
x: pos[0],
y: pos[1],
r: 0
};
});
svg.call(zoom);
function tick() {
nodes.forEach(collided);
nodes.forEach(function(n) {
if (!n.collided) {
n.r += radiusStep;
if (n.r > nodeRadius) {
n.r = nodeRadius;
n.collided = true;
}
}
});
}
function collided(node, i) {
if (node.collided) return;
nodes.forEach(function(n, j) {
if (n !== node) {
var dx = node.x - n.x, dy = node.y - n.y,
l = Math.sqrt(dx*dx+dy*dy);
if (l < node.r + n.r) {
node.collided = true;
n.collided = true;
}
}
});
}
function drawMap() {
while (nodes.filter(function(n) { return n.collided; }).length < nodes.length) {
tick();
}
function drawCounties(counties) {
g.selectAll('path').data(counties.features).enter()
.append('path')
.attr('class', 'map-county')
.attr('d', path)
.style('stroke-width', countyBorderWidth);
}
function drawNodes(nodes) {
g.selectAll('circle').data(nodes).enter().append("circle")
.attr("cx", function (d) { return d.x; })
.attr("cy", function (d) { return d.y; })
.attr("r", function(d, i) { return d.r; })
.attr("class", "map-marker");
}
drawCounties(countyGeoData);
drawNodes(nodes);
}
drawMap();
</script>
</html>
var nyCountiesGeoJSON = {"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.53515202201054,44.09927595556778],[-74.64908975174943,44.088355904476614],[-74.73853391605783,44.079832937771315],[-74.7681455399365,44.07761341519181],[-74.85417766527945,44.0700670384215],[-74.88927292320972,44.06687092590701],[-75.06279947630938,44.0503576779155],[-75.17015684518634,44.09696765208509],[-75.26118517044299,44.13612003038755],[-75.27958580914948,44.143843968964234],[-75.31200017932119,44.15760500895716],[-75.31589965242455,44.15929184611758],[-75.31967726699344,44.16106746418119],[-75.33320356432073,44.16763725101652],[-75.38803990483677,44.19231834210061],[-75.38852733897468,44.19249590390697],[-75.41338648000863,44.203415954998135],[-75.44604456724929,44.21762089950696],[-75.44616642578377,44.21762089950696],[-75.45737741095594,44.221971163762795],[-75.46383591328339,44.225167276277276],[-75.46566379130059,44.22534483808364],[-75.46712609371436,44.22587752350272],[-75.47053813267979,44.22845216969495],[-75.47053813267979,44.22845216969495],[-75.4741938887142,44.23013900685537],[-75.47894637155892,44.23155950130625],[-75.48516115681741,44.2344892711112],[-75.48966992259317,44.23733026001297],[-75.49369125423101,44.237951726335226],[-75.49698143466198,44.24105905794653],[-75.50441480526527,44.24452151317056],[-75.50977658078239,44.24691859755642],[-75.51136074173063,44.247983968394585],[-75.53110182431641,44.256506935099885],[-75.53585430716113,44.25846011496985],[-75.53938820466105,44.260413294839815],[-75.54292210216097,44.26201135109706],[-75.54657785819538,44.26352062645112],[-75.5875223257807,44.28145436889351],[-75.58922834526342,44.282164616118955],[-75.59288410129781,44.2837626723762],[-75.62992909577977,44.299743234948636],[-75.64467397845186,44.30604667907443],[-75.67062984629612,44.31705551106877],[-75.67465117793397,44.31865356732601],[-75.70462837741607,44.33179314099668],[-75.70609067982983,44.33250338822212],[-75.7350930110361,44.346353209118234],[-75.75117833758748,44.35318933866311],[-75.7656795031906,44.35975912549844],[-75.82344044853417,44.386304615549314],[-75.83964763362002,44.39385099231963],[-75.86011986741268,44.40326176805673],[-75.82088141931008,44.43220434249347],[-75.81149831215512,44.46061423151113],[-75.80772069758623,44.47162306350547],[-75.766288795863,44.515835953289205],[-75.73826133293258,44.53510140927931],[-75.72705034776041,44.54282534785598],[-75.69658571414038,44.56759521984325],[-75.66234346595148,44.59192118731462],[-75.66124673914115,44.59263143454006],[-75.66088116353771,44.592897777249604],[-75.64832973448627,44.60079927763264],[-75.61969297888344,44.61882180097822],[-75.61835253500416,44.619620829106836],[-75.61030987172848,44.62583549232945],[-75.59836773534943,44.63506870626019],[-75.58094196491876,44.64856340354358],[-75.52415588785104,44.69135579887643],[-75.52098756595456,44.69375288326229],[-75.50794870276519,44.703518782612115],[-75.50612082474798,44.704850496159814],[-75.50587710767903,44.70511683886936],[-75.50246506871358,44.70698123783614],[-75.50014975655846,44.70813538957748],[-75.48004309836924,44.718966659765464],[-75.4796775227658,44.719144221571824],[-75.4796775227658,44.719144221571824],[-75.47760592767965,44.72020959240999],[-75.463226620611,44.729886710856626],[-75.45810856216282,44.73334916608066],[-75.44409483069761,44.74275994181775],[-75.4239881725084,44.75634342000432],[-75.41387391414655,44.768861527352726],[-75.3970574363883,44.7734781343181],[-75.38743061216437,44.78004792115343],[-75.37232015388884,44.78306647186156],[-75.36988298319923,44.785729898956966],[-75.36634908569931,44.789458696890534],[-75.34648614457905,44.80552804036614],[-75.33369099845864,44.80641584939794],[-75.30736955501094,44.825503743581685],[-75.30651654526957,44.82612520990395],[-75.3076132720799,44.83677891828557],[-75.2831197066494,44.84911946382761],[-75.26825296544283,44.85515656524387],[-75.25545781932242,44.85764243053291],[-75.245709136564,44.86403465556189],[-75.24132222932272,44.86696442536683],[-75.2286489417368,44.86794101530181],[-75.21853468337494,44.87557617297531],[-75.20305864949597,44.87752935284527],[-75.19623457156509,44.88134693168202],[-75.18831376682388,44.883211330648805],[-75.16516064527266,44.89333235361135],[-75.14298239199728,44.9002572640594],[-75.14298239199728,44.9002572640594],[-75.13628017260088,44.908869011667875],[-75.13396486044576,44.911798781472825],[-75.11970741191158,44.91783588288908],[-75.10959315354974,44.920144186371765],[-75.10520624630846,44.92120955720992],[-75.09667614889484,44.927069096819814],[-75.06889240303339,44.92991008572158],[-75.06621151527482,44.930176428431125],[-75.05999673001634,44.93452669268695],[-75.0270949257067,44.94660089551946],[-75.01539650639661,44.95290433964525],[-75.00516038950029,44.958408755642424],[-74.99967675544869,44.96595513241274],[-74.99931117984525,44.97163711021627],[-74.99273081898332,44.97740786892298],[-74.97250230225963,44.983444970339235],[-74.94666829294984,44.98468790298376],[-74.93947863941551,44.984421560274214],[-74.90791727898517,44.98335618943605],[-74.90072762545084,44.99276696517315],[-74.88781062079595,45.00004699923393],[-74.87720892829618,45.00137871278163],[-74.86867883088257,45.00128993187845],[-74.86514493338265,45.00208896000707],[-74.86197661148617,45.00279920723251],[-74.85685855303801,45.004486044392934],[-74.85563996769321,45.005018729812015],[-74.8544213823484,45.005373853424736],[-74.84613500200376,45.01025680309965],[-74.83468029976262,45.01469584825866],[-74.82663763648694,45.01585],[-74.81969170002158,45.01283144929187],[-74.81323319769413,45.013541696517315],[-74.8054342514874,45.01096705032509],[-74.79946318329787,45.009102651358305],[-74.79312653950491,45.0046636061993],[-74.76875483260889,45.003864578070676],[-74.76022473519528,44.994986487752655],[-74.75717827183328,44.99409867872085],[-74.74462684278183,44.99054744259365],[-74.7313442625235,44.99045866169047],[-74.72622620407533,44.99489770684948],[-74.72391089192021,44.976963964407076],[-74.72378903338574,44.97652005989118],[-74.72025513588581,44.95299312054843],[-74.71245618967909,44.95299312054843],[-74.7111157457998,44.95299312054843],[-74.69125280467955,44.95299312054843],[-74.69064351200714,44.95290433964525],[-74.68942492666234,44.95290433964525],[-74.66834340019729,44.95281555874207],[-74.6677341075249,44.95272677783889],[-74.6419000982151,44.95263799693571],[-74.63605088856006,44.91082219153785],[-74.6351978788187,44.90442996650887],[-74.63117654718086,44.87539861116895],[-74.63044539597398,44.86936150975269],[-74.62995796183606,44.86536636910959],[-74.62947052769813,44.86110488575694],[-74.62922681062918,44.85941804859652],[-74.62873937649125,44.85702096421065],[-74.62861751795677,44.85622193608203],[-74.62618034726718,44.838465755445995],[-74.62508362045685,44.8303866932566],[-74.62289016683621,44.815116377909604],[-74.62264644976725,44.81280807442692],[-74.62252459123278,44.81218660810466],[-74.62191529856037,44.807658782042466],[-74.61996556200869,44.792832371211375],[-74.6174065327846,44.77454350515626],[-74.61423821088812,44.752348279361215],[-74.61326334261229,44.74577849252588],[-74.61082617192268,44.72704572195486],[-74.60741413295725,44.703696344418475],[-74.60448952812972,44.686295287395154],[-74.60290536718148,44.676618168948515],[-74.58950092838866,44.5987573168595],[-74.57122214821665,44.470202569054585],[-74.57012542140633,44.46336643950971],[-74.55867071916519,44.385150463807975],[-74.55708655821695,44.372898699169106],[-74.55355266071703,44.3518576251154],[-74.53637060735534,44.250025929167734],[-74.5347864464071,44.238306849947946],[-74.5347864464071,44.237951726335226],[-74.53405529520022,44.233335119369855],[-74.53393343666573,44.232003405822155],[-74.53222741718301,44.21948529847375],[-74.52637820752797,44.175982655915455],[-74.52625634899348,44.174828504174116],[-74.52564705632109,44.17065580172465],[-74.54453512916551,44.169412869080126],[-74.54368211942415,44.16284308224479],[-74.53515202201054,44.09927595556778]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.02736750883196,44.99578551588128],[-73.87455690659391,45.00120115097527],[-73.81533365883658,45.00226652181343],[-73.76293448901014,45.00324311174842],[-73.67544006125343,45.0028879881357],[-73.65204322263324,45.00324311174842],[-73.63973551065075,45.00342067355477],[-73.56028374616973,45.00572897703746],[-73.52945353694626,45.00661678606926],[-73.51933927858441,45.0068831287788],[-73.45256080168932,45.008747527745584],[-73.4373284848793,45.00919143226149],[-73.41112889996609,45.009635336777386],[-73.38834135401831,45.01007924129329],[-73.36738168608773,45.01043436490601],[-73.35738928626036,45.01061192671237],[-73.3522712278122,45.01070070761555],[-73.34313183772619,45.01087826942191],[-73.35019963272603,44.99427624052721],[-73.35336795462251,44.99028109988411],[-73.353489813157,44.99019231898093],[-73.35458653996731,44.987351330079164],[-73.35409910582939,44.98406643666149],[-73.35373353022595,44.98300106582333],[-73.3528805204846,44.98060398143747],[-73.35019963272603,44.976253717181635],[-73.34593458401923,44.97172589111945],[-73.34471599867443,44.970482958474925],[-73.33947608169179,44.966399036928635],[-73.3387449304849,44.965866351509554],[-73.33825749634698,44.964712199768215],[-73.33789192074354,44.96053949731875],[-73.33959794022627,44.94340478300497],[-73.33850121341594,44.92413932701487],[-73.33898864755386,44.9181910065018],[-73.33898864755386,44.91765832108272],[-73.33911050608835,44.91748075927636],[-73.33947608169179,44.91685929295409],[-73.34106024264003,44.91463977037459],[-73.34788432057091,44.911266096053744],[-73.34910290591571,44.910467067925126],[-73.35361167169148,44.907359736313815],[-73.35617070091556,44.90451874741205],[-73.35812043746724,44.90132263489756],[-73.36031389108788,44.89723871335127],[-73.36226362763956,44.89146795464456],[-73.36275106177749,44.88924843206506],[-73.36299477884644,44.888271842130074],[-73.36640681781189,44.875043487556226],[-73.36908770557045,44.866698082657294],[-73.37201231039798,44.862436599304644],[-73.37566806643238,44.860749762144216],[-73.3798112566047,44.85702096421065],[-73.38139541755294,44.84876434021489],[-73.38139541755294,44.84503554228132],[-73.38139541755294,44.84494676137815],[-73.37944568100126,44.83802185093009],[-73.37871452979438,44.83740038460783],[-73.37530249082893,44.83633501376967],[-73.37128115919108,44.83074181686931],[-73.36969699824284,44.82914376061207],[-73.36908770557045,44.82878863699935],[-73.36799097876013,44.82798960887073],[-73.365675666605,44.82648033351667],[-73.35812043746724,44.82328422100218],[-73.35495211557075,44.82150860293858],[-73.353489813157,44.82035445119723],[-73.35019963272603,44.81635931055413],[-73.33545475005394,44.80464023133434],[-73.3344798817781,44.8021543660453],[-73.33399244764018,44.79922459624035],[-73.33338315496778,44.79194456217957],[-73.33313943789882,44.78928113508417],[-73.33313943789882,44.78874844966509],[-73.33374873057122,44.785197213537884],[-73.3356984671229,44.782089881926574],[-73.34422856453651,44.776319123219864],[-73.34703131082955,44.772945448899016],[-73.34873733031228,44.76824006103047],[-73.35312423755356,44.758119038067925],[-73.35397724729492,44.75634342000432],[-73.35397724729492,44.75607707729478],[-73.35434282289836,44.75527804916616],[-73.35763300332933,44.75101656581351],[-73.3638477885878,44.7452458071068],[-73.36555380807053,44.74178335188277],[-73.36555380807053,44.74151700917323],[-73.36543194953605,44.7376106494333],[-73.3650663739326,44.725625227503976],[-73.36555380807053,44.700944136419885],[-73.36555380807053,44.70032267009763],[-73.36396964712229,44.69845827113084],[-73.36128875936373,44.695350939519535],[-73.36128875936373,44.69455191139092],[-73.36531009100156,44.68753822003968],[-73.37018443238077,44.68487479294427],[-73.36969699824284,44.68372064120293],[-73.36738168608773,44.68132355681706],[-73.36725982755326,44.6784825679153],[-73.37103744212213,44.67750597798032],[-73.3718904518635,44.676973292561236],[-73.3718904518635,44.67599670262626],[-73.37274346160486,44.66871666856548],[-73.3700625738463,44.666053241470074],[-73.36969699824284,44.66347859527785],[-73.3705500079842,44.662502005342866],[-73.3731090372083,44.662679567149226],[-73.37408390548413,44.662324443536505],[-73.37908010539782,44.656731246636156],[-73.37895824686333,44.65522197128209],[-73.3779833785875,44.65389025773439],[-73.3779833785875,44.65291366779941],[-73.38310143703566,44.64572241464181],[-73.3785926712599,44.64146093128916],[-73.37968939807021,44.640395560451],[-73.38675719307007,44.63640041980789],[-73.3871227686735,44.63551261077609],[-73.38639161746663,44.63293796458387],[-73.38614790039766,44.63196137464888],[-73.3859041833287,44.63107356561708],[-73.3859041833287,44.63062966110118],[-73.38626975893214,44.62885404303758],[-73.3865134760011,44.62690086316761],[-73.38736648574246,44.623704750653125],[-73.38992551496655,44.619620829106836],[-73.39029109056999,44.61837789646231],[-73.38980365643206,44.617223744720974],[-73.38297957850118,44.612163233239706],[-73.38200471022535,44.609233463434755],[-73.38090798341501,44.60568222730755],[-73.38078612488054,44.60523832279165],[-73.3804205492771,44.604794418275745],[-73.37688665177717,44.599556344988116],[-73.37627735910478,44.59724804150543],[-73.3767647932427,44.59547242344183],[-73.37786152005302,44.59387436718458],[-73.38127355901847,44.590855816476456],[-73.3816391346219,44.59058947376692],[-73.3816391346219,44.590323131057374],[-73.38188285169086,44.589346541122396],[-73.37773966151853,44.585085057769746],[-73.37566806643238,44.58206650706162],[-73.37444948108758,44.57549672022628],[-73.36725982755326,44.56750643894007],[-73.36165433496717,44.56360007920014],[-73.36007017401892,44.56253470836198],[-73.35677999358796,44.55791810139661],[-73.35629255945004,44.55765175868707],[-73.3559269838466,44.55738541597753],[-73.35519583263972,44.55694151146163],[-73.35007777419156,44.55543223610756],[-73.34288812065722,44.551880999980355],[-73.3387449304849,44.54806342114361],[-73.33862307195042,44.54682048849909],[-73.40052720746631,44.542381443340076],[-73.46389364539597,44.53767605547153],[-73.46499037220629,44.536255561020646],[-73.46413736246492,44.535367751988844],[-73.46474665513733,44.53368091482842],[-73.46279691858565,44.53305944850616],[-73.46084718203397,44.529596993282134],[-73.46328435272356,44.52515794812312],[-73.45914116255125,44.52267208283408],[-73.45962859668917,44.52000865573867],[-73.46523408927526,44.51894328490051],[-73.47120515746478,44.5140603352256],[-73.47010843065445,44.508644700131605],[-73.4710832989303,44.5077568910998],[-73.47912596220598,44.50651395845529],[-73.48046640608526,44.50518224490758],[-73.48314729384383,44.50127588516765],[-73.48826535229199,44.49958904800723],[-73.49058066444711,44.49754708723408],[-73.49131181565399,44.49372950839734],[-73.49399270341256,44.490977300398754],[-73.49508943022288,44.489290463238326],[-73.4992326203952,44.48786996878744],[-73.50666599099848,44.487248502465185],[-73.5164146737569,44.4880475305938],[-73.52409176142913,44.48982314865741],[-73.52689450772218,44.4880475305938],[-73.53591203927371,44.48653825523974],[-73.55516568772157,44.48227677188709],[-73.55772471694564,44.48041237292031],[-73.55967445349732,44.47792650763127],[-73.56052746323869,44.47339868156907],[-73.56198976565246,44.47100159718321],[-73.56430507780757,44.46913719821642],[-73.57125101427293,44.46531961937968],[-73.57502862884182,44.464254248541515],[-73.58099969703134,44.46452059125106],[-73.58709262375535,44.46283375409063],[-73.59074837978976,44.46105813602703],[-73.59294183341039,44.46159082144611],[-73.59501342849656,44.46265619228427],[-73.59647573091031,44.46265619228427],[-73.60232494056537,44.458128366222084],[-73.61122061358242,44.45502103461077],[-73.61451079401337,44.454399568288515],[-73.61633867203058,44.45448834919169],[-73.62547806211658,44.457595680803],[-73.6290119596165,44.458305928028444],[-73.63010868642682,44.457950804415724],[-73.63461745220259,44.454577130094876],[-73.63900435944387,44.452535169321735],[-73.64997162754709,44.45004930403269],[-73.65423667625389,44.44854002867862],[-73.65837986642622,44.44392342171325],[-73.67044386133973,44.441259994617845],[-73.67263731496038,44.44099365190831],[-73.67580563685686,44.440904871005124],[-73.68128927090847,44.44188146094011],[-73.68604175375319,44.44054974739241],[-73.68945379271864,44.44099365190831],[-73.69554671944265,44.44241414635919],[-73.6988368998736,44.441437556424205],[-73.70029920228737,44.440460966489226],[-73.70066477789081,44.44561025887368],[-73.7012740705632,44.445521477970495],[-73.7221118799593,44.44427854532597],[-73.74818960633804,44.44276926997191],[-73.90965216452418,44.429718477204425],[-73.91940084728259,44.49577146917048],[-73.91952270581707,44.49639293549274],[-73.92025385702395,44.50447199768214],[-73.93292714460988,44.576206967451725],[-73.94584414926477,44.574875253904025],[-73.94730645167853,44.583398220609325],[-73.95461796374734,44.632405279164786],[-73.96363549529886,44.69215482700505],[-73.9640010709023,44.69490703500364],[-73.96436664650574,44.697215338486316],[-73.96619452452295,44.709111979512464],[-73.98642304124664,44.70778026596476],[-73.99007879728104,44.736545278595145],[-73.99032251435001,44.737699430336484],[-73.99312526064305,44.757763914455204],[-73.99361269478096,44.76193661690468],[-73.9951968557292,44.77152495444813],[-73.9971465922809,44.782445005539294],[-73.99763402641881,44.785019651731524],[-73.99970562150497,44.79789288269265],[-74.00007119710841,44.80073387159442],[-74.00068048978082,44.80535047855978],[-74.00068048978082,44.805616821269325],[-74.00080234831529,44.80623828759158],[-74.0014116409877,44.80872415288063],[-74.0032395190049,44.81831249042409],[-74.00665155797034,44.83695648009193],[-74.00592040676347,44.872646403170364],[-74.00677341650481,44.88596353864739],[-74.00860129452202,44.89928067412442],[-74.01566908952186,44.932040827397906],[-74.01749696753907,44.93958720416822],[-74.021030865039,44.95867509835196],[-74.021030865039,44.95885266015832],[-74.02505219667684,44.98007129601839],[-74.02736750883196,44.99578551588128]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.90965216452418,44.429718477204425],[-74.14142709710534,44.407256908699836],[-74.1360653215882,44.37502944084543],[-74.13155655581244,44.35159128240586],[-74.13106912167453,44.3487502935041],[-74.13094726314004,44.348040046278655],[-74.12887566805388,44.33685365247795],[-74.12838823391596,44.334101444479366],[-74.128144516847,44.33285851183484],[-74.12765708270908,44.33090533196488],[-74.1275352241746,44.33019508473944],[-74.1275352241746,44.3299287420299],[-74.12741336564012,44.32975118022354],[-74.12741336564012,44.329484837513995],[-74.12741336564012,44.32939605661082],[-74.12716964857115,44.32877459028855],[-74.12716964857115,44.32868580938538],[-74.12668221443325,44.32628872499951],[-74.12668221443325,44.32602238228997],[-74.12619478029532,44.32415798332318],[-74.12400132667467,44.31474720758609],[-74.12375760960572,44.31341549403838],[-74.12363575107123,44.31306037042566],[-74.12351389253675,44.31270524681294],[-74.12314831693331,44.3106632860398],[-74.12290459986436,44.31004181971753],[-74.12278274132987,44.30933157249209],[-74.12241716572643,44.30791107804121],[-74.12107672184716,44.29965445404545],[-74.12034557064027,44.29423881895146],[-74.11437450245074,44.25064739548999],[-74.09353669305466,44.13762930574162],[-74.22770293951724,44.12502241749003],[-74.28192998736088,44.12058337233102],[-74.38490044899658,44.111527720206645],[-74.47812222787385,44.10362621982361],[-74.49956932994235,44.10238328717909],[-74.53515202201054,44.09927595556778],[-74.54368211942415,44.16284308224479],[-74.54453512916551,44.169412869080126],[-74.52564705632109,44.17065580172465],[-74.52625634899348,44.174828504174116],[-74.52637820752797,44.175982655915455],[-74.53222741718301,44.21948529847375],[-74.53393343666573,44.232003405822155],[-74.53405529520022,44.233335119369855],[-74.5347864464071,44.237951726335226],[-74.5347864464071,44.238306849947946],[-74.53637060735534,44.250025929167734],[-74.55355266071703,44.3518576251154],[-74.55708655821695,44.372898699169106],[-74.55867071916519,44.385150463807975],[-74.57012542140633,44.46336643950971],[-74.57122214821665,44.470202569054585],[-74.58950092838866,44.5987573168595],[-74.60290536718148,44.676618168948515],[-74.60448952812972,44.686295287395154],[-74.60741413295725,44.703696344418475],[-74.61082617192268,44.72704572195486],[-74.61326334261229,44.74577849252588],[-74.61423821088812,44.752348279361215],[-74.6174065327846,44.77454350515626],[-74.61996556200869,44.792832371211375],[-74.62191529856037,44.807658782042466],[-74.62252459123278,44.81218660810466],[-74.62264644976725,44.81280807442692],[-74.62289016683621,44.815116377909604],[-74.62508362045685,44.8303866932566],[-74.62618034726718,44.838465755445995],[-74.62861751795677,44.85622193608203],[-74.62873937649125,44.85702096421065],[-74.62922681062918,44.85941804859652],[-74.62947052769813,44.86110488575694],[-74.62995796183606,44.86536636910959],[-74.63044539597398,44.86936150975269],[-74.63117654718086,44.87539861116895],[-74.6351978788187,44.90442996650887],[-74.63605088856006,44.91082219153785],[-74.6419000982151,44.95263799693571],[-74.6677341075249,44.95272677783889],[-74.66834340019729,44.95281555874207],[-74.68942492666234,44.95290433964525],[-74.69064351200714,44.95290433964525],[-74.69125280467955,44.95299312054843],[-74.7111157457998,44.95299312054843],[-74.71245618967909,44.95299312054843],[-74.72025513588581,44.95299312054843],[-74.72378903338574,44.97652005989118],[-74.72391089192021,44.976963964407076],[-74.72622620407533,44.99489770684948],[-74.72257044804094,44.998093819363966],[-74.7019763557138,45.003331892651595],[-74.68394129261074,44.99969187562121],[-74.67845765855914,45.00004699923393],[-74.67309588304201,45.00093480826573],[-74.66736853192145,45.00164505549117],[-74.6615193222664,44.999603094718026],[-74.64701815666328,44.99951431381485],[-74.57158772382009,44.998892847492584],[-74.54904389494126,44.998715285686224],[-74.50822128589044,44.997916257557605],[-74.50797756882147,44.997916257557605],[-74.50785571028699,44.997916257557605],[-74.45752813554671,44.9970284485258],[-74.44753573571934,44.9965845440099],[-74.44180838459879,44.99640698220354],[-74.34285925460094,44.99223427975407],[-74.33518216692869,44.99187915614135],[-74.33177012796325,44.99187915614135],[-74.27498405089553,44.99205671794771],[-74.24305711486174,44.99214549885089],[-74.23854834908597,44.99214549885089],[-74.23416144184469,44.99214549885089],[-74.20710884719011,44.99196793704453],[-74.20710884719011,44.99196793704453],[-74.20710884719011,44.99196793704453],[-74.14678887262245,44.99152403252863],[-74.14483913607077,44.99161281343181],[-74.1447172775363,44.99161281343181],[-74.02736750883196,44.99578551588128],[-74.02505219667684,44.98007129601839],[-74.021030865039,44.95885266015832],[-74.021030865039,44.95867509835196],[-74.01749696753907,44.93958720416822],[-74.01566908952186,44.932040827397906],[-74.00860129452202,44.89928067412442],[-74.00677341650481,44.88596353864739],[-74.00592040676347,44.872646403170364],[-74.00665155797034,44.83695648009193],[-74.0032395190049,44.81831249042409],[-74.0014116409877,44.80872415288063],[-74.00080234831529,44.80623828759158],[-74.00068048978082,44.805616821269325],[-74.00068048978082,44.80535047855978],[-74.00007119710841,44.80073387159442],[-73.99970562150497,44.79789288269265],[-73.99763402641881,44.785019651731524],[-73.9971465922809,44.782445005539294],[-73.9951968557292,44.77152495444813],[-73.99361269478096,44.76193661690468],[-73.99312526064305,44.757763914455204],[-73.99032251435001,44.737699430336484],[-73.99007879728104,44.736545278595145],[-73.98642304124664,44.70778026596476],[-73.96619452452295,44.709111979512464],[-73.96436664650574,44.697215338486316],[-73.9640010709023,44.69490703500364],[-73.96363549529886,44.69215482700505],[-73.95461796374734,44.632405279164786],[-73.94730645167853,44.583398220609325],[-73.94584414926477,44.574875253904025],[-73.93292714460988,44.576206967451725],[-73.92025385702395,44.50447199768214],[-73.91952270581707,44.49639293549274],[-73.91940084728259,44.49577146917048],[-73.90965216452418,44.429718477204425]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.33862307195042,44.54682048849909],[-73.33923236462283,44.544778527725946],[-73.3393542231573,44.5445121850164],[-73.33898864755386,44.54326925237188],[-73.33179899401954,44.536077999214285],[-73.33155527695058,44.535900437407925],[-73.33094598427817,44.53430238115068],[-73.33070226720922,44.531816515861635],[-73.33058040867473,44.53101748773302],[-73.32948368186442,44.52924186966941],[-73.32850881358857,44.52844284154079],[-73.32387818927833,44.52711112799309],[-73.32205031126114,44.5252467290263],[-73.32107544298529,44.51983109393231],[-73.32144101858873,44.51645741961146],[-73.32131916005424,44.51610229599874],[-73.32119730151977,44.515658391482845],[-73.32083172591634,44.513616430709696],[-73.3192475649681,44.511929593549276],[-73.31291092117512,44.50722420568073],[-73.30669613591664,44.50029929523267],[-73.30486825789944,44.49222023304328],[-73.30438082376152,44.48573922711112],[-73.30048135065815,44.47774894582491],[-73.29987205798575,44.476683574986744],[-73.29938462384783,44.47357624337543],[-73.29889718970992,44.47126793989275],[-73.29889718970992,44.47100159718321],[-73.29877533117543,44.46416546763834],[-73.29877533117543,44.46398790583198],[-73.3001157750547,44.454754691901236],[-73.29524143367551,44.445876601583215],[-73.29365727272727,44.44054974739241],[-73.29365727272727,44.44037218558604],[-73.29365727272727,44.439750719263785],[-73.29390098979623,44.43753119668428],[-73.29597258488239,44.42829798275354],[-73.31047375048553,44.402640301734465],[-73.31242348703721,44.39473880135143],[-73.31498251626128,44.388524138128815],[-73.31705411134745,44.38594949193659],[-73.3209535844508,44.38266459851893],[-73.33033669160578,44.37600603078041],[-73.33362687203675,44.37227723284684],[-73.33496731591602,44.36446451336699],[-73.33460174031258,44.356918136596676],[-73.32729022824378,44.34440002924827],[-73.32509677462313,44.338540489638376],[-73.32400004781282,44.33383510176982],[-73.32387818927833,44.325400915967705],[-73.32387818927833,44.32531213506453],[-73.32448748195074,44.319275033648275],[-73.32424376488177,44.31004181971753],[-73.32229402833009,44.30151885301224],[-73.31681039427849,44.28766903211613],[-73.31230162850272,44.28003387444263],[-73.31108304315792,44.27426311573592],[-73.31291092117512,44.2653850254179],[-73.31327649677857,44.26440843548292],[-73.31656667720952,44.25774986774441],[-73.31985685764049,44.24958202465183],[-73.32363447220938,44.243900046848296],[-73.3247311990197,44.24363370413876],[-73.32936182332993,44.24452151317056],[-73.33045855014026,44.24425517046102],[-73.33399244764018,44.24097027704335],[-73.33679519393323,44.23954978259247],[-73.34325369626067,44.23804050723841],[-73.34227882798483,44.2344892711112],[-73.34983405712259,44.23031656866173],[-73.35080892539844,44.2259663044059],[-73.3547083985018,44.22356922002004],[-73.35519583263972,44.2228589727946],[-73.35531769117419,44.219574079376926],[-73.35787672039828,44.21620040505608],[-73.36153247643269,44.21034086544619],[-73.36201991057061,44.20856524738259],[-73.37067186651869,44.204570106739475],[-73.37237788600142,44.20217302235361],[-73.37530249082893,44.19986471887093],[-73.37773966151853,44.19942081435502],[-73.3822484272943,44.19720129177552],[-73.38395444677703,44.19311737022923],[-73.3852948906563,44.19258468481015],[-73.38724462720799,44.19240712300379],[-73.38846321255278,44.19231834210061],[-73.38882878815623,44.19205199939107],[-73.39053480763894,44.19089784764973],[-73.39077852470791,44.18903344868294],[-73.39041294910447,44.186103678878],[-73.3896817978976,44.18157585281581],[-73.3896817978976,44.18122072920309],[-73.39041294910447,44.179445111139486],[-73.39589658315607,44.175805094109094],[-73.3968714514319,44.17385191423913],[-73.39735888556983,44.17163239165963],[-73.39662773436295,44.16879140275786],[-73.39540914901815,44.16692700379108],[-73.39553100755263,44.166127975662455],[-73.39869932944912,44.162221615922526],[-73.39967419772495,44.15529670547448],[-73.40235508548352,44.145885929737375],[-73.40320809522488,44.14428787348013],[-73.40808243660408,44.13940492380522],[-73.41173819263848,44.13780686754798],[-73.41575952427633,44.13283513696989],[-73.41575952427633,44.13150342342219],[-73.41380978772465,44.12608778832819],[-73.41173819263848,44.11756482162289],[-73.41137261703504,44.112681871947984],[-73.41173819263848,44.11143893930346],[-73.41198190970745,44.11090625388438],[-73.41636881694873,44.09945351737414],[-73.42051200712105,44.0928837305388],[-73.42928582160361,44.07938903325542],[-73.43026068987946,44.07175387558192],[-73.43196670936219,44.06340847068299],[-73.43769406048274,44.04503082372469],[-73.43684105074139,44.04254495843564],[-73.43074812401738,44.03872737959889],[-73.42794537772434,44.03775078966391],[-73.4275798021209,44.03730688514801],[-73.4275798021209,44.03721810424483],[-73.42307103634514,44.03277905908582],[-73.42014643151761,44.0319800309572],[-73.41441908039705,44.029494165668154],[-73.41076332436265,44.026919519475925],[-73.40771686100064,44.021326322575575],[-73.40601084151793,44.01626581109431],[-73.40601084151793,44.011471642322576],[-73.41125075850057,43.98616908491622],[-73.41259120237984,43.982706629692196],[-73.41259120237984,43.97995442169361],[-73.41125075850057,43.97560415743778],[-73.40686385125929,43.96734753344202],[-73.40552340738,43.94879232467736],[-73.408569870742,43.93290054300811],[-73.40771686100064,43.92988199229998],[-73.40454853910416,43.92375610998055],[-73.40089278306975,43.91700876133886],[-73.39723702703536,43.9056448057318],[-73.39589658315607,43.90307015953957],[-73.3834670126391,43.89090717580388],[-73.37627735910478,43.880253467422264],[-73.37420576401861,43.87590320316643],[-73.37408390548413,43.87554807955372],[-73.37420576401861,43.87412758510283],[-73.37932382246677,43.86462802846255],[-73.38151727608742,43.85921239336856],[-73.38200471022535,43.85548359543499],[-73.38200471022535,43.85503969091909],[-73.38188285169086,43.85477334820955],[-73.38188285169086,43.85450700550001],[-73.3810298419495,43.85264260653322],[-73.37371832988069,43.84767087595514],[-73.37249974453589,43.846250381504255],[-73.37225602746693,43.84536257247245],[-73.37371832988069,43.84261036447386],[-73.37664293470822,43.8393254710562],[-73.38188285169086,43.83728351028305],[-73.38834135401831,43.83240056060814],[-73.3901692320355,43.829382009900016],[-73.39272826125959,43.82219075674242],[-73.39248454419062,43.82077026229154],[-73.39029109056999,43.81739658797069],[-73.38322329557015,43.8133126664244],[-73.38078612488054,43.81091558203854],[-73.37932382246677,43.808429716749494],[-73.3901692320355,43.80754190771769],[-73.39211896858718,43.80736434591133],[-73.39577472462159,43.80700922229861],[-73.40296437815591,43.80656531778271],[-73.40381738789728,43.80647653687953],[-73.40454853910416,43.80638775597635],[-73.40576712444896,43.80629897507317],[-73.42160873393138,43.805056042428646],[-73.43818149462066,43.803724328880946],[-73.44768646031011,43.803014081655505],[-73.48655933280926,43.79999553094738],[-73.61390150134098,43.78721108088943],[-73.63815134970251,43.784813996503566],[-73.78511274228552,43.770697832897916],[-73.85310980452542,43.76430560786894],[-73.85347538012886,43.764216826965765],[-73.86870769693887,43.76279633251488],[-73.8709011505595,43.76261877070852],[-73.87894381383519,43.761642180773535],[-73.88394001374888,43.76119827625764],[-74.05697913271062,43.74450746645976],[-74.05807585952094,43.74539527549156],[-74.05856329365886,43.746815769942444],[-74.05746656684855,43.752142624133256],[-74.05563868883134,43.756048983873185],[-74.05515125469341,43.76093193354809],[-74.05539497176238,43.76545975961029],[-74.05478567908997,43.76821196760887],[-74.05356709374517,43.771230518317],[-74.04918018650389,43.77602468708873],[-74.04613372314189,43.78117397947318],[-74.04613372314189,43.78179544579544],[-74.04832717676254,43.78516912011629],[-74.04905832796942,43.790052069791194],[-74.04710859141774,43.794135991337484],[-74.04710859141774,43.79635551391699],[-74.05393266934863,43.79813113198059],[-74.06282834236566,43.799462845528296],[-74.06953056176206,43.8016823681078],[-74.07757322503775,43.804700918815925],[-74.08244756641696,43.80771946952405],[-74.08561588831344,43.80887362126539],[-74.08793120046857,43.80754190771769],[-74.08939350288233,43.804700918815925],[-74.09170881503745,43.804345795203204],[-74.09682687348561,43.80603263236363],[-74.1030416587441,43.80514482333183],[-74.10937830253707,43.80825215494313],[-74.11851769262307,43.809495087587656],[-74.12461061934708,43.813579009133946],[-74.1386243508123,43.81775171158341],[-74.13789319960541,43.82236831854878],[-74.13874620934676,43.82547565016009],[-74.13947736055366,43.82645224009507],[-74.14508285313974,43.82893810538412],[-74.14910418477757,43.829382009900016],[-74.15349109201887,43.829559571706376],[-74.1569031309843,43.82893810538412],[-74.16007145288079,43.827695172739595],[-74.16287419917383,43.82591955467599],[-74.16896712589784,43.82627467828871],[-74.1753037696908,43.823788812999666],[-74.18809891581121,43.8240551557092],[-74.20089406193162,43.82077026229154],[-74.20235636434538,43.81997123416292],[-74.21125203736243,43.81180339107034],[-74.21368920805203,43.810826801135356],[-74.28826663115386,43.880075905615904],[-74.33676632787693,43.92526538533462],[-74.25597411951662,43.96983339873107],[-74.26097031943031,43.99904231587735],[-74.28192998736088,44.12058337233102],[-74.22770293951724,44.12502241749003],[-74.09353669305466,44.13762930574162],[-74.11437450245074,44.25064739548999],[-74.12034557064027,44.29423881895146],[-74.12107672184716,44.29965445404545],[-74.12241716572643,44.30791107804121],[-74.12278274132987,44.30933157249209],[-74.12290459986436,44.31004181971753],[-74.12314831693331,44.3106632860398],[-74.12351389253675,44.31270524681294],[-74.12363575107123,44.31306037042566],[-74.12375760960572,44.31341549403838],[-74.12400132667467,44.31474720758609],[-74.12619478029532,44.32415798332318],[-74.12668221443325,44.32602238228997],[-74.12668221443325,44.32628872499951],[-74.12716964857115,44.32868580938538],[-74.12716964857115,44.32877459028855],[-74.12741336564012,44.32939605661082],[-74.12741336564012,44.329484837513995],[-74.12741336564012,44.32975118022354],[-74.1275352241746,44.3299287420299],[-74.1275352241746,44.33019508473944],[-74.12765708270908,44.33090533196488],[-74.128144516847,44.33285851183484],[-74.12838823391596,44.334101444479366],[-74.12887566805388,44.33685365247795],[-74.13094726314004,44.348040046278655],[-74.13106912167453,44.3487502935041],[-74.13155655581244,44.35159128240586],[-74.1360653215882,44.37502944084543],[-74.14142709710534,44.407256908699836],[-73.90965216452418,44.429718477204425],[-73.74818960633804,44.44276926997191],[-73.7221118799593,44.44427854532597],[-73.7012740705632,44.445521477970495],[-73.70066477789081,44.44561025887368],[-73.70029920228737,44.440460966489226],[-73.6988368998736,44.441437556424205],[-73.69554671944265,44.44241414635919],[-73.68945379271864,44.44099365190831],[-73.68604175375319,44.44054974739241],[-73.68128927090847,44.44188146094011],[-73.67580563685686,44.440904871005124],[-73.67263731496038,44.44099365190831],[-73.67044386133973,44.441259994617845],[-73.65837986642622,44.44392342171325],[-73.65423667625389,44.44854002867862],[-73.64997162754709,44.45004930403269],[-73.63900435944387,44.452535169321735],[-73.63461745220259,44.454577130094876],[-73.63010868642682,44.457950804415724],[-73.6290119596165,44.458305928028444],[-73.62547806211658,44.457595680803],[-73.61633867203058,44.45448834919169],[-73.61451079401337,44.454399568288515],[-73.61122061358242,44.45502103461077],[-73.60232494056537,44.458128366222084],[-73.59647573091031,44.46265619228427],[-73.59501342849656,44.46265619228427],[-73.59294183341039,44.46159082144611],[-73.59074837978976,44.46105813602703],[-73.58709262375535,44.46283375409063],[-73.58099969703134,44.46452059125106],[-73.57502862884182,44.464254248541515],[-73.57125101427293,44.46531961937968],[-73.56430507780757,44.46913719821642],[-73.56198976565246,44.47100159718321],[-73.56052746323869,44.47339868156907],[-73.55967445349732,44.47792650763127],[-73.55772471694564,44.48041237292031],[-73.55516568772157,44.48227677188709],[-73.53591203927371,44.48653825523974],[-73.52689450772218,44.4880475305938],[-73.52409176142913,44.48982314865741],[-73.5164146737569,44.4880475305938],[-73.50666599099848,44.487248502465185],[-73.4992326203952,44.48786996878744],[-73.49508943022288,44.489290463238326],[-73.49399270341256,44.490977300398754],[-73.49131181565399,44.49372950839734],[-73.49058066444711,44.49754708723408],[-73.48826535229199,44.49958904800723],[-73.48314729384383,44.50127588516765],[-73.48046640608526,44.50518224490758],[-73.47912596220598,44.50651395845529],[-73.4710832989303,44.5077568910998],[-73.47010843065445,44.508644700131605],[-73.47120515746478,44.5140603352256],[-73.46523408927526,44.51894328490051],[-73.45962859668917,44.52000865573867],[-73.45914116255125,44.52267208283408],[-73.46328435272356,44.52515794812312],[-73.46084718203397,44.529596993282134],[-73.46279691858565,44.53305944850616],[-73.46474665513733,44.53368091482842],[-73.46413736246492,44.535367751988844],[-73.46499037220629,44.536255561020646],[-73.46389364539597,44.53767605547153],[-73.40052720746631,44.542381443340076],[-73.33862307195042,44.54682048849909]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.86011986741268,44.40326176805673],[-75.83964763362002,44.39385099231963],[-75.82344044853417,44.386304615549314],[-75.7656795031906,44.35975912549844],[-75.75117833758748,44.35318933866311],[-75.7350930110361,44.346353209118234],[-75.70609067982983,44.33250338822212],[-75.70462837741607,44.33179314099668],[-75.67465117793397,44.31865356732601],[-75.67062984629612,44.31705551106877],[-75.64467397845186,44.30604667907443],[-75.62992909577977,44.299743234948636],[-75.59288410129781,44.2837626723762],[-75.58922834526342,44.282164616118955],[-75.5875223257807,44.28145436889351],[-75.54657785819538,44.26352062645112],[-75.54292210216097,44.26201135109706],[-75.53938820466105,44.260413294839815],[-75.53585430716113,44.25846011496985],[-75.53110182431641,44.256506935099885],[-75.51136074173063,44.247983968394585],[-75.50977658078239,44.24691859755642],[-75.50441480526527,44.24452151317056],[-75.49698143466198,44.24105905794653],[-75.49369125423101,44.237951726335226],[-75.48966992259317,44.23733026001297],[-75.48516115681741,44.2344892711112],[-75.47894637155892,44.23155950130625],[-75.4741938887142,44.23013900685537],[-75.47053813267979,44.22845216969495],[-75.47053813267979,44.22845216969495],[-75.46712609371436,44.22587752350272],[-75.46566379130059,44.22534483808364],[-75.46383591328339,44.225167276277276],[-75.45737741095594,44.221971163762795],[-75.44616642578377,44.21762089950696],[-75.53378271207497,44.117298478913355],[-75.5458467069885,44.103004753501345],[-75.50831427836863,44.08551491557485],[-75.50807056129966,44.08542613467167],[-75.484551864145,44.07415095996779],[-75.49856559561022,44.05648356023493],[-75.50270878578254,44.051245486947295],[-75.49332567862757,44.04680644178829],[-75.50197763457567,44.03624151430985],[-75.50197763457567,44.034465896246246],[-75.50185577604118,44.00951846245261],[-75.54998989716083,44.00818674890491],[-75.54925874595394,44.00392526555226],[-75.54743086793674,43.99593498426604],[-75.54377511190233,43.97276316853601],[-75.54292210216097,43.96779143795793],[-75.57716435034989,43.96530557266888],[-75.57850479422916,43.96761387615157],[-75.5800889551774,43.96832412337701],[-75.58240426733254,43.968412904280186],[-75.58325727707388,43.967880218861104],[-75.58861905259101,43.967081190732486],[-75.59251852569437,43.966370943507044],[-75.5966617158667,43.96663728621658],[-75.59885516948734,43.96725875253885],[-75.60372951086654,43.97134267408513],[-75.62103342276272,43.96095530841305],[-75.63126953965904,43.95482942609362],[-75.63187883233145,43.954119178868176],[-75.63236626646938,43.954119178868176],[-75.64199309069329,43.94843720106464],[-75.65198549052067,43.942044976035675],[-75.69146765569222,43.91807413217702],[-75.70462837741607,43.91008385089081],[-75.70535952862295,43.9096399463749],[-75.70609067982983,43.90928482276218],[-75.72631919655353,43.8975657435424],[-75.72729406482937,43.89738818173604],[-75.73411814276025,43.89321547928657],[-75.7393580597429,43.89001936677208],[-75.74703514741515,43.88575788341944],[-75.75532152775979,43.880608591034985],[-75.75544338629427,43.880431029228625],[-75.75812427405283,43.8787441920682],[-75.84050064336138,43.88398226535583],[-75.84147551163723,43.871908062523325],[-75.84744657982675,43.818639520615214],[-75.85049304318875,43.7918276878548],[-75.81954097543081,43.790407193403915],[-75.8189316827584,43.790407193403915],[-75.80065290258639,43.78934182256575],[-75.78676102965566,43.78827645172759],[-75.78005881025925,43.73793767962443],[-75.77457517620765,43.688841840165786],[-75.7877358979315,43.689818430100765],[-75.8189316827584,43.69212673358345],[-75.86621279413669,43.6955004079043],[-75.87462103301581,43.69558918880748],[-75.90423265689448,43.69825261590289],[-75.93676888560066,43.70011701486967],[-75.95236677801411,43.70127116661101],[-75.99964788939239,43.704644840931856],[-76.02511632309874,43.707041925317725],[-76.02194800120225,43.6681558897248],[-76.07629690758039,43.672151030367914],[-76.08580187326983,43.67295005849653],[-76.1018871998212,43.67428177204424],[-76.1221157165449,43.675879828301476],[-76.1575765500786,43.67783300817144],[-76.2004707542156,43.68023009255731],[-76.20546695412929,43.718761004537505],[-76.20607624680169,43.721690774342456],[-76.20656368093961,43.72391029692196],[-76.21326590033601,43.75347433768096],[-76.21570307102562,43.761287057160814],[-76.22289272455994,43.78401496837494],[-76.22715777326674,43.79742088475515],[-76.22910750981842,43.803724328880946],[-76.2292293683529,43.804168233396844],[-76.22996051955978,43.804878480622286],[-76.23142282197355,43.80629897507317],[-76.23617530481827,43.81135948655444],[-76.25018903628349,43.82574199286963],[-76.26700551404174,43.838082538411676],[-76.27785092361047,43.84118987002298],[-76.28333455766207,43.84394207802157],[-76.28443128447239,43.8509557693728],[-76.28272526498966,43.8585909270463],[-76.27626676266223,43.86329631491485],[-76.26919896766238,43.86862316910566],[-76.26164373852461,43.87323977607103],[-76.24982346068005,43.87563686045689],[-76.2433649583526,43.87794516393958],[-76.23459114387003,43.8774124785205],[-76.22752334887018,43.87510417503781],[-76.21935882706002,43.866847551042056],[-76.2029079249052,43.86498315207527],[-76.2022986322328,43.86489437117209],[-76.19279366654335,43.86915585452474],[-76.18060781309535,43.877501259423674],[-76.15830770128548,43.88753350148304],[-76.14551255516507,43.88868765322438],[-76.13332670171707,43.89294913657703],[-76.12723377499306,43.89792086715512],[-76.1263807652517,43.90369162586183],[-76.12504032137242,43.91274727798621],[-76.13028023835507,43.93245663849221],[-76.13040209688954,43.93307810481447],[-76.1336922773205,43.94035813887525],[-76.13430156999291,43.945596212162876],[-76.13430156999291,43.95474064519044],[-76.13503272119979,43.95589479693178],[-76.13515457973426,43.955983577834964],[-76.13905405283764,43.962109460154394],[-76.14612184783748,43.96468410634662],[-76.14697485757884,43.96459532544344],[-76.16976240352662,43.96219824105757],[-76.17451488637134,43.96495044905616],[-76.18487286180215,43.97116511227877],[-76.18548215447456,43.97125389318195],[-76.20814784188785,43.97737977550138],[-76.2280107830081,43.982706629692196],[-76.23690645602515,43.977912460920464],[-76.24446168516292,43.97578171924414],[-76.25226063136965,43.97578171924414],[-76.25835355809365,43.97613684285686],[-76.26432462628317,43.97800124182365],[-76.26871153352445,43.980842230725415],[-76.26871153352445,43.98723445575438],[-76.26676179697277,43.99557986065332],[-76.2696864018003,44.00117305755367],[-76.28187225524832,44.00916333883989],[-76.28784332343784,44.01138286141939],[-76.29673899645488,44.01333604128936],[-76.29893245007553,44.01768630554519],[-76.3002728939548,44.02274681702646],[-76.29954174274792,44.03091466011904],[-76.29710457205832,44.04476448101514],[-76.29698271352385,44.045474728240585],[-76.30051661102377,44.05719380746037],[-76.30417236705817,44.059413330039874],[-76.36034915145349,44.07086606655012],[-76.36083658559141,44.08764565725117],[-76.36692951231542,44.10043010730912],[-76.36388304895341,44.111705282013006],[-76.35815569783286,44.12333558032961],[-76.35571852714325,44.133279041485785],[-76.35571852714325,44.133279041485785],[-76.35242834671229,44.137185401225715],[-76.31270246447177,44.1990656907423],[-76.28650287955855,44.203771078610856],[-76.26529949455902,44.20403742132039],[-76.24970160214556,44.204214983126754],[-76.24543655343876,44.20368229770767],[-76.20680739800856,44.21451356789566],[-76.20181119809489,44.21673309047516],[-76.1913313641296,44.221260916537354],[-76.16427876947502,44.239638563495646],[-76.16184159878541,44.28074412166807],[-76.13088953102746,44.296635903337325],[-76.12772120913098,44.295126627983265],[-76.12662448232066,44.294593942564184],[-76.11809438490705,44.29486028527372],[-76.11187959964857,44.29805639778821],[-76.09737843404544,44.299565673142276],[-76.07105699059774,44.31581257842425],[-76.04522298128795,44.3317043600935],[-76.00842170387496,44.34386734382919],[-76.00098833327168,44.347507360859574],[-75.98331884577206,44.34741857995639],[-75.98234397749621,44.34741857995639],[-75.98051609947902,44.34715223724685],[-75.98051609947902,44.34715223724685],[-75.97832264585838,44.34688589453731],[-75.97478874835845,44.34617564731187],[-75.97308272887574,44.343601001119644],[-75.97015812404821,44.342801972991026],[-75.94956403172107,44.34910541711682],[-75.93969349042818,44.35540886124261],[-75.92945737353186,44.359581563692075],[-75.92226771999754,44.36570744601151],[-75.91300647137705,44.368104530397375],[-75.87145271111933,44.394827582254614],[-75.86011986741268,44.40326176805673]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.44616642578377,44.21762089950696],[-75.44604456724929,44.21762089950696],[-75.41338648000863,44.203415954998135],[-75.38852733897468,44.19249590390697],[-75.38803990483677,44.19231834210061],[-75.33320356432073,44.16763725101652],[-75.31967726699344,44.16106746418119],[-75.31589965242455,44.15929184611758],[-75.31200017932119,44.15760500895716],[-75.27958580914948,44.143843968964234],[-75.26118517044299,44.13612003038755],[-75.17015684518634,44.09696765208509],[-75.16406391846235,44.04902596436779],[-75.15650868932457,43.98723445575438],[-75.15602125518666,43.983061753304916],[-75.15602125518666,43.982706629692196],[-75.14810045044544,43.92020487385334],[-75.14152008958352,43.87510417503781],[-75.14200752372145,43.872263186136045],[-75.14054522130768,43.861875820463965],[-75.13018724587687,43.776291029798266],[-75.12458175329078,43.73349863446542],[-75.12458175329078,43.72932593201595],[-75.12311945087703,43.72053662260111],[-75.12299759234254,43.72000393718203],[-75.11532050467031,43.658034866762264],[-75.11020244622213,43.61524247142941],[-75.1293342361355,43.606453162014574],[-75.12945609466999,43.6063643811114],[-75.12969981173896,43.606275600208214],[-75.16162674777274,43.59144918937712],[-75.18258641570331,43.581772070930484],[-75.22523690277136,43.562240272230845],[-75.2476588731157,43.551675344752404],[-75.24960860966738,43.55087631662378],[-75.25350808277074,43.54918947946336],[-75.26216003871882,43.545371900626606],[-75.26264747285674,43.545016777013885],[-75.27105571173587,43.54119919817714],[-75.30615096966613,43.525484978314246],[-75.31005044276951,43.52353179844428],[-75.31151274518326,43.52282155121884],[-75.31175646225222,43.52273277031566],[-75.31577779389006,43.520868371348875],[-75.3161433694935,43.520690809542515],[-75.3260139107864,43.516251764383505],[-75.32759807173464,43.51554151715806],[-75.35184792009618,43.504532685163724],[-75.35976872483738,43.50089266813333],[-75.39242681207806,43.48571113368953],[-75.42435374811184,43.47079594195525],[-75.52513075612688,43.423564501463396],[-75.53353899500601,43.41974692262664],[-75.56241946767778,43.42596158584926],[-75.58910648672894,43.43262015358778],[-75.6076289839699,43.43679285603724],[-75.63200069086594,43.44247483384078],[-75.6321225494004,43.44247483384078],[-75.6395559200037,43.4441616710012],[-75.65381336853787,43.4472690026125],[-75.65929700258947,43.448511935257024],[-75.66234346595148,43.449222182482465],[-75.68878676793366,43.45517050299554],[-75.69963217750238,43.45747880647823],[-75.7025567823299,43.458100272800486],[-75.71267104069176,43.460497357186355],[-75.71949511862265,43.462006632540415],[-75.72778149896729,43.463871031507196],[-75.75617453750115,43.470352037439355],[-75.75629639603564,43.4719500936966],[-75.75727126431147,43.4925472632344],[-75.7583679911218,43.50817270219411],[-75.7583679911218,43.50826148309729],[-75.75861170819076,43.5131444327722],[-75.75861170819076,43.51349955638492],[-75.7589772837942,43.51749469702803],[-75.75970843500107,43.53143329882732],[-75.76117073741483,43.545727024239326],[-75.76299861543204,43.57591253132059],[-75.76543578612164,43.59357993105345],[-75.76519206905267,43.59855166163154],[-75.76677623000091,43.62509715168241],[-75.76872596655261,43.636905011805375],[-75.76945711775949,43.64454016947887],[-75.77067570310429,43.65625924869866],[-75.77457517620765,43.688841840165786],[-75.78005881025925,43.73793767962443],[-75.78676102965566,43.78827645172759],[-75.80065290258639,43.78934182256575],[-75.8189316827584,43.790407193403915],[-75.81954097543081,43.790407193403915],[-75.85049304318875,43.7918276878548],[-75.84744657982675,43.818639520615214],[-75.84147551163723,43.871908062523325],[-75.84050064336138,43.88398226535583],[-75.75812427405283,43.8787441920682],[-75.75544338629427,43.880431029228625],[-75.75532152775979,43.880608591034985],[-75.74703514741515,43.88575788341944],[-75.7393580597429,43.89001936677208],[-75.73411814276025,43.89321547928657],[-75.72729406482937,43.89738818173604],[-75.72631919655353,43.8975657435424],[-75.70609067982983,43.90928482276218],[-75.70535952862295,43.9096399463749],[-75.70462837741607,43.91008385089081],[-75.69146765569222,43.91807413217702],[-75.65198549052067,43.942044976035675],[-75.64199309069329,43.94843720106464],[-75.63236626646938,43.954119178868176],[-75.63187883233145,43.954119178868176],[-75.63126953965904,43.95482942609362],[-75.62103342276272,43.96095530841305],[-75.60372951086654,43.97134267408513],[-75.59885516948734,43.96725875253885],[-75.5966617158667,43.96663728621658],[-75.59251852569437,43.966370943507044],[-75.58861905259101,43.967081190732486],[-75.58325727707388,43.967880218861104],[-75.58240426733254,43.968412904280186],[-75.5800889551774,43.96832412337701],[-75.57850479422916,43.96761387615157],[-75.57716435034989,43.96530557266888],[-75.54292210216097,43.96779143795793],[-75.54377511190233,43.97276316853601],[-75.54743086793674,43.99593498426604],[-75.54925874595394,44.00392526555226],[-75.54998989716083,44.00818674890491],[-75.50185577604118,44.00951846245261],[-75.50197763457567,44.034465896246246],[-75.50197763457567,44.03624151430985],[-75.49332567862757,44.04680644178829],[-75.50270878578254,44.051245486947295],[-75.49856559561022,44.05648356023493],[-75.484551864145,44.07415095996779],[-75.50807056129966,44.08542613467167],[-75.50831427836863,44.08551491557485],[-75.5458467069885,44.103004753501345],[-75.53378271207497,44.117298478913355],[-75.44616642578377,44.21762089950696]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.28192998736088,44.12058337233102],[-74.26097031943031,43.99904231587735],[-74.25597411951662,43.96983339873107],[-74.33676632787693,43.92526538533462],[-74.28826663115386,43.880075905615904],[-74.21368920805203,43.810826801135356],[-74.21125203736243,43.81180339107034],[-74.20235636434538,43.81997123416292],[-74.20089406193162,43.82077026229154],[-74.18809891581121,43.8240551557092],[-74.1753037696908,43.823788812999666],[-74.16896712589784,43.82627467828871],[-74.16287419917383,43.82591955467599],[-74.16007145288079,43.827695172739595],[-74.1569031309843,43.82893810538412],[-74.15349109201887,43.829559571706376],[-74.14910418477757,43.829382009900016],[-74.14508285313974,43.82893810538412],[-74.13947736055366,43.82645224009507],[-74.13874620934676,43.82547565016009],[-74.13789319960541,43.82236831854878],[-74.1386243508123,43.81775171158341],[-74.12461061934708,43.813579009133946],[-74.11851769262307,43.809495087587656],[-74.10937830253707,43.80825215494313],[-74.1030416587441,43.80514482333183],[-74.09682687348561,43.80603263236363],[-74.09170881503745,43.804345795203204],[-74.08939350288233,43.804700918815925],[-74.08793120046857,43.80754190771769],[-74.08561588831344,43.80887362126539],[-74.08244756641696,43.80771946952405],[-74.07757322503775,43.804700918815925],[-74.06953056176206,43.8016823681078],[-74.06282834236566,43.799462845528296],[-74.05393266934863,43.79813113198059],[-74.04710859141774,43.79635551391699],[-74.04710859141774,43.794135991337484],[-74.04905832796942,43.790052069791194],[-74.04832717676254,43.78516912011629],[-74.04613372314189,43.78179544579544],[-74.04613372314189,43.78117397947318],[-74.04918018650389,43.77602468708873],[-74.05356709374517,43.771230518317],[-74.05478567908997,43.76821196760887],[-74.05539497176238,43.76545975961029],[-74.05515125469341,43.76093193354809],[-74.05563868883134,43.756048983873185],[-74.05746656684855,43.752142624133256],[-74.05856329365886,43.746815769942444],[-74.05807585952094,43.74539527549156],[-74.05697913271062,43.74450746645976],[-74.05856329365886,43.7443299046534],[-74.21466407632788,43.72870446569369],[-74.20357494969018,43.65714705773046],[-74.18261528175961,43.520868371348875],[-74.17932510132864,43.500093640004714],[-74.17250102339776,43.453838789447836],[-74.16007145288079,43.37153889219981],[-74.15885286753598,43.36408129633267],[-74.1581217163291,43.359553470270484],[-74.15007905305342,43.31205568706908],[-74.1434986921915,43.273968679604785],[-74.1415489556398,43.26233838128818],[-74.1410615215019,43.259497392386415],[-74.14008665322605,43.25399297638924],[-74.19382626693178,43.25035295935886],[-74.20065034486267,43.24990905484295],[-74.20978973494867,43.249287588520694],[-74.22416904201732,43.24813343677935],[-74.22087886158636,43.221410384922116],[-74.29265353839514,43.216616216150385],[-74.2959437188261,43.216438654344024],[-74.32238702080828,43.21466303628042],[-74.32640835244612,43.241652430847196],[-74.3345728742563,43.24156364994402],[-74.34627129356639,43.24067584091222],[-74.35699484460064,43.239610470074055],[-74.35736042020407,43.239610470074055],[-74.45777185261568,43.23286312143236],[-74.48433701313233,43.2313538460783],[-74.5133393443386,43.229755789821056],[-74.51748253451092,43.22948944711151],[-74.5329585683899,43.22869041898289],[-74.53466458787261,43.22815773356381],[-74.70538839467923,43.28639800605001],[-74.71306548235148,43.28897265224224],[-74.71257804821357,43.28613166334047],[-74.71416220916181,43.28675312966273],[-74.7215955797651,43.28923899495177],[-74.72232673097197,43.28950533766132],[-74.72305788217885,43.289771680370855],[-74.72902895036837,43.291813641144],[-74.74803888174728,43.298294647076155],[-74.79410140778076,43.314275209648585],[-74.81079602700453,43.3200459683553],[-74.85161863605536,43.33425091286413],[-74.85186235312432,43.33433969376731],[-74.86770396260674,43.339844109764485],[-74.85429952381392,43.36132908833409],[-74.83504587536606,43.39222484264079],[-74.77557891053978,43.486687723624506],[-74.7969041540738,43.64631578754248],[-74.7969041540738,43.64658213025202],[-74.79775716381516,43.65324069799053],[-74.80921186605629,43.73909183136577],[-74.81311133915965,43.76661391135163],[-74.82005727562502,43.81855073971204],[-74.83955464114183,43.96530557266888],[-74.85417766527945,44.0700670384215],[-74.7681455399365,44.07761341519181],[-74.73853391605783,44.079832937771315],[-74.64908975174943,44.088355904476614],[-74.53515202201054,44.09927595556778],[-74.49956932994235,44.10238328717909],[-74.47812222787385,44.10362621982361],[-74.38490044899658,44.111527720206645],[-74.28192998736088,44.12058337233102]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.17015684518634,44.09696765208509],[-75.06279947630938,44.0503576779155],[-74.88927292320972,44.06687092590701],[-74.85417766527945,44.0700670384215],[-74.83955464114183,43.96530557266888],[-74.82005727562502,43.81855073971204],[-74.81311133915965,43.76661391135163],[-74.80921186605629,43.73909183136577],[-74.79775716381516,43.65324069799053],[-74.7969041540738,43.64658213025202],[-74.7969041540738,43.64631578754248],[-74.77557891053978,43.486687723624506],[-74.83504587536606,43.39222484264079],[-74.85429952381392,43.36132908833409],[-74.86770396260674,43.339844109764485],[-74.85186235312432,43.33433969376731],[-74.85161863605536,43.33425091286413],[-74.81079602700453,43.3200459683553],[-74.79410140778076,43.314275209648585],[-74.74803888174728,43.298294647076155],[-74.72902895036837,43.291813641144],[-74.72305788217885,43.289771680370855],[-74.72232673097197,43.28950533766132],[-74.7215955797651,43.28923899495177],[-74.71416220916181,43.28675312966273],[-74.71257804821357,43.28613166334047],[-74.70770370683437,43.247423189553906],[-74.69612714605876,43.17968336042743],[-74.69515227778291,43.17639846700976],[-74.69551785338635,43.174090163527076],[-74.69600528752427,43.17364625901118],[-74.70039219476556,43.172403326366656],[-74.7025856483862,43.17213698365711],[-74.70295122398964,43.17293601178574],[-74.70648512148956,43.17302479268891],[-74.7092878677826,43.172225764560295],[-74.71294362381701,43.17009502288397],[-74.7178179651962,43.165389635015416],[-74.71842725786861,43.162548646113656],[-74.71818354079966,43.15997399992143],[-74.71379663355836,43.157221791922844],[-74.70843485804124,43.15118469050659],[-74.7080692824378,43.15003053876525],[-74.70953158485156,43.149409072442985],[-74.71988956028237,43.14834370160482],[-74.72378903338574,43.14541393179988],[-74.7270792138167,43.14568027450942],[-74.73536559416135,43.14408221825217],[-74.73573116976479,43.143638313736275],[-74.73305028200622,43.133250948064195],[-74.73024753571318,43.12845677929246],[-74.7282977991615,43.126237256712955],[-74.72841965769598,43.12463920045572],[-74.7295163845063,43.123396267811195],[-74.73110054545454,43.12348504871437],[-74.73256284786831,43.124550419552534],[-74.73853391605783,43.124550419552534],[-74.73975250140263,43.123573829617555],[-74.73950878433367,43.123041144198474],[-74.74389569157495,43.120288936199884],[-74.75084162804032,43.12055527890943],[-74.75851871571257,43.119667469877626],[-74.75900614985048,43.11940112716808],[-74.75876243278152,43.1179806327172],[-74.75717827183328,43.11682648097586],[-74.75742198890224,43.11513964381543],[-74.75851871571257,43.11407427297727],[-74.76034659372976,43.11389671117091],[-74.76522093510897,43.11460695839635],[-74.76924226674682,43.11407427297727],[-74.77009527648818,43.11327524484865],[-74.77021713502265,43.11220987401049],[-74.76777996433304,43.110434255946885],[-74.76765810579857,43.109457666011906],[-74.76948598381577,43.10564008717515],[-74.76972970088474,43.10457471633699],[-74.76863297407441,43.102621536467026],[-74.76972970088474,43.101733727435224],[-74.76851111553994,43.09907030033982],[-74.76607394485033,43.09161270447269],[-74.76583022778136,43.09010342911862],[-74.76619580338482,43.08948196279636],[-74.77021713502265,43.087262440216854],[-74.77375103252258,43.08335608047693],[-74.77423846666049,43.08229070963877],[-74.77423846666049,43.080159967962445],[-74.77423846666049,43.07847313080202],[-74.77021713502265,43.07492189467481],[-74.7693641252813,43.0722584675794],[-74.77009527648818,43.0691511359681],[-74.76985155941921,43.065688680744074],[-74.76680509605721,43.063824281777286],[-74.76558651071241,43.062315006423226],[-74.76339305709178,43.06089451197234],[-74.76241818881593,43.05965157932782],[-74.76254004735041,43.05867498939284],[-74.76375863269521,43.057875961264216],[-74.76388049122968,43.05494619145927],[-74.75998101812633,43.04739981468895],[-74.75924986691945,43.042250522304506],[-74.75656897916089,43.04100758965998],[-74.75315694019544,43.04020856153136],[-74.74803888174728,43.03612463998507],[-74.74511427691975,43.03310608927694],[-74.74353011597151,43.02946607224656],[-74.74084922821295,43.01898992567129],[-74.7410929452819,43.00664938012925],[-74.74145852088535,43.005939132903805],[-74.74377383304048,42.99928056516529],[-74.74011807700607,42.998303975230314],[-74.74158037941983,42.989159542202756],[-74.74791702321279,42.94903057396531],[-74.75059791097135,42.93597978119782],[-74.75120720364376,42.92923243255613],[-74.75145092071271,42.926213881848],[-74.7607121693332,42.8764965760671],[-74.76327119855729,42.86326822149325],[-74.83285242174543,42.88457563825649],[-74.87879308924443,42.898247897346245],[-74.87964609898579,42.89425275670314],[-74.8819614111409,42.88235611567699],[-74.8857390257098,42.86468871594413],[-74.88598274277875,42.86344578329961],[-74.89231938657171,42.83308271441199],[-74.90669869364037,42.824914871319415],[-74.91315719596781,42.82784464112436],[-74.91888454708838,42.83041928731659],[-74.95483281476001,42.84639984988902],[-74.96129131708746,42.8491520578876],[-74.97091814131139,42.853324760337074],[-74.97762036070779,42.85616574923884],[-74.97920452165603,42.857053558270636],[-74.97932638019051,42.85714233917382],[-74.98066682406979,42.85785258639926],[-74.98151983381115,42.85820771001198],[-74.99297453605227,42.863357002396434],[-74.99516798967292,42.864244811428236],[-74.9995548969142,42.865931648588656],[-74.9995548969142,42.865931648588656],[-75.00272321881069,42.86726336213636],[-75.02380474527574,42.87614145245438],[-75.06487107139554,42.89327616676815],[-75.07376674441258,42.89700496470172],[-75.08400286130892,42.90126644805437],[-75.09765101717069,42.906948425857905],[-75.10094119760164,42.90836892030879],[-75.1147112119979,42.89132298689819],[-75.11982927044606,42.8850195427724],[-75.12238829967015,42.88137952574201],[-75.1281156507907,42.875076081616214],[-75.13822990915256,42.86158138433283],[-75.13969221156633,42.859805766269226],[-75.21061387863374,42.85652087285156],[-75.21219803958198,42.87995903129113],[-75.20159634708222,42.88066927851657],[-75.20196192268565,42.883954171934235],[-75.20647068846142,42.931274393329275],[-75.20732369820277,42.94059638816319],[-75.21353848346126,43.00007959329392],[-75.2139040590647,43.002565458582964],[-75.21475706880607,43.01108842528826],[-75.21585379561638,43.02174213366988],[-75.21597565415087,43.022807504508044],[-75.21658494682326,43.029110948633836],[-75.21719423949567,43.03541439275963],[-75.21804724923703,43.043759797658566],[-75.21914397604735,43.05246032617023],[-75.2157319370819,43.056189124103796],[-75.21256361518542,43.05965157932782],[-75.20939529328894,43.062758910939124],[-75.2078111323407,43.06444574809955],[-75.19574713742716,43.077585321770215],[-75.18953235216868,43.084066327702374],[-75.18563287906532,43.08832781105502],[-75.18538916199635,43.08859415376456],[-75.18319570837572,43.090902457247246],[-75.18075853768612,43.09365466524583],[-75.1796618108758,43.094631255180815],[-75.1734470256173,43.10164494653205],[-75.16784153303122,43.10759326704512],[-75.16686666475539,43.108569856980104],[-75.16662294768642,43.10883619968964],[-75.16211418191065,43.11380793026773],[-75.16089559656587,43.11478452020271],[-75.1600425868245,43.11593867194406],[-75.15870214294522,43.11744794729812],[-75.15065947966953,43.12703628484158],[-75.13944849449736,43.140353420318604],[-75.1367676067388,43.14354953283309],[-75.13518344579056,43.14568027450942],[-75.13067468001479,43.151273471409766],[-75.12616591423902,43.15686666831012],[-75.11580793880822,43.16991746107761],[-75.10033190492925,43.18900535526135],[-75.10021004639476,43.18909413616453],[-75.06913612010234,43.227358705435186],[-75.07279187613675,43.22789139085427],[-75.07376674441258,43.22948944711151],[-75.07352302734363,43.231087503368755],[-75.0705984225161,43.2322416551101],[-75.0699891298437,43.23295190233554],[-75.07145143225746,43.2344611776896],[-75.07449789561947,43.23463873949596],[-75.07949409553315,43.232064093303734],[-75.08388100277443,43.230554817949674],[-75.09314225139492,43.23082116065922],[-75.09996632932581,43.23304068323872],[-75.10544996337741,43.23614801485002],[-75.11373634372205,43.239077784654974],[-75.1177576753599,43.239255346461334],[-75.1226320167391,43.24103096452494],[-75.12336316794598,43.24174121175038],[-75.12397246061839,43.246535380522104],[-75.12458175329078,43.24715684684437],[-75.13628017260088,43.24884368400479],[-75.13725504087672,43.249465150327055],[-75.13749875794568,43.24973149303659],[-75.14286053346281,43.25470322361468],[-75.14456655294552,43.254880785421044],[-75.1452977041524,43.252394920132],[-75.14858788458336,43.25053052116522],[-75.14822230897992,43.24919880761751],[-75.14785673337649,43.24848856039207],[-75.14822230897992,43.24733440865073],[-75.14931903579026,43.24671294232847],[-75.15102505527297,43.246890504134825],[-75.15163434794538,43.247423189553906],[-75.15297479182465,43.25496956632423],[-75.15248735768674,43.257810555225994],[-75.15346222596257,43.258698364257796],[-75.15419337716945,43.25860958335461],[-75.1551682454453,43.25692274619419],[-75.15906771854866,43.25567981354967],[-75.16040816242794,43.255768594452846],[-75.16235789897962,43.25843202154825],[-75.1624797575141,43.26127301045002],[-75.16077373803138,43.26287106670726],[-75.1594332941521,43.26384765664224],[-75.15870214294522,43.26420278025496],[-75.15809285027282,43.26677742644719],[-75.15918957708314,43.269174510833054],[-75.15845842587626,43.27325843237934],[-75.15699612346249,43.27459014592704],[-75.15650868932457,43.27467892683023],[-75.15480266984186,43.27778625844153],[-75.15431523570393,43.27885162927969],[-75.15370594303153,43.27911797198924],[-75.15321850889362,43.28053846644012],[-75.15260921622121,43.285687758824565],[-75.15212178208328,43.28675312966273],[-75.14944089432473,43.28852874772633],[-75.14858788458336,43.288795090435876],[-75.14822230897992,43.28968289946768],[-75.14749115777305,43.29545365817439],[-75.14566327975585,43.29873855159206],[-75.14688186510065,43.30335515855742],[-75.14810045044544,43.30450931029877],[-75.14797859191097,43.30513077662103],[-75.1410326554456,43.30468687210513],[-75.13335556777335,43.306817613781455],[-75.1300653873424,43.30726151829735],[-75.12799379225623,43.30690639468463],[-75.12458175329078,43.30708395649099],[-75.12372874354942,43.306462490168734],[-75.12251015820462,43.30450931029877],[-75.12031670458398,43.30415418668605],[-75.11909811923918,43.30743908010371],[-75.11970741191158,43.308149327329154],[-75.11982927044606,43.30983616448958],[-75.11787953389438,43.31099031623092],[-75.11398006079102,43.31099031623092],[-75.11190846570486,43.31081275442456],[-75.10752155846357,43.311611782553186],[-75.10654669018773,43.31356496242314],[-75.09984447079133,43.32386354719205],[-75.09594499768797,43.32386354719205],[-75.09253295872251,43.32661575519063],[-75.092654817257,43.32750356422243],[-75.09180180751564,43.328568935060595],[-75.08814605148123,43.32954552499558],[-75.07656949070562,43.33069967673692],[-75.08680560760196,43.41655081011216],[-75.08680560760196,43.41672837191852],[-75.08912091975708,43.43404064803866],[-75.089608353895,43.44114312029307],[-75.0902176465674,43.44407289009802],[-75.0975291586362,43.49716387019977],[-75.09874774398101,43.50790635948457],[-75.10045376346373,43.53027914708598],[-75.10289093415334,43.552030468365125],[-75.10313465122229,43.55416121004144],[-75.10350022682573,43.55753488436229],[-75.10423137803261,43.564104671197626],[-75.11020244622213,43.61524247142941],[-75.11532050467031,43.658034866762264],[-75.12299759234254,43.72000393718203],[-75.12311945087703,43.72053662260111],[-75.12458175329078,43.72932593201595],[-75.12458175329078,43.73349863446542],[-75.13018724587687,43.776291029798266],[-75.14054522130768,43.861875820463965],[-75.14200752372145,43.872263186136045],[-75.14152008958352,43.87510417503781],[-75.14810045044544,43.92020487385334],[-75.15602125518666,43.982706629692196],[-75.15602125518666,43.983061753304916],[-75.15650868932457,43.98723445575438],[-75.16406391846235,44.04902596436779],[-75.17015684518634,44.09696765208509]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.37932382246677,43.808429716749494],[-73.37822709565646,43.80603263236363],[-73.37725222738062,43.80052821636646],[-73.37639921763926,43.798752598302855],[-73.36823469582909,43.793336963208866],[-73.36250734470852,43.790229631597555],[-73.35751114479484,43.785968148244905],[-73.35556140824316,43.778510552377774],[-73.3547083985018,43.77673493431417],[-73.35056520832947,43.77194076554244],[-73.35056520832947,43.771674422832895],[-73.35068706686396,43.77105295651064],[-73.35068706686396,43.77043149018837],[-73.35458653996731,43.76412804606258],[-73.36433522272573,43.751432376907815],[-73.36872212996701,43.74557283729792],[-73.36969699824284,43.74424112375022],[-73.36981885677733,43.74406356194386],[-73.36994071531181,43.743619657427956],[-73.37030629091525,43.74228794388026],[-73.37067186651869,43.73554059523856],[-73.36994071531181,43.728793246596865],[-73.36994071531181,43.72870446569369],[-73.37067186651869,43.72533079137284],[-73.37773966151853,43.71769563369934],[-73.38297957850118,43.71405561666896],[-73.3859041833287,43.711303408670375],[-73.39175339298374,43.70349068919052],[-73.39358127100095,43.69958432945059],[-73.39370312953542,43.69922920583787],[-73.39553100755263,43.696832121452005],[-73.39601844169056,43.696476997839284],[-73.39833375384568,43.694612598872496],[-73.40211136841455,43.693103323518436],[-73.40479225617312,43.690173553713485],[-73.40527969031103,43.68839793564989],[-73.40345181229384,43.68466913771632],[-73.40418296350072,43.68129546339547],[-73.40771686100064,43.672506153980635],[-73.40808243660408,43.669398822369324],[-73.41454093893152,43.658212428568625],[-73.41551580720737,43.65244166986191],[-73.41880598763834,43.64791384379972],[-73.42355847048306,43.64569432122022],[-73.42526448996577,43.644273826769336],[-73.42648307531057,43.64258698960891],[-73.42855467039674,43.636549888192654],[-73.42794537772434,43.634419146516336],[-73.41831855350041,43.62332153361881],[-73.417709260828,43.62172347736157],[-73.41783111936249,43.620569325620224],[-73.42368032901753,43.61231270162447],[-73.42380218755201,43.61098098807676],[-73.42209616806929,43.60654194291776],[-73.42160873393138,43.60299070679055],[-73.42502077289681,43.59881800434108],[-73.43038254841395,43.59056138034532],[-73.43123555815531,43.588253076862635],[-73.43099184108634,43.58701014421811],[-73.4300169728105,43.58585599247677],[-73.42867652893122,43.583991593509985],[-73.42672679237954,43.58301500357501],[-73.42672679237954,43.58301500357501],[-73.42660493384506,43.58301500357501],[-73.42039014858658,43.58150572822095],[-73.41697810962113,43.577688149384194],[-73.40564526591449,43.57120714345204],[-73.40028349039736,43.56889883996936],[-73.39809003677671,43.56809981184074],[-73.39589658315607,43.56809981184074],[-73.39577472462159,43.56809981184074],[-73.39199711005271,43.569875429904336],[-73.38419816384598,43.57546862680469],[-73.38334515410462,43.57680034035239],[-73.38310143703566,43.577510587577834],[-73.38249214436325,43.57919742473826],[-73.3834670126391,43.58470184073543],[-73.3834670126391,43.596776043567935],[-73.37773966151853,43.5996170324697],[-73.37347461281173,43.60325704950009],[-73.37249974453589,43.60485510575733],[-73.37237788600142,43.60600925749868],[-73.37603364203582,43.612579044334005],[-73.37457133962205,43.61470978601033],[-73.36994071531181,43.619060050266164],[-73.36981885677733,43.61968151658842],[-73.37249974453589,43.622788848199725],[-73.37201231039798,43.62429812355379],[-73.3718904518635,43.62447568536015],[-73.37152487626005,43.62447568536015],[-73.36957513970837,43.62465324716651],[-73.3688439885015,43.62474202806969],[-73.36872212996701,43.62465324716651],[-73.36713796901877,43.62358787632835],[-73.36555380807053,43.62341031452199],[-73.35909530574308,43.62456446626333],[-73.35860787160516,43.62509715168241],[-73.34764060350196,43.62252250549019],[-73.34215696945034,43.6260737416174],[-73.32802137945066,43.625896179811036],[-73.32802137945066,43.625896179811036],[-73.32765580384722,43.625896179811036],[-73.32387818927833,43.62767179787464],[-73.31754154548537,43.62731667426192],[-73.31278906264065,43.62456446626333],[-73.31059560902,43.62412056174743],[-73.30767100419249,43.62749423606828],[-73.30620870177871,43.62802692148736],[-73.30413710669255,43.627050331552375],[-73.30255294574431,43.625718618004676],[-73.3020655116064,43.62438690445697],[-73.30023763358919,43.6108034262704],[-73.29804417996856,43.61000439814178],[-73.29377913126174,43.60521022937005],[-73.2921949703135,43.602546802274645],[-73.2921949703135,43.59819653801882],[-73.29280426298591,43.59384627376299],[-73.29329169712383,43.592514560215285],[-73.29694745315823,43.58736526783083],[-73.29231682884799,43.58514574525133],[-73.29207311177903,43.58452427892907],[-73.29438842393415,43.582482318155925],[-73.2946321410031,43.58203841364002],[-73.29536329220998,43.580262795576424],[-73.2946321410031,43.57893108202872],[-73.29353541419279,43.57848717751282],[-73.29353541419279,43.57848717751282],[-73.2848834582447,43.57928620564144],[-73.28134956074477,43.57759936848102],[-73.28098398514133,43.57537984590151],[-73.27976539979653,43.57422569416017],[-73.26940742436572,43.57200617158066],[-73.26404564884861,43.56889883996936],[-73.26087732695213,43.56659053648667],[-73.25868387333148,43.56499248022943],[-73.25259094660747,43.55682463713685],[-73.24869147350411,43.553894867331906],[-73.24844775643516,43.55282949649374],[-73.24844775643516,43.552563153784206],[-73.25039749298683,43.55043241210788],[-73.25015377591787,43.54341872075664],[-73.24783846376275,43.54279725443438],[-73.24661987841795,43.5418206644994],[-73.24418270772834,43.53818064746901],[-73.24198925410771,43.53489575405135],[-73.24162367850427,43.534984534954525],[-73.2413799614353,43.53232110785912],[-73.24186739557322,43.529391338054175],[-73.24332969798698,43.52770450089375],[-73.24686359548691,43.52575132102379],[-73.24771660522826,43.52317667483156],[-73.24759474669379,43.51927031509163],[-73.24674173695243,43.51891519147891],[-73.24710731255587,43.514920050835805],[-73.24771660522826,43.49183701600896],[-73.24844775643516,43.47044081834253],[-73.2493007661765,43.44860071616021],[-73.24978820031443,43.43821335048813],[-73.2505193515213,43.41956936082029],[-73.25112864419371,43.40616344444008],[-73.25112864419371,43.40456538818284],[-73.25149421979715,43.39790682044432],[-73.25259094660747,43.37100620678073],[-73.25271280514195,43.370295959555285],[-73.25283466367644,43.36345983001041],[-73.2530783807454,43.35467052059557],[-73.25320023927988,43.35298368343515],[-73.25320023927988,43.35280612162879],[-73.25649041971084,43.25923104967687],[-73.25868387333148,43.230554817949674],[-73.25868387333148,43.229933351627416],[-73.25880573186596,43.22806895266063],[-73.26075546841764,43.18927169797089],[-73.26502051712444,43.10643911530378],[-73.26514237565893,43.10421959272427],[-73.26562980979685,43.09622931143806],[-73.26623910246924,43.08717365931368],[-73.26977299996916,43.03594707817871],[-73.27428176574493,42.94361493887132],[-73.33313943789882,42.94388128158086],[-73.35580512531212,42.94397006248404],[-73.3681128372946,42.94405884338722],[-73.37956753953574,42.94379250067768],[-73.37908010539782,42.94441396699994],[-73.38285771996671,42.94752129861125],[-73.38931622229414,42.94974082119075],[-73.39358127100095,42.9531144955116],[-73.39809003677671,42.9531144955116],[-73.40138021720767,42.9522266864798],[-73.40357367082832,42.95382474273704],[-73.40454853910416,42.95551157989746],[-73.40820429513856,42.956932074348344],[-73.41210376824192,42.95737597886425],[-73.41636881694873,42.95666573163881],[-73.42063386565553,42.9548901135752],[-73.42489891436233,42.955955484413366],[-73.42684865091402,42.95853013060559],[-73.43318529470699,42.95826378789605],[-73.44061866531027,42.95364718093068],[-73.44927062125836,42.95125009654481],[-73.4496361968618,42.94991838299711],[-73.4490269041894,42.94601202325718],[-73.44927062125836,42.94530177603174],[-73.45061106513764,42.9445915288063],[-73.46230948444773,42.94476909061266],[-73.46450293806836,42.94423640519358],[-73.49959819599864,42.9437037197745],[-73.50374138617096,42.94361493887132],[-73.51373378599833,42.94343737706496],[-73.51726768349825,42.943348596161776],[-73.52750380039458,42.943171034355416],[-73.5365213319461,42.942993472549055],[-73.57722208246247,42.94219444442044],[-73.58502102866919,42.94210566351725],[-73.58733634082431,42.94210566351725],[-73.59574457970344,42.94192810171089],[-73.63547046194395,42.941306635388635],[-73.6332770083233,42.943171034355416],[-73.63120541323715,42.94627836596673],[-73.62937753521994,42.951516439254355],[-73.62889010108202,42.955422798994285],[-73.62876824254755,42.95915159692785],[-73.63144913030611,42.969716524406294],[-73.63108355470267,42.9706043334381],[-73.62876824254755,42.97246873240488],[-73.61048946237553,42.981258041819714],[-73.60866158435833,42.98321122168968],[-73.60756485754801,42.994752739103106],[-73.60671184780665,42.99928056516529],[-73.60403096004808,43.00247667767978],[-73.59708502358272,43.00762597006423],[-73.59367298461727,43.01437331870593],[-73.59087023832423,43.02325140902394],[-73.59160138953112,43.0319519375356],[-73.59074837978976,43.03585829727553],[-73.58697076522087,43.042694426820404],[-73.58636147254848,43.04837640462394],[-73.58587403841055,43.04970811817164],[-73.58087783849686,43.0525491070734],[-73.5781969507383,43.05574521958789],[-73.57783137513486,43.05867498939284],[-73.58087783849686,43.06515599532499],[-73.58173084823822,43.07021650680626],[-73.58112155556583,43.072968714804844],[-73.57807509220382,43.077407759963855],[-73.57673464832455,43.07936093983382],[-73.57551606297974,43.08397754679919],[-73.57746579953142,43.086640973894596],[-73.57831880927279,43.08850537286138],[-73.5781969507383,43.0906361145377],[-73.5763690727211,43.094631255180815],[-73.57381004349702,43.09818249130802],[-73.5733226093591,43.100579575693885],[-73.57563792151421,43.10759326704512],[-73.57588163858318,43.108569856980104],[-73.57551606297974,43.114873301105895],[-73.57588163858318,43.116915261879036],[-73.57722208246247,43.118957222652185],[-73.57904996047967,43.12020015529671],[-73.58258385797959,43.12144308794123],[-73.5856303213416,43.12366261052073],[-73.58977351151391,43.13147533000059],[-73.59099209685871,43.135115347030975],[-73.59074837978976,43.13946561128681],[-73.5848991701347,43.147899797088925],[-73.5806341214279,43.152161280441575],[-73.58014668728998,43.15375933669881],[-73.58026854582447,43.155534954762416],[-73.58039040435895,43.15642276379422],[-73.58136527263478,43.158731067276904],[-73.58392430185887,43.162371084307296],[-73.58307129211751,43.164679387789974],[-73.58331500918646,43.16556719682178],[-73.58465545306575,43.16645500585358],[-73.58770191642775,43.1668101294663],[-73.58952979444496,43.16885209023945],[-73.5898953700484,43.17045014649669],[-73.58928607737599,43.17195942185075],[-73.58636147254848,43.17497797255888],[-73.58380244332439,43.176842371525666],[-73.58099969703134,43.18252434932919],[-73.58087783849686,43.183767281973715],[-73.58221828237615,43.18900535526135],[-73.58550846280711,43.191136096937676],[-73.58575217987607,43.1923790295822],[-73.583193150652,43.2022337098352],[-73.57929367754862,43.20889227757371],[-73.5794155360831,43.210667895637314],[-73.58099969703134,43.21359766544226],[-73.58136527263478,43.21581718802177],[-73.58148713116927,43.21892451963307],[-73.58599589694504,43.22744748633837],[-73.58928607737599,43.23082116065922],[-73.59306369194488,43.23215287420692],[-73.5941604187552,43.23339580685144],[-73.59745059918616,43.240942183621755],[-73.59769431625512,43.24316170620126],[-73.59708502358272,43.244404638845786],[-73.59306369194488,43.24839977948889],[-73.59087023832423,43.25008661664931],[-73.59038280418632,43.25008661664931],[-73.59026094565183,43.250619302068394],[-73.58782377496223,43.25346029097016],[-73.58697076522087,43.25585737535603],[-73.58721448228984,43.259674954192775],[-73.58904236030703,43.26367009483588],[-73.59026094565183,43.26455790386768],[-73.592332540738,43.26713255005991],[-73.5947697114276,43.268730606317156],[-73.5959882967724,43.26908572992988],[-73.60061892108264,43.26846426360761],[-73.60074077961713,43.2694408535426],[-73.60049706254816,43.27201549973482],[-73.59988776987576,43.278762848376516],[-73.5996440528068,43.27982821921468],[-73.59708502358272,43.28408970256733],[-73.59501342849656,43.2913697366281],[-73.59306369194488,43.29447706823941],[-73.59062652125527,43.29625268630301],[-73.58928607737599,43.29740683804435],[-73.58855492616911,43.299448798817494],[-73.58879864323808,43.300514169655656],[-73.59501342849656,43.30610736655601],[-73.59611015530687,43.3128547151977],[-73.59635387237584,43.31383130513269],[-73.5965975894448,43.31507423777721],[-73.59696316504824,43.31711619855035],[-73.59745059918616,43.31933572112986],[-73.59769431625512,43.32066743467756],[-73.601471930824,43.3393114243454],[-73.60415281858256,43.353072464338325],[-73.60683370634112,43.3684315605885],[-73.60732114047904,43.370651083168006],[-73.6081741502204,43.37509012832702],[-73.60853972582385,43.37757599361606],[-73.60878344289281,43.37908526897012],[-73.60975831116865,43.38370187593549],[-73.61048946237553,43.388140921094504],[-73.61146433065137,43.39337899438213],[-73.6124391989272,43.39826194405704],[-73.6124391989272,43.398528286766584],[-73.61706982323746,43.423386939657036],[-73.6174353988409,43.425251338623816],[-73.61767911590985,43.42649427126834],[-73.61804469151329,43.42853623204149],[-73.61816655004777,43.42889135565421],[-73.61853212565121,43.43093331642735],[-73.62401575970281,43.46111882350861],[-73.62425947677178,43.462184194346776],[-73.62718408159931,43.47843109962875],[-73.62730594013378,43.47869744233829],[-73.62767151573722,43.480561841305075],[-73.62767151573722,43.480916964917796],[-73.62767151573722,43.481094526724156],[-73.62828080840963,43.48375795381956],[-73.62876824254755,43.48642138091497],[-73.63656718875427,43.49751899381249],[-73.63632347168532,43.49787411742521],[-73.63181470590955,43.49707508929659],[-73.63230214004747,43.49778533652203],[-73.63559232047844,43.50089266813333],[-73.63266771565091,43.50089266813333],[-73.63315514978883,43.50186925806832],[-73.6327895741854,43.502490724390576],[-73.63303329125435,43.50515415148598],[-73.63132727177162,43.50444390426054],[-73.63291143271987,43.50843904490365],[-73.63230214004747,43.51207906193404],[-73.62913381815099,43.51838250605983],[-73.62645293039242,43.52157861857432],[-73.6241376182373,43.521223494961596],[-73.61950699392706,43.52024690502662],[-73.61901955978914,43.52060202863934],[-73.61877584272018,43.52894743353827],[-73.61767911590985,43.53454063043863],[-73.61670424763402,43.53711527663085],[-73.61219548185825,43.54244213082166],[-73.61134247211689,43.54430652978844],[-73.61146433065137,43.54617092875523],[-73.61122061358242,43.54528311972343],[-73.61000202823762,43.54625970965841],[-73.60732114047904,43.55132022113968],[-73.60756485754801,43.55265193468738],[-73.60914901849625,43.553717305525545],[-73.6124391989272,43.55504901907325],[-73.61377964280649,43.55611438991141],[-73.61402335987546,43.55700219894321],[-73.6124391989272,43.56330564306901],[-73.60561512099633,43.56756712642165],[-73.60293423323776,43.56809981184074],[-73.60159378935849,43.56792225003437],[-73.60135007228952,43.5673895646153],[-73.59757245772064,43.56756712642165],[-73.58879864323808,43.569342744485255],[-73.58453359453127,43.571917390677484],[-73.58392430185887,43.57289398061246],[-73.58209642384166,43.57404813235381],[-73.58087783849686,43.573604227837905],[-73.58026854582447,43.57449203686971],[-73.57990297022103,43.576711559449215],[-73.57783137513486,43.57715546396511],[-73.57710022392799,43.57955254835098],[-73.57795323366935,43.57999645286688],[-73.58173084823822,43.57884230112554],[-73.58173084823822,43.5803515764796],[-73.57965925315206,43.58203841364002],[-73.57880624341071,43.581949632736844],[-73.57868438487623,43.581949632736844],[-73.57612535565214,43.58292622267182],[-73.57198216547982,43.58576721157359],[-73.5678389753075,43.590650161248504],[-73.5647925119455,43.598107757115635],[-73.55918701935941,43.60192533595239],[-73.54956019513548,43.611602454399026],[-73.54419841961835,43.61826102213754],[-73.54237054160116,43.621457134652026],[-73.53944593677363,43.62509715168241],[-73.52823495160146,43.63273230935591],[-73.5255540638429,43.63583964096721],[-73.52531034677394,43.63610598367676],[-73.52092343953265,43.63761525903082],[-73.52007042979129,43.63797038264354],[-73.51751140056722,43.637260135418096],[-73.5139775030673,43.637704039934],[-73.51361192746386,43.639302096191244],[-73.51568352255,43.639479657997605],[-73.51263705918801,43.64090015244849],[-73.51239334211905,43.64294211322163],[-73.50885944461913,43.64285333231845],[-73.50398510323993,43.64418504586615],[-73.50130421548135,43.645605540317035],[-73.50093863987792,43.647558720187],[-73.50203536668825,43.651731422636466],[-73.49837961065384,43.650843613604664],[-73.4961861570332,43.65190898444283],[-73.49326155220567,43.655282658763674],[-73.49301783513671,43.66744564249936],[-73.49399270341256,43.669398822369324],[-73.49448013755047,43.673038839399716],[-73.49155553272296,43.674015429334695],[-73.48668119134375,43.67951984533187],[-73.48351286944727,43.688131592940344],[-73.4838784450507,43.69061745822939],[-73.4838784450507,43.692393076292994],[-73.48034454755079,43.698696520418785],[-73.47802923539567,43.69949554854741],[-73.4765669329819,43.69940676764423],[-73.4723018842751,43.707219487124085],[-73.47266745987854,43.708906324284506],[-73.47449533789573,43.710948285057654],[-73.47278931841302,43.71414439757214],[-73.47010843065445,43.71645270105482],[-73.46962099651654,43.71973759447249],[-73.46718382582694,43.72488688685694],[-73.46425922099941,43.72621860040464],[-73.46340621125805,43.72870446569369],[-73.46364992832702,43.72985861743503],[-73.46206576737876,43.72897080840323],[-73.45950673815469,43.72994739833821],[-73.46121275763741,43.731367892789095],[-73.46243134298221,43.73367619627178],[-73.460603464965,43.741222573042094],[-73.46133461617188,43.7438860001375],[-73.46109089910293,43.74841382619969],[-73.46291877712012,43.751965062326896],[-73.46413736246492,43.757558259227245],[-73.46377178686149,43.75906753458131],[-73.46035974789605,43.76039924812901],[-73.45767886013748,43.76190852348308],[-73.45731328453404,43.76261877070852],[-73.45975045522364,43.76821196760887],[-73.46230948444773,43.76909977664067],[-73.47144887453373,43.77176320373608],[-73.47144887453373,43.77371638360604],[-73.47010843065445,43.77700127702371],[-73.46377178686149,43.7815291030859],[-73.46035974789605,43.78179544579544],[-73.45719142599957,43.7837486256654],[-73.44622415789635,43.79493501946611],[-73.43684105074139,43.80052821636646],[-73.43671919220691,43.80177114901098],[-73.43818149462066,43.803724328880946],[-73.42160873393138,43.805056042428646],[-73.40576712444896,43.80629897507317],[-73.40454853910416,43.80638775597635],[-73.40381738789728,43.80647653687953],[-73.40296437815591,43.80656531778271],[-73.39577472462159,43.80700922229861],[-73.39211896858718,43.80736434591133],[-73.3901692320355,43.80754190771769],[-73.37932382246677,43.808429716749494]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.43818149462066,43.803724328880946],[-73.43671919220691,43.80177114901098],[-73.43684105074139,43.80052821636646],[-73.44622415789635,43.79493501946611],[-73.45719142599957,43.7837486256654],[-73.46035974789605,43.78179544579544],[-73.46377178686149,43.7815291030859],[-73.47010843065445,43.77700127702371],[-73.47144887453373,43.77371638360604],[-73.47144887453373,43.77176320373608],[-73.46230948444773,43.76909977664067],[-73.45975045522364,43.76821196760887],[-73.45731328453404,43.76261877070852],[-73.45767886013748,43.76190852348308],[-73.46035974789605,43.76039924812901],[-73.46377178686149,43.75906753458131],[-73.46413736246492,43.757558259227245],[-73.46291877712012,43.751965062326896],[-73.46109089910293,43.74841382619969],[-73.46133461617188,43.7438860001375],[-73.460603464965,43.741222573042094],[-73.46243134298221,43.73367619627178],[-73.46121275763741,43.731367892789095],[-73.45950673815469,43.72994739833821],[-73.46206576737876,43.72897080840323],[-73.46364992832702,43.72985861743503],[-73.46340621125805,43.72870446569369],[-73.46425922099941,43.72621860040464],[-73.46718382582694,43.72488688685694],[-73.46962099651654,43.71973759447249],[-73.47010843065445,43.71645270105482],[-73.47278931841302,43.71414439757214],[-73.47449533789573,43.710948285057654],[-73.47266745987854,43.708906324284506],[-73.4723018842751,43.707219487124085],[-73.4765669329819,43.69940676764423],[-73.47802923539567,43.69949554854741],[-73.48034454755079,43.698696520418785],[-73.4838784450507,43.692393076292994],[-73.4838784450507,43.69061745822939],[-73.48351286944727,43.688131592940344],[-73.48668119134375,43.67951984533187],[-73.49155553272296,43.674015429334695],[-73.49448013755047,43.673038839399716],[-73.49399270341256,43.669398822369324],[-73.49301783513671,43.66744564249936],[-73.49326155220567,43.655282658763674],[-73.4961861570332,43.65190898444283],[-73.49837961065384,43.650843613604664],[-73.50203536668825,43.651731422636466],[-73.50093863987792,43.647558720187],[-73.50130421548135,43.645605540317035],[-73.50398510323993,43.64418504586615],[-73.50885944461913,43.64285333231845],[-73.51239334211905,43.64294211322163],[-73.51263705918801,43.64090015244849],[-73.51568352255,43.639479657997605],[-73.51361192746386,43.639302096191244],[-73.5139775030673,43.637704039934],[-73.51751140056722,43.637260135418096],[-73.52007042979129,43.63797038264354],[-73.52092343953265,43.63761525903082],[-73.52531034677394,43.63610598367676],[-73.5255540638429,43.63583964096721],[-73.52823495160146,43.63273230935591],[-73.53944593677363,43.62509715168241],[-73.54237054160116,43.621457134652026],[-73.54419841961835,43.61826102213754],[-73.54956019513548,43.611602454399026],[-73.55918701935941,43.60192533595239],[-73.5647925119455,43.598107757115635],[-73.5678389753075,43.590650161248504],[-73.57198216547982,43.58576721157359],[-73.57612535565214,43.58292622267182],[-73.57868438487623,43.581949632736844],[-73.57880624341071,43.581949632736844],[-73.57965925315206,43.58203841364002],[-73.58173084823822,43.5803515764796],[-73.58173084823822,43.57884230112554],[-73.57795323366935,43.57999645286688],[-73.57710022392799,43.57955254835098],[-73.57783137513486,43.57715546396511],[-73.57990297022103,43.576711559449215],[-73.58026854582447,43.57449203686971],[-73.58087783849686,43.573604227837905],[-73.58209642384166,43.57404813235381],[-73.58392430185887,43.57289398061246],[-73.58453359453127,43.571917390677484],[-73.58879864323808,43.569342744485255],[-73.59757245772064,43.56756712642165],[-73.60135007228952,43.5673895646153],[-73.60159378935849,43.56792225003437],[-73.60293423323776,43.56809981184074],[-73.60561512099633,43.56756712642165],[-73.6124391989272,43.56330564306901],[-73.61402335987546,43.55700219894321],[-73.61377964280649,43.55611438991141],[-73.6124391989272,43.55504901907325],[-73.60914901849625,43.553717305525545],[-73.60756485754801,43.55265193468738],[-73.60732114047904,43.55132022113968],[-73.61000202823762,43.54625970965841],[-73.61122061358242,43.54528311972343],[-73.61146433065137,43.54617092875523],[-73.61134247211689,43.54430652978844],[-73.61219548185825,43.54244213082166],[-73.61670424763402,43.53711527663085],[-73.61767911590985,43.53454063043863],[-73.61877584272018,43.52894743353827],[-73.61901955978914,43.52060202863934],[-73.61950699392706,43.52024690502662],[-73.6241376182373,43.521223494961596],[-73.62645293039242,43.52157861857432],[-73.62913381815099,43.51838250605983],[-73.63230214004747,43.51207906193404],[-73.63291143271987,43.50843904490365],[-73.63132727177162,43.50444390426054],[-73.63303329125435,43.50515415148598],[-73.6327895741854,43.502490724390576],[-73.63315514978883,43.50186925806832],[-73.63266771565091,43.50089266813333],[-73.63559232047844,43.50089266813333],[-73.63230214004747,43.49778533652203],[-73.63181470590955,43.49707508929659],[-73.63632347168532,43.49787411742521],[-73.63656718875427,43.49751899381249],[-73.62876824254755,43.48642138091497],[-73.62828080840963,43.48375795381956],[-73.62767151573722,43.481094526724156],[-73.62767151573722,43.480916964917796],[-73.62767151573722,43.480561841305075],[-73.62730594013378,43.47869744233829],[-73.62718408159931,43.47843109962875],[-73.62425947677178,43.462184194346776],[-73.62401575970281,43.46111882350861],[-73.61853212565121,43.43093331642735],[-73.61816655004777,43.42889135565421],[-73.61804469151329,43.42853623204149],[-73.61767911590985,43.42649427126834],[-73.6174353988409,43.425251338623816],[-73.61706982323746,43.423386939657036],[-73.6124391989272,43.398528286766584],[-73.6124391989272,43.39826194405704],[-73.61146433065137,43.39337899438213],[-73.61048946237553,43.388140921094504],[-73.60975831116865,43.38370187593549],[-73.60878344289281,43.37908526897012],[-73.60853972582385,43.37757599361606],[-73.6081741502204,43.37509012832702],[-73.60732114047904,43.370651083168006],[-73.60683370634112,43.3684315605885],[-73.60415281858256,43.353072464338325],[-73.601471930824,43.3393114243454],[-73.59769431625512,43.32066743467756],[-73.59745059918616,43.31933572112986],[-73.59696316504824,43.31711619855035],[-73.5965975894448,43.31507423777721],[-73.59635387237584,43.31383130513269],[-73.59611015530687,43.3128547151977],[-73.59501342849656,43.30610736655601],[-73.59952219427232,43.30672883287827],[-73.60293423323776,43.306640051975094],[-73.60293423323776,43.306640051975094],[-73.60634627220321,43.306462490168734],[-73.61694796470297,43.30521955752421],[-73.61975071099602,43.30495321481467],[-73.62145673047874,43.304775653008306],[-73.62815894987514,43.303887843976504],[-73.63242399858194,43.30592980474965],[-73.63315514978883,43.30637370926555],[-73.63522674487498,43.30690639468463],[-73.63681090582324,43.30690639468463],[-73.64107595453004,43.30575224294329],[-73.64278197401276,43.30415418668605],[-73.64180710573692,43.293234135594886],[-73.65070277875397,43.289594118564494],[-73.65143392996085,43.2900380230804],[-73.65301809090909,43.29128095572492],[-73.66045146151237,43.29057070849948],[-73.6658132370295,43.29083705120902],[-73.66849412478805,43.292523888369445],[-73.6712968710811,43.2931453546917],[-73.67202802228798,43.29207998385354],[-73.67580563685686,43.28746337688817],[-73.67519634418447,43.28506629250231],[-73.66106075418477,43.27290330876662],[-73.66959085159839,43.26384765664224],[-73.67641492952927,43.26349253302952],[-73.68080183677054,43.26739889276945],[-73.68494502694287,43.28089359005284],[-73.69018494392552,43.28408970256733],[-73.69286583168407,43.282669208116445],[-73.69298769021856,43.28275798901962],[-73.69530300237368,43.27894041018288],[-73.6982276072012,43.27831894386061],[-73.70456425099417,43.279384314698774],[-73.70553911927001,43.27894041018288],[-73.70785443142513,43.27574429766839],[-73.70980416797681,43.274323803217506],[-73.71406921668361,43.27334721328252],[-73.7196747092697,43.272814527863446],[-73.7233304653041,43.272459404250725],[-73.73052011883843,43.2707725670903],[-73.7374660553038,43.26739889276945],[-73.73917207478652,43.26588961741539],[-73.74002508452787,43.26473546567404],[-73.74014694306236,43.26295984761044],[-73.73758791383827,43.255235909033765],[-73.74039066013131,43.25008661664931],[-73.7417311040106,43.24600269510303],[-73.74392455763125,43.24271780168536],[-73.75342952332069,43.235704110334126],[-73.76025360125158,43.23188653149738],[-73.76171590366533,43.22984457072423],[-73.76354378168254,43.22540552556522],[-73.7643967914239,43.2237186884048],[-73.76646838651006,43.222209413050734],[-73.77000228400999,43.222742098469816],[-73.77268317176855,43.22469527833978],[-73.77585149366503,43.22798017175745],[-73.77950724969944,43.2349050822055],[-73.78974336659576,43.244404638845786],[-73.79291168849224,43.24626903781257],[-73.80326966392305,43.25035295935886],[-73.80838772237121,43.250974425681115],[-73.81009374185393,43.25053052116522],[-73.81350578081938,43.25044174026203],[-73.81533365883658,43.250974425681115],[-73.81947684900891,43.250619302068394],[-73.82069543435371,43.24831099858571],[-73.82227959530195,43.247068065941185],[-73.82544791719843,43.24564757149031],[-73.82666650254323,43.245736352393486],[-73.8292255317673,43.24795587497299],[-73.83215013659483,43.24884368400479],[-73.83373429754307,43.24955393123023],[-73.83495288288788,43.250974425681115],[-73.83580589262924,43.253726633679705],[-73.83556217556028,43.264469122964506],[-73.83556217556028,43.265800836512206],[-73.83385615607756,43.269352072639414],[-73.83263757073276,43.27086134799348],[-73.82605720987083,43.27609942128111],[-73.82520420012946,43.27751991573199],[-73.82520420012946,43.27894041018288],[-73.82739765375011,43.28613166334047],[-73.82703207814667,43.289949242177215],[-73.82483862452602,43.29909367520477],[-73.82459490745707,43.304242967589225],[-73.82581349280187,43.30530833842739],[-73.82727579521563,43.30548590023375],[-73.83324686340515,43.30486443391149],[-73.83690261943956,43.306640051975094],[-73.8397053657326,43.31232202977863],[-73.84238625349116,43.31471911416449],[-73.84238625349116,43.31578448500265],[-73.84238625349116,43.31764888396943],[-73.84299554616356,43.318714254807595],[-73.8483573216807,43.32306451906343],[-73.8495759070255,43.32412988990159],[-73.85396281426678,43.325017698933394],[-73.85688741909429,43.32661575519063],[-73.85859343857702,43.3281250305447],[-73.85895901418046,43.3303445531242],[-73.85688741909429,43.33354066563869],[-73.85432838987022,43.33478359828321],[-73.85323166305989,43.33771336808816],[-73.85420653133573,43.33922264344222],[-73.85920273124941,43.34295144137579],[-73.86407707262862,43.34552608756801],[-73.86456450676654,43.34668023930936],[-73.86444264823206,43.352717340725604],[-73.8648082238355,43.35413783517649],[-73.86566123357686,43.35520320601465],[-73.87333832124911,43.359731032076844],[-73.87516619926632,43.361950554656346],[-73.87516619926632,43.3657681334931],[-73.8721197359043,43.36923058871712],[-73.87102300909399,43.37251548213479],[-73.87455690659391,43.38450090406411],[-73.87784708702488,43.38716433115952],[-73.88320886254199,43.39701901141252],[-73.88333072107648,43.3979956013475],[-73.88917993073153,43.39746291592842],[-73.90489968167945,43.395953640574355],[-74.00043677271185,43.3868092075468],[-74.00128978245321,43.38672042664362],[-74.02298060159067,43.38467846587047],[-74.02358989426307,43.384589684967295],[-74.02541777228028,43.384412123160935],[-74.16007145288079,43.37153889219981],[-74.17250102339776,43.453838789447836],[-74.17932510132864,43.500093640004714],[-74.18261528175961,43.520868371348875],[-74.20357494969018,43.65714705773046],[-74.21466407632788,43.72870446569369],[-74.05856329365886,43.7443299046534],[-74.05697913271062,43.74450746645976],[-73.88394001374888,43.76119827625764],[-73.87894381383519,43.761642180773535],[-73.8709011505595,43.76261877070852],[-73.86870769693887,43.76279633251488],[-73.85347538012886,43.764216826965765],[-73.85310980452542,43.76430560786894],[-73.78511274228552,43.770697832897916],[-73.63815134970251,43.784813996503566],[-73.61390150134098,43.78721108088943],[-73.48655933280926,43.79999553094738],[-73.44768646031011,43.803014081655505],[-73.43818149462066,43.803724328880946]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.77457517620765,43.688841840165786],[-75.77067570310429,43.65625924869866],[-75.76945711775949,43.64454016947887],[-75.76872596655261,43.636905011805375],[-75.76677623000091,43.62509715168241],[-75.76519206905267,43.59855166163154],[-75.76543578612164,43.59357993105345],[-75.76299861543204,43.57591253132059],[-75.76117073741483,43.545727024239326],[-75.75970843500107,43.53143329882732],[-75.7589772837942,43.51749469702803],[-75.75861170819076,43.51349955638492],[-75.75861170819076,43.5131444327722],[-75.7583679911218,43.50826148309729],[-75.7583679911218,43.50817270219411],[-75.75727126431147,43.4925472632344],[-75.75629639603564,43.4719500936966],[-75.75617453750115,43.470352037439355],[-75.81149831215512,43.48287014478776],[-75.8146666340516,43.4835803920132],[-75.85061490172323,43.40376636005421],[-75.86280075517124,43.37668818458426],[-75.8630444722402,43.37597793735882],[-75.86779695508493,43.36594569529946],[-75.88680688646382,43.325017698933394],[-75.86292261370572,43.31924694022668],[-75.86938111603317,43.27290330876662],[-75.87047784284348,43.2631374094168],[-75.87303687206757,43.24626903781257],[-75.8747428915503,43.232774340529176],[-75.87486475008477,43.231620188787836],[-75.87510846715374,43.23019969433695],[-75.88424785723974,43.1556237356656],[-75.88948777422239,43.15686666831012],[-75.89424025706711,43.1569554492133],[-75.9089851397392,43.158908629083264],[-75.92409559801473,43.16157205617867],[-75.92689834430777,43.16281498882319],[-75.93055410034218,43.17382382081754],[-75.93152896861803,43.17551065797796],[-75.93299127103178,43.176664809719306],[-75.947005002497,43.17364625901118],[-75.9494421731866,43.17160429823803],[-75.95261049508308,43.17116039372213],[-75.95590067551404,43.172758449979376],[-75.95894713887604,43.17524431526842],[-75.96004386568636,43.17923945591153],[-75.96223731930701,43.18039360765287],[-75.97247343620333,43.17994970313697],[-75.97673848491013,43.17826286597655],[-75.97966308973766,43.177641399654284],[-75.98380627990998,43.17941701771789],[-75.9861215920651,43.182435568426015],[-75.98587787499615,43.18332337745782],[-75.98697460180647,43.183944843780075],[-75.9923363773236,43.18527655732778],[-75.9928238114615,43.1851877764246],[-75.99355496266838,43.183767281973715],[-75.99343310413391,43.183412158360994],[-75.99318938706494,43.18314581565146],[-75.99964788939239,43.18039360765287],[-76.00318178689231,43.17719749513839],[-76.00440037223711,43.17693115242884],[-76.00586267465088,43.17773018055747],[-76.00951843068529,43.183589720167355],[-76.01110259163353,43.18509899552142],[-76.01646436715065,43.18758486081047],[-76.02499446456426,43.190248287905874],[-76.03157482542618,43.190780973324955],[-76.03279341077098,43.19149122055039],[-76.03437757171922,43.19406586674262],[-76.03389013758131,43.19486489487124],[-76.03425571318475,43.19539758029032],[-76.0407142155122,43.19903759732071],[-76.04607599102931,43.2022337098352],[-76.04936617146028,43.20294395706064],[-76.05265635189124,43.202855176157456],[-76.05326564456364,43.20205614802884],[-76.0535093616326,43.200458091771594],[-76.05619024939116,43.19921515912707],[-76.06228317611517,43.20072443448113],[-76.06593893214956,43.200813215384315],[-76.07166628327013,43.19983662544933],[-76.07775920999414,43.19939272093343],[-76.0804400977527,43.200635653577955],[-76.08214611723542,43.20321029977018],[-76.08507072206295,43.2120883900882],[-76.08507072206295,43.21315376092636],[-76.08385213671815,43.21404156995816],[-76.08104939042511,43.21439669357088],[-76.07166628327013,43.21359766544226],[-76.06801052723573,43.21262107550728],[-76.07203185887357,43.214751817183604],[-76.0792215124079,43.21581718802177],[-76.07970894654582,43.21732646337583],[-76.07909965387343,43.21848061511717],[-76.08007452214926,43.21768158698855],[-76.08019638068374,43.21581718802177],[-76.08446142939054,43.21688255885993],[-76.08628930740775,43.21785914879491],[-76.08750789275254,43.219190862342614],[-76.09104179025248,43.22061135679349],[-76.09798772671783,43.2246064974366],[-76.100059321804,43.22469527833978],[-76.10298392663152,43.22380746930798],[-76.10627410706249,43.22442893563024],[-76.10724897533832,43.225494306468406],[-76.10724897533832,43.22638211550021],[-76.10663968266593,43.227003581822466],[-76.10688339973488,43.22744748633837],[-76.11297632645889,43.231265065175116],[-76.11626650688986,43.23366214956098],[-76.12175014094146,43.23463873949596],[-76.12650262378618,43.23383971136734],[-76.12967094568266,43.234993863108684],[-76.13015837982059,43.234816301302324],[-76.13503272119979,43.237213385688186],[-76.13771360895835,43.23863388013907],[-76.14063821378588,43.24040949820267],[-76.14855901852708,43.239610470074055],[-76.15647982326828,43.24280658258854],[-76.15769840861309,43.24325048710444],[-76.16135416464749,43.24360561071716],[-76.1698842620611,43.247245627747546],[-76.17232143275069,43.25008661664931],[-76.17427116930239,43.251329549293835],[-76.17731763266438,43.25221735832564],[-76.1796329448195,43.253549071873344],[-76.19401225188815,43.26606717922175],[-76.2004707542156,43.27059500528394],[-76.2029079249052,43.27157159521892],[-76.20656368093961,43.27050622438076],[-76.21082872964641,43.26846426360761],[-76.21168173938777,43.26677742644719],[-76.2096101443016,43.265268151093125],[-76.20887899309473,43.26367009483588],[-76.20924456869817,43.26216081948182],[-76.21302218326706,43.25612371806557],[-76.21229103206016,43.254880785421044],[-76.21058501257745,43.24396073432988],[-76.2121691735257,43.241652430847196],[-76.2133877588705,43.24005437458995],[-76.21204731499121,43.23898900375179],[-76.20668553947408,43.23818997562317],[-76.20497951999137,43.237390947494546],[-76.20388279318104,43.23472752039914],[-76.20485766145688,43.232064093303734],[-76.2047358029224,43.22895676169243],[-76.20254234930177,43.22229819395392],[-76.19425596895712,43.21706012066629],[-76.19876473473288,43.212532294604095],[-76.20619810533617,43.216616216150385],[-76.20973200283609,43.21306498002318],[-76.21070687111192,43.21057911473413],[-76.20887899309473,43.20915862028325],[-76.2083915589568,43.20800446854191],[-76.21009757843953,43.206939097703746],[-76.21789652464625,43.20480835602742],[-76.22216157335306,43.204897136930605],[-76.22447688550818,43.20498591783378],[-76.23008237809427,43.20782690673555],[-76.23385999266316,43.212354732797735],[-76.24019663645612,43.21413035086134],[-76.24470540223187,43.214574255377244],[-76.25140762162829,43.22655967730657],[-76.25652568007645,43.232064093303734],[-76.25774426542125,43.23410605407688],[-76.25750054835228,43.236858262075465],[-76.25896285076605,43.23747972839773],[-76.26261860680046,43.23623679575321],[-76.26371533361078,43.236325576656384],[-76.26566507016246,43.23845631833271],[-76.26749294817965,43.23969925097723],[-76.27407330904158,43.240143155493136],[-76.2751700358519,43.239610470074055],[-76.27553561145534,43.23881144194543],[-76.2721235724899,43.2349050822055],[-76.26773666524862,43.232774340529176],[-76.26688365550726,43.22744748633837],[-76.26359347507629,43.22620455369385],[-76.26213117266254,43.22354112659844],[-76.26200931412805,43.21848061511717],[-76.26444648481765,43.21350888453908],[-76.26676179697277,43.210845457443675],[-76.26810224085206,43.20942496299279],[-76.26980826033478,43.20560738415604],[-76.27139242128302,43.2040093278988],[-76.2745607431795,43.202500052544735],[-76.27504817731743,43.202322490738375],[-76.28101924550695,43.20107955809385],[-76.28296898205863,43.206761535897385],[-76.28601544542063,43.20978008660551],[-76.28759960636887,43.21164448557229],[-76.28772146490336,43.21617231163449],[-76.28954934292055,43.21901330053625],[-76.29783572326521,43.22380746930798],[-76.3008821866272,43.22709236272565],[-76.3034412158513,43.22877919988607],[-76.30356307438576,43.22886798078925],[-76.30758440602361,43.23082116065922],[-76.31221503033386,43.23037725614331],[-76.31453034248898,43.22966700891787],[-76.31733308878202,43.229578228014695],[-76.32147627895434,43.2304660370465],[-76.32415716671291,43.23233043601328],[-76.34462940050557,43.23153140788466],[-76.34462940050557,43.23259677872282],[-76.35206277110885,43.2322416551101],[-76.35888684903973,43.23197531240056],[-76.36607650257406,43.23170896969102],[-76.38155253645303,43.23117628427194],[-76.38350227300471,43.231087503368755],[-76.403121497056,43.23019969433695],[-76.46063872533063,43.22815773356381],[-76.4711185592959,43.22780260995109],[-76.47928308110608,43.22753626724155],[-76.47989237377847,43.236858262075465],[-76.48001423231295,43.23863388013907],[-76.48086724205432,43.2510632065843],[-76.48111095912327,43.25665640348465],[-76.49683071007121,43.25656762258147],[-76.55252006032862,43.25532468993695],[-76.60077603998273,43.253726633679705],[-76.60504108868953,43.253549071873344],[-76.60906242032738,43.31729376035671],[-76.60967171299978,43.32492891803021],[-76.61028100567218,43.33416213196095],[-76.61162144955146,43.35280612162879],[-76.6119870251549,43.35626857685281],[-76.61271817636178,43.367543751556695],[-76.61393676170658,43.37944039258284],[-76.61564278118931,43.402612208312874],[-76.61600835679275,43.40749515798778],[-76.61600835679275,43.40776150069732],[-76.61600835679275,43.4078502816005],[-76.61613021532723,43.41113517501817],[-76.61649579093067,43.41388738301676],[-76.61649579093067,43.41424250662948],[-76.61661764946514,43.415219096564456],[-76.61710508360306,43.419125456304386],[-76.6071126837757,43.423386939657036],[-76.56287803575943,43.448511935257024],[-76.53753146058756,43.458100272800486],[-76.53558172403588,43.45889930092911],[-76.531804109467,43.46031979537999],[-76.52778277782916,43.463693469700836],[-76.52217728524307,43.46848763847257],[-76.52205542670859,43.46857641937575],[-76.5158406414501,43.47115106556797],[-76.51571878291563,43.4710622846648],[-76.50682310989858,43.46910910479483],[-76.48696016877832,43.47532376801744],[-76.48147653472671,43.48198233575596],[-76.47245900317519,43.49281360594394],[-76.4374856037794,43.50923807303227],[-76.41762266265914,43.52131227586478],[-76.41067672619377,43.52317667483156],[-76.3713164195567,43.52566254012061],[-76.3688792488671,43.52584010192697],[-76.34548241024692,43.513410775481745],[-76.33085938610931,43.51199028103086],[-76.29710457205832,43.512878090062664],[-76.27053941154166,43.52131227586478],[-76.25981586050742,43.52468595018563],[-76.24007477792163,43.52841474811919],[-76.23580972921484,43.529213776247815],[-76.22874193421498,43.53303135508456],[-76.21801838318073,43.545194338820245],[-76.20985386137058,43.56010953055452],[-76.2035172175776,43.57493594138561],[-76.19913031033632,43.60041606059832],[-76.19839915912944,43.61417710059125],[-76.19839915912944,43.61417710059125],[-76.19754614938807,43.63042400587322],[-76.1968149981812,43.64631578754248],[-76.19669313964673,43.64897921463788],[-76.19657128111224,43.6497782427665],[-76.2004707542156,43.68023009255731],[-76.2004707542156,43.68023009255731],[-76.1575765500786,43.67783300817144],[-76.1221157165449,43.675879828301476],[-76.1018871998212,43.67428177204424],[-76.08580187326983,43.67295005849653],[-76.07629690758039,43.672151030367914],[-76.02194800120225,43.6681558897248],[-76.02511632309874,43.707041925317725],[-75.99964788939239,43.704644840931856],[-75.95236677801411,43.70127116661101],[-75.93676888560066,43.70011701486967],[-75.90423265689448,43.69825261590289],[-75.87462103301581,43.69558918880748],[-75.86621279413669,43.6955004079043],[-75.8189316827584,43.69212673358345],[-75.7877358979315,43.689818430100765],[-75.77457517620765,43.688841840165786]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.11020244622213,43.61524247142941],[-75.10423137803261,43.564104671197626],[-75.10350022682573,43.55753488436229],[-75.10313465122229,43.55416121004144],[-75.10289093415334,43.552030468365125],[-75.10045376346373,43.53027914708598],[-75.09874774398101,43.50790635948457],[-75.0975291586362,43.49716387019977],[-75.0902176465674,43.44407289009802],[-75.089608353895,43.44114312029307],[-75.08912091975708,43.43404064803866],[-75.08680560760196,43.41672837191852],[-75.08680560760196,43.41655081011216],[-75.07656949070562,43.33069967673692],[-75.08814605148123,43.32954552499558],[-75.09180180751564,43.328568935060595],[-75.092654817257,43.32750356422243],[-75.09253295872251,43.32661575519063],[-75.09594499768797,43.32386354719205],[-75.09984447079133,43.32386354719205],[-75.10654669018773,43.31356496242314],[-75.10752155846357,43.311611782553186],[-75.11190846570486,43.31081275442456],[-75.11398006079102,43.31099031623092],[-75.11787953389438,43.31099031623092],[-75.11982927044606,43.30983616448958],[-75.11970741191158,43.308149327329154],[-75.11909811923918,43.30743908010371],[-75.12031670458398,43.30415418668605],[-75.12251015820462,43.30450931029877],[-75.12372874354942,43.306462490168734],[-75.12458175329078,43.30708395649099],[-75.12799379225623,43.30690639468463],[-75.1300653873424,43.30726151829735],[-75.13335556777335,43.306817613781455],[-75.1410326554456,43.30468687210513],[-75.14797859191097,43.30513077662103],[-75.14810045044544,43.30450931029877],[-75.14688186510065,43.30335515855742],[-75.14566327975585,43.29873855159206],[-75.14749115777305,43.29545365817439],[-75.14822230897992,43.28968289946768],[-75.14858788458336,43.288795090435876],[-75.14944089432473,43.28852874772633],[-75.15212178208328,43.28675312966273],[-75.15260921622121,43.285687758824565],[-75.15321850889362,43.28053846644012],[-75.15370594303153,43.27911797198924],[-75.15431523570393,43.27885162927969],[-75.15480266984186,43.27778625844153],[-75.15650868932457,43.27467892683023],[-75.15699612346249,43.27459014592704],[-75.15845842587626,43.27325843237934],[-75.15918957708314,43.269174510833054],[-75.15809285027282,43.26677742644719],[-75.15870214294522,43.26420278025496],[-75.1594332941521,43.26384765664224],[-75.16077373803138,43.26287106670726],[-75.1624797575141,43.26127301045002],[-75.16235789897962,43.25843202154825],[-75.16040816242794,43.255768594452846],[-75.15906771854866,43.25567981354967],[-75.1551682454453,43.25692274619419],[-75.15419337716945,43.25860958335461],[-75.15346222596257,43.258698364257796],[-75.15248735768674,43.257810555225994],[-75.15297479182465,43.25496956632423],[-75.15163434794538,43.247423189553906],[-75.15102505527297,43.246890504134825],[-75.14931903579026,43.24671294232847],[-75.14822230897992,43.24733440865073],[-75.14785673337649,43.24848856039207],[-75.14822230897992,43.24919880761751],[-75.14858788458336,43.25053052116522],[-75.1452977041524,43.252394920132],[-75.14456655294552,43.254880785421044],[-75.14286053346281,43.25470322361468],[-75.13749875794568,43.24973149303659],[-75.13725504087672,43.249465150327055],[-75.13628017260088,43.24884368400479],[-75.12458175329078,43.24715684684437],[-75.12397246061839,43.246535380522104],[-75.12336316794598,43.24174121175038],[-75.1226320167391,43.24103096452494],[-75.1177576753599,43.239255346461334],[-75.11373634372205,43.239077784654974],[-75.10544996337741,43.23614801485002],[-75.09996632932581,43.23304068323872],[-75.09314225139492,43.23082116065922],[-75.08388100277443,43.230554817949674],[-75.07949409553315,43.232064093303734],[-75.07449789561947,43.23463873949596],[-75.07145143225746,43.2344611776896],[-75.0699891298437,43.23295190233554],[-75.0705984225161,43.2322416551101],[-75.07352302734363,43.231087503368755],[-75.07376674441258,43.22948944711151],[-75.07279187613675,43.22789139085427],[-75.06913612010234,43.227358705435186],[-75.10021004639476,43.18909413616453],[-75.10033190492925,43.18900535526135],[-75.11580793880822,43.16991746107761],[-75.12616591423902,43.15686666831012],[-75.13067468001479,43.151273471409766],[-75.13518344579056,43.14568027450942],[-75.1367676067388,43.14354953283309],[-75.13944849449736,43.140353420318604],[-75.15065947966953,43.12703628484158],[-75.15870214294522,43.11744794729812],[-75.1600425868245,43.11593867194406],[-75.16089559656587,43.11478452020271],[-75.16211418191065,43.11380793026773],[-75.16662294768642,43.10883619968964],[-75.16686666475539,43.108569856980104],[-75.16784153303122,43.10759326704512],[-75.1734470256173,43.10164494653205],[-75.1796618108758,43.094631255180815],[-75.18075853768612,43.09365466524583],[-75.18319570837572,43.090902457247246],[-75.18538916199635,43.08859415376456],[-75.18563287906532,43.08832781105502],[-75.18953235216868,43.084066327702374],[-75.19574713742716,43.077585321770215],[-75.2078111323407,43.06444574809955],[-75.20939529328894,43.062758910939124],[-75.21256361518542,43.05965157932782],[-75.2157319370819,43.056189124103796],[-75.21914397604735,43.05246032617023],[-75.21804724923703,43.043759797658566],[-75.21719423949567,43.03541439275963],[-75.21658494682326,43.029110948633836],[-75.21597565415087,43.022807504508044],[-75.21585379561638,43.02174213366988],[-75.21475706880607,43.01108842528826],[-75.2139040590647,43.002565458582964],[-75.21353848346126,43.00007959329392],[-75.20732369820277,42.94059638816319],[-75.20647068846142,42.931274393329275],[-75.20196192268565,42.883954171934235],[-75.20159634708222,42.88066927851657],[-75.21219803958198,42.87995903129113],[-75.24193152199513,42.87791707051798],[-75.242662673202,42.87791707051798],[-75.24436869268473,42.875076081616214],[-75.24802444871914,42.871524845489006],[-75.25033976087425,42.87161362639219],[-75.25899171682234,42.87125850277947],[-75.27056827759795,42.870814598263564],[-75.2831197066494,42.87037069374767],[-75.28799404802861,42.87010435103812],[-75.29128422845957,42.870015570134946],[-75.30432309164894,42.869660446522225],[-75.30724769647647,42.86939410381269],[-75.30797884768334,42.86939410381269],[-75.32369859863127,42.86877263749042],[-75.32382045716575,42.86877263749042],[-75.35404137371683,42.86735214303954],[-75.38986778285397,42.86566530587912],[-75.38986778285397,42.86566530587912],[-75.43714889423225,42.863357002396434],[-75.43812376250808,42.87259021632717],[-75.44263252828385,42.91627042069182],[-75.44421668923209,42.93305001139288],[-75.45652440121458,42.93287244958652],[-75.46566379130059,42.932783668683335],[-75.46724795224884,42.932783668683335],[-75.47017255707635,42.932783668683335],[-75.47029441561084,42.93269488778016],[-75.48406443000708,42.9325173259738],[-75.50222135164462,42.93216220236108],[-75.54426254604026,42.931807078748356],[-75.5440188289713,42.94583446145082],[-75.5482838776781,42.9929771210395],[-75.55096476543666,43.020410420122175],[-75.55279264345387,43.03754513443595],[-75.55583910681587,43.03736757262959],[-75.57423974552236,43.03656854450097],[-75.58411028681525,43.03603585908189],[-75.59714915000463,43.03541439275963],[-75.59824587681494,43.03852172437094],[-75.59812401828046,43.04331589314267],[-75.60165791578038,43.04615688204443],[-75.6021453499183,43.04828762372075],[-75.60263278405623,43.048465185527114],[-75.60299835965967,43.0485539664303],[-75.60616668155615,43.0503295844939],[-75.60701969129751,43.05086226991298],[-75.60775084250439,43.053436916105206],[-75.60677597422855,43.05441350604019],[-75.60421694500447,43.05467984874973],[-75.60397322793551,43.05512375326563],[-75.6045825206079,43.056011562297435],[-75.59995189629767,43.059740360231],[-75.59958632069423,43.061604759197785],[-75.6021453499183,43.06391306268047],[-75.60519181328031,43.06488965261545],[-75.6138437692284,43.06559989984089],[-75.61725580819383,43.06728673700132],[-75.6217645739696,43.072169686676226],[-75.62225200810752,43.073856523836646],[-75.62517661293505,43.07341261932075],[-75.62797935922809,43.07403408564301],[-75.63066024698665,43.076253608222515],[-75.63736246638305,43.07669751273841],[-75.63967777853817,43.07847313080202],[-75.63992149560714,43.07873947351156],[-75.64089636388297,43.081314119703784],[-75.63919034440026,43.08273461415467],[-75.6407745053485,43.08823903015184],[-75.64101822241746,43.089837086409084],[-75.6413837980209,43.09472003608399],[-75.64040892974506,43.09534150240626],[-75.6401652126761,43.095607845115794],[-75.63943406146922,43.095607845115794],[-75.6395559200037,43.09622931143806],[-75.63992149560714,43.0973834631794],[-75.64467397845186,43.100757137500246],[-75.64552698819323,43.10395325001473],[-75.64820787595178,43.105817648981514],[-75.64991389543451,43.10608399169106],[-75.65113248077931,43.10608399169106],[-75.65149805638275,43.10643911530378],[-75.65515381241715,43.109102542399185],[-75.65539752948611,43.110256694140524],[-75.65442266121026,43.111765969494584],[-75.65271664172755,43.11371914936455],[-75.65539752948611,43.11398549207409],[-75.66660851465828,43.11496208200907],[-75.66977683655476,43.11531720562179],[-75.67343259258917,43.11762550910448],[-75.67367630965812,43.118779660845824],[-75.67245772431332,43.12055527890943],[-75.67294515845124,43.12144308794123],[-75.6750167535374,43.12188699245713],[-75.6780632168994,43.12144308794123],[-75.67940366077869,43.12055527890943],[-75.68098782172693,43.12108796432851],[-75.68513101189926,43.12384017232709],[-75.68513101189926,43.12446163864935],[-75.68208454853725,43.12632603761614],[-75.68135339733037,43.12854556019564],[-75.68708074845094,43.13005483554971],[-75.69353925077839,43.133250948064195],[-75.6964638556059,43.13653584148186],[-75.69634199707143,43.13742365051366],[-75.69451411905422,43.138844144964544],[-75.69500155319214,43.13964317309316],[-75.69829173362311,43.139199268577265],[-75.70146005551959,43.13671340328822],[-75.70669997250224,43.1372460887073],[-75.70779669931255,43.13893292586772],[-75.70767484077807,43.14834370160482],[-75.70669997250224,43.15100712870023],[-75.7093808602608,43.15153981411931],[-75.71157431388144,43.151273471409766],[-75.72083556250192,43.154647145730614],[-75.72241972345016,43.15580129747196],[-75.72156671370881,43.15731057282602],[-75.72046998689848,43.15819838185782],[-75.72363830879496,43.16059546624369],[-75.72802521603624,43.16015156172779],[-75.73168097207065,43.16086180895323],[-75.73497115250161,43.16290376972638],[-75.73887062560497,43.16485694959634],[-75.74532912793242,43.15953009540553],[-75.74703514741515,43.15855350547054],[-75.74959417663922,43.15846472456737],[-75.75203134732882,43.15899740998645],[-75.7559308204322,43.16095058985641],[-75.75824613258732,43.16263742701683],[-75.76007401060451,43.16512329230588],[-75.76202374715619,43.16645500585358],[-75.77542818594901,43.17195942185075],[-75.77737792250069,43.17107161281895],[-75.77774349810413,43.169828680174426],[-75.77896208344893,43.168319404820366],[-75.78273969801782,43.16752037669174],[-75.78663917112118,43.16689891036948],[-75.78810147353494,43.16601110133768],[-75.78822333206942,43.164235483274076],[-75.79212280517278,43.161483275275494],[-75.7938288246555,43.16032912353415],[-75.79736272215543,43.159441314502345],[-75.80040918551742,43.159263752695985],[-75.81198574629303,43.16139449437231],[-75.81296061456888,43.16157205617867],[-75.81856610715496,43.161660837081854],[-75.82539018508585,43.159618876308706],[-75.83123939474089,43.15935253359917],[-75.8385509068097,43.16077302805005],[-75.84062250189587,43.16068424714687],[-75.84634985301643,43.15802082005146],[-75.85341764801628,43.1565115446974],[-75.85780455525756,43.15109590960341],[-75.85756083818859,43.15056322418433],[-75.86024172594716,43.14843248250801],[-75.86377562344708,43.14727833076666],[-75.86791881361941,43.14692320715394],[-75.87181828672277,43.14852126341118],[-75.87462103301581,43.15207249953839],[-75.88424785723974,43.1556237356656],[-75.87510846715374,43.23019969433695],[-75.87486475008477,43.231620188787836],[-75.8747428915503,43.232774340529176],[-75.87303687206757,43.24626903781257],[-75.87047784284348,43.2631374094168],[-75.86938111603317,43.27290330876662],[-75.86292261370572,43.31924694022668],[-75.88680688646382,43.325017698933394],[-75.86779695508493,43.36594569529946],[-75.8630444722402,43.37597793735882],[-75.86280075517124,43.37668818458426],[-75.85061490172323,43.40376636005421],[-75.8146666340516,43.4835803920132],[-75.81149831215512,43.48287014478776],[-75.75617453750115,43.470352037439355],[-75.72778149896729,43.463871031507196],[-75.71949511862265,43.462006632540415],[-75.71267104069176,43.460497357186355],[-75.7025567823299,43.458100272800486],[-75.69963217750238,43.45747880647823],[-75.68878676793366,43.45517050299554],[-75.66234346595148,43.449222182482465],[-75.65929700258947,43.448511935257024],[-75.65381336853787,43.4472690026125],[-75.6395559200037,43.4441616710012],[-75.6321225494004,43.44247483384078],[-75.63200069086594,43.44247483384078],[-75.6076289839699,43.43679285603724],[-75.58910648672894,43.43262015358778],[-75.56241946767778,43.42596158584926],[-75.53353899500601,43.41974692262664],[-75.52513075612688,43.423564501463396],[-75.42435374811184,43.47079594195525],[-75.39242681207806,43.48571113368953],[-75.35976872483738,43.50089266813333],[-75.35184792009618,43.504532685163724],[-75.32759807173464,43.51554151715806],[-75.3260139107864,43.516251764383505],[-75.3161433694935,43.520690809542515],[-75.31577779389006,43.520868371348875],[-75.31175646225222,43.52273277031566],[-75.31151274518326,43.52282155121884],[-75.31005044276951,43.52353179844428],[-75.30615096966613,43.525484978314246],[-75.27105571173587,43.54119919817714],[-75.26264747285674,43.545016777013885],[-75.26216003871882,43.545371900626606],[-75.25350808277074,43.54918947946336],[-75.24960860966738,43.55087631662378],[-75.2476588731157,43.551675344752404],[-75.22523690277136,43.562240272230845],[-75.18258641570331,43.581772070930484],[-75.16162674777274,43.59144918937712],[-75.12969981173896,43.606275600208214],[-75.12945609466999,43.6063643811114],[-75.1293342361355,43.606453162014574],[-75.11020244622213,43.61524247142941]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.61710508360306,43.419125456304386],[-76.61661764946514,43.415219096564456],[-76.61649579093067,43.41424250662948],[-76.61649579093067,43.41388738301676],[-76.61613021532723,43.41113517501817],[-76.61600835679275,43.4078502816005],[-76.61600835679275,43.40776150069732],[-76.61600835679275,43.40749515798778],[-76.61564278118931,43.402612208312874],[-76.61393676170658,43.37944039258284],[-76.61271817636178,43.367543751556695],[-76.6119870251549,43.35626857685281],[-76.61162144955146,43.35280612162879],[-76.61028100567218,43.33416213196095],[-76.60967171299978,43.32492891803021],[-76.60906242032738,43.31729376035671],[-76.60504108868953,43.253549071873344],[-76.60077603998273,43.253726633679705],[-76.55252006032862,43.25532468993695],[-76.49683071007121,43.25656762258147],[-76.48111095912327,43.25665640348465],[-76.48086724205432,43.2510632065843],[-76.48001423231295,43.23863388013907],[-76.47989237377847,43.236858262075465],[-76.47928308110608,43.22753626724155],[-76.47794263722679,43.208270811251445],[-76.47769892015783,43.2066727549942],[-76.4773333445544,43.19894881641753],[-76.47708962748543,43.19566392299986],[-76.4761147592096,43.1847438719087],[-76.4761147592096,43.18456631010234],[-76.47599290067511,43.1829682538451],[-76.47428688119238,43.16157205617867],[-76.47306829584758,43.14603539812214],[-76.48123281765776,43.14585783631578],[-76.48452299808872,43.144614903671254],[-76.48635087610592,43.14319440922037],[-76.48622901757145,43.14221781928539],[-76.4834262712784,43.13777877412638],[-76.47867378843367,43.131208987291046],[-76.4761147592096,43.125083104971615],[-76.47282457877863,43.11460695839635],[-76.47184971050278,43.10706058162604],[-76.47172785196831,43.105018620852896],[-76.4735557299855,43.10404203091791],[-76.47916122257159,43.104841059046535],[-76.48330441274392,43.106172772594235],[-76.4883006126576,43.106705458013316],[-76.49122521748512,43.10626155349742],[-76.49780557834706,43.102621536467026],[-76.49926788076081,43.09986932846844],[-76.49926788076081,43.09791614859848],[-76.49926788076081,43.09720590137304],[-76.49719628567465,43.07474433286845],[-76.49658699300225,43.066576489775876],[-76.49512469058848,43.04970811817164],[-76.49463725645056,43.04393735946493],[-76.49378424670921,43.031508033019705],[-76.49329681257129,43.024849465281186],[-76.49268751989888,43.01534990864091],[-76.491956368692,43.004962542968826],[-76.46295403748574,43.006294256516526],[-76.4625884618823,43.000523497809816],[-76.46234474481334,42.99501908181264],[-76.46173545214094,42.98614099149463],[-76.46039500826166,42.96918383898721],[-76.4595419985203,42.95835256879923],[-76.45856713024446,42.9432598152586],[-76.45747040343413,42.92949877526567],[-76.45734854489966,42.92843340442751],[-76.45600810102037,42.912541622758255],[-76.45174305231357,42.85829649091516],[-76.45076818403773,42.84577838356675],[-76.44772172067573,42.84595594537311],[-76.44491897438269,42.8460447262763],[-76.43943534033107,42.846311068985834],[-76.41932868214187,42.847021316211276],[-76.40543680921114,42.84755400163036],[-76.39069192653903,42.84817546795262],[-76.37253500490151,42.84888571517806],[-76.35705897102252,42.849418400597145],[-76.32976265929899,42.8294426973816],[-76.31550521076481,42.8200319216445],[-76.30575652800641,42.81337335390599],[-76.29881059154104,42.80742503339292],[-76.29198651361015,42.800766465654405],[-76.27906950895527,42.78585127392013],[-76.27529189438638,42.78043563882614],[-76.27468260171398,42.77129120579858],[-76.27005197740374,42.69831330338447],[-76.26578692869694,42.628709075291205],[-76.26566507016246,42.62542418187354],[-76.26554321162797,42.62355978290675],[-76.27626676266223,42.623293440197216],[-76.27651047973119,42.623293440197216],[-76.27943508455871,42.62320465929403],[-76.29552041111008,42.622760754778135],[-76.32525389352323,42.62205050755269],[-76.34462940050557,42.62160660303679],[-76.3518190540399,42.62134026032725],[-76.35218462964333,42.62134026032725],[-76.35693711248805,42.62125147942407],[-76.35705897102252,42.62125147942407],[-76.36485791722926,42.62098513671453],[-76.3731442975739,42.62080757490817],[-76.38642687783224,42.620541232198626],[-76.40226848731464,42.620008546779545],[-76.40239034584913,42.62009732768273],[-76.40750840429729,42.620008546779545],[-76.4081176969697,42.620008546779545],[-76.40994557498689,42.620008546779545],[-76.42103470162459,42.619653423166824],[-76.45832341317549,42.61858805232866],[-76.45868898877893,42.624802715551276],[-76.45868898877893,42.62506905826082],[-76.45917642291685,42.627199799937145],[-76.45990757412373,42.62711101903396],[-76.47306829584758,42.62675589542124],[-76.47879564696815,42.626667114518064],[-76.49232194429544,42.62631199090534],[-76.50389850507105,42.62595686729262],[-76.5085291293813,42.62586808638944],[-76.5091384220537,42.62577930548626],[-76.53582544110483,42.62489149645446],[-76.5360691581738,42.62489149645446],[-76.54057792394957,42.6247139346481],[-76.54252766050125,42.6247139346481],[-76.54325881170813,42.624625153744915],[-76.55556652369062,42.624270030132195],[-76.56689936739727,42.6238261256163],[-76.57201742584543,42.62364856380994],[-76.57457645506952,42.62355978290675],[-76.59419567912082,42.62284953568131],[-76.60504108868953,42.622583192971774],[-76.61405862024107,42.62222806935905],[-76.61430233731002,42.62533540097036],[-76.61454605437899,42.62533540097036],[-76.63355598575788,42.6247139346481],[-76.666579648602,42.623471002003576],[-76.67169770705016,42.63572276664244],[-76.68534586291193,42.67025853797953],[-76.687904892136,42.67478636404172],[-76.69034206282561,42.67727222933077],[-76.6977754334289,42.68455226339154],[-76.71970996963532,42.70044404506079],[-76.72336572566972,42.704084062091184],[-76.72897121825581,42.71287337150602],[-76.73165210601437,42.720774871889056],[-76.73347998403156,42.72787734414347],[-76.73421113523844,42.733204198334285],[-76.73603901325565,42.74554474387633],[-76.7375013156694,42.75389014877526],[-76.7400603448935,42.776440498183035],[-76.7400603448935,42.78940251004734],[-76.73835432541077,42.79472936423815],[-76.73043352066956,42.806182100748394],[-76.72909307679028,42.80813528061836],[-76.72324386713524,42.817901179968175],[-76.71946625256635,42.825447556738496],[-76.71751651601467,42.832550028992905],[-76.71715094041123,42.838853473118704],[-76.71788209161811,42.844180327309516],[-76.71885695989396,42.846666192598555],[-76.7204411208422,42.850750114144844],[-76.72105041351459,42.854212569368876],[-76.72080669644563,42.86264675517099],[-76.72129413058356,42.86957166561905],[-76.72178156472148,42.87108094097311],[-76.72373130127316,42.87676291877664],[-76.727752632911,42.88475320006285],[-76.73347998403156,42.89425275670314],[-76.73652644739357,42.89984595360349],[-76.7375013156694,42.90206547618299],[-76.73884175954869,42.91138747101691],[-76.73920733515213,42.916803106110905],[-76.73835432541077,42.92452704468758],[-76.73798874980733,42.927012909976625],[-76.73469856937636,42.942638348936335],[-76.73433299377292,42.94476909061266],[-76.73725759860045,42.950007163900295],[-76.73932919368661,42.9544462090593],[-76.73811060834181,42.956576950735624],[-76.73798874980733,42.96128233860418],[-76.73664830592804,42.9625252712487],[-76.73591715472116,42.965455041053644],[-76.73713574006597,42.96829602995541],[-76.73677016446253,42.970249209825376],[-76.72860564265235,42.97610874943527],[-76.72763077437652,42.97815071020841],[-76.72884935972132,42.98773904775187],[-76.72629033049724,42.990313693944096],[-76.72336572566972,42.991822969298155],[-76.72141598911803,42.99368736826494],[-76.72068483791115,42.99546298632855],[-76.72092855498012,43.000345936003455],[-76.72190342325595,43.00682694193561],[-76.721659706187,43.00789231277377],[-76.71897881842844,43.01108842528826],[-76.71239845756651,43.01579381315681],[-76.7111798722217,43.01801333573631],[-76.7117891648941,43.020410420122175],[-76.71386075998026,43.02405043715257],[-76.71861324282499,43.033372431986486],[-76.71910067696291,43.03736757262959],[-76.71897881842844,43.041895398691786],[-76.71690722334228,43.056189124103796],[-76.71776023308364,43.062758910939124],[-76.71690722334228,43.063646719970926],[-76.71568863799747,43.06453452900273],[-76.7130077502389,43.06764186061404],[-76.71057057954931,43.06932869777446],[-76.70593995523906,43.07074919222534],[-76.70240605773914,43.0807814342847],[-76.70277163334258,43.08566438395961],[-76.70301535041153,43.09028099092498],[-76.7032590674805,43.09338832253629],[-76.70374650161843,43.09969176666208],[-76.70411207722186,43.105995210787874],[-76.7044776528253,43.110256694140524],[-76.70520880403218,43.12233089697303],[-76.70533066256667,43.12250845877939],[-76.70533066256667,43.12552700948751],[-76.7056962381701,43.13138654909741],[-76.70606181377354,43.13706852690094],[-76.70679296498042,43.14843248250801],[-76.70691482351491,43.15091834779705],[-76.70728039911835,43.15597885927832],[-76.7075241161873,43.16174961798503],[-76.70959571127347,43.19610782751576],[-76.70983942834242,43.20054687267477],[-76.71008314541139,43.2053410414465],[-76.7111798722217,43.221055261309395],[-76.71191102342858,43.231620188787836],[-76.71252031610099,43.23801241381681],[-76.71264217463546,43.24023193639631],[-76.71276403316995,43.24182999265356],[-76.71312960877339,43.249465150327055],[-76.7137389014458,43.25470322361468],[-76.71386075998026,43.25656762258147],[-76.71447005265267,43.263758875739065],[-76.71568863799747,43.278052601151074],[-76.71702908187675,43.278052601151074],[-76.71739465748018,43.282136522697364],[-76.71934439403188,43.30486443391149],[-76.71995368670427,43.313920086035864],[-76.72153784765251,43.33158748576872],[-76.72202528179044,43.3375358062818],[-76.72251271592836,43.34366168860123],[-76.71983182816979,43.34375046950441],[-76.71727279894571,43.34383925040759],[-76.71520120385955,43.34392803131077],[-76.70252791627362,43.34428315492349],[-76.70228419920466,43.34428315492349],[-76.70118747239434,43.34437193582667],[-76.6983847261013,43.34446071672985],[-76.68558957998088,43.35227343620971],[-76.684858428774,43.352717340725604],[-76.68437099463608,43.35316124524151],[-76.6836398434292,43.35387149246695],[-76.66962611196399,43.36656716162172],[-76.64269537584389,43.40128049476517],[-76.63075323946484,43.413354697597676],[-76.61710508360306,43.419125456304386],[-76.61710508360306,43.419125456304386]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.59501342849656,43.30610736655601],[-73.58879864323808,43.300514169655656],[-73.58855492616911,43.299448798817494],[-73.58928607737599,43.29740683804435],[-73.59062652125527,43.29625268630301],[-73.59306369194488,43.29447706823941],[-73.59501342849656,43.2913697366281],[-73.59708502358272,43.28408970256733],[-73.5996440528068,43.27982821921468],[-73.59988776987576,43.278762848376516],[-73.60049706254816,43.27201549973482],[-73.60074077961713,43.2694408535426],[-73.60061892108264,43.26846426360761],[-73.5959882967724,43.26908572992988],[-73.5947697114276,43.268730606317156],[-73.592332540738,43.26713255005991],[-73.59026094565183,43.26455790386768],[-73.58904236030703,43.26367009483588],[-73.58721448228984,43.259674954192775],[-73.58697076522087,43.25585737535603],[-73.58782377496223,43.25346029097016],[-73.59026094565183,43.250619302068394],[-73.59038280418632,43.25008661664931],[-73.59087023832423,43.25008661664931],[-73.59306369194488,43.24839977948889],[-73.59708502358272,43.244404638845786],[-73.59769431625512,43.24316170620126],[-73.59745059918616,43.240942183621755],[-73.5941604187552,43.23339580685144],[-73.59306369194488,43.23215287420692],[-73.58928607737599,43.23082116065922],[-73.58599589694504,43.22744748633837],[-73.58148713116927,43.21892451963307],[-73.58136527263478,43.21581718802177],[-73.58099969703134,43.21359766544226],[-73.5794155360831,43.210667895637314],[-73.57929367754862,43.20889227757371],[-73.583193150652,43.2022337098352],[-73.58575217987607,43.1923790295822],[-73.58550846280711,43.191136096937676],[-73.58221828237615,43.18900535526135],[-73.58087783849686,43.183767281973715],[-73.58099969703134,43.18252434932919],[-73.58380244332439,43.176842371525666],[-73.58636147254848,43.17497797255888],[-73.58928607737599,43.17195942185075],[-73.5898953700484,43.17045014649669],[-73.58952979444496,43.16885209023945],[-73.58770191642775,43.1668101294663],[-73.58465545306575,43.16645500585358],[-73.58331500918646,43.16556719682178],[-73.58307129211751,43.164679387789974],[-73.58392430185887,43.162371084307296],[-73.58136527263478,43.158731067276904],[-73.58039040435895,43.15642276379422],[-73.58026854582447,43.155534954762416],[-73.58014668728998,43.15375933669881],[-73.5806341214279,43.152161280441575],[-73.5848991701347,43.147899797088925],[-73.59074837978976,43.13946561128681],[-73.59099209685871,43.135115347030975],[-73.58977351151391,43.13147533000059],[-73.5856303213416,43.12366261052073],[-73.58258385797959,43.12144308794123],[-73.57904996047967,43.12020015529671],[-73.57722208246247,43.118957222652185],[-73.57588163858318,43.116915261879036],[-73.57551606297974,43.114873301105895],[-73.57588163858318,43.108569856980104],[-73.57563792151421,43.10759326704512],[-73.5733226093591,43.100579575693885],[-73.57381004349702,43.09818249130802],[-73.5763690727211,43.094631255180815],[-73.5781969507383,43.0906361145377],[-73.57831880927279,43.08850537286138],[-73.57746579953142,43.086640973894596],[-73.57551606297974,43.08397754679919],[-73.57673464832455,43.07936093983382],[-73.57807509220382,43.077407759963855],[-73.58112155556583,43.072968714804844],[-73.58173084823822,43.07021650680626],[-73.58087783849686,43.06515599532499],[-73.57783137513486,43.05867498939284],[-73.5781969507383,43.05574521958789],[-73.58087783849686,43.0525491070734],[-73.58587403841055,43.04970811817164],[-73.58636147254848,43.04837640462394],[-73.58697076522087,43.042694426820404],[-73.59074837978976,43.03585829727553],[-73.59160138953112,43.0319519375356],[-73.59087023832423,43.02325140902394],[-73.59367298461727,43.01437331870593],[-73.59708502358272,43.00762597006423],[-73.60403096004808,43.00247667767978],[-73.60671184780665,42.99928056516529],[-73.60756485754801,42.994752739103106],[-73.60866158435833,42.98321122168968],[-73.61048946237553,42.981258041819714],[-73.62876824254755,42.97246873240488],[-73.63108355470267,42.9706043334381],[-73.63144913030611,42.969716524406294],[-73.62876824254755,42.95915159692785],[-73.62889010108202,42.955422798994285],[-73.62937753521994,42.951516439254355],[-73.63120541323715,42.94627836596673],[-73.6332770083233,42.943171034355416],[-73.63547046194395,42.941306635388635],[-73.63997922771972,42.93944223642185],[-73.64972791047812,42.938554427390045],[-73.65338366651252,42.936690028423264],[-73.65777057375381,42.9342929440374],[-73.65862358349517,42.93367147771514],[-73.6603296029779,42.9325173259738],[-73.66264491513301,42.92940999436249],[-73.66301049073645,42.928877308943406],[-73.66301049073645,42.928522185330685],[-73.66374164194333,42.926835348170265],[-73.66410721754677,42.92630266275118],[-73.6682504077191,42.922396303011254],[-73.67154058815007,42.91937775230313],[-73.67885210021886,42.912186499145534],[-73.6823859977188,42.90543915050384],[-73.68360458306358,42.90135522895755],[-73.68372644159807,42.89851424005578],[-73.68323900746014,42.89611715566992],[-73.68433573427048,42.89185567231727],[-73.68323900746014,42.89070152057593],[-73.6828734318567,42.88963614973777],[-73.68055811970159,42.88537466638512],[-73.67933953435679,42.88217855387063],[-73.6761712124603,42.879337564968864],[-73.67324660763278,42.875076081616214],[-73.67385590030518,42.86673067671728],[-73.67592749539135,42.8585628336247],[-73.67385590030518,42.855544282916576],[-73.67239359789143,42.84986230511304],[-73.6719061637535,42.843825203696795],[-73.67080943694319,42.84027396756959],[-73.67056571987422,42.83965250124732],[-73.66776297358118,42.83654516963602],[-73.6658132370295,42.83334905712153],[-73.66227933952958,42.82402706228761],[-73.65972031030549,42.81896655080634],[-73.65947659323653,42.81275188758373],[-73.65850172496069,42.80911187055334],[-73.66130447125373,42.80298598823391],[-73.66361978340885,42.80085524655758],[-73.66739739797774,42.80014499933214],[-73.67214988082246,42.796149858689034],[-73.6725154564259,42.79535083056041],[-73.67409961737414,42.78878104372508],[-73.67470891004655,42.78727176837101],[-73.67665864659823,42.783720532243805],[-73.67678050513271,42.78327662772791],[-73.68031440263263,42.783365408631084],[-73.681167412374,42.783010285018364],[-73.68202042211536,42.779814172503876],[-73.68726033909799,42.77706196450529],[-73.68835706590832,42.77546390824805],[-73.69006308539103,42.77546390824805],[-73.69371884142544,42.77697318360211],[-73.69688716332192,42.77839367805299],[-73.69774017306328,42.778748801665714],[-73.70322380711488,42.78247759959928],[-73.70895115823545,42.78771567288692],[-73.7099260265113,42.793397650690444],[-73.71065717771818,42.794107897915886],[-73.7123631972009,42.795972296882674],[-73.71991842633867,42.801299151073486],[-73.72052771901106,42.80307476913708],[-73.72040586047657,42.804140139975246],[-73.71869984099386,42.80564941532931],[-73.71711568004562,42.80724747158656],[-73.7166282459077,42.80813528061836],[-73.71711568004562,42.8092894323597],[-73.71882169952833,42.810266022294684],[-73.72138072875242,42.81310701119645],[-73.7221118799593,42.81967679803178],[-73.72272117263171,42.820653387966765],[-73.72662064573507,42.82260656783673],[-73.73173870418323,42.82127485428902],[-73.73770977237275,42.81887776990316],[-73.74831146487253,42.80529429171659],[-73.75013934288972,42.80138793197666],[-73.75842572323437,42.79526204965723],[-73.76488422556181,42.78727176837101],[-73.76671210357902,42.786117616629674],[-73.76878369866517,42.78585127392013],[-73.77731379607879,42.7917995944332],[-73.77999468383734,42.79215471804592],[-73.78243185452695,42.7917995944332],[-73.7870624788372,42.789668852756876],[-73.79352098116465,42.782566380502466],[-73.79790788840593,42.779459048891155],[-73.79949204935417,42.7788375825689],[-73.80936259064705,42.7788375825689],[-73.82215773676747,42.78025807701978],[-73.82764137081907,42.78380931314699],[-73.82849438056043,42.78487468398515],[-73.82910367323284,42.790201538175964],[-73.83215013659483,42.79304252707772],[-73.84153324374981,42.797836695849455],[-73.84592015099109,42.80440648268479],[-73.84628572659453,42.80485038720069],[-73.85335352159437,42.81239676397101],[-73.85847158004253,42.81994314074132],[-73.86675796038719,42.82837732654344],[-73.86834212133543,42.8294426973816],[-73.8758973504732,42.83423686615333],[-73.87967496504207,42.84861937246852],[-73.88174656012824,42.85083889504803],[-73.88771762831776,42.85021742872576],[-73.89588215012793,42.851105237757565],[-73.89624772573137,42.854035007562516],[-73.8967351598693,42.857053558270636],[-73.89807560374857,42.8666418958141],[-73.89807560374857,42.86726336213636],[-73.90051277443817,42.885641009094655],[-73.90063463297265,42.887860531674164],[-73.90209693538641,42.89700496470172],[-73.90307180366226,42.900289858119386],[-73.90368109633465,42.9042849987625],[-73.90453410607601,42.90978941475967],[-73.9046559646105,42.91129869011373],[-73.91830412047227,42.91058844288829],[-73.92147244236875,42.90961185295331],[-73.92780908616172,42.907747453986524],[-73.9370703347822,42.904551341472036],[-73.95400867107493,42.897715211927164],[-73.9554709734887,42.89736008831444],[-73.95937044659206,42.899402049087584],[-73.96448850504022,42.904196217859315],[-73.96948470495391,42.91129869011373],[-73.99239410943616,42.92585875823528],[-73.99336897771201,42.926480224557544],[-73.99531871426369,42.92781193810524],[-73.99544057279817,42.92772315720207],[-73.99726845081537,42.92878852804023],[-74.00652969943586,42.93376025861832],[-74.01189147495299,42.93597978119782],[-74.01895926995283,42.938909551002766],[-74.01920298702179,42.938909551002766],[-74.02273688452172,42.94006370274411],[-74.02371175279755,42.940773949969554],[-74.03224185021116,42.942993472549055],[-74.03675061598692,42.94476909061266],[-74.0411375232282,42.947610079514426],[-74.05539497176238,42.95329205731796],[-74.05563868883134,42.953380838221136],[-74.05795400098646,42.95346961912432],[-74.0803759713308,42.9548901135752],[-74.09304925891674,42.95568914170382],[-74.09365855158913,42.959329158734214],[-74.09463341986498,42.965277479247284],[-74.09512085400289,42.96802968724587],[-74.09609572227873,42.9745994740812],[-74.09658315641666,42.97717412027343],[-74.0969487320201,42.97939364285293],[-74.09743616615802,42.98294487898014],[-74.09804545883041,42.98676245781689],[-74.10109192219242,43.00638303741971],[-74.10170121486482,43.01028939715964],[-74.10170121486482,43.010378178062815],[-74.1018230733993,43.0109108634819],[-74.10194493193377,43.01162111070734],[-74.10194493193377,43.01250891973914],[-74.1048695367613,43.0288446059243],[-74.10998759520946,43.06249256822959],[-74.11059688788187,43.06675405158224],[-74.11425264391627,43.089837086409084],[-74.11461821951971,43.091701485375864],[-74.1152275121921,43.095785406922154],[-74.12278274132987,43.14372709463945],[-74.12339203400228,43.14834370160482],[-74.12400132667467,43.15207249953839],[-74.12436690227811,43.15393689850517],[-74.12619478029532,43.16512329230588],[-74.12668221443325,43.16876330933626],[-74.12680407296772,43.16973989927125],[-74.12729150710564,43.17284723088255],[-74.12741336564012,43.173202354495274],[-74.12765708270908,43.1748891916557],[-74.12777894124356,43.17551065797796],[-74.12802265831252,43.1771087142352],[-74.12802265831252,43.177463837847924],[-74.12838823391596,43.17994970313697],[-74.12948496072629,43.187496079907284],[-74.12948496072629,43.187673641713644],[-74.13094726314004,43.19735076016028],[-74.131190980209,43.197883445579365],[-74.1348467362434,43.22132160401893],[-74.1348467362434,43.22158794672848],[-74.1360653215882,43.22895676169243],[-74.13935550201917,43.249287588520694],[-74.14008665322605,43.25399297638924],[-74.1410615215019,43.259497392386415],[-74.1415489556398,43.26233838128818],[-74.1434986921915,43.273968679604785],[-74.15007905305342,43.31205568706908],[-74.1581217163291,43.359553470270484],[-74.15885286753598,43.36408129633267],[-74.16007145288079,43.37153889219981],[-74.02541777228028,43.384412123160935],[-74.02358989426307,43.384589684967295],[-74.02298060159067,43.38467846587047],[-74.00128978245321,43.38672042664362],[-74.00043677271185,43.3868092075468],[-73.90489968167945,43.395953640574355],[-73.88917993073153,43.39746291592842],[-73.88333072107648,43.3979956013475],[-73.88320886254199,43.39701901141252],[-73.87784708702488,43.38716433115952],[-73.87455690659391,43.38450090406411],[-73.87102300909399,43.37251548213479],[-73.8721197359043,43.36923058871712],[-73.87516619926632,43.3657681334931],[-73.87516619926632,43.361950554656346],[-73.87333832124911,43.359731032076844],[-73.86566123357686,43.35520320601465],[-73.8648082238355,43.35413783517649],[-73.86444264823206,43.352717340725604],[-73.86456450676654,43.34668023930936],[-73.86407707262862,43.34552608756801],[-73.85920273124941,43.34295144137579],[-73.85420653133573,43.33922264344222],[-73.85323166305989,43.33771336808816],[-73.85432838987022,43.33478359828321],[-73.85688741909429,43.33354066563869],[-73.85895901418046,43.3303445531242],[-73.85859343857702,43.3281250305447],[-73.85688741909429,43.32661575519063],[-73.85396281426678,43.325017698933394],[-73.8495759070255,43.32412988990159],[-73.8483573216807,43.32306451906343],[-73.84299554616356,43.318714254807595],[-73.84238625349116,43.31764888396943],[-73.84238625349116,43.31578448500265],[-73.84238625349116,43.31471911416449],[-73.8397053657326,43.31232202977863],[-73.83690261943956,43.306640051975094],[-73.83324686340515,43.30486443391149],[-73.82727579521563,43.30548590023375],[-73.82581349280187,43.30530833842739],[-73.82459490745707,43.304242967589225],[-73.82483862452602,43.29909367520477],[-73.82703207814667,43.289949242177215],[-73.82739765375011,43.28613166334047],[-73.82520420012946,43.27894041018288],[-73.82520420012946,43.27751991573199],[-73.82605720987083,43.27609942128111],[-73.83263757073276,43.27086134799348],[-73.83385615607756,43.269352072639414],[-73.83556217556028,43.265800836512206],[-73.83556217556028,43.264469122964506],[-73.83580589262924,43.253726633679705],[-73.83495288288788,43.250974425681115],[-73.83373429754307,43.24955393123023],[-73.83215013659483,43.24884368400479],[-73.8292255317673,43.24795587497299],[-73.82666650254323,43.245736352393486],[-73.82544791719843,43.24564757149031],[-73.82227959530195,43.247068065941185],[-73.82069543435371,43.24831099858571],[-73.81947684900891,43.250619302068394],[-73.81533365883658,43.250974425681115],[-73.81350578081938,43.25044174026203],[-73.81009374185393,43.25053052116522],[-73.80838772237121,43.250974425681115],[-73.80326966392305,43.25035295935886],[-73.79291168849224,43.24626903781257],[-73.78974336659576,43.244404638845786],[-73.77950724969944,43.2349050822055],[-73.77585149366503,43.22798017175745],[-73.77268317176855,43.22469527833978],[-73.77000228400999,43.222742098469816],[-73.76646838651006,43.222209413050734],[-73.7643967914239,43.2237186884048],[-73.76354378168254,43.22540552556522],[-73.76171590366533,43.22984457072423],[-73.76025360125158,43.23188653149738],[-73.75342952332069,43.235704110334126],[-73.74392455763125,43.24271780168536],[-73.7417311040106,43.24600269510303],[-73.74039066013131,43.25008661664931],[-73.73758791383827,43.255235909033765],[-73.74014694306236,43.26295984761044],[-73.74002508452787,43.26473546567404],[-73.73917207478652,43.26588961741539],[-73.7374660553038,43.26739889276945],[-73.73052011883843,43.2707725670903],[-73.7233304653041,43.272459404250725],[-73.7196747092697,43.272814527863446],[-73.71406921668361,43.27334721328252],[-73.70980416797681,43.274323803217506],[-73.70785443142513,43.27574429766839],[-73.70553911927001,43.27894041018288],[-73.70456425099417,43.279384314698774],[-73.6982276072012,43.27831894386061],[-73.69530300237368,43.27894041018288],[-73.69298769021856,43.28275798901962],[-73.69286583168407,43.282669208116445],[-73.69018494392552,43.28408970256733],[-73.68494502694287,43.28089359005284],[-73.68080183677054,43.26739889276945],[-73.67641492952927,43.26349253302952],[-73.66959085159839,43.26384765664224],[-73.66106075418477,43.27290330876662],[-73.67519634418447,43.28506629250231],[-73.67580563685686,43.28746337688817],[-73.67202802228798,43.29207998385354],[-73.6712968710811,43.2931453546917],[-73.66849412478805,43.292523888369445],[-73.6658132370295,43.29083705120902],[-73.66045146151237,43.29057070849948],[-73.65301809090909,43.29128095572492],[-73.65143392996085,43.2900380230804],[-73.65070277875397,43.289594118564494],[-73.64180710573692,43.293234135594886],[-73.64278197401276,43.30415418668605],[-73.64107595453004,43.30575224294329],[-73.63681090582324,43.30690639468463],[-73.63522674487498,43.30690639468463],[-73.63315514978883,43.30637370926555],[-73.63242399858194,43.30592980474965],[-73.62815894987514,43.303887843976504],[-73.62145673047874,43.304775653008306],[-73.61975071099602,43.30495321481467],[-73.61694796470297,43.30521955752421],[-73.60634627220321,43.306462490168734],[-73.60293423323776,43.306640051975094],[-73.60293423323776,43.306640051975094],[-73.59952219427232,43.30672883287827],[-73.59501342849656,43.30610736655601]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-78.46545533459724,43.371272549490264],[-78.44754213002867,43.37224913942525],[-78.43425954977033,43.37295938665069],[-78.38880631640926,43.37544525193974],[-78.37613302882333,43.37615549916518],[-78.37016196063381,43.3765106227779],[-78.36967452649588,43.37633306097154],[-78.36662806313389,43.375711594649275],[-78.35882911692715,43.374024757488854],[-78.35870725839267,43.374024757488854],[-78.35821982425476,43.37393597658567],[-78.35724495597891,43.37393597658567],[-78.34115962942754,43.37349207206977],[-78.32763333210025,43.37304816755387],[-78.30862340072136,43.37251548213479],[-78.30423649348008,43.37242670123161],[-78.28973532787694,43.371982796715706],[-78.27913363537716,43.37171645400617],[-78.27511230373932,43.37153889219981],[-78.26438875270507,43.371272549490264],[-78.25061873830883,43.37082864497437],[-78.2335585434816,43.36905302691076],[-78.20406877813743,43.37118376858709],[-78.19151734908597,43.372160358522066],[-78.1913954905515,43.372160358522066],[-78.1913954905515,43.372160358522066],[-78.16361174469003,43.374202319295215],[-78.15727510089707,43.37464622381111],[-78.15435049606954,43.37482378561747],[-78.14521110598353,43.375534032842914],[-78.14192092555257,43.375534032842914],[-78.13351268667344,43.375534032842914],[-78.11535576503591,43.3756228137461],[-78.10451035546718,43.3756228137461],[-78.1031699115879,43.37544525193974],[-78.09329937029501,43.374379881101575],[-78.0805042241746,43.37295938665069],[-78.0756298827954,43.37242670123161],[-78.07465501451956,43.37224913942525],[-78.05381720512347,43.369940835942565],[-78.03578214202041,43.367898875169416],[-78.03297939572737,43.36763253245988],[-78.02359628857239,43.36656716162172],[-77.99483767443509,43.36523544807402],[-77.99508139150406,43.355469548724194],[-77.99483767443509,43.342685098666244],[-77.99495953296957,43.32919040138286],[-77.99508139150406,43.32350842357933],[-77.99532510857301,43.31534058048675],[-77.9954469671075,43.30184588320336],[-77.99556882564197,43.29554243907757],[-77.99581254271094,43.28746337688817],[-77.99581254271094,43.28488873069595],[-77.99629997684886,43.26659986464083],[-77.9966655524523,43.254880785421044],[-77.9966655524523,43.250796863874754],[-77.99678741098677,43.24005437458995],[-77.99690926952125,43.23037725614331],[-77.99690926952125,43.227181143628826],[-77.99678741098677,43.22425137382388],[-77.99690926952125,43.222031851244374],[-77.99690926952125,43.22167672763165],[-77.99690926952125,43.22061135679349],[-77.99690926952125,43.21945720505215],[-77.99690926952125,43.21777036789173],[-77.99690926952125,43.215639626215406],[-77.99690926952125,43.214929378989964],[-77.99690926952125,43.21350888453908],[-77.99690926952125,43.202855176157456],[-77.99690926952125,43.19921515912707],[-77.99690926952125,43.19779466467619],[-77.99715298659021,43.14470368457444],[-77.99727484512469,43.13653584148186],[-77.99727484512469,43.13298460535465],[-77.9997120158143,43.13298460535465],[-78.01689406917599,43.13245191993557],[-78.02371814710688,43.13218557722603],[-78.02371814710688,43.13218557722603],[-78.02713018607231,43.13209679632285],[-78.0315170933136,43.13191923451649],[-78.03163895184808,43.13191923451649],[-78.03663515176177,43.13183045361331],[-78.0480898540029,43.13147533000059],[-78.06575934150251,43.13138654909741],[-78.06917138046795,43.13138654909741],[-78.07697032667468,43.13138654909741],[-78.07831077055395,43.13138654909741],[-78.09439609710533,43.13147533000059],[-78.09622397512254,43.13138654909741],[-78.09878300434661,43.13138654909741],[-78.09914857995005,43.13138654909741],[-78.11109071632912,43.13147533000059],[-78.11535576503591,43.13147533000059],[-78.11535576503591,43.13236313903239],[-78.16495218856932,43.13227435812921],[-78.19334522710318,43.13183045361331],[-78.20260647572367,43.13174167271013],[-78.20748081710286,43.13165289180695],[-78.22234755830944,43.13156411090377],[-78.22283499244736,43.13156411090377],[-78.23453341175745,43.13165289180695],[-78.24257607503314,43.13147533000059],[-78.2519591821881,43.13138654909741],[-78.3027741910663,43.13112020638787],[-78.3102075616696,43.13138654909741],[-78.31045127873855,43.13138654909741],[-78.32519616141064,43.13112020638787],[-78.34055033675514,43.13076508277515],[-78.39051233589198,43.13058752096879],[-78.41086271115016,43.130676301871965],[-78.44388637399426,43.12943336922744],[-78.45631594451123,43.128989464711545],[-78.46545533459724,43.128634341098824],[-78.46582091020068,43.13626949877232],[-78.46545533459724,43.143638313736275],[-78.46521161752828,43.14985297695889],[-78.46460232485589,43.16121693256595],[-78.46460232485589,43.161838398888214],[-78.46423674925244,43.16672134856312],[-78.463871173649,43.172225764560295],[-78.46301816390763,43.1829682538451],[-78.46216515416629,43.1937107431299],[-78.46045913468356,43.216261092537664],[-78.46106842735595,43.227181143628826],[-78.46131214442492,43.2317977505942],[-78.46179957856285,43.2403207172995],[-78.46192143709732,43.24191877355674],[-78.4620432956318,43.24475976245851],[-78.46277444683868,43.254259319098786],[-78.46643020287308,43.30282247313834],[-78.46606462726965,43.325550384352475],[-78.46582091020068,43.33940020524858],[-78.4656990516662,43.34641389659981],[-78.46545533459724,43.370651083168006],[-78.46545533459724,43.37073986407118],[-78.46545533459724,43.371272549490264]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-78.46545533459724,43.371272549490264],[-78.46545533459724,43.37073986407118],[-78.46545533459724,43.370651083168006],[-78.4656990516662,43.34641389659981],[-78.46582091020068,43.33940020524858],[-78.46606462726965,43.325550384352475],[-78.46643020287308,43.30282247313834],[-78.46277444683868,43.254259319098786],[-78.4620432956318,43.24475976245851],[-78.46192143709732,43.24191877355674],[-78.46179957856285,43.2403207172995],[-78.46131214442492,43.2317977505942],[-78.46106842735595,43.227181143628826],[-78.46045913468356,43.216261092537664],[-78.46216515416629,43.1937107431299],[-78.46301816390763,43.1829682538451],[-78.463871173649,43.172225764560295],[-78.46423674925244,43.16672134856312],[-78.46460232485589,43.161838398888214],[-78.46460232485589,43.16121693256595],[-78.46521161752828,43.14985297695889],[-78.46545533459724,43.143638313736275],[-78.46582091020068,43.13626949877232],[-78.46545533459724,43.128634341098824],[-78.46533347606277,43.125083104971615],[-78.46435860778692,43.091523923569504],[-78.4644804663214,43.08823903015184],[-78.46777064675237,43.087617563829575],[-78.46496790045933,43.08601950757233],[-78.47227941252812,43.081669243316504],[-78.47179197839021,43.08397754679919],[-78.47508215882117,43.08601950757233],[-78.48446526597614,43.08619706937869],[-78.48897403175191,43.08273461415467],[-78.49165491951047,43.084066327702374],[-78.49360465606215,43.08255705234831],[-78.4975041291655,43.08193558602605],[-78.49921014864823,43.08326729957375],[-78.50603422657912,43.089837086409084],[-78.50530307537224,43.091879047182225],[-78.506765377786,43.094276131568094],[-78.51005555821696,43.09791614859848],[-78.51492989959617,43.09489759789035],[-78.51602662640649,43.09196782808541],[-78.5140768898548,43.09081367634406],[-78.51858565563057,43.08965952460272],[-78.52248512873393,43.088150249248656],[-78.53150266028545,43.0875287829264],[-78.5361332845957,43.08566438395961],[-78.54027647476802,43.085930726669154],[-78.5403983333025,43.08859415376456],[-78.54661311856098,43.090014648215444],[-78.54697869416444,43.09285563711721],[-78.54125134304387,43.09356588434265],[-78.5422262113197,43.096673215953956],[-78.54576010881964,43.0987151767271],[-78.55014701606092,43.09658443505078],[-78.54929400631956,43.09525272150307],[-78.54978144045748,43.09383222705219],[-78.55075630873331,43.09347710343947],[-78.56087056709517,43.09028099092498],[-78.55489949890564,43.09525272150307],[-78.5600175573538,43.09747224408258],[-78.56391703045716,43.09472003608399],[-78.5630640207158,43.09374344614901],[-78.56513561580196,43.08859415376456],[-78.57634660097413,43.08877171557092],[-78.57427500588797,43.08255705234831],[-78.57256898640526,43.08193558602605],[-78.5759810253707,43.0798936252529],[-78.5771996107155,43.08388876589601],[-78.5796367814051,43.087440002023214],[-78.58170837649126,43.08894927737728],[-78.58499855692222,43.08433267041191],[-78.58036793261198,43.08024874886562],[-78.5826832447671,43.075543360997074],[-78.58670457640494,43.073146276611205],[-78.59096962511175,43.07634238912569],[-78.5937723714048,43.06968382138718],[-78.59523467381855,43.069772602290364],[-78.59511281528407,43.07252481028895],[-78.60315547855976,43.0722584675794],[-78.60693309312865,43.07305749570803],[-78.6065675175252,43.07563214190025],[-78.61229486864576,43.07634238912569],[-78.61448832226641,43.07430042835255],[-78.6163162002836,43.07474433286845],[-78.61729106855945,43.077940445382936],[-78.61290416131817,43.08388876589601],[-78.61668177588705,43.08504291763735],[-78.61765664416289,43.08655219299141],[-78.61960638071457,43.0875287829264],[-78.62228726847313,43.08539804125007],[-78.62667417571441,43.08495413673417],[-78.6292332049385,43.08699609750732],[-78.63264524390394,43.09108001905361],[-78.63020807321433,43.09383222705219],[-78.6359354243349,43.09329954163311],[-78.63800701942107,43.095163940599896],[-78.64154091692099,43.09729468227622],[-78.64056604864516,43.089837086409084],[-78.6421502095934,43.08823903015184],[-78.64409994614508,43.08832781105502],[-78.64690269243812,43.08957074369954],[-78.6488524289898,43.08681853570096],[-78.64665897536915,43.085753164862794],[-78.64580596562779,43.08211314783241],[-78.64629339976571,43.0807814342847],[-78.64824313631739,43.080692653381526],[-78.65482349717932,43.08282339505785],[-78.65701695079996,43.08433267041191],[-78.66408474579981,43.086285850281875],[-78.66640005795493,43.08530926034689],[-78.66664377502389,43.08522047944371],[-78.67578316510989,43.08379998499283],[-78.67834219433398,43.08468779402463],[-78.67968263821327,43.08424388950873],[-78.67980449674774,43.082024366929225],[-78.68090122355807,43.08007118705926],[-78.68138865769598,43.08007118705926],[-78.68285096010975,43.08007118705926],[-78.68687229174759,43.08415510860555],[-78.68699415028206,43.085930726669154],[-78.68870016976479,43.087617563829575],[-78.6910154819199,43.0884165919582],[-78.69662097450599,43.08601950757233],[-78.69930186226456,43.08672975479777],[-78.7069789499368,43.08681853570096],[-78.70771010114369,43.086463412088236],[-78.708806827954,43.08273461415467],[-78.71087842304017,43.08211314783241],[-78.71489975467802,43.08326729957375],[-78.7180680765745,43.08104777699425],[-78.72013967166066,43.08122533880061],[-78.7217238326089,43.08388876589601],[-78.72428286183298,43.085575603056434],[-78.72732932519499,43.08619706937869],[-78.73330039338451,43.08415510860555],[-78.73427526166034,43.08344486138011],[-78.73573756407411,43.08229070963877],[-78.7376873006258,43.07829556899566],[-78.74122119812571,43.07483311377163],[-78.74000261278091,43.071814563063505],[-78.73963703717747,43.0691511359681],[-78.74097748105675,43.0682633269363],[-78.74390208588427,43.06835210783948],[-78.74767970045316,43.06968382138718],[-78.75377262717716,43.06941747867764],[-78.75633165640124,43.07039406861262],[-78.75767210028053,43.07083797312852],[-78.76717706596997,43.070127725903085],[-78.77046724640094,43.06941747867764],[-78.77400114390086,43.0669316133886],[-78.7780224755387,43.06533355713135],[-78.78679629002127,43.066398927969516],[-78.80154117269336,43.065866242550435],[-78.80653737260705,43.06222622552004],[-78.80690294821049,43.06027304565008],[-78.80422206045192,43.055478876878354],[-78.80702480674496,43.053436916105206],[-78.81384888467585,43.0516612980416],[-78.81957623579642,43.051572517138425],[-78.82237898208946,43.051572517138425],[-78.82664403079626,43.0516612980416],[-78.82920306002035,43.051394955332064],[-78.83090907950307,43.05024080359072],[-78.83164023070995,43.0494417754621],[-78.83224952338234,43.04775493830167],[-78.83139651364098,43.04535785391581],[-78.82676588933074,43.03994221882182],[-78.82591287958938,43.03594707817871],[-78.82871562588242,43.03026510037518],[-78.83078722096859,43.028578263214754],[-78.83164023070995,43.02609239792571],[-78.83334625019266,43.024139218055744],[-78.8393173183822,43.0194338301872],[-78.84175448907179,43.018901144768115],[-78.84614139631307,43.0194338301872],[-78.85125945476125,43.019256268380836],[-78.85710866441629,43.02218603818578],[-78.86100813751965,43.02289628541122],[-78.8705131032091,43.02271872360486],[-78.87185354708838,43.022452380895324],[-78.87624045432966,43.02156457186352],[-78.87745903967446,43.0216533527667],[-78.87989621036407,43.02183091457306],[-78.88099293717438,43.0225411617985],[-78.8901323272604,43.02191969547624],[-78.8901323272604,43.02520458889391],[-78.89208206381208,43.03408267921193],[-78.89305693208792,43.037811477145496],[-78.8962252539844,43.04411492127129],[-78.90585207820833,43.051572517138425],[-78.9115794293289,43.05476862965291],[-78.9452123848454,43.0669316133886],[-78.94996486769013,43.0678194224204],[-78.97555515993095,43.0682633269363],[-78.98579127682727,43.06852966964584],[-78.99042190113752,43.06879601235538],[-79.00967554958538,43.069595040484],[-79.02381113958506,43.067197956098134],[-79.02697946148155,43.067908203323576],[-79.03977460760196,43.07057163041898],[-79.0450145245846,43.071637001257145],[-79.07450428992878,43.07785166447976],[-79.07462614846327,43.082201928735586],[-79.07462614846327,43.08317851867057],[-79.06962994854959,43.08832781105502],[-79.06499932423934,43.09294441802039],[-79.06475560717038,43.09321076072993],[-79.06439003156694,43.094276131568094],[-79.06378073889454,43.09587418782534],[-79.06024684139462,43.10510740175607],[-79.0609779926015,43.109102542399185],[-79.06134356820493,43.11105572226914],[-79.06195286087734,43.11531720562179],[-79.06256215354973,43.12020015529671],[-79.06024684139462,43.12481676226207],[-79.0567129438947,43.12685872303522],[-79.05208231958446,43.13209679632285],[-79.04952329036037,43.1350265661278],[-79.04403965630877,43.138045116835926],[-79.04233363682604,43.143638313736275],[-79.04282107096397,43.14914272973345],[-79.04452709044668,43.15322665127973],[-79.04659868553284,43.162371084307296],[-79.04842656355005,43.164679387789974],[-79.05256975372237,43.172758449979376],[-79.05256975372237,43.172758449979376],[-79.05305718786029,43.17364625901118],[-79.05281347079134,43.178351646879726],[-79.05281347079134,43.179150675008344],[-79.05256975372237,43.18367850107054],[-79.05135116837756,43.19291171500127],[-79.05074187570517,43.19743954106347],[-79.05196046104997,43.2040093278988],[-79.05305718786029,43.20969130570233],[-79.0529353293258,43.21803671060127],[-79.05281347079134,43.222031851244374],[-79.0554943585499,43.23676948117229],[-79.05585993415333,43.23854509923589],[-79.06134356820493,43.251329549293835],[-79.06256215354973,43.2528388246479],[-79.06268401208422,43.2528388246479],[-79.07048295829095,43.26242716219136],[-79.02027724208514,43.273613555992064],[-79.01978980794722,43.27370233689524],[-79.00199846191313,43.27645454489383],[-78.97189940389654,43.28124871366556],[-78.95276761398317,43.28684191056591],[-78.93071121924227,43.293234135594886],[-78.90073401976016,43.30069173146202],[-78.85930211803694,43.31099031623092],[-78.85333104984741,43.312943496100885],[-78.83627085502019,43.31844791209806],[-78.83602713795123,43.318359131194875],[-78.83407740139955,43.317560103066256],[-78.82603473812387,43.318891816613956],[-78.82042924553778,43.31986840654894],[-78.8203073870033,43.31986840654894],[-78.81628605536545,43.32057865377438],[-78.80166303122785,43.322975738160245],[-78.77777875846974,43.327059659706535],[-78.75438191984956,43.33274163751007],[-78.74719226631524,43.33451725557367],[-78.71831179364345,43.3384236153136],[-78.69686469157496,43.34126460421536],[-78.69394008674743,43.3419748514408],[-78.69381822821295,43.34206363234399],[-78.63483869752459,43.357511509497336],[-78.63435126338666,43.35760029040052],[-78.62472443916273,43.35893200394822],[-78.56501375726748,43.3670998470408],[-78.54734426976788,43.36949693142666],[-78.53625514313018,43.37056230226482],[-78.53454912364747,43.370651083168006],[-78.51809822149265,43.372160358522066],[-78.48885217321742,43.374735004714296],[-78.48787730494158,43.374735004714296],[-78.48251552942446,43.37446866200475],[-78.47386357347636,43.371094987683904],[-78.47313242226949,43.37082864497437],[-78.46545533459724,43.371272549490264]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-77.99483767443509,43.36523544807402],[-77.9764370357286,43.36914180781394],[-77.97083154314251,43.36860912239486],[-77.97034410900459,43.36852034149168],[-77.96522605055642,43.36807643697578],[-77.95291833857394,43.36345983001041],[-77.92269742202288,43.356978824078254],[-77.90478421745429,43.356978824078254],[-77.89137977866149,43.35360514975741],[-77.87529445211011,43.349698790017484],[-77.8165586384907,43.34357290769805],[-77.80888155081846,43.34206363234399],[-77.79742684857733,43.339844109764485],[-77.78511913659484,43.33922264344222],[-77.77451744409507,43.34011045247402],[-77.77439558556058,43.34011045247402],[-77.7602599955609,43.341175823312184],[-77.75696981512993,43.33735824447544],[-77.74843971771632,43.335049940992754],[-77.73064837168224,43.33016699131784],[-77.71407561099294,43.32359720448251],[-77.70140232340701,43.30823810823234],[-77.69933072832085,43.306995175587815],[-77.68446398711427,43.29785074256026],[-77.67751805064891,43.29358925920761],[-77.66033599728722,43.283024331729166],[-77.65521793883904,43.280272123730576],[-77.65375563642529,43.27947309560196],[-77.64437252927033,43.27645454489383],[-77.64437252927033,43.27645454489383],[-77.64096049030488,43.27538917405567],[-77.63913261228768,43.2747677077334],[-77.62828720271895,43.27130525250938],[-77.62207241746046,43.267842797285354],[-77.60428107142637,43.25807689793553],[-77.60367177875396,43.257810555225994],[-77.60208761780572,43.25692274619419],[-77.59136406677148,43.250974425681115],[-77.57722847677178,43.24325048710444],[-77.57710661823731,43.24325048710444],[-77.55102889185856,43.2357928912373],[-77.54993216504825,43.235704110334126],[-77.53421241410031,43.23454995859278],[-77.53384683849687,43.23472752039914],[-77.52531674108326,43.23872266104225],[-77.51020628280773,43.245913914199846],[-77.50703796091125,43.247423189553906],[-77.50094503418724,43.25035295935886],[-77.4766951858257,43.25452566180832],[-77.46414375677425,43.25807689793553],[-77.46414375677425,43.25807689793553],[-77.45731967884336,43.25994129690231],[-77.45573551789512,43.26038520141822],[-77.45147046918832,43.261539353159556],[-77.4368474450507,43.26571205560903],[-77.4368474450507,43.26571205560903],[-77.42539274280958,43.26757645457581],[-77.41454733324085,43.26926329173624],[-77.4007773188446,43.273435994185704],[-77.39102863608619,43.27636576399065],[-77.3854231435001,43.27680966850655],[-77.37518702660378,43.277697477538354],[-77.37494330953481,43.27778625844153],[-77.37469959246586,43.27778625844153],[-77.37469959246586,43.269884758058495],[-77.37469959246586,43.269174510833054],[-77.37469959246586,43.26739889276945],[-77.37469959246586,43.26606717922175],[-77.37469959246586,43.255413470840125],[-77.37469959246586,43.25310516735744],[-77.37469959246586,43.25008661664931],[-77.37469959246586,43.24396073432988],[-77.37469959246586,43.24085340271858],[-77.37469959246586,43.236503138462744],[-77.37469959246586,43.23383971136734],[-77.37469959246586,43.231265065175116],[-77.37469959246586,43.2259382109843],[-77.37469959246586,43.22558308737158],[-77.37469959246586,43.2246064974366],[-77.37469959246586,43.22167672763165],[-77.37469959246586,43.219190862342614],[-77.37469959246586,43.215639626215406],[-77.37469959246586,43.21146692376593],[-77.37469959246586,43.20969130570233],[-77.37469959246586,43.20942496299279],[-77.37469959246586,43.202677614351096],[-77.37469959246586,43.196196608418944],[-77.37469959246586,43.192822934098096],[-77.37469959246586,43.18882779345499],[-77.37469959246586,43.182790692038736],[-77.37469959246586,43.17897311320199],[-77.37457773393137,43.16707647217584],[-77.37457773393137,43.16654378675676],[-77.37457773393137,43.16041790443733],[-77.37421215832794,43.145147589090335],[-77.37396844125898,43.139731953996346],[-77.37396844125898,43.13831145954546],[-77.37360286565554,43.131031425484686],[-77.37348100712106,43.126947503938396],[-77.37335914858657,43.123218706004835],[-77.37335914858657,43.123041144198474],[-77.37335914858657,43.12277480148893],[-77.37311543151762,43.109013761496],[-77.37299357298313,43.10741570523876],[-77.37250613884521,43.095785406922154],[-77.3720187047073,43.07696385544796],[-77.3720187047073,43.076253608222515],[-77.3720187047073,43.075720922803434],[-77.3720187047073,43.07563214190025],[-77.37177498763833,43.06435696719637],[-77.37177498763833,43.06267013003595],[-77.37153127056938,43.053614477911566],[-77.3714094120349,43.043404674045846],[-77.3714094120349,43.041717836885425],[-77.3714094120349,43.039498314305916],[-77.37128755350041,43.03736757262959],[-77.37128755350041,43.03719001082323],[-77.37128755350041,43.034704145534185],[-77.39980245056876,43.034526583727825],[-77.42088397703381,43.03461536463101],[-77.44489010832639,43.034704145534185],[-77.48546900030827,43.034526583727825],[-77.48437227349795,42.99803763252077],[-77.48425041496347,42.985697086978725],[-77.48412855642898,42.9831224407865],[-77.48376298082555,42.97664143485435],[-77.48254439548074,42.943171034355416],[-77.53250639461758,42.9437037197745],[-77.55578137470329,42.94388128158086],[-77.58051865720275,42.94397006248404],[-77.58149352547859,42.94397006248404],[-77.60732753478837,42.94405884338722],[-77.61208001763309,42.9441476242904],[-77.63498942211535,42.94450274790312],[-77.63754845133944,42.93997492184093],[-77.67032839711459,42.94015248364729],[-77.70042745513116,42.94024126455047],[-77.75867583461266,42.94041882635683],[-77.76038185409537,42.943171034355416],[-77.75867583461266,42.9445915288063],[-77.75294848349209,42.945568118741285],[-77.74904901038873,42.94397006248404],[-77.74222493245784,42.94476909061266],[-77.73844731788896,42.94769886041761],[-77.73247624969943,42.945035433322204],[-77.73113580582016,42.94716617499853],[-77.7307702302167,42.94849788854623],[-77.73430412771664,42.95462377086566],[-77.73308554237184,42.95568914170382],[-77.73162323995807,42.9553340180911],[-77.72857677659607,42.95293693370524],[-77.72504287909615,42.959329158734214],[-77.72626146444095,42.965455041053644],[-77.72394615228583,42.97211360879216],[-77.71870623530319,42.971758485179436],[-77.71834065969975,42.97317897963032],[-77.71870623530319,42.97539850220983],[-77.72126526452726,42.979748766465654],[-77.73259810823392,42.98187950814198],[-77.73186695702704,42.984542935237386],[-77.7307702302167,42.98836051407413],[-77.77171469780203,42.98836051407413],[-77.82460130176639,42.988094171364594],[-77.85396920857609,42.98791660955823],[-77.85543151098986,42.98791660955823],[-77.85847797435186,42.98782782865505],[-77.86018399383458,42.98800539046141],[-77.86469275961035,42.985874648785085],[-77.86578948642067,42.98782782865505],[-77.90978041736798,42.98773904775187],[-77.90978041736798,42.990491255750456],[-77.9096585588335,42.994220053684025],[-77.9096585588335,42.99466395819992],[-77.90941484176454,43.00247667767978],[-77.90795253935077,43.00221033497024],[-77.90758696374733,43.0028318012925],[-77.90563722719565,43.023517751733486],[-77.90454050038534,43.023517751733486],[-77.90478421745429,43.030620223987896],[-77.9041749247819,43.03701244901687],[-77.90868369055767,43.037278791726415],[-77.91282688072998,43.037456353532775],[-77.92574388538488,43.03816660075822],[-77.95109046055674,43.0395870952091],[-77.9482877142637,43.04518029210945],[-77.934152124264,43.07430042835255],[-77.92903406581584,43.08522047944371],[-77.92854663167792,43.08619706937869],[-77.92659689512624,43.090369771828165],[-77.92391600736768,43.095962968728514],[-77.91258316366103,43.1197562507808],[-77.90807439788526,43.129344588324265],[-77.9078306808163,43.12996605464652],[-77.90588094426462,43.13351729077373],[-77.90978041736798,43.13351729077373],[-77.93939204124665,43.13298460535465],[-77.95901126529795,43.13333972896737],[-77.98716058676284,43.133073386257834],[-77.99727484512469,43.13298460535465],[-77.99727484512469,43.13653584148186],[-77.99715298659021,43.14470368457444],[-77.99690926952125,43.19779466467619],[-77.99690926952125,43.19921515912707],[-77.99690926952125,43.202855176157456],[-77.99690926952125,43.21350888453908],[-77.99690926952125,43.214929378989964],[-77.99690926952125,43.215639626215406],[-77.99690926952125,43.21777036789173],[-77.99690926952125,43.21945720505215],[-77.99690926952125,43.22061135679349],[-77.99690926952125,43.22167672763165],[-77.99690926952125,43.222031851244374],[-77.99678741098677,43.22425137382388],[-77.99690926952125,43.227181143628826],[-77.99690926952125,43.23037725614331],[-77.99678741098677,43.24005437458995],[-77.9966655524523,43.250796863874754],[-77.9966655524523,43.254880785421044],[-77.99629997684886,43.26659986464083],[-77.99581254271094,43.28488873069595],[-77.99581254271094,43.28746337688817],[-77.99556882564197,43.29554243907757],[-77.9954469671075,43.30184588320336],[-77.99532510857301,43.31534058048675],[-77.99508139150406,43.32350842357933],[-77.99495953296957,43.32919040138286],[-77.99483767443509,43.342685098666244],[-77.99508139150406,43.355469548724194],[-77.99483767443509,43.36523544807402]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.72251271592836,43.34366168860123],[-76.72202528179044,43.3375358062818],[-76.72153784765251,43.33158748576872],[-76.71995368670427,43.313920086035864],[-76.71934439403188,43.30486443391149],[-76.71739465748018,43.282136522697364],[-76.71702908187675,43.278052601151074],[-76.71568863799747,43.278052601151074],[-76.71447005265267,43.263758875739065],[-76.71386075998026,43.25656762258147],[-76.7137389014458,43.25470322361468],[-76.71312960877339,43.249465150327055],[-76.71276403316995,43.24182999265356],[-76.71264217463546,43.24023193639631],[-76.71252031610099,43.23801241381681],[-76.71191102342858,43.231620188787836],[-76.7111798722217,43.221055261309395],[-76.71008314541139,43.2053410414465],[-76.70983942834242,43.20054687267477],[-76.70959571127347,43.19610782751576],[-76.7075241161873,43.16174961798503],[-76.70728039911835,43.15597885927832],[-76.70691482351491,43.15091834779705],[-76.70679296498042,43.14843248250801],[-76.70606181377354,43.13706852690094],[-76.7056962381701,43.13138654909741],[-76.70533066256667,43.12552700948751],[-76.70533066256667,43.12250845877939],[-76.70520880403218,43.12233089697303],[-76.7044776528253,43.110256694140524],[-76.70411207722186,43.105995210787874],[-76.70374650161843,43.09969176666208],[-76.7032590674805,43.09338832253629],[-76.70301535041153,43.09028099092498],[-76.70277163334258,43.08566438395961],[-76.70240605773914,43.0807814342847],[-76.70593995523906,43.07074919222534],[-76.71057057954931,43.06932869777446],[-76.7130077502389,43.06764186061404],[-76.71568863799747,43.06453452900273],[-76.71690722334228,43.063646719970926],[-76.71776023308364,43.062758910939124],[-76.71690722334228,43.056189124103796],[-76.71897881842844,43.041895398691786],[-76.71910067696291,43.03736757262959],[-76.71861324282499,43.033372431986486],[-76.71386075998026,43.02405043715257],[-76.71434819411819,43.02405043715257],[-76.74408167653134,43.022985066314405],[-76.75309920808286,43.02271872360486],[-76.79672456342674,43.02112066734762],[-76.80683882178859,43.02067676283172],[-76.81451590946084,43.020232858315815],[-76.85875055747711,43.01845724025222],[-76.85948170868399,43.018368459349034],[-76.87861349859736,43.01765821212359],[-76.91224645411387,43.01597137496317],[-76.96379261419895,43.013130386061405],[-76.98402113092266,43.012952824255045],[-77.00559009152563,43.01286404335186],[-77.01485134014612,43.01286404335186],[-77.02325957902525,43.01286404335186],[-77.0253311741114,43.01286404335186],[-77.03325197885262,43.012775262448685],[-77.05689253454176,43.0126864815455],[-77.05798926135208,43.0126864815455],[-77.07907078781713,43.012597700642324],[-77.09345009488578,43.012597700642324],[-77.10636709954068,43.012597700642324],[-77.12220870902308,43.01250891973914],[-77.12233056755757,43.01250891973914],[-77.13341969419525,43.012420138835964],[-77.13341969419525,43.01534990864091],[-77.13415084540213,43.03985343791864],[-77.13573500635037,43.03985343791864],[-77.17996965436666,43.03985343791864],[-77.1846002786769,43.03985343791864],[-77.18606258109067,43.03985343791864],[-77.18618443962514,43.03976465701546],[-77.2157960635038,43.03967587611228],[-77.21591792203829,43.03976465701546],[-77.2317595315207,43.03976465701546],[-77.24662627272727,43.03976465701546],[-77.24674813126175,43.034704145534185],[-77.25722796522705,43.034704145534185],[-77.26466133583033,43.034704145534185],[-77.30195004738124,43.034704145534185],[-77.3076773985018,43.034704145534185],[-77.31437961789821,43.034704145534185],[-77.33424255901846,43.034704145534185],[-77.34496611005271,43.034704145534185],[-77.37128755350041,43.034704145534185],[-77.37128755350041,43.03719001082323],[-77.37128755350041,43.03736757262959],[-77.3714094120349,43.039498314305916],[-77.3714094120349,43.041717836885425],[-77.3714094120349,43.043404674045846],[-77.37153127056938,43.053614477911566],[-77.37177498763833,43.06267013003595],[-77.37177498763833,43.06435696719637],[-77.3720187047073,43.07563214190025],[-77.3720187047073,43.075720922803434],[-77.3720187047073,43.076253608222515],[-77.3720187047073,43.07696385544796],[-77.37250613884521,43.095785406922154],[-77.37299357298313,43.10741570523876],[-77.37311543151762,43.109013761496],[-77.37335914858657,43.12277480148893],[-77.37335914858657,43.123041144198474],[-77.37335914858657,43.123218706004835],[-77.37348100712106,43.126947503938396],[-77.37360286565554,43.131031425484686],[-77.37396844125898,43.13831145954546],[-77.37396844125898,43.139731953996346],[-77.37421215832794,43.145147589090335],[-77.37457773393137,43.16041790443733],[-77.37457773393137,43.16654378675676],[-77.37457773393137,43.16707647217584],[-77.37469959246586,43.17897311320199],[-77.37469959246586,43.182790692038736],[-77.37469959246586,43.18882779345499],[-77.37469959246586,43.192822934098096],[-77.37469959246586,43.196196608418944],[-77.37469959246586,43.202677614351096],[-77.37469959246586,43.20942496299279],[-77.37469959246586,43.20969130570233],[-77.37469959246586,43.21146692376593],[-77.37469959246586,43.215639626215406],[-77.37469959246586,43.219190862342614],[-77.37469959246586,43.22167672763165],[-77.37469959246586,43.2246064974366],[-77.37469959246586,43.22558308737158],[-77.37469959246586,43.2259382109843],[-77.37469959246586,43.231265065175116],[-77.37469959246586,43.23383971136734],[-77.37469959246586,43.236503138462744],[-77.37469959246586,43.24085340271858],[-77.37469959246586,43.24396073432988],[-77.37469959246586,43.25008661664931],[-77.37469959246586,43.25310516735744],[-77.37469959246586,43.255413470840125],[-77.37469959246586,43.26606717922175],[-77.37469959246586,43.26739889276945],[-77.37469959246586,43.269174510833054],[-77.37469959246586,43.269884758058495],[-77.37469959246586,43.27778625844153],[-77.34447867591479,43.28036090463376],[-77.3413103540183,43.2806272473433],[-77.34106663694935,43.2806272473433],[-77.31462333496717,43.2810711518592],[-77.31096757893276,43.280094561924216],[-77.3040216424674,43.27814138205425],[-77.29037348660563,43.277875039344714],[-77.28342755014026,43.27778625844153],[-77.27696904781281,43.27760869663517],[-77.2641739016924,43.27734235392563],[-77.25235362384784,43.27894041018288],[-77.24942901902031,43.279384314698774],[-77.2396803362619,43.2806272473433],[-77.21409004402108,43.28408970256733],[-77.2078752587626,43.28373457895461],[-77.1956894053146,43.28293555082598],[-77.18655001522858,43.2824028654069],[-77.18411284453897,43.28222530360054],[-77.1741204447116,43.28160383727828],[-77.17314557643577,43.2815150563751],[-77.17278000083233,43.28160383727828],[-77.17046468867721,43.28204774179418],[-77.14341209402262,43.28755215779135],[-77.13890332824685,43.28684191056591],[-77.13451642100557,43.286220444243654],[-77.13220110885045,43.28586532063093],[-77.13110438204014,43.28577653972775],[-77.13037323083326,43.28559897792139],[-77.12964207962638,43.285687758824565],[-77.12891092841949,43.28586532063093],[-77.1190403871266,43.28701947237227],[-77.11185073359228,43.287907281404074],[-77.11160701652332,43.287907281404074],[-77.09674027531675,43.28559897792139],[-77.09405938755819,43.28515507340549],[-77.0872353096273,43.28408970256733],[-77.07370901230001,43.281958960891004],[-77.06725050997257,43.28089359005284],[-77.05323677850735,43.27689844940973],[-77.04641270057647,43.27485648863659],[-77.03386127152501,43.2712164716062],[-77.02435630583557,43.27130525250938],[-77.00875841342211,43.27139403341256],[-76.99974088187058,43.27148281431574],[-76.98840803816394,43.274501365023866],[-76.9806090919572,43.27334721328252],[-76.9751254579056,43.2725481851539],[-76.96391447273344,43.27086134799348],[-76.96354889713,43.2707725670903],[-76.95843083868183,43.26997353896168],[-76.95294720463022,43.27059500528394],[-76.95221605342334,43.27068378618712],[-76.95160676075095,43.27095012889666],[-76.93710559514781,43.277875039344714],[-76.92236071247572,43.28497751159913],[-76.90627538592435,43.29101461301538],[-76.90603166885539,43.29110339391856],[-76.90432564937267,43.291813641144],[-76.88689987894202,43.293855601917144],[-76.88519385945929,43.29376682101397],[-76.87739491325256,43.29296779288534],[-76.85497294290822,43.298472208882515],[-76.8416903626499,43.30539711933057],[-76.83267283109836,43.30619614745919],[-76.80781369006442,43.3084156700387],[-76.79465296834057,43.30965860268322],[-76.78149224661672,43.31418642874541],[-76.77089055411696,43.31782644577579],[-76.76955011023767,43.3182703502917],[-76.76906267609975,43.31844791209806],[-76.76126372989303,43.32306451906343],[-76.75931399334135,43.32421867080477],[-76.74700628135885,43.331498704865545],[-76.73421113523844,43.340998261505824],[-76.73165210601437,43.34295144137579],[-76.73104281334196,43.343395345891686],[-76.73055537920405,43.343395345891686],[-76.72251271592836,43.34366168860123]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.71257804821357,43.28613166334047],[-74.71306548235148,43.28897265224224],[-74.70538839467923,43.28639800605001],[-74.53466458787261,43.22815773356381],[-74.5329585683899,43.22869041898289],[-74.51748253451092,43.22948944711151],[-74.5133393443386,43.229755789821056],[-74.48433701313233,43.2313538460783],[-74.45777185261568,43.23286312143236],[-74.35736042020407,43.239610470074055],[-74.35699484460064,43.239610470074055],[-74.34627129356639,43.24067584091222],[-74.3345728742563,43.24156364994402],[-74.32640835244612,43.241652430847196],[-74.32238702080828,43.21466303628042],[-74.2959437188261,43.216438654344024],[-74.29265353839514,43.216616216150385],[-74.22087886158636,43.221410384922116],[-74.22416904201732,43.24813343677935],[-74.20978973494867,43.249287588520694],[-74.20065034486267,43.24990905484295],[-74.19382626693178,43.25035295935886],[-74.14008665322605,43.25399297638924],[-74.13935550201917,43.249287588520694],[-74.1360653215882,43.22895676169243],[-74.1348467362434,43.22158794672848],[-74.1348467362434,43.22132160401893],[-74.131190980209,43.197883445579365],[-74.13094726314004,43.19735076016028],[-74.12948496072629,43.187673641713644],[-74.12948496072629,43.187496079907284],[-74.12838823391596,43.17994970313697],[-74.12802265831252,43.177463837847924],[-74.12802265831252,43.1771087142352],[-74.12777894124356,43.17551065797796],[-74.12765708270908,43.1748891916557],[-74.12741336564012,43.173202354495274],[-74.12729150710564,43.17284723088255],[-74.12680407296772,43.16973989927125],[-74.12668221443325,43.16876330933626],[-74.12619478029532,43.16512329230588],[-74.12436690227811,43.15393689850517],[-74.12400132667467,43.15207249953839],[-74.12339203400228,43.14834370160482],[-74.12278274132987,43.14372709463945],[-74.1152275121921,43.095785406922154],[-74.11461821951971,43.091701485375864],[-74.11425264391627,43.089837086409084],[-74.11059688788187,43.06675405158224],[-74.10998759520946,43.06249256822959],[-74.1048695367613,43.0288446059243],[-74.10194493193377,43.01250891973914],[-74.10194493193377,43.01162111070734],[-74.1018230733993,43.0109108634819],[-74.10170121486482,43.010378178062815],[-74.10170121486482,43.01028939715964],[-74.10109192219242,43.00638303741971],[-74.09804545883041,42.98676245781689],[-74.09743616615802,42.98294487898014],[-74.10560068796818,42.98285609807696],[-74.10596626357162,42.98285609807696],[-74.11242476589906,42.98285609807696],[-74.12461061934708,42.98285609807696],[-74.14337683365702,42.98303365988332],[-74.14886046770862,42.9831224407865],[-74.15044462865686,42.9831224407865],[-74.16299605770831,42.98330000259286],[-74.16640809667375,42.98330000259286],[-74.17042942831159,42.98338878349604],[-74.18785519874226,42.98347756439922],[-74.21100832029347,42.98365512620558],[-74.23208984675853,42.98409903072148],[-74.2469565879651,42.984010249818304],[-74.26328563158543,42.98427659252784],[-74.26864740710256,42.984365373431025],[-74.28936335796418,42.9844541543342],[-74.36357520546255,42.98463171614056],[-74.36369706399704,42.98463171614056],[-74.3742987564968,42.984720497043746],[-74.3884343464965,42.984720497043746],[-74.4086628632202,42.984720497043746],[-74.4092721558926,42.98543074426919],[-74.41097817537532,42.984720497043746],[-74.41146560951324,42.984720497043746],[-74.4153650826166,42.984720497043746],[-74.42913509701285,42.98480927794692],[-74.4888457789081,42.98507562065647],[-74.53527388054502,42.985341963366004],[-74.5372236170967,42.98543074426919],[-74.53771105123462,42.98543074426919],[-74.54221981701039,42.98543074426919],[-74.56025488011343,42.99040247484727],[-74.56098603132033,42.99058003665364],[-74.57170958235457,42.99359858736176],[-74.57609648959586,42.99484152000628],[-74.58121454804402,42.996262014457166],[-74.5825549919233,42.99679469987625],[-74.58718561623354,42.998126413423954],[-74.60412395252628,43.00318692490522],[-74.60619554761244,43.00380839122748],[-74.6382443421807,43.01286404335186],[-74.66103188812848,43.01934504928401],[-74.71550265304109,43.03479292643737],[-74.72720107235118,43.03816660075822],[-74.74962304269552,43.04500273030309],[-74.75998101812633,43.04739981468895],[-74.76388049122968,43.05494619145927],[-74.76375863269521,43.057875961264216],[-74.76254004735041,43.05867498939284],[-74.76241818881593,43.05965157932782],[-74.76339305709178,43.06089451197234],[-74.76558651071241,43.062315006423226],[-74.76680509605721,43.063824281777286],[-74.76985155941921,43.065688680744074],[-74.77009527648818,43.0691511359681],[-74.7693641252813,43.0722584675794],[-74.77021713502265,43.07492189467481],[-74.77423846666049,43.07847313080202],[-74.77423846666049,43.080159967962445],[-74.77423846666049,43.08229070963877],[-74.77375103252258,43.08335608047693],[-74.77021713502265,43.087262440216854],[-74.76619580338482,43.08948196279636],[-74.76583022778136,43.09010342911862],[-74.76607394485033,43.09161270447269],[-74.76851111553994,43.09907030033982],[-74.76972970088474,43.101733727435224],[-74.76863297407441,43.102621536467026],[-74.76972970088474,43.10457471633699],[-74.76948598381577,43.10564008717515],[-74.76765810579857,43.109457666011906],[-74.76777996433304,43.110434255946885],[-74.77021713502265,43.11220987401049],[-74.77009527648818,43.11327524484865],[-74.76924226674682,43.11407427297727],[-74.76522093510897,43.11460695839635],[-74.76034659372976,43.11389671117091],[-74.75851871571257,43.11407427297727],[-74.75742198890224,43.11513964381543],[-74.75717827183328,43.11682648097586],[-74.75876243278152,43.1179806327172],[-74.75900614985048,43.11940112716808],[-74.75851871571257,43.119667469877626],[-74.75084162804032,43.12055527890943],[-74.74389569157495,43.120288936199884],[-74.73950878433367,43.123041144198474],[-74.73975250140263,43.123573829617555],[-74.73853391605783,43.124550419552534],[-74.73256284786831,43.124550419552534],[-74.73110054545454,43.12348504871437],[-74.7295163845063,43.123396267811195],[-74.72841965769598,43.12463920045572],[-74.7282977991615,43.126237256712955],[-74.73024753571318,43.12845677929246],[-74.73305028200622,43.133250948064195],[-74.73573116976479,43.143638313736275],[-74.73536559416135,43.14408221825217],[-74.7270792138167,43.14568027450942],[-74.72378903338574,43.14541393179988],[-74.71988956028237,43.14834370160482],[-74.70953158485156,43.149409072442985],[-74.7080692824378,43.15003053876525],[-74.70843485804124,43.15118469050659],[-74.71379663355836,43.157221791922844],[-74.71818354079966,43.15997399992143],[-74.71842725786861,43.162548646113656],[-74.7178179651962,43.165389635015416],[-74.71294362381701,43.17009502288397],[-74.7092878677826,43.172225764560295],[-74.70648512148956,43.17302479268891],[-74.70295122398964,43.17293601178574],[-74.7025856483862,43.17213698365711],[-74.70039219476556,43.172403326366656],[-74.69600528752427,43.17364625901118],[-74.69551785338635,43.174090163527076],[-74.69515227778291,43.17639846700976],[-74.69612714605876,43.17968336042743],[-74.70770370683437,43.247423189553906],[-74.71257804821357,43.28613166334047]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.99343310413391,43.183412158360994],[-75.99087407490983,43.18137019758785],[-75.98965548956502,43.17923945591153],[-75.9923363773236,43.17524431526842],[-75.99258009439255,43.17382382081754],[-75.99197080172014,43.17293601178574],[-75.98941177249607,43.17151551733485],[-75.98575601646166,43.171693079141214],[-75.98319698723758,43.173379916301634],[-75.98210026042726,43.173202354495274],[-75.97990680680662,43.17124917462531],[-75.97929751413422,43.17009502288397],[-75.98100353361694,43.1676979384981],[-75.97844450439285,43.1676979384981],[-75.97807892878942,43.16734281488538],[-75.9782007873239,43.16707647217584],[-75.97491060689293,43.16361401695182],[-75.97442317275501,43.163170112435914],[-75.97466688982398,43.16192717979139],[-75.97673848491013,43.16024034263097],[-75.97746963611702,43.15881984818009],[-75.97661662637566,43.15766569643874],[-75.9714985679275,43.155002269343335],[-75.97125485085853,43.153848117601996],[-75.97332644594469,43.14914272973345],[-75.97283901180677,43.14745589257302],[-75.97259529473781,43.1457690554126],[-75.97186414353094,43.144437341864894],[-75.97210786059989,43.14337197102673],[-75.97515432396189,43.14195147657585],[-75.97710406051358,43.140175858512244],[-75.97710406051358,43.13609193696596],[-75.9757636166343,43.13609193696596],[-75.97357016301365,43.13742365051366],[-75.97503246542742,43.138666583158184],[-75.97503246542742,43.13911048767409],[-75.9745450312895,43.139731953996346],[-75.9719860020654,43.140353420318604],[-75.97015812404821,43.139021706770905],[-75.96893953870341,43.13644706057868],[-75.96796467042756,43.135470470643696],[-75.96674608508276,43.134760223418255],[-75.96126245103116,43.133783633483276],[-75.95748483646229,43.13449388070872],[-75.95626625111748,43.1359143751596],[-75.95139190973828,43.13564803245006],[-75.95017332439348,43.1350265661278],[-75.95078261706587,43.13165289180695],[-75.9585815632726,43.12801287477656],[-75.95894713887604,43.125083104971615],[-75.96077501689324,43.123218706004835],[-75.96004386568636,43.122863582392114],[-75.9585815632726,43.12348504871437],[-75.95724111939332,43.12197577336031],[-75.95480394870371,43.11718160458858],[-75.956144392583,43.11549476742815],[-75.96016572422084,43.115405986524976],[-75.96321218758284,43.11744794729812],[-75.96369962172076,43.11957868897444],[-75.96552749973797,43.11957868897444],[-75.96564935827244,43.116737700072676],[-75.96893953870341,43.11087816046279],[-75.9719860020654,43.109102542399185],[-75.97210786059989,43.10839229517374],[-75.9707674167206,43.10750448614194],[-75.97235157766885,43.10741570523876],[-75.97308272887574,43.106705458013316],[-75.97283901180677,43.105995210787874],[-75.9719860020654,43.10564008717515],[-75.9719860020654,43.104663497240175],[-75.97551989956534,43.10359812640201],[-75.97588547516878,43.10342056459565],[-75.97661662637566,43.10306544098293],[-75.9769822019791,43.094098569761734],[-75.97588547516878,43.09347710343947],[-75.97686034344461,43.09303319892357],[-75.97539804103086,43.090902457247246],[-75.96077501689324,43.08868293466774],[-75.9616280266346,43.085753164862794],[-75.95419465603132,43.087972687442296],[-75.95395093896235,43.0888604964741],[-75.95127005120379,43.087440002023214],[-75.94858916344523,43.08690731660413],[-75.94712686103148,43.08903805828046],[-75.9415213684454,43.08690731660413],[-75.93823118801443,43.08690731660413],[-75.93786561241099,43.0888604964741],[-75.93689074413514,43.087972687442296],[-75.93445357344554,43.08717365931368],[-75.9328694124973,43.08806146834548],[-75.93055410034218,43.08832781105502],[-75.92957923206633,43.08735122112004],[-75.92921365646289,43.0888604964741],[-75.92689834430777,43.090547333634525],[-75.92019612491137,43.090014648215444],[-75.91727152008384,43.086108288475515],[-75.91727152008384,43.085930726669154],[-75.91629665180801,43.07483311377163],[-75.91459063232529,43.05068470810662],[-75.91398133965288,43.041185151466344],[-75.91288461284256,43.02715776876387],[-75.91288461284256,43.02680264515115],[-75.9120316031012,43.014639661415465],[-75.91190974456673,43.01197623432006],[-75.91154416896327,43.00664938012925],[-75.91056930068744,42.98942588491229],[-75.9089851397392,42.965455041053644],[-75.90886328120472,42.96367942299004],[-75.90861956413576,42.95861891150877],[-75.90801027146335,42.952670590995695],[-75.9059386763772,42.91999921862539],[-75.90557310077375,42.91431724082186],[-75.9022829203428,42.87054825555403],[-75.90203920327383,42.865754086782296],[-75.90167362767039,42.86193650794555],[-75.90045504232559,42.84861937246852],[-75.8986271643084,42.82580268035122],[-75.89850530577391,42.82313925325581],[-75.89777415456703,42.81346213480917],[-75.89692114482567,42.801299151073486],[-75.8960681350843,42.79100056630458],[-75.91654036887697,42.78975763366006],[-75.92178028585961,42.78940251004734],[-76.00525338197848,42.78487468398515],[-76.01232117697833,42.78460834127561],[-76.08019638068374,42.78158979056748],[-76.08019638068374,42.77999173431024],[-76.12662448232066,42.777949773537095],[-76.15501752085453,42.77661805998939],[-76.19596198843983,42.77475366102261],[-76.23142282197355,42.77306682386219],[-76.24409610955948,42.772534138443106],[-76.25323549964548,42.772001453024025],[-76.25981586050742,42.771646329411304],[-76.27468260171398,42.77129120579858],[-76.27529189438638,42.78043563882614],[-76.27906950895527,42.78585127392013],[-76.29198651361015,42.800766465654405],[-76.29881059154104,42.80742503339292],[-76.30575652800641,42.81337335390599],[-76.31550521076481,42.8200319216445],[-76.32976265929899,42.8294426973816],[-76.35705897102252,42.849418400597145],[-76.37253500490151,42.84888571517806],[-76.39069192653903,42.84817546795262],[-76.40543680921114,42.84755400163036],[-76.41932868214187,42.847021316211276],[-76.43943534033107,42.846311068985834],[-76.44491897438269,42.8460447262763],[-76.44772172067573,42.84595594537311],[-76.45076818403773,42.84577838356675],[-76.45174305231357,42.85829649091516],[-76.45600810102037,42.912541622758255],[-76.45734854489966,42.92843340442751],[-76.45747040343413,42.92949877526567],[-76.45856713024446,42.9432598152586],[-76.4595419985203,42.95835256879923],[-76.46039500826166,42.96918383898721],[-76.46173545214094,42.98614099149463],[-76.46234474481334,42.99501908181264],[-76.4625884618823,43.000523497809816],[-76.46295403748574,43.006294256516526],[-76.491956368692,43.004962542968826],[-76.49268751989888,43.01534990864091],[-76.49329681257129,43.024849465281186],[-76.49378424670921,43.031508033019705],[-76.49463725645056,43.04393735946493],[-76.49512469058848,43.04970811817164],[-76.49658699300225,43.066576489775876],[-76.49719628567465,43.07474433286845],[-76.49926788076081,43.09720590137304],[-76.49926788076081,43.09791614859848],[-76.49926788076081,43.09986932846844],[-76.49780557834706,43.102621536467026],[-76.49122521748512,43.10626155349742],[-76.4883006126576,43.106705458013316],[-76.48330441274392,43.106172772594235],[-76.47916122257159,43.104841059046535],[-76.4735557299855,43.10404203091791],[-76.47172785196831,43.105018620852896],[-76.47184971050278,43.10706058162604],[-76.47282457877863,43.11460695839635],[-76.4761147592096,43.125083104971615],[-76.47867378843367,43.131208987291046],[-76.4834262712784,43.13777877412638],[-76.48622901757145,43.14221781928539],[-76.48635087610592,43.14319440922037],[-76.48452299808872,43.144614903671254],[-76.48123281765776,43.14585783631578],[-76.47306829584758,43.14603539812214],[-76.47428688119238,43.16157205617867],[-76.47599290067511,43.1829682538451],[-76.4761147592096,43.18456631010234],[-76.4761147592096,43.1847438719087],[-76.47708962748543,43.19566392299986],[-76.4773333445544,43.19894881641753],[-76.47769892015783,43.2066727549942],[-76.47794263722679,43.208270811251445],[-76.47928308110608,43.22753626724155],[-76.4711185592959,43.22780260995109],[-76.46063872533063,43.22815773356381],[-76.403121497056,43.23019969433695],[-76.38350227300471,43.231087503368755],[-76.38155253645303,43.23117628427194],[-76.36607650257406,43.23170896969102],[-76.35888684903973,43.23197531240056],[-76.35206277110885,43.2322416551101],[-76.34462940050557,43.23259677872282],[-76.34462940050557,43.23153140788466],[-76.32415716671291,43.23233043601328],[-76.32147627895434,43.2304660370465],[-76.31733308878202,43.229578228014695],[-76.31453034248898,43.22966700891787],[-76.31221503033386,43.23037725614331],[-76.30758440602361,43.23082116065922],[-76.30356307438576,43.22886798078925],[-76.3034412158513,43.22877919988607],[-76.3008821866272,43.22709236272565],[-76.29783572326521,43.22380746930798],[-76.28954934292055,43.21901330053625],[-76.28772146490336,43.21617231163449],[-76.28759960636887,43.21164448557229],[-76.28601544542063,43.20978008660551],[-76.28296898205863,43.206761535897385],[-76.28101924550695,43.20107955809385],[-76.27504817731743,43.202322490738375],[-76.2745607431795,43.202500052544735],[-76.27139242128302,43.2040093278988],[-76.26980826033478,43.20560738415604],[-76.26810224085206,43.20942496299279],[-76.26676179697277,43.210845457443675],[-76.26444648481765,43.21350888453908],[-76.26200931412805,43.21848061511717],[-76.26213117266254,43.22354112659844],[-76.26359347507629,43.22620455369385],[-76.26688365550726,43.22744748633837],[-76.26773666524862,43.232774340529176],[-76.2721235724899,43.2349050822055],[-76.27553561145534,43.23881144194543],[-76.2751700358519,43.239610470074055],[-76.27407330904158,43.240143155493136],[-76.26749294817965,43.23969925097723],[-76.26566507016246,43.23845631833271],[-76.26371533361078,43.236325576656384],[-76.26261860680046,43.23623679575321],[-76.25896285076605,43.23747972839773],[-76.25750054835228,43.236858262075465],[-76.25774426542125,43.23410605407688],[-76.25652568007645,43.232064093303734],[-76.25140762162829,43.22655967730657],[-76.24470540223187,43.214574255377244],[-76.24019663645612,43.21413035086134],[-76.23385999266316,43.212354732797735],[-76.23008237809427,43.20782690673555],[-76.22447688550818,43.20498591783378],[-76.22216157335306,43.204897136930605],[-76.21789652464625,43.20480835602742],[-76.21009757843953,43.206939097703746],[-76.2083915589568,43.20800446854191],[-76.20887899309473,43.20915862028325],[-76.21070687111192,43.21057911473413],[-76.20973200283609,43.21306498002318],[-76.20619810533617,43.216616216150385],[-76.19876473473288,43.212532294604095],[-76.19425596895712,43.21706012066629],[-76.20254234930177,43.22229819395392],[-76.2047358029224,43.22895676169243],[-76.20485766145688,43.232064093303734],[-76.20388279318104,43.23472752039914],[-76.20497951999137,43.237390947494546],[-76.20668553947408,43.23818997562317],[-76.21204731499121,43.23898900375179],[-76.2133877588705,43.24005437458995],[-76.2121691735257,43.241652430847196],[-76.21058501257745,43.24396073432988],[-76.21229103206016,43.254880785421044],[-76.21302218326706,43.25612371806557],[-76.20924456869817,43.26216081948182],[-76.20887899309473,43.26367009483588],[-76.2096101443016,43.265268151093125],[-76.21168173938777,43.26677742644719],[-76.21082872964641,43.26846426360761],[-76.20656368093961,43.27050622438076],[-76.2029079249052,43.27157159521892],[-76.2004707542156,43.27059500528394],[-76.19401225188815,43.26606717922175],[-76.1796329448195,43.253549071873344],[-76.17731763266438,43.25221735832564],[-76.17427116930239,43.251329549293835],[-76.17232143275069,43.25008661664931],[-76.1698842620611,43.247245627747546],[-76.16135416464749,43.24360561071716],[-76.15769840861309,43.24325048710444],[-76.15647982326828,43.24280658258854],[-76.14855901852708,43.239610470074055],[-76.14063821378588,43.24040949820267],[-76.13771360895835,43.23863388013907],[-76.13503272119979,43.237213385688186],[-76.13015837982059,43.234816301302324],[-76.12967094568266,43.234993863108684],[-76.12650262378618,43.23383971136734],[-76.12175014094146,43.23463873949596],[-76.11626650688986,43.23366214956098],[-76.11297632645889,43.231265065175116],[-76.10688339973488,43.22744748633837],[-76.10663968266593,43.227003581822466],[-76.10724897533832,43.22638211550021],[-76.10724897533832,43.225494306468406],[-76.10627410706249,43.22442893563024],[-76.10298392663152,43.22380746930798],[-76.100059321804,43.22469527833978],[-76.09798772671783,43.2246064974366],[-76.09104179025248,43.22061135679349],[-76.08750789275254,43.219190862342614],[-76.08628930740775,43.21785914879491],[-76.08446142939054,43.21688255885993],[-76.08019638068374,43.21581718802177],[-76.08007452214926,43.21768158698855],[-76.07909965387343,43.21848061511717],[-76.07970894654582,43.21732646337583],[-76.0792215124079,43.21581718802177],[-76.07203185887357,43.214751817183604],[-76.06801052723573,43.21262107550728],[-76.07166628327013,43.21359766544226],[-76.08104939042511,43.21439669357088],[-76.08385213671815,43.21404156995816],[-76.08507072206295,43.21315376092636],[-76.08507072206295,43.2120883900882],[-76.08214611723542,43.20321029977018],[-76.0804400977527,43.200635653577955],[-76.07775920999414,43.19939272093343],[-76.07166628327013,43.19983662544933],[-76.06593893214956,43.200813215384315],[-76.06228317611517,43.20072443448113],[-76.05619024939116,43.19921515912707],[-76.0535093616326,43.200458091771594],[-76.05326564456364,43.20205614802884],[-76.05265635189124,43.202855176157456],[-76.04936617146028,43.20294395706064],[-76.04607599102931,43.2022337098352],[-76.0407142155122,43.19903759732071],[-76.03425571318475,43.19539758029032],[-76.03389013758131,43.19486489487124],[-76.03437757171922,43.19406586674262],[-76.03279341077098,43.19149122055039],[-76.03157482542618,43.190780973324955],[-76.02499446456426,43.190248287905874],[-76.01646436715065,43.18758486081047],[-76.01110259163353,43.18509899552142],[-76.00951843068529,43.183589720167355],[-76.00586267465088,43.17773018055747],[-76.00440037223711,43.17693115242884],[-76.00318178689231,43.17719749513839],[-75.99964788939239,43.18039360765287],[-75.99318938706494,43.18314581565146],[-75.99343310413391,43.183412158360994]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.99343310413391,43.183412158360994],[-75.99355496266838,43.183767281973715],[-75.9928238114615,43.1851877764246],[-75.9923363773236,43.18527655732778],[-75.98697460180647,43.183944843780075],[-75.98587787499615,43.18332337745782],[-75.9861215920651,43.182435568426015],[-75.98380627990998,43.17941701771789],[-75.97966308973766,43.177641399654284],[-75.97673848491013,43.17826286597655],[-75.97247343620333,43.17994970313697],[-75.96223731930701,43.18039360765287],[-75.96004386568636,43.17923945591153],[-75.95894713887604,43.17524431526842],[-75.95590067551404,43.172758449979376],[-75.95261049508308,43.17116039372213],[-75.9494421731866,43.17160429823803],[-75.947005002497,43.17364625901118],[-75.93299127103178,43.176664809719306],[-75.93152896861803,43.17551065797796],[-75.93055410034218,43.17382382081754],[-75.92689834430777,43.16281498882319],[-75.92409559801473,43.16157205617867],[-75.9089851397392,43.158908629083264],[-75.89424025706711,43.1569554492133],[-75.88948777422239,43.15686666831012],[-75.88424785723974,43.1556237356656],[-75.87462103301581,43.15207249953839],[-75.87181828672277,43.14852126341118],[-75.86791881361941,43.14692320715394],[-75.86377562344708,43.14727833076666],[-75.86024172594716,43.14843248250801],[-75.85756083818859,43.15056322418433],[-75.85780455525756,43.15109590960341],[-75.85341764801628,43.1565115446974],[-75.84634985301643,43.15802082005146],[-75.84062250189587,43.16068424714687],[-75.8385509068097,43.16077302805005],[-75.83123939474089,43.15935253359917],[-75.82539018508585,43.159618876308706],[-75.81856610715496,43.161660837081854],[-75.81296061456888,43.16157205617867],[-75.81198574629303,43.16139449437231],[-75.80040918551742,43.159263752695985],[-75.79736272215543,43.159441314502345],[-75.7938288246555,43.16032912353415],[-75.79212280517278,43.161483275275494],[-75.78822333206942,43.164235483274076],[-75.78810147353494,43.16601110133768],[-75.78663917112118,43.16689891036948],[-75.78273969801782,43.16752037669174],[-75.77896208344893,43.168319404820366],[-75.77774349810413,43.169828680174426],[-75.77737792250069,43.17107161281895],[-75.77542818594901,43.17195942185075],[-75.76202374715619,43.16645500585358],[-75.76007401060451,43.16512329230588],[-75.75824613258732,43.16263742701683],[-75.7559308204322,43.16095058985641],[-75.75203134732882,43.15899740998645],[-75.74959417663922,43.15846472456737],[-75.74703514741515,43.15855350547054],[-75.74532912793242,43.15953009540553],[-75.73887062560497,43.16485694959634],[-75.73497115250161,43.16290376972638],[-75.73168097207065,43.16086180895323],[-75.72802521603624,43.16015156172779],[-75.72363830879496,43.16059546624369],[-75.72046998689848,43.15819838185782],[-75.72156671370881,43.15731057282602],[-75.72241972345016,43.15580129747196],[-75.72083556250192,43.154647145730614],[-75.71157431388144,43.151273471409766],[-75.7093808602608,43.15153981411931],[-75.70669997250224,43.15100712870023],[-75.70767484077807,43.14834370160482],[-75.70779669931255,43.13893292586772],[-75.70669997250224,43.1372460887073],[-75.70146005551959,43.13671340328822],[-75.69829173362311,43.139199268577265],[-75.69500155319214,43.13964317309316],[-75.69451411905422,43.138844144964544],[-75.69634199707143,43.13742365051366],[-75.6964638556059,43.13653584148186],[-75.69353925077839,43.133250948064195],[-75.68708074845094,43.13005483554971],[-75.68135339733037,43.12854556019564],[-75.68208454853725,43.12632603761614],[-75.68513101189926,43.12446163864935],[-75.68513101189926,43.12384017232709],[-75.68098782172693,43.12108796432851],[-75.67940366077869,43.12055527890943],[-75.6780632168994,43.12144308794123],[-75.6750167535374,43.12188699245713],[-75.67294515845124,43.12144308794123],[-75.67245772431332,43.12055527890943],[-75.67367630965812,43.118779660845824],[-75.67343259258917,43.11762550910448],[-75.66977683655476,43.11531720562179],[-75.66660851465828,43.11496208200907],[-75.65539752948611,43.11398549207409],[-75.65271664172755,43.11371914936455],[-75.65442266121026,43.111765969494584],[-75.65539752948611,43.110256694140524],[-75.65515381241715,43.109102542399185],[-75.65149805638275,43.10643911530378],[-75.65113248077931,43.10608399169106],[-75.64991389543451,43.10608399169106],[-75.64820787595178,43.105817648981514],[-75.64552698819323,43.10395325001473],[-75.64467397845186,43.100757137500246],[-75.63992149560714,43.0973834631794],[-75.6395559200037,43.09622931143806],[-75.63943406146922,43.095607845115794],[-75.6401652126761,43.095607845115794],[-75.64040892974506,43.09534150240626],[-75.6413837980209,43.09472003608399],[-75.64101822241746,43.089837086409084],[-75.6407745053485,43.08823903015184],[-75.63919034440026,43.08273461415467],[-75.64089636388297,43.081314119703784],[-75.63992149560714,43.07873947351156],[-75.63967777853817,43.07847313080202],[-75.63736246638305,43.07669751273841],[-75.63066024698665,43.076253608222515],[-75.62797935922809,43.07403408564301],[-75.62517661293505,43.07341261932075],[-75.62225200810752,43.073856523836646],[-75.6217645739696,43.072169686676226],[-75.61725580819383,43.06728673700132],[-75.6138437692284,43.06559989984089],[-75.60519181328031,43.06488965261545],[-75.6021453499183,43.06391306268047],[-75.59958632069423,43.061604759197785],[-75.59995189629767,43.059740360231],[-75.6045825206079,43.056011562297435],[-75.60397322793551,43.05512375326563],[-75.60421694500447,43.05467984874973],[-75.60677597422855,43.05441350604019],[-75.60775084250439,43.053436916105206],[-75.60701969129751,43.05086226991298],[-75.60616668155615,43.0503295844939],[-75.60299835965967,43.0485539664303],[-75.60263278405623,43.048465185527114],[-75.6021453499183,43.04828762372075],[-75.60165791578038,43.04615688204443],[-75.59812401828046,43.04331589314267],[-75.59824587681494,43.03852172437094],[-75.59714915000463,43.03541439275963],[-75.58411028681525,43.03603585908189],[-75.57423974552236,43.03656854450097],[-75.55583910681587,43.03736757262959],[-75.55279264345387,43.03754513443595],[-75.55096476543666,43.020410420122175],[-75.5482838776781,42.9929771210395],[-75.5440188289713,42.94583446145082],[-75.54426254604026,42.931807078748356],[-75.50222135164462,42.93216220236108],[-75.48406443000708,42.9325173259738],[-75.47029441561084,42.93269488778016],[-75.47017255707635,42.932783668683335],[-75.46724795224884,42.932783668683335],[-75.46566379130059,42.932783668683335],[-75.45652440121458,42.93287244958652],[-75.44421668923209,42.93305001139288],[-75.44263252828385,42.91627042069182],[-75.43812376250808,42.87259021632717],[-75.43714889423225,42.863357002396434],[-75.38986778285397,42.86566530587912],[-75.38986778285397,42.86566530587912],[-75.35404137371683,42.86735214303954],[-75.32382045716575,42.86877263749042],[-75.32369859863127,42.86877263749042],[-75.30797884768334,42.86939410381269],[-75.30724769647647,42.86939410381269],[-75.30432309164894,42.869660446522225],[-75.29128422845957,42.870015570134946],[-75.28799404802861,42.87010435103812],[-75.2831197066494,42.87037069374767],[-75.27056827759795,42.870814598263564],[-75.25899171682234,42.87125850277947],[-75.25033976087425,42.87161362639219],[-75.24802444871914,42.871524845489006],[-75.24558727802953,42.867618485749084],[-75.24400311708129,42.86175894613919],[-75.24619657070193,42.85039499053212],[-75.24704958044329,42.84968474330668],[-75.24741515604673,42.845156917244495],[-75.24217523906408,42.84338129918089],[-75.24205338052961,42.84267105195545],[-75.24290639027096,42.84213836653637],[-75.24290639027096,42.839031034925064],[-75.24120037078825,42.8370778550551],[-75.23998178544345,42.83388174254061],[-75.24107851225376,42.8316622199611],[-75.24412497561576,42.831040753638845],[-75.24997418527082,42.82518121402895],[-75.24997418527082,42.82358315777171],[-75.2481463072536,42.822162663320825],[-75.24729329751224,42.81923289351588],[-75.24595285363297,42.81727971364592],[-75.2438812585468,42.818078741774535],[-75.24205338052961,42.817723618161814],[-75.24193152199513,42.8173684945491],[-75.24436869268473,42.814705067453694],[-75.24704958044329,42.81443872474415],[-75.24826816578809,42.81346213480917],[-75.2488774584605,42.81168651674557],[-75.24790259018465,42.80831284242472],[-75.24924303406394,42.80422892087843],[-75.25033976087425,42.80351867365299],[-75.2519239218225,42.79907962849398],[-75.25253321449489,42.796327420495395],[-75.25168020475354,42.79437424062543],[-75.25204578035698,42.78878104372508],[-75.25289879009833,42.786650302048756],[-75.25886985828787,42.78096832424522],[-75.25911357535682,42.778926363472074],[-75.25850428268441,42.777417088118014],[-75.25886985828787,42.77706196450529],[-75.26216003871882,42.775730250957594],[-75.26825296544283,42.77528634644169],[-75.27203058001172,42.77359950928127],[-75.27373659949443,42.771468767604944],[-75.27507704337371,42.76765118876819],[-75.2770267799254,42.76569800889823],[-75.27812350673571,42.76019359290106],[-75.28019510182187,42.75522186232297],[-75.28275413104596,42.7519369689053],[-75.28421643345972,42.75096037897032],[-75.2861661700114,42.7506052553576],[-75.28762847242517,42.75211453071166],[-75.2935995406147,42.747675485552655],[-75.29554927716637,42.74412424942545],[-75.2965241454422,42.74412424942545],[-75.31236575492463,42.74332522129682],[-75.31772753044174,42.743058878587284],[-75.3369811788896,42.7420822886523],[-75.35757527121675,42.741016917814136],[-75.38974592431948,42.739507642460076],[-75.39096450966429,42.739507642460076],[-75.39145194380221,42.739507642460076],[-75.39864159733654,42.73924129975053],[-75.42800950414625,42.73808714800919],[-75.42861879681864,42.745455962973146],[-75.44738501112857,42.744390592134984],[-75.45408723052498,42.74403546852226],[-75.4932038200931,42.74217106955548],[-75.49466612250686,42.74217106955548],[-75.52439960492,42.740661794201415],[-75.52756792681649,42.74057301329824],[-75.53353899500601,42.74039545149188],[-75.53475758035081,42.740306670588694],[-75.54523741431609,42.73977398516961],[-75.5525489263849,42.739507642460076],[-75.55839813603995,42.73924129975053],[-75.5984895938839,42.73773202439647],[-75.59873331095287,42.73773202439647],[-75.59885516948734,42.73773202439647],[-75.6009267645735,42.73764324349329],[-75.61786510086624,42.73711055807421],[-75.61823067646968,42.73702177717103],[-75.61835253500416,42.73702177717103],[-75.63845919319337,42.73631152994559],[-75.64491769552082,42.736045187236044],[-75.65381336853787,42.73560128272015],[-75.65990629526188,42.735246159107426],[-75.66063744646875,42.735246159107426],[-75.66563364638243,42.73497981639789],[-75.67172657310644,42.734713473688345],[-75.68403428508893,42.73418078826926],[-75.68769004112333,42.7340032264629],[-75.7068218310367,42.7331154174311],[-75.76214560569068,42.730451990335695],[-75.76312047396652,42.730451990335695],[-75.78139925413853,42.72956418130389],[-75.80333379034495,42.72841002956255],[-75.82112513637905,42.72716709691803],[-75.88985334982583,42.72388220350036],[-75.89107193517063,42.73808714800919],[-75.89229052051543,42.75406771058162],[-75.89253423758439,42.75557698593569],[-75.8931435302568,42.7622355536742],[-75.8960681350843,42.79100056630458],[-75.89692114482567,42.801299151073486],[-75.89777415456703,42.81346213480917],[-75.89850530577391,42.82313925325581],[-75.8986271643084,42.82580268035122],[-75.90045504232559,42.84861937246852],[-75.90167362767039,42.86193650794555],[-75.90203920327383,42.865754086782296],[-75.9022829203428,42.87054825555403],[-75.90557310077375,42.91431724082186],[-75.9059386763772,42.91999921862539],[-75.90801027146335,42.952670590995695],[-75.90861956413576,42.95861891150877],[-75.90886328120472,42.96367942299004],[-75.9089851397392,42.965455041053644],[-75.91056930068744,42.98942588491229],[-75.91154416896327,43.00664938012925],[-75.91190974456673,43.01197623432006],[-75.9120316031012,43.014639661415465],[-75.91288461284256,43.02680264515115],[-75.91288461284256,43.02715776876387],[-75.91398133965288,43.041185151466344],[-75.91459063232529,43.05068470810662],[-75.91629665180801,43.07483311377163],[-75.91727152008384,43.085930726669154],[-75.91727152008384,43.086108288475515],[-75.92019612491137,43.090014648215444],[-75.92689834430777,43.090547333634525],[-75.92921365646289,43.0888604964741],[-75.92957923206633,43.08735122112004],[-75.93055410034218,43.08832781105502],[-75.9328694124973,43.08806146834548],[-75.93445357344554,43.08717365931368],[-75.93689074413514,43.087972687442296],[-75.93786561241099,43.0888604964741],[-75.93823118801443,43.08690731660413],[-75.9415213684454,43.08690731660413],[-75.94712686103148,43.08903805828046],[-75.94858916344523,43.08690731660413],[-75.95127005120379,43.087440002023214],[-75.95395093896235,43.0888604964741],[-75.95419465603132,43.087972687442296],[-75.9616280266346,43.085753164862794],[-75.96077501689324,43.08868293466774],[-75.97539804103086,43.090902457247246],[-75.97686034344461,43.09303319892357],[-75.97588547516878,43.09347710343947],[-75.9769822019791,43.094098569761734],[-75.97661662637566,43.10306544098293],[-75.97588547516878,43.10342056459565],[-75.97551989956534,43.10359812640201],[-75.9719860020654,43.104663497240175],[-75.9719860020654,43.10564008717515],[-75.97283901180677,43.105995210787874],[-75.97308272887574,43.106705458013316],[-75.97235157766885,43.10741570523876],[-75.9707674167206,43.10750448614194],[-75.97210786059989,43.10839229517374],[-75.9719860020654,43.109102542399185],[-75.96893953870341,43.11087816046279],[-75.96564935827244,43.116737700072676],[-75.96552749973797,43.11957868897444],[-75.96369962172076,43.11957868897444],[-75.96321218758284,43.11744794729812],[-75.96016572422084,43.115405986524976],[-75.956144392583,43.11549476742815],[-75.95480394870371,43.11718160458858],[-75.95724111939332,43.12197577336031],[-75.9585815632726,43.12348504871437],[-75.96004386568636,43.122863582392114],[-75.96077501689324,43.123218706004835],[-75.95894713887604,43.125083104971615],[-75.9585815632726,43.12801287477656],[-75.95078261706587,43.13165289180695],[-75.95017332439348,43.1350265661278],[-75.95139190973828,43.13564803245006],[-75.95626625111748,43.1359143751596],[-75.95748483646229,43.13449388070872],[-75.96126245103116,43.133783633483276],[-75.96674608508276,43.134760223418255],[-75.96796467042756,43.135470470643696],[-75.96893953870341,43.13644706057868],[-75.97015812404821,43.139021706770905],[-75.9719860020654,43.140353420318604],[-75.9745450312895,43.139731953996346],[-75.97503246542742,43.13911048767409],[-75.97503246542742,43.138666583158184],[-75.97357016301365,43.13742365051366],[-75.9757636166343,43.13609193696596],[-75.97710406051358,43.13609193696596],[-75.97710406051358,43.140175858512244],[-75.97515432396189,43.14195147657585],[-75.97210786059989,43.14337197102673],[-75.97186414353094,43.144437341864894],[-75.97259529473781,43.1457690554126],[-75.97283901180677,43.14745589257302],[-75.97332644594469,43.14914272973345],[-75.97125485085853,43.153848117601996],[-75.9714985679275,43.155002269343335],[-75.97661662637566,43.15766569643874],[-75.97746963611702,43.15881984818009],[-75.97673848491013,43.16024034263097],[-75.97466688982398,43.16192717979139],[-75.97442317275501,43.163170112435914],[-75.97491060689293,43.16361401695182],[-75.9782007873239,43.16707647217584],[-75.97807892878942,43.16734281488538],[-75.97844450439285,43.1676979384981],[-75.98100353361694,43.1676979384981],[-75.97929751413422,43.17009502288397],[-75.97990680680662,43.17124917462531],[-75.98210026042726,43.173202354495274],[-75.98319698723758,43.173379916301634],[-75.98575601646166,43.171693079141214],[-75.98941177249607,43.17151551733485],[-75.99197080172014,43.17293601178574],[-75.99258009439255,43.17382382081754],[-75.9923363773236,43.17524431526842],[-75.98965548956502,43.17923945591153],[-75.99087407490983,43.18137019758785],[-75.99343310413391,43.183412158360994]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-77.90978041736798,42.98773904775187],[-77.91002413443694,42.97850583382113],[-77.91002413443694,42.97628631124163],[-77.9102678515059,42.96918383898721],[-77.91136457831622,42.945035433322204],[-77.92013839279879,42.94530177603174],[-77.92220998788495,42.94530177603174],[-77.93427398279849,42.945568118741285],[-77.93439584133296,42.937577837455066],[-77.93463955840193,42.927368033589346],[-77.9347614169364,42.92559241552574],[-77.93488327547088,42.91911140959359],[-77.93524885107432,42.90526158869748],[-77.95547736779803,42.90588305501974],[-77.95535550926354,42.89460788031586],[-77.95523365072906,42.89016883515685],[-77.9549899336601,42.86255797426781],[-77.9666883529702,42.86282431697735],[-77.98021465029748,42.86300187878371],[-77.99520325003853,42.86317944059007],[-77.99532510857301,42.86495505865368],[-78.00056502555566,42.865043839556854],[-78.0486991466753,42.86433359233141],[-78.04882100520977,42.864244811428236],[-78.05588880020963,42.864067249621876],[-78.07416758038164,42.863712126009155],[-78.07416758038164,42.87028191284449],[-78.09853928727766,42.87010435103812],[-78.0989048628811,42.87010435103812],[-78.10390106279478,42.87010435103812],[-78.12534816486328,42.870015570134946],[-78.12741975994945,42.870015570134946],[-78.13351268667344,42.87010435103812],[-78.1913954905515,42.87037069374767],[-78.25963626986035,42.86957166561905],[-78.26597291365331,42.86939410381269],[-78.26938495261876,42.86939410381269],[-78.27365000132556,42.86939410381269],[-78.27377185986005,42.86939410381269],[-78.27730575735997,42.86939410381269],[-78.27888991830821,42.86939410381269],[-78.27925549391165,42.86939410381269],[-78.28486098649773,42.869482884715865],[-78.29534082046303,42.8697492274254],[-78.30728295684207,42.869838008328585],[-78.36516576072012,42.86886141839361],[-78.37052753623725,42.86877263749042],[-78.37662046296126,42.868683856587246],[-78.3879533066679,42.86859507568406],[-78.4100097014088,42.86823995207134],[-78.43230981321865,42.86788482845862],[-78.44510495933906,42.86770726665226],[-78.46435860778692,42.86744092394272],[-78.46435860778692,42.87321168264943],[-78.4644804663214,42.87809463232434],[-78.463871173649,42.89514056573494],[-78.46362745658004,42.899934734506665],[-78.463871173649,42.92195239849536],[-78.46399303218348,42.93482562945648],[-78.46423674925244,42.95453498996248],[-78.46423674925244,42.955245237187924],[-78.46423674925244,42.96048331047555],[-78.46423674925244,42.965455041053644],[-78.46423674925244,42.976375092144806],[-78.463871173649,42.985697086978725],[-78.46338373951109,43.00212155406706],[-78.4632618809766,43.006471818322886],[-78.46301816390763,43.01339672877094],[-78.46350559804556,43.033017308373765],[-78.463871173649,43.04198417959496],[-78.46423674925244,43.06497843351863],[-78.4644804663214,43.08823903015184],[-78.46435860778692,43.091523923569504],[-78.46533347606277,43.125083104971615],[-78.46545533459724,43.128634341098824],[-78.45631594451123,43.128989464711545],[-78.44388637399426,43.12943336922744],[-78.41086271115016,43.130676301871965],[-78.39051233589198,43.13058752096879],[-78.34055033675514,43.13076508277515],[-78.32519616141064,43.13112020638787],[-78.31045127873855,43.13138654909741],[-78.3102075616696,43.13138654909741],[-78.3027741910663,43.13112020638787],[-78.2519591821881,43.13138654909741],[-78.24257607503314,43.13147533000059],[-78.23453341175745,43.13165289180695],[-78.22283499244736,43.13156411090377],[-78.22234755830944,43.13156411090377],[-78.20748081710286,43.13165289180695],[-78.20260647572367,43.13174167271013],[-78.19334522710318,43.13183045361331],[-78.16495218856932,43.13227435812921],[-78.11535576503591,43.13236313903239],[-78.11535576503591,43.13147533000059],[-78.11109071632912,43.13147533000059],[-78.09914857995005,43.13138654909741],[-78.09878300434661,43.13138654909741],[-78.09622397512254,43.13138654909741],[-78.09439609710533,43.13147533000059],[-78.07831077055395,43.13138654909741],[-78.07697032667468,43.13138654909741],[-78.06917138046795,43.13138654909741],[-78.06575934150251,43.13138654909741],[-78.0480898540029,43.13147533000059],[-78.03663515176177,43.13183045361331],[-78.03163895184808,43.13191923451649],[-78.0315170933136,43.13191923451649],[-78.02713018607231,43.13209679632285],[-78.02371814710688,43.13218557722603],[-78.02371814710688,43.13218557722603],[-78.01689406917599,43.13245191993557],[-77.9997120158143,43.13298460535465],[-77.99727484512469,43.13298460535465],[-77.98716058676284,43.133073386257834],[-77.95901126529795,43.13333972896737],[-77.93939204124665,43.13298460535465],[-77.90978041736798,43.13351729077373],[-77.90588094426462,43.13351729077373],[-77.9078306808163,43.12996605464652],[-77.90807439788526,43.129344588324265],[-77.91258316366103,43.1197562507808],[-77.92391600736768,43.095962968728514],[-77.92659689512624,43.090369771828165],[-77.92854663167792,43.08619706937869],[-77.92903406581584,43.08522047944371],[-77.934152124264,43.07430042835255],[-77.9482877142637,43.04518029210945],[-77.95109046055674,43.0395870952091],[-77.92574388538488,43.03816660075822],[-77.91282688072998,43.037456353532775],[-77.90868369055767,43.037278791726415],[-77.9041749247819,43.03701244901687],[-77.90478421745429,43.030620223987896],[-77.90454050038534,43.023517751733486],[-77.90563722719565,43.023517751733486],[-77.90758696374733,43.0028318012925],[-77.90795253935077,43.00221033497024],[-77.90941484176454,43.00247667767978],[-77.9096585588335,42.99466395819992],[-77.9096585588335,42.994220053684025],[-77.90978041736798,42.990491255750456],[-77.90978041736798,42.98773904775187]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-78.4644804663214,43.08823903015184],[-78.46423674925244,43.06497843351863],[-78.463871173649,43.04198417959496],[-78.46350559804556,43.033017308373765],[-78.46301816390763,43.01339672877094],[-78.4632618809766,43.006471818322886],[-78.46338373951109,43.00212155406706],[-78.463871173649,42.985697086978725],[-78.46423674925244,42.976375092144806],[-78.46423674925244,42.965455041053644],[-78.46423674925244,42.96048331047555],[-78.46423674925244,42.955245237187924],[-78.46423674925244,42.95453498996248],[-78.46399303218348,42.93482562945648],[-78.463871173649,42.92195239849536],[-78.46362745658004,42.899934734506665],[-78.463871173649,42.89514056573494],[-78.4644804663214,42.87809463232434],[-78.46435860778692,42.87321168264943],[-78.46435860778692,42.86744092394272],[-78.48629314399334,42.86770726665226],[-78.48665871959678,42.84116177660139],[-78.48678057813126,42.832550028992905],[-78.48702429520021,42.82420462409397],[-78.48702429520021,42.82242900603037],[-78.48726801226918,42.81346213480917],[-78.48763358787262,42.80396257816889],[-78.48812102201055,42.78158979056748],[-78.48812102201055,42.78070198153568],[-78.48300296356238,42.7806132006325],[-78.4632618809766,42.78043563882614],[-78.46338373951109,42.754600396000704],[-78.46338373951109,42.753623806065725],[-78.46350559804556,42.73702177717103],[-78.46350559804556,42.733914445559726],[-78.46362745658004,42.733381760140645],[-78.46362745658004,42.72938661949753],[-78.46362745658004,42.72308317537174],[-78.46362745658004,42.72263927085584],[-78.46362745658004,42.7214851191145],[-78.463871173649,42.69884598880355],[-78.46374931511453,42.69387425822546],[-78.46216515416629,42.62027488948909],[-78.46216515416629,42.61716755787778],[-78.46240887123524,42.60651384949616],[-78.46350559804556,42.55138090862126],[-78.46374931511453,42.54152622836826],[-78.46399303218348,42.53619937417745],[-78.46582091020068,42.53486766062975],[-78.4786160563211,42.53362472798523],[-78.48129694407966,42.53335838527569],[-78.48324668063134,42.53415741340431],[-78.48848659761398,42.53469009882339],[-78.49031447563118,42.532736918953425],[-78.49043633416566,42.531227643599365],[-78.49104562683806,42.53033983456756],[-78.50335333882056,42.526966160246715],[-78.50579050951016,42.526788598440355],[-78.5085932558032,42.52767640747216],[-78.50968998261352,42.528120311988054],[-78.51188343623416,42.52741006476261],[-78.5116397191652,42.52554566579583],[-78.51432060692376,42.52243833418453],[-78.51931680683745,42.51933100257322],[-78.52309442140633,42.51995246889548],[-78.52687203597522,42.521372963346366],[-78.52821247985449,42.52128418244318],[-78.53503655778538,42.51950856437958],[-78.53820487968187,42.51595732825237],[-78.54429780640587,42.516401232768274],[-78.55258418675052,42.51551342373647],[-78.55319347942292,42.51480317651103],[-78.56282030364684,42.510275350448836],[-78.56988809864669,42.51036413135202],[-78.5814646594223,42.513471462963324],[-78.58231766916366,42.51409292928559],[-78.58377997157743,42.51427049109195],[-78.58548599106014,42.513649024769684],[-78.58609528373255,42.513027558447426],[-78.58609528373255,42.51160706399654],[-78.59096962511175,42.51080803586792],[-78.5930412201979,42.51169584489972],[-78.59962158105984,42.51160706399654],[-78.60400848830112,42.509565103223395],[-78.60754238580104,42.50628020980573],[-78.61217301011129,42.50583630528983],[-78.61741292709392,42.502285069162625],[-78.61911894657665,42.50201872645308],[-78.62021567338697,42.5023738500658],[-78.62094682459386,42.50423824903259],[-78.62143425873177,42.50441581083895],[-78.62472443916273,42.502285069162625],[-78.62472443916273,42.50050945109902],[-78.62448072209378,42.49997676567994],[-78.62472443916273,42.499177737551314],[-78.6249681562317,42.49900017574495],[-78.62667417571441,42.498201147616335],[-78.63301081950738,42.49686943406863],[-78.63776330235211,42.49757968129407],[-78.64068790717963,42.49607040594001],[-78.64178463398994,42.49305185523188],[-78.64288136080027,42.492252827103265],[-78.65104588261043,42.490210866330116],[-78.65299561916211,42.49083233265238],[-78.65543278985172,42.492430388909625],[-78.66140385804124,42.492430388909625],[-78.66298801898948,42.490210866330116],[-78.66542518967908,42.487991343750615],[-78.66749678476525,42.48772500104107],[-78.66956837985141,42.488168905556975],[-78.67261484321341,42.48772500104107],[-78.68102308209254,42.484262545817046],[-78.6818760918339,42.48106643330256],[-78.68321653571319,42.4804449669803],[-78.68285096010975,42.47804788259443],[-78.6855318478683,42.47600592182129],[-78.68735972588551,42.47547323640221],[-78.69150291605783,42.47662738814355],[-78.69259964286815,42.47547323640221],[-78.69235592579919,42.47263224750044],[-78.69284335993711,42.47209956208136],[-78.69369636967848,42.47183321937182],[-78.69747398424735,42.47272102840362],[-78.7002767305404,42.47467420827358],[-78.70076416467832,42.48479523123613],[-78.70271390123,42.48648206839655],[-78.70661337433336,42.484440107623406],[-78.71148771571256,42.48417376491386],[-78.71429046200561,42.48550547846157],[-78.72428286183298,42.48275327046298],[-78.73037578855698,42.47937959614214],[-78.73598128114307,42.47937959614214],[-78.73744358355682,42.47724885446581],[-78.73719986648787,42.47582836001493],[-78.73793101769475,42.47440786556405],[-78.7393933201085,42.473697618338605],[-78.74475509562564,42.47378639924178],[-78.74914200286692,42.473697618338605],[-78.7492638614014,42.473697618338605],[-78.74975129553933,42.47343127562906],[-78.75121359795308,42.46845954505097],[-78.75803767588397,42.46899223047005],[-78.75949997829773,42.46712783150327],[-78.75815953441844,42.46544099434285],[-78.75803767588397,42.46455318531105],[-78.7590125441598,42.463132690860164],[-78.76096228071148,42.462067320022],[-78.76388688553901,42.46153463460292],[-78.76559290502173,42.46180097731246],[-78.77168583174574,42.46490830892377],[-78.7786317682111,42.46188975821564],[-78.77826619260766,42.460913168280655],[-78.77424486096982,42.46082438737748],[-78.77180769028021,42.46020292105521],[-78.77046724640094,42.45913755021705],[-78.77022352933197,42.45816096028207],[-78.77119839760782,42.457184370347086],[-78.77899734381454,42.455319971380305],[-78.78131265596967,42.45540875228348],[-78.78387168519374,42.456296561315284],[-78.78618699734886,42.45798339847571],[-78.79179248993495,42.460913168280655],[-78.79873842640032,42.46215610092518],[-78.80397834338297,42.45967023563613],[-78.80568436286569,42.45824974118525],[-78.80751224088289,42.45869364570115],[-78.80946197743457,42.458871207507514],[-78.81287401640002,42.45620778041211],[-78.81628605536545,42.453988257832606],[-78.81896694312401,42.45301166789762],[-78.83334625019266,42.44812871822271],[-78.83541784527883,42.44617553835275],[-78.83675828915811,42.44351211125734],[-78.83785501596843,42.44306820674144],[-78.83980475252011,42.44297942583826],[-78.84528838657172,42.44466626299868],[-78.84918785967508,42.44297942583826],[-78.86332344967478,42.44155893138738],[-78.86880708372638,42.44040477964604],[-78.87721532260551,42.44129258867784],[-78.88062736157094,42.44040477964604],[-78.88257709812262,42.43862916158243],[-78.88379568346743,42.43809647616335],[-78.88696400536391,42.44129258867784],[-78.8883044492432,42.44209161680646],[-78.88915745898456,42.441825274096914],[-78.8919602052776,42.439694532420596],[-78.8937880832948,42.43925062790469],[-78.89720012226024,42.44306820674144],[-78.89780941493264,42.444577482095504],[-78.898662424674,42.44768481370681],[-78.90049030269121,42.44848384183543],[-78.9023181807084,42.44830628002907],[-78.90353676605321,42.446264319255924],[-78.90512092700145,42.44599797654639],[-78.91255429760473,42.44768481370681],[-78.9176723560529,42.44262430222554],[-78.91925651700114,42.44226917861282],[-78.92084067794939,42.442890644935076],[-78.92413085838034,42.44617553835275],[-78.92388714131138,42.44741847099727],[-78.92230298036314,42.44848384183543],[-78.91803793165634,42.449549212673595],[-78.91852536579427,42.453278010607164],[-78.92571501932859,42.458871207507514],[-78.92900519975954,42.45967023563613],[-78.93010192656988,42.46011414015204],[-78.93351396553531,42.462067320022],[-78.93704786303523,42.46659514608419],[-78.93899759958691,42.46783807872871],[-78.94387194096612,42.46828198324461],[-78.9494774335522,42.46854832595415],[-78.95715452122445,42.47254346659726],[-78.96202886260366,42.48230936594708],[-78.96324744794846,42.48665963020291],[-78.96154142846574,42.49349575974779],[-78.96580647717253,42.49331819794143],[-78.96653762837941,42.493762102457325],[-78.96982780881038,42.49811236671315],[-78.97226497949998,42.500065546583116],[-78.9727524136379,42.50042067019584],[-78.98055135984463,42.50592508619301],[-78.98274481346527,42.50583630528983],[-78.98469455001695,42.50477093445167],[-78.9862787109652,42.50512605806439],[-78.98554755975832,42.50663533341845],[-78.9837196817411,42.508233389675695],[-78.98359782320664,42.51187340670608],[-78.98774101337895,42.513471462963324],[-78.9881065889824,42.51551342373647],[-78.98652242803415,42.51835441263824],[-78.98676614510312,42.51968612618594],[-78.98835030605136,42.5216393060559],[-78.99090933527545,42.52510176127993],[-78.99200606208576,42.52954080643894],[-78.99688040346497,42.532559357147065],[-78.9990738570856,42.532736918953425],[-78.99980500829248,42.53176032901845],[-79.00431377406825,42.53415741340431],[-79.0132094470853,42.534601317920206],[-79.0236892810506,42.538862801272856],[-79.02551715906779,42.54037207662692],[-79.02978220777459,42.54019451482056],[-79.03112265165387,42.54063841933646],[-79.03185380286075,42.542236475593704],[-79.03258495406763,42.542591599206425],[-79.0346565491538,42.54232525649689],[-79.03879973932612,42.537974992241054],[-79.04050575880883,42.53726474501561],[-79.04184620268812,42.53708718320925],[-79.04757355380869,42.53859645856332],[-79.05147302691205,42.53593303146791],[-79.05634736829126,42.536643278693354],[-79.06073427553254,42.53788621133788],[-79.06865508027374,42.541437447465086],[-79.07718517768735,42.54445599817321],[-79.08084093372176,42.544988683592294],[-79.09010218234224,42.55022675687992],[-79.0903458994112,42.551292127718085],[-79.08985846527328,42.55173603223398],[-79.08132836785967,42.55395555481349],[-79.08132836785967,42.55422189752303],[-79.08169394346311,42.555376049264375],[-79.08266881173896,42.55599751558663],[-79.08766501165265,42.55644142010254],[-79.08985846527328,42.555908734683456],[-79.09107705061808,42.55599751558663],[-79.0921737774284,42.556885324618435],[-79.09424537251456,42.5610580270679],[-79.09363607984217,42.56256730242197],[-79.09351422130769,42.56354389235695],[-79.09668254320417,42.56460926319511],[-79.10070387484201,42.56256730242197],[-79.1013131675144,42.562478521518784],[-79.10289732846265,42.56256730242197],[-79.1044814894109,42.563011206937865],[-79.10582193329017,42.56452048229193],[-79.10557821622122,42.56531951042055],[-79.10375033820401,42.56700634758098],[-79.10423777234193,42.5682492802255],[-79.10850282104873,42.570202460095466],[-79.11496132337618,42.570024898289105],[-79.12129796716914,42.56585219583963],[-79.12580673294491,42.565053167711014],[-79.1271471768242,42.565230729517374],[-79.13226523527236,42.567272690290515],[-79.13665214251364,42.5695809937732],[-79.13677400104812,42.569669774676385],[-79.13116850846204,42.585650337248815],[-79.1295843475138,42.58982303969828],[-79.12629416708283,42.59097719143963],[-79.12556301587595,42.59150987685871],[-79.12471000613459,42.59204256227779],[-79.12190725984155,42.59426208485729],[-79.11374273803138,42.60598116407708],[-79.11228043561762,42.61042020923609],[-79.11228043561762,42.61042020923609],[-79.11130556734177,42.61334997904103],[-79.09509838225593,42.626667114518064],[-79.09132076768704,42.62977444612937],[-79.0787693386356,42.64007303089827],[-79.073285704584,42.63998424999509],[-79.06378073889454,42.64477841876682],[-79.0634151632911,42.65037161566717],[-79.06244029501526,42.66475412198236],[-79.06231843648078,42.66839413901275],[-79.05854082191189,42.67407611681628],[-79.04891399768796,42.68916887035691],[-79.03075707605043,42.696626466224046],[-79.01881493967139,42.70159819680214],[-79.00614165208545,42.70452796660708],[-78.9911530523444,42.70532699473571],[-78.96970595027591,42.71748997847139],[-78.95215832131076,42.72743343962757],[-78.94411565803509,42.73196126568976],[-78.93095493631122,42.73462469278517],[-78.92839590708715,42.73515737820425],[-78.91815979019081,42.73728811988057],[-78.91633191217362,42.73844227162191],[-78.90329304898425,42.747142800133574],[-78.90012472708777,42.7492735418099],[-78.86856336665741,42.77022583496042],[-78.86600433743334,42.77262291934628],[-78.86247043993342,42.77581903186077],[-78.85345290838188,42.78398687495335],[-78.85138131329572,42.7917995944332],[-78.8564993717439,42.800233780235324],[-78.85930211803694,42.80067768475122],[-78.86100813751965,42.80538307261977],[-78.86137371312309,42.80662600526429],[-78.86368902527822,42.81301823029327],[-78.8656387618299,42.826779270286195],[-78.86344530820925,42.83024172551022],[-78.86222672286445,42.83228368628337],[-78.86222672286445,42.83228368628337],[-78.86039884484725,42.835124675185135],[-78.8594239765714,42.84133933840775],[-78.8656387618299,42.85234817040209],[-78.86966009346774,42.85296963672435],[-78.87221912269182,42.853324760337074],[-78.88257709812262,42.86726336213636],[-78.88623285415703,42.87436583439077],[-78.88806073217424,42.877828289614804],[-78.89159462967416,42.88484198096604],[-78.91243243907026,42.88652881812646],[-78.90975155131169,42.891944453220454],[-78.90573021967384,42.899934734506665],[-78.90573021967384,42.90668208314836],[-78.90573021967384,42.913074308177336],[-78.90560836113937,42.92115337036673],[-78.90560836113937,42.92337289294623],[-78.90914225863929,42.93322757319924],[-78.91231058053577,42.93775539926143],[-78.91267615613921,42.938199303777324],[-78.91426031708745,42.94041882635683],[-78.9188909413977,42.946899832288985],[-78.932417238725,42.95586670351018],[-78.96178514553469,42.95773110247697],[-78.97506772579302,42.96873993447131],[-78.9832322476032,42.97246873240488],[-79.01150342760258,42.98525318246283],[-79.0199116664817,42.994752739103106],[-79.02027724208514,43.00078984051936],[-79.0205209591541,43.00514010477519],[-79.02088653475755,43.014284537802745],[-79.01674334458522,43.02094310554126],[-79.01174714467153,43.028933386827475],[-79.00516678380961,43.04704469107623],[-79.00541050087857,43.05725449494196],[-79.01052855932673,43.06435696719637],[-79.02381113958506,43.067197956098134],[-79.00967554958538,43.069595040484],[-78.99042190113752,43.06879601235538],[-78.98579127682727,43.06852966964584],[-78.97555515993095,43.0682633269363],[-78.94996486769013,43.0678194224204],[-78.9452123848454,43.0669316133886],[-78.9115794293289,43.05476862965291],[-78.90585207820833,43.051572517138425],[-78.8962252539844,43.04411492127129],[-78.89305693208792,43.037811477145496],[-78.89208206381208,43.03408267921193],[-78.8901323272604,43.02520458889391],[-78.8901323272604,43.02191969547624],[-78.88099293717438,43.0225411617985],[-78.87989621036407,43.02183091457306],[-78.87745903967446,43.0216533527667],[-78.87624045432966,43.02156457186352],[-78.87185354708838,43.022452380895324],[-78.8705131032091,43.02271872360486],[-78.86100813751965,43.02289628541122],[-78.85710866441629,43.02218603818578],[-78.85125945476125,43.019256268380836],[-78.84614139631307,43.0194338301872],[-78.84175448907179,43.018901144768115],[-78.8393173183822,43.0194338301872],[-78.83334625019266,43.024139218055744],[-78.83164023070995,43.02609239792571],[-78.83078722096859,43.028578263214754],[-78.82871562588242,43.03026510037518],[-78.82591287958938,43.03594707817871],[-78.82676588933074,43.03994221882182],[-78.83139651364098,43.04535785391581],[-78.83224952338234,43.04775493830167],[-78.83164023070995,43.0494417754621],[-78.83090907950307,43.05024080359072],[-78.82920306002035,43.051394955332064],[-78.82664403079626,43.0516612980416],[-78.82237898208946,43.051572517138425],[-78.81957623579642,43.051572517138425],[-78.81384888467585,43.0516612980416],[-78.80702480674496,43.053436916105206],[-78.80422206045192,43.055478876878354],[-78.80690294821049,43.06027304565008],[-78.80653737260705,43.06222622552004],[-78.80154117269336,43.065866242550435],[-78.78679629002127,43.066398927969516],[-78.7780224755387,43.06533355713135],[-78.77400114390086,43.0669316133886],[-78.77046724640094,43.06941747867764],[-78.76717706596997,43.070127725903085],[-78.75767210028053,43.07083797312852],[-78.75633165640124,43.07039406861262],[-78.75377262717716,43.06941747867764],[-78.74767970045316,43.06968382138718],[-78.74390208588427,43.06835210783948],[-78.74097748105675,43.0682633269363],[-78.73963703717747,43.0691511359681],[-78.74000261278091,43.071814563063505],[-78.74122119812571,43.07483311377163],[-78.7376873006258,43.07829556899566],[-78.73573756407411,43.08229070963877],[-78.73427526166034,43.08344486138011],[-78.73330039338451,43.08415510860555],[-78.72732932519499,43.08619706937869],[-78.72428286183298,43.085575603056434],[-78.7217238326089,43.08388876589601],[-78.72013967166066,43.08122533880061],[-78.7180680765745,43.08104777699425],[-78.71489975467802,43.08326729957375],[-78.71087842304017,43.08211314783241],[-78.708806827954,43.08273461415467],[-78.70771010114369,43.086463412088236],[-78.7069789499368,43.08681853570096],[-78.69930186226456,43.08672975479777],[-78.69662097450599,43.08601950757233],[-78.6910154819199,43.0884165919582],[-78.68870016976479,43.087617563829575],[-78.68699415028206,43.085930726669154],[-78.68687229174759,43.08415510860555],[-78.68285096010975,43.08007118705926],[-78.68138865769598,43.08007118705926],[-78.68090122355807,43.08007118705926],[-78.67980449674774,43.082024366929225],[-78.67968263821327,43.08424388950873],[-78.67834219433398,43.08468779402463],[-78.67578316510989,43.08379998499283],[-78.66664377502389,43.08522047944371],[-78.66640005795493,43.08530926034689],[-78.66408474579981,43.086285850281875],[-78.65701695079996,43.08433267041191],[-78.65482349717932,43.08282339505785],[-78.64824313631739,43.080692653381526],[-78.64629339976571,43.0807814342847],[-78.64580596562779,43.08211314783241],[-78.64665897536915,43.085753164862794],[-78.6488524289898,43.08681853570096],[-78.64690269243812,43.08957074369954],[-78.64409994614508,43.08832781105502],[-78.6421502095934,43.08823903015184],[-78.64056604864516,43.089837086409084],[-78.64154091692099,43.09729468227622],[-78.63800701942107,43.095163940599896],[-78.6359354243349,43.09329954163311],[-78.63020807321433,43.09383222705219],[-78.63264524390394,43.09108001905361],[-78.6292332049385,43.08699609750732],[-78.62667417571441,43.08495413673417],[-78.62228726847313,43.08539804125007],[-78.61960638071457,43.0875287829264],[-78.61765664416289,43.08655219299141],[-78.61668177588705,43.08504291763735],[-78.61290416131817,43.08388876589601],[-78.61729106855945,43.077940445382936],[-78.6163162002836,43.07474433286845],[-78.61448832226641,43.07430042835255],[-78.61229486864576,43.07634238912569],[-78.6065675175252,43.07563214190025],[-78.60693309312865,43.07305749570803],[-78.60315547855976,43.0722584675794],[-78.59511281528407,43.07252481028895],[-78.59523467381855,43.069772602290364],[-78.5937723714048,43.06968382138718],[-78.59096962511175,43.07634238912569],[-78.58670457640494,43.073146276611205],[-78.5826832447671,43.075543360997074],[-78.58036793261198,43.08024874886562],[-78.58499855692222,43.08433267041191],[-78.58170837649126,43.08894927737728],[-78.5796367814051,43.087440002023214],[-78.5771996107155,43.08388876589601],[-78.5759810253707,43.0798936252529],[-78.57256898640526,43.08193558602605],[-78.57427500588797,43.08255705234831],[-78.57634660097413,43.08877171557092],[-78.56513561580196,43.08859415376456],[-78.5630640207158,43.09374344614901],[-78.56391703045716,43.09472003608399],[-78.5600175573538,43.09747224408258],[-78.55489949890564,43.09525272150307],[-78.56087056709517,43.09028099092498],[-78.55075630873331,43.09347710343947],[-78.54978144045748,43.09383222705219],[-78.54929400631956,43.09525272150307],[-78.55014701606092,43.09658443505078],[-78.54576010881964,43.0987151767271],[-78.5422262113197,43.096673215953956],[-78.54125134304387,43.09356588434265],[-78.54697869416444,43.09285563711721],[-78.54661311856098,43.090014648215444],[-78.5403983333025,43.08859415376456],[-78.54027647476802,43.085930726669154],[-78.5361332845957,43.08566438395961],[-78.53150266028545,43.0875287829264],[-78.52248512873393,43.088150249248656],[-78.51858565563057,43.08965952460272],[-78.5140768898548,43.09081367634406],[-78.51602662640649,43.09196782808541],[-78.51492989959617,43.09489759789035],[-78.51005555821696,43.09791614859848],[-78.506765377786,43.094276131568094],[-78.50530307537224,43.091879047182225],[-78.50603422657912,43.089837086409084],[-78.49921014864823,43.08326729957375],[-78.4975041291655,43.08193558602605],[-78.49360465606215,43.08255705234831],[-78.49165491951047,43.084066327702374],[-78.48897403175191,43.08273461415467],[-78.48446526597614,43.08619706937869],[-78.47508215882117,43.08601950757233],[-78.47179197839021,43.08397754679919],[-78.47227941252812,43.081669243316504],[-78.46496790045933,43.08601950757233],[-78.46777064675237,43.087617563829575],[-78.4644804663214,43.08823903015184]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.09743616615802,42.98294487898014],[-74.0969487320201,42.97939364285293],[-74.09658315641666,42.97717412027343],[-74.09609572227873,42.9745994740812],[-74.09512085400289,42.96802968724587],[-74.09463341986498,42.965277479247284],[-74.09365855158913,42.959329158734214],[-74.09304925891674,42.95568914170382],[-74.08854049314097,42.92727925268616],[-74.08622518098585,42.91520504985366],[-74.08659075658929,42.91511626895048],[-74.08476287857208,42.90446256056886],[-74.08415358589968,42.899934734506665],[-74.0840317273652,42.89931326818441],[-74.0840317273652,42.898603020958966],[-74.0840317273652,42.89869180186214],[-74.08525031271,42.89682740289536],[-74.08720004926168,42.8957620320572],[-74.12534177055396,42.8764965760671],[-74.13338443382965,42.87259021632717],[-74.14362055072597,42.867618485749084],[-74.14593586288109,42.86646433400774],[-74.1477637408983,42.865576524975936],[-74.17481633555288,42.85252573220845],[-74.17871580865625,42.85066133324167],[-74.20260008141435,42.83894225402188],[-74.25719270486142,42.81204164035829],[-74.25597411951662,42.810798707713765],[-74.25548668537871,42.80866796603744],[-74.25585226098215,42.80564941532931],[-74.25877686580966,42.80236452191165],[-74.26450421693023,42.79996743752578],[-74.26462607546472,42.797836695849455],[-74.26365120718887,42.79659376320493],[-74.28948521649866,42.78380931314699],[-74.29947761632602,42.78363175134063],[-74.3247023329634,42.783365408631084],[-74.3388379229631,42.782211256889745],[-74.34968333253182,42.78141222876112],[-74.39001850744474,42.77821611624663],[-74.39221196106539,42.77803855444027],[-74.41134375097876,42.77652927908621],[-74.44643900890902,42.773688290184445],[-74.45082591615031,42.773333166571724],[-74.45496910632264,42.772978042959004],[-74.50992730537315,42.793575212496805],[-74.51004916390764,42.793575212496805],[-74.51431421261444,42.79517326875405],[-74.51467978821788,42.79535083056041],[-74.52077271494188,42.797659134043094],[-74.55598983140663,42.81053236500422],[-74.56220461666513,42.812840668486906],[-74.57792436761305,42.81577043829186],[-74.5807271139061,42.81630312371094],[-74.58170198218194,42.81648068551729],[-74.59425341123338,42.81905533170952],[-74.64835860054255,42.82953147828478],[-74.6560356882148,42.8316622199611],[-74.66797782459385,42.83521345608831],[-74.709897160455,42.84764278253354],[-74.75120720364376,42.859628204462865],[-74.75145092071271,42.85971698536604],[-74.7515727792472,42.859805766269226],[-74.76327119855729,42.86326822149325],[-74.7607121693332,42.8764965760671],[-74.75145092071271,42.926213881848],[-74.75120720364376,42.92923243255613],[-74.75059791097135,42.93597978119782],[-74.74791702321279,42.94903057396531],[-74.74158037941983,42.989159542202756],[-74.74011807700607,42.998303975230314],[-74.74377383304048,42.99928056516529],[-74.74145852088535,43.005939132903805],[-74.7410929452819,43.00664938012925],[-74.74084922821295,43.01898992567129],[-74.74353011597151,43.02946607224656],[-74.74511427691975,43.03310608927694],[-74.74803888174728,43.03612463998507],[-74.75315694019544,43.04020856153136],[-74.75656897916089,43.04100758965998],[-74.75924986691945,43.042250522304506],[-74.75998101812633,43.04739981468895],[-74.74962304269552,43.04500273030309],[-74.72720107235118,43.03816660075822],[-74.71550265304109,43.03479292643737],[-74.66103188812848,43.01934504928401],[-74.6382443421807,43.01286404335186],[-74.60619554761244,43.00380839122748],[-74.60412395252628,43.00318692490522],[-74.58718561623354,42.998126413423954],[-74.5825549919233,42.99679469987625],[-74.58121454804402,42.996262014457166],[-74.57609648959586,42.99484152000628],[-74.57170958235457,42.99359858736176],[-74.56098603132033,42.99058003665364],[-74.56025488011343,42.99040247484727],[-74.54221981701039,42.98543074426919],[-74.53771105123462,42.98543074426919],[-74.5372236170967,42.98543074426919],[-74.53527388054502,42.985341963366004],[-74.4888457789081,42.98507562065647],[-74.42913509701285,42.98480927794692],[-74.4153650826166,42.984720497043746],[-74.41146560951324,42.984720497043746],[-74.41097817537532,42.984720497043746],[-74.4092721558926,42.98543074426919],[-74.4086628632202,42.984720497043746],[-74.3884343464965,42.984720497043746],[-74.3742987564968,42.984720497043746],[-74.36369706399704,42.98463171614056],[-74.36357520546255,42.98463171614056],[-74.28936335796418,42.9844541543342],[-74.26864740710256,42.984365373431025],[-74.26328563158543,42.98427659252784],[-74.2469565879651,42.984010249818304],[-74.23208984675853,42.98409903072148],[-74.21100832029347,42.98365512620558],[-74.18785519874226,42.98347756439922],[-74.17042942831159,42.98338878349604],[-74.16640809667375,42.98330000259286],[-74.16299605770831,42.98330000259286],[-74.15044462865686,42.9831224407865],[-74.14886046770862,42.9831224407865],[-74.14337683365702,42.98303365988332],[-74.12461061934708,42.98285609807696],[-74.11242476589906,42.98285609807696],[-74.10596626357162,42.98285609807696],[-74.10560068796818,42.98285609807696],[-74.09743616615802,42.98294487898014]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.96379261419895,43.013130386061405],[-76.96379261419895,43.00318692490522],[-76.96391447273344,42.99084637936318],[-76.96367075566448,42.96962774350311],[-76.96367075566448,42.96945018169675],[-76.96367075566448,42.955777922607005],[-76.96367075566448,42.946544708676264],[-76.96354889713,42.918845066884046],[-76.96342703859551,42.90961185295331],[-76.96342703859551,42.906238178632464],[-76.96342703859551,42.903042066117976],[-76.96354889713,42.896649841089],[-76.96354889713,42.89034639696321],[-76.96354889713,42.8836878292247],[-76.96367075566448,42.88288880109607],[-76.96354889713,42.8782721941307],[-76.96342703859551,42.87676291877664],[-76.96330518006104,42.87551998613212],[-76.96330518006104,42.87259021632717],[-76.97281014575049,42.87125850277947],[-76.97561289204353,42.87010435103812],[-76.97731891152625,42.86886141839361],[-76.97914678954345,42.86708580033],[-76.97963422368137,42.865398963169575],[-76.97999979928481,42.86477749684732],[-76.98097466756064,42.864244811428236],[-76.98134024316408,42.86220285065509],[-76.98073095049169,42.861137479816925],[-76.98048723342274,42.857231120077],[-76.97415058962976,42.84027396756959],[-76.97256642868152,42.837166635958276],[-76.972688287216,42.83485833247559],[-76.9739068725608,42.83281637170245],[-76.97670961885385,42.830685630026124],[-76.97805006273313,42.82891001196252],[-76.9776844871297,42.82731195570528],[-76.97610032618145,42.825269994932135],[-76.97561289204353,42.82358315777171],[-76.97622218471592,42.82145241609538],[-76.97719705299177,42.82038704525722],[-76.9769533359228,42.81719093274273],[-76.97683147738833,42.81648068551729],[-76.97683147738833,42.815060191066415],[-76.97451616523321,42.81275188758373],[-76.97463802376768,42.81204164035829],[-76.97561289204353,42.810443584101044],[-76.97536917497456,42.80422892087843],[-76.975734750578,42.80067768475122],[-76.97670961885385,42.79872450488126],[-76.97524731644009,42.79029031907914],[-76.97488174083665,42.786472740242395],[-76.9751254579056,42.78265516140564],[-76.97561289204353,42.782033695083385],[-76.97670961885385,42.78052441972932],[-76.9776844871297,42.775730250957594],[-76.97756262859521,42.77324438566855],[-76.97524731644009,42.76916046412226],[-76.97329757988841,42.768272655090456],[-76.97232271161256,42.76711850334911],[-76.97207899454361,42.76489898076961],[-76.97244457014705,42.76418873354417],[-77.00095946721538,42.76409995264098],[-77.00156875988779,42.76409995264098],[-77.01777594497364,42.763833609931446],[-77.018628954715,42.763833609931446],[-77.05019031514534,42.763833609931446],[-77.05713625161071,42.763833609931446],[-77.07846149514474,42.763656048125085],[-77.07943636342057,42.763656048125085],[-77.08918504617898,42.7635672672219],[-77.09832443626499,42.763478486318725],[-77.116603216437,42.763300924512365],[-77.12318357729893,42.763300924512365],[-77.12318357729893,42.76170286825512],[-77.1441432452295,42.761614087351944],[-77.17375486910817,42.76152530644876],[-77.2207922634175,42.7613477446424],[-77.22676333160702,42.7613477446424],[-77.23090652177933,42.76125896373922],[-77.23212510712413,42.76125896373922],[-77.23407484367581,42.7613477446424],[-77.24163007281359,42.76125896373922],[-77.25698424815808,42.76117018283604],[-77.29926915962267,42.761436525545584],[-77.31303917401893,42.76125896373922],[-77.31450147643268,42.7591282220629],[-77.3162074959154,42.75619845225795],[-77.32132555436357,42.75007256993852],[-77.32510316893246,42.74723158103675],[-77.33351140781159,42.73817592891237],[-77.33667972970807,42.7340032264629],[-77.34655027100095,42.716335826730045],[-77.35191204651808,42.70435040480072],[-77.35434921720768,42.69715915164313],[-77.35568966108696,42.68987911758235],[-77.35739568056968,42.66919316714137],[-77.36446347556952,42.667861453593666],[-77.3671443633281,42.667861453593666],[-77.36690064625913,42.63563398573926],[-77.36665692919017,42.59834600640358],[-77.36653507065569,42.5763283424149],[-77.42307743065446,42.576594685124434],[-77.44159992789544,42.576772246930794],[-77.44159992789544,42.57686102783398],[-77.4454994009988,42.57686102783398],[-77.44574311806775,42.576772246930794],[-77.45951313246401,42.576949808737155],[-77.4742580151361,42.577127370543515],[-77.48315368815315,42.5772161514467],[-77.48522528323932,42.5772161514467],[-77.48997776608404,42.577304932349875],[-77.48997776608404,42.5848513091202],[-77.48985590754955,42.585827899055175],[-77.48949033194612,42.62134026032725],[-77.48985590754955,42.63083981696753],[-77.48900289780819,42.64557744689544],[-77.48741873685995,42.66315606572512],[-77.48693130272203,42.669015605335005],[-77.48693130272203,42.67025853797953],[-77.49168378556675,42.67025853797953],[-77.49180564410123,42.67034731888271],[-77.49399909772188,42.67034731888271],[-77.49911715617004,42.67034731888271],[-77.50618495116989,42.67043609978589],[-77.51069371694565,42.67052488068907],[-77.51105929254909,42.67052488068907],[-77.53335940435895,42.67079122339861],[-77.57259785246154,42.671590251527235],[-77.57271971099603,42.67150147062405],[-77.57698475970282,42.671590251527235],[-77.59075477409908,42.67185659423677],[-77.59879743737477,42.671945375139956],[-77.60208761780572,42.69653768532086],[-77.6052559397022,42.71997584376044],[-77.60537779823669,42.720597310082695],[-77.60732753478837,42.72867637227209],[-77.60939912987453,42.75007256993852],[-77.61122700789173,42.75708626128975],[-77.61171444202965,42.76303458180283],[-77.61171444202965,42.76321214360918],[-77.588195744875,42.762945800899644],[-77.588195744875,42.789668852756876],[-77.588195744875,42.792598622561826],[-77.588195744875,42.792687403465],[-77.58795202780604,42.854035007562516],[-77.57064811590986,42.85394622665933],[-77.55212561866888,42.854035007562516],[-77.55468464789297,42.86051601349467],[-77.554440930824,42.863357002396434],[-77.55127260892752,42.86637555310456],[-77.54981030651376,42.86655311491092],[-77.55005402358272,42.864866277750494],[-77.54944473091032,42.864244811428236],[-77.54725127728967,42.86477749684732],[-77.5465201260828,42.86628677220138],[-77.5471294187552,42.869305322909504],[-77.54810428703104,42.869838008328585],[-77.55188190159993,42.86992678923177],[-77.55407535522056,42.874454615293956],[-77.55358792108265,42.87614145245438],[-77.55176004306544,42.87862731774342],[-77.55005402358272,42.878716098646606],[-77.54944473091032,42.87924878406569],[-77.55297862841024,42.884131733740595],[-77.55614695030673,42.88981371154413],[-77.55370977961712,42.89167811051091],[-77.55346606254817,42.89425275670314],[-77.55431907228953,42.89780399283035],[-77.55870597953081,42.902686942505255],[-77.55821854539289,42.907303549470626],[-77.55894969659977,42.91041088108193],[-77.56297102823761,42.91760213423952],[-77.56321474530657,42.92008799952857],[-77.56053385754801,42.92195239849536],[-77.56236173556522,42.9253260728162],[-77.56516448185826,42.926480224557544],[-77.56662678427202,42.92825584262115],[-77.56760165254786,42.931274393329275],[-77.56772351108233,42.93322757319924],[-77.56869837935818,42.9356246575851],[-77.5728415695305,42.93544709577874],[-77.57381643780634,42.937577837455066],[-77.57393829634083,42.937577837455066],[-77.5740601548753,42.937577837455066],[-77.57479130608219,42.93811052287415],[-77.57808148651314,42.93944223642185],[-77.57966564746138,42.94308225345224],[-77.58051865720275,42.94397006248404],[-77.55578137470329,42.94388128158086],[-77.53250639461758,42.9437037197745],[-77.48254439548074,42.943171034355416],[-77.48376298082555,42.97664143485435],[-77.48412855642898,42.9831224407865],[-77.48425041496347,42.985697086978725],[-77.48437227349795,42.99803763252077],[-77.48546900030827,43.034526583727825],[-77.44489010832639,43.034704145534185],[-77.42088397703381,43.03461536463101],[-77.39980245056876,43.034526583727825],[-77.37128755350041,43.034704145534185],[-77.34496611005271,43.034704145534185],[-77.33424255901846,43.034704145534185],[-77.31437961789821,43.034704145534185],[-77.3076773985018,43.034704145534185],[-77.30195004738124,43.034704145534185],[-77.26466133583033,43.034704145534185],[-77.25722796522705,43.034704145534185],[-77.24674813126175,43.034704145534185],[-77.24662627272727,43.03976465701546],[-77.2317595315207,43.03976465701546],[-77.21591792203829,43.03976465701546],[-77.2157960635038,43.03967587611228],[-77.18618443962514,43.03976465701546],[-77.18606258109067,43.03985343791864],[-77.1846002786769,43.03985343791864],[-77.17996965436666,43.03985343791864],[-77.13573500635037,43.03985343791864],[-77.13415084540213,43.03985343791864],[-77.13341969419525,43.01534990864091],[-77.13341969419525,43.012420138835964],[-77.12233056755757,43.01250891973914],[-77.12220870902308,43.01250891973914],[-77.10636709954068,43.012597700642324],[-77.09345009488578,43.012597700642324],[-77.07907078781713,43.012597700642324],[-77.05798926135208,43.0126864815455],[-77.05689253454176,43.0126864815455],[-77.03325197885262,43.012775262448685],[-77.0253311741114,43.01286404335186],[-77.02325957902525,43.01286404335186],[-77.01485134014612,43.01286404335186],[-77.00559009152563,43.01286404335186],[-76.98402113092266,43.012952824255045],[-76.96379261419895,43.013130386061405]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.71386075998026,43.02405043715257],[-76.7117891648941,43.020410420122175],[-76.7111798722217,43.01801333573631],[-76.71239845756651,43.01579381315681],[-76.71897881842844,43.01108842528826],[-76.721659706187,43.00789231277377],[-76.72190342325595,43.00682694193561],[-76.72092855498012,43.000345936003455],[-76.72068483791115,42.99546298632855],[-76.72141598911803,42.99368736826494],[-76.72336572566972,42.991822969298155],[-76.72629033049724,42.990313693944096],[-76.72884935972132,42.98773904775187],[-76.72763077437652,42.97815071020841],[-76.72860564265235,42.97610874943527],[-76.73677016446253,42.970249209825376],[-76.73713574006597,42.96829602995541],[-76.73591715472116,42.965455041053644],[-76.73664830592804,42.9625252712487],[-76.73798874980733,42.96128233860418],[-76.73811060834181,42.956576950735624],[-76.73932919368661,42.9544462090593],[-76.73725759860045,42.950007163900295],[-76.73433299377292,42.94476909061266],[-76.73469856937636,42.942638348936335],[-76.73798874980733,42.927012909976625],[-76.73835432541077,42.92452704468758],[-76.73920733515213,42.916803106110905],[-76.73884175954869,42.91138747101691],[-76.7375013156694,42.90206547618299],[-76.73652644739357,42.89984595360349],[-76.73347998403156,42.89425275670314],[-76.727752632911,42.88475320006285],[-76.72373130127316,42.87676291877664],[-76.72178156472148,42.87108094097311],[-76.72129413058356,42.86957166561905],[-76.72080669644563,42.86264675517099],[-76.72105041351459,42.854212569368876],[-76.7204411208422,42.850750114144844],[-76.71885695989396,42.846666192598555],[-76.71788209161811,42.844180327309516],[-76.71715094041123,42.838853473118704],[-76.71751651601467,42.832550028992905],[-76.71946625256635,42.825447556738496],[-76.72324386713524,42.817901179968175],[-76.72909307679028,42.80813528061836],[-76.73043352066956,42.806182100748394],[-76.73835432541077,42.79472936423815],[-76.7400603448935,42.78940251004734],[-76.7400603448935,42.776440498183035],[-76.7375013156694,42.75389014877526],[-76.73603901325565,42.74554474387633],[-76.73421113523844,42.733204198334285],[-76.73347998403156,42.72787734414347],[-76.73165210601437,42.720774871889056],[-76.72897121825581,42.71287337150602],[-76.72336572566972,42.704084062091184],[-76.71970996963532,42.70044404506079],[-76.6977754334289,42.68455226339154],[-76.69034206282561,42.67727222933077],[-76.687904892136,42.67478636404172],[-76.68534586291193,42.67025853797953],[-76.67169770705016,42.63572276664244],[-76.666579648602,42.623471002003576],[-76.66316760963655,42.61636852974916],[-76.66024300480902,42.61086411375199],[-76.65622167317117,42.60482701233573],[-76.64537626360246,42.59168743866507],[-76.626731907827,42.57384247712585],[-76.61673950799963,42.56567463403327],[-76.60601595696538,42.55937118990748],[-76.58603115731064,42.5498716332672],[-76.59882630343105,42.54951650965448],[-76.6107684398101,42.54916138604176],[-76.61125587394802,42.54916138604176],[-76.61357118610314,42.549072605138576],[-76.61539906412034,42.54916138604176],[-76.61661764946514,42.549072605138576],[-76.61795809334443,42.549072605138576],[-76.62636633222355,42.54862870062268],[-76.63075323946484,42.54862870062268],[-76.63087509799932,42.54862870062268],[-76.64135493196461,42.54818479610678],[-76.6500068879127,42.548007234300414],[-76.65195662446438,42.54791845339724],[-76.67145398998119,42.54729698707498],[-76.67291629239496,42.54729698707498],[-76.67718134110176,42.547208206171796],[-76.67925293618792,42.54711942526862],[-76.69667870661857,42.546675520752714],[-76.69972516998058,42.546675520752714],[-76.70118747239434,42.54658673984954],[-76.7149574867906,42.54623161623682],[-76.72239085739388,42.546054054430456],[-76.73567343765221,42.54561014991455],[-76.74517840334165,42.54543258810819],[-76.76065443722062,42.54507746449547],[-76.78088295394433,42.54454477907639],[-76.78843818308209,42.54427843636685],[-76.79185022204753,42.54418965546367],[-76.80501094377138,42.54383453185095],[-76.810494577823,42.54374575094777],[-76.8490018747187,42.54268038010961],[-76.85253577221863,42.54250281830325],[-76.87398287428712,42.54197013288417],[-76.874714025494,42.54205891378734],[-76.88007580101113,42.54188135198098],[-76.88117252782145,42.54188135198098],[-76.8955518348901,42.54152622836826],[-76.89445510807978,42.55768435274706],[-76.89408953247634,42.57881420770394],[-76.89408953247634,42.58502887092656],[-76.8943332495453,42.598612349113125],[-76.89469882514874,42.62320465929403],[-76.89457696661425,42.6291529798071],[-76.89469882514874,42.636876918383784],[-76.89518625928666,42.6542779754071],[-76.89713599583834,42.6636887511442],[-76.89872015678658,42.66661852094914],[-76.90798140540707,42.67904784739437],[-76.92443230756189,42.700710387770336],[-76.93637444394093,42.71731241666503],[-76.93868975609605,42.7214851191145],[-76.94295480480285,42.73196126568976],[-76.94502639988902,42.73728811988057],[-76.94673241937174,42.749717446325796],[-76.94770728764759,42.75761894670883],[-76.9475854291131,42.76436629535053],[-76.97244457014705,42.76418873354417],[-76.97207899454361,42.76489898076961],[-76.97232271161256,42.76711850334911],[-76.97329757988841,42.768272655090456],[-76.97524731644009,42.76916046412226],[-76.97756262859521,42.77324438566855],[-76.9776844871297,42.775730250957594],[-76.97670961885385,42.78052441972932],[-76.97561289204353,42.782033695083385],[-76.9751254579056,42.78265516140564],[-76.97488174083665,42.786472740242395],[-76.97524731644009,42.79029031907914],[-76.97670961885385,42.79872450488126],[-76.975734750578,42.80067768475122],[-76.97536917497456,42.80422892087843],[-76.97561289204353,42.810443584101044],[-76.97463802376768,42.81204164035829],[-76.97451616523321,42.81275188758373],[-76.97683147738833,42.815060191066415],[-76.97683147738833,42.81648068551729],[-76.9769533359228,42.81719093274273],[-76.97719705299177,42.82038704525722],[-76.97622218471592,42.82145241609538],[-76.97561289204353,42.82358315777171],[-76.97610032618145,42.825269994932135],[-76.9776844871297,42.82731195570528],[-76.97805006273313,42.82891001196252],[-76.97670961885385,42.830685630026124],[-76.9739068725608,42.83281637170245],[-76.972688287216,42.83485833247559],[-76.97256642868152,42.837166635958276],[-76.97415058962976,42.84027396756959],[-76.98048723342274,42.857231120077],[-76.98073095049169,42.861137479816925],[-76.98134024316408,42.86220285065509],[-76.98097466756064,42.864244811428236],[-76.97999979928481,42.86477749684732],[-76.97963422368137,42.865398963169575],[-76.97914678954345,42.86708580033],[-76.97731891152625,42.86886141839361],[-76.97561289204353,42.87010435103812],[-76.97281014575049,42.87125850277947],[-76.96330518006104,42.87259021632717],[-76.96330518006104,42.87551998613212],[-76.96342703859551,42.87676291877664],[-76.96354889713,42.8782721941307],[-76.96367075566448,42.88288880109607],[-76.96354889713,42.8836878292247],[-76.96354889713,42.89034639696321],[-76.96354889713,42.896649841089],[-76.96342703859551,42.903042066117976],[-76.96342703859551,42.906238178632464],[-76.96342703859551,42.90961185295331],[-76.96354889713,42.918845066884046],[-76.96367075566448,42.946544708676264],[-76.96367075566448,42.955777922607005],[-76.96367075566448,42.96945018169675],[-76.96367075566448,42.96962774350311],[-76.96391447273344,42.99084637936318],[-76.96379261419895,43.00318692490522],[-76.96379261419895,43.013130386061405],[-76.91224645411387,43.01597137496317],[-76.87861349859736,43.01765821212359],[-76.85948170868399,43.018368459349034],[-76.85875055747711,43.01845724025222],[-76.81451590946084,43.020232858315815],[-76.80683882178859,43.02067676283172],[-76.79672456342674,43.02112066734762],[-76.75309920808286,43.02271872360486],[-76.74408167653134,43.022985066314405],[-76.71434819411819,43.02405043715257],[-76.71386075998026,43.02405043715257]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-77.58051865720275,42.94397006248404],[-77.57966564746138,42.94308225345224],[-77.57808148651314,42.93944223642185],[-77.57479130608219,42.93811052287415],[-77.5740601548753,42.937577837455066],[-77.57393829634083,42.937577837455066],[-77.57381643780634,42.937577837455066],[-77.5728415695305,42.93544709577874],[-77.56869837935818,42.9356246575851],[-77.56772351108233,42.93322757319924],[-77.56760165254786,42.931274393329275],[-77.56662678427202,42.92825584262115],[-77.56516448185826,42.926480224557544],[-77.56236173556522,42.9253260728162],[-77.56053385754801,42.92195239849536],[-77.56321474530657,42.92008799952857],[-77.56297102823761,42.91760213423952],[-77.55894969659977,42.91041088108193],[-77.55821854539289,42.907303549470626],[-77.55870597953081,42.902686942505255],[-77.55431907228953,42.89780399283035],[-77.55346606254817,42.89425275670314],[-77.55370977961712,42.89167811051091],[-77.55614695030673,42.88981371154413],[-77.55297862841024,42.884131733740595],[-77.54944473091032,42.87924878406569],[-77.55005402358272,42.878716098646606],[-77.55176004306544,42.87862731774342],[-77.55358792108265,42.87614145245438],[-77.55407535522056,42.874454615293956],[-77.55188190159993,42.86992678923177],[-77.54810428703104,42.869838008328585],[-77.5471294187552,42.869305322909504],[-77.5465201260828,42.86628677220138],[-77.54725127728967,42.86477749684732],[-77.54944473091032,42.864244811428236],[-77.55005402358272,42.864866277750494],[-77.54981030651376,42.86655311491092],[-77.55127260892752,42.86637555310456],[-77.554440930824,42.863357002396434],[-77.55468464789297,42.86051601349467],[-77.55212561866888,42.854035007562516],[-77.57064811590986,42.85394622665933],[-77.58795202780604,42.854035007562516],[-77.588195744875,42.792687403465],[-77.588195744875,42.792598622561826],[-77.588195744875,42.789668852756876],[-77.588195744875,42.762945800899644],[-77.61171444202965,42.76321214360918],[-77.61171444202965,42.76303458180283],[-77.61122700789173,42.75708626128975],[-77.60939912987453,42.75007256993852],[-77.60732753478837,42.72867637227209],[-77.60537779823669,42.720597310082695],[-77.6052559397022,42.71997584376044],[-77.60208761780572,42.69653768532086],[-77.59879743737477,42.671945375139956],[-77.59075477409908,42.67185659423677],[-77.57698475970282,42.671590251527235],[-77.57271971099603,42.67150147062405],[-77.57259785246154,42.671590251527235],[-77.53335940435895,42.67079122339861],[-77.51105929254909,42.67052488068907],[-77.51069371694565,42.67052488068907],[-77.50618495116989,42.67043609978589],[-77.49911715617004,42.67034731888271],[-77.49399909772188,42.67034731888271],[-77.49180564410123,42.67034731888271],[-77.49168378556675,42.67025853797953],[-77.48693130272203,42.67025853797953],[-77.48693130272203,42.669015605335005],[-77.48741873685995,42.66315606572512],[-77.48900289780819,42.64557744689544],[-77.48985590754955,42.63083981696753],[-77.48949033194612,42.62134026032725],[-77.48985590754955,42.585827899055175],[-77.48997776608404,42.5848513091202],[-77.48997776608404,42.577304932349875],[-77.53969604815191,42.57837030318804],[-77.57479130608219,42.57916933131666],[-77.58380883763371,42.5794356740262],[-77.58917061315084,42.57961323583256],[-77.61439532978821,42.580057140348465],[-77.61744179315022,42.580057140348465],[-77.6175636516847,42.580057140348465],[-77.6206101150467,42.580057140348465],[-77.6206101150467,42.580057140348465],[-77.65107474866673,42.580323483058],[-77.65424307056321,42.580323483058],[-77.6543649290977,42.580323483058],[-77.65997042168378,42.580323483058],[-77.66045785582169,42.55635263919935],[-77.66082343142513,42.552446279459424],[-77.66094528995961,42.5489838242354],[-77.66131086556305,42.53504522243611],[-77.66850051909738,42.53504522243611],[-77.70359577702764,42.53531156514565],[-77.7039613526311,42.534601317920206],[-77.72065597185487,42.53504522243611],[-77.72297128400999,42.47121175304956],[-77.76732779056074,42.47227712388772],[-77.78694701461204,42.47289859020998],[-77.84019919417985,42.47458542737041],[-77.84068662831777,42.517732946315974],[-77.90356563210949,42.51817685083188],[-77.9108771441783,42.518265631735055],[-77.91623891969543,42.51835441263824],[-77.9365892949536,42.51835441263824],[-77.9549899336601,42.51835441263824],[-78.04053462486513,42.518443193541415],[-78.03870674684794,42.52092905883046],[-78.04065648339962,42.528120311988054],[-78.04163135167545,42.52918568282622],[-78.04284993702025,42.5292744637294],[-78.04370294676161,42.528475435600775],[-78.04394666383057,42.52741006476261],[-78.04553082477881,42.52634469392445],[-78.04772427839946,42.526433474827634],[-78.0480898540029,42.527942750181694],[-78.04674941012361,42.5297183682453],[-78.04150949314098,42.53300326166297],[-78.04126577607201,42.53371350888841],[-78.0426062199513,42.535134003339294],[-78.04882100520977,42.538685239466496],[-78.05064888322698,42.538330115853775],[-78.05771667822683,42.532559357147065],[-78.0596664147785,42.53229301443753],[-78.06039756598538,42.53282569985661],[-78.06100685865779,42.53397985159795],[-78.06051942451987,42.536820840499715],[-78.05905712210611,42.538862801272856],[-78.05040516615801,42.54232525649689],[-78.04918658081321,42.54392331275413],[-78.04955215641665,42.54525502630183],[-78.0517456100373,42.546853082559075],[-78.05198932710626,42.54827357700996],[-78.0505270246925,42.55377799300713],[-78.04796799546841,42.5579506954566],[-78.03578214202041,42.566917566677795],[-78.03444169814112,42.567272690290515],[-78.03029850796881,42.56665122396826],[-78.02822691288264,42.56718390938734],[-78.02834877141711,42.56798293751596],[-78.03261382012393,42.57277710628769],[-78.03358868839976,42.57339857260995],[-78.03651329322729,42.57304344899723],[-78.03858488831345,42.57144539273999],[-78.04150949314098,42.57109026912727],[-78.04163135167545,42.571001488224084],[-78.04406852236505,42.570202460095466],[-78.04662755158914,42.57029124099864],[-78.05077074176145,42.57419760073857],[-78.05101445883042,42.575795656995815],[-78.0486991466753,42.57890298860712],[-78.04492153210641,42.58094494938027],[-78.03712258589968,42.58724839350606],[-78.03614771762385,42.58760351711878],[-78.02810505434816,42.58644936537744],[-78.02384000564136,42.58494009002337],[-78.01226344486575,42.58671570808698],[-78.00872954736582,42.5892903542792],[-78.0051956498659,42.59337427582549],[-78.0039770645211,42.596215264727256],[-78.0039770645211,42.59630404563044],[-78.00629237667623,42.59887869182266],[-78.01360388874502,42.599588939048104],[-78.01665035210704,42.59887869182266],[-78.01811265452079,42.59710307375906],[-78.01994053253799,42.596037702920896],[-78.02189026908968,42.59612648382408],[-78.02469301538272,42.59728063556542],[-78.02920178115848,42.60296261336895],[-78.02895806408952,42.603850422400754],[-78.02810505434816,42.604560669626196],[-78.01969681546903,42.6063362876898],[-78.01774707891735,42.60713531581842],[-78.01543176676223,42.60926605749474],[-78.01470061555536,42.610153866526545],[-78.01141043512439,42.61139679917107],[-78.00653609374518,42.610153866526545],[-78.00556122546934,42.61024264742973],[-77.9997120158143,42.612728512718775],[-77.99751856219365,42.61548072071736],[-77.99654369391781,42.616102187039616],[-77.99435024029717,42.61583584433008],[-77.99203492814205,42.614592911685556],[-77.9904507671938,42.6148592543951],[-77.98898846478005,42.61601340613644],[-77.9880135965042,42.6175226814905],[-77.98728244529732,42.62009732768273],[-77.98886660624557,42.62533540097036],[-77.989232181849,42.62551296277672],[-77.98691686969389,42.62897541800075],[-77.98338297219397,42.63012956974209],[-77.98289553805604,42.630751036064346],[-77.98301739659053,42.633947148578834],[-77.9721719870218,42.64655403683042],[-77.97180641141836,42.649128683022646],[-77.97314685529763,42.65143698650533],[-77.970953401677,42.65889458237247],[-77.97083154314251,42.65924970598519],[-77.96997853340115,42.66111410495197],[-77.96754136271154,42.6628009421124],[-77.96266702133235,42.66182435217741],[-77.95888940676346,42.666529740045966],[-77.95633037753937,42.667861453593666],[-77.95596480193593,42.700532825963975],[-77.95535550926354,42.710209944410614],[-77.95547736779803,42.71367239963464],[-77.95511179219459,42.736400310848765],[-77.95535550926354,42.73693299626785],[-77.95511179219459,42.75175940709894],[-77.95535550926354,42.757352603999294],[-77.95535550926354,42.75948334567562],[-77.95547736779803,42.761614087351944],[-77.95572108486698,42.77093608218586],[-77.95572108486698,42.77271170024947],[-77.95572108486698,42.790201538175964],[-77.9555992263325,42.80050012294486],[-77.95547736779803,42.80369623545935],[-77.95535550926354,42.81053236500422],[-77.95523365072906,42.815415314679136],[-77.95535550926354,42.817723618161814],[-77.95535550926354,42.82189632061129],[-77.95535550926354,42.82296169144945],[-77.95535550926354,42.83281637170245],[-77.9549899336601,42.85083889504803],[-77.9549899336601,42.85101645685439],[-77.95486807512562,42.86184772704237],[-77.9549899336601,42.86255797426781],[-77.95523365072906,42.89016883515685],[-77.95535550926354,42.89460788031586],[-77.95547736779803,42.90588305501974],[-77.93524885107432,42.90526158869748],[-77.93488327547088,42.91911140959359],[-77.9347614169364,42.92559241552574],[-77.93463955840193,42.927368033589346],[-77.93439584133296,42.937577837455066],[-77.93427398279849,42.945568118741285],[-77.92220998788495,42.94530177603174],[-77.92013839279879,42.94530177603174],[-77.91136457831622,42.945035433322204],[-77.9102678515059,42.96918383898721],[-77.91002413443694,42.97628631124163],[-77.91002413443694,42.97850583382113],[-77.90978041736798,42.98773904775187],[-77.86578948642067,42.98782782865505],[-77.86469275961035,42.985874648785085],[-77.86018399383458,42.98800539046141],[-77.85847797435186,42.98782782865505],[-77.85543151098986,42.98791660955823],[-77.85396920857609,42.98791660955823],[-77.82460130176639,42.988094171364594],[-77.77171469780203,42.98836051407413],[-77.7307702302167,42.98836051407413],[-77.73186695702704,42.984542935237386],[-77.73259810823392,42.98187950814198],[-77.72126526452726,42.979748766465654],[-77.71870623530319,42.97539850220983],[-77.71834065969975,42.97317897963032],[-77.71870623530319,42.971758485179436],[-77.72394615228583,42.97211360879216],[-77.72626146444095,42.965455041053644],[-77.72504287909615,42.959329158734214],[-77.72857677659607,42.95293693370524],[-77.73162323995807,42.9553340180911],[-77.73308554237184,42.95568914170382],[-77.73430412771664,42.95462377086566],[-77.7307702302167,42.94849788854623],[-77.73113580582016,42.94716617499853],[-77.73247624969943,42.945035433322204],[-77.73844731788896,42.94769886041761],[-77.74222493245784,42.94476909061266],[-77.74904901038873,42.94397006248404],[-77.75294848349209,42.945568118741285],[-77.75867583461266,42.9445915288063],[-77.76038185409537,42.943171034355416],[-77.75867583461266,42.94041882635683],[-77.70042745513116,42.94024126455047],[-77.67032839711459,42.94015248364729],[-77.63754845133944,42.93997492184093],[-77.63498942211535,42.94450274790312],[-77.61208001763309,42.9441476242904],[-77.60732753478837,42.94405884338722],[-77.58149352547859,42.94397006248404],[-77.58051865720275,42.94397006248404]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.27428176574493,42.94361493887132],[-73.27440362427942,42.942460787129974],[-73.27452548281389,42.94033004545365],[-73.27574406815869,42.90108888624801],[-73.27574406815869,42.89727130741126],[-73.27745008764141,42.859983328075586],[-73.27854681445173,42.837521759571],[-73.27866867298621,42.83343783802471],[-73.2842741655723,42.834947113378774],[-73.28537089238262,42.83405930434697],[-73.28707691186534,42.82012070254768],[-73.28378673143438,42.81390603932507],[-73.28634576065846,42.808046499715175],[-73.2909763849687,42.801920617395744],[-73.27647521936558,42.74598864839223],[-73.26489865858997,42.74589986748905],[-73.27415990721045,42.72121877640496],[-73.31254534557168,42.61770024329686],[-73.34166953531243,42.53939548669194],[-73.35251494488115,42.5100090077393],[-73.37895824686333,42.50761192335344],[-73.39650587582847,42.50574752438665],[-73.40247694401799,42.50512605806439],[-73.44512743108604,42.50068701290538],[-73.44634601643084,42.50050945109902],[-73.44975805539627,42.500065546583116],[-73.44987991393076,42.500065546583116],[-73.50849386901568,42.493762102457325],[-73.51751140056722,42.492607950715986],[-73.5206797224637,42.49216404620008],[-73.52287317608433,42.491897703490544],[-73.5261633565153,42.49154257987782],[-73.53359672711859,42.49065477084602],[-73.55443453651469,42.488168905556975],[-73.57661278979006,42.485239135752025],[-73.57831880927279,42.48497279304249],[-73.62511248651315,42.48026740517394],[-73.63144913030611,42.4795571579485],[-73.65021534461604,42.47769275898171],[-73.68445759280495,42.474230303757686],[-73.68969750978759,42.473697618338605],[-73.6909160951324,42.473520056532244],[-73.71796868978699,42.470767848533654],[-73.72917967495916,42.469613696792315],[-73.73783163090724,42.46872588776051],[-73.78377229840623,42.464198061698326],[-73.78572203495791,42.47165565756546],[-73.78608761056135,42.477781539884894],[-73.78560017642343,42.48719231562199],[-73.7808476935787,42.49731333858453],[-73.77585149366503,42.50583630528983],[-73.76671210357902,42.518088069928694],[-73.7637874987515,42.52110662063682],[-73.76110661099294,42.52634469392445],[-73.7583038646999,42.534246194307485],[-73.75696342082061,42.54197013288417],[-73.75684156228613,42.542946722819146],[-73.75671970375166,42.54374575094777],[-73.75647598668269,42.548717481525856],[-73.75403881599308,42.55679654371526],[-73.75221093797589,42.566740004871434],[-73.75233279651037,42.57668346602762],[-73.75440439159652,42.58254300563751],[-73.75720713788957,42.58715961260288],[-73.7595224500447,42.59461720847001],[-73.76122846952741,42.60074309078945],[-73.76159404513086,42.60358407969121],[-73.76122846952741,42.61042020923609],[-73.75976616711365,42.61379388355694],[-73.7595224500447,42.61414900716966],[-73.75294208918277,42.628709075291205],[-73.75062677702765,42.637054480190145],[-73.74892075754492,42.64025059270463],[-73.748433323407,42.641493525349155],[-73.74770217220012,42.643180362509575],[-73.7466054453898,42.6461989132177],[-73.7417311040106,42.65436675631028],[-73.73941579185548,42.656763840696144],[-73.72930153349363,42.66484290288554],[-73.72491462625234,42.67016975707635],[-73.72320860676962,42.672921965074934],[-73.71638452883874,42.68242152171521],[-73.70651398754585,42.694051820031824],[-73.702492655908,42.700000140544894],[-73.70237079737353,42.700887949576696],[-73.70346752418385,42.705593337445244],[-73.70358938271833,42.70949969718517],[-73.70139592909769,42.715803141310964],[-73.70078663642529,42.71775632118093],[-73.69956805108049,42.72086365279224],[-73.69932433401152,42.7214851191145],[-73.69859318280464,42.72379342259718],[-73.6976183145288,42.72725587782121],[-73.69749645599433,42.72769978233711],[-73.69725273892536,42.728765153175274],[-73.6957904365116,42.730629552142055],[-73.69469370970128,42.73205004659294],[-73.69371884142544,42.73276029381838],[-73.69225653901168,42.733736883753366],[-73.69018494392552,42.735246159107426],[-73.68872264151176,42.739507642460076],[-73.68872264151176,42.7398627660728],[-73.68799149030488,42.744923277554065],[-73.68750405616696,42.74891841819718],[-73.68713848056352,42.751049159873496],[-73.68701662202903,42.75167062619576],[-73.68726033909799,42.75246965432438],[-73.68494502694287,42.75673113767703],[-73.68433573427048,42.76081505922332],[-73.68384830013255,42.76605313251095],[-73.68372644159807,42.76667459883321],[-73.68336086599463,42.76782875057455],[-73.6823859977188,42.77022583496042],[-73.68189856358087,42.77155754850812],[-73.68128927090847,42.77280048115264],[-73.67848652461542,42.7788375825689],[-73.67751165633959,42.78132344785794],[-73.67678050513271,42.78327662772791],[-73.67665864659823,42.783720532243805],[-73.67470891004655,42.78727176837101],[-73.67409961737414,42.78878104372508],[-73.6725154564259,42.79535083056041],[-73.67214988082246,42.796149858689034],[-73.66739739797774,42.80014499933214],[-73.66361978340885,42.80085524655758],[-73.66130447125373,42.80298598823391],[-73.65850172496069,42.80911187055334],[-73.65947659323653,42.81275188758373],[-73.65972031030549,42.81896655080634],[-73.66227933952958,42.82402706228761],[-73.6658132370295,42.83334905712153],[-73.66776297358118,42.83654516963602],[-73.67056571987422,42.83965250124732],[-73.67080943694319,42.84027396756959],[-73.6719061637535,42.843825203696795],[-73.67239359789143,42.84986230511304],[-73.67385590030518,42.855544282916576],[-73.67592749539135,42.8585628336247],[-73.67385590030518,42.86673067671728],[-73.67324660763278,42.875076081616214],[-73.6761712124603,42.879337564968864],[-73.67933953435679,42.88217855387063],[-73.68055811970159,42.88537466638512],[-73.6828734318567,42.88963614973777],[-73.68323900746014,42.89070152057593],[-73.68433573427048,42.89185567231727],[-73.68323900746014,42.89611715566992],[-73.68372644159807,42.89851424005578],[-73.68360458306358,42.90135522895755],[-73.6823859977188,42.90543915050384],[-73.67885210021886,42.912186499145534],[-73.67154058815007,42.91937775230313],[-73.6682504077191,42.922396303011254],[-73.66410721754677,42.92630266275118],[-73.66374164194333,42.926835348170265],[-73.66301049073645,42.928522185330685],[-73.66301049073645,42.928877308943406],[-73.66264491513301,42.92940999436249],[-73.6603296029779,42.9325173259738],[-73.65862358349517,42.93367147771514],[-73.65777057375381,42.9342929440374],[-73.65338366651252,42.936690028423264],[-73.64972791047812,42.938554427390045],[-73.63997922771972,42.93944223642185],[-73.63547046194395,42.941306635388635],[-73.59574457970344,42.94192810171089],[-73.58733634082431,42.94210566351725],[-73.58502102866919,42.94210566351725],[-73.57722208246247,42.94219444442044],[-73.5365213319461,42.942993472549055],[-73.52750380039458,42.943171034355416],[-73.51726768349825,42.943348596161776],[-73.51373378599833,42.94343737706496],[-73.50374138617096,42.94361493887132],[-73.49959819599864,42.9437037197745],[-73.46450293806836,42.94423640519358],[-73.46230948444773,42.94476909061266],[-73.45061106513764,42.9445915288063],[-73.44927062125836,42.94530177603174],[-73.4490269041894,42.94601202325718],[-73.4496361968618,42.94991838299711],[-73.44927062125836,42.95125009654481],[-73.44061866531027,42.95364718093068],[-73.43318529470699,42.95826378789605],[-73.42684865091402,42.95853013060559],[-73.42489891436233,42.955955484413366],[-73.42063386565553,42.9548901135752],[-73.41636881694873,42.95666573163881],[-73.41210376824192,42.95737597886425],[-73.40820429513856,42.956932074348344],[-73.40454853910416,42.95551157989746],[-73.40357367082832,42.95382474273704],[-73.40138021720767,42.9522266864798],[-73.39809003677671,42.9531144955116],[-73.39358127100095,42.9531144955116],[-73.38931622229414,42.94974082119075],[-73.38285771996671,42.94752129861125],[-73.37908010539782,42.94441396699994],[-73.37956753953574,42.94379250067768],[-73.3681128372946,42.94405884338722],[-73.35580512531212,42.94397006248404],[-73.33313943789882,42.94388128158086],[-73.27428176574493,42.94361493887132]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.09304925891674,42.95568914170382],[-74.0803759713308,42.9548901135752],[-74.05795400098646,42.95346961912432],[-74.05563868883134,42.953380838221136],[-74.05539497176238,42.95329205731796],[-74.0411375232282,42.947610079514426],[-74.03675061598692,42.94476909061266],[-74.03224185021116,42.942993472549055],[-74.02371175279755,42.940773949969554],[-74.02273688452172,42.94006370274411],[-74.01920298702179,42.938909551002766],[-74.01895926995283,42.938909551002766],[-74.01189147495299,42.93597978119782],[-74.00652969943586,42.93376025861832],[-73.99726845081537,42.92878852804023],[-73.99544057279817,42.92772315720207],[-73.99531871426369,42.92781193810524],[-73.99336897771201,42.926480224557544],[-73.99239410943616,42.92585875823528],[-73.96948470495391,42.91129869011373],[-73.96448850504022,42.904196217859315],[-73.95937044659206,42.899402049087584],[-73.9554709734887,42.89736008831444],[-73.95400867107493,42.897715211927164],[-73.9370703347822,42.904551341472036],[-73.92780908616172,42.907747453986524],[-73.92147244236875,42.90961185295331],[-73.91830412047227,42.91058844288829],[-73.9046559646105,42.91129869011373],[-73.90453410607601,42.90978941475967],[-73.90368109633465,42.9042849987625],[-73.90307180366226,42.900289858119386],[-73.90209693538641,42.89700496470172],[-73.90063463297265,42.887860531674164],[-73.90051277443817,42.885641009094655],[-73.89807560374857,42.86726336213636],[-73.89807560374857,42.8666418958141],[-73.8967351598693,42.857053558270636],[-73.89624772573137,42.854035007562516],[-73.89588215012793,42.851105237757565],[-73.88771762831776,42.85021742872576],[-73.88174656012824,42.85083889504803],[-73.87967496504207,42.84861937246852],[-73.8758973504732,42.83423686615333],[-73.86834212133543,42.8294426973816],[-73.86675796038719,42.82837732654344],[-73.85847158004253,42.81994314074132],[-73.85335352159437,42.81239676397101],[-73.84628572659453,42.80485038720069],[-73.84592015099109,42.80440648268479],[-73.84153324374981,42.797836695849455],[-73.83215013659483,42.79304252707772],[-73.82910367323284,42.790201538175964],[-73.82849438056043,42.78487468398515],[-73.82764137081907,42.78380931314699],[-73.82215773676747,42.78025807701978],[-73.80936259064705,42.7788375825689],[-73.80960630771601,42.77581903186077],[-73.80960630771601,42.77519756553851],[-73.82496048306051,42.773333166571724],[-73.84007094133604,42.77155754850812],[-73.85225679478405,42.7698707113477],[-73.85798414590462,42.769249245025435],[-73.86822026280095,42.76800631238091],[-73.87163230176638,42.76747362696183],[-73.87224159443879,42.767384846058654],[-73.87236345297327,42.76747362696183],[-73.87979682357656,42.76658581793003],[-73.88783948685224,42.76587557070459],[-73.89186081849009,42.765342885285506],[-73.89941604762785,42.764455076253704],[-73.90721499383457,42.7635672672219],[-73.93061183245476,42.76099262102968],[-73.9340238714202,42.76063749741696],[-73.9425539688338,42.75966090748198],[-73.94474742245444,42.759394564772435],[-73.96022345633342,42.757352603999294],[-73.9763087828848,42.755133081419785],[-73.99422198745337,42.75273599703392],[-74.03833477693516,42.74740914284311],[-74.04686487434877,42.74634377200495],[-74.05137364012454,42.74581108658587],[-74.05454196202102,42.745455962973146],[-74.11242476589906,42.73853105252509],[-74.16884526736335,42.73142858027068],[-74.18029996960448,42.7300080858198],[-74.18261528175961,42.719443158341356],[-74.18419944270785,42.7125182478933],[-74.19297325719042,42.711719219764674],[-74.20065034486267,42.71100897253923],[-74.20272193994882,42.71083141073287],[-74.23988879296525,42.718910472922275],[-74.24171667098246,42.71677973124595],[-74.26145775356824,42.71509289408552],[-74.27230316313695,42.714293865956904],[-74.27193758753351,42.71535923679507],[-74.27071900218871,42.71953193924453],[-74.27766493865408,42.719443158341356],[-74.28192998736088,42.72397098440354],[-74.28205184589537,42.72405976530672],[-74.28729176287801,42.729475400400716],[-74.29253167986066,42.73462469278517],[-74.30496125037763,42.74705401923039],[-74.30666726986036,42.75007256993852],[-74.30593611865346,42.7514930643894],[-74.30142735287771,42.753446244259365],[-74.29314097253305,42.75575454774205],[-74.28692618727457,42.75664235677385],[-74.27827423132649,42.75664235677385],[-74.26974413391288,42.757352603999294],[-74.26523536813711,42.75584332864523],[-74.26316377305095,42.75575454774205],[-74.25877686580966,42.757175042192934],[-74.25524296830974,42.76072627832014],[-74.25158721227534,42.76560922799505],[-74.25170907080982,42.76685216063957],[-74.25292765615463,42.7689829023159],[-74.25463367563735,42.77288926205583],[-74.25463367563735,42.77528634644169],[-74.25158721227534,42.78087954334204],[-74.24805331477542,42.78460834127561],[-74.24768773917198,42.78549615030741],[-74.2481751733099,42.78691664475829],[-74.25451181710287,42.79535083056041],[-74.25658341218903,42.79588351597949],[-74.26145775356824,42.79517326875405],[-74.26365120718887,42.79659376320493],[-74.26462607546472,42.797836695849455],[-74.26450421693023,42.79996743752578],[-74.25877686580966,42.80236452191165],[-74.25585226098215,42.80564941532931],[-74.25548668537871,42.80866796603744],[-74.25597411951662,42.810798707713765],[-74.25719270486142,42.81204164035829],[-74.20260008141435,42.83894225402188],[-74.17871580865625,42.85066133324167],[-74.17481633555288,42.85252573220845],[-74.1477637408983,42.865576524975936],[-74.14593586288109,42.86646433400774],[-74.14362055072597,42.867618485749084],[-74.13338443382965,42.87259021632717],[-74.12534177055396,42.8764965760671],[-74.08720004926168,42.8957620320572],[-74.08525031271,42.89682740289536],[-74.0840317273652,42.89869180186214],[-74.0840317273652,42.898603020958966],[-74.0840317273652,42.89931326818441],[-74.08415358589968,42.899934734506665],[-74.08476287857208,42.90446256056886],[-74.08659075658929,42.91511626895048],[-74.08622518098585,42.91520504985366],[-74.08854049314097,42.92727925268616],[-74.09304925891674,42.95568914170382]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.76327119855729,42.86326822149325],[-74.7515727792472,42.859805766269226],[-74.75145092071271,42.85971698536604],[-74.75120720364376,42.859628204462865],[-74.709897160455,42.84764278253354],[-74.66797782459385,42.83521345608831],[-74.6560356882148,42.8316622199611],[-74.64835860054255,42.82953147828478],[-74.66529693683529,42.79215471804592],[-74.66541879536976,42.791888375336384],[-74.66554065390424,42.790556661788685],[-74.66797782459385,42.764632638060064],[-74.66749039045592,42.750694036260775],[-74.6603007369216,42.730274428529334],[-74.65591382968032,42.71722363576185],[-74.64908975174943,42.69431816274136],[-74.63958478605998,42.6636887511442],[-74.6388536348531,42.661558009467875],[-74.63544159588766,42.65010527295763],[-74.63117654718086,42.6291529798071],[-74.63068911304293,42.62675589542124],[-74.63958478605998,42.6139714453633],[-74.67163358062825,42.565408291323735],[-74.67236473183513,42.56452048229193],[-74.71160317993773,42.51782172721916],[-74.71196875554116,42.516933918187355],[-74.71647752131693,42.51604610915555],[-74.72232673097197,42.51631245186509],[-74.72378903338574,42.517289041800076],[-74.72720107235118,42.51782172721916],[-74.7289070918339,42.51746660360644],[-74.73244098933382,42.51533586193011],[-74.74438312571287,42.51595732825237],[-74.75206021338512,42.51427049109195],[-74.75681269622984,42.5117846258029],[-74.75742198890224,42.51098559767428],[-74.76022473519528,42.5100090077393],[-74.77094828622954,42.504504591742126],[-74.77289802278122,42.50485971535485],[-74.7778942226949,42.506368990708914],[-74.83833605579703,42.51205096851244],[-74.84223552890039,42.51240609212516],[-74.8440634069176,42.51258365393152],[-74.85783342131384,42.506724114321635],[-74.88781062079595,42.49331819794143],[-74.936554034588,42.47138931485592],[-74.93728518579488,42.478669348916696],[-74.9640940633805,42.47582836001493],[-74.96969955596659,42.46686148879373],[-74.9842007215697,42.4436896730637],[-74.98651603372484,42.44431113938596],[-74.98846577027652,42.446264319255924],[-74.9910247995006,42.44599797654639],[-74.991634092173,42.44519894841776],[-74.99053736536268,42.44173649319374],[-74.99273081898332,42.43996087513013],[-74.99443683846604,42.43996087513013],[-75.00089534079349,42.442890644935076],[-75.00211392613829,42.44466626299868],[-75.0013827749314,42.447152128287726],[-75.00272321881069,42.448838965448154],[-75.00905986260365,42.449371650867235],[-75.01259376010357,42.4504370217054],[-75.01564022346558,42.4517687352531],[-75.01710252587934,42.45389947692942],[-75.01758996001726,42.45425460054214],[-75.0179555356207,42.45416581963896],[-75.0197834136379,42.42904082403897],[-75.04049936449952,42.42992863307077],[-75.04476441320632,42.43001741397395],[-75.05902186174049,42.430638880296215],[-75.07985967113659,42.42460177887996],[-75.09338596846388,42.420606638236855],[-75.11678280708406,42.40506998018032],[-75.12458175329078,42.39992068779587],[-75.12202272406671,42.397257260700464],[-75.12896866053207,42.393350900960534],[-75.12689706544592,42.39113137838103],[-75.14310425053176,42.38136547903121],[-75.14712558216961,42.38562696238386],[-75.16771967449674,42.37435178767998],[-75.17953995234132,42.368048343554186],[-75.18112411328956,42.36689419181284],[-75.19708758130645,42.35837122510755],[-75.19440669354789,42.368225905360546],[-75.19404111794445,42.369380057101885],[-75.19087279604797,42.37994498458033],[-75.19099465458244,42.37985620367715],[-75.19257881553068,42.37834692832308],[-75.19513784475477,42.37701521477538],[-75.20110891294429,42.37701521477538],[-75.2096390103579,42.37630496754994],[-75.21097945423718,42.375505939421316],[-75.21219803958198,42.37373032135771],[-75.2132947663923,42.36982396161779],[-75.21426963466814,42.36893615258599],[-75.21768167363359,42.36742687723192],[-75.22243415647831,42.367515658135105],[-75.2268210637196,42.367338096328744],[-75.2298675270816,42.36565125916832],[-75.23327956604703,42.364763450136515],[-75.24132222932272,42.36502979284606],[-75.245709136564,42.36636150639376],[-75.24790259018465,42.367160534522384],[-75.25448295104658,42.36431954562062],[-75.25606711199482,42.36449710742698],[-75.25911357535682,42.36680541090966],[-75.26045401923611,42.36680541090966],[-75.26593765328771,42.36369807929835],[-75.27008084346002,42.35792732059164],[-75.27142128733931,42.354731208077155],[-75.26947155078763,42.352866809110374],[-75.26922783371867,42.35180143827221],[-75.26959340932211,42.351002410143586],[-75.2751989019082,42.34771751672592],[-75.27836722380468,42.34727361221002],[-75.28153554570116,42.34256822434147],[-75.29238095526989,42.33937211182698],[-75.29323396501125,42.338750645504724],[-75.29774273078701,42.33164817325031],[-75.29823016492493,42.33102670692805],[-75.30554167699374,42.326676442672216],[-75.30627282820062,42.32356911106091],[-75.3088318574247,42.32117202667504],[-75.30931929156262,42.32126080757823],[-75.31273133052807,42.321882273900485],[-75.31638708656247,42.32117202667504],[-75.32260187182095,42.32117202667504],[-75.33161940337249,42.318331037773284],[-75.33430029113104,42.31788713325738],[-75.33564073501033,42.31717688603194],[-75.33807790569992,42.31549004887152],[-75.34136808613088,42.314779801646075],[-75.34794844699282,42.316111515193775],[-75.35221349569962,42.318863723192365],[-75.35465066638922,42.3191300659019],[-75.36049987604426,42.31815347596692],[-75.36842068078548,42.315933953387415],[-75.3719545782854,42.3160227342906],[-75.37463546604396,42.319840313127344],[-75.37670706113012,42.32143836938459],[-75.37890051475075,42.320728122159146],[-75.3798753830266,42.318686161386005],[-75.38340928052652,42.31531248706516],[-75.38474972440581,42.31522370616197],[-75.38718689509541,42.31717688603194],[-75.38803990483677,42.31877494228918],[-75.38962406578501,42.31966275132098],[-75.39254867061253,42.319041284998725],[-75.3940109730263,42.31699932422558],[-75.39425469009525,42.3173544478383],[-75.40059133388822,42.31531248706516],[-75.40302850457782,42.31540126796833],[-75.4031503631123,42.31486858254925],[-75.40826842156046,42.316289077000135],[-75.4153362165603,42.31398077351745],[-75.4153362165603,42.31415833532381],[-75.41606736776718,42.315933953387415],[-75.41484878242238,42.31957397041781],[-75.41399577268103,42.32063934125597],[-75.41277718733623,42.32081690306232],[-75.40899957276734,42.31930762770826],[-75.4074154118191,42.320372998546425],[-75.40753727035359,42.321704712094125],[-75.41034001664663,42.324279358286354],[-75.41046187518111,42.32552229093088],[-75.4049782411295,42.33218085866939],[-75.40046947535373,42.33457794305525],[-75.39864159733654,42.33644234202204],[-75.39815416319861,42.3375077128602],[-75.39864159733654,42.34114772989059],[-75.40217549483646,42.34638580317822],[-75.40266292897438,42.348605325757724],[-75.40168806069853,42.3495819156927],[-75.39864159733654,42.35055850562769],[-75.39462026569869,42.353221932723095],[-75.39315796328493,42.35846000601072],[-75.39352353888837,42.359170253236165],[-75.39632628518142,42.36023562407433],[-75.39973832414685,42.36041318588069],[-75.40327222164677,42.365473697361956],[-75.40461266552606,42.36875859077963],[-75.40485638259503,42.37088933245595],[-75.40266292897438,42.37319763593864],[-75.40266292897438,42.37586106303404],[-75.40351593871574,42.37683765296902],[-75.4061968264743,42.37816936651672],[-75.40656240207774,42.379234737354885],[-75.40461266552606,42.38518305786796],[-75.40217549483646,42.389622103026966],[-75.39486398276765,42.39565920444322],[-75.39413283156077,42.39716847979729],[-75.39462026569869,42.39903287876407],[-75.39352353888837,42.40063093502131],[-75.3920612364746,42.40116362044039],[-75.38828362190573,42.40142996314993],[-75.38072839276796,42.4038270475358],[-75.38060653423348,42.40755584546937],[-75.3750010416474,42.410396834371134],[-75.37512290018188,42.41607881217466],[-75.37816936354388,42.41554612675558],[-75.37926609035421,42.4167890594001],[-75.37926609035421,42.41963004830187],[-75.37829122207836,42.4222046944941],[-75.37670706113012,42.42327006533226],[-75.37658520259563,42.42389153165452],[-75.37768192940595,42.4253120261054],[-75.38097210983692,42.426554958749925],[-75.38389671466444,42.42912960494215],[-75.38572459268164,42.43312474558526],[-75.38584645121612,42.44164771229055],[-75.38669946095749,42.4459091956432],[-75.39474212423318,42.45931511202341],[-75.39608256811245,42.46020292105521],[-75.39912903147446,42.4611795109902],[-75.39973832414685,42.46180097731246],[-75.40010389975029,42.465174651633305],[-75.40120062656062,42.469081011373234],[-75.40107876802614,42.47316493291952],[-75.40180991923302,42.47529567459585],[-75.40339408018126,42.47689373085309],[-75.4043689484571,42.47875812981987],[-75.40351593871574,42.48248692775344],[-75.39912903147446,42.48328595588206],[-75.3958388510435,42.48630450659019],[-75.39535141690557,42.48861281007287],[-75.39888531440549,42.49775724310043],[-75.39888531440549,42.49962164206722],[-75.3958388510435,42.50175238374354],[-75.39608256811245,42.50681289522481],[-75.3964481437159,42.507256799740716],[-75.40034761681926,42.508766075094776],[-75.4031503631123,42.5086772941916],[-75.40205363630199,42.51098559767428],[-75.40107876802614,42.511340721287],[-75.39717929492278,42.51080803586792],[-75.39437654862974,42.51116315948064],[-75.39047707552636,42.51036413135202],[-75.38925849018156,42.51116315948064],[-75.38487158294028,42.517910508122334],[-75.38389671466444,42.52021881160502],[-75.3841404317334,42.52128418244318],[-75.38682131949197,42.522704676894065],[-75.38682131949197,42.52359248592587],[-75.38328742199204,42.526611036633994],[-75.38219069518172,42.528830559213496],[-75.38194697811277,42.53176032901845],[-75.37731635380251,42.53371350888841],[-75.37268572949228,42.53655449779017],[-75.36720209544067,42.5498716332672],[-75.36793324664755,42.551824813137166],[-75.36732395397514,42.55253506036261],[-75.3633026223373,42.55342286939441],[-75.36196217845803,42.552446279459424],[-75.36098731018218,42.55235749855625],[-75.35318836397546,42.555553611070735],[-75.34965446647553,42.55777313365024],[-75.33929649104472,42.560969246164724],[-75.33722489595857,42.56230095971243],[-75.33661560328616,42.56354389235695],[-75.33344728138968,42.565053167711014],[-75.33113196923456,42.56718390938734],[-75.3308882521656,42.5673614711937],[-75.3308882521656,42.56771659480642],[-75.331497544838,42.56895952745094],[-75.33174126190696,42.57268832538451],[-75.32942594975184,42.57641712331807],[-75.32747621320016,42.57686102783398],[-75.32698877906223,42.577482494156236],[-75.32686692052775,42.5781039604785],[-75.32954780828632,42.581033730283444],[-75.32954780828632,42.581566415702525],[-75.328451081476,42.58343081466931],[-75.32650134492431,42.58494009002337],[-75.32467346690711,42.5892903542792],[-75.3247953254416,42.59062206782691],[-75.33076639363112,42.59293037130959],[-75.33320356432073,42.59239768589051],[-75.33490958380344,42.59293037130959],[-75.33564073501033,42.59355183763185],[-75.33673746182065,42.59630404563044],[-75.33722489595857,42.60021040537037],[-75.33661560328616,42.601275776208524],[-75.33661560328616,42.602518708853054],[-75.33832162276889,42.60527091685164],[-75.33807790569992,42.61113045646153],[-75.33661560328616,42.61361632175058],[-75.33161940337249,42.615747063426895],[-75.32467346690711,42.620186108585905],[-75.32321116449336,42.62231685026223],[-75.32333302302783,42.62355978290675],[-75.3272324961312,42.62577930548626],[-75.32881665707944,42.62933054161347],[-75.3278417888036,42.63208274961205],[-75.32637948638984,42.633503244062936],[-75.32369859863127,42.63403592948202],[-75.32321116449336,42.634479833997915],[-75.32308930595887,42.64406817154138],[-75.32455160837263,42.64495598057318],[-75.32491718397607,42.64646525592724],[-75.32528275957952,42.6475306267654],[-75.32771993026911,42.64806331218448],[-75.32820736440704,42.650993081989434],[-75.32711063759672,42.65312382366576],[-75.32881665707944,42.65436675631028],[-75.32820736440704,42.655432127148444],[-75.32808550587255,42.656941402502504],[-75.3308882521656,42.66146922856469],[-75.33113196923456,42.66839413901275],[-75.33076639363112,42.671412689720874],[-75.32735435466567,42.67913662829755],[-75.31992098406239,42.683131768940655],[-75.31979912552791,42.68464104429472],[-75.31589965242455,42.68579519603606],[-75.31321876466599,42.689967898485534],[-75.31139088664878,42.69653768532086],[-75.30676026233854,42.705593337445244],[-75.29944875026973,42.71793388298729],[-75.2972552966491,42.71828900660001],[-75.2965241454422,42.719088034728635],[-75.29591485276981,42.72805490594983],[-75.2972552966491,42.72903149588481],[-75.29567113570084,42.73382566465654],[-75.29299024794229,42.73790958620283],[-75.29311210647677,42.738797395234634],[-75.29457440889053,42.7398627660728],[-75.29591485276981,42.7420822886523],[-75.29554927716637,42.74412424942545],[-75.2935995406147,42.747675485552655],[-75.28762847242517,42.75211453071166],[-75.2861661700114,42.7506052553576],[-75.28421643345972,42.75096037897032],[-75.28275413104596,42.7519369689053],[-75.28019510182187,42.75522186232297],[-75.27812350673571,42.76019359290106],[-75.2770267799254,42.76569800889823],[-75.27507704337371,42.76765118876819],[-75.27373659949443,42.771468767604944],[-75.27203058001172,42.77359950928127],[-75.26825296544283,42.77528634644169],[-75.26216003871882,42.775730250957594],[-75.25886985828787,42.77706196450529],[-75.25850428268441,42.777417088118014],[-75.25911357535682,42.778926363472074],[-75.25886985828787,42.78096832424522],[-75.25289879009833,42.786650302048756],[-75.25204578035698,42.78878104372508],[-75.25168020475354,42.79437424062543],[-75.25253321449489,42.796327420495395],[-75.2519239218225,42.79907962849398],[-75.25033976087425,42.80351867365299],[-75.24924303406394,42.80422892087843],[-75.24790259018465,42.80831284242472],[-75.2488774584605,42.81168651674557],[-75.24826816578809,42.81346213480917],[-75.24704958044329,42.81443872474415],[-75.24436869268473,42.814705067453694],[-75.24193152199513,42.8173684945491],[-75.24205338052961,42.817723618161814],[-75.2438812585468,42.818078741774535],[-75.24595285363297,42.81727971364592],[-75.24729329751224,42.81923289351588],[-75.2481463072536,42.822162663320825],[-75.24997418527082,42.82358315777171],[-75.24997418527082,42.82518121402895],[-75.24412497561576,42.831040753638845],[-75.24107851225376,42.8316622199611],[-75.23998178544345,42.83388174254061],[-75.24120037078825,42.8370778550551],[-75.24290639027096,42.839031034925064],[-75.24290639027096,42.84213836653637],[-75.24205338052961,42.84267105195545],[-75.24217523906408,42.84338129918089],[-75.24741515604673,42.845156917244495],[-75.24704958044329,42.84968474330668],[-75.24619657070193,42.85039499053212],[-75.24400311708129,42.86175894613919],[-75.24558727802953,42.867618485749084],[-75.24802444871914,42.871524845489006],[-75.24436869268473,42.875076081616214],[-75.242662673202,42.87791707051798],[-75.24193152199513,42.87791707051798],[-75.21219803958198,42.87995903129113],[-75.21061387863374,42.85652087285156],[-75.13969221156633,42.859805766269226],[-75.13822990915256,42.86158138433283],[-75.1281156507907,42.875076081616214],[-75.12238829967015,42.88137952574201],[-75.11982927044606,42.8850195427724],[-75.1147112119979,42.89132298689819],[-75.10094119760164,42.90836892030879],[-75.09765101717069,42.906948425857905],[-75.08400286130892,42.90126644805437],[-75.07376674441258,42.89700496470172],[-75.06487107139554,42.89327616676815],[-75.02380474527574,42.87614145245438],[-75.00272321881069,42.86726336213636],[-74.9995548969142,42.865931648588656],[-74.9995548969142,42.865931648588656],[-74.99516798967292,42.864244811428236],[-74.99297453605227,42.863357002396434],[-74.98151983381115,42.85820771001198],[-74.98066682406979,42.85785258639926],[-74.97932638019051,42.85714233917382],[-74.97920452165603,42.857053558270636],[-74.97762036070779,42.85616574923884],[-74.97091814131139,42.853324760337074],[-74.96129131708746,42.8491520578876],[-74.95483281476001,42.84639984988902],[-74.91888454708838,42.83041928731659],[-74.91315719596781,42.82784464112436],[-74.90669869364037,42.824914871319415],[-74.89231938657171,42.83308271441199],[-74.88598274277875,42.86344578329961],[-74.8857390257098,42.86468871594413],[-74.8819614111409,42.88235611567699],[-74.87964609898579,42.89425275670314],[-74.87879308924443,42.898247897346245],[-74.83285242174543,42.88457563825649],[-74.76327119855729,42.86326822149325]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-77.9549899336601,42.86255797426781],[-77.95486807512562,42.86184772704237],[-77.9549899336601,42.85101645685439],[-77.9549899336601,42.85083889504803],[-77.95535550926354,42.83281637170245],[-77.95535550926354,42.82296169144945],[-77.95535550926354,42.82189632061129],[-77.95535550926354,42.817723618161814],[-77.95523365072906,42.815415314679136],[-77.95535550926354,42.81053236500422],[-77.95547736779803,42.80369623545935],[-77.9555992263325,42.80050012294486],[-77.95572108486698,42.790201538175964],[-77.95572108486698,42.77271170024947],[-77.95572108486698,42.77093608218586],[-77.95547736779803,42.761614087351944],[-77.95535550926354,42.75948334567562],[-77.95535550926354,42.757352603999294],[-77.95511179219459,42.75175940709894],[-77.95535550926354,42.73693299626785],[-77.95511179219459,42.736400310848765],[-77.95547736779803,42.71367239963464],[-77.95535550926354,42.710209944410614],[-77.95596480193593,42.700532825963975],[-77.95633037753937,42.667861453593666],[-77.95888940676346,42.666529740045966],[-77.96266702133235,42.66182435217741],[-77.96754136271154,42.6628009421124],[-77.96997853340115,42.66111410495197],[-77.97083154314251,42.65924970598519],[-77.970953401677,42.65889458237247],[-77.97314685529763,42.65143698650533],[-77.97180641141836,42.649128683022646],[-77.9721719870218,42.64655403683042],[-77.98301739659053,42.633947148578834],[-77.98289553805604,42.630751036064346],[-77.98338297219397,42.63012956974209],[-77.98691686969389,42.62897541800075],[-77.989232181849,42.62551296277672],[-77.98886660624557,42.62533540097036],[-77.98728244529732,42.62009732768273],[-77.9880135965042,42.6175226814905],[-77.98898846478005,42.61601340613644],[-77.9904507671938,42.6148592543951],[-77.99203492814205,42.614592911685556],[-77.99435024029717,42.61583584433008],[-77.99654369391781,42.616102187039616],[-77.99751856219365,42.61548072071736],[-77.9997120158143,42.612728512718775],[-78.00556122546934,42.61024264742973],[-78.00653609374518,42.610153866526545],[-78.01141043512439,42.61139679917107],[-78.01470061555536,42.610153866526545],[-78.01543176676223,42.60926605749474],[-78.01774707891735,42.60713531581842],[-78.01969681546903,42.6063362876898],[-78.02810505434816,42.604560669626196],[-78.02895806408952,42.603850422400754],[-78.02920178115848,42.60296261336895],[-78.02469301538272,42.59728063556542],[-78.02189026908968,42.59612648382408],[-78.01994053253799,42.596037702920896],[-78.01811265452079,42.59710307375906],[-78.01665035210704,42.59887869182266],[-78.01360388874502,42.599588939048104],[-78.00629237667623,42.59887869182266],[-78.0039770645211,42.59630404563044],[-78.0039770645211,42.596215264727256],[-78.0051956498659,42.59337427582549],[-78.00872954736582,42.5892903542792],[-78.01226344486575,42.58671570808698],[-78.02384000564136,42.58494009002337],[-78.02810505434816,42.58644936537744],[-78.03614771762385,42.58760351711878],[-78.03712258589968,42.58724839350606],[-78.04492153210641,42.58094494938027],[-78.0486991466753,42.57890298860712],[-78.05101445883042,42.575795656995815],[-78.05077074176145,42.57419760073857],[-78.04662755158914,42.57029124099864],[-78.04406852236505,42.570202460095466],[-78.04163135167545,42.571001488224084],[-78.04150949314098,42.57109026912727],[-78.03858488831345,42.57144539273999],[-78.03651329322729,42.57304344899723],[-78.03358868839976,42.57339857260995],[-78.03261382012393,42.57277710628769],[-78.02834877141711,42.56798293751596],[-78.02822691288264,42.56718390938734],[-78.03029850796881,42.56665122396826],[-78.03444169814112,42.567272690290515],[-78.03578214202041,42.566917566677795],[-78.04796799546841,42.5579506954566],[-78.0505270246925,42.55377799300713],[-78.05198932710626,42.54827357700996],[-78.0517456100373,42.546853082559075],[-78.04955215641665,42.54525502630183],[-78.04918658081321,42.54392331275413],[-78.05040516615801,42.54232525649689],[-78.05905712210611,42.538862801272856],[-78.06051942451987,42.536820840499715],[-78.06100685865779,42.53397985159795],[-78.06039756598538,42.53282569985661],[-78.0596664147785,42.53229301443753],[-78.05771667822683,42.532559357147065],[-78.05064888322698,42.538330115853775],[-78.04882100520977,42.538685239466496],[-78.0426062199513,42.535134003339294],[-78.04126577607201,42.53371350888841],[-78.04150949314098,42.53300326166297],[-78.04674941012361,42.5297183682453],[-78.0480898540029,42.527942750181694],[-78.04772427839946,42.526433474827634],[-78.04553082477881,42.52634469392445],[-78.04394666383057,42.52741006476261],[-78.04370294676161,42.528475435600775],[-78.04284993702025,42.5292744637294],[-78.04163135167545,42.52918568282622],[-78.04065648339962,42.528120311988054],[-78.03870674684794,42.52092905883046],[-78.08903432158822,42.52110662063682],[-78.10780053589815,42.52128418244318],[-78.11828036986344,42.52128418244318],[-78.13339082813897,42.521372963346366],[-78.13351268667344,42.521372963346366],[-78.1454548230525,42.521372963346366],[-78.16300245201764,42.521372963346366],[-78.1631243105521,42.521372963346366],[-78.18968947106877,42.52146174424954],[-78.19029876374117,42.52146174424954],[-78.19968187089614,42.52146174424954],[-78.22173826563704,42.5216393060559],[-78.22344428511977,42.5216393060559],[-78.22466287046457,42.5216393060559],[-78.23404597761953,42.52155052515272],[-78.23514270442985,42.52155052515272],[-78.23843288486081,42.52155052515272],[-78.24866900175714,42.52146174424954],[-78.27620903054965,42.521372963346366],[-78.27718389882548,42.521372963346366],[-78.27767133296341,42.521372963346366],[-78.27876805977372,42.521372963346366],[-78.2844954108943,42.52128418244318],[-78.29095391322174,42.52119540154],[-78.29400037658374,42.52119540154],[-78.29716869848022,42.52110662063682],[-78.30886711779031,42.521017839733645],[-78.31057313727304,42.521017839733645],[-78.31179172261784,42.52092905883046],[-78.31946881029008,42.52084027792728],[-78.31983438589353,42.52084027792728],[-78.34128148796202,42.52057393521774],[-78.35809796572028,42.5203075925082],[-78.36175372175468,42.52021881160502],[-78.40416049175376,42.51933100257322],[-78.41780864761553,42.51924222167004],[-78.42451086701193,42.51924222167004],[-78.43279724735658,42.51924222167004],[-78.44705469589074,42.51924222167004],[-78.46167772002836,42.51915344076686],[-78.46460232485589,42.51915344076686],[-78.46435860778692,42.52341492411951],[-78.46435860778692,42.523681266829044],[-78.46411489071797,42.530517396373924],[-78.46411489071797,42.532026671727984],[-78.46399303218348,42.53619937417745],[-78.46374931511453,42.54152622836826],[-78.46350559804556,42.55138090862126],[-78.46240887123524,42.60651384949616],[-78.46216515416629,42.61716755787778],[-78.46216515416629,42.62027488948909],[-78.46374931511453,42.69387425822546],[-78.463871173649,42.69884598880355],[-78.46362745658004,42.7214851191145],[-78.46362745658004,42.72263927085584],[-78.46362745658004,42.72308317537174],[-78.46362745658004,42.72938661949753],[-78.46362745658004,42.733381760140645],[-78.46350559804556,42.733914445559726],[-78.46350559804556,42.73702177717103],[-78.46338373951109,42.753623806065725],[-78.46338373951109,42.754600396000704],[-78.4632618809766,42.78043563882614],[-78.48300296356238,42.7806132006325],[-78.48812102201055,42.78070198153568],[-78.48812102201055,42.78158979056748],[-78.48763358787262,42.80396257816889],[-78.48726801226918,42.81346213480917],[-78.48702429520021,42.82242900603037],[-78.48702429520021,42.82420462409397],[-78.48678057813126,42.832550028992905],[-78.48665871959678,42.84116177660139],[-78.48629314399334,42.86770726665226],[-78.46435860778692,42.86744092394272],[-78.44510495933906,42.86770726665226],[-78.43230981321865,42.86788482845862],[-78.4100097014088,42.86823995207134],[-78.3879533066679,42.86859507568406],[-78.37662046296126,42.868683856587246],[-78.37052753623725,42.86877263749042],[-78.36516576072012,42.86886141839361],[-78.30728295684207,42.869838008328585],[-78.29534082046303,42.8697492274254],[-78.28486098649773,42.869482884715865],[-78.27925549391165,42.86939410381269],[-78.27888991830821,42.86939410381269],[-78.27730575735997,42.86939410381269],[-78.27377185986005,42.86939410381269],[-78.27365000132556,42.86939410381269],[-78.26938495261876,42.86939410381269],[-78.26597291365331,42.86939410381269],[-78.25963626986035,42.86957166561905],[-78.1913954905515,42.87037069374767],[-78.13351268667344,42.87010435103812],[-78.12741975994945,42.870015570134946],[-78.12534816486328,42.870015570134946],[-78.10390106279478,42.87010435103812],[-78.0989048628811,42.87010435103812],[-78.09853928727766,42.87010435103812],[-78.07416758038164,42.87028191284449],[-78.07416758038164,42.863712126009155],[-78.05588880020963,42.864067249621876],[-78.04882100520977,42.864244811428236],[-78.0486991466753,42.86433359233141],[-78.00056502555566,42.865043839556854],[-77.99532510857301,42.86495505865368],[-77.99520325003853,42.86317944059007],[-77.98021465029748,42.86300187878371],[-77.9666883529702,42.86282431697735],[-77.9549899336601,42.86255797426781]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.64835860054255,42.82953147828478],[-74.59425341123338,42.81905533170952],[-74.58170198218194,42.81648068551729],[-74.5807271139061,42.81630312371094],[-74.57792436761305,42.81577043829186],[-74.56220461666513,42.812840668486906],[-74.55598983140663,42.81053236500422],[-74.52077271494188,42.797659134043094],[-74.51467978821788,42.79535083056041],[-74.51431421261444,42.79517326875405],[-74.51004916390764,42.793575212496805],[-74.50992730537315,42.793575212496805],[-74.45496910632264,42.772978042959004],[-74.45082591615031,42.773333166571724],[-74.44643900890902,42.773688290184445],[-74.41134375097876,42.77652927908621],[-74.39221196106539,42.77803855444027],[-74.39001850744474,42.77821611624663],[-74.34968333253182,42.78141222876112],[-74.3388379229631,42.782211256889745],[-74.3247023329634,42.783365408631084],[-74.29947761632602,42.78363175134063],[-74.28948521649866,42.78380931314699],[-74.26365120718887,42.79659376320493],[-74.26145775356824,42.79517326875405],[-74.25658341218903,42.79588351597949],[-74.25451181710287,42.79535083056041],[-74.2481751733099,42.78691664475829],[-74.24768773917198,42.78549615030741],[-74.24805331477542,42.78460834127561],[-74.25158721227534,42.78087954334204],[-74.25463367563735,42.77528634644169],[-74.25463367563735,42.77288926205583],[-74.25292765615463,42.7689829023159],[-74.25170907080982,42.76685216063957],[-74.25158721227534,42.76560922799505],[-74.25524296830974,42.76072627832014],[-74.25877686580966,42.757175042192934],[-74.26316377305095,42.75575454774205],[-74.26523536813711,42.75584332864523],[-74.26974413391288,42.757352603999294],[-74.27827423132649,42.75664235677385],[-74.28692618727457,42.75664235677385],[-74.29314097253305,42.75575454774205],[-74.30142735287771,42.753446244259365],[-74.30593611865346,42.7514930643894],[-74.30666726986036,42.75007256993852],[-74.30496125037763,42.74705401923039],[-74.29253167986066,42.73462469278517],[-74.28729176287801,42.729475400400716],[-74.28205184589537,42.72405976530672],[-74.28192998736088,42.72397098440354],[-74.27766493865408,42.719443158341356],[-74.27071900218871,42.71953193924453],[-74.27193758753351,42.71535923679507],[-74.27230316313695,42.714293865956904],[-74.26145775356824,42.71509289408552],[-74.24171667098246,42.71677973124595],[-74.23988879296525,42.718910472922275],[-74.20272193994882,42.71083141073287],[-74.20065034486267,42.71100897253923],[-74.19297325719042,42.711719219764674],[-74.18419944270785,42.7125182478933],[-74.18261528175961,42.719443158341356],[-74.18029996960448,42.7300080858198],[-74.16470207719104,42.71722363576185],[-74.16957641857023,42.69138839293642],[-74.16847969175991,42.67434245952582],[-74.1698201356392,42.66741754907777],[-74.17883766719072,42.647264284055865],[-74.18188413055273,42.64175986805869],[-74.18419944270785,42.63954034547919],[-74.18590546219056,42.6367881374806],[-74.19199838891457,42.6278212662594],[-74.19260768158698,42.62711101903396],[-74.19346069132834,42.619031956844566],[-74.20125963753506,42.61121923736471],[-74.20674327158666,42.60580360227072],[-74.21052088615555,42.60100943349899],[-74.21515151046579,42.59745819737178],[-74.21746682262092,42.59426208485729],[-74.21880726650019,42.59257524769687],[-74.21966027624156,42.59133231505235],[-74.22026956891396,42.58538399453928],[-74.2340395833102,42.57570687609264],[-74.23696418813773,42.565053167711014],[-74.23696418813773,42.56478682500147],[-74.23757348081013,42.56309998784105],[-74.23696418813773,42.56008143713292],[-74.24037622710317,42.55289018397533],[-74.23793905641357,42.54463355997957],[-74.23440515891365,42.53779743043469],[-74.22904338339653,42.52900812101986],[-74.22563134443108,42.526433474827634],[-74.22563134443108,42.52013003070184],[-74.2255094858966,42.51515830012375],[-74.22514391029316,42.51116315948064],[-74.22502205175869,42.508588513288416],[-74.22575320296556,42.50699045703117],[-74.22660621270693,42.502640192775345],[-74.22648435417244,42.4992665184545],[-74.2285559492586,42.49438356877958],[-74.23647675399981,42.485416697558385],[-74.24159481244797,42.47201078117818],[-74.2445194172755,42.4701463822114],[-74.2524402220167,42.44537651022412],[-74.25597411951662,42.43791891435699],[-74.26486979253367,42.41989639101141],[-74.26352934865439,42.40711194095346],[-74.25426810003391,42.408177311791626],[-74.25426810003391,42.407999749985265],[-74.24464127580998,42.377192776581744],[-74.24707844649959,42.37914595645171],[-74.25499925124079,42.37985620367715],[-74.2591424414131,42.37914595645171],[-74.26584466080952,42.37408544497043],[-74.26791625589567,42.371777141487755],[-74.2702315680508,42.367515658135105],[-74.27486219236104,42.36414198381426],[-74.27669007037824,42.36334295568563],[-74.28400158244705,42.36174489942839],[-74.29301911399858,42.361212214009306],[-74.30008690899842,42.36245514665383],[-74.30849514787755,42.35979171955843],[-74.31263833804988,42.357128292463024],[-74.31751267942907,42.35996928136479],[-74.32092471839452,42.360679528590225],[-74.32482419149788,42.35979171955843],[-74.33055154261845,42.357128292463024],[-74.33274499623909,42.357128292463024],[-74.3370100449459,42.35828244420436],[-74.34090951804926,42.35846000601072],[-74.34602757649742,42.35570779801214],[-74.3571167031351,42.36467466923334],[-74.36296591279016,42.36724931542556],[-74.37173972727273,42.37017908523051],[-74.37454247356577,42.37009030432733],[-74.37612663451401,42.37062298974641],[-74.37832008813464,42.372487388713196],[-74.37905123934154,42.37390788316408],[-74.43815262856438,42.35659560704394],[-74.4435144040815,42.3549975507867],[-74.47617249132217,42.36813712445736],[-74.51857926132125,42.38482793425524],[-74.52674378313141,42.388112827672906],[-74.53466458787261,42.39122015928421],[-74.56756639218224,42.40418217114852],[-74.58889163571627,42.412616356950636],[-74.61728467425013,42.42371396984816],[-74.62045299614661,42.42584471152448],[-74.62410875218102,42.42948472855487],[-74.63458858614631,42.44022721783968],[-74.64579957131846,42.45159117344674],[-74.65701055649063,42.46286634815062],[-74.66407835149049,42.47005760130821],[-74.67163358062825,42.47769275898171],[-74.69990476062763,42.50601386709619],[-74.703804233731,42.509920226836115],[-74.71160317993773,42.51782172721916],[-74.67236473183513,42.56452048229193],[-74.67163358062825,42.565408291323735],[-74.63958478605998,42.6139714453633],[-74.63068911304293,42.62675589542124],[-74.63117654718086,42.6291529798071],[-74.63544159588766,42.65010527295763],[-74.6388536348531,42.661558009467875],[-74.63958478605998,42.6636887511442],[-74.64908975174943,42.69431816274136],[-74.65591382968032,42.71722363576185],[-74.6603007369216,42.730274428529334],[-74.66749039045592,42.750694036260775],[-74.66797782459385,42.764632638060064],[-74.66554065390424,42.790556661788685],[-74.66541879536976,42.791888375336384],[-74.66529693683529,42.79215471804592],[-74.64835860054255,42.82953147828478]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.80936259064705,42.7788375825689],[-73.79949204935417,42.7788375825689],[-73.79790788840593,42.779459048891155],[-73.79352098116465,42.782566380502466],[-73.7870624788372,42.789668852756876],[-73.78243185452695,42.7917995944332],[-73.77999468383734,42.79215471804592],[-73.77731379607879,42.7917995944332],[-73.76878369866517,42.78585127392013],[-73.76671210357902,42.786117616629674],[-73.76488422556181,42.78727176837101],[-73.75842572323437,42.79526204965723],[-73.75013934288972,42.80138793197666],[-73.74831146487253,42.80529429171659],[-73.73770977237275,42.81887776990316],[-73.73173870418323,42.82127485428902],[-73.72662064573507,42.82260656783673],[-73.72272117263171,42.820653387966765],[-73.7221118799593,42.81967679803178],[-73.72138072875242,42.81310701119645],[-73.71882169952833,42.810266022294684],[-73.71711568004562,42.8092894323597],[-73.7166282459077,42.80813528061836],[-73.71711568004562,42.80724747158656],[-73.71869984099386,42.80564941532931],[-73.72040586047657,42.804140139975246],[-73.72052771901106,42.80307476913708],[-73.71991842633867,42.801299151073486],[-73.7123631972009,42.795972296882674],[-73.71065717771818,42.794107897915886],[-73.7099260265113,42.793397650690444],[-73.70895115823545,42.78771567288692],[-73.70322380711488,42.78247759959928],[-73.69774017306328,42.778748801665714],[-73.69688716332192,42.77839367805299],[-73.69371884142544,42.77697318360211],[-73.69006308539103,42.77546390824805],[-73.68835706590832,42.77546390824805],[-73.68726033909799,42.77706196450529],[-73.68202042211536,42.779814172503876],[-73.681167412374,42.783010285018364],[-73.68031440263263,42.783365408631084],[-73.67678050513271,42.78327662772791],[-73.67751165633959,42.78132344785794],[-73.67848652461542,42.7788375825689],[-73.68128927090847,42.77280048115264],[-73.68189856358087,42.77155754850812],[-73.6823859977188,42.77022583496042],[-73.68336086599463,42.76782875057455],[-73.68372644159807,42.76667459883321],[-73.68384830013255,42.76605313251095],[-73.68433573427048,42.76081505922332],[-73.68494502694287,42.75673113767703],[-73.68726033909799,42.75246965432438],[-73.68701662202903,42.75167062619576],[-73.68713848056352,42.751049159873496],[-73.68750405616696,42.74891841819718],[-73.68799149030488,42.744923277554065],[-73.68872264151176,42.7398627660728],[-73.68872264151176,42.739507642460076],[-73.69018494392552,42.735246159107426],[-73.69225653901168,42.733736883753366],[-73.69371884142544,42.73276029381838],[-73.69469370970128,42.73205004659294],[-73.6957904365116,42.730629552142055],[-73.69725273892536,42.728765153175274],[-73.69749645599433,42.72769978233711],[-73.6976183145288,42.72725587782121],[-73.69859318280464,42.72379342259718],[-73.69932433401152,42.7214851191145],[-73.69956805108049,42.72086365279224],[-73.70078663642529,42.71775632118093],[-73.70139592909769,42.715803141310964],[-73.70358938271833,42.70949969718517],[-73.70346752418385,42.705593337445244],[-73.70237079737353,42.700887949576696],[-73.702492655908,42.700000140544894],[-73.70651398754585,42.694051820031824],[-73.71638452883874,42.68242152171521],[-73.72320860676962,42.672921965074934],[-73.72491462625234,42.67016975707635],[-73.72930153349363,42.66484290288554],[-73.73941579185548,42.656763840696144],[-73.7417311040106,42.65436675631028],[-73.7466054453898,42.6461989132177],[-73.74770217220012,42.643180362509575],[-73.748433323407,42.641493525349155],[-73.74892075754492,42.64025059270463],[-73.75062677702765,42.637054480190145],[-73.75294208918277,42.628709075291205],[-73.7595224500447,42.61414900716966],[-73.75976616711365,42.61379388355694],[-73.76122846952741,42.61042020923609],[-73.76159404513086,42.60358407969121],[-73.76122846952741,42.60074309078945],[-73.7595224500447,42.59461720847001],[-73.75720713788957,42.58715961260288],[-73.75440439159652,42.58254300563751],[-73.75233279651037,42.57668346602762],[-73.75221093797589,42.566740004871434],[-73.75403881599308,42.55679654371526],[-73.75647598668269,42.548717481525856],[-73.75671970375166,42.54374575094777],[-73.75684156228613,42.542946722819146],[-73.75696342082061,42.54197013288417],[-73.7583038646999,42.534246194307485],[-73.76110661099294,42.52634469392445],[-73.7637874987515,42.52110662063682],[-73.76671210357902,42.518088069928694],[-73.77585149366503,42.50583630528983],[-73.7808476935787,42.49731333858453],[-73.78560017642343,42.48719231562199],[-73.78608761056135,42.477781539884894],[-73.78572203495791,42.47165565756546],[-73.78377229840623,42.464198061698326],[-73.78803734711303,42.46393171898878],[-73.80777842969881,42.46224488182836],[-73.80875329797466,42.46215610092518],[-73.80924073211257,42.46215610092518],[-73.81192161987114,42.46188975821564],[-73.85274422892198,42.456296561315284],[-73.85408467280125,42.456118999508924],[-73.86566123357686,42.45434338144533],[-73.89271382823145,42.450525802608574],[-73.90380295486914,42.44892774635133],[-73.92963696417891,42.44537651022412],[-73.93999493960972,42.44404479667642],[-73.9480376028854,42.4432457685478],[-73.96375735383334,42.44164771229055],[-73.99202853383272,42.43862916158243],[-73.99568428986713,42.43827403796971],[-74.0172532504701,42.43578817268067],[-74.0184718358149,42.43569939177748],[-74.0289516697802,42.43445645913296],[-74.0840317273652,42.42762032958809],[-74.09061208822713,42.42682130145947],[-74.11729910727827,42.42362518894498],[-74.12668221443325,42.42291494171954],[-74.15775614072567,42.41891980107643],[-74.17518191115632,42.41696662120646],[-74.25426810003391,42.408177311791626],[-74.26352934865439,42.40711194095346],[-74.26486979253367,42.41989639101141],[-74.25597411951662,42.43791891435699],[-74.2524402220167,42.44537651022412],[-74.2445194172755,42.4701463822114],[-74.24159481244797,42.47201078117818],[-74.23647675399981,42.485416697558385],[-74.2285559492586,42.49438356877958],[-74.22648435417244,42.4992665184545],[-74.22660621270693,42.502640192775345],[-74.22575320296556,42.50699045703117],[-74.22502205175869,42.508588513288416],[-74.22514391029316,42.51116315948064],[-74.2255094858966,42.51515830012375],[-74.22563134443108,42.52013003070184],[-74.22563134443108,42.526433474827634],[-74.22904338339653,42.52900812101986],[-74.23440515891365,42.53779743043469],[-74.23793905641357,42.54463355997957],[-74.24037622710317,42.55289018397533],[-74.23696418813773,42.56008143713292],[-74.23757348081013,42.56309998784105],[-74.23696418813773,42.56478682500147],[-74.23696418813773,42.565053167711014],[-74.2340395833102,42.57570687609264],[-74.22026956891396,42.58538399453928],[-74.21966027624156,42.59133231505235],[-74.21880726650019,42.59257524769687],[-74.21746682262092,42.59426208485729],[-74.21515151046579,42.59745819737178],[-74.21052088615555,42.60100943349899],[-74.20674327158666,42.60580360227072],[-74.20125963753506,42.61121923736471],[-74.19346069132834,42.619031956844566],[-74.19260768158698,42.62711101903396],[-74.19199838891457,42.6278212662594],[-74.18590546219056,42.6367881374806],[-74.18419944270785,42.63954034547919],[-74.18188413055273,42.64175986805869],[-74.17883766719072,42.647264284055865],[-74.1698201356392,42.66741754907777],[-74.16847969175991,42.67434245952582],[-74.16957641857023,42.69138839293642],[-74.16470207719104,42.71722363576185],[-74.18029996960448,42.7300080858198],[-74.16884526736335,42.73142858027068],[-74.11242476589906,42.73853105252509],[-74.05454196202102,42.745455962973146],[-74.05137364012454,42.74581108658587],[-74.04686487434877,42.74634377200495],[-74.03833477693516,42.74740914284311],[-73.99422198745337,42.75273599703392],[-73.9763087828848,42.755133081419785],[-73.96022345633342,42.757352603999294],[-73.94474742245444,42.759394564772435],[-73.9425539688338,42.75966090748198],[-73.9340238714202,42.76063749741696],[-73.93061183245476,42.76099262102968],[-73.90721499383457,42.7635672672219],[-73.89941604762785,42.764455076253704],[-73.89186081849009,42.765342885285506],[-73.88783948685224,42.76587557070459],[-73.87979682357656,42.76658581793003],[-73.87236345297327,42.76747362696183],[-73.87224159443879,42.767384846058654],[-73.87163230176638,42.76747362696183],[-73.86822026280095,42.76800631238091],[-73.85798414590462,42.769249245025435],[-73.85225679478405,42.7698707113477],[-73.84007094133604,42.77155754850812],[-73.82496048306051,42.773333166571724],[-73.80960630771601,42.77519756553851],[-73.80960630771601,42.77581903186077],[-73.80936259064705,42.7788375825689]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.8960681350843,42.79100056630458],[-75.8931435302568,42.7622355536742],[-75.89253423758439,42.75557698593569],[-75.89229052051543,42.75406771058162],[-75.89107193517063,42.73808714800919],[-75.88985334982583,42.72388220350036],[-75.8838822816363,42.6556096889548],[-75.88229812068806,42.6376759465124],[-75.88132325241222,42.62640077180852],[-75.88120139387773,42.62506905826082],[-75.87718006223989,42.575795656995815],[-75.87632705249854,42.565940976742816],[-75.87425545741237,42.54268038010961],[-75.86962483310212,42.490210866330116],[-75.86657836974013,42.44768481370681],[-75.86621279413669,42.442357959515995],[-75.86621279413669,42.44226917861282],[-75.86560350146428,42.432325717456635],[-75.86401934051604,42.41572368856194],[-75.87864236465366,42.41483587953014],[-75.89302167172231,42.41403685140152],[-75.89448397413607,42.413948070498336],[-75.8986271643084,42.4136817277888],[-75.9126408957736,42.41306026146654],[-75.91276275430808,42.41306026146654],[-75.93396613930761,42.41217245243474],[-75.94176508551435,42.41181732882202],[-75.94724871956595,42.41163976701566],[-75.94834544637627,42.41155098611247],[-75.96248103637596,42.410929519790216],[-75.98660902620303,42.40995292985523],[-76.01451463059897,42.40915390172661],[-76.01768295249545,42.40906512082343],[-76.02194800120225,42.40897633992025],[-76.02219171827122,42.412793918757],[-76.05765255180492,42.411906109725194],[-76.07032583939085,42.41163976701566],[-76.11821624344154,42.41066317708067],[-76.13015837982059,42.41030805346795],[-76.15769840861309,42.40977536804887],[-76.25335735817997,42.40755584546937],[-76.25396665085236,42.41741052572237],[-76.25518523619716,42.43809647616335],[-76.25725683128333,42.47431908466086],[-76.25737868981781,42.47547323640221],[-76.25750054835228,42.47822544440079],[-76.25810984102469,42.48710353471881],[-76.25920656783501,42.50592508619301],[-76.25993771904189,42.5203075925082],[-76.2605470117143,42.53247057624389],[-76.26079072878325,42.538507677660135],[-76.26079072878325,42.539040363079216],[-76.26091258731773,42.54028329572374],[-76.26152187999013,42.55049309958946],[-76.26225303119702,42.56460926319511],[-76.26286232386941,42.57437516254493],[-76.26359347507629,42.58786985982832],[-76.26554321162797,42.62355978290675],[-76.26566507016246,42.62542418187354],[-76.26578692869694,42.628709075291205],[-76.27005197740374,42.69831330338447],[-76.27468260171398,42.77129120579858],[-76.25981586050742,42.771646329411304],[-76.25323549964548,42.772001453024025],[-76.24409610955948,42.772534138443106],[-76.23142282197355,42.77306682386219],[-76.19596198843983,42.77475366102261],[-76.15501752085453,42.77661805998939],[-76.12662448232066,42.777949773537095],[-76.08019638068374,42.77999173431024],[-76.08019638068374,42.78158979056748],[-76.01232117697833,42.78460834127561],[-76.00525338197848,42.78487468398515],[-75.92178028585961,42.78940251004734],[-75.91654036887697,42.78975763366006],[-75.8960681350843,42.79100056630458]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.97244457014705,42.76418873354417],[-76.9475854291131,42.76436629535053],[-76.94770728764759,42.75761894670883],[-76.94673241937174,42.749717446325796],[-76.94502639988902,42.73728811988057],[-76.94295480480285,42.73196126568976],[-76.93868975609605,42.7214851191145],[-76.93637444394093,42.71731241666503],[-76.92443230756189,42.700710387770336],[-76.90798140540707,42.67904784739437],[-76.89872015678658,42.66661852094914],[-76.89713599583834,42.6636887511442],[-76.89518625928666,42.6542779754071],[-76.89469882514874,42.636876918383784],[-76.89457696661425,42.6291529798071],[-76.89469882514874,42.62320465929403],[-76.8943332495453,42.598612349113125],[-76.89408953247634,42.58502887092656],[-76.89408953247634,42.57881420770394],[-76.89445510807978,42.55768435274706],[-76.8955518348901,42.54152622836826],[-76.89945130799346,42.520662716120924],[-76.90066989333826,42.4992665184545],[-76.90079175187275,42.49385088336051],[-76.8985982982521,42.484262545817046],[-76.88982448376953,42.46304390995698],[-76.90335078109682,42.46224488182836],[-76.93466842445821,42.46064682557112],[-76.96403633126792,42.459226331120234],[-76.96440190687136,42.4642868426015],[-76.97329757988841,42.463842938085605],[-76.98816432109497,42.463310252666524],[-76.98852989669842,42.46766051692235],[-76.98938290643977,42.483729860397965],[-76.98938290643977,42.48452888852658],[-76.98938290643977,42.484884012139304],[-76.99730371118099,42.484884012139304],[-77.00364035497395,42.48479523123613],[-77.0143639060082,42.48479523123613],[-77.0174103693702,42.48479523123613],[-77.01887267178397,42.48470645033294],[-77.02009125712877,42.48470645033294],[-77.0222847107494,42.48470645033294],[-77.03471428126637,42.48461766942977],[-77.03629844221462,42.48461766942977],[-77.04105092505934,42.48461766942977],[-77.09296266074786,42.483907422204325],[-77.10722010928204,42.483729860397965],[-77.10758568488548,42.50574752438665],[-77.11440976281636,42.50814460877251],[-77.11794366031629,42.50388312541987],[-77.12732676747125,42.49722455768135],[-77.13037323083326,42.495981625036826],[-77.13719730876414,42.494472349682766],[-77.14207165014335,42.494472349682766],[-77.14389952816055,42.4947386923923],[-77.14743342566047,42.49713577677817],[-77.14950502074663,42.500065546583116],[-77.15011431341902,42.507878266062974],[-77.14950502074663,42.51524708102693],[-77.14865201100527,42.51950856437958],[-77.14731156712598,42.526433474827634],[-77.14694599152254,42.532026671727984],[-77.14926130367768,42.545876492624096],[-77.14962687928112,42.55386677391031],[-77.14877386953975,42.559637532617025],[-77.14572740617774,42.570823926417724],[-77.14377766962606,42.57686102783398],[-77.17655761540121,42.57668346602762],[-77.18435656160794,42.576594685124434],[-77.21348075134868,42.576594685124434],[-77.23833989238263,42.57641712331807],[-77.24272679962391,42.57641712331807],[-77.257471682296,42.57623956151171],[-77.27319143324394,42.576150780608536],[-77.27319143324394,42.57623956151171],[-77.30670253022596,42.57623956151171],[-77.33509556875983,42.5763283424149],[-77.34862186608711,42.5763283424149],[-77.35020602703536,42.5763283424149],[-77.36653507065569,42.5763283424149],[-77.36665692919017,42.59834600640358],[-77.36690064625913,42.63563398573926],[-77.3671443633281,42.667861453593666],[-77.36446347556952,42.667861453593666],[-77.35739568056968,42.66919316714137],[-77.35568966108696,42.68987911758235],[-77.35434921720768,42.69715915164313],[-77.35191204651808,42.70435040480072],[-77.34655027100095,42.716335826730045],[-77.33667972970807,42.7340032264629],[-77.33351140781159,42.73817592891237],[-77.32510316893246,42.74723158103675],[-77.32132555436357,42.75007256993852],[-77.3162074959154,42.75619845225795],[-77.31450147643268,42.7591282220629],[-77.31303917401893,42.76125896373922],[-77.29926915962267,42.761436525545584],[-77.25698424815808,42.76117018283604],[-77.24163007281359,42.76125896373922],[-77.23407484367581,42.7613477446424],[-77.23212510712413,42.76125896373922],[-77.23090652177933,42.76125896373922],[-77.22676333160702,42.7613477446424],[-77.2207922634175,42.7613477446424],[-77.17375486910817,42.76152530644876],[-77.1441432452295,42.761614087351944],[-77.12318357729893,42.76170286825512],[-77.12318357729893,42.763300924512365],[-77.116603216437,42.763300924512365],[-77.09832443626499,42.763478486318725],[-77.08918504617898,42.7635672672219],[-77.07943636342057,42.763656048125085],[-77.07846149514474,42.763656048125085],[-77.05713625161071,42.763833609931446],[-77.05019031514534,42.763833609931446],[-77.018628954715,42.763833609931446],[-77.01777594497364,42.763833609931446],[-77.00156875988779,42.76409995264098],[-77.00095946721538,42.76409995264098],[-76.97244457014705,42.76418873354417]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.29554927716637,42.74412424942545],[-75.29591485276981,42.7420822886523],[-75.29457440889053,42.7398627660728],[-75.29311210647677,42.738797395234634],[-75.29299024794229,42.73790958620283],[-75.29567113570084,42.73382566465654],[-75.2972552966491,42.72903149588481],[-75.29591485276981,42.72805490594983],[-75.2965241454422,42.719088034728635],[-75.2972552966491,42.71828900660001],[-75.29944875026973,42.71793388298729],[-75.30676026233854,42.705593337445244],[-75.31139088664878,42.69653768532086],[-75.31321876466599,42.689967898485534],[-75.31589965242455,42.68579519603606],[-75.31979912552791,42.68464104429472],[-75.31992098406239,42.683131768940655],[-75.32735435466567,42.67913662829755],[-75.33076639363112,42.671412689720874],[-75.33113196923456,42.66839413901275],[-75.3308882521656,42.66146922856469],[-75.32808550587255,42.656941402502504],[-75.32820736440704,42.655432127148444],[-75.32881665707944,42.65436675631028],[-75.32711063759672,42.65312382366576],[-75.32820736440704,42.650993081989434],[-75.32771993026911,42.64806331218448],[-75.32528275957952,42.6475306267654],[-75.32491718397607,42.64646525592724],[-75.32455160837263,42.64495598057318],[-75.32308930595887,42.64406817154138],[-75.32321116449336,42.634479833997915],[-75.32369859863127,42.63403592948202],[-75.32637948638984,42.633503244062936],[-75.3278417888036,42.63208274961205],[-75.32881665707944,42.62933054161347],[-75.3272324961312,42.62577930548626],[-75.32333302302783,42.62355978290675],[-75.32321116449336,42.62231685026223],[-75.32467346690711,42.620186108585905],[-75.33161940337249,42.615747063426895],[-75.33661560328616,42.61361632175058],[-75.33807790569992,42.61113045646153],[-75.33832162276889,42.60527091685164],[-75.33661560328616,42.602518708853054],[-75.33661560328616,42.601275776208524],[-75.33722489595857,42.60021040537037],[-75.33673746182065,42.59630404563044],[-75.33564073501033,42.59355183763185],[-75.33490958380344,42.59293037130959],[-75.33320356432073,42.59239768589051],[-75.33076639363112,42.59293037130959],[-75.3247953254416,42.59062206782691],[-75.32467346690711,42.5892903542792],[-75.32650134492431,42.58494009002337],[-75.328451081476,42.58343081466931],[-75.32954780828632,42.581566415702525],[-75.32954780828632,42.581033730283444],[-75.32686692052775,42.5781039604785],[-75.32698877906223,42.577482494156236],[-75.32747621320016,42.57686102783398],[-75.32942594975184,42.57641712331807],[-75.33174126190696,42.57268832538451],[-75.331497544838,42.56895952745094],[-75.3308882521656,42.56771659480642],[-75.3308882521656,42.5673614711937],[-75.33113196923456,42.56718390938734],[-75.33344728138968,42.565053167711014],[-75.33661560328616,42.56354389235695],[-75.33722489595857,42.56230095971243],[-75.33929649104472,42.560969246164724],[-75.34965446647553,42.55777313365024],[-75.35318836397546,42.555553611070735],[-75.36098731018218,42.55235749855625],[-75.36196217845803,42.552446279459424],[-75.3633026223373,42.55342286939441],[-75.36732395397514,42.55253506036261],[-75.36793324664755,42.551824813137166],[-75.36720209544067,42.5498716332672],[-75.37268572949228,42.53655449779017],[-75.37731635380251,42.53371350888841],[-75.38194697811277,42.53176032901845],[-75.38219069518172,42.528830559213496],[-75.38328742199204,42.526611036633994],[-75.38682131949197,42.52359248592587],[-75.38682131949197,42.522704676894065],[-75.3841404317334,42.52128418244318],[-75.38389671466444,42.52021881160502],[-75.38487158294028,42.517910508122334],[-75.38925849018156,42.51116315948064],[-75.39047707552636,42.51036413135202],[-75.39437654862974,42.51116315948064],[-75.39717929492278,42.51080803586792],[-75.40107876802614,42.511340721287],[-75.40205363630199,42.51098559767428],[-75.4031503631123,42.5086772941916],[-75.40034761681926,42.508766075094776],[-75.3964481437159,42.507256799740716],[-75.39608256811245,42.50681289522481],[-75.3958388510435,42.50175238374354],[-75.39888531440549,42.49962164206722],[-75.39888531440549,42.49775724310043],[-75.39535141690557,42.48861281007287],[-75.3958388510435,42.48630450659019],[-75.39912903147446,42.48328595588206],[-75.40351593871574,42.48248692775344],[-75.4043689484571,42.47875812981987],[-75.40339408018126,42.47689373085309],[-75.40180991923302,42.47529567459585],[-75.40107876802614,42.47316493291952],[-75.40120062656062,42.469081011373234],[-75.40010389975029,42.465174651633305],[-75.39973832414685,42.46180097731246],[-75.39912903147446,42.4611795109902],[-75.39608256811245,42.46020292105521],[-75.39474212423318,42.45931511202341],[-75.38669946095749,42.4459091956432],[-75.38584645121612,42.44164771229055],[-75.38572459268164,42.43312474558526],[-75.38389671466444,42.42912960494215],[-75.38097210983692,42.426554958749925],[-75.37768192940595,42.4253120261054],[-75.37658520259563,42.42389153165452],[-75.37670706113012,42.42327006533226],[-75.37829122207836,42.4222046944941],[-75.37926609035421,42.41963004830187],[-75.37926609035421,42.4167890594001],[-75.37816936354388,42.41554612675558],[-75.37512290018188,42.41607881217466],[-75.3750010416474,42.410396834371134],[-75.38060653423348,42.40755584546937],[-75.38072839276796,42.4038270475358],[-75.38828362190573,42.40142996314993],[-75.3920612364746,42.40116362044039],[-75.39352353888837,42.40063093502131],[-75.39462026569869,42.39903287876407],[-75.39413283156077,42.39716847979729],[-75.39486398276765,42.39565920444322],[-75.40217549483646,42.389622103026966],[-75.40461266552606,42.38518305786796],[-75.40656240207774,42.379234737354885],[-75.4061968264743,42.37816936651672],[-75.40351593871574,42.37683765296902],[-75.40266292897438,42.37586106303404],[-75.40266292897438,42.37319763593864],[-75.40485638259503,42.37088933245595],[-75.40461266552606,42.36875859077963],[-75.40327222164677,42.365473697361956],[-75.39973832414685,42.36041318588069],[-75.39632628518142,42.36023562407433],[-75.39352353888837,42.359170253236165],[-75.39315796328493,42.35846000601072],[-75.39462026569869,42.353221932723095],[-75.39864159733654,42.35055850562769],[-75.40168806069853,42.3495819156927],[-75.40266292897438,42.348605325757724],[-75.40217549483646,42.34638580317822],[-75.39864159733654,42.34114772989059],[-75.39815416319861,42.3375077128602],[-75.39864159733654,42.33644234202204],[-75.40046947535373,42.33457794305525],[-75.4049782411295,42.33218085866939],[-75.41046187518111,42.32552229093088],[-75.41034001664663,42.324279358286354],[-75.40753727035359,42.321704712094125],[-75.4074154118191,42.320372998546425],[-75.40899957276734,42.31930762770826],[-75.41277718733623,42.32081690306232],[-75.41399577268103,42.32063934125597],[-75.41484878242238,42.31957397041781],[-75.41606736776718,42.315933953387415],[-75.4153362165603,42.31415833532381],[-75.4153362165603,42.31398077351745],[-75.41545807509479,42.299775829008624],[-75.41570179216374,42.29373872759237],[-75.41570179216374,42.29311726127011],[-75.41594550923271,42.28592600811251],[-75.41606736776718,42.28166452475986],[-75.41728595311199,42.24730631522913],[-75.41728595311199,42.24455410723055],[-75.41838267992232,42.19501436325601],[-75.42727835293935,42.19501436325601],[-75.43580845035297,42.19492558235282],[-75.44202323561146,42.19519192506237],[-75.53280784379913,42.195280705965544],[-75.57801736009125,42.19536948686873],[-75.57960152103949,42.19536948686873],[-75.59653985733222,42.195458267771905],[-75.60007375483214,42.195458267771905],[-75.60056118897006,42.195458267771905],[-75.60117048164247,42.195458267771905],[-75.6371187493141,42.195635829578265],[-75.6371187493141,42.19705632402915],[-75.6371187493141,42.19714510493233],[-75.6371187493141,42.19732266673869],[-75.6371187493141,42.20114024557544],[-75.63736246638305,42.204158796283565],[-75.6371187493141,42.21197151576342],[-75.63748432491754,42.23301258981712],[-75.63760618345202,42.23638626413797],[-75.63797175905546,42.240736528393796],[-75.63919034440026,42.24863802877684],[-75.6480860174173,42.248549247873655],[-75.68318127534758,42.2479277815514],[-75.68829933379574,42.2479277815514],[-75.69743872388175,42.2479277815514],[-75.7221760063812,42.247750219745036],[-75.72254158198464,42.24934827600228],[-75.73765204026017,42.249259495099096],[-75.74715700594963,42.24917071419592],[-75.74959417663922,42.24917071419592],[-75.77213800551804,42.249259495099096],[-75.77810907370757,42.249259495099096],[-75.77871836637998,42.249259495099096],[-75.78005881025925,42.249259495099096],[-75.81941911689633,42.24899315238956],[-75.81978469249977,42.24899315238956],[-75.82161257051696,42.2479277815514],[-75.83379842396498,42.24517557355281],[-75.83635745318907,42.244110202714644],[-75.83696674586146,42.24517557355281],[-75.84379082379235,42.25973564167436],[-75.8452531262061,42.27846841224538],[-75.84829958956811,42.3061680540376],[-75.85037118465426,42.32774181351038],[-75.85061490172323,42.32951743157398],[-75.85073676025772,42.33102670692805],[-75.85207720413699,42.3451428705337],[-75.855123667499,42.36023562407433],[-75.85890128206788,42.37879083283899],[-75.85926685767132,42.38092157451531],[-75.8618258868954,42.393706024573255],[-75.86401934051604,42.41572368856194],[-75.86560350146428,42.432325717456635],[-75.86621279413669,42.44226917861282],[-75.86621279413669,42.442357959515995],[-75.86657836974013,42.44768481370681],[-75.86962483310212,42.490210866330116],[-75.87425545741237,42.54268038010961],[-75.87632705249854,42.565940976742816],[-75.87718006223989,42.575795656995815],[-75.88120139387773,42.62506905826082],[-75.88132325241222,42.62640077180852],[-75.88229812068806,42.6376759465124],[-75.8838822816363,42.6556096889548],[-75.88985334982583,42.72388220350036],[-75.82112513637905,42.72716709691803],[-75.80333379034495,42.72841002956255],[-75.78139925413853,42.72956418130389],[-75.76312047396652,42.730451990335695],[-75.76214560569068,42.730451990335695],[-75.7068218310367,42.7331154174311],[-75.68769004112333,42.7340032264629],[-75.68403428508893,42.73418078826926],[-75.67172657310644,42.734713473688345],[-75.66563364638243,42.73497981639789],[-75.66063744646875,42.735246159107426],[-75.65990629526188,42.735246159107426],[-75.65381336853787,42.73560128272015],[-75.64491769552082,42.736045187236044],[-75.63845919319337,42.73631152994559],[-75.61835253500416,42.73702177717103],[-75.61823067646968,42.73702177717103],[-75.61786510086624,42.73711055807421],[-75.6009267645735,42.73764324349329],[-75.59885516948734,42.73773202439647],[-75.59873331095287,42.73773202439647],[-75.5984895938839,42.73773202439647],[-75.55839813603995,42.73924129975053],[-75.5525489263849,42.739507642460076],[-75.54523741431609,42.73977398516961],[-75.53475758035081,42.740306670588694],[-75.53353899500601,42.74039545149188],[-75.52756792681649,42.74057301329824],[-75.52439960492,42.740661794201415],[-75.49466612250686,42.74217106955548],[-75.4932038200931,42.74217106955548],[-75.45408723052498,42.74403546852226],[-75.44738501112857,42.744390592134984],[-75.42861879681864,42.745455962973146],[-75.42800950414625,42.73808714800919],[-75.39864159733654,42.73924129975053],[-75.39145194380221,42.739507642460076],[-75.39096450966429,42.739507642460076],[-75.38974592431948,42.739507642460076],[-75.35757527121675,42.741016917814136],[-75.3369811788896,42.7420822886523],[-75.31772753044174,42.743058878587284],[-75.31236575492463,42.74332522129682],[-75.2965241454422,42.74412424942545],[-75.29554927716637,42.74412424942545]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.26554321162797,42.62355978290675],[-76.26359347507629,42.58786985982832],[-76.26286232386941,42.57437516254493],[-76.26225303119702,42.56460926319511],[-76.26152187999013,42.55049309958946],[-76.26091258731773,42.54028329572374],[-76.26079072878325,42.539040363079216],[-76.26079072878325,42.538507677660135],[-76.2605470117143,42.53247057624389],[-76.25993771904189,42.5203075925082],[-76.25920656783501,42.50592508619301],[-76.25810984102469,42.48710353471881],[-76.25750054835228,42.47822544440079],[-76.25737868981781,42.47547323640221],[-76.25725683128333,42.47431908466086],[-76.25518523619716,42.43809647616335],[-76.25396665085236,42.41741052572237],[-76.25335735817997,42.40755584546937],[-76.29308324042047,42.40657925553438],[-76.29820129886865,42.395925547152764],[-76.29625156231697,42.389622103026966],[-76.29759200619624,42.386425990512485],[-76.29954174274792,42.3845615915457],[-76.29881059154104,42.38172060264393],[-76.29503297697217,42.38012254638669],[-76.29271766481703,42.37985620367715],[-76.28540615274824,42.37950108006443],[-76.28053181136903,42.38030010819305],[-76.27931322602423,42.37985620367715],[-76.27833835774838,42.37816936651672],[-76.26493391895558,42.374440568583154],[-76.25542895326613,42.37071177064959],[-76.25396665085236,42.36911371439235],[-76.24872673386972,42.3661839445874],[-76.24677699731804,42.3657400400715],[-76.24190265593883,42.36334295568563],[-76.23873433404235,42.35703951155984],[-76.23775946576652,42.35126875285313],[-76.23958734378371,42.35020338201497],[-76.24433982662843,42.34247944343829],[-76.24555841197324,42.33830674098882],[-76.24555841197324,42.33608721840932],[-76.24726443145596,42.334311600345714],[-76.247020714387,42.33067158331533],[-76.24970160214556,42.3280969371231],[-76.24970160214556,42.32703156628494],[-76.25055461188693,42.326321319059495],[-76.25116390455932,42.32490082460861],[-76.25092018749037,42.318863723192365],[-76.24994531921452,42.31637785790332],[-76.2512857630938,42.30874270022982],[-76.25055461188693,42.306434396747136],[-76.24933602654212,42.304037312361274],[-76.24909230947316,42.301817789781765],[-76.24909230947316,42.29950948629908],[-76.250067177749,42.29666849739731],[-76.2721235724899,42.2967572783005],[-76.28833075757575,42.2967572783005],[-76.28820889904128,42.30821001481074],[-76.29186465507567,42.30829879571392],[-76.29893245007553,42.30829879571392],[-76.29917616714448,42.30829879571392],[-76.3002728939548,42.30829879571392],[-76.30112590369616,42.30829879571392],[-76.30210077197201,42.30829879571392],[-76.31416476688554,42.30829879571392],[-76.35060046869509,42.30847635752028],[-76.35072232722956,42.314069554420634],[-76.35084418576405,42.314602239839715],[-76.35084418576405,42.318331037773284],[-76.37448474145319,42.31815347596692],[-76.39459139964241,42.318508599579644],[-76.40897070671106,42.31841981867646],[-76.41530735050402,42.318331037773284],[-76.41616036024539,42.26293175418885],[-76.42237514550386,42.263020535092025],[-76.47453059826135,42.26373078231747],[-76.47392130558895,42.28113183934078],[-76.4931749540368,42.28113183934078],[-76.51413462196739,42.2814869629535],[-76.51486577317426,42.2814869629535],[-76.51876524627762,42.281575743856685],[-76.52912322170843,42.28166452475986],[-76.53838447032892,42.281753305663045],[-76.5489861628287,42.28184208656622],[-76.56178130894911,42.28201964837258],[-76.5795726549832,42.282552333791664],[-76.61929853722371,42.28281867650121],[-76.62563518101668,42.28299623830757],[-76.62709748343043,42.283085019210745],[-76.69143878963592,42.28441673275845],[-76.69131693110145,42.295869469268695],[-76.69119507256697,42.307766110294835],[-76.69107321403249,42.31335930719519],[-76.68973277015321,42.31344808809837],[-76.69058577989458,42.373375197745],[-76.68595515558432,42.373375197745],[-76.68656444825673,42.389266979414245],[-76.68656444825673,42.389622103026966],[-76.68656444825673,42.39033235025241],[-76.687904892136,42.411906109725194],[-76.68827046773944,42.41963004830187],[-76.68924533601529,42.43330230739162],[-76.68924533601529,42.43410133552024],[-76.68936719454977,42.43569939177748],[-76.68961091161873,42.440315998742854],[-76.69046392136009,42.45239020157536],[-76.69107321403249,42.463310252666524],[-76.69156064817041,42.46748295511599],[-76.69229179937729,42.477959101691255],[-76.69265737498073,42.483374736785244],[-76.69277923351521,42.48381864130114],[-76.69326666765313,42.49234160800644],[-76.69363224325657,42.49731333858453],[-76.69363224325657,42.500065546583116],[-76.69363224325657,42.5001543274863],[-76.69375410179106,42.50290653548488],[-76.69424153592897,42.509565103223395],[-76.69472897006689,42.51720026089689],[-76.69485082860137,42.51968612618594],[-76.69594755541169,42.53637693598381],[-76.69594755541169,42.536643278693354],[-76.69606941394618,42.53788621133788],[-76.69667870661857,42.546675520752714],[-76.67925293618792,42.54711942526862],[-76.67718134110176,42.547208206171796],[-76.67291629239496,42.54729698707498],[-76.67145398998119,42.54729698707498],[-76.65195662446438,42.54791845339724],[-76.6500068879127,42.548007234300414],[-76.64135493196461,42.54818479610678],[-76.63087509799932,42.54862870062268],[-76.63075323946484,42.54862870062268],[-76.62636633222355,42.54862870062268],[-76.61795809334443,42.549072605138576],[-76.61661764946514,42.549072605138576],[-76.61539906412034,42.54916138604176],[-76.61357118610314,42.549072605138576],[-76.61125587394802,42.54916138604176],[-76.6107684398101,42.54916138604176],[-76.59882630343105,42.54951650965448],[-76.58603115731064,42.5498716332672],[-76.60601595696538,42.55937118990748],[-76.61673950799963,42.56567463403327],[-76.626731907827,42.57384247712585],[-76.64537626360246,42.59168743866507],[-76.65622167317117,42.60482701233573],[-76.66024300480902,42.61086411375199],[-76.66316760963655,42.61636852974916],[-76.666579648602,42.623471002003576],[-76.63355598575788,42.6247139346481],[-76.61454605437899,42.62533540097036],[-76.61430233731002,42.62533540097036],[-76.61405862024107,42.62222806935905],[-76.60504108868953,42.622583192971774],[-76.59419567912082,42.62284953568131],[-76.57457645506952,42.62355978290675],[-76.57201742584543,42.62364856380994],[-76.56689936739727,42.6238261256163],[-76.55556652369062,42.624270030132195],[-76.54325881170813,42.624625153744915],[-76.54252766050125,42.6247139346481],[-76.54057792394957,42.6247139346481],[-76.5360691581738,42.62489149645446],[-76.53582544110483,42.62489149645446],[-76.5091384220537,42.62577930548626],[-76.5085291293813,42.62586808638944],[-76.50389850507105,42.62595686729262],[-76.49232194429544,42.62631199090534],[-76.47879564696815,42.626667114518064],[-76.47306829584758,42.62675589542124],[-76.45990757412373,42.62711101903396],[-76.45917642291685,42.627199799937145],[-76.45868898877893,42.62506905826082],[-76.45868898877893,42.624802715551276],[-76.45832341317549,42.61858805232866],[-76.42103470162459,42.619653423166824],[-76.40994557498689,42.620008546779545],[-76.4081176969697,42.620008546779545],[-76.40750840429729,42.620008546779545],[-76.40239034584913,42.62009732768273],[-76.40226848731464,42.620008546779545],[-76.38642687783224,42.620541232198626],[-76.3731442975739,42.62080757490817],[-76.36485791722926,42.62098513671453],[-76.35705897102252,42.62125147942407],[-76.35693711248805,42.62125147942407],[-76.35218462964333,42.62134026032725],[-76.3518190540399,42.62134026032725],[-76.34462940050557,42.62160660303679],[-76.32525389352323,42.62205050755269],[-76.29552041111008,42.622760754778135],[-76.27943508455871,42.62320465929403],[-76.27651047973119,42.623293440197216],[-76.27626676266223,42.623293440197216],[-76.26554321162797,42.62355978290675]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-77.48997776608404,42.577304932349875],[-77.48522528323932,42.5772161514467],[-77.48315368815315,42.5772161514467],[-77.4742580151361,42.577127370543515],[-77.45951313246401,42.576949808737155],[-77.44574311806775,42.576772246930794],[-77.4454994009988,42.57686102783398],[-77.44159992789544,42.57686102783398],[-77.44159992789544,42.576772246930794],[-77.42307743065446,42.576594685124434],[-77.36653507065569,42.5763283424149],[-77.35020602703536,42.5763283424149],[-77.34862186608711,42.5763283424149],[-77.33509556875983,42.5763283424149],[-77.30670253022596,42.57623956151171],[-77.27319143324394,42.57623956151171],[-77.27319143324394,42.576150780608536],[-77.257471682296,42.57623956151171],[-77.24272679962391,42.57641712331807],[-77.23833989238263,42.57641712331807],[-77.21348075134868,42.576594685124434],[-77.18435656160794,42.576594685124434],[-77.17655761540121,42.57668346602762],[-77.14377766962606,42.57686102783398],[-77.14572740617774,42.570823926417724],[-77.14877386953975,42.559637532617025],[-77.14962687928112,42.55386677391031],[-77.14926130367768,42.545876492624096],[-77.14694599152254,42.532026671727984],[-77.14731156712598,42.526433474827634],[-77.14865201100527,42.51950856437958],[-77.14950502074663,42.51524708102693],[-77.15011431341902,42.507878266062974],[-77.14950502074663,42.500065546583116],[-77.14743342566047,42.49713577677817],[-77.14389952816055,42.4947386923923],[-77.14207165014335,42.494472349682766],[-77.13719730876414,42.494472349682766],[-77.13037323083326,42.495981625036826],[-77.12732676747125,42.49722455768135],[-77.11794366031629,42.50388312541987],[-77.11440976281636,42.50814460877251],[-77.10758568488548,42.50574752438665],[-77.10722010928204,42.483729860397965],[-77.1068545336786,42.469613696792315],[-77.10673267514412,42.46730539330963],[-77.10673267514412,42.46615124156829],[-77.10673267514412,42.46597367976193],[-77.1056359483338,42.42850813861989],[-77.10551408979931,42.42753154868491],[-77.10539223126483,42.41812077294781],[-77.10527037273036,42.406845598243926],[-77.10514851419588,42.39938800237679],[-77.10490479712692,42.389266979414245],[-77.09978673867874,42.27420692889273],[-77.09966488014427,42.27234252992594],[-77.08881947057554,42.27198740631322],[-77.07480573911033,42.275449861537254],[-77.06859095385184,42.275804985149975],[-77.06615378316224,42.27589376605315],[-77.06201059298992,42.27589376605315],[-77.03093666669749,42.27687035598814],[-77.02581860824932,42.277136698697674],[-77.01533877428403,42.27740304140722],[-77.00668681833595,42.277669384116756],[-76.98755502842258,42.27829085043902],[-76.96501119954375,42.27846841224538],[-76.96549863368168,42.262043945157046],[-76.96562049221616,42.25849270902984],[-76.96562049221616,42.25813758541712],[-76.96586420928512,42.25005852322772],[-76.96537677514719,42.228662325561295],[-76.96537677514719,42.208065156023494],[-76.96537677514719,42.19900950389911],[-76.96549863368168,42.17512744094364],[-76.96562049221616,42.166071788819266],[-76.96586420928512,42.147782922764144],[-76.9659860678196,42.14760536095778],[-76.96574235075063,42.14458681024966],[-76.96574235075063,42.1435214394115],[-76.96574235075063,42.14343265850832],[-76.96574235075063,42.14245606857334],[-76.96574235075063,42.13943751786521],[-76.96586420928512,42.137928242511144],[-76.96586420928512,42.1341106636744],[-76.9659860678196,42.127096972323166],[-76.96586420928512,42.12390085980868],[-76.96586420928512,42.123456955292774],[-76.96574235075063,42.12079352819737],[-76.96574235075063,42.118396443811505],[-76.96574235075063,42.09229485827653],[-76.96574235075063,42.087411908601624],[-76.96574235075063,42.07835625647724],[-76.96574235075063,42.07675820022],[-76.96574235075063,42.07613673389774],[-76.96574235075063,42.07267427867371],[-76.96586420928512,42.07187525054509],[-76.96586420928512,42.0700108515783],[-76.96586420928512,42.066104491838374],[-76.96586420928512,42.061043980357105],[-76.96586420928512,42.056960058810816],[-76.96586420928512,42.04302145701153],[-76.9659860678196,42.040979496238386],[-76.9659860678196,42.039115097271605],[-76.9659860678196,42.02899407430906],[-76.9659860678196,42.0288165125027],[-76.9659860678196,42.02757357985818],[-76.9659860678196,42.024821371859595],[-76.9659860678196,42.022424287473726],[-76.9659860678196,42.02198038295783],[-76.9659860678196,42.02198038295783],[-76.96562049221616,42.01141545547939],[-76.96574235075063,42.00129443251684],[-77.00753982807731,42.00085052800094],[-77.0076616866118,42.00085052800094],[-77.03105852523197,42.00067296619458],[-77.06371661247263,42.00049540438822],[-77.08321397798946,42.0001402807755],[-77.10307691910971,41.999785157162776],[-77.11465347988532,41.999607595356416],[-77.12464587971269,41.999430033550055],[-77.15925370350504,41.999430033550055],[-77.17631389833225,41.99951881445324],[-77.20056374669379,41.99951881445324],[-77.31669493005333,41.9996963762596],[-77.39285651410339,41.99987393806596],[-77.45658852763648,41.99996271896914],[-77.50374778048028,42.00005149987232],[-77.50411335608372,42.00005149987232],[-77.50533194142852,42.00005149987232],[-77.63511128064984,41.999430033550055],[-77.63572057332223,41.99934125264688],[-77.7499020201301,41.9988085672278],[-77.74843971771632,42.03219018682355],[-77.74551511288881,42.102415881239075],[-77.74514953728537,42.110228600718926],[-77.74514953728537,42.11466764587794],[-77.74429652754401,42.1354423772221],[-77.74405281047504,42.138283366123865],[-77.74393095194057,42.1448531529592],[-77.74234679099233,42.17858989616767],[-77.74210307392336,42.181342104166255],[-77.74149378125097,42.19217337435424],[-77.74088448857856,42.204691481702646],[-77.7406407715096,42.20966321228074],[-77.73954404469929,42.232923808913945],[-77.73930032763032,42.23638626413797],[-77.73893475202688,42.244820449940086],[-77.73893475202688,42.246862410713234],[-77.73747244961312,42.266926894831954],[-77.73686315694071,42.2814869629535],[-77.73649758133728,42.28841187340156],[-77.7357664301304,42.30297194152311],[-77.73552271306144,42.3074997675853],[-77.73503527892352,42.31540126796833],[-77.7345478447856,42.3272091280913],[-77.73418226918216,42.33271354408847],[-77.73259810823392,42.36405320291107],[-77.7327199667684,42.36636150639376],[-77.73211067409599,42.37994498458033],[-77.73211067409599,42.38047766999941],[-77.73101394728567,42.404093390245336],[-77.72942978633743,42.40400460934216],[-77.72613960590647,42.40400460934216],[-77.72479916202718,42.42779789139445],[-77.72479916202718,42.42815301500717],[-77.72467730349271,42.43161547023119],[-77.72455544495823,42.43667598171247],[-77.72443358642374,42.43685354351883],[-77.72394615228583,42.44839506093225],[-77.72370243521686,42.45824974118525],[-77.72309314254447,42.464819528020584],[-77.72297128400999,42.47121175304956],[-77.72065597185487,42.53504522243611],[-77.7039613526311,42.534601317920206],[-77.70359577702764,42.53531156514565],[-77.66850051909738,42.53504522243611],[-77.66131086556305,42.53504522243611],[-77.66094528995961,42.5489838242354],[-77.66082343142513,42.552446279459424],[-77.66045785582169,42.55635263919935],[-77.65997042168378,42.580323483058],[-77.6543649290977,42.580323483058],[-77.65424307056321,42.580323483058],[-77.65107474866673,42.580323483058],[-77.6206101150467,42.580057140348465],[-77.6206101150467,42.580057140348465],[-77.6175636516847,42.580057140348465],[-77.61744179315022,42.580057140348465],[-77.61439532978821,42.580057140348465],[-77.58917061315084,42.57961323583256],[-77.58380883763371,42.5794356740262],[-77.57479130608219,42.57916933131666],[-77.53969604815191,42.57837030318804],[-77.48997776608404,42.577304932349875]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-79.06073427553254,42.53788621133788],[-79.0609779926015,42.522882238700426],[-79.0609779926015,42.52084027792728],[-79.06085613406702,42.513027558447426],[-79.06085613406702,42.50139726013082],[-79.06122170967046,42.4992665184545],[-79.06122170967046,42.45789461757253],[-79.06122170967046,42.44670822377183],[-79.06122170967046,42.439516970614235],[-79.06122170967046,42.43578817268067],[-79.06122170967046,42.435077925455225],[-79.06109985113598,42.4060465701153],[-79.0609779926015,42.39459383360506],[-79.06073427553254,42.37017908523051],[-79.06085613406702,42.36689419181284],[-79.06073427553254,42.35561901710896],[-79.06073427553254,42.34789507853228],[-79.06049055846358,42.268613731992374],[-79.0603686999291,42.26026832709344],[-79.0603686999291,42.24730631522913],[-79.0603686999291,42.247217534325955],[-79.06012498286013,42.24064774749062],[-79.06012498286013,42.24047018568426],[-79.06000312432566,42.23611992142843],[-79.06000312432566,42.22946135368991],[-79.06000312432566,42.2236905949832],[-79.06012498286013,42.2210271678878],[-79.06024684139462,42.22084960608144],[-79.06012498286013,42.215522751890624],[-79.06000312432566,42.21179395395706],[-79.05975940725669,42.205668071637625],[-79.05975940725669,42.17344060378322],[-79.05975940725669,42.1663381315288],[-79.05975940725669,42.16101127733799],[-79.05975940725669,42.157193698501246],[-79.05975940725669,42.155151737728104],[-79.05963754872222,42.15319855785814],[-79.05963754872222,42.15186684431043],[-79.05963754872222,42.14689511373234],[-79.05951569018774,42.12940527580585],[-79.05927197311878,42.1246998879373],[-79.05927197311878,42.11040616252529],[-79.05927197311878,42.109340791687124],[-79.05927197311878,42.10747639272034],[-79.05927197311878,42.09229485827653],[-79.05927197311878,42.08670166137618],[-79.05927197311878,42.08634653776346],[-79.05927197311878,42.07604795299456],[-79.05975940725669,42.06796889080516],[-79.06000312432566,42.057048839714],[-79.0603686999291,42.0382272882398],[-79.06109985113598,42.00502323045041],[-79.06134356820493,42.00076174709776],[-79.06122170967046,41.999252471743695],[-79.14493852285828,41.999430033550055],[-79.17857147837479,41.999430033550055],[-79.2342608286322,41.99898612903416],[-79.23962260414933,41.998897348130974],[-79.24973686251117,41.9988085672278],[-79.2955556714757,41.998719786324614],[-79.34222749018157,41.99854222451826],[-79.38036921147385,41.99845344361508],[-79.41168685483522,41.99836466271189],[-79.4724942635408,41.998275881808716],[-79.5281836137982,41.99845344361508],[-79.53841973069453,41.99854222451826],[-79.55133673534942,41.99863100542144],[-79.62530486577884,41.999074909937335],[-79.62530486577884,41.99898612903416],[-79.63139779250285,41.999074909937335],[-79.64492408983014,41.99916369084052],[-79.65698808474367,41.999252471743695],[-79.67014880646752,41.99934125264688],[-79.76142084879312,41.999074909937335],[-79.76178642439656,42.01905061315288],[-79.76178642439656,42.08652409956982],[-79.76166456586208,42.11901791013376],[-79.762152,42.13126967477263],[-79.76190828293105,42.150712692569094],[-79.76178642439656,42.16269811449842],[-79.76190828293105,42.173351822880036],[-79.76190828293105,42.179655267005835],[-79.76178642439656,42.18365040764894],[-79.762152,42.24304483187648],[-79.76190828293105,42.25139023677542],[-79.76190828293105,42.267459580251035],[-79.76190828293105,42.2698566646369],[-79.7216949665526,42.283440142823466],[-79.71779549344924,42.28468307546799],[-79.71206814232868,42.287168940757034],[-79.6720985430192,42.304214874167634],[-79.6684427869848,42.305724149521694],[-79.66076569931256,42.30909782384254],[-79.64565524103702,42.31549004887152],[-79.64541152396806,42.31566761067788],[-79.64468037276119,42.315933953387415],[-79.64358364595086,42.31655541970968],[-79.63883116310613,42.31895250409554],[-79.63286009491661,42.32197105480367],[-79.61592175862388,42.330582802412145],[-79.61348458793428,42.33173695415349],[-79.60142059302075,42.33786283647292],[-79.59410908095194,42.34159163440649],[-79.59398722241745,42.34168041530967],[-79.56303515465952,42.35570779801214],[-79.54621867690126,42.363431736588815],[-79.54609681836678,42.36352051749199],[-79.54439079888407,42.364408326523794],[-79.53378910638429,42.37009030432733],[-79.5281836137982,42.37319763593864],[-79.52781803819477,42.373286416841815],[-79.51100156043651,42.382342068966196],[-79.50941739948827,42.383318658901175],[-79.49442879974721,42.39246309192873],[-79.4828522389716,42.39938800237679],[-79.4798057756096,42.40125240134357],[-79.47480957569593,42.4042709520517],[-79.4534843321619,42.41119586249975],[-79.44873184931718,42.414480755917424],[-79.44032361043806,42.420429076430494],[-79.42911262526589,42.428419357716706],[-79.4265535960418,42.431171565715296],[-79.41156499630075,42.446797004675005],[-79.40547206957675,42.453278010607164],[-79.39864799164586,42.45709558944391],[-79.38195337242209,42.46650636518101],[-79.3635527337156,42.47920203433578],[-79.36343087518111,42.479290815238954],[-79.36318715811215,42.479468377045315],[-79.36209043130182,42.480178624270756],[-79.35197617293998,42.48887915278242],[-79.34405536819877,42.489500619104675],[-79.34234934871606,42.489678180911035],[-79.33625642199205,42.488524029169696],[-79.33576898785412,42.48843524826651],[-79.33515969518173,42.488346467363336],[-79.33150393914732,42.48905671458878],[-79.32870119285428,42.49092111355556],[-79.32821375871636,42.49127623716828],[-79.3230957002682,42.49482747329549],[-79.32199897345788,42.495804063230466],[-79.31773392475107,42.499887984776755],[-79.30908196880299,42.50272897367852],[-79.29397151052746,42.507700704256614],[-79.28617256432072,42.510275350448836],[-79.28336981802768,42.51125194038382],[-79.27191511578656,42.5185319744446],[-79.26460360371775,42.52314858140996],[-79.25327076001109,42.52758762656897],[-79.24291278458028,42.53176032901845],[-79.24266906751133,42.53184910992162],[-79.23706357492524,42.53300326166297],[-79.226340023891,42.53540034604883],[-79.22329356052899,42.53602181237109],[-79.22317170199452,42.53611059327427],[-79.20452734621905,42.54214769469053],[-79.2030650438053,42.54268038010961],[-79.19356007811585,42.54578771172091],[-79.19319450251241,42.545876492624096],[-79.18612670751256,42.54711942526862],[-79.17820590277135,42.5485399197195],[-79.17235669311631,42.54951650965448],[-79.17199111751287,42.54960529055766],[-79.17089439070254,42.54978285236402],[-79.17077253216807,42.54978285236402],[-79.16736049320262,42.55040431868628],[-79.16065827380622,42.55155847042762],[-79.15529649828909,42.55253506036261],[-79.14908171303061,42.55360043120077],[-79.14871613742717,42.55368921210395],[-79.14810684475476,42.55439945932939],[-79.14103904975492,42.561857055196526],[-79.13860187906532,42.56443170138875],[-79.13713957665156,42.56851562293504],[-79.13677400104812,42.569669774676385],[-79.13665214251364,42.5695809937732],[-79.13226523527236,42.567272690290515],[-79.1271471768242,42.565230729517374],[-79.12580673294491,42.565053167711014],[-79.12129796716914,42.56585219583963],[-79.11496132337618,42.570024898289105],[-79.10850282104873,42.570202460095466],[-79.10423777234193,42.5682492802255],[-79.10375033820401,42.56700634758098],[-79.10557821622122,42.56531951042055],[-79.10582193329017,42.56452048229193],[-79.1044814894109,42.563011206937865],[-79.10289732846265,42.56256730242197],[-79.1013131675144,42.562478521518784],[-79.10070387484201,42.56256730242197],[-79.09668254320417,42.56460926319511],[-79.09351422130769,42.56354389235695],[-79.09363607984217,42.56256730242197],[-79.09424537251456,42.5610580270679],[-79.0921737774284,42.556885324618435],[-79.09107705061808,42.55599751558663],[-79.08985846527328,42.555908734683456],[-79.08766501165265,42.55644142010254],[-79.08266881173896,42.55599751558663],[-79.08169394346311,42.555376049264375],[-79.08132836785967,42.55422189752303],[-79.08132836785967,42.55395555481349],[-79.08985846527328,42.55173603223398],[-79.0903458994112,42.551292127718085],[-79.09010218234224,42.55022675687992],[-79.08084093372176,42.544988683592294],[-79.07718517768735,42.54445599817321],[-79.06865508027374,42.541437447465086],[-79.06073427553254,42.53788621133788]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.69667870661857,42.546675520752714],[-76.69606941394618,42.53788621133788],[-76.69594755541169,42.536643278693354],[-76.69594755541169,42.53637693598381],[-76.69485082860137,42.51968612618594],[-76.69472897006689,42.51720026089689],[-76.69424153592897,42.509565103223395],[-76.69375410179106,42.50290653548488],[-76.69363224325657,42.5001543274863],[-76.69363224325657,42.500065546583116],[-76.69363224325657,42.49731333858453],[-76.69326666765313,42.49234160800644],[-76.69277923351521,42.48381864130114],[-76.69265737498073,42.483374736785244],[-76.69229179937729,42.477959101691255],[-76.69156064817041,42.46748295511599],[-76.69107321403249,42.463310252666524],[-76.69046392136009,42.45239020157536],[-76.68961091161873,42.440315998742854],[-76.68936719454977,42.43569939177748],[-76.68924533601529,42.43410133552024],[-76.68924533601529,42.43330230739162],[-76.68827046773944,42.41963004830187],[-76.687904892136,42.411906109725194],[-76.68656444825673,42.39033235025241],[-76.68656444825673,42.389622103026966],[-76.68656444825673,42.389266979414245],[-76.68595515558432,42.373375197745],[-76.69058577989458,42.373375197745],[-76.68973277015321,42.31344808809837],[-76.69107321403249,42.31335930719519],[-76.69119507256697,42.307766110294835],[-76.69131693110145,42.295869469268695],[-76.69143878963592,42.28441673275845],[-76.62709748343043,42.283085019210745],[-76.62563518101668,42.28299623830757],[-76.61929853722371,42.28281867650121],[-76.61954225429267,42.27651523237542],[-76.61954225429267,42.27589376605315],[-76.61966411282715,42.27331911986093],[-76.61942039575818,42.262842973285665],[-76.61942039575818,42.26257663057613],[-76.61942039575818,42.262487849672944],[-76.61942039575818,42.26213272606022],[-76.61929853722371,42.25529659651535],[-76.61917667868923,42.25085755135634],[-76.61954225429267,42.24863802877684],[-76.64220794170596,42.23372283704256],[-76.64805715136102,42.2380731012984],[-76.68510214584296,42.23762919678249],[-76.68571143851537,42.237717977685676],[-76.68583329704984,42.248371686067294],[-76.73055537920405,42.24810534335776],[-76.7326269742902,42.24801656245457],[-76.73274883282468,42.25405366387083],[-76.73396741816948,42.29373872759237],[-76.74505654480717,42.29400507030191],[-76.7650413444619,42.29427141301145],[-76.77101241265143,42.29418263210827],[-76.77783649058232,42.29418263210827],[-76.78795074894417,42.29436019391463],[-76.79148464644409,42.29427141301145],[-76.84814886497735,42.29347238488283],[-76.85485108437375,42.29311726127011],[-76.89323652273498,42.29098651959379],[-76.90054803480379,42.290631395981066],[-76.90115732747618,42.29054261507788],[-76.908468839545,42.29018749146516],[-76.9647674824748,42.28743528346658],[-76.96501119954375,42.27846841224538],[-76.98755502842258,42.27829085043902],[-77.00668681833595,42.277669384116756],[-77.01533877428403,42.27740304140722],[-77.02581860824932,42.277136698697674],[-77.03093666669749,42.27687035598814],[-77.06201059298992,42.27589376605315],[-77.06615378316224,42.27589376605315],[-77.06859095385184,42.275804985149975],[-77.07480573911033,42.275449861537254],[-77.08881947057554,42.27198740631322],[-77.09966488014427,42.27234252992594],[-77.09978673867874,42.27420692889273],[-77.10490479712692,42.389266979414245],[-77.10514851419588,42.39938800237679],[-77.10527037273036,42.406845598243926],[-77.10539223126483,42.41812077294781],[-77.10551408979931,42.42753154868491],[-77.1056359483338,42.42850813861989],[-77.10673267514412,42.46597367976193],[-77.10673267514412,42.46615124156829],[-77.10673267514412,42.46730539330963],[-77.1068545336786,42.469613696792315],[-77.10722010928204,42.483729860397965],[-77.09296266074786,42.483907422204325],[-77.04105092505934,42.48461766942977],[-77.03629844221462,42.48461766942977],[-77.03471428126637,42.48461766942977],[-77.0222847107494,42.48470645033294],[-77.02009125712877,42.48470645033294],[-77.01887267178397,42.48470645033294],[-77.0174103693702,42.48479523123613],[-77.0143639060082,42.48479523123613],[-77.00364035497395,42.48479523123613],[-76.99730371118099,42.484884012139304],[-76.98938290643977,42.484884012139304],[-76.98938290643977,42.48452888852658],[-76.98938290643977,42.483729860397965],[-76.98852989669842,42.46766051692235],[-76.98816432109497,42.463310252666524],[-76.97329757988841,42.463842938085605],[-76.96440190687136,42.4642868426015],[-76.96403633126792,42.459226331120234],[-76.93466842445821,42.46064682557112],[-76.90335078109682,42.46224488182836],[-76.88982448376953,42.46304390995698],[-76.8985982982521,42.484262545817046],[-76.90079175187275,42.49385088336051],[-76.90066989333826,42.4992665184545],[-76.89945130799346,42.520662716120924],[-76.8955518348901,42.54152622836826],[-76.88117252782145,42.54188135198098],[-76.88007580101113,42.54188135198098],[-76.874714025494,42.54205891378734],[-76.87398287428712,42.54197013288417],[-76.85253577221863,42.54250281830325],[-76.8490018747187,42.54268038010961],[-76.810494577823,42.54374575094777],[-76.80501094377138,42.54383453185095],[-76.79185022204753,42.54418965546367],[-76.78843818308209,42.54427843636685],[-76.78088295394433,42.54454477907639],[-76.76065443722062,42.54507746449547],[-76.74517840334165,42.54543258810819],[-76.73567343765221,42.54561014991455],[-76.72239085739388,42.546054054430456],[-76.7149574867906,42.54623161623682],[-76.70118747239434,42.54658673984954],[-76.69972516998058,42.546675520752714],[-76.69667870661857,42.546675520752714]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-78.46399303218348,42.53619937417745],[-78.46411489071797,42.532026671727984],[-78.46411489071797,42.530517396373924],[-78.46435860778692,42.523681266829044],[-78.46435860778692,42.52341492411951],[-78.46460232485589,42.51915344076686],[-78.46167772002836,42.51915344076686],[-78.44705469589074,42.51924222167004],[-78.43279724735658,42.51924222167004],[-78.42451086701193,42.51924222167004],[-78.41780864761553,42.51924222167004],[-78.40416049175376,42.51933100257322],[-78.36175372175468,42.52021881160502],[-78.35809796572028,42.5203075925082],[-78.34128148796202,42.52057393521774],[-78.31983438589353,42.52084027792728],[-78.31946881029008,42.52084027792728],[-78.31179172261784,42.52092905883046],[-78.31057313727304,42.521017839733645],[-78.30886711779031,42.521017839733645],[-78.30874525925583,42.50716801883753],[-78.30874525925583,42.50201872645308],[-78.30874525925583,42.48026740517394],[-78.30862340072136,42.46180097731246],[-78.30862340072136,42.45878242660433],[-78.30874525925583,42.4517687352531],[-78.30850154218687,42.436587200809285],[-78.30874525925583,42.38820160857608],[-78.3089889763248,42.35925903413935],[-78.30911083485927,42.348960449370445],[-78.30923269339375,42.34753995491956],[-78.30923269339375,42.34381115698599],[-78.30923269339375,42.32312520654501],[-78.30923269339375,42.32232617841639],[-78.30923269339375,42.32161593119095],[-78.30923269339375,42.30501390229625],[-78.30923269339375,42.273585462570466],[-78.30923269339375,42.261156136125244],[-78.30911083485927,42.242956050973305],[-78.30911083485927,42.238872129427016],[-78.30911083485927,42.23860578671748],[-78.30911083485927,42.23780675858885],[-78.30911083485927,42.224578404015006],[-78.30911083485927,42.21800861717967],[-78.3089889763248,42.21445738105246],[-78.30911083485927,42.20051877925317],[-78.30911083485927,42.200429998349996],[-78.30911083485927,42.19812169486731],[-78.3089889763248,42.19013141358109],[-78.30886711779031,42.18640261564752],[-78.3089889763248,42.177613306232686],[-78.3089889763248,42.173351822880036],[-78.3089889763248,42.16269811449842],[-78.30874525925583,42.16198786727298],[-78.30886711779031,42.15914687837121],[-78.30886711779031,42.15781516482351],[-78.30874525925583,42.13020430393447],[-78.30874525925583,42.12505501155002],[-78.30874525925583,42.12052718548783],[-78.30862340072136,42.08670166137618],[-78.30862340072136,42.08341676795851],[-78.30874525925583,42.08137480718537],[-78.3082578251179,42.057048839714],[-78.30813596658344,42.03938143998114],[-78.3082578251179,42.027839922567715],[-78.30813596658344,42.022069163861005],[-78.3082578251179,42.01958329857196],[-78.30813596658344,41.999430033550055],[-78.34859300003083,41.99951881445324],[-78.38588171158173,41.99951881445324],[-78.4632618809766,41.9996963762596],[-78.5195605239064,41.999785157162776],[-78.5796367814051,41.99987393806596],[-78.58658271787047,41.99987393806596],[-78.59669697623231,41.99987393806596],[-78.61777850269738,41.999607595356416],[-78.64836499485187,41.999252471743695],[-78.6972302671784,41.998719786324614],[-78.74975129553933,41.998098320002356],[-78.82737518200314,41.997743196389635],[-78.8747781519159,41.997565634583275],[-78.90573021967384,41.997920758195995],[-78.94448123363853,41.99845344361508],[-78.97433657458615,41.9988085672278],[-78.97762675501711,41.998897348130974],[-78.97799233062055,41.998897348130974],[-78.98311038906871,41.99898612903416],[-79.06122170967046,41.999252471743695],[-79.06134356820493,42.00076174709776],[-79.06109985113598,42.00502323045041],[-79.0603686999291,42.0382272882398],[-79.06000312432566,42.057048839714],[-79.05975940725669,42.06796889080516],[-79.05927197311878,42.07604795299456],[-79.05927197311878,42.08634653776346],[-79.05927197311878,42.08670166137618],[-79.05927197311878,42.09229485827653],[-79.05927197311878,42.10747639272034],[-79.05927197311878,42.109340791687124],[-79.05927197311878,42.11040616252529],[-79.05927197311878,42.1246998879373],[-79.05951569018774,42.12940527580585],[-79.05963754872222,42.14689511373234],[-79.05963754872222,42.15186684431043],[-79.05963754872222,42.15319855785814],[-79.05975940725669,42.155151737728104],[-79.05975940725669,42.157193698501246],[-79.05975940725669,42.16101127733799],[-79.05975940725669,42.1663381315288],[-79.05975940725669,42.17344060378322],[-79.05975940725669,42.205668071637625],[-79.06000312432566,42.21179395395706],[-79.06012498286013,42.215522751890624],[-79.06024684139462,42.22084960608144],[-79.06012498286013,42.2210271678878],[-79.06000312432566,42.2236905949832],[-79.06000312432566,42.22946135368991],[-79.06000312432566,42.23611992142843],[-79.06012498286013,42.24047018568426],[-79.06012498286013,42.24064774749062],[-79.0603686999291,42.247217534325955],[-79.0603686999291,42.24730631522913],[-79.0603686999291,42.26026832709344],[-79.06049055846358,42.268613731992374],[-79.06073427553254,42.34789507853228],[-79.06073427553254,42.35561901710896],[-79.06085613406702,42.36689419181284],[-79.06073427553254,42.37017908523051],[-79.0609779926015,42.39459383360506],[-79.06109985113598,42.4060465701153],[-79.06122170967046,42.435077925455225],[-79.06122170967046,42.43578817268067],[-79.06122170967046,42.439516970614235],[-79.06122170967046,42.44670822377183],[-79.06122170967046,42.45789461757253],[-79.06122170967046,42.4992665184545],[-79.06085613406702,42.50139726013082],[-79.06085613406702,42.513027558447426],[-79.0609779926015,42.52084027792728],[-79.0609779926015,42.522882238700426],[-79.06073427553254,42.53788621133788],[-79.05634736829126,42.536643278693354],[-79.05147302691205,42.53593303146791],[-79.04757355380869,42.53859645856332],[-79.04184620268812,42.53708718320925],[-79.04050575880883,42.53726474501561],[-79.03879973932612,42.537974992241054],[-79.0346565491538,42.54232525649689],[-79.03258495406763,42.542591599206425],[-79.03185380286075,42.542236475593704],[-79.03112265165387,42.54063841933646],[-79.02978220777459,42.54019451482056],[-79.02551715906779,42.54037207662692],[-79.0236892810506,42.538862801272856],[-79.0132094470853,42.534601317920206],[-79.00431377406825,42.53415741340431],[-78.99980500829248,42.53176032901845],[-78.9990738570856,42.532736918953425],[-78.99688040346497,42.532559357147065],[-78.99200606208576,42.52954080643894],[-78.99090933527545,42.52510176127993],[-78.98835030605136,42.5216393060559],[-78.98676614510312,42.51968612618594],[-78.98652242803415,42.51835441263824],[-78.9881065889824,42.51551342373647],[-78.98774101337895,42.513471462963324],[-78.98359782320664,42.51187340670608],[-78.9837196817411,42.508233389675695],[-78.98554755975832,42.50663533341845],[-78.9862787109652,42.50512605806439],[-78.98469455001695,42.50477093445167],[-78.98274481346527,42.50583630528983],[-78.98055135984463,42.50592508619301],[-78.9727524136379,42.50042067019584],[-78.97226497949998,42.500065546583116],[-78.96982780881038,42.49811236671315],[-78.96653762837941,42.493762102457325],[-78.96580647717253,42.49331819794143],[-78.96154142846574,42.49349575974779],[-78.96324744794846,42.48665963020291],[-78.96202886260366,42.48230936594708],[-78.95715452122445,42.47254346659726],[-78.9494774335522,42.46854832595415],[-78.94387194096612,42.46828198324461],[-78.93899759958691,42.46783807872871],[-78.93704786303523,42.46659514608419],[-78.93351396553531,42.462067320022],[-78.93010192656988,42.46011414015204],[-78.92900519975954,42.45967023563613],[-78.92571501932859,42.458871207507514],[-78.91852536579427,42.453278010607164],[-78.91803793165634,42.449549212673595],[-78.92230298036314,42.44848384183543],[-78.92388714131138,42.44741847099727],[-78.92413085838034,42.44617553835275],[-78.92084067794939,42.442890644935076],[-78.91925651700114,42.44226917861282],[-78.9176723560529,42.44262430222554],[-78.91255429760473,42.44768481370681],[-78.90512092700145,42.44599797654639],[-78.90353676605321,42.446264319255924],[-78.9023181807084,42.44830628002907],[-78.90049030269121,42.44848384183543],[-78.898662424674,42.44768481370681],[-78.89780941493264,42.444577482095504],[-78.89720012226024,42.44306820674144],[-78.8937880832948,42.43925062790469],[-78.8919602052776,42.439694532420596],[-78.88915745898456,42.441825274096914],[-78.8883044492432,42.44209161680646],[-78.88696400536391,42.44129258867784],[-78.88379568346743,42.43809647616335],[-78.88257709812262,42.43862916158243],[-78.88062736157094,42.44040477964604],[-78.87721532260551,42.44129258867784],[-78.86880708372638,42.44040477964604],[-78.86332344967478,42.44155893138738],[-78.84918785967508,42.44297942583826],[-78.84528838657172,42.44466626299868],[-78.83980475252011,42.44297942583826],[-78.83785501596843,42.44306820674144],[-78.83675828915811,42.44351211125734],[-78.83541784527883,42.44617553835275],[-78.83334625019266,42.44812871822271],[-78.81896694312401,42.45301166789762],[-78.81628605536545,42.453988257832606],[-78.81287401640002,42.45620778041211],[-78.80946197743457,42.458871207507514],[-78.80751224088289,42.45869364570115],[-78.80568436286569,42.45824974118525],[-78.80397834338297,42.45967023563613],[-78.79873842640032,42.46215610092518],[-78.79179248993495,42.460913168280655],[-78.78618699734886,42.45798339847571],[-78.78387168519374,42.456296561315284],[-78.78131265596967,42.45540875228348],[-78.77899734381454,42.455319971380305],[-78.77119839760782,42.457184370347086],[-78.77022352933197,42.45816096028207],[-78.77046724640094,42.45913755021705],[-78.77180769028021,42.46020292105521],[-78.77424486096982,42.46082438737748],[-78.77826619260766,42.460913168280655],[-78.7786317682111,42.46188975821564],[-78.77168583174574,42.46490830892377],[-78.76559290502173,42.46180097731246],[-78.76388688553901,42.46153463460292],[-78.76096228071148,42.462067320022],[-78.7590125441598,42.463132690860164],[-78.75803767588397,42.46455318531105],[-78.75815953441844,42.46544099434285],[-78.75949997829773,42.46712783150327],[-78.75803767588397,42.46899223047005],[-78.75121359795308,42.46845954505097],[-78.74975129553933,42.47343127562906],[-78.7492638614014,42.473697618338605],[-78.74914200286692,42.473697618338605],[-78.74475509562564,42.47378639924178],[-78.7393933201085,42.473697618338605],[-78.73793101769475,42.47440786556405],[-78.73719986648787,42.47582836001493],[-78.73744358355682,42.47724885446581],[-78.73598128114307,42.47937959614214],[-78.73037578855698,42.47937959614214],[-78.72428286183298,42.48275327046298],[-78.71429046200561,42.48550547846157],[-78.71148771571256,42.48417376491386],[-78.70661337433336,42.484440107623406],[-78.70271390123,42.48648206839655],[-78.70076416467832,42.48479523123613],[-78.7002767305404,42.47467420827358],[-78.69747398424735,42.47272102840362],[-78.69369636967848,42.47183321937182],[-78.69284335993711,42.47209956208136],[-78.69235592579919,42.47263224750044],[-78.69259964286815,42.47547323640221],[-78.69150291605783,42.47662738814355],[-78.68735972588551,42.47547323640221],[-78.6855318478683,42.47600592182129],[-78.68285096010975,42.47804788259443],[-78.68321653571319,42.4804449669803],[-78.6818760918339,42.48106643330256],[-78.68102308209254,42.484262545817046],[-78.67261484321341,42.48772500104107],[-78.66956837985141,42.488168905556975],[-78.66749678476525,42.48772500104107],[-78.66542518967908,42.487991343750615],[-78.66298801898948,42.490210866330116],[-78.66140385804124,42.492430388909625],[-78.65543278985172,42.492430388909625],[-78.65299561916211,42.49083233265238],[-78.65104588261043,42.490210866330116],[-78.64288136080027,42.492252827103265],[-78.64178463398994,42.49305185523188],[-78.64068790717963,42.49607040594001],[-78.63776330235211,42.49757968129407],[-78.63301081950738,42.49686943406863],[-78.62667417571441,42.498201147616335],[-78.6249681562317,42.49900017574495],[-78.62472443916273,42.499177737551314],[-78.62448072209378,42.49997676567994],[-78.62472443916273,42.50050945109902],[-78.62472443916273,42.502285069162625],[-78.62143425873177,42.50441581083895],[-78.62094682459386,42.50423824903259],[-78.62021567338697,42.5023738500658],[-78.61911894657665,42.50201872645308],[-78.61741292709392,42.502285069162625],[-78.61217301011129,42.50583630528983],[-78.60754238580104,42.50628020980573],[-78.60400848830112,42.509565103223395],[-78.59962158105984,42.51160706399654],[-78.5930412201979,42.51169584489972],[-78.59096962511175,42.51080803586792],[-78.58609528373255,42.51160706399654],[-78.58609528373255,42.513027558447426],[-78.58548599106014,42.513649024769684],[-78.58377997157743,42.51427049109195],[-78.58231766916366,42.51409292928559],[-78.5814646594223,42.513471462963324],[-78.56988809864669,42.51036413135202],[-78.56282030364684,42.510275350448836],[-78.55319347942292,42.51480317651103],[-78.55258418675052,42.51551342373647],[-78.54429780640587,42.516401232768274],[-78.53820487968187,42.51595732825237],[-78.53503655778538,42.51950856437958],[-78.52821247985449,42.52128418244318],[-78.52687203597522,42.521372963346366],[-78.52309442140633,42.51995246889548],[-78.51931680683745,42.51933100257322],[-78.51432060692376,42.52243833418453],[-78.5116397191652,42.52554566579583],[-78.51188343623416,42.52741006476261],[-78.50968998261352,42.528120311988054],[-78.5085932558032,42.52767640747216],[-78.50579050951016,42.526788598440355],[-78.50335333882056,42.526966160246715],[-78.49104562683806,42.53033983456756],[-78.49043633416566,42.531227643599365],[-78.49031447563118,42.532736918953425],[-78.48848659761398,42.53469009882339],[-78.48324668063134,42.53415741340431],[-78.48129694407966,42.53335838527569],[-78.4786160563211,42.53362472798523],[-78.46582091020068,42.53486766062975],[-78.46399303218348,42.53619937417745]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-78.03870674684794,42.52092905883046],[-78.04053462486513,42.518443193541415],[-77.9549899336601,42.51835441263824],[-77.9365892949536,42.51835441263824],[-77.91623891969543,42.51835441263824],[-77.9108771441783,42.518265631735055],[-77.90356563210949,42.51817685083188],[-77.84068662831777,42.517732946315974],[-77.84019919417985,42.47458542737041],[-77.78694701461204,42.47289859020998],[-77.76732779056074,42.47227712388772],[-77.72297128400999,42.47121175304956],[-77.72309314254447,42.464819528020584],[-77.72370243521686,42.45824974118525],[-77.72394615228583,42.44839506093225],[-77.72443358642374,42.43685354351883],[-77.72455544495823,42.43667598171247],[-77.72467730349271,42.43161547023119],[-77.72479916202718,42.42815301500717],[-77.72479916202718,42.42779789139445],[-77.72613960590647,42.40400460934216],[-77.72942978633743,42.40400460934216],[-77.73101394728567,42.404093390245336],[-77.73211067409599,42.38047766999941],[-77.73211067409599,42.37994498458033],[-77.7327199667684,42.36636150639376],[-77.73259810823392,42.36405320291107],[-77.73418226918216,42.33271354408847],[-77.7345478447856,42.3272091280913],[-77.73503527892352,42.31540126796833],[-77.73552271306144,42.3074997675853],[-77.7357664301304,42.30297194152311],[-77.73649758133728,42.28841187340156],[-77.73686315694071,42.2814869629535],[-77.73747244961312,42.266926894831954],[-77.73893475202688,42.246862410713234],[-77.73893475202688,42.244820449940086],[-77.73930032763032,42.23638626413797],[-77.73954404469929,42.232923808913945],[-77.7406407715096,42.20966321228074],[-77.74088448857856,42.204691481702646],[-77.74149378125097,42.19217337435424],[-77.74210307392336,42.181342104166255],[-77.74234679099233,42.17858989616767],[-77.74393095194057,42.1448531529592],[-77.74405281047504,42.138283366123865],[-77.74429652754401,42.1354423772221],[-77.74514953728537,42.11466764587794],[-77.74514953728537,42.110228600718926],[-77.74551511288881,42.102415881239075],[-77.74843971771632,42.03219018682355],[-77.7499020201301,41.9988085672278],[-77.82277342374918,41.99854222451826],[-77.83203467236967,41.99854222451826],[-77.84019919417985,41.99854222451826],[-77.8815092373686,41.99863100542144],[-77.93927018271216,41.998719786324614],[-77.9568178116773,41.998719786324614],[-77.99751856219365,41.998719786324614],[-77.9984934304695,41.9988085672278],[-78.0309078006412,41.999430033550055],[-78.03115151771016,41.999430033550055],[-78.05527950753722,41.9996963762596],[-78.0744112974506,41.99987393806596],[-78.12193612589783,42.00040662348504],[-78.12473887219087,42.00049540438822],[-78.19127363201702,41.999785157162776],[-78.25476192848114,41.99916369084052],[-78.26865380141189,41.99898612903416],[-78.27121283063596,41.99898612903416],[-78.30813596658344,41.999430033550055],[-78.3082578251179,42.01958329857196],[-78.30813596658344,42.022069163861005],[-78.3082578251179,42.027839922567715],[-78.30813596658344,42.03938143998114],[-78.3082578251179,42.057048839714],[-78.30874525925583,42.08137480718537],[-78.30862340072136,42.08341676795851],[-78.30862340072136,42.08670166137618],[-78.30874525925583,42.12052718548783],[-78.30874525925583,42.12505501155002],[-78.30874525925583,42.13020430393447],[-78.30886711779031,42.15781516482351],[-78.30886711779031,42.15914687837121],[-78.30874525925583,42.16198786727298],[-78.3089889763248,42.16269811449842],[-78.3089889763248,42.173351822880036],[-78.3089889763248,42.177613306232686],[-78.30886711779031,42.18640261564752],[-78.3089889763248,42.19013141358109],[-78.30911083485927,42.19812169486731],[-78.30911083485927,42.200429998349996],[-78.30911083485927,42.20051877925317],[-78.3089889763248,42.21445738105246],[-78.30911083485927,42.21800861717967],[-78.30911083485927,42.224578404015006],[-78.30911083485927,42.23780675858885],[-78.30911083485927,42.23860578671748],[-78.30911083485927,42.238872129427016],[-78.30911083485927,42.242956050973305],[-78.30923269339375,42.261156136125244],[-78.30923269339375,42.273585462570466],[-78.30923269339375,42.30501390229625],[-78.30923269339375,42.32161593119095],[-78.30923269339375,42.32232617841639],[-78.30923269339375,42.32312520654501],[-78.30923269339375,42.34381115698599],[-78.30923269339375,42.34753995491956],[-78.30911083485927,42.348960449370445],[-78.3089889763248,42.35925903413935],[-78.30874525925583,42.38820160857608],[-78.30850154218687,42.436587200809285],[-78.30874525925583,42.4517687352531],[-78.30862340072136,42.45878242660433],[-78.30862340072136,42.46180097731246],[-78.30874525925583,42.48026740517394],[-78.30874525925583,42.50201872645308],[-78.30874525925583,42.50716801883753],[-78.30886711779031,42.521017839733645],[-78.29716869848022,42.52110662063682],[-78.29400037658374,42.52119540154],[-78.29095391322174,42.52119540154],[-78.2844954108943,42.52128418244318],[-78.27876805977372,42.521372963346366],[-78.27767133296341,42.521372963346366],[-78.27718389882548,42.521372963346366],[-78.27620903054965,42.521372963346366],[-78.24866900175714,42.52146174424954],[-78.23843288486081,42.52155052515272],[-78.23514270442985,42.52155052515272],[-78.23404597761953,42.52155052515272],[-78.22466287046457,42.5216393060559],[-78.22344428511977,42.5216393060559],[-78.22173826563704,42.5216393060559],[-78.19968187089614,42.52146174424954],[-78.19029876374117,42.52146174424954],[-78.18968947106877,42.52146174424954],[-78.1631243105521,42.521372963346366],[-78.16300245201764,42.521372963346366],[-78.1454548230525,42.521372963346366],[-78.13351268667344,42.521372963346366],[-78.13339082813897,42.521372963346366],[-78.11828036986344,42.52128418244318],[-78.10780053589815,42.52128418244318],[-78.08903432158822,42.52110662063682],[-78.03870674684794,42.52092905883046]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.71160317993773,42.51782172721916],[-74.703804233731,42.509920226836115],[-74.69990476062763,42.50601386709619],[-74.67163358062825,42.47769275898171],[-74.66407835149049,42.47005760130821],[-74.65701055649063,42.46286634815062],[-74.64579957131846,42.45159117344674],[-74.63458858614631,42.44022721783968],[-74.62410875218102,42.42948472855487],[-74.62045299614661,42.42584471152448],[-74.61728467425013,42.42371396984816],[-74.58889163571627,42.412616356950636],[-74.56756639218224,42.40418217114852],[-74.53466458787261,42.39122015928421],[-74.52674378313141,42.388112827672906],[-74.51857926132125,42.38482793425524],[-74.47617249132217,42.36813712445736],[-74.4435144040815,42.3549975507867],[-74.42816022873701,42.34904923027362],[-74.4422958187367,42.32996133608989],[-74.44253953580566,42.32978377428353],[-74.46971398899473,42.29302848036693],[-74.47873152054625,42.28086549663124],[-74.4797063888221,42.279533783083544],[-74.48116869123585,42.27758060321358],[-74.48543373994266,42.27180984450686],[-74.53734547563118,42.201406588284975],[-74.49956932994235,42.186935301066605],[-74.45557839899503,42.17068839578464],[-74.45167892589167,42.169267901333754],[-74.50395623718363,42.144941933862384],[-74.53100883183822,42.146451209216444],[-74.54831274373439,42.1273633150327],[-74.55355266071703,42.12150377542281],[-74.565982231234,42.1157330167161],[-74.66968384407657,42.0677913289988],[-74.67029313674897,42.06752498628926],[-74.78069696898794,42.01638718605747],[-74.7889833493326,42.012569607220726],[-74.80068176864268,42.00715397212674],[-74.84308853864175,41.987710954330275],[-74.84394154838311,41.987355830717554],[-74.84674429467616,41.98602411716985],[-74.85137491898641,41.98415971820307],[-74.8519842116588,41.98389337549353],[-74.85295907993464,41.98336069007445],[-74.9082828545886,41.958945941699895],[-74.91315719596781,41.95681520002357],[-74.98517558984555,41.9239662658469],[-74.99723958475909,41.91846184984973],[-74.99906746277628,41.91766282172111],[-75.00162649200037,41.916419889076586],[-75.00333251148308,41.91562086094797],[-75.02928837932735,41.903990562631364],[-75.03111625734455,41.90319153450274],[-75.14639443096273,41.85089958252961],[-75.15285293329018,41.84859127904693],[-75.15650868932457,41.848324936337384],[-75.16150488923826,41.84983421169145],[-75.16418577699682,41.85160982975505],[-75.16625737208298,41.85382935233456],[-75.16869454277258,41.859244987428546],[-75.16808525010019,41.867057706908405],[-75.16893825984154,41.86963235310063],[-75.16918197691051,41.87025381942289],[-75.16954755251395,41.87060894303561],[-75.17003498665187,41.87105284755151],[-75.17052242078978,41.87158553297059],[-75.17198472320355,41.87194065658331],[-75.1734470256173,41.87238456109922],[-75.17454375242762,41.872650903808754],[-75.17503118656555,41.87256212290558],[-75.1760060548414,41.872473342002394],[-75.17661534751379,41.87238456109922],[-75.17759021578964,41.87140797116423],[-75.17783393285859,41.87123040935787],[-75.17917437673788,41.86989869581017],[-75.17929623527235,41.86954357219745],[-75.18051482061715,41.86563721245752],[-75.18222084009987,41.8621747572335],[-75.1839268595826,41.86048792007307],[-75.18526730346188,41.85995523465399],[-75.1869733229446,41.86013279646035],[-75.18855748389284,41.861109386395334],[-75.18892305949628,41.861286948201695],[-75.19026350337556,41.862441099943034],[-75.19136023018588,41.86492696523208],[-75.19148208872036,41.86510452703844],[-75.19172580578932,41.8652820888448],[-75.19379740087548,41.866880145102044],[-75.19440669354789,41.86732404961794],[-75.19781873251333,41.86883332497201],[-75.20403351777182,41.86989869581017],[-75.20464281044421,41.86980991490699],[-75.20976086889237,41.869277229487906],[-75.2139040590647,41.867767954133846],[-75.21500078587502,41.867412830521125],[-75.2151226444095,41.86714648781158],[-75.22011884432318,41.86057670097625],[-75.22340902475415,41.857735712074486],[-75.22377460035759,41.85746936936494],[-75.22572433690927,41.85746936936494],[-75.23157354656432,41.85942254923491],[-75.23462000992632,41.86155329091123],[-75.23876320009865,41.8657259933607],[-75.24107851225376,41.86714648781158],[-75.24339382440888,41.866880145102044],[-75.24802444871914,41.863328908974836],[-75.24912117552945,41.86288500445894],[-75.25119277061562,41.861997195427136],[-75.25777313147753,41.8621747572335],[-75.26057587777058,41.86377281349074],[-75.26130702897746,41.864660622522536],[-75.26203818018435,41.86537086974798],[-75.26276933139123,41.8661698978766],[-75.26362234113259,41.86812307774657],[-75.26386605820154,41.87078650484197],[-75.26203818018435,41.87273968471194],[-75.26142888751194,41.87327237013102],[-75.26057587777058,41.8738050555501],[-75.25838242414994,41.87504798819462],[-75.25826056561546,41.87566945451688],[-75.25752941440858,41.877089948967765],[-75.26057587777058,41.88374851670628],[-75.26301304846018,41.88508023025398],[-75.2677655313049,41.885968039285785],[-75.27129942880482,41.88738853373667],[-75.27263987268411,41.89315929244338],[-75.2727617312186,41.897154433086484],[-75.2677655313049,41.901948601858216],[-75.26752181423595,41.90709789424267],[-75.26971526785658,41.91135937759532],[-75.27532076044267,41.91952722068789],[-75.27653934578747,41.922190647783296],[-75.27653934578747,41.92671847384549],[-75.27714863845988,41.9324892325522],[-75.27727049699436,41.93355460339036],[-75.27909837501156,41.938881457581175],[-75.28933449190788,41.94287659822428],[-75.29091865285612,41.945007339900606],[-75.29177166259748,41.94704930067375],[-75.29140608699404,41.95246493576774],[-75.29372139914916,41.95459567744407],[-75.29664600397669,41.954506896540884],[-75.29701157958013,41.954506896540884],[-75.29859574052837,41.954506896540884],[-75.30042361854558,41.95388543021863],[-75.30164220389038,41.952820059380464],[-75.3015203453559,41.95228737396138],[-75.3015203453559,41.9521985930582],[-75.30127662828693,41.948913699640535],[-75.30164220389038,41.948381014221454],[-75.3039575160455,41.94820345241509],[-75.31041601837295,41.94900248054371],[-75.31285318906255,41.95015663228506],[-75.31821496457967,41.95424055383135],[-75.32004284259688,41.96089912156986],[-75.322358154752,41.96169814969848],[-75.32930409121735,41.96826793653381],[-75.3357625935448,41.97030989730696],[-75.33954020811369,41.97075380182286],[-75.34222109587225,41.972884543499184],[-75.34246481294122,41.97430503795007],[-75.33783418863096,41.98442606091261],[-75.33759047156201,41.98673436439529],[-75.34112436906193,41.99277146581154],[-75.34222109587225,41.993304151230625],[-75.34660800311353,41.99534611200377],[-75.3535539395789,41.99712173006738],[-75.35952500776843,41.999430033550055],[-75.36098731018218,42.00005149987232],[-75.36281518819939,42.00173833703274],[-75.3620840369925,42.00493444954723],[-75.36427749061315,42.008130562061716],[-75.3669583783717,42.00804178115854],[-75.37463546604396,42.003336393289985],[-75.37926609035421,42.002182241548645],[-75.38474972440581,42.00307005058045],[-75.39035521699189,42.006798848514016],[-75.39437654862974,42.00635494399811],[-75.39657000225037,42.006621286707656],[-75.40229735337094,42.010705208253945],[-75.4031503631123,42.01212570270482],[-75.4025410704399,42.01363497805889],[-75.40278478750886,42.01470034889705],[-75.40424708992262,42.016475966960655],[-75.40997444104319,42.02979310243768],[-75.4153362165603,42.03627410836984],[-75.41899197259471,42.0382272882398],[-75.42179471888775,42.04160096256064],[-75.42057613354295,42.04532976049421],[-75.42301330423255,42.05349760358679],[-75.42264772862912,42.055628345263116],[-75.42264772862912,42.05598346887584],[-75.42240401156016,42.05758152513308],[-75.42240401156016,42.05846933416488],[-75.42240401156016,42.059534705003045],[-75.42240401156016,42.06024495222849],[-75.42216029449119,42.07027719428785],[-75.42203843595672,42.07782357105816],[-75.42191657742224,42.08448213879667],[-75.42106356768087,42.113957398652495],[-75.42094170914639,42.1148452076843],[-75.41972312380159,42.15044634985955],[-75.41923568966368,42.16802496868923],[-75.41899197259471,42.17379572739594],[-75.41838267992232,42.19501436325601],[-75.41728595311199,42.24455410723055],[-75.41728595311199,42.24730631522913],[-75.41606736776718,42.28166452475986],[-75.41594550923271,42.28592600811251],[-75.41570179216374,42.29311726127011],[-75.41570179216374,42.29373872759237],[-75.41545807509479,42.299775829008624],[-75.4153362165603,42.31398077351745],[-75.40826842156046,42.316289077000135],[-75.4031503631123,42.31486858254925],[-75.40302850457782,42.31540126796833],[-75.40059133388822,42.31531248706516],[-75.39425469009525,42.3173544478383],[-75.3940109730263,42.31699932422558],[-75.39254867061253,42.319041284998725],[-75.38962406578501,42.31966275132098],[-75.38803990483677,42.31877494228918],[-75.38718689509541,42.31717688603194],[-75.38474972440581,42.31522370616197],[-75.38340928052652,42.31531248706516],[-75.3798753830266,42.318686161386005],[-75.37890051475075,42.320728122159146],[-75.37670706113012,42.32143836938459],[-75.37463546604396,42.319840313127344],[-75.3719545782854,42.3160227342906],[-75.36842068078548,42.315933953387415],[-75.36049987604426,42.31815347596692],[-75.35465066638922,42.3191300659019],[-75.35221349569962,42.318863723192365],[-75.34794844699282,42.316111515193775],[-75.34136808613088,42.314779801646075],[-75.33807790569992,42.31549004887152],[-75.33564073501033,42.31717688603194],[-75.33430029113104,42.31788713325738],[-75.33161940337249,42.318331037773284],[-75.32260187182095,42.32117202667504],[-75.31638708656247,42.32117202667504],[-75.31273133052807,42.321882273900485],[-75.30931929156262,42.32126080757823],[-75.3088318574247,42.32117202667504],[-75.30627282820062,42.32356911106091],[-75.30554167699374,42.326676442672216],[-75.29823016492493,42.33102670692805],[-75.29774273078701,42.33164817325031],[-75.29323396501125,42.338750645504724],[-75.29238095526989,42.33937211182698],[-75.28153554570116,42.34256822434147],[-75.27836722380468,42.34727361221002],[-75.2751989019082,42.34771751672592],[-75.26959340932211,42.351002410143586],[-75.26922783371867,42.35180143827221],[-75.26947155078763,42.352866809110374],[-75.27142128733931,42.354731208077155],[-75.27008084346002,42.35792732059164],[-75.26593765328771,42.36369807929835],[-75.26045401923611,42.36680541090966],[-75.25911357535682,42.36680541090966],[-75.25606711199482,42.36449710742698],[-75.25448295104658,42.36431954562062],[-75.24790259018465,42.367160534522384],[-75.245709136564,42.36636150639376],[-75.24132222932272,42.36502979284606],[-75.23327956604703,42.364763450136515],[-75.2298675270816,42.36565125916832],[-75.2268210637196,42.367338096328744],[-75.22243415647831,42.367515658135105],[-75.21768167363359,42.36742687723192],[-75.21426963466814,42.36893615258599],[-75.2132947663923,42.36982396161779],[-75.21219803958198,42.37373032135771],[-75.21097945423718,42.375505939421316],[-75.2096390103579,42.37630496754994],[-75.20110891294429,42.37701521477538],[-75.19513784475477,42.37701521477538],[-75.19257881553068,42.37834692832308],[-75.19099465458244,42.37985620367715],[-75.19087279604797,42.37994498458033],[-75.19404111794445,42.369380057101885],[-75.19440669354789,42.368225905360546],[-75.19708758130645,42.35837122510755],[-75.18112411328956,42.36689419181284],[-75.17953995234132,42.368048343554186],[-75.16771967449674,42.37435178767998],[-75.14712558216961,42.38562696238386],[-75.14310425053176,42.38136547903121],[-75.12689706544592,42.39113137838103],[-75.12896866053207,42.393350900960534],[-75.12202272406671,42.397257260700464],[-75.12458175329078,42.39992068779587],[-75.11678280708406,42.40506998018032],[-75.09338596846388,42.420606638236855],[-75.07985967113659,42.42460177887996],[-75.05902186174049,42.430638880296215],[-75.04476441320632,42.43001741397395],[-75.04049936449952,42.42992863307077],[-75.0197834136379,42.42904082403897],[-75.0179555356207,42.45416581963896],[-75.01758996001726,42.45425460054214],[-75.01710252587934,42.45389947692942],[-75.01564022346558,42.4517687352531],[-75.01259376010357,42.4504370217054],[-75.00905986260365,42.449371650867235],[-75.00272321881069,42.448838965448154],[-75.0013827749314,42.447152128287726],[-75.00211392613829,42.44466626299868],[-75.00089534079349,42.442890644935076],[-74.99443683846604,42.43996087513013],[-74.99273081898332,42.43996087513013],[-74.99053736536268,42.44173649319374],[-74.991634092173,42.44519894841776],[-74.9910247995006,42.44599797654639],[-74.98846577027652,42.446264319255924],[-74.98651603372484,42.44431113938596],[-74.9842007215697,42.4436896730637],[-74.96969955596659,42.46686148879373],[-74.9640940633805,42.47582836001493],[-74.93728518579488,42.478669348916696],[-74.936554034588,42.47138931485592],[-74.88781062079595,42.49331819794143],[-74.85783342131384,42.506724114321635],[-74.8440634069176,42.51258365393152],[-74.84223552890039,42.51240609212516],[-74.83833605579703,42.51205096851244],[-74.7778942226949,42.506368990708914],[-74.77289802278122,42.50485971535485],[-74.77094828622954,42.504504591742126],[-74.76022473519528,42.5100090077393],[-74.75742198890224,42.51098559767428],[-74.75681269622984,42.5117846258029],[-74.75206021338512,42.51427049109195],[-74.74438312571287,42.51595732825237],[-74.73244098933382,42.51533586193011],[-74.7289070918339,42.51746660360644],[-74.72720107235118,42.51782172721916],[-74.72378903338574,42.517289041800076],[-74.72232673097197,42.51631245186509],[-74.71647752131693,42.51604610915555],[-74.71196875554116,42.516933918187355],[-74.71160317993773,42.51782172721916]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.35251494488115,42.5100090077393],[-73.38212656875982,42.42948472855487],[-73.39065666617343,42.40622413192166],[-73.41210376824192,42.34789507853228],[-73.41405350479361,42.34247944343829],[-73.44281211893092,42.26399712502701],[-73.47583578177502,42.17406207010548],[-73.49545500582632,42.12088230910055],[-73.49716102530904,42.116176921232004],[-73.50812829341224,42.08625775686028],[-73.50301023496408,42.06965572796558],[-73.49691730824007,42.049680024750046],[-73.50971245436048,42.04976880565322],[-73.51300263479145,42.049857586556406],[-73.52141087367058,42.04994636745958],[-73.52360432729122,42.026330647213655],[-73.5243354784981,42.01825158502426],[-73.52531034677394,42.00688762941719],[-73.5255540638429,42.00378029780589],[-73.52579778091186,42.00005149987232],[-73.52701636625666,41.97794505498045],[-73.53420601979099,41.97892164491544],[-73.53968965384259,41.979720673044056],[-73.54127381479083,41.97989823485042],[-73.54687930737691,41.98051970117268],[-73.55090063901476,41.98105238659176],[-73.55601869746293,41.981762633817205],[-73.6419289642714,41.99499098839105],[-73.65728313961588,41.997565634583275],[-73.66788483211566,41.99934125264688],[-73.70761071435618,42.00502323045041],[-73.70785443142513,42.00511201135359],[-73.71090089478713,42.00546713496631],[-73.72308674823515,42.010350084641225],[-73.72369604090754,42.01061642735076],[-73.7338102992694,42.01470034889705],[-73.736247469959,42.01567693883203],[-73.75562297694132,42.02348965831189],[-73.78901221538888,42.03609654656348],[-73.79084009340608,42.03680679378892],[-73.8170396783193,42.046217569526014],[-73.81850198073306,42.046750254945096],[-73.8213047270261,42.04781562578326],[-73.84506714124973,42.05669371610128],[-73.85201307771509,42.0592683622935],[-73.85859343857702,42.06166544667937],[-73.86017759952526,42.06228691300163],[-73.86249291168038,42.06317472203343],[-73.86578309211134,42.06441765467795],[-73.86651424331822,42.0646839973875],[-73.87029185788711,42.066104491838374],[-73.87126672616294,42.06637083454792],[-73.89539471599001,42.075160143962755],[-73.90782428650698,42.079599189121765],[-73.90867729624834,42.078445037380426],[-73.9156232327137,42.080930902669465],[-73.91708553512747,42.07649185751046],[-73.92135058383427,42.07729088563908],[-73.92963696417891,42.07880016099314],[-73.929149530041,42.08164114989491],[-73.9267123593514,42.09034167840657],[-73.9247626227997,42.095402189887835],[-73.92195987650666,42.10863054446168],[-73.91537951564474,42.12132621361645],[-73.91062703280002,42.127274534129526],[-73.90246251098985,42.13988142238111],[-73.8996597646968,42.147161456441886],[-73.898441179352,42.150712692569094],[-73.8935668379728,42.15746004121079],[-73.89259196969697,42.16340836172386],[-73.8929575453004,42.165539103400185],[-73.89234825262801,42.16749228327015],[-73.89003294047288,42.16953424404329],[-73.88552417469712,42.169978148559196],[-73.87943124797312,42.172641575654595],[-73.87455690659391,42.17406207010548],[-73.86383335555966,42.1824962559076],[-73.85530325814605,42.191374346225615],[-73.85359723866333,42.195635829578265],[-73.85323166305989,42.19652363861007],[-73.85103820943925,42.2030934254454],[-73.85042891676684,42.20673344247579],[-73.8495759070255,42.21090614492526],[-73.84981962409445,42.212681762988865],[-73.85128192650821,42.2205832633719],[-73.85042891676684,42.22351303317684],[-73.84921033142204,42.22777451652949],[-73.84786988754277,42.230349162721716],[-73.84189881935325,42.23558723600935],[-73.83263757073276,42.24402142181147],[-73.82946924883628,42.24570825897189],[-73.82520420012946,42.24553069716553],[-73.82301074650883,42.24615216348779],[-73.81898941487098,42.24846046697048],[-73.8152118003021,42.25076877045316],[-73.80899701504362,42.251656579484965],[-73.80302594685409,42.25369854025811],[-73.79961390788864,42.25645074825669],[-73.79522700064736,42.26106735522206],[-73.79278982995777,42.26346443960793],[-73.788281064182,42.2698566646369],[-73.78413787400967,42.280421592115346],[-73.78328486426831,42.28832309249838],[-73.78182256185455,42.29835533455774],[-73.78096955211319,42.301817789781765],[-73.78060397650975,42.30297194152311],[-73.78072583504424,42.307055863069394],[-73.78425973254416,42.32010665583688],[-73.78401601547519,42.321527150287764],[-73.78243185452695,42.324989605511796],[-73.78243185452695,42.32729790899448],[-73.78328486426831,42.33164817325031],[-73.78547831788896,42.336175999312495],[-73.78730619590615,42.342657005244654],[-73.78779363004408,42.34443262330826],[-73.78803734711303,42.34532043234006],[-73.78986522513024,42.350824848337226],[-73.79291168849224,42.3549975507867],[-73.79327726409568,42.35615170252804],[-73.79047451780264,42.36138977581567],[-73.79059637633712,42.364941011942875],[-73.79144938607848,42.36946883800507],[-73.79181496168192,42.37124445606867],[-73.79437399090601,42.37506203490542],[-73.79437399090601,42.37683765296902],[-73.79364283969912,42.38172060264393],[-73.79144938607848,42.38837917038244],[-73.78815920564752,42.39423870999234],[-73.78657504469928,42.39921044057043],[-73.7846253081476,42.407289502759824],[-73.77780123021671,42.42477934068632],[-73.77585149366503,42.42992863307077],[-73.77438919125126,42.43569939177748],[-73.77365804004438,42.44404479667642],[-73.77402361564782,42.450525802608574],[-73.7741454741823,42.45150239254356],[-73.77548591806159,42.45150239254356],[-73.77646078633742,42.45230142067218],[-73.77853238142359,42.458871207507514],[-73.77804494728566,42.46100194918384],[-73.77548591806159,42.46020292105521],[-73.77597335219951,42.461445853699736],[-73.77853238142359,42.463310252666524],[-73.78377229840623,42.464198061698326],[-73.73783163090724,42.46872588776051],[-73.72917967495916,42.469613696792315],[-73.71796868978699,42.470767848533654],[-73.6909160951324,42.473520056532244],[-73.68969750978759,42.473697618338605],[-73.68445759280495,42.474230303757686],[-73.65021534461604,42.47769275898171],[-73.63144913030611,42.4795571579485],[-73.62511248651315,42.48026740517394],[-73.57831880927279,42.48497279304249],[-73.57661278979006,42.485239135752025],[-73.55443453651469,42.488168905556975],[-73.53359672711859,42.49065477084602],[-73.5261633565153,42.49154257987782],[-73.52287317608433,42.491897703490544],[-73.5206797224637,42.49216404620008],[-73.51751140056722,42.492607950715986],[-73.50849386901568,42.493762102457325],[-73.44987991393076,42.500065546583116],[-73.44975805539627,42.500065546583116],[-73.44634601643084,42.50050945109902],[-73.44512743108604,42.50068701290538],[-73.40247694401799,42.50512605806439],[-73.39650587582847,42.50574752438665],[-73.37895824686333,42.50761192335344],[-73.35251494488115,42.5100090077393]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.78377229840623,42.464198061698326],[-73.77853238142359,42.463310252666524],[-73.77597335219951,42.461445853699736],[-73.77548591806159,42.46020292105521],[-73.77804494728566,42.46100194918384],[-73.77853238142359,42.458871207507514],[-73.77646078633742,42.45230142067218],[-73.77548591806159,42.45150239254356],[-73.7741454741823,42.45150239254356],[-73.77402361564782,42.450525802608574],[-73.77365804004438,42.44404479667642],[-73.77438919125126,42.43569939177748],[-73.77585149366503,42.42992863307077],[-73.77780123021671,42.42477934068632],[-73.7846253081476,42.407289502759824],[-73.78657504469928,42.39921044057043],[-73.78815920564752,42.39423870999234],[-73.79144938607848,42.38837917038244],[-73.79364283969912,42.38172060264393],[-73.79437399090601,42.37683765296902],[-73.79437399090601,42.37506203490542],[-73.79181496168192,42.37124445606867],[-73.79144938607848,42.36946883800507],[-73.79059637633712,42.364941011942875],[-73.79047451780264,42.36138977581567],[-73.79327726409568,42.35615170252804],[-73.79291168849224,42.3549975507867],[-73.78986522513024,42.350824848337226],[-73.78803734711303,42.34532043234006],[-73.78779363004408,42.34443262330826],[-73.78730619590615,42.342657005244654],[-73.78547831788896,42.336175999312495],[-73.78328486426831,42.33164817325031],[-73.78243185452695,42.32729790899448],[-73.78243185452695,42.324989605511796],[-73.78401601547519,42.321527150287764],[-73.78425973254416,42.32010665583688],[-73.78072583504424,42.307055863069394],[-73.78060397650975,42.30297194152311],[-73.78096955211319,42.301817789781765],[-73.78182256185455,42.29835533455774],[-73.78328486426831,42.28832309249838],[-73.78413787400967,42.280421592115346],[-73.788281064182,42.2698566646369],[-73.79278982995777,42.26346443960793],[-73.79522700064736,42.26106735522206],[-73.79961390788864,42.25645074825669],[-73.80302594685409,42.25369854025811],[-73.80899701504362,42.251656579484965],[-73.8152118003021,42.25076877045316],[-73.81898941487098,42.24846046697048],[-73.82301074650883,42.24615216348779],[-73.82520420012946,42.24553069716553],[-73.82946924883628,42.24570825897189],[-73.83263757073276,42.24402142181147],[-73.84189881935325,42.23558723600935],[-73.84786988754277,42.230349162721716],[-73.84921033142204,42.22777451652949],[-73.85042891676684,42.22351303317684],[-73.85128192650821,42.2205832633719],[-73.84981962409445,42.212681762988865],[-73.8495759070255,42.21090614492526],[-73.85042891676684,42.20673344247579],[-73.85103820943925,42.2030934254454],[-73.85323166305989,42.19652363861007],[-73.85359723866333,42.195635829578265],[-73.85530325814605,42.191374346225615],[-73.86383335555966,42.1824962559076],[-73.87455690659391,42.17406207010548],[-73.87943124797312,42.172641575654595],[-73.88552417469712,42.169978148559196],[-73.89003294047288,42.16953424404329],[-73.89234825262801,42.16749228327015],[-73.8929575453004,42.165539103400185],[-73.89259196969697,42.16340836172386],[-73.8935668379728,42.15746004121079],[-73.898441179352,42.150712692569094],[-73.8996597646968,42.147161456441886],[-73.90246251098985,42.13988142238111],[-73.91062703280002,42.127274534129526],[-73.91854783754123,42.12905015219313],[-73.94694087607509,42.14520827657192],[-73.9572988515059,42.151067816181815],[-73.98374215348808,42.16616056972244],[-73.98934764607417,42.169267901333754],[-73.98995693874656,42.16971180584965],[-73.99629358253954,42.17326304197686],[-74.00250836779801,42.17699183991043],[-74.00360509460833,42.16340836172386],[-74.01944670409075,42.162254209982514],[-74.02407732840099,42.16216542907934],[-74.02578334788372,42.16252055269206],[-74.042356108573,42.17042205307509],[-74.06392506917598,42.12141499451963],[-74.07477047874471,42.09655634162918],[-74.082203849348,42.09717780795144],[-74.0895153614168,42.09771049337052],[-74.09134323943401,42.09788805517688],[-74.12668221443325,42.10064026317547],[-74.1716480136564,42.103925156593135],[-74.22441275908628,42.10792029723624],[-74.27157201193008,42.11164909516981],[-74.28071140201608,42.11235934239525],[-74.28643875313665,42.112803246911156],[-74.30715470399826,42.114312522265216],[-74.3479773130491,42.12958283761221],[-74.36978999072105,42.138283366123865],[-74.41365906313388,42.154796614115384],[-74.41755853623724,42.156305889469444],[-74.43242527744381,42.16189908636979],[-74.43949307244365,42.1645625134652],[-74.44010236511606,42.16482885617474],[-74.44132095046086,42.16527276069064],[-74.4496073308055,42.16846887320513],[-74.45167892589167,42.169267901333754],[-74.45557839899503,42.17068839578464],[-74.49956932994235,42.186935301066605],[-74.53734547563118,42.201406588284975],[-74.48543373994266,42.27180984450686],[-74.48116869123585,42.27758060321358],[-74.4797063888221,42.279533783083544],[-74.47873152054625,42.28086549663124],[-74.46971398899473,42.29302848036693],[-74.44253953580566,42.32978377428353],[-74.4422958187367,42.32996133608989],[-74.42816022873701,42.34904923027362],[-74.4435144040815,42.3549975507867],[-74.43815262856438,42.35659560704394],[-74.37905123934154,42.37390788316408],[-74.37832008813464,42.372487388713196],[-74.37612663451401,42.37062298974641],[-74.37454247356577,42.37009030432733],[-74.37173972727273,42.37017908523051],[-74.36296591279016,42.36724931542556],[-74.3571167031351,42.36467466923334],[-74.34602757649742,42.35570779801214],[-74.34090951804926,42.35846000601072],[-74.3370100449459,42.35828244420436],[-74.33274499623909,42.357128292463024],[-74.33055154261845,42.357128292463024],[-74.32482419149788,42.35979171955843],[-74.32092471839452,42.360679528590225],[-74.31751267942907,42.35996928136479],[-74.31263833804988,42.357128292463024],[-74.30849514787755,42.35979171955843],[-74.30008690899842,42.36245514665383],[-74.29301911399858,42.361212214009306],[-74.28400158244705,42.36174489942839],[-74.27669007037824,42.36334295568563],[-74.27486219236104,42.36414198381426],[-74.2702315680508,42.367515658135105],[-74.26791625589567,42.371777141487755],[-74.26584466080952,42.37408544497043],[-74.2591424414131,42.37914595645171],[-74.25499925124079,42.37985620367715],[-74.24707844649959,42.37914595645171],[-74.24464127580998,42.377192776581744],[-74.25426810003391,42.407999749985265],[-74.25426810003391,42.408177311791626],[-74.17518191115632,42.41696662120646],[-74.15775614072567,42.41891980107643],[-74.12668221443325,42.42291494171954],[-74.11729910727827,42.42362518894498],[-74.09061208822713,42.42682130145947],[-74.0840317273652,42.42762032958809],[-74.0289516697802,42.43445645913296],[-74.0184718358149,42.43569939177748],[-74.0172532504701,42.43578817268067],[-73.99568428986713,42.43827403796971],[-73.99202853383272,42.43862916158243],[-73.96375735383334,42.44164771229055],[-73.9480376028854,42.4432457685478],[-73.93999493960972,42.44404479667642],[-73.92963696417891,42.44537651022412],[-73.90380295486914,42.44892774635133],[-73.89271382823145,42.450525802608574],[-73.86566123357686,42.45434338144533],[-73.85408467280125,42.456118999508924],[-73.85274422892198,42.456296561315284],[-73.81192161987114,42.46188975821564],[-73.80924073211257,42.46215610092518],[-73.80875329797466,42.46215610092518],[-73.80777842969881,42.46224488182836],[-73.78803734711303,42.46393171898878],[-73.78377229840623,42.464198061698326]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-75.86401934051604,42.41572368856194],[-75.8618258868954,42.393706024573255],[-75.85926685767132,42.38092157451531],[-75.85890128206788,42.37879083283899],[-75.855123667499,42.36023562407433],[-75.85207720413699,42.3451428705337],[-75.85073676025772,42.33102670692805],[-75.85061490172323,42.32951743157398],[-75.85037118465426,42.32774181351038],[-75.84829958956811,42.3061680540376],[-75.8452531262061,42.27846841224538],[-75.84379082379235,42.25973564167436],[-75.83696674586146,42.24517557355281],[-75.83635745318907,42.244110202714644],[-75.83379842396498,42.24517557355281],[-75.82161257051696,42.2479277815514],[-75.81978469249977,42.24899315238956],[-75.81941911689633,42.24899315238956],[-75.78005881025925,42.249259495099096],[-75.77871836637998,42.249259495099096],[-75.77810907370757,42.249259495099096],[-75.77213800551804,42.249259495099096],[-75.74959417663922,42.24917071419592],[-75.74715700594963,42.24917071419592],[-75.73765204026017,42.249259495099096],[-75.72254158198464,42.24934827600228],[-75.7221760063812,42.247750219745036],[-75.69743872388175,42.2479277815514],[-75.68829933379574,42.2479277815514],[-75.68318127534758,42.2479277815514],[-75.6480860174173,42.248549247873655],[-75.63919034440026,42.24863802877684],[-75.63797175905546,42.240736528393796],[-75.63760618345202,42.23638626413797],[-75.63748432491754,42.23301258981712],[-75.6371187493141,42.21197151576342],[-75.63736246638305,42.204158796283565],[-75.6371187493141,42.20114024557544],[-75.6371187493141,42.19732266673869],[-75.6371187493141,42.19714510493233],[-75.6371187493141,42.19705632402915],[-75.6371187493141,42.195635829578265],[-75.60117048164247,42.195458267771905],[-75.60056118897006,42.195458267771905],[-75.60007375483214,42.195458267771905],[-75.59653985733222,42.195458267771905],[-75.57960152103949,42.19536948686873],[-75.57801736009125,42.19536948686873],[-75.53280784379913,42.195280705965544],[-75.44202323561146,42.19519192506237],[-75.43580845035297,42.19492558235282],[-75.42727835293935,42.19501436325601],[-75.41838267992232,42.19501436325601],[-75.41899197259471,42.17379572739594],[-75.41923568966368,42.16802496868923],[-75.41972312380159,42.15044634985955],[-75.42094170914639,42.1148452076843],[-75.42106356768087,42.113957398652495],[-75.42191657742224,42.08448213879667],[-75.42203843595672,42.07782357105816],[-75.42216029449119,42.07027719428785],[-75.42240401156016,42.06024495222849],[-75.42240401156016,42.059534705003045],[-75.42240401156016,42.05846933416488],[-75.42240401156016,42.05758152513308],[-75.42264772862912,42.05598346887584],[-75.42264772862912,42.055628345263116],[-75.42301330423255,42.05349760358679],[-75.42057613354295,42.04532976049421],[-75.42179471888775,42.04160096256064],[-75.41899197259471,42.0382272882398],[-75.4153362165603,42.03627410836984],[-75.40997444104319,42.02979310243768],[-75.40424708992262,42.016475966960655],[-75.40278478750886,42.01470034889705],[-75.4025410704399,42.01363497805889],[-75.4031503631123,42.01212570270482],[-75.40229735337094,42.010705208253945],[-75.39657000225037,42.006621286707656],[-75.39437654862974,42.00635494399811],[-75.39035521699189,42.006798848514016],[-75.38474972440581,42.00307005058045],[-75.37926609035421,42.002182241548645],[-75.37463546604396,42.003336393289985],[-75.3669583783717,42.00804178115854],[-75.36427749061315,42.008130562061716],[-75.3620840369925,42.00493444954723],[-75.36281518819939,42.00173833703274],[-75.36098731018218,42.00005149987232],[-75.35952500776843,41.999430033550055],[-75.40546567526742,41.999430033550055],[-75.4319089772496,41.99934125264688],[-75.4361740259564,41.99934125264688],[-75.47711849354172,41.999430033550055],[-75.48369885440364,41.999252471743695],[-75.55303636052282,41.999074909937335],[-75.5984895938839,41.99898612903416],[-75.5984895938839,41.99898612903416],[-75.6095787205216,41.99898612903416],[-75.61030987172848,41.99898612903416],[-75.73155911353618,41.997920758195995],[-75.74216080603594,41.99783197729282],[-75.7626330398286,41.99800953909918],[-75.83379842396498,41.99854222451826],[-75.87072155991245,41.9988085672278],[-75.9585815632726,41.99898612903416],[-75.98027238241006,41.999074909937335],[-75.9830751287031,41.999074909937335],[-76.00513152344399,41.99898612903416],[-76.063258044391,41.998897348130974],[-76.10578667292457,41.998897348130974],[-76.10578667292457,42.00981739922214],[-76.10627410706249,42.02775114166454],[-76.10627410706249,42.02890529340588],[-76.10627410706249,42.031568720501284],[-76.10481180464872,42.031923844114004],[-76.10603038999352,42.04417560875287],[-76.10639596559696,42.046572693138735],[-76.10688339973488,42.051988328232724],[-76.10858941921761,42.06708108177336],[-76.10895499482105,42.0745386776405],[-76.10895499482105,42.075160143962755],[-76.11078287283824,42.095757313500556],[-76.11127030697617,42.10081782498183],[-76.11139216551065,42.10117294859455],[-76.10858941921761,42.10126172949773],[-76.10944242895897,42.112448123298435],[-76.11114844844168,42.11289202781433],[-76.11382933620025,42.15035756895637],[-76.11395119473472,42.150890254375454],[-76.11407305326921,42.1533761196645],[-76.11577907275193,42.17770208713587],[-76.11602278982089,42.179832828812195],[-76.11614464835537,42.18400553126166],[-76.11626650688986,42.185603587518905],[-76.08702045861463,42.18684652016343],[-76.08738603421807,42.193593868805124],[-76.08482700499398,42.1936826497083],[-76.08519258059742,42.205490509831264],[-76.08653302447671,42.205490509831264],[-76.08665488301119,42.207887594217134],[-76.08665488301119,42.2129481056984],[-76.08251169283886,42.21312566750476],[-76.0828772684423,42.218452521695575],[-76.08141496602855,42.21854130259875],[-76.08104939042511,42.21854130259875],[-76.08104939042511,42.22937257278674],[-76.08446142939054,42.230526724528076],[-76.08470514645951,42.234255522461645],[-76.08653302447671,42.23487698878391],[-76.0871423171491,42.24419898361783],[-76.08897019516631,42.24419898361783],[-76.09055435611455,42.24419898361783],[-76.09091993171799,42.24961461871182],[-76.09640356576959,42.24952583780864],[-76.09664728283856,42.257427338191675],[-76.08068381482167,42.25804880451393],[-76.08117124895958,42.26470737225245],[-76.08275540990782,42.26470737225245],[-76.08348656111471,42.27180984450686],[-76.08726417568359,42.271721063603685],[-76.08775160982151,42.27873475495492],[-76.09189479999384,42.27864597405174],[-76.1006686144764,42.27846841224538],[-76.1012779071488,42.28725772166022],[-76.10663968266593,42.287346502563395],[-76.10651782413144,42.29356116578601],[-76.1024964924936,42.293649946689186],[-76.10103419007984,42.293649946689186],[-76.09871887792471,42.293649946689186],[-76.09908445352816,42.30341584603901],[-76.10164348275224,42.30332706513583],[-76.10164348275224,42.31042953739024],[-76.10627410706249,42.310340756487065],[-76.10639596559696,42.31877494228918],[-76.11236703378648,42.31859738048282],[-76.11236703378648,42.326498880865856],[-76.11638836542433,42.32658766176904],[-76.11675394102777,42.33724137015066],[-76.10932057042449,42.33733015105384],[-76.10980800456241,42.34496530872734],[-76.1104172972348,42.34656336498458],[-76.11139216551065,42.3473623931132],[-76.11200145818304,42.357305854269384],[-76.11456048740713,42.357305854269384],[-76.11456048740713,42.365118573749236],[-76.11456048740713,42.36698297271602],[-76.11468234594162,42.3670717536192],[-76.12248129214834,42.367160534522384],[-76.12284686775178,42.38074401270895],[-76.12016597999322,42.38074401270895],[-76.12296872628626,42.39193040650965],[-76.12443102870002,42.392019187412835],[-76.1245528872345,42.402051429472195],[-76.12967094568266,42.402051429472195],[-76.13015837982059,42.41030805346795],[-76.11821624344154,42.41066317708067],[-76.07032583939085,42.41163976701566],[-76.05765255180492,42.411906109725194],[-76.02219171827122,42.412793918757],[-76.02194800120225,42.40897633992025],[-76.01768295249545,42.40906512082343],[-76.01451463059897,42.40915390172661],[-75.98660902620303,42.40995292985523],[-75.96248103637596,42.410929519790216],[-75.94834544637627,42.41155098611247],[-75.94724871956595,42.41163976701566],[-75.94176508551435,42.41181732882202],[-75.93396613930761,42.41217245243474],[-75.91276275430808,42.41306026146654],[-75.9126408957736,42.41306026146654],[-75.8986271643084,42.4136817277888],[-75.89448397413607,42.413948070498336],[-75.89302167172231,42.41403685140152],[-75.87864236465366,42.41483587953014],[-75.86401934051604,42.41572368856194]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.13015837982059,42.41030805346795],[-76.12967094568266,42.402051429472195],[-76.1245528872345,42.402051429472195],[-76.12443102870002,42.392019187412835],[-76.12296872628626,42.39193040650965],[-76.12016597999322,42.38074401270895],[-76.12284686775178,42.38074401270895],[-76.12248129214834,42.367160534522384],[-76.11468234594162,42.3670717536192],[-76.11456048740713,42.36698297271602],[-76.11456048740713,42.365118573749236],[-76.11456048740713,42.357305854269384],[-76.11200145818304,42.357305854269384],[-76.11139216551065,42.3473623931132],[-76.1104172972348,42.34656336498458],[-76.10980800456241,42.34496530872734],[-76.10932057042449,42.33733015105384],[-76.11675394102777,42.33724137015066],[-76.11638836542433,42.32658766176904],[-76.11236703378648,42.326498880865856],[-76.11236703378648,42.31859738048282],[-76.10639596559696,42.31877494228918],[-76.10627410706249,42.310340756487065],[-76.10164348275224,42.31042953739024],[-76.10164348275224,42.30332706513583],[-76.09908445352816,42.30341584603901],[-76.09871887792471,42.293649946689186],[-76.10103419007984,42.293649946689186],[-76.1024964924936,42.293649946689186],[-76.10651782413144,42.29356116578601],[-76.10663968266593,42.287346502563395],[-76.1012779071488,42.28725772166022],[-76.1006686144764,42.27846841224538],[-76.09189479999384,42.27864597405174],[-76.08775160982151,42.27873475495492],[-76.08726417568359,42.271721063603685],[-76.08348656111471,42.27180984450686],[-76.08275540990782,42.26470737225245],[-76.08117124895958,42.26470737225245],[-76.08068381482167,42.25804880451393],[-76.09664728283856,42.257427338191675],[-76.09640356576959,42.24952583780864],[-76.09091993171799,42.24961461871182],[-76.09055435611455,42.24419898361783],[-76.08897019516631,42.24419898361783],[-76.0871423171491,42.24419898361783],[-76.08653302447671,42.23487698878391],[-76.08470514645951,42.234255522461645],[-76.08446142939054,42.230526724528076],[-76.08104939042511,42.22937257278674],[-76.08104939042511,42.21854130259875],[-76.08141496602855,42.21854130259875],[-76.0828772684423,42.218452521695575],[-76.08251169283886,42.21312566750476],[-76.08665488301119,42.2129481056984],[-76.08665488301119,42.207887594217134],[-76.08653302447671,42.205490509831264],[-76.08519258059742,42.205490509831264],[-76.08482700499398,42.1936826497083],[-76.08738603421807,42.193593868805124],[-76.08702045861463,42.18684652016343],[-76.11626650688986,42.185603587518905],[-76.11614464835537,42.18400553126166],[-76.11602278982089,42.179832828812195],[-76.11577907275193,42.17770208713587],[-76.11407305326921,42.1533761196645],[-76.11395119473472,42.150890254375454],[-76.11382933620025,42.15035756895637],[-76.11114844844168,42.11289202781433],[-76.10944242895897,42.112448123298435],[-76.10858941921761,42.10126172949773],[-76.11139216551065,42.10117294859455],[-76.11127030697617,42.10081782498183],[-76.11078287283824,42.095757313500556],[-76.10895499482105,42.075160143962755],[-76.10895499482105,42.0745386776405],[-76.10858941921761,42.06708108177336],[-76.10688339973488,42.051988328232724],[-76.10639596559696,42.046572693138735],[-76.10603038999352,42.04417560875287],[-76.10481180464872,42.031923844114004],[-76.10627410706249,42.031568720501284],[-76.10627410706249,42.02890529340588],[-76.10627410706249,42.02775114166454],[-76.10578667292457,42.00981739922214],[-76.10578667292457,41.998897348130974],[-76.12369987749314,41.99898612903416],[-76.1312551066309,41.99898612903416],[-76.20497951999137,41.998719786324614],[-76.27577932852431,41.99854222451826],[-76.3437763907642,41.99836466271189],[-76.3498693174882,41.99845344361508],[-76.46210102774438,41.998897348130974],[-76.46648793498566,41.99898612903416],[-76.47306829584758,41.999074909937335],[-76.47416502265791,41.999074909937335],[-76.50475151481241,41.99951881445324],[-76.51194116834674,41.999607595356416],[-76.51839967067419,41.9996963762596],[-76.52437073886371,41.9996963762596],[-76.52948879731187,41.999785157162776],[-76.5354598655014,41.99987393806596],[-76.5415527922254,41.99996271896914],[-76.54886430429421,42.00005149987232],[-76.5581255529147,42.0001402807755],[-76.5587348455871,42.005911039482214],[-76.56153759188014,42.0091071519967],[-76.56068458213878,42.01079398915712],[-76.55605395782854,42.02082623121648],[-76.5544697968803,42.02419990553733],[-76.54849872869077,42.03680679378892],[-76.54752386041493,42.038759973658884],[-76.54167465075989,42.05127808100729],[-76.54143093369092,42.05172198552319],[-76.54715828481149,42.069034261643324],[-76.55057032377694,42.079599189121765],[-76.55507908955269,42.11315837052388],[-76.55617581636302,42.12665306780726],[-76.55946599679397,42.13126967477263],[-76.55434793834581,42.13144723657899],[-76.55666325050093,42.133045292836236],[-76.55849112851814,42.13526481541574],[-76.55861298705261,42.1363301862539],[-76.55678510903542,42.13899361334931],[-76.5569069675699,42.14023654599383],[-76.55922227972502,42.14787170366733],[-76.56190316748358,42.14982488353729],[-76.56336546989735,42.15177806340726],[-76.56336546989735,42.15390880508358],[-76.56251246015599,42.15595076585672],[-76.53655659231173,42.15541808043764],[-76.53619101670829,42.203626110864484],[-76.53582544110483,42.25005852322772],[-76.53838447032892,42.281753305663045],[-76.52912322170843,42.28166452475986],[-76.51876524627762,42.281575743856685],[-76.51486577317426,42.2814869629535],[-76.51413462196739,42.2814869629535],[-76.4931749540368,42.28113183934078],[-76.47392130558895,42.28113183934078],[-76.47453059826135,42.26373078231747],[-76.42237514550386,42.263020535092025],[-76.41616036024539,42.26293175418885],[-76.41530735050402,42.318331037773284],[-76.40897070671106,42.31841981867646],[-76.39459139964241,42.318508599579644],[-76.37448474145319,42.31815347596692],[-76.35084418576405,42.318331037773284],[-76.35084418576405,42.314602239839715],[-76.35072232722956,42.314069554420634],[-76.35060046869509,42.30847635752028],[-76.31416476688554,42.30829879571392],[-76.30210077197201,42.30829879571392],[-76.30112590369616,42.30829879571392],[-76.3002728939548,42.30829879571392],[-76.29917616714448,42.30829879571392],[-76.29893245007553,42.30829879571392],[-76.29186465507567,42.30829879571392],[-76.28820889904128,42.30821001481074],[-76.28833075757575,42.2967572783005],[-76.2721235724899,42.2967572783005],[-76.250067177749,42.29666849739731],[-76.24909230947316,42.29950948629908],[-76.24909230947316,42.301817789781765],[-76.24933602654212,42.304037312361274],[-76.25055461188693,42.306434396747136],[-76.2512857630938,42.30874270022982],[-76.24994531921452,42.31637785790332],[-76.25092018749037,42.318863723192365],[-76.25116390455932,42.32490082460861],[-76.25055461188693,42.326321319059495],[-76.24970160214556,42.32703156628494],[-76.24970160214556,42.3280969371231],[-76.247020714387,42.33067158331533],[-76.24726443145596,42.334311600345714],[-76.24555841197324,42.33608721840932],[-76.24555841197324,42.33830674098882],[-76.24433982662843,42.34247944343829],[-76.23958734378371,42.35020338201497],[-76.23775946576652,42.35126875285313],[-76.23873433404235,42.35703951155984],[-76.24190265593883,42.36334295568563],[-76.24677699731804,42.3657400400715],[-76.24872673386972,42.3661839445874],[-76.25396665085236,42.36911371439235],[-76.25542895326613,42.37071177064959],[-76.26493391895558,42.374440568583154],[-76.27833835774838,42.37816936651672],[-76.27931322602423,42.37985620367715],[-76.28053181136903,42.38030010819305],[-76.28540615274824,42.37950108006443],[-76.29271766481703,42.37985620367715],[-76.29503297697217,42.38012254638669],[-76.29881059154104,42.38172060264393],[-76.29954174274792,42.3845615915457],[-76.29759200619624,42.386425990512485],[-76.29625156231697,42.389622103026966],[-76.29820129886865,42.395925547152764],[-76.29308324042047,42.40657925553438],[-76.25335735817997,42.40755584546937],[-76.15769840861309,42.40977536804887],[-76.13015837982059,42.41030805346795]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-76.61929853722371,42.28281867650121],[-76.5795726549832,42.282552333791664],[-76.56178130894911,42.28201964837258],[-76.5489861628287,42.28184208656622],[-76.53838447032892,42.281753305663045],[-76.53582544110483,42.25005852322772],[-76.53619101670829,42.203626110864484],[-76.53655659231173,42.15541808043764],[-76.56251246015599,42.15595076585672],[-76.56336546989735,42.15390880508358],[-76.56336546989735,42.15177806340726],[-76.56190316748358,42.14982488353729],[-76.55922227972502,42.14787170366733],[-76.5569069675699,42.14023654599383],[-76.55678510903542,42.13899361334931],[-76.55861298705261,42.1363301862539],[-76.55849112851814,42.13526481541574],[-76.55666325050093,42.133045292836236],[-76.55434793834581,42.13144723657899],[-76.55946599679397,42.13126967477263],[-76.55617581636302,42.12665306780726],[-76.55507908955269,42.11315837052388],[-76.55057032377694,42.079599189121765],[-76.54715828481149,42.069034261643324],[-76.54143093369092,42.05172198552319],[-76.54167465075989,42.05127808100729],[-76.54752386041493,42.038759973658884],[-76.54849872869077,42.03680679378892],[-76.5544697968803,42.02419990553733],[-76.55605395782854,42.02082623121648],[-76.56068458213878,42.01079398915712],[-76.56153759188014,42.0091071519967],[-76.5587348455871,42.005911039482214],[-76.5581255529147,42.0001402807755],[-76.70167490653226,42.00129443251684],[-76.72848378411788,42.00156077522638],[-76.72994608653164,42.00156077522638],[-76.730799096273,42.00156077522638],[-76.74968716911742,42.001649556129564],[-76.78782889040968,42.001649556129564],[-76.81585635334011,42.001649556129564],[-76.83511000178797,42.00173833703274],[-76.90164476161411,42.00173833703274],[-76.92077655152748,42.00173833703274],[-76.9218732783378,42.001649556129564],[-76.93710559514781,42.001649556129564],[-76.94258922919941,42.00156077522638],[-76.96574235075063,42.00129443251684],[-76.96562049221616,42.01141545547939],[-76.9659860678196,42.02198038295783],[-76.9659860678196,42.02198038295783],[-76.9659860678196,42.022424287473726],[-76.9659860678196,42.024821371859595],[-76.9659860678196,42.02757357985818],[-76.9659860678196,42.0288165125027],[-76.9659860678196,42.02899407430906],[-76.9659860678196,42.039115097271605],[-76.9659860678196,42.040979496238386],[-76.96586420928512,42.04302145701153],[-76.96586420928512,42.056960058810816],[-76.96586420928512,42.061043980357105],[-76.96586420928512,42.066104491838374],[-76.96586420928512,42.0700108515783],[-76.96586420928512,42.07187525054509],[-76.96574235075063,42.07267427867371],[-76.96574235075063,42.07613673389774],[-76.96574235075063,42.07675820022],[-76.96574235075063,42.07835625647724],[-76.96574235075063,42.087411908601624],[-76.96574235075063,42.09229485827653],[-76.96574235075063,42.118396443811505],[-76.96574235075063,42.12079352819737],[-76.96586420928512,42.123456955292774],[-76.96586420928512,42.12390085980868],[-76.9659860678196,42.127096972323166],[-76.96586420928512,42.1341106636744],[-76.96586420928512,42.137928242511144],[-76.96574235075063,42.13943751786521],[-76.96574235075063,42.14245606857334],[-76.96574235075063,42.14343265850832],[-76.96574235075063,42.1435214394115],[-76.96574235075063,42.14458681024966],[-76.9659860678196,42.14760536095778],[-76.96586420928512,42.147782922764144],[-76.96562049221616,42.166071788819266],[-76.96549863368168,42.17512744094364],[-76.96537677514719,42.19900950389911],[-76.96537677514719,42.208065156023494],[-76.96537677514719,42.228662325561295],[-76.96586420928512,42.25005852322772],[-76.96562049221616,42.25813758541712],[-76.96562049221616,42.25849270902984],[-76.96549863368168,42.262043945157046],[-76.96501119954375,42.27846841224538],[-76.9647674824748,42.28743528346658],[-76.908468839545,42.29018749146516],[-76.90115732747618,42.29054261507788],[-76.90054803480379,42.290631395981066],[-76.89323652273498,42.29098651959379],[-76.85485108437375,42.29311726127011],[-76.84814886497735,42.29347238488283],[-76.79148464644409,42.29427141301145],[-76.78795074894417,42.29436019391463],[-76.77783649058232,42.29418263210827],[-76.77101241265143,42.29418263210827],[-76.7650413444619,42.29427141301145],[-76.74505654480717,42.29400507030191],[-76.73396741816948,42.29373872759237],[-76.73274883282468,42.25405366387083],[-76.7326269742902,42.24801656245457],[-76.73055537920405,42.24810534335776],[-76.68583329704984,42.248371686067294],[-76.68571143851537,42.237717977685676],[-76.68510214584296,42.23762919678249],[-76.64805715136102,42.2380731012984],[-76.64220794170596,42.23372283704256],[-76.61954225429267,42.24863802877684],[-76.61917667868923,42.25085755135634],[-76.61929853722371,42.25529659651535],[-76.61942039575818,42.26213272606022],[-76.61942039575818,42.262487849672944],[-76.61942039575818,42.26257663057613],[-76.61942039575818,42.262842973285665],[-76.61966411282715,42.27331911986093],[-76.61954225429267,42.27589376605315],[-76.61954225429267,42.27651523237542],[-76.61929853722371,42.28281867650121]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.91062703280002,42.127274534129526],[-73.91537951564474,42.12132621361645],[-73.92195987650666,42.10863054446168],[-73.9247626227997,42.095402189887835],[-73.9267123593514,42.09034167840657],[-73.929149530041,42.08164114989491],[-73.92963696417891,42.07880016099314],[-73.92988068124788,42.0772021047359],[-73.9297588227134,42.075337705769115],[-73.92707793495484,42.07338452589915],[-73.92622492521348,42.07196403144827],[-73.92732165202379,42.066814739063815],[-73.92829652029964,42.066814739063815],[-73.92841837883411,42.064595216484314],[-73.93231785193748,42.06157666577619],[-73.93292714460988,42.059712266809406],[-73.93280528607539,42.056249811585374],[-73.93365829581676,42.049857586556406],[-73.93414572995468,42.0395590017875],[-73.93670475917877,42.034676052112594],[-73.93731405185116,42.02979310243768],[-73.9370703347822,42.026863332632736],[-73.9346331640926,42.02331209650553],[-73.93329272021332,42.0185179277338],[-73.93378015435124,42.01416766347797],[-73.93682661771324,42.006621286707656],[-73.93999493960972,41.999430033550055],[-73.93975122254076,41.99561245471331],[-73.94462556391997,41.9813187293013],[-73.94608786633373,41.97696846504547],[-73.95010919797157,41.96578207124477],[-73.95376495400598,41.95273127847728],[-73.95461796374734,41.94811467151191],[-73.95559283202317,41.93621803048577],[-73.9579081441783,41.922013085976936],[-73.96107646607479,41.91828428804337],[-73.96351363676439,41.91526573733525],[-73.96436664650574,41.91313499565892],[-73.96424478797127,41.910116444950795],[-73.96180761728166,41.90052810740733],[-73.95327751986805,41.890229522638435],[-73.9456004321958,41.88215046044903],[-73.94194467616141,41.876290920839146],[-73.94036051521317,41.87273968471194],[-73.93926378840284,41.866880145102044],[-73.94036051521317,41.86226353813667],[-73.94194467616141,41.859244987428546],[-73.94657530047165,41.854273256850455],[-73.9480376028854,41.85169861065823],[-73.94889061262677,41.848680059950105],[-73.94937804676469,41.843885891178374],[-73.94925618823021,41.833676087312654],[-73.94864689555781,41.82834923312184],[-73.94974362236813,41.82124676086743],[-73.94828131995438,41.81574234487026],[-73.94937804676469,41.80961646255083],[-73.94962176383365,41.80198130487733],[-73.95193707598878,41.7904397874639],[-73.95242451012669,41.78795392217486],[-73.95157150038533,41.77064164605473],[-73.95035291504053,41.76842212347522],[-73.94657530047165,41.76371673560667],[-73.94243211029932,41.75856744322222],[-73.94096980788557,41.75572645432045],[-73.94170095909244,41.73903564452258],[-73.94109166642005,41.73601709381445],[-73.94231025176485,41.72580728994873],[-73.94450370538549,41.71435455343849],[-73.94499113952341,41.71053697460174],[-73.94572229073029,41.70565402492683],[-73.94608786633373,41.70281303602506],[-73.94657530047165,41.69899545718832],[-73.94572229073029,41.69562178286747],[-73.94352883710965,41.69029492867666],[-73.94243211029932,41.68408026545404],[-73.94328512004068,41.679374877585495],[-73.94523485659236,41.67591242236147],[-73.94706273460957,41.668809950107054],[-73.94742831021301,41.661885039659],[-73.94694087607509,41.656380623661825],[-73.94815946141989,41.652474263921896],[-73.94901247116125,41.64475032534522],[-73.94876875409228,41.642175679153],[-73.95144964185086,41.62770439193463],[-73.95254636866117,41.62521852664558],[-73.95205893452325,41.614032132844876],[-73.95230265159222,41.60914918316997],[-73.95254636866117,41.59529936227386],[-73.95327751986805,41.58997250808305],[-73.98264542667776,41.587131519181284],[-73.98617932417768,41.58686517647174],[-73.99495313866025,41.58606614834312],[-73.99507499719473,41.58606614834312],[-74.00421438728074,41.58517833931132],[-74.02493033814235,41.58313637853817],[-74.02675821615955,41.58295881673182],[-74.03711619159037,41.582071007700016],[-74.03857849400413,41.581893445893655],[-74.04138124029717,41.58162710318411],[-74.04942390357286,41.58100563686185],[-74.05332337667622,41.58065051324913],[-74.05368895227966,41.58065051324913],[-74.05381081081414,41.5826036931191],[-74.05381081081414,41.58429053027952],[-74.0546638205555,41.587131519181284],[-74.05576054736582,41.588640794535344],[-74.05576054736582,41.588640794535344],[-74.06307205943463,41.598850598401064],[-74.06794640081382,41.605864289752304],[-74.07440490314127,41.603644767172796],[-74.08001039572736,41.60186914910919],[-74.08061968839976,41.601602806399654],[-74.08451916150312,41.60044865465831],[-74.08512845417553,41.60027109285195],[-74.08525031271,41.60018231194877],[-74.09000279555472,41.59858425569153],[-74.09073394676162,41.599738407432866],[-74.09109952236506,41.60035987375513],[-74.09207439064089,41.601780368206015],[-74.0931711174512,41.60337842446326],[-74.09451156133049,41.60550916613958],[-74.09865475150282,41.60728478420319],[-74.12656035589876,41.613854571038516],[-74.13448116063996,41.615718970005304],[-74.13204398995036,41.60550916613958],[-74.13045982900212,41.59893937930425],[-74.12777894124356,41.58828567092262],[-74.12729150710564,41.587131519181284],[-74.12643849736428,41.58251491221591],[-74.18432130124232,41.59387886782298],[-74.18505245244921,41.59405642962934],[-74.18541802805265,41.59396764872616],[-74.18748962313882,41.59077153621167],[-74.18773334020777,41.59086031711485],[-74.23367400770677,41.60115890188375],[-74.24427570020654,41.603644767172796],[-74.24512870994789,41.603822328979156],[-74.25158721227534,41.60533160433322],[-74.25049048546502,41.62273266135654],[-74.25024676839607,41.6251297457424],[-74.25024676839607,41.62930244819187],[-74.26340749011992,41.632587341609536],[-74.26426049986128,41.6327649034159],[-74.26755068029223,41.62903610548233],[-74.269012982706,41.62868098186961],[-74.27059714365424,41.62912488638551],[-74.27230316313695,41.628148296450526],[-74.27425289968865,41.626905363806],[-74.27595891917136,41.625751212064664],[-74.27961467520576,41.62566243116148],[-74.28595131899873,41.6215785096152],[-74.28851034822281,41.62131216690565],[-74.29362840667098,41.61882630161661],[-74.29570000175714,41.61927020613251],[-74.30045248460186,41.616251655424385],[-74.30410824063627,41.61563018910212],[-74.30459567477419,41.614032132844876],[-74.30410824063627,41.612345295684456],[-74.30471753330866,41.611457486652654],[-74.30532682598107,41.61056967762085],[-74.30593611865346,41.60906040226679],[-74.30691098692931,41.60879405955725],[-74.30995745029131,41.61136870574947],[-74.31263833804988,41.61083602033039],[-74.31422249899812,41.609593087685866],[-74.31544108434292,41.606219413365025],[-74.3192186989118,41.603467205366435],[-74.32226516227381,41.60275695814099],[-74.32336188908413,41.603289643560075],[-74.32616463537717,41.602313053625096],[-74.32640835244612,41.60204671091555],[-74.32969853287709,41.59911694111061],[-74.32994224994604,41.59814035117562],[-74.33177012796325,41.5968974185311],[-74.34042208391133,41.59441155324206],[-74.34212810339406,41.596364733112026],[-74.34383412287679,41.59743010395018],[-74.3491958983939,41.59840669388517],[-74.35212050322143,41.59707498033746],[-74.35224236175591,41.593079839694354],[-74.35382652270415,41.59201446885619],[-74.36381892253152,41.59183690704983],[-74.36747467856591,41.59094909801803],[-74.36796211270384,41.59165934524347],[-74.3657686590832,41.59254715427527],[-74.36430635666943,41.593790086919796],[-74.36467193227287,41.59521058137068],[-74.3651593664108,41.596009609499305],[-74.37076485899688,41.5964535140152],[-74.3736894638244,41.59583204769294],[-74.37454247356577,41.59680863762792],[-74.3755173418416,41.59796278936926],[-74.37807637106569,41.6054203852364],[-74.37905123934154,41.61012577310495],[-74.38514416606553,41.617228245359364],[-74.38611903434138,41.61962532974523],[-74.38672832701377,41.6251297457424],[-74.38709390261721,41.62841463916007],[-74.38879992209993,41.62974635270777],[-74.39148080985849,41.63347515064134],[-74.39148080985849,41.63711516767172],[-74.39196824399642,41.63880200483215],[-74.3926993952033,41.640044937476674],[-74.3951365658929,41.64492788715158],[-74.42109243373716,41.65833380353179],[-74.42535748244397,41.660642107014475],[-74.47081071580504,41.68603344532401],[-74.47239487675328,41.68692125435581],[-74.49103923252875,41.69721983912471],[-74.52040713933845,41.713733087116225],[-74.53880777804494,41.72438679549785],[-74.56196089959616,41.737703930974874],[-74.57512162132001,41.74525030774519],[-74.56330134347544,41.757324510577696],[-74.54343840235518,41.77898705095366],[-74.5329585683899,41.789285635722564],[-74.5255251977866,41.79683201249288],[-74.49079551545978,41.83136778382997],[-74.49018622278739,41.83198925015223],[-74.48787091063225,41.834386334538095],[-74.48360586192545,41.839269284213],[-74.48311842778753,41.839801969632084],[-74.45362866244335,41.875580673613705],[-74.57682764080273,41.929825805456794],[-74.59205995761275,41.936661935001666],[-74.60168678183668,41.940923418354316],[-74.62459618631894,41.95113322222004],[-74.65506081993895,41.96365132956844],[-74.67407075131786,41.97164161085466],[-74.72037699442029,41.99081828594158],[-74.74535799398872,42.00129443251684],[-74.78069696898794,42.01638718605747],[-74.67029313674897,42.06752498628926],[-74.66968384407657,42.0677913289988],[-74.565982231234,42.1157330167161],[-74.55355266071703,42.12150377542281],[-74.54831274373439,42.1273633150327],[-74.53100883183822,42.146451209216444],[-74.50395623718363,42.144941933862384],[-74.45167892589167,42.169267901333754],[-74.4496073308055,42.16846887320513],[-74.44132095046086,42.16527276069064],[-74.44010236511606,42.16482885617474],[-74.43949307244365,42.1645625134652],[-74.43242527744381,42.16189908636979],[-74.41755853623724,42.156305889469444],[-74.41365906313388,42.154796614115384],[-74.36978999072105,42.138283366123865],[-74.3479773130491,42.12958283761221],[-74.30715470399826,42.114312522265216],[-74.28643875313665,42.112803246911156],[-74.28071140201608,42.11235934239525],[-74.27157201193008,42.11164909516981],[-74.22441275908628,42.10792029723624],[-74.1716480136564,42.103925156593135],[-74.12668221443325,42.10064026317547],[-74.09134323943401,42.09788805517688],[-74.0895153614168,42.09771049337052],[-74.082203849348,42.09717780795144],[-74.07477047874471,42.09655634162918],[-74.06392506917598,42.12141499451963],[-74.042356108573,42.17042205307509],[-74.02578334788372,42.16252055269206],[-74.02407732840099,42.16216542907934],[-74.01944670409075,42.162254209982514],[-74.00360509460833,42.16340836172386],[-74.00250836779801,42.17699183991043],[-73.99629358253954,42.17326304197686],[-73.98995693874656,42.16971180584965],[-73.98934764607417,42.169267901333754],[-73.98374215348808,42.16616056972244],[-73.9572988515059,42.151067816181815],[-73.94694087607509,42.14520827657192],[-73.91854783754123,42.12905015219313],[-73.91062703280002,42.127274534129526]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.92963696417891,42.07880016099314],[-73.92135058383427,42.07729088563908],[-73.91708553512747,42.07649185751046],[-73.9156232327137,42.080930902669465],[-73.90867729624834,42.078445037380426],[-73.90782428650698,42.079599189121765],[-73.89539471599001,42.075160143962755],[-73.87126672616294,42.06637083454792],[-73.87029185788711,42.066104491838374],[-73.86651424331822,42.0646839973875],[-73.86578309211134,42.06441765467795],[-73.86249291168038,42.06317472203343],[-73.86017759952526,42.06228691300163],[-73.85859343857702,42.06166544667937],[-73.85201307771509,42.0592683622935],[-73.84506714124973,42.05669371610128],[-73.8213047270261,42.04781562578326],[-73.81850198073306,42.046750254945096],[-73.8170396783193,42.046217569526014],[-73.79084009340608,42.03680679378892],[-73.78901221538888,42.03609654656348],[-73.75562297694132,42.02348965831189],[-73.736247469959,42.01567693883203],[-73.7338102992694,42.01470034889705],[-73.72369604090754,42.01061642735076],[-73.72308674823515,42.010350084641225],[-73.71090089478713,42.00546713496631],[-73.70785443142513,42.00511201135359],[-73.70761071435618,42.00502323045041],[-73.66788483211566,41.99934125264688],[-73.65728313961588,41.997565634583275],[-73.6419289642714,41.99499098839105],[-73.55601869746293,41.981762633817205],[-73.55090063901476,41.98105238659176],[-73.54687930737691,41.98051970117268],[-73.54127381479083,41.97989823485042],[-73.53968965384259,41.979720673044056],[-73.53420601979099,41.97892164491544],[-73.52701636625666,41.97794505498045],[-73.52579778091186,42.00005149987232],[-73.5255540638429,42.00378029780589],[-73.52531034677394,42.00688762941719],[-73.5243354784981,42.01825158502426],[-73.52360432729122,42.026330647213655],[-73.52141087367058,42.04994636745958],[-73.51300263479145,42.049857586556406],[-73.50971245436048,42.04976880565322],[-73.49691730824007,42.049680024750046],[-73.48729048401614,42.049680024750046],[-73.48960579617128,42.00005149987232],[-73.49301783513671,41.95850203718399],[-73.49655173263663,41.922368209589656],[-73.49825775211936,41.892537826121114],[-73.49825775211936,41.892537826121114],[-73.49947633746416,41.881884117739496],[-73.49972005453311,41.878954347934545],[-73.50203536668825,41.858712302009465],[-73.50203536668825,41.858357178396744],[-73.50495997151576,41.82426531157556],[-73.50495997151576,41.82373262615647],[-73.51093103970528,41.75874500502858],[-73.51190590798113,41.74090004348936],[-73.51678024936034,41.687542720678074],[-73.51799883470514,41.670851910880195],[-73.51982671272233,41.6443952017325],[-73.52007042979129,41.64119908921801],[-73.52104529806714,41.61980289155159],[-73.52141087367058,41.616429217230746],[-73.53006282961866,41.52720440953466],[-73.54858532685964,41.52676050501876],[-73.58014668728998,41.526405381406036],[-73.5886767847036,41.52542879147106],[-73.60464025272049,41.523830735213814],[-73.60524954539288,41.523830735213814],[-73.60598069659977,41.52374195431063],[-73.62206602315113,41.521788774440665],[-73.62279717435803,41.521788774440665],[-73.64400055935756,41.51885900463572],[-73.64765631539196,41.51832631921664],[-73.67324660763278,41.514686302186256],[-73.68372644159807,41.51335458863855],[-73.71504408495946,41.510069695220885],[-73.74246225521748,41.50758382993184],[-73.77256131323406,41.50421015561099],[-73.79510514211289,41.5023457566442],[-73.81801454659514,41.5001262340647],[-73.82057357581922,41.499859891355165],[-73.83836492185333,41.49808427329156],[-73.86005574099077,41.495775969808875],[-73.87455690659391,41.49506572258343],[-73.90270622805882,41.49231351458484],[-73.9077024279725,41.49089302013396],[-73.93378015435124,41.48831837394174],[-73.93853263719596,41.48343542426683],[-73.97801480236751,41.44259620880394],[-73.98142684133296,41.43886741087037],[-73.98654489978112,41.44490451228663],[-73.99483128012577,41.45023136647744],[-74.00007119710841,41.45653481060323],[-73.99994933857394,41.45964214221454],[-73.9989744702981,41.462216788406764],[-73.99763402641881,41.47509001936789],[-73.99824331909122,41.48059443536506],[-73.99763402641881,41.487253003103575],[-73.99507499719473,41.49737402606612],[-73.99702473374641,41.501724290321945],[-73.99787774348778,41.50571943096505],[-73.9971465922809,41.51335458863855],[-73.99751216788434,41.51646192024985],[-73.9971465922809,41.51948047095798],[-73.99458756305681,41.52711562863148],[-73.99190667529825,41.53208735920957],[-73.98788534366041,41.54282984849437],[-73.97789294383304,41.5552591749396],[-73.97204373417799,41.560941152743126],[-73.96473222210919,41.56529141699896],[-73.96192947581615,41.56813240590073],[-73.95803000271277,41.57399194551061],[-73.95473982228182,41.58180466499047],[-73.95327751986805,41.58997250808305],[-73.95254636866117,41.59529936227386],[-73.95230265159222,41.60914918316997],[-73.95205893452325,41.614032132844876],[-73.95254636866117,41.62521852664558],[-73.95144964185086,41.62770439193463],[-73.94876875409228,41.642175679153],[-73.94901247116125,41.64475032534522],[-73.94815946141989,41.652474263921896],[-73.94694087607509,41.656380623661825],[-73.94742831021301,41.661885039659],[-73.94706273460957,41.668809950107054],[-73.94523485659236,41.67591242236147],[-73.94328512004068,41.679374877585495],[-73.94243211029932,41.68408026545404],[-73.94352883710965,41.69029492867666],[-73.94572229073029,41.69562178286747],[-73.94657530047165,41.69899545718832],[-73.94608786633373,41.70281303602506],[-73.94572229073029,41.70565402492683],[-73.94499113952341,41.71053697460174],[-73.94450370538549,41.71435455343849],[-73.94231025176485,41.72580728994873],[-73.94109166642005,41.73601709381445],[-73.94170095909244,41.73903564452258],[-73.94096980788557,41.75572645432045],[-73.94243211029932,41.75856744322222],[-73.94657530047165,41.76371673560667],[-73.95035291504053,41.76842212347522],[-73.95157150038533,41.77064164605473],[-73.95242451012669,41.78795392217486],[-73.95193707598878,41.7904397874639],[-73.94962176383365,41.80198130487733],[-73.94937804676469,41.80961646255083],[-73.94828131995438,41.81574234487026],[-73.94974362236813,41.82124676086743],[-73.94864689555781,41.82834923312184],[-73.94925618823021,41.833676087312654],[-73.94937804676469,41.843885891178374],[-73.94889061262677,41.848680059950105],[-73.9480376028854,41.85169861065823],[-73.94657530047165,41.854273256850455],[-73.94194467616141,41.859244987428546],[-73.94036051521317,41.86226353813667],[-73.93926378840284,41.866880145102044],[-73.94036051521317,41.87273968471194],[-73.94194467616141,41.876290920839146],[-73.9456004321958,41.88215046044903],[-73.95327751986805,41.890229522638435],[-73.96180761728166,41.90052810740733],[-73.96424478797127,41.910116444950795],[-73.96436664650574,41.91313499565892],[-73.96351363676439,41.91526573733525],[-73.96107646607479,41.91828428804337],[-73.9579081441783,41.922013085976936],[-73.95559283202317,41.93621803048577],[-73.95461796374734,41.94811467151191],[-73.95376495400598,41.95273127847728],[-73.95010919797157,41.96578207124477],[-73.94608786633373,41.97696846504547],[-73.94462556391997,41.9813187293013],[-73.93975122254076,41.99561245471331],[-73.93999493960972,41.999430033550055],[-73.93682661771324,42.006621286707656],[-73.93378015435124,42.01416766347797],[-73.93329272021332,42.0185179277338],[-73.9346331640926,42.02331209650553],[-73.9370703347822,42.026863332632736],[-73.93731405185116,42.02979310243768],[-73.93670475917877,42.034676052112594],[-73.93414572995468,42.0395590017875],[-73.93365829581676,42.049857586556406],[-73.93280528607539,42.056249811585374],[-73.93292714460988,42.059712266809406],[-73.93231785193748,42.06157666577619],[-73.92841837883411,42.064595216484314],[-73.92829652029964,42.066814739063815],[-73.92732165202379,42.066814739063815],[-73.92622492521348,42.07196403144827],[-73.92707793495484,42.07338452589915],[-73.9297588227134,42.075337705769115],[-73.92988068124788,42.0772021047359],[-73.92963696417891,42.07880016099314]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.78069696898794,42.01638718605747],[-74.74535799398872,42.00129443251684],[-74.72037699442029,41.99081828594158],[-74.67407075131786,41.97164161085466],[-74.65506081993895,41.96365132956844],[-74.62459618631894,41.95113322222004],[-74.60168678183668,41.940923418354316],[-74.59205995761275,41.936661935001666],[-74.57682764080273,41.929825805456794],[-74.45362866244335,41.875580673613705],[-74.48311842778753,41.839801969632084],[-74.48360586192545,41.839269284213],[-74.48787091063225,41.834386334538095],[-74.49018622278739,41.83198925015223],[-74.49079551545978,41.83136778382997],[-74.5255251977866,41.79683201249288],[-74.5329585683899,41.789285635722564],[-74.54343840235518,41.77898705095366],[-74.56330134347544,41.757324510577696],[-74.57512162132001,41.74525030774519],[-74.56196089959616,41.737703930974874],[-74.53880777804494,41.72438679549785],[-74.52040713933845,41.713733087116225],[-74.49103923252875,41.69721983912471],[-74.47239487675328,41.68692125435581],[-74.47081071580504,41.68603344532401],[-74.42535748244397,41.660642107014475],[-74.42109243373716,41.65833380353179],[-74.3951365658929,41.64492788715158],[-74.3926993952033,41.640044937476674],[-74.39196824399642,41.63880200483215],[-74.39148080985849,41.63711516767172],[-74.39148080985849,41.63347515064134],[-74.38879992209993,41.62974635270777],[-74.38709390261721,41.62841463916007],[-74.38672832701377,41.6251297457424],[-74.38611903434138,41.61962532974523],[-74.38514416606553,41.617228245359364],[-74.37905123934154,41.61012577310495],[-74.37807637106569,41.6054203852364],[-74.3755173418416,41.59796278936926],[-74.37454247356577,41.59680863762792],[-74.3736894638244,41.59583204769294],[-74.37076485899688,41.5964535140152],[-74.3651593664108,41.596009609499305],[-74.36467193227287,41.59521058137068],[-74.36430635666943,41.593790086919796],[-74.3657686590832,41.59254715427527],[-74.36796211270384,41.59165934524347],[-74.36747467856591,41.59094909801803],[-74.37027742485895,41.58837445182581],[-74.37758893692776,41.58651005285902],[-74.38026982468634,41.58677639556856],[-74.38429115632417,41.58366906395725],[-74.38733761968618,41.58331394034453],[-74.39111523425505,41.584201749376334],[-74.39891418046179,41.57567878267104],[-74.40317922916859,41.574524630929695],[-74.4074442778754,41.574524630929695],[-74.40854100468572,41.570440709383405],[-74.4074442778754,41.56964168125479],[-74.40780985347884,41.56866509131981],[-74.4086628632202,41.56813240590073],[-74.41451207287524,41.567954844094366],[-74.415974375289,41.568576310416624],[-74.41694924356484,41.56973046215796],[-74.41755853623724,41.56981924306115],[-74.41828968744412,41.569286557642066],[-74.41792411184068,41.56751093957846],[-74.41926455571996,41.5655577597085],[-74.41877712158204,41.56360457983853],[-74.41938641425445,41.56245042809719],[-74.42352960442676,41.55978700100179],[-74.42560119951293,41.559431877389066],[-74.42937881408182,41.558721630163625],[-74.43084111649557,41.554460146810975],[-74.43169412623693,41.55392746139189],[-74.43400943839205,41.553661118682356],[-74.43437501399549,41.55303965236009],[-74.43583731640926,41.55108647249013],[-74.43608103347822,41.550553787071046],[-74.43486244813342,41.548689388104265],[-74.43474058959893,41.546647427331116],[-74.43790891149541,41.54336253391345],[-74.43900563830574,41.54300741030073],[-74.44485484796078,41.544072781138894],[-74.4459515747711,41.54096544952759],[-74.44363626261598,41.540699106818046],[-74.44436741382286,41.53750299430356],[-74.44863246252967,41.53395175817635],[-74.45106963321926,41.53270882553183],[-74.45618769166744,41.52933515121099],[-74.46483964761552,41.519569251861164],[-74.46605823296032,41.516373139346676],[-74.46886097925336,41.513798493154454],[-74.47568505718425,41.51015847612406],[-74.4759287742532,41.505275526449154],[-74.47544134011528,41.50429893651417],[-74.50127534942507,41.503411127482366],[-74.52979024649342,41.50243453754739],[-74.54880017787231,41.501546728515585],[-74.56062045571687,41.500570138580606],[-74.57195329942353,41.5001262340647],[-74.57536533838898,41.5001262340647],[-74.59279110881963,41.49932720593608],[-74.61350705968124,41.49861695871064],[-74.64299682502543,41.497640368775656],[-74.72110814562717,41.49479937987389],[-74.74023993554054,41.49417791355163],[-74.75011047683344,41.49382278993891],[-74.75193835485064,41.49373400903573],[-74.75242578898856,41.49373400903573],[-74.75315694019544,41.49240229548803],[-74.75413180847129,41.491692048262586],[-74.7607121693332,41.49080423923078],[-74.76205261321249,41.488939840263996],[-74.75961544252289,41.481837368009586],[-74.755837827954,41.4795290645269],[-74.75449738407472,41.478730036398275],[-74.75437552554024,41.47624417110923],[-74.75254764752304,41.473136839497926],[-74.75303508166095,41.46780998530711],[-74.75084162804032,41.46567924363079],[-74.75059791097135,41.46470265369581],[-74.75059791097135,41.46434753008309],[-74.75669083769536,41.461417760278145],[-74.75985915959184,41.460885074859064],[-74.75973730105737,41.45875433318274],[-74.75876243278152,41.454404068926905],[-74.76144332054008,41.45005380467108],[-74.76180889614352,41.44490451228663],[-74.75924986691945,41.44357279873893],[-74.75864057424704,41.44241864699758],[-74.75242578898856,41.433629337582744],[-74.75608154502297,41.42750345526331],[-74.75510667674712,41.425461494490165],[-74.75474110114368,41.42501758997427],[-74.7582749986436,41.42341953371702],[-74.75864057424704,41.42333075281384],[-74.75924986691945,41.42333075281384],[-74.76229633028144,41.4235083146202],[-74.76375863269521,41.423597095523384],[-74.76497721804,41.42404100003928],[-74.77070456916057,41.42626052261879],[-74.77326359838466,41.42634930352197],[-74.77801608122938,41.425106370877444],[-74.78435272502234,41.42235416287886],[-74.79044565174635,41.42164391565342],[-74.79385769071179,41.42270928649158],[-74.79544185166003,41.423952219136105],[-74.79580742726347,41.424662466361546],[-74.79848831502204,41.429545416036454],[-74.79958504183236,41.43132103410006],[-74.80007247597028,41.432652747647765],[-74.80031619303924,41.436026421968606],[-74.8005599101082,41.43664788829087],[-74.8011692027806,41.43797960183857],[-74.8011692027806,41.438068382741754],[-74.80129106131508,41.43815716364493],[-74.80567796855637,41.44206352338486],[-74.80762770510805,41.442862551513485],[-74.81213647088381,41.44295133241666],[-74.817010812263,41.44090937164352],[-74.81798568053885,41.440465467127616],[-74.81871683174573,41.439932781708535],[-74.81969170002158,41.43922253448309],[-74.82188515364221,41.43753569732267],[-74.82286002191806,41.43682545009723],[-74.82298188045255,41.43655910738769],[-74.82602834381454,41.43176493861596],[-74.82858737303862,41.4306995677778],[-74.83065896812478,41.43052200597144],[-74.83468029976262,41.43078834868098],[-74.83687375338327,41.4315873768096],[-74.84552570933135,41.43753569732267],[-74.84857217269337,41.44019912441808],[-74.85417766527945,41.44312889422302],[-74.85856457252072,41.44446060777073],[-74.86465749924473,41.444016703254825],[-74.87672149415826,41.44037668622444],[-74.88866363053731,41.438245944548115],[-74.89390354751995,41.438956191773556],[-74.89597514260612,41.44002156261172],[-74.89634071820956,41.442152304288044],[-74.8948784157958,41.44605866402797],[-74.88902920614075,41.45120795641242],[-74.88915106467523,41.452539669960125],[-74.89036965002003,41.45529187795871],[-74.89207566950276,41.456978715119135],[-74.89512213286476,41.45822164776366],[-74.90413966441629,41.4598197040209],[-74.90694241070933,41.4611514175686],[-74.90816099605414,41.464613872792626],[-74.90816099605414,41.46807632801666],[-74.90901400579548,41.4718939068534],[-74.90913586432997,41.472426592272484],[-74.90986701553685,41.47304805859475],[-74.91230418622645,41.47544514298061],[-74.9125479032954,41.47562270478697],[-74.91266976182989,41.47562270478697],[-74.91656923493325,41.476865637431494],[-74.91730038614014,41.477043199237855],[-74.92327145432967,41.47713198014103],[-74.92375888846757,41.47713198014103],[-74.92412446407103,41.47713198014103],[-74.92680535182959,41.47828613188238],[-74.93253270295016,41.48228127252548],[-74.94179395157063,41.483524205170006],[-74.945693424674,41.483169081557286],[-74.94813059536361,41.48059443536506],[-74.95641697570825,41.47677685652831],[-74.95824485372545,41.47642173291559],[-74.96921212182866,41.477398322850576],[-74.96994327303554,41.477398322850576],[-74.98164169234563,41.4799729690428],[-74.98225098501803,41.48023931175234],[-74.98273841915595,41.48050565446188],[-74.98334771182834,41.4808607780746],[-74.98383514596627,41.4817485871064],[-74.98444443863868,41.482813957944565],[-74.98505373131107,41.48370176697637],[-74.98554116544899,41.48583250865269],[-74.98529744838004,41.489117402070356],[-74.982494702087,41.49648621703432],[-74.98212912648356,41.49852817780746],[-74.98237284355251,41.501014043096504],[-74.98395700450075,41.505275526449154],[-74.98407886303524,41.505808211868235],[-74.98432258010419,41.50660723999685],[-74.9849318727766,41.50722870631912],[-74.98541930691451,41.507672610835016],[-74.98566302398348,41.50793895354456],[-74.98761276053516,41.50873798167318],[-74.99394940432812,41.50873798167318],[-74.9995548969142,41.50740626812548],[-75.00321065294861,41.50811651535092],[-75.00369808708653,41.50927066709226],[-75.00369808708653,41.51113506605905],[-75.0026013602762,41.51459752128307],[-75.00089534079349,41.5176160719912],[-75.00089534079349,41.51930290915162],[-75.00126091639693,41.520634622699326],[-75.003819945621,41.524008297020174],[-75.00954729674157,41.528447342179184],[-75.0149090722587,41.53137711198413],[-75.01661509174141,41.53208735920957],[-75.02307359406886,41.53315273004773],[-75.02417032087918,41.534040539079534],[-75.02477961355159,41.5351059099177],[-75.02477961355159,41.539811297786244],[-75.02282987699991,41.54149813494667],[-75.01758996001726,41.542741067591194],[-75.0161276576035,41.544250342945254],[-75.01637137467246,41.546469865524756],[-75.0185648282931,41.55179671971557],[-75.02733864277567,41.563515798935356],[-75.02916652079287,41.564669950676695],[-75.03318785243071,41.5651138551926],[-75.03696546699959,41.567067035062564],[-75.04049936449952,41.56973046215796],[-75.04391140346496,41.575057316348776],[-75.046714149758,41.583225159441355],[-75.05280707648201,41.58775298550354],[-75.05999673001634,41.59077153621167],[-75.06109345682665,41.591925687953015],[-75.06365248605074,41.59476667685478],[-75.0669426664817,41.59947206472333],[-75.07461975415394,41.605686727945944],[-75.07461975415394,41.607906250525446],[-75.07169514932643,41.60950430678269],[-75.07096399811954,41.609593087685866],[-75.06779567622306,41.61012577310495],[-75.06316505191282,41.60968186858905],[-75.0626776177749,41.60968186858905],[-75.0614590324301,41.61012577310495],[-75.06011858855081,41.61065845852403],[-75.05975301294737,41.61083602033039],[-75.05975301294737,41.61101358213675],[-75.05987487148185,41.611812610265375],[-75.05999673001634,41.612345295684456],[-75.06072788122322,41.61376579013534],[-75.06170274949906,41.61545262729576],[-75.06158089096458,41.616429217230746],[-75.06011858855081,41.61749458806891],[-75.05536610570609,41.61838239710071],[-75.05390380329233,41.61864873981025],[-75.05329451061993,41.61855995890707],[-75.05268521794753,41.61838239710071],[-75.05183220820616,41.618116054391166],[-75.05061362286136,41.61731702626255],[-75.04842016924073,41.61598531271484],[-75.04732344243041,41.61580775090848],[-75.0454955644132,41.6161628745212],[-75.0442769790684,41.617938492584805],[-75.04354582786152,41.62362047038834],[-75.04817645217176,41.632054656190455],[-75.04866388630968,41.63374149335088],[-75.04927317898209,41.64146543192756],[-75.04927317898209,41.64182055554028],[-75.04927317898209,41.64324104999116],[-75.04890760337865,41.64989961772967],[-75.04866388630968,41.65629184275865],[-75.04988247165448,41.66259528688444],[-75.05402566182681,41.66818848378479],[-75.0571939837233,41.66889873101023],[-75.0584125690681,41.66960897823567],[-75.05938743734393,41.67236118623426],[-75.05877814467154,41.6744031470074],[-75.05268521794753,41.67839828765051],[-75.05134477406824,41.67999634390775],[-75.05122291553377,41.6824822091968],[-75.05268521794753,41.688430529709876],[-75.05670654958537,41.695710563770646],[-75.05987487148185,41.69970570441376],[-75.06730824208515,41.70547646312047],[-75.0687705444989,41.708139890215875],[-75.06864868596442,41.71018185098902],[-75.06657709087825,41.712578935374886],[-75.06121531536114,41.71293405898761],[-75.0521977838096,41.71142478363354],[-75.05085733993033,41.711868688149444],[-75.05073548139585,41.71195746905262],[-75.05049176432689,41.712223811762165],[-75.05024804725792,41.712756497181246],[-75.04988247165448,41.71328918260033],[-75.04963875458553,41.71506480066393],[-75.05353822768889,41.72713900349643],[-75.05378194475784,41.72847071704414],[-75.05390380329233,41.72918096426958],[-75.05487867156818,41.73512928478265],[-75.05280707648201,41.74471762232611],[-75.0534163691544,41.75190887548371],[-75.0534163691544,41.752530341805965],[-75.05573168130954,41.756259139739534],[-75.05743770079225,41.7591001286413],[-75.06072788122322,41.76460454463847],[-75.06487107139554,41.766646505411614],[-75.06852682742993,41.76726797173388],[-75.06950169570578,41.7676230953466],[-75.07267001760226,41.76877724708794],[-75.07340116880914,41.76966505611974],[-75.07352302734363,41.769753837022925],[-75.0742541785505,41.770552865151544],[-75.07486347122291,41.770907988764264],[-75.07559462242979,41.771263112376985],[-75.07596019803323,41.77152945508652],[-75.07632577363667,41.771440674183346],[-75.07888480286076,41.771263112376985],[-75.07949409553315,41.7711743314738],[-75.09277667579148,41.76833334257204],[-75.09545756355004,41.76833334257204],[-75.09862588544652,41.76877724708794],[-75.10033190492925,41.769043589797484],[-75.10094119760164,41.76913237070066],[-75.1013067732051,41.76930993250702],[-75.10350022682573,41.771263112376985],[-75.10435323656709,41.77268360682787],[-75.10459695363605,41.77419288218193],[-75.10350022682573,41.78200560166179],[-75.10228164148093,41.786533427723974],[-75.10142863173957,41.78795392217486],[-75.10081933906717,41.78857538849712],[-75.09886960251549,41.79052856836709],[-75.09436083673972,41.7949676135261],[-75.09314225139492,41.796121765267436],[-75.09289853432597,41.79638810797698],[-75.09216738311908,41.79656566978334],[-75.08826791001572,41.79754225971832],[-75.08144383208483,41.79647688888016],[-75.07827551018835,41.79745347881514],[-75.07693506630906,41.7985188496533],[-75.07656949070562,41.7989627541692],[-75.07486347122291,41.80144861945825],[-75.07437603708499,41.80215886668369],[-75.07388860294706,41.803579361134574],[-75.07218258346434,41.80828474900312],[-75.07206072492987,41.80917255803492],[-75.0718170078609,41.811392080614425],[-75.07169514932643,41.811924766033506],[-75.0718170078609,41.81227988964623],[-75.07206072492987,41.81316769867803],[-75.07218258346434,41.81370038409711],[-75.07267001760226,41.81405550770983],[-75.07401046148155,41.81485453583846],[-75.07437603708499,41.815120878547994],[-75.07535090536082,41.815120878547994],[-75.07754435898147,41.815120878547994],[-75.0780317931194,41.815120878547994],[-75.07985967113659,41.81485453583846],[-75.08522144665372,41.811924766033506],[-75.08583073932611,41.81165842332397],[-75.08948649536052,41.811569642420785],[-75.09350782699836,41.81334526048439],[-75.09996632932581,41.81831699106248],[-75.11337076811861,41.82275603622149],[-75.11483307053238,41.825685806026435],[-75.11519864613582,41.82728386228368],[-75.11495492906685,41.830302412991806],[-75.1134926266531,41.83633951440806],[-75.11337076811861,41.84068977866389],[-75.11434563639446,41.84361954846884],[-75.11556422173926,41.844596138403816],[-75.11873254363574,41.84583907104834],[-75.12787193372175,41.84486248111336],[-75.13104025561823,41.8451288238229],[-75.14030150423872,41.85205373427095],[-75.14383540173864,41.85169861065823],[-75.14639443096273,41.85089958252961],[-75.03111625734455,41.90319153450274],[-75.02928837932735,41.903990562631364],[-75.00333251148308,41.91562086094797],[-75.00162649200037,41.916419889076586],[-74.99906746277628,41.91766282172111],[-74.99723958475909,41.91846184984973],[-74.98517558984555,41.9239662658469],[-74.91315719596781,41.95681520002357],[-74.9082828545886,41.958945941699895],[-74.85295907993464,41.98336069007445],[-74.8519842116588,41.98389337549353],[-74.85137491898641,41.98415971820307],[-74.84674429467616,41.98602411716985],[-74.84394154838311,41.987355830717554],[-74.84308853864175,41.987710954330275],[-74.80068176864268,42.00715397212674],[-74.7889833493326,42.012569607220726],[-74.78069696898794,42.01638718605747]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.95327751986805,41.58997250808305],[-73.95473982228182,41.58180466499047],[-73.95803000271277,41.57399194551061],[-73.96192947581615,41.56813240590073],[-73.96473222210919,41.56529141699896],[-73.97204373417799,41.560941152743126],[-73.97789294383304,41.5552591749396],[-73.98788534366041,41.54282984849437],[-73.99190667529825,41.53208735920957],[-73.99458756305681,41.52711562863148],[-73.9971465922809,41.51948047095798],[-73.99751216788434,41.51646192024985],[-73.9971465922809,41.51335458863855],[-73.99787774348778,41.50571943096505],[-73.99702473374641,41.501724290321945],[-73.99507499719473,41.49737402606612],[-73.99763402641881,41.487253003103575],[-73.99824331909122,41.48059443536506],[-73.99763402641881,41.47509001936789],[-73.9989744702981,41.462216788406764],[-73.99994933857394,41.45964214221454],[-74.00007119710841,41.45653481060323],[-73.99483128012577,41.45023136647744],[-73.98654489978112,41.44490451228663],[-73.98142684133296,41.43886741087037],[-73.97448090486759,41.42794735977921],[-73.97277488538487,41.42457368545836],[-73.96753496840223,41.418891707654836],[-73.96509779771263,41.41383119617356],[-73.96302620262647,41.41036874094954],[-73.96253876848854,41.404242858630106],[-73.96083274900582,41.401668212437876],[-73.9591267295231,41.40042527979335],[-73.95705513443694,41.399803813471095],[-73.95010919797157,41.39856088082657],[-73.94864689555781,41.39758429089159],[-73.94730645167853,41.3952759874089],[-73.94755016874748,41.393322807538944],[-73.95266822719566,41.380094452965096],[-73.95498353935078,41.37654321683789],[-73.95681141736797,41.372192952582054],[-73.95888301245414,41.36420267129584],[-73.96010159779894,41.35124065943153],[-73.96119832460926,41.348577232336126],[-73.96509779771263,41.343427939951674],[-73.97996453891919,41.326293225637905],[-73.98142684133296,41.32469516938066],[-73.99787774348778,41.31306487106406],[-73.99946190443602,41.31208828112907],[-74.02432104546996,41.29433210049304],[-74.06953056176206,41.26183828992909],[-74.0748923372792,41.25793193018916],[-74.09828917589938,41.2411523394881],[-74.10864715133019,41.23378352452415],[-74.16177747236351,41.19578529796303],[-74.18261528175961,41.18140279164784],[-74.18273714029408,41.180781325325576],[-74.18590546219056,41.178561802746074],[-74.18675847193192,41.17785155552063],[-74.1906579450353,41.17066030236304],[-74.19394812546625,41.17252470132982],[-74.20113777900058,41.16710906623583],[-74.21173947150035,41.15938512765916],[-74.21247062270723,41.15876366133689],[-74.21405478365547,41.15760950959555],[-74.23452701744813,41.14287187966764],[-74.24317897339621,41.14668945850439],[-74.3020366455501,41.172613482233004],[-74.321046576929,41.18237938158282],[-74.3216558696014,41.18273450519554],[-74.34188438632509,41.19196771912628],[-74.36589051761767,41.203065332023805],[-74.37466433210025,41.20706047266691],[-74.37892938080705,41.209013652536875],[-74.38136655149665,41.2102565851814],[-74.38319442951385,41.2111443942132],[-74.42304217028885,41.23094253562238],[-74.42950067261629,41.23422742904005],[-74.4398586480471,41.2393767214245],[-74.45752813554671,41.24825481174252],[-74.47702550106354,41.25704412115736],[-74.49956932994235,41.26734270592626],[-74.5255251977866,41.27941690875876],[-74.53649246588982,41.284566201143214],[-74.55611168994112,41.293799415073956],[-74.55952372890656,41.2953974713312],[-74.5611078898548,41.29610771855664],[-74.5623264751996,41.2967291848789],[-74.60729227442276,41.317770258932605],[-74.64153452261166,41.33286301247323],[-74.67394889278337,41.34777820420751],[-74.69222767295538,41.356212390009624],[-74.69381183390362,41.356922637235066],[-74.69490856071396,41.35745532265415],[-74.69637086312771,41.35736654175096],[-74.69113094614507,41.36029631155591],[-74.6897905022658,41.361539244200436],[-74.68954678519682,41.36384754768312],[-74.69113094614507,41.367310002907146],[-74.69490856071396,41.37041733451845],[-74.69722387286907,41.37166026716297],[-74.70331679959308,41.375122722387005],[-74.70843485804124,41.37894030122375],[-74.71038459459292,41.38213641373824],[-74.71257804821357,41.38755204883223],[-74.71343105795492,41.389771571411735],[-74.71599008717901,41.3926125603135],[-74.72086442855822,41.39465452108664],[-74.73036939424766,41.39563111102162],[-74.73365957467863,41.39696282456933],[-74.73609674536823,41.39838331902021],[-74.73853391605783,41.40122430792198],[-74.74097108674744,41.40513066766191],[-74.74170223795431,41.40788287566049],[-74.7410929452819,41.4114341117877],[-74.7386557745923,41.41347607256084],[-74.73475630148894,41.42270928649158],[-74.73487816002343,41.425816618102886],[-74.73548745269582,41.42750345526331],[-74.73670603804062,41.42919029242373],[-74.73841205752335,41.43061078687462],[-74.74097108674744,41.4311434722937],[-74.74377383304048,41.43061078687462],[-74.75071976950584,41.42794735977921],[-74.75071976950584,41.42794735977921],[-74.75437552554024,41.425106370877444],[-74.7546192426092,41.42501758997427],[-74.75474110114368,41.42501758997427],[-74.75510667674712,41.425461494490165],[-74.75608154502297,41.42750345526331],[-74.75242578898856,41.433629337582744],[-74.75864057424704,41.44241864699758],[-74.75924986691945,41.44357279873893],[-74.76180889614352,41.44490451228663],[-74.76144332054008,41.45005380467108],[-74.75876243278152,41.454404068926905],[-74.75973730105737,41.45875433318274],[-74.75985915959184,41.460885074859064],[-74.75669083769536,41.461417760278145],[-74.75059791097135,41.46434753008309],[-74.75059791097135,41.46470265369581],[-74.75084162804032,41.46567924363079],[-74.75303508166095,41.46780998530711],[-74.75254764752304,41.473136839497926],[-74.75437552554024,41.47624417110923],[-74.75449738407472,41.478730036398275],[-74.755837827954,41.4795290645269],[-74.75961544252289,41.481837368009586],[-74.76205261321249,41.488939840263996],[-74.7607121693332,41.49080423923078],[-74.75413180847129,41.491692048262586],[-74.75315694019544,41.49240229548803],[-74.75242578898856,41.49373400903573],[-74.75193835485064,41.49373400903573],[-74.75011047683344,41.49382278993891],[-74.74023993554054,41.49417791355163],[-74.72110814562717,41.49479937987389],[-74.64299682502543,41.497640368775656],[-74.61350705968124,41.49861695871064],[-74.59279110881963,41.49932720593608],[-74.57536533838898,41.5001262340647],[-74.57195329942353,41.5001262340647],[-74.56062045571687,41.500570138580606],[-74.54880017787231,41.501546728515585],[-74.52979024649342,41.50243453754739],[-74.50127534942507,41.503411127482366],[-74.47544134011528,41.50429893651417],[-74.4759287742532,41.505275526449154],[-74.47568505718425,41.51015847612406],[-74.46886097925336,41.513798493154454],[-74.46605823296032,41.516373139346676],[-74.46483964761552,41.519569251861164],[-74.45618769166744,41.52933515121099],[-74.45106963321926,41.53270882553183],[-74.44863246252967,41.53395175817635],[-74.44436741382286,41.53750299430356],[-74.44363626261598,41.540699106818046],[-74.4459515747711,41.54096544952759],[-74.44485484796078,41.544072781138894],[-74.43900563830574,41.54300741030073],[-74.43790891149541,41.54336253391345],[-74.43474058959893,41.546647427331116],[-74.43486244813342,41.548689388104265],[-74.43608103347822,41.550553787071046],[-74.43583731640926,41.55108647249013],[-74.43437501399549,41.55303965236009],[-74.43400943839205,41.553661118682356],[-74.43169412623693,41.55392746139189],[-74.43084111649557,41.554460146810975],[-74.42937881408182,41.558721630163625],[-74.42560119951293,41.559431877389066],[-74.42352960442676,41.55978700100179],[-74.41938641425445,41.56245042809719],[-74.41877712158204,41.56360457983853],[-74.41926455571996,41.5655577597085],[-74.41792411184068,41.56751093957846],[-74.41828968744412,41.569286557642066],[-74.41755853623724,41.56981924306115],[-74.41694924356484,41.56973046215796],[-74.415974375289,41.568576310416624],[-74.41451207287524,41.567954844094366],[-74.4086628632202,41.56813240590073],[-74.40780985347884,41.56866509131981],[-74.4074442778754,41.56964168125479],[-74.40854100468572,41.570440709383405],[-74.4074442778754,41.574524630929695],[-74.40317922916859,41.574524630929695],[-74.39891418046179,41.57567878267104],[-74.39111523425505,41.584201749376334],[-74.38733761968618,41.58331394034453],[-74.38429115632417,41.58366906395725],[-74.38026982468634,41.58677639556856],[-74.37758893692776,41.58651005285902],[-74.37027742485895,41.58837445182581],[-74.36747467856591,41.59094909801803],[-74.36381892253152,41.59183690704983],[-74.35382652270415,41.59201446885619],[-74.35224236175591,41.593079839694354],[-74.35212050322143,41.59707498033746],[-74.3491958983939,41.59840669388517],[-74.34383412287679,41.59743010395018],[-74.34212810339406,41.596364733112026],[-74.34042208391133,41.59441155324206],[-74.33177012796325,41.5968974185311],[-74.32994224994604,41.59814035117562],[-74.32969853287709,41.59911694111061],[-74.32640835244612,41.60204671091555],[-74.32616463537717,41.602313053625096],[-74.32336188908413,41.603289643560075],[-74.32226516227381,41.60275695814099],[-74.3192186989118,41.603467205366435],[-74.31544108434292,41.606219413365025],[-74.31422249899812,41.609593087685866],[-74.31263833804988,41.61083602033039],[-74.30995745029131,41.61136870574947],[-74.30691098692931,41.60879405955725],[-74.30593611865346,41.60906040226679],[-74.30532682598107,41.61056967762085],[-74.30471753330866,41.611457486652654],[-74.30410824063627,41.612345295684456],[-74.30459567477419,41.614032132844876],[-74.30410824063627,41.61563018910212],[-74.30045248460186,41.616251655424385],[-74.29570000175714,41.61927020613251],[-74.29362840667098,41.61882630161661],[-74.28851034822281,41.62131216690565],[-74.28595131899873,41.6215785096152],[-74.27961467520576,41.62566243116148],[-74.27595891917136,41.625751212064664],[-74.27425289968865,41.626905363806],[-74.27230316313695,41.628148296450526],[-74.27059714365424,41.62912488638551],[-74.269012982706,41.62868098186961],[-74.26755068029223,41.62903610548233],[-74.26426049986128,41.6327649034159],[-74.26340749011992,41.632587341609536],[-74.25024676839607,41.62930244819187],[-74.25024676839607,41.6251297457424],[-74.25049048546502,41.62273266135654],[-74.25158721227534,41.60533160433322],[-74.24512870994789,41.603822328979156],[-74.24427570020654,41.603644767172796],[-74.23367400770677,41.60115890188375],[-74.18773334020777,41.59086031711485],[-74.18748962313882,41.59077153621167],[-74.18541802805265,41.59396764872616],[-74.18505245244921,41.59405642962934],[-74.18432130124232,41.59387886782298],[-74.12643849736428,41.58251491221591],[-74.12729150710564,41.587131519181284],[-74.12777894124356,41.58828567092262],[-74.13045982900212,41.59893937930425],[-74.13204398995036,41.60550916613958],[-74.13448116063996,41.615718970005304],[-74.12656035589876,41.613854571038516],[-74.09865475150282,41.60728478420319],[-74.09451156133049,41.60550916613958],[-74.0931711174512,41.60337842446326],[-74.09207439064089,41.601780368206015],[-74.09109952236506,41.60035987375513],[-74.09073394676162,41.599738407432866],[-74.09000279555472,41.59858425569153],[-74.08525031271,41.60018231194877],[-74.08512845417553,41.60027109285195],[-74.08451916150312,41.60044865465831],[-74.08061968839976,41.601602806399654],[-74.08001039572736,41.60186914910919],[-74.07440490314127,41.603644767172796],[-74.06794640081382,41.605864289752304],[-74.06307205943463,41.598850598401064],[-74.05576054736582,41.588640794535344],[-74.05576054736582,41.588640794535344],[-74.0546638205555,41.587131519181284],[-74.05381081081414,41.58429053027952],[-74.05381081081414,41.5826036931191],[-74.05368895227966,41.58065051324913],[-74.05332337667622,41.58065051324913],[-74.04942390357286,41.58100563686185],[-74.04138124029717,41.58162710318411],[-74.03857849400413,41.581893445893655],[-74.03711619159037,41.582071007700016],[-74.02675821615955,41.58295881673182],[-74.02493033814235,41.58313637853817],[-74.00421438728074,41.58517833931132],[-73.99507499719473,41.58606614834312],[-73.99495313866025,41.58606614834312],[-73.98617932417768,41.58686517647174],[-73.98264542667776,41.587131519181284],[-73.95327751986805,41.58997250808305]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.53006282961866,41.52720440953466],[-73.53237814177379,41.49977111045198],[-73.53396230272203,41.47970662633326],[-73.5340841612565,41.47899637910782],[-73.5340841612565,41.478907598204636],[-73.53420601979099,41.47801978917283],[-73.53432787832547,41.47695441833467],[-73.53432787832547,41.47642173291559],[-73.53432787832547,41.47588904749651],[-73.53579018073923,41.457156276925495],[-73.53591203927371,41.45573578247461],[-73.53591203927371,41.45520309705553],[-73.53603389780818,41.453072355379206],[-73.53603389780818,41.4512967373156],[-73.53700876608403,41.44108693344988],[-73.53749620022195,41.435848860162245],[-73.53761805875644,41.43389568029229],[-73.54115195625636,41.40601847669371],[-73.54237054160116,41.39021547592763],[-73.54249240013563,41.389416447799015],[-73.54346726841148,41.376631997741065],[-73.54468585375628,41.36633341297217],[-73.56028374616973,41.3648241376181],[-73.57259145815222,41.36358120497358],[-73.5941604187552,41.36127290149089],[-73.60013148694472,41.360828996974995],[-73.64180710573692,41.356922637235066],[-73.66008588590893,41.35505823826828],[-73.66057332004685,41.35505823826828],[-73.66093889565029,41.3549694573651],[-73.6816548465119,41.3527499347856],[-73.69444999263231,41.35141822123789],[-73.7196747092697,41.34884357504567],[-73.72771737254538,41.34795576601387],[-73.73515074314868,41.34724551878843],[-73.73527260168315,41.34724551878843],[-73.73551631875212,41.34715673788524],[-73.74014694306236,41.346712833369345],[-73.75282023064828,41.34538111982164],[-73.75732899642405,41.34493721530574],[-73.75818200616541,41.34484843440256],[-73.77073343521687,41.34351672085486],[-73.78023840090631,41.342451350016695],[-73.78803734711303,41.341741102791254],[-73.79413027383704,41.34103085556581],[-73.79473956650945,41.340942074662635],[-73.79729859573352,41.34067573195309],[-73.81545551737106,41.33890011388949],[-73.82191401969851,41.33827864756723],[-73.83312500487068,41.33721327672907],[-73.834221731681,41.33694693401952],[-73.84262997056013,41.33623668679408],[-73.86200547754245,41.334283506924116],[-73.87516619926632,41.332774231570056],[-73.87943124797312,41.332419107957335],[-73.88064983331792,41.33233032705415],[-73.88296514547304,41.33197520344143],[-73.88333072107648,41.33197520344143],[-73.8838181552144,41.331886422538254],[-73.8838181552144,41.331886422538254],[-73.88479302349023,41.33179764163507],[-73.88771762831776,41.33153129892553],[-73.88820506245568,41.33144251802235],[-73.88917993073153,41.33126495621599],[-73.88978922340392,41.33117617531281],[-73.89064223314529,41.33108739440963],[-73.8929575453004,41.33099861350645],[-73.89344497943833,41.33090983260327],[-73.90051277443817,41.33011080447465],[-73.90477782314497,41.329666899958745],[-73.90818986211042,41.32940055724921],[-73.90916473038627,41.329311776346024],[-73.90940844745522,41.32922299544285],[-73.91416093029994,41.328956652733304],[-73.91477022297235,41.32886787183013],[-73.91525765711026,41.32886787183013],[-73.92061943262739,41.32824640550786],[-73.9267123593514,41.327624939185604],[-73.97972082185024,41.32212052318843],[-73.98252356814328,41.321676618672534],[-73.98142684133296,41.32469516938066],[-73.97996453891919,41.326293225637905],[-73.96509779771263,41.343427939951674],[-73.96119832460926,41.348577232336126],[-73.96010159779894,41.35124065943153],[-73.95888301245414,41.36420267129584],[-73.95681141736797,41.372192952582054],[-73.95498353935078,41.37654321683789],[-73.95266822719566,41.380094452965096],[-73.94755016874748,41.393322807538944],[-73.94730645167853,41.3952759874089],[-73.94864689555781,41.39758429089159],[-73.95010919797157,41.39856088082657],[-73.95705513443694,41.399803813471095],[-73.9591267295231,41.40042527979335],[-73.96083274900582,41.401668212437876],[-73.96253876848854,41.404242858630106],[-73.96302620262647,41.41036874094954],[-73.96509779771263,41.41383119617356],[-73.96753496840223,41.418891707654836],[-73.97277488538487,41.42457368545836],[-73.97448090486759,41.42794735977921],[-73.98142684133296,41.43886741087037],[-73.97801480236751,41.44259620880394],[-73.93853263719596,41.48343542426683],[-73.93378015435124,41.48831837394174],[-73.9077024279725,41.49089302013396],[-73.90270622805882,41.49231351458484],[-73.87455690659391,41.49506572258343],[-73.86005574099077,41.495775969808875],[-73.83836492185333,41.49808427329156],[-73.82057357581922,41.499859891355165],[-73.81801454659514,41.5001262340647],[-73.79510514211289,41.5023457566442],[-73.77256131323406,41.50421015561099],[-73.74246225521748,41.50758382993184],[-73.71504408495946,41.510069695220885],[-73.68372644159807,41.51335458863855],[-73.67324660763278,41.514686302186256],[-73.64765631539196,41.51832631921664],[-73.64400055935756,41.51885900463572],[-73.62279717435803,41.521788774440665],[-73.62206602315113,41.521788774440665],[-73.60598069659977,41.52374195431063],[-73.60524954539288,41.523830735213814],[-73.60464025272049,41.523830735213814],[-73.5886767847036,41.52542879147106],[-73.58014668728998,41.526405381406036],[-73.54858532685964,41.52676050501876],[-73.53006282961866,41.52720440953466]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.54468585375628,41.36633341297217],[-73.54797603418724,41.33534887776228],[-73.54895090246308,41.326293225637905],[-73.54956019513548,41.31590585996582],[-73.54956019513548,41.31590585996582],[-73.54907276099756,41.309424854033665],[-73.54895090246308,41.307560455066884],[-73.54968205366995,41.30294384810151],[-73.54992577073892,41.30187847726335],[-73.55090063901476,41.2953974713312],[-73.5488290439286,41.29291160604215],[-73.54809789272171,41.29211257791353],[-73.53591203927371,41.27755250979198],[-73.52628521504978,41.26609977328174],[-73.52518848823946,41.264856840637215],[-73.51836441030858,41.256688997544636],[-73.4992326203952,41.23316205820189],[-73.49289597660223,41.22526055781885],[-73.4826598597059,41.212742450470444],[-73.50946873729153,41.2008458094443],[-73.5127589177225,41.199336534090236],[-73.51458679573969,41.198448725058434],[-73.53615575634267,41.18850526390226],[-73.56491437047997,41.175188128425226],[-73.6143889354789,41.152904121727005],[-73.63218028151299,41.144913840440786],[-73.63961365211628,41.141451385216754],[-73.66069517858134,41.131774266770115],[-73.66995642720183,41.12742400251429],[-73.6828734318567,41.12147568200122],[-73.69591229504609,41.115438580584964],[-73.72771737254538,41.10070095065705],[-73.72259931409722,41.09359847840264],[-73.71687196297665,41.087561376986386],[-73.71455665082154,41.08463160718144],[-73.70627027047689,41.07433302241254],[-73.69432813409784,41.05932904977509],[-73.68713848056352,41.05071730216661],[-73.6828734318567,41.0453904479758],[-73.68177670504639,41.0440587344281],[-73.6799488270292,41.04183921184859],[-73.67531820271894,41.03606845314188],[-73.67080943694319,41.03056403714471],[-73.67044386133973,41.03012013262881],[-73.66642252970189,41.02514840205072],[-73.66264491513301,41.02053179508535],[-73.66057332004685,41.01822349160266],[-73.65898915909861,41.01662543534542],[-73.6553334030642,41.01280785650867],[-73.65496782746077,41.01227517108959],[-73.65472411039181,41.011653704767326],[-73.65557712013317,41.00765856412422],[-73.65777057375381,41.00304195715885],[-73.65777057375381,41.00286439535249],[-73.65935473470205,40.99949072103164],[-73.65898915909861,40.995495580388535],[-73.65886730056413,40.99443020955037],[-73.65886730056413,40.99434142864719],[-73.65874544202966,40.99345361961539],[-73.65972031030549,40.98794920361822],[-73.65764871521932,40.985463338329176],[-73.65764871521932,40.985463338329176],[-73.65728313961588,40.98519699561963],[-73.65643012987452,40.98146819768606],[-73.65594269573661,40.97960379871928],[-73.65996402737446,40.968417404918576],[-73.6620356224606,40.966197882339074],[-73.66447279315021,40.96717447227405],[-73.66690996383981,40.966375444145434],[-73.67288103202934,40.964511045178654],[-73.67812094901198,40.962824208018226],[-73.67946139289127,40.95927297189102],[-73.68104555383951,40.95474514582883],[-73.681167412374,40.95465636492565],[-73.68323900746014,40.94897438712212],[-73.68652918789111,40.94515680828537],[-73.69798389013225,40.93956361138502],[-73.70298009004593,40.93805433603096],[-73.71211948013193,40.93512456622601],[-73.71345992401122,40.93468066171011],[-73.72174630435586,40.932017234614705],[-73.73173870418323,40.92500354326347],[-73.73600375289004,40.92287280158715],[-73.7435589820278,40.91914400365358],[-73.74453385030364,40.91870009913767],[-73.74514314297605,40.91834497552495],[-73.74563057711396,40.91816741371859],[-73.74563057711396,40.918078632815416],[-73.7466054453898,40.91763472829951],[-73.74709287952773,40.91745716649315],[-73.74733659659668,40.91727960468679],[-73.74855518194148,40.91674691926771],[-73.74940819168285,40.91621423384863],[-73.75306394771725,40.91443861578502],[-73.75464810866549,40.913639587656405],[-73.75476996719998,40.91355080675322],[-73.75501368426893,40.913462025850045],[-73.75671970375166,40.91257421681824],[-73.76086289392397,40.908046390756056],[-73.76537165969974,40.903074660177964],[-73.77767937168223,40.889491181991396],[-73.77853238142359,40.88851459205641],[-73.77853238142359,40.88851459205641],[-73.77950724969944,40.88744922121825],[-73.78133512771663,40.885407260445106],[-73.78230999599248,40.8836316423815],[-73.78316300573384,40.8818560243179],[-73.78352858133728,40.88105699618928],[-73.78365043987175,40.88105699618928],[-73.79291168849224,40.883365299671965],[-73.80278222978512,40.88593994586419],[-73.80461010780233,40.88647263128327],[-73.80753471262986,40.88709409760553],[-73.81350578081938,40.88869215386277],[-73.8152118003021,40.888958496572315],[-73.81959870754338,40.89020142921684],[-73.82167030262954,40.89073411463592],[-73.82301074650883,40.89108923824864],[-73.82386375625019,40.88975752470093],[-73.82398561478468,40.88993508650729],[-73.82715393668116,40.89073411463592],[-73.83080969271555,40.89188826637726],[-73.83349058047412,40.89268729450588],[-73.83519659995683,40.893219979924964],[-73.83714633650852,40.893752665344046],[-73.83824306331884,40.89410778895677],[-73.83885235599124,40.895439502504466],[-73.83946164866364,40.897836586890335],[-73.83994908280157,40.90041123308256],[-73.84080209254292,40.90271953656524],[-73.84141138521532,40.903962469209766],[-73.84470156564629,40.904583935532024],[-73.84482342418076,40.905294182757466],[-73.84531085831868,40.90556052546701],[-73.84677316073245,40.90609321088609],[-73.84847918021516,40.90671467720835],[-73.85042891676684,40.90698101991789],[-73.85091635090477,40.90635955359563],[-73.85128192650821,40.90653711540199],[-73.8526223703875,40.90698101991789],[-73.85323166305989,40.90724736262743],[-73.85067263383581,40.90999957062602],[-73.85128192650821,40.90991078972284],[-73.85298794599093,40.90999957062602],[-73.85347538012886,40.90928932340058],[-73.85603440935293,40.90591564907973],[-73.85664370202534,40.90618199178927],[-73.85822786297358,40.90218685114616],[-73.86005574099077,40.90058879488892],[-73.86163990193901,40.900855137598455],[-73.86261477021486,40.901210261211176],[-73.8629803458183,40.90138782301754],[-73.86529565797342,40.9020092893398],[-73.86761097012854,40.90271953656524],[-73.87285088711118,40.90414003101613],[-73.87565363340423,40.905116620951105],[-73.87784708702488,40.90564930637019],[-73.87845637969727,40.90573808727337],[-73.87894381383519,40.90591564907973],[-73.8807716918524,40.90644833449881],[-73.88150284305928,40.90671467720835],[-73.88284328693855,40.90706980082107],[-73.88601160883503,40.90795760985287],[-73.88844877952464,40.9087566379815],[-73.89186081849009,40.90982200881966],[-73.89649144280033,40.91115372236736],[-73.8972225940072,40.9114200650769],[-73.8979537452141,40.91168640778644],[-73.89953790616234,40.911952750495985],[-73.90039091590369,40.9123078741087],[-73.90209693538641,40.91284055952778],[-73.90599640848977,40.91390593036594],[-73.91050517426554,40.91523764391365],[-73.91793854486883,40.917545947396334],[-73.91769482779986,40.9194991272663],[-73.9156232327137,40.92491476236029],[-73.91233305228275,40.93547968983873],[-73.91038331573105,40.94133922944862],[-73.90733685236906,40.95146025241117],[-73.90489968167945,40.95811882014968],[-73.89892861348993,40.97480962994755],[-73.89649144280033,40.98173454039561],[-73.89393241357625,40.997182417548956],[-73.8935668379728,41.00526147973836],[-73.89003294047288,41.02257375585849],[-73.88991108193841,41.025769868372976],[-73.88942364780048,41.03757772849594],[-73.89027665754185,41.04521288616944],[-73.89039851607632,41.0458343524917],[-73.89393241357625,41.057908555324204],[-73.89441984771416,41.064567123062716],[-73.89466356478313,41.06980519635035],[-73.8947854233176,41.07033788176943],[-73.8947854233176,41.07051544357579],[-73.8947854233176,41.07060422447897],[-73.8947854233176,41.07078178628533],[-73.89466356478313,41.07957109570017],[-73.89490728185208,41.082412084601934],[-73.89381055504177,41.093332135693096],[-73.89186081849009,41.10478487220334],[-73.89137338435216,41.10735951839557],[-73.89088595021424,41.110555630910056],[-73.89076409167976,41.11108831632914],[-73.88881435512808,41.12183080561394],[-73.88759576978327,41.12875571606199],[-73.88723019417984,41.13310598031782],[-73.88735205271432,41.13683477825139],[-73.8874739112488,41.138255272702274],[-73.8886924965936,41.14233919424856],[-73.89247011116248,41.15059581824432],[-73.8996597646968,41.15725438598283],[-73.90928658892074,41.16435685823725],[-73.91172375961034,41.16781931346127],[-73.9144046473689,41.17421153849025],[-73.92183801797219,41.18655208403229],[-73.92719979348931,41.198004820542536],[-73.93146484219612,41.20501851189377],[-73.93597360797187,41.20990146156868],[-73.93682661771324,41.21078927060048],[-73.93999493960972,41.21451806853405],[-73.94462556391997,41.21957858001532],[-73.94767202728197,41.2227746925298],[-73.95096220771293,41.22632592865701],[-73.95108406624742,41.22650349046337],[-73.95327751986805,41.22898935575242],[-73.96144204167823,41.23422742904005],[-73.96083274900582,41.2393767214245],[-73.96132018314374,41.24195136761673],[-73.96387921236783,41.24372698568033],[-73.97045957322975,41.24772212632344],[-73.97204373417799,41.25145092425701],[-73.97228745124696,41.256156312125555],[-73.9714344415056,41.259618767349586],[-73.96972842202287,41.26317000347679],[-73.96692567572983,41.2671651441199],[-73.96424478797127,41.27000613302167],[-73.9615639002127,41.27240321740753],[-73.95717699297141,41.276398358050635],[-73.9554709734887,41.27781885250152],[-73.95205893452325,41.28074862230647],[-73.95193707598878,41.280837403209645],[-73.94742831021301,41.284566201143214],[-73.94572229073029,41.28758475185134],[-73.94584414926477,41.28944915081812],[-73.94657530047165,41.29095842617219],[-73.94913432969574,41.29255648242943],[-73.95522725641973,41.294953566815295],[-73.96448850504022,41.29965895468385],[-73.96692567572983,41.30170091545699],[-73.97180001710903,41.30729411235734],[-73.9775273682296,41.31208828112907],[-73.98093940719504,41.314219022805396],[-73.98325471935016,41.317415135319884],[-73.98252356814328,41.321676618672534],[-73.97972082185024,41.32212052318843],[-73.9267123593514,41.327624939185604],[-73.92061943262739,41.32824640550786],[-73.91525765711026,41.32886787183013],[-73.91477022297235,41.32886787183013],[-73.91416093029994,41.328956652733304],[-73.90940844745522,41.32922299544285],[-73.90916473038627,41.329311776346024],[-73.90818986211042,41.32940055724921],[-73.90477782314497,41.329666899958745],[-73.90051277443817,41.33011080447465],[-73.89344497943833,41.33090983260327],[-73.8929575453004,41.33099861350645],[-73.89064223314529,41.33108739440963],[-73.88978922340392,41.33117617531281],[-73.88917993073153,41.33126495621599],[-73.88820506245568,41.33144251802235],[-73.88771762831776,41.33153129892553],[-73.88479302349023,41.33179764163507],[-73.8838181552144,41.331886422538254],[-73.8838181552144,41.331886422538254],[-73.88333072107648,41.33197520344143],[-73.88296514547304,41.33197520344143],[-73.88064983331792,41.33233032705415],[-73.87943124797312,41.332419107957335],[-73.87516619926632,41.332774231570056],[-73.86200547754245,41.334283506924116],[-73.84262997056013,41.33623668679408],[-73.834221731681,41.33694693401952],[-73.83312500487068,41.33721327672907],[-73.82191401969851,41.33827864756723],[-73.81545551737106,41.33890011388949],[-73.79729859573352,41.34067573195309],[-73.79473956650945,41.340942074662635],[-73.79413027383704,41.34103085556581],[-73.78803734711303,41.341741102791254],[-73.78023840090631,41.342451350016695],[-73.77073343521687,41.34351672085486],[-73.75818200616541,41.34484843440256],[-73.75732899642405,41.34493721530574],[-73.75282023064828,41.34538111982164],[-73.74014694306236,41.346712833369345],[-73.73551631875212,41.34715673788524],[-73.73527260168315,41.34724551878843],[-73.73515074314868,41.34724551878843],[-73.72771737254538,41.34795576601387],[-73.7196747092697,41.34884357504567],[-73.69444999263231,41.35141822123789],[-73.6816548465119,41.3527499347856],[-73.66093889565029,41.3549694573651],[-73.66057332004685,41.35505823826828],[-73.66008588590893,41.35505823826828],[-73.64180710573692,41.356922637235066],[-73.60013148694472,41.360828996974995],[-73.5941604187552,41.36127290149089],[-73.57259145815222,41.36358120497358],[-73.56028374616973,41.3648241376181],[-73.54468585375628,41.36633341297217]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.98252356814328,41.321676618672534],[-73.98325471935016,41.317415135319884],[-73.98093940719504,41.314219022805396],[-73.9775273682296,41.31208828112907],[-73.97180001710903,41.30729411235734],[-73.96692567572983,41.30170091545699],[-73.96448850504022,41.29965895468385],[-73.95522725641973,41.294953566815295],[-73.94913432969574,41.29255648242943],[-73.94657530047165,41.29095842617219],[-73.94584414926477,41.28944915081812],[-73.94572229073029,41.28758475185134],[-73.94742831021301,41.284566201143214],[-73.95193707598878,41.280837403209645],[-73.95205893452325,41.28074862230647],[-73.9554709734887,41.27781885250152],[-73.95717699297141,41.276398358050635],[-73.9615639002127,41.27240321740753],[-73.96424478797127,41.27000613302167],[-73.96692567572983,41.2671651441199],[-73.96972842202287,41.26317000347679],[-73.9714344415056,41.259618767349586],[-73.97228745124696,41.256156312125555],[-73.97204373417799,41.25145092425701],[-73.97045957322975,41.24772212632344],[-73.96387921236783,41.24372698568033],[-73.96132018314374,41.24195136761673],[-73.96083274900582,41.2393767214245],[-73.96144204167823,41.23422742904005],[-73.95327751986805,41.22898935575242],[-73.95108406624742,41.22650349046337],[-73.95096220771293,41.22632592865701],[-73.94767202728197,41.2227746925298],[-73.94462556391997,41.21957858001532],[-73.93999493960972,41.21451806853405],[-73.93682661771324,41.21078927060048],[-73.93597360797187,41.20990146156868],[-73.93146484219612,41.20501851189377],[-73.92719979348931,41.198004820542536],[-73.92183801797219,41.18655208403229],[-73.9144046473689,41.17421153849025],[-73.91172375961034,41.16781931346127],[-73.90928658892074,41.16435685823725],[-73.8996597646968,41.15725438598283],[-73.89247011116248,41.15059581824432],[-73.8886924965936,41.14233919424856],[-73.8874739112488,41.138255272702274],[-73.88735205271432,41.13683477825139],[-73.88723019417984,41.13310598031782],[-73.88759576978327,41.12875571606199],[-73.88881435512808,41.12183080561394],[-73.89076409167976,41.11108831632914],[-73.89088595021424,41.110555630910056],[-73.89137338435216,41.10735951839557],[-73.89186081849009,41.10478487220334],[-73.89381055504177,41.093332135693096],[-73.89490728185208,41.082412084601934],[-73.89466356478313,41.07957109570017],[-73.8947854233176,41.07078178628533],[-73.8947854233176,41.07060422447897],[-73.8947854233176,41.07051544357579],[-73.8947854233176,41.07033788176943],[-73.89466356478313,41.06980519635035],[-73.89441984771416,41.064567123062716],[-73.89393241357625,41.057908555324204],[-73.89039851607632,41.0458343524917],[-73.89027665754185,41.04521288616944],[-73.88942364780048,41.03757772849594],[-73.88991108193841,41.025769868372976],[-73.89003294047288,41.02257375585849],[-73.8935668379728,41.00526147973836],[-73.89393241357625,40.997182417548956],[-73.90270622805882,40.99727119845214],[-73.90502154021394,40.99762632206486],[-73.9070931353001,40.99851413109666],[-73.91184561814482,41.001266339095245],[-73.92001013995498,41.00490635612564],[-73.93902007133389,41.01342932283093],[-73.9451129980579,41.01618153082952],[-73.95169335891981,41.019111300634464],[-73.95291194426461,41.019643986053545],[-73.95949230512655,41.02257375585849],[-73.96704753426431,41.025947430179336],[-73.97728365116063,41.03056403714471],[-73.99982748003946,41.04068506010725],[-74.01323191883226,41.04663338062032],[-74.02432104546996,41.05160511119841],[-74.02553963081476,41.052137796617494],[-74.03297300141804,41.05542269003516],[-74.03346043555597,41.0556890327447],[-74.04101566469373,41.05906270706555],[-74.04101566469373,41.05906270706555],[-74.05125178159005,41.06359053312774],[-74.05429824495207,41.06501102757862],[-74.05685727417614,41.06607639841678],[-74.06794640081382,41.07095934809169],[-74.07952296158945,41.07610864047614],[-74.0815945566756,41.07708523041112],[-74.09243996624433,41.08187939918285],[-74.09682687348561,41.08383257905282],[-74.0981673173649,41.0843652644719],[-74.10620998064059,41.08791650059911],[-74.1123029073646,41.09066870859769],[-74.11937070236444,41.093776040209],[-74.12058928770924,41.09430872562808],[-74.12716964857115,41.097238495433025],[-74.12765708270908,41.097416057239386],[-74.1293631021918,41.09812630446483],[-74.1293631021918,41.09821508536801],[-74.1422801068467,41.10389706317154],[-74.14678887262245,41.105939023944686],[-74.14739816529486,41.106116585751046],[-74.14983533598446,41.10718195658921],[-74.1502009115879,41.10735951839557],[-74.15824357486359,41.11091075452278],[-74.15958401874286,41.111532220845035],[-74.16263048210487,41.11286393439274],[-74.18237156469064,41.121564462904395],[-74.19480113520761,41.12662497438566],[-74.23452701744813,41.14287187966764],[-74.21405478365547,41.15760950959555],[-74.21247062270723,41.15876366133689],[-74.21173947150035,41.15938512765916],[-74.20113777900058,41.16710906623583],[-74.19394812546625,41.17252470132982],[-74.1906579450353,41.17066030236304],[-74.18675847193192,41.17785155552063],[-74.18590546219056,41.178561802746074],[-74.18273714029408,41.180781325325576],[-74.18261528175961,41.18140279164784],[-74.16177747236351,41.19578529796303],[-74.10864715133019,41.23378352452415],[-74.09828917589938,41.2411523394881],[-74.0748923372792,41.25793193018916],[-74.06953056176206,41.26183828992909],[-74.02432104546996,41.29433210049304],[-73.99946190443602,41.31208828112907],[-73.99787774348778,41.31306487106406],[-73.98142684133296,41.32469516938066],[-73.98252356814328,41.321676618672534]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-71.94358656922222,41.28669694281954],[-71.92677009146396,41.29015939804356],[-71.93530018887758,41.28057106050011],[-71.94626745698079,41.27630957714746],[-71.96259650060112,41.270982722956646],[-71.97892554422145,41.265034402443575],[-71.99476715370386,41.2564226548351],[-71.99683874879003,41.25544606490011],[-72.00122565603131,41.25340410412697],[-72.00244424137611,41.25287141870789],[-72.00293167551403,41.25278263780471],[-72.00305353404852,41.25278263780471],[-72.0368083480995,41.24976408709658],[-72.0349804700823,41.25544606490011],[-72.0294968360307,41.26308122257361],[-72.02608479706525,41.26743148682944],[-72.02376948491013,41.27053881844075],[-72.0234039093067,41.270982722956646],[-72.02328205077221,41.27107150385983],[-72.01889514353093,41.27409005456795],[-72.01877328499644,41.27409005456795],[-72.00939017784148,41.27364615005205],[-72.0068311486174,41.27346858824569],[-71.99318299275562,41.280304717790564],[-71.99111139766947,41.28137008862873],[-71.98002227103177,41.280304717790564],[-71.9700298712044,41.28208033585417],[-71.96296207620456,41.28332326849869],[-71.95284781784271,41.285098886562295],[-71.94358656922222,41.28669694281954]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.49667359117112,40.923494267909405],[-73.49179924979191,40.94213825757724],[-73.48534074746446,40.94639974092989],[-73.4783948109991,40.9423158193836],[-73.46364992832702,40.93769921241824],[-73.46035974789605,40.93734408880552],[-73.45414496263756,40.93672262248325],[-73.45207336755139,40.936456279773715],[-73.44488371401707,40.93574603254827],[-73.43671919220691,40.93485822351647],[-73.42989511427602,40.929797712035196],[-73.42928582160361,40.92526988597301],[-73.4287983874657,40.92154108803944],[-73.42550820703474,40.9212747453299],[-73.4061327000524,40.92020937449174],[-73.40296437815591,40.92509232416665],[-73.40345181229384,40.942227038480425],[-73.40259880255248,40.945955836413994],[-73.40089278306975,40.95403489860339],[-73.39979605625943,40.95518905034473],[-73.39772446117327,40.95518905034473],[-73.39540914901815,40.95527783124791],[-73.39467799781127,40.95527783124791],[-73.39285011979408,40.95527783124791],[-73.37444948108758,40.937610431515054],[-73.36591938367397,40.931662111001984],[-73.35275866195012,40.92669038042389],[-73.35190565220876,40.92651281861753],[-73.34861547177779,40.92589135229527],[-73.3455690084158,40.92526988597301],[-73.34410670600202,40.92731184674615],[-73.33131155988161,40.929620150228835],[-73.32680279410586,40.928909903003394],[-73.32241588686458,40.92837721758431],[-73.31108304315792,40.92677916132707],[-73.30096878479607,40.92535866687619],[-73.29511957514103,40.92447085784439],[-73.23138756160793,40.90573808727337],[-73.22980340065969,40.905294182757466],[-73.22955968359074,40.90520540185429],[-73.22931596652177,40.905116620951105],[-73.22712251290113,40.90573808727337],[-73.22371047393568,40.90680345811153],[-73.15047349471315,40.928465998487496],[-73.14901119229938,40.928909903003394],[-73.14864561669594,40.92970893113202],[-73.14620844600634,40.93503578532283],[-73.14547729479946,40.94480168467265],[-73.1446242850581,40.95581051666699],[-73.14243083143747,40.96184761808325],[-73.14169968023059,40.96380079795321],[-73.14072481195474,40.966197882339074],[-73.14023737781682,40.96628666324225],[-73.13828764126514,40.96664178685497],[-73.1379220656617,40.966730567758155],[-73.13755649005826,40.96681934866133],[-73.13682533885138,40.966908129564516],[-73.1348756022997,40.96726325317724],[-73.11818098307592,40.970459365691724],[-73.1158656709208,40.97090327020762],[-73.1158656709208,40.97090327020762],[-73.1152563782484,40.970992051110805],[-73.1103820368692,40.971968641045784],[-73.11026017833471,40.971968641045784],[-73.09514972005918,40.972501326464865],[-73.09210325669719,40.972678888271226],[-73.0816234227319,40.97303401188395],[-73.08125784712846,40.97294523098077],[-73.07626164721476,40.97152473652989],[-73.07479934480101,40.97108083201398],[-73.07211845704245,40.97037058478854],[-73.06700039859427,40.96886130943448],[-73.05798286704275,40.96628666324225],[-73.0448221453189,40.962469084405505],[-73.04372541850859,40.96220274169597],[-73.0436035599741,40.96220274169597],[-73.04250683316378,40.96300176982459],[-73.04226311609482,40.96317933163095],[-73.04043523807762,40.964511045178654],[-73.03470788695705,40.96477738788819],[-73.02081601402632,40.965398854210456],[-73.01021432152655,40.96584275872635],[-72.99595687299238,40.96646422504861],[-72.98474588782021,40.966375444145434],[-72.97645950747557,40.96628666324225],[-72.97475348799284,40.96628666324225],[-72.95513426394155,40.96610910143589],[-72.94599487385554,40.96531007330727],[-72.93758663497641,40.96459982608183],[-72.924791488856,40.96344567434049],[-72.91833298652855,40.96291298892141],[-72.91382422075279,40.962469084405505],[-72.90285695264959,40.962646646211866],[-72.89115853333949,40.96291298892141],[-72.88823392851197,40.96300176982459],[-72.88409073833965,40.96344567434049],[-72.88177542618453,40.96371201705003],[-72.86873656299515,40.96513251150091],[-72.86569009963316,40.965398854210456],[-72.86459337282282,40.965576416016816],[-72.86386222161595,40.96566519691999],[-72.8598408899781,40.96610910143589],[-72.83010740756497,40.96939399485356],[-72.82657351006505,40.96974911846628],[-72.82608607592712,40.96983789936946],[-72.8109756176516,40.96850618582176],[-72.78733506196245,40.96646422504861],[-72.78696948635901,40.96646422504861],[-72.77953611575572,40.96575397782317],[-72.77941425722123,40.96575397782317],[-72.77405248170412,40.96531007330727],[-72.7600387502389,40.97534231536663],[-72.75528626739418,40.976407686204794],[-72.71458551687783,40.98555211923235],[-72.71446365834335,40.98555211923235],[-72.71361064860199,40.98572968103871],[-72.68936080024045,40.989813602585],[-72.66498909334443,40.98750529910232],[-72.66437980067202,40.9875940800055],[-72.63537746946577,40.990523849810444],[-72.59260512386325,40.9965609512267],[-72.58541547032893,40.99753754116168],[-72.58529361179444,40.99762632206486],[-72.58517175325996,40.99762632206486],[-72.56616182188107,41.009079058575104],[-72.56543067067417,41.009522963091],[-72.56518695360522,41.00970052489736],[-72.56092190489842,41.01547128360408],[-72.54983277826074,41.019821547859905],[-72.52156159826134,41.03766650939912],[-72.52143973972687,41.03766650939912],[-72.52095230558895,41.037844071205484],[-72.51839327636486,41.038731880237286],[-72.51376265205462,41.040241155591346],[-72.50401396929621,41.04343726810583],[-72.48805050127932,41.04867534139346],[-72.47732695024507,41.05222657752067],[-72.47476792102098,41.054534881003356],[-72.46075418955577,41.06705298835176],[-72.45112736533184,41.07894962937791],[-72.4452781556768,41.0861408825355],[-72.43516389731495,41.08676234885776],[-72.41798184395326,41.08791650059911],[-72.41554467326365,41.088893090534086],[-72.39702217602269,41.09635068640122],[-72.395072439471,41.09803752356165],[-72.38763906886771,41.10478487220334],[-72.3711881667129,41.119877625743975],[-72.36192691809241,41.12831181154609],[-72.35644328404081,41.13328354212418],[-72.35607770843737,41.1336386657369],[-72.35571213283393,41.13372744664008],[-72.33329016248959,41.13798892999273],[-72.33329016248959,41.13798892999273],[-72.32232289438637,41.140652357088136],[-72.32049501636918,41.14154016611994],[-72.3161081091279,41.14367090779626],[-72.30928403119701,41.14704458211711],[-72.30172880205924,41.150684599147496],[-72.29198011930083,41.15547876791923],[-72.29112710955947,41.15583389153195],[-72.2897866656802,41.15618901514467],[-72.27881939757698,41.15876366133689],[-72.27662594395635,41.15734316688601],[-72.27297018792194,41.15503486340332],[-72.26809584654274,41.15414705437152],[-72.26005318326705,41.15663291966057],[-72.24530830059496,41.16124952662594],[-72.23824050559512,41.15947390856233],[-72.23775307145719,41.15672170056375],[-72.23775307145719,41.156455357854206],[-72.2535946809396,41.13710112096093],[-72.26504938318074,41.12857815425563],[-72.26517124171521,41.12848937335245],[-72.2786975390425,41.12218592922666],[-72.28064727559419,41.121386901098035],[-72.28405931455963,41.11978884484079],[-72.29027409981812,41.116947855939024],[-72.29063967542156,41.116770294132664],[-72.29977906550756,41.11250881078002],[-72.30026649964549,41.11233124897366],[-72.30038835817996,41.11224246807048],[-72.30026649964549,41.12032153025987],[-72.30002278257652,41.13204060947966],[-72.30002278257652,41.132129390382836],[-72.30465340688677,41.136213311929126],[-72.30635942636948,41.13781136818637],[-72.30696871904189,41.13790014908955],[-72.31269607016245,41.13852161541181],[-72.31549881645549,41.13781136818637],[-72.31817970421406,41.13710112096093],[-72.32658794309319,41.132129390382836],[-72.32719723576558,41.13133036225422],[-72.33523989904127,41.120232749356695],[-72.33523989904127,41.11801322677719],[-72.33523989904127,41.10940147916871],[-72.33523989904127,41.10931269826553],[-72.33511804050679,41.106915613879664],[-72.33511804050679,41.10682683297649],[-72.32025129930022,41.09173407943585],[-72.31744855300718,41.088893090534086],[-72.31720483593821,41.08862674782455],[-72.31123376774869,41.08631844434186],[-72.3111119092142,41.08631844434186],[-72.30245995326612,41.08285598911784],[-72.29782932895588,41.081080371054234],[-72.2977074704214,41.081080371054234],[-72.29697631921452,41.08099159015105],[-72.28125656826658,41.08045890473197],[-72.2805254170597,41.08037012382879],[-72.28040355852522,41.08037012382879],[-72.28015984145627,41.08010378111925],[-72.27674780249082,41.0767301067984],[-72.28003798292178,41.072202280736214],[-72.2823532950769,41.06891738731855],[-72.2830844462838,41.06785201648039],[-72.2830844462838,41.0677632355772],[-72.27370133912882,41.05151633029523],[-72.26529310024969,41.04547922887898],[-72.26054061740497,41.042105554558134],[-72.24128696895711,41.04476898165354],[-72.22934483257806,41.044325077137636],[-72.2175245547335,41.04059627920407],[-72.20619171102685,41.03455917778781],[-72.20204852085452,41.03233965520831],[-72.20180480378556,41.032250874305134],[-72.20119551111316,41.032250874305134],[-72.1905938186134,41.032605997917855],[-72.18754735525138,41.03384893056237],[-72.18754735525138,41.03384893056237],[-72.18730363818243,41.033937711465555],[-72.18328230654458,41.035624548625975],[-72.17962655051018,41.03828797572138],[-72.17962655051018,41.038376756624565],[-72.17962655051018,41.038376756624565],[-72.17950469197571,41.03846553752774],[-72.17487406766546,41.046189476104416],[-72.16768441413113,41.05036217855389],[-72.16683140438977,41.05089486397297],[-72.16293193128641,41.053203167455656],[-72.16037290206232,41.053824633777914],[-72.15391439973489,41.05187145390795],[-72.1537925412004,41.05178267300477],[-72.15306138999352,41.05133876848887],[-72.15001492663151,41.04903046500618],[-72.14209412189031,41.043170925396296],[-72.13734163904559,41.039708470172265],[-72.13514818542494,41.03127428437015],[-72.13746349758007,41.023905469406195],[-72.13697606344215,41.02346156489029],[-72.13575747809735,41.02204107043941],[-72.12271861490798,41.007037097801955],[-72.116381971115,40.999757063741185],[-72.10894860051172,40.99407508593765],[-72.10626771275317,40.99300971509949],[-72.10212452258084,40.99150043974543],[-72.09578787878787,40.99132287793907],[-72.09542230318444,40.99132287793907],[-72.09481301051203,40.991589220648606],[-72.0833583082709,40.996294608517154],[-72.08299273266746,40.996472170323514],[-72.08299273266746,40.996649732129875],[-72.07994626930545,41.00339708077157],[-72.07921511809857,41.0064156314797],[-72.07616865473658,41.009079058575104],[-72.06142377206449,41.009434182187825],[-72.05788987456457,41.004817575222454],[-72.0570368648232,41.00490635612564],[-72.055208986806,41.00526147973836],[-72.05155323077159,41.0064156314797],[-72.04948163568544,41.00970052489736],[-72.05155323077159,41.015737626313616],[-72.05191880637504,41.02053179508535],[-72.0509439380992,41.020975699601244],[-72.04741004059927,41.02257375585849],[-72.04680074792687,41.02248497495531],[-72.03583347982367,41.020798137794884],[-72.01499567042757,41.028344514565205],[-72.00707486568636,41.03402649236873],[-71.99927591947963,41.039708470172265],[-71.98002227103177,41.044502638943996],[-71.9669834078424,41.04778753236166],[-71.96247464206664,41.05275926293975],[-71.96113419818737,41.05426853829382],[-71.96040304698047,41.05986173519417],[-71.9614997737908,41.063679314030914],[-71.9614997737908,41.06394565674046],[-71.96162163232528,41.064034437643635],[-71.95955003723913,41.071225690801235],[-71.95236038370479,41.07335643247755],[-71.94407400336014,41.07575351686342],[-71.9382247937051,41.07744035402384],[-71.9370062083603,41.0776179158302],[-71.93371602792934,41.078150601249284],[-71.92798867680877,41.07912719118427],[-71.91933672086068,41.08054768563515],[-71.89923006267146,41.08081402834469],[-71.89813333586115,41.07983743840971],[-71.89545244810259,41.077351573120666],[-71.89069996525787,41.07601985957296],[-71.88960323844753,41.07566473596024],[-71.88753164336138,41.07566473596024],[-71.88667863362002,41.07557595505706],[-71.8696184387928,41.07504326963798],[-71.86450038034464,41.07690766860476],[-71.85755444387928,41.07353399428391],[-71.856214,41.07060422447897],[-71.86376922913776,41.06279150499911],[-71.87169003387896,41.054534881003356],[-71.87388348749961,41.052315358423854],[-71.87424906310305,41.052137796617494],[-71.88277916051666,41.04867534139346],[-71.90373882844723,41.04015237468817],[-71.93566576448102,41.03420405417509],[-71.9424898424119,41.03171818888605],[-71.963327651808,41.024083031212555],[-72.02547550439286,41.00135511999843],[-72.0270596653411,41.000733653676164],[-72.02937497749622,40.999934625547546],[-72.05813359163352,40.990523849810444],[-72.10285567378772,40.97587500078571],[-72.11443223456332,40.97205742194897],[-72.12344976611486,40.9687725285313],[-72.12966455137334,40.966375444145434],[-72.15476740947624,40.95696466840833],[-72.15891059964856,40.95545539305427],[-72.193030989303,40.94267094299632],[-72.19619931119948,40.9414280103518],[-72.1979053306822,40.94080654402954],[-72.22812624723326,40.929442588422475],[-72.2284918228367,40.9293538075193],[-72.24494272499152,40.92322792519987],[-72.2701674416289,40.91372836855958],[-72.2897866656802,40.90644833449881],[-72.29015224128364,40.90627077269245],[-72.29027409981812,40.90627077269245],[-72.2946610070594,40.904583935532024],[-72.32841582111038,40.89197704728044],[-72.32902511378279,40.8917107045709],[-72.35205637679952,40.88309895696242],[-72.39580359067789,40.866674489874086],[-72.46806570162458,40.84341389324088],[-72.47001543817626,40.84270364601544],[-72.47623022343475,40.84092802795183],[-72.48025155507258,40.839773876210494],[-72.52265832507166,40.827699673377985],[-72.53472231998519,40.82423721815396],[-72.5634809341225,40.81606937506138],[-72.56628368041554,40.81527034693276],[-72.57347333394986,40.813228386159615],[-72.58980237757021,40.80887812190379],[-72.61441780153518,40.802219554165276],[-72.64561358636209,40.79387414926634],[-72.67717494679243,40.78535118256104],[-72.69533186842997,40.78046823288613],[-72.72811181420512,40.77167892347129],[-72.72811181420512,40.77167892347129],[-72.74517200903233,40.76706231650592],[-72.75309281377353,40.7635998612819],[-72.75565184299762,40.764043765797794],[-72.75601741860106,40.76413254670098],[-72.75674856980794,40.76431010850733],[-72.75723600394586,40.764398889410515],[-72.7576015795493,40.76431010850733],[-72.75857644782515,40.764043765797794],[-72.76820327204908,40.76155790050875],[-72.77466177437651,40.759604720638784],[-72.86313107040907,40.73297044968473],[-72.92320732790776,40.71326108917873],[-72.97633764894108,40.693285385963186],[-72.99364156083726,40.68671559912785],[-73.01252963368168,40.67961312687344],[-73.01984114575048,40.67739360429393],[-73.02605593100897,40.67544042442397],[-73.0411663892845,40.67064625565224],[-73.05493640368076,40.666384772299594],[-73.13633790471346,40.64756322082539],[-73.14523357773051,40.64552126005225],[-73.15193579712691,40.643923203795005],[-73.15802872385092,40.64250270934412],[-73.18727477212614,40.635755360702426],[-73.19921690850519,40.63300315270384],[-73.20847815712568,40.63087241102752],[-73.21225577169456,40.630162163802076],[-73.23918650781467,40.62510165232081],[-73.2603898928142,40.62172797799996],[-73.26209591229693,40.621461635290416],[-73.26453308298652,40.621461635290416],[-73.30645241884768,40.620751388064974],[-73.30974259927864,40.62252700612858],[-73.31412950651992,40.628652888448016],[-73.3192475649681,40.635755360702426],[-73.35141821807083,40.6305172874148],[-73.39199711005271,40.61746649464731],[-73.4239240460865,40.60983133697381],[-73.4239240460865,40.61134061232788],[-73.4239240460865,40.614803067551904],[-73.42538634850025,40.65182470417804],[-73.42550820703474,40.65457691217663],[-73.42563006556922,40.65590862572433],[-73.42416776315545,40.658039367400654],[-73.42441148022442,40.660081328173796],[-73.42465519729338,40.66594086778369],[-73.42380218755201,40.667894047653654],[-73.42355847048306,40.67117894107132],[-73.42465519729338,40.67872531784164],[-73.42489891436233,40.6797906886798],[-73.42502077289681,40.68041215500206],[-73.4257519241037,40.68431851474199],[-73.4269705094485,40.691065863383685],[-73.42733608505193,40.693107824156826],[-73.4275798021209,40.69479466131725],[-73.42770166065537,40.69523856583315],[-73.42770166065537,40.695682470349055],[-73.42794537772434,40.6963927175745],[-73.42794537772434,40.697014183896755],[-73.42855467039674,40.70029907731442],[-73.42867652893122,40.70056542002396],[-73.42892024600017,40.7017195717653],[-73.42977325574154,40.706513740537034],[-73.43038254841395,40.709976195761065],[-73.4306262654829,40.711663032921486],[-73.43086998255185,40.712639622856464],[-73.43086998255185,40.712817184662825],[-73.43196670936219,40.7187655051759],[-73.43196670936219,40.71894306698226],[-73.43221042643114,40.71974209511088],[-73.43294157763802,40.72329333123809],[-73.43294157763802,40.72347089304445],[-73.43318529470699,40.72462504478579],[-73.43403830444835,40.72941921355752],[-73.43501317272418,40.734657286845156],[-73.4355006068621,40.7371431521342],[-73.43598804100003,40.73927389381052],[-73.43659733367242,40.74202610180911],[-73.43720662634483,40.745666118839495],[-73.4385470702241,40.75134809664303],[-73.44415256281019,40.78197750824019],[-73.4447618554826,40.78561752527058],[-73.44500557255155,40.78632777249602],[-73.44878318712044,40.804882981260675],[-73.44878318712044,40.80532688577658],[-73.45158593341348,40.81962061118859],[-73.45402310410309,40.83515726924512],[-73.45524168944789,40.84092802795183],[-73.45743514306852,40.84874074743169],[-73.46328435272356,40.85788518045925],[-73.46401550393045,40.85948323671649],[-73.46255320151668,40.86729595619635],[-73.46389364539597,40.86809498432497],[-73.4673056843614,40.86809498432497],[-73.4735204696199,40.874487209353944],[-73.47607949884397,40.87715063644935],[-73.47729808418877,40.899345862244395],[-73.47961339634391,40.90076635669528],[-73.48485331332654,40.90866785707831],[-73.48631561574031,40.913994711269126],[-73.48741234255063,40.915681548429546],[-73.48850906936094,40.91577032933273],[-73.49033694737815,40.9194991272663],[-73.49667359117112,40.923494267909405]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-72.08116485465025,41.09395360201536],[-72.08408945947778,41.07593107866978],[-72.08506432775363,41.06980519635035],[-72.0864047716329,41.06199247687049],[-72.08701406430531,41.058263678936925],[-72.09566602025339,41.054002195584275],[-72.09725018120163,41.05489000461608],[-72.09712832266715,41.0758422977666],[-72.10309939085668,41.086496006148224],[-72.10638957128764,41.088893090534086],[-72.12052516128733,41.093154573886736],[-72.13929137559727,41.092444326661294],[-72.14197226335583,41.09439750653126],[-72.14294713163167,41.09777118085211],[-72.14075367801102,41.10087851246341],[-72.13222358059743,41.10442974859062],[-72.12832410749405,41.10815854652419],[-72.12673994654583,41.11517223787542],[-72.11613825404605,41.111709782651396],[-72.10273381525323,41.107448299298746],[-72.10005292749467,41.10656049026694],[-72.08421131801227,41.101499978785675],[-72.08408945947778,41.101322416979315],[-72.08116485465025,41.09395360201536]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.91793854486883,40.917545947396334],[-73.91050517426554,40.91523764391365],[-73.90599640848977,40.91390593036594],[-73.90209693538641,40.91284055952778],[-73.90039091590369,40.9123078741087],[-73.89953790616234,40.911952750495985],[-73.8979537452141,40.91168640778644],[-73.8972225940072,40.9114200650769],[-73.89649144280033,40.91115372236736],[-73.89186081849009,40.90982200881966],[-73.88844877952464,40.9087566379815],[-73.88601160883503,40.90795760985287],[-73.88284328693855,40.90706980082107],[-73.88150284305928,40.90671467720835],[-73.8807716918524,40.90644833449881],[-73.87894381383519,40.90591564907973],[-73.87845637969727,40.90573808727337],[-73.87784708702488,40.90564930637019],[-73.87565363340423,40.905116620951105],[-73.87285088711118,40.90414003101613],[-73.86761097012854,40.90271953656524],[-73.86529565797342,40.9020092893398],[-73.8629803458183,40.90138782301754],[-73.86261477021486,40.901210261211176],[-73.86163990193901,40.900855137598455],[-73.86005574099077,40.90058879488892],[-73.85822786297358,40.90218685114616],[-73.85664370202534,40.90618199178927],[-73.85603440935293,40.90591564907973],[-73.85347538012886,40.90928932340058],[-73.85298794599093,40.90999957062602],[-73.85128192650821,40.90991078972284],[-73.85067263383581,40.90999957062602],[-73.85323166305989,40.90724736262743],[-73.8526223703875,40.90698101991789],[-73.85128192650821,40.90653711540199],[-73.85091635090477,40.90635955359563],[-73.85042891676684,40.90698101991789],[-73.84847918021516,40.90671467720835],[-73.84677316073245,40.90609321088609],[-73.84531085831868,40.90556052546701],[-73.84482342418076,40.905294182757466],[-73.84470156564629,40.904583935532024],[-73.84141138521532,40.903962469209766],[-73.84080209254292,40.90271953656524],[-73.83994908280157,40.90041123308256],[-73.83946164866364,40.897836586890335],[-73.83885235599124,40.895439502504466],[-73.83824306331884,40.89410778895677],[-73.83714633650852,40.893752665344046],[-73.83519659995683,40.893219979924964],[-73.83349058047412,40.89268729450588],[-73.83080969271555,40.89188826637726],[-73.82715393668116,40.89073411463592],[-73.82398561478468,40.88993508650729],[-73.82386375625019,40.88975752470093],[-73.82301074650883,40.89108923824864],[-73.82167030262954,40.89073411463592],[-73.81959870754338,40.89020142921684],[-73.8152118003021,40.888958496572315],[-73.81350578081938,40.88869215386277],[-73.80753471262986,40.88709409760553],[-73.80461010780233,40.88647263128327],[-73.80278222978512,40.88593994586419],[-73.79291168849224,40.883365299671965],[-73.78365043987175,40.88105699618928],[-73.78352858133728,40.88105699618928],[-73.78474716668208,40.878571130900234],[-73.78547831788896,40.869071574259955],[-73.78815920564752,40.86028226484511],[-73.78876849831993,40.85850664678151],[-73.78876849831993,40.85850664678151],[-73.78803734711303,40.85415638252568],[-73.78791548857856,40.8540676016225],[-73.78474716668208,40.85175929813982],[-73.78413787400967,40.850693927301656],[-73.782188137458,40.84732025298081],[-73.78206627892351,40.845722196723564],[-73.78206627892351,40.8446568258854],[-73.782188137458,40.84261486511226],[-73.78230999599248,40.842348522402716],[-73.78121326918215,40.83888606717869],[-73.78121326918215,40.83888606717869],[-73.78121326918215,40.83888606717869],[-73.78255371306143,40.83764313453417],[-73.78267557159592,40.837554353630985],[-73.78389415694072,40.83675532550237],[-73.78535645935447,40.83799825814689],[-73.78645318616479,40.83959631440413],[-73.788281064182,40.841993398789995],[-73.7894996495268,40.844035359563144],[-73.79108381047504,40.84652122485218],[-73.79096195194056,40.84669878665854],[-73.79059637633712,40.84803050020625],[-73.7894996495268,40.8514041745271],[-73.79230239581985,40.85584321968611],[-73.79230239581985,40.85584321968611],[-73.79230239581985,40.85584321968611],[-73.79352098116465,40.85557687697656],[-73.7937646982336,40.85557687697656],[-73.79632372745769,40.85309101168752],[-73.79729859573352,40.852203202655716],[-73.79912647375073,40.84891830923805],[-73.79949204935417,40.84803050020625],[-73.79973576642313,40.84803050020625],[-73.80022320056105,40.84820806201261],[-73.80692541995745,40.84953977556031],[-73.80887515650913,40.84856318562533],[-73.8127746296125,40.84669878665854],[-73.81374949788834,40.84270364601544],[-73.8146025076297,40.83897484808187],[-73.81472436616419,40.83879728627551],[-73.81533365883658,40.83595629737374],[-73.81557737590555,40.83515726924512],[-73.81533365883658,40.833115308471974],[-73.81533365883658,40.832316280343356],[-73.8152118003021,40.83107334769883],[-73.81484622469866,40.83054066227975],[-73.81192161987114,40.8253913698953],[-73.81192161987114,40.8253913698953],[-73.81119046866425,40.82476990357304],[-73.81009374185393,40.823615751831696],[-73.80765657116433,40.82148501015537],[-73.80521940047473,40.819176706672685],[-73.80448824926785,40.81855524035043],[-73.80375709806097,40.81820011673771],[-73.80326966392305,40.818022554931346],[-73.7992483322852,40.8164244986741],[-73.79790788840593,40.815803032351845],[-73.79766417133696,40.81571425144866],[-73.79729859573352,40.815625470545484],[-73.79729859573352,40.815447908739124],[-73.7968111615956,40.81491522332004],[-73.7858438934924,40.80079905971439],[-73.78730619590615,40.80000003158577],[-73.79339912263016,40.79991125068259],[-73.7992483322852,40.801686868746195],[-73.80509754194026,40.803373705906615],[-73.8109467515953,40.805060543067036],[-73.81606481004346,40.80541566667976],[-73.82288888797434,40.8043502958416],[-73.82715393668116,40.80310736319708],[-73.8299566829742,40.80248589687481],[-73.83007854150867,40.80239711597164],[-73.83044411711211,40.80230833506845],[-73.83495288288788,40.801864430552556],[-73.84384855590493,40.80097662152075],[-73.8526223703875,40.79982246977941],[-73.85298794599093,40.79964490797305],[-73.86273662874935,40.797247823587185],[-73.86273662874935,40.797159042684],[-73.86712353599063,40.79325268294407],[-73.87004814081814,40.79067803675185],[-73.87004814081814,40.79058925584867],[-73.87077929202502,40.78863607597871],[-73.87102300909399,40.786860457915104],[-73.87346017978359,40.7859726488833],[-73.87906567236968,40.78570630617376],[-73.8813809845248,40.78615021068966],[-73.88540231616264,40.78677167701192],[-73.88905807219705,40.787393143334185],[-73.89027665754185,40.79041169404231],[-73.89222639409353,40.79041169404231],[-73.89929418909337,40.79236487391227],[-73.91245491081722,40.79618245274902],[-73.9137953546965,40.796892699974464],[-73.91854783754123,40.799112222553966],[-73.92232545211012,40.802219554165276],[-73.92719979348931,40.802219554165276],[-73.92817466176515,40.8039063913257],[-73.93036811538579,40.80648103751792],[-73.93170855926508,40.807990312871986],[-73.93256156900644,40.811541548999195],[-73.93243971047195,40.8142049760946],[-73.932195993403,40.81456009970732],[-73.93207413486851,40.81500400422322],[-73.93207413486851,40.81944304938223],[-73.93231785193748,40.822284038283996],[-73.93243971047195,40.82281672370308],[-73.93243971047195,40.8231718473158],[-73.93231785193748,40.823615751831696],[-73.93256156900644,40.82414843725078],[-73.93256156900644,40.82468112266986],[-73.93268342754092,40.82521380808894],[-73.93256156900644,40.82574649350802],[-73.93256156900644,40.82778845428117],[-73.93256156900644,40.827877235184346],[-73.93304900314436,40.82832113970025],[-73.93304900314436,40.82894260602251],[-73.93304900314436,40.82903138692569],[-73.9334145787478,40.83320408937516],[-73.93304900314436,40.835689954664204],[-73.92963696417891,40.842170960596356],[-73.92817466176515,40.84536707311084],[-73.92805280323067,40.8455446349172],[-73.92719979348931,40.84669878665854],[-73.92390961305836,40.850516365495295],[-73.92366589598939,40.85096027001119],[-73.92195987650666,40.85344613530024],[-73.92135058383427,40.854422725235224],[-73.92122872529978,40.85468906794476],[-73.92001013995498,40.856642247814726],[-73.91818226193779,40.85868420858787],[-73.91696367659299,40.85992714123239],[-73.91647624245506,40.860371045748295],[-73.91464836443787,40.8621466638119],[-73.91416093029994,40.86276813013416],[-73.91026145719658,40.86756229890589],[-73.90977402305866,40.86827254613133],[-73.90855543771386,40.87164622045218],[-73.90818986211042,40.87217890587126],[-73.90697127676562,40.87342183851578],[-73.9070931353001,40.87626282741755],[-73.90867729624834,40.87777210277161],[-73.91001774012761,40.87901503541613],[-73.91525765711026,40.87555258019211],[-73.91879155461018,40.876351608320725],[-73.91866969607571,40.87661795103027],[-73.92025385702395,40.87901503541613],[-73.92086314969634,40.878571130900234],[-73.92135058383427,40.87821600728751],[-73.92451890573075,40.87901503541613],[-73.92464076426523,40.87901503541613],[-73.9334145787478,40.88212236702744],[-73.92902767150652,40.88957996289457],[-73.91964456435154,40.913462025850045],[-73.9192789887481,40.914793739397744],[-73.91842597900674,40.91745716649315],[-73.91793854486883,40.917545947396334]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.76707767918246,40.88478579412285],[-73.76707767918246,40.883542861478325],[-73.7662246694411,40.88105699618928],[-73.76695582064798,40.880080406254294],[-73.77085529375134,40.879281378125675],[-73.77524220099262,40.88221114793062],[-73.77512034245815,40.88416432780058],[-73.77280503030302,40.88460823231649],[-73.77231759616511,40.88753800212143],[-73.77061157668238,40.88842581115323],[-73.76829626452727,40.88762678302461],[-73.76732139625142,40.886916535799166],[-73.76719953771695,40.88629506947691],[-73.76707767918246,40.885407260445106],[-73.76707767918246,40.88478579412285]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.91245491081722,40.79618245274902],[-73.9095303059897,40.78996778952641],[-73.91233305228275,40.78810339055963],[-73.91416093029994,40.78748192423736],[-73.9156232327137,40.78623899159284],[-73.91659810098955,40.78393068811015],[-73.91976642288603,40.78251019365927],[-73.91988828142051,40.78224385094973],[-73.92013199848947,40.78135604191793],[-73.92403147159283,40.778692614822525],[-73.92537191547211,40.778337491209804],[-73.92719979348931,40.77647309224302],[-73.92963696417891,40.77629553043666],[-73.93073369098924,40.777005777662104],[-73.93073369098924,40.777538463081186],[-73.93329272021332,40.77842627211298],[-73.93451130555812,40.778159929403444],[-73.93572989090292,40.7765618731462],[-73.9364610421098,40.77487503598578],[-73.93719219331668,40.773454541534896],[-73.93682661771324,40.77159014256811],[-73.93451130555812,40.77096867624585],[-73.93560803236844,40.76874915366634],[-73.93865449573045,40.768660372763165],[-73.93914192986837,40.76741744011864],[-73.94060423228213,40.76706231650592],[-73.94377255417861,40.76413254670098],[-73.94401627124756,40.76244570954055],[-73.95254636866117,40.75365640012571],[-73.95510539788526,40.750460287611226],[-73.95681141736797,40.748240765031724],[-73.95815186124726,40.745666118839495],[-73.96132018314374,40.74291391084091],[-73.96132018314374,40.740605607358226],[-73.9609546075403,40.73927389381052],[-73.96241690995406,40.736166562199216],[-73.96253876848854,40.73350313510381],[-73.96229505141959,40.73288166878155],[-73.96229505141959,40.732082640652926],[-73.96205133435062,40.731549955233845],[-73.96180761728166,40.729863118073425],[-73.96168575874718,40.72915287084798],[-73.96168575874718,40.72719969097802],[-73.9615639002127,40.72586797743031],[-73.9615639002127,40.72489138749533],[-73.9615639002127,40.72471382568897],[-73.9615639002127,40.723914797560354],[-73.96205133435062,40.72338211214127],[-73.96266062702303,40.72276064581901],[-73.96570709038502,40.7187655051759],[-73.96838797814358,40.71414889821053],[-73.96850983667807,40.712994746469185],[-73.96899727081599,40.712462061050104],[-73.96911912935047,40.71210693743738],[-73.96948470495391,40.706868864149754],[-73.97009399762631,40.70695764505294],[-73.97021585616079,40.707046425956115],[-73.97216559271247,40.7089108249229],[-73.97460276340207,40.707579111375196],[-73.97911152917784,40.70580349331159],[-73.97947710478128,40.70562593150523],[-73.98045197305711,40.70527080789251],[-73.98203613400536,40.70527080789251],[-73.98398587055704,40.70491568427979],[-73.98703233391905,40.70473812247343],[-73.98751976805697,40.70473812247343],[-73.98946950460865,40.70509324608615],[-73.98959136314312,40.70509324608615],[-73.99129738262585,40.70473812247343],[-73.99215039236721,40.70447177976389],[-73.99361269478096,40.70473812247343],[-73.99458756305681,40.70420543705435],[-73.99556243133264,40.70322884711937],[-73.99763402641881,40.70012151550806],[-73.99799960202225,40.69958883008898],[-73.99836517762569,40.69896736376672],[-73.99885261176361,40.69807955473492],[-73.99921818736705,40.69710296479994],[-73.99958376297049,40.69657027938086],[-73.99994933857394,40.696037593961776],[-74.00043677271185,40.694972223123614],[-74.00068048978082,40.69364050957591],[-74.00153349952217,40.693107824156826],[-74.00189907512562,40.69230879602821],[-74.00238650926353,40.69150976789958],[-74.0026302263325,40.691065863383685],[-74.00299580193594,40.69035561615824],[-74.00336137753938,40.68973414983598],[-74.00397067021177,40.689023902610536],[-74.00494553848762,40.688491217191455],[-74.00579854822898,40.68778096996601],[-74.00713899210825,40.68707072274057],[-74.00835757745305,40.68636047551513],[-74.02054343090107,40.678814098744816],[-74.02285874305619,40.68129996403386],[-74.02395546986651,40.682365334872024],[-74.02419918693548,40.68351948661337],[-74.02480847960787,40.686981941837395],[-74.02212759184931,40.692575138737745],[-74.02176201624587,40.69346294776955],[-74.0184718358149,40.69541612763951],[-74.01676581633218,40.701808352668486],[-74.01688767486667,40.70198591447485],[-74.01810626021147,40.70429421795753],[-74.0184718358149,40.705004465182974],[-74.01956856262522,40.70695764505294],[-74.01969042115971,40.707046425956115],[-74.02456476253892,40.709443510341984],[-74.02456476253892,40.709443510341984],[-74.02334617719411,40.71548061175823],[-74.02151829917692,40.72506894930169],[-74.02139644064243,40.72569041562395],[-74.02115272357346,40.72737725278438],[-74.01956856262522,40.733769477813354],[-74.01798440167698,40.73962901742324],[-74.01384121150467,40.75658616993066],[-74.00921058719442,40.7635998612819],[-74.00043677271185,40.77576284501758],[-73.99836517762569,40.77860383391934],[-73.98167055840192,40.80177564964937],[-73.96814426107463,40.82059720112357],[-73.96802240254014,40.82068598202675],[-73.96314806116095,40.82690064524937],[-73.95400867107493,40.84803050020625],[-73.95218079305774,40.85131539362391],[-73.95193707598878,40.851670517236634],[-73.94828131995438,40.85841786587833],[-73.93804520305804,40.874664771160305],[-73.9334145787478,40.88212236702744],[-73.92464076426523,40.87901503541613],[-73.92451890573075,40.87901503541613],[-73.92135058383427,40.87821600728751],[-73.92086314969634,40.878571130900234],[-73.92025385702395,40.87901503541613],[-73.91866969607571,40.87661795103027],[-73.91879155461018,40.876351608320725],[-73.91525765711026,40.87555258019211],[-73.91001774012761,40.87901503541613],[-73.90867729624834,40.87777210277161],[-73.9070931353001,40.87626282741755],[-73.90697127676562,40.87342183851578],[-73.90818986211042,40.87217890587126],[-73.90855543771386,40.87164622045218],[-73.90977402305866,40.86827254613133],[-73.91026145719658,40.86756229890589],[-73.91416093029994,40.86276813013416],[-73.91464836443787,40.8621466638119],[-73.91647624245506,40.860371045748295],[-73.91696367659299,40.85992714123239],[-73.91818226193779,40.85868420858787],[-73.92001013995498,40.856642247814726],[-73.92122872529978,40.85468906794476],[-73.92135058383427,40.854422725235224],[-73.92195987650666,40.85344613530024],[-73.92366589598939,40.85096027001119],[-73.92390961305836,40.850516365495295],[-73.92719979348931,40.84669878665854],[-73.92805280323067,40.8455446349172],[-73.92817466176515,40.84536707311084],[-73.92963696417891,40.842170960596356],[-73.93304900314436,40.835689954664204],[-73.9334145787478,40.83320408937516],[-73.93304900314436,40.82903138692569],[-73.93304900314436,40.82894260602251],[-73.93304900314436,40.82832113970025],[-73.93256156900644,40.827877235184346],[-73.93256156900644,40.82778845428117],[-73.93256156900644,40.82574649350802],[-73.93268342754092,40.82521380808894],[-73.93256156900644,40.82468112266986],[-73.93256156900644,40.82414843725078],[-73.93231785193748,40.823615751831696],[-73.93243971047195,40.8231718473158],[-73.93243971047195,40.82281672370308],[-73.93231785193748,40.822284038283996],[-73.93207413486851,40.81944304938223],[-73.93207413486851,40.81500400422322],[-73.932195993403,40.81456009970732],[-73.93243971047195,40.8142049760946],[-73.93256156900644,40.811541548999195],[-73.93170855926508,40.807990312871986],[-73.93036811538579,40.80648103751792],[-73.92817466176515,40.8039063913257],[-73.92719979348931,40.802219554165276],[-73.92232545211012,40.802219554165276],[-73.91854783754123,40.799112222553966],[-73.9137953546965,40.796892699974464],[-73.91245491081722,40.79618245274902]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.76829626452727,40.80088784061757],[-73.76403121582045,40.80674738022746],[-73.75793828909646,40.815447908739124],[-73.75550111840685,40.81891036396315],[-73.75403881599308,40.82095232473629],[-73.75416067452757,40.82255038099353],[-73.75428253306205,40.82512502718576],[-73.75440439159652,40.82681186434618],[-73.75379509892413,40.82743333066845],[-73.74831146487253,40.832937746665614],[-73.74806774780356,40.833115308471974],[-73.7466054453898,40.83462458382604],[-73.73685676263139,40.84430170227268],[-73.72832666521779,40.85291344988116],[-73.72662064573507,40.856819809621086],[-73.72893595789019,40.86161397839282],[-73.73064197737291,40.86543155722956],[-73.7295452505626,40.866496928067725],[-73.71370364108017,40.87013694509812],[-73.67556191978791,40.85699737142745],[-73.67556191978791,40.85699737142745],[-73.67507448564999,40.85717493323381],[-73.67275917349487,40.85797396136243],[-73.6706875784087,40.85868420858787],[-73.66971271013286,40.85903933220059],[-73.65582083720213,40.8639222818755],[-73.65435853478837,40.87821600728751],[-73.64997162754709,40.883010176059244],[-73.64107595453004,40.8925985136027],[-73.63668904728875,40.89597218792355],[-73.63376444246123,40.898191710503056],[-73.62694036453034,40.89943464314757],[-73.6210911548753,40.89845805321259],[-73.61755725737538,40.89792536779351],[-73.60183750642744,40.90280831746842],[-73.59513528703104,40.907336143530614],[-73.59172324806559,40.90840151436878],[-73.58380244332439,40.910976160561],[-73.57502862884182,40.913817149462766],[-73.56613295582477,40.91577032933273],[-73.55833400961805,40.91266299772142],[-73.54870718539412,40.90893419978786],[-73.53152513203243,40.911952750495985],[-73.52994097108419,40.91221909320552],[-73.52591963944634,40.91301812133414],[-73.51921742004994,40.91426105397866],[-73.51495237134313,40.91284055952778],[-73.49996377160208,40.91816741371859],[-73.49667359117112,40.923494267909405],[-73.49033694737815,40.9194991272663],[-73.48850906936094,40.91577032933273],[-73.48741234255063,40.915681548429546],[-73.48631561574031,40.913994711269126],[-73.48485331332654,40.90866785707831],[-73.47961339634391,40.90076635669528],[-73.47729808418877,40.899345862244395],[-73.47607949884397,40.87715063644935],[-73.4735204696199,40.874487209353944],[-73.4673056843614,40.86809498432497],[-73.46389364539597,40.86809498432497],[-73.46255320151668,40.86729595619635],[-73.46401550393045,40.85948323671649],[-73.46328435272356,40.85788518045925],[-73.45743514306852,40.84874074743169],[-73.45524168944789,40.84092802795183],[-73.45402310410309,40.83515726924512],[-73.45158593341348,40.81962061118859],[-73.44878318712044,40.80532688577658],[-73.44878318712044,40.804882981260675],[-73.44500557255155,40.78632777249602],[-73.4447618554826,40.78561752527058],[-73.44415256281019,40.78197750824019],[-73.4385470702241,40.75134809664303],[-73.43720662634483,40.745666118839495],[-73.43659733367242,40.74202610180911],[-73.43598804100003,40.73927389381052],[-73.4355006068621,40.7371431521342],[-73.43501317272418,40.734657286845156],[-73.43403830444835,40.72941921355752],[-73.43318529470699,40.72462504478579],[-73.43294157763802,40.72347089304445],[-73.43294157763802,40.72329333123809],[-73.43221042643114,40.71974209511088],[-73.43196670936219,40.71894306698226],[-73.43196670936219,40.7187655051759],[-73.43086998255185,40.712817184662825],[-73.43086998255185,40.712639622856464],[-73.4306262654829,40.711663032921486],[-73.43038254841395,40.709976195761065],[-73.42977325574154,40.706513740537034],[-73.42892024600017,40.7017195717653],[-73.42867652893122,40.70056542002396],[-73.42855467039674,40.70029907731442],[-73.42794537772434,40.697014183896755],[-73.42794537772434,40.6963927175745],[-73.42770166065537,40.695682470349055],[-73.42770166065537,40.69523856583315],[-73.4275798021209,40.69479466131725],[-73.42733608505193,40.693107824156826],[-73.4269705094485,40.691065863383685],[-73.4257519241037,40.68431851474199],[-73.42502077289681,40.68041215500206],[-73.42489891436233,40.6797906886798],[-73.42465519729338,40.67872531784164],[-73.42355847048306,40.67117894107132],[-73.42380218755201,40.667894047653654],[-73.42465519729338,40.66594086778369],[-73.42441148022442,40.660081328173796],[-73.42416776315545,40.658039367400654],[-73.42563006556922,40.65590862572433],[-73.42550820703474,40.65457691217663],[-73.42538634850025,40.65182470417804],[-73.4239240460865,40.614803067551904],[-73.4239240460865,40.61134061232788],[-73.4239240460865,40.60983133697381],[-73.45036734806868,40.60352789284802],[-73.48485331332654,40.59740201052859],[-73.5623553412559,40.58372975143884],[-73.57441933616943,40.585416588599266],[-73.57600349711767,40.585594150405626],[-73.57856252634174,40.58594927401835],[-73.58087783849686,40.58630439763107],[-73.58307129211751,40.586570740340605],[-73.583193150652,40.58665952124379],[-73.58380244332439,40.58665952124379],[-73.59915661866889,40.58728098756605],[-73.60244679909984,40.58736976846923],[-73.61085503797896,40.58772489208195],[-73.62803709134066,40.58532780769608],[-73.62852452547858,40.58532780769608],[-73.63742019849563,40.58408487505156],[-73.64083223746107,40.58364097053566],[-73.64668144711612,40.582841942407036],[-73.64948419340917,40.582841942407036],[-73.65240879823668,40.58293072331022],[-73.65521154452972,40.58293072331022],[-73.65813614935725,40.58293072331022],[-73.65984216883997,40.5830195042134],[-73.68104555383951,40.58328584692294],[-73.68701662202903,40.58337462782612],[-73.69030680246,40.5834634087293],[-73.69384069995992,40.5834634087293],[-73.6970090218564,40.58355218963248],[-73.7012740705632,40.58364097053566],[-73.7178468312525,40.58381853234202],[-73.73953765038996,40.58417365595474],[-73.75476996719998,40.58443999866428],[-73.75428253306205,40.586393178534244],[-73.75233279651037,40.58799123479149],[-73.74770217220012,40.5915424709187],[-73.74441199176916,40.592874184466396],[-73.74343712349332,40.592874184466396],[-73.74319340642435,40.592874184466396],[-73.73685676263139,40.59278540356322],[-73.73710047970036,40.59358443169184],[-73.7386846406486,40.59536004975544],[-73.73844092357963,40.596780544206325],[-73.7386846406486,40.59749079143177],[-73.73783163090724,40.60113080846216],[-73.73831906504516,40.60299520742894],[-73.74039066013131,40.604770825492544],[-73.74148738694164,40.604948387298904],[-73.74331526495884,40.60672400536251],[-73.7435589820278,40.60690156716887],[-73.74343712349332,40.60752303349113],[-73.74477756737261,40.60965377516745],[-73.74550871857949,40.61063036510244],[-73.74563057711396,40.6108079269088],[-73.74709287952773,40.611251831424696],[-73.74758031366565,40.61151817413424],[-73.74928633314836,40.611429393231056],[-73.75355138185517,40.60983133697381],[-73.75489182573445,40.609032308845194],[-73.75720713788957,40.6108079269088],[-73.75976616711365,40.610541584199254],[-73.7637874987515,40.6139152585201],[-73.76585909383766,40.614359163036006],[-73.76659024504454,40.619774798129995],[-73.76671210357902,40.620928949871335],[-73.76695582064798,40.62279334883812],[-73.76659024504454,40.62581189954625],[-73.74672730392429,40.633358276316564],[-73.74404641616572,40.63682073154059],[-73.74185296254508,40.63726463605649],[-73.74099995280372,40.63664316973423],[-73.742340396683,40.6345124280579],[-73.74002508452787,40.63477877076745],[-73.74039066013131,40.63646560792787],[-73.74124366987267,40.6421475857314],[-73.74124366987267,40.642769052053666],[-73.7405125186658,40.64534369824589],[-73.74075623573476,40.64649784998723],[-73.73539446021763,40.64845102985719],[-73.73405401633835,40.64907249617946],[-73.73088569444187,40.64942761979218],[-73.73015454323499,40.6497827434049],[-73.72808294814882,40.650049086114436],[-73.72479276771787,40.65120323785578],[-73.72515834332131,40.652801294113026],[-73.72613321159714,40.657861805594294],[-73.72747365547643,40.660258889980156],[-73.72747365547643,40.663188659785106],[-73.72832666521779,40.66505305875189],[-73.72820480668331,40.66567452507415],[-73.72808294814882,40.66647355320277],[-73.72808294814882,40.667272581331396],[-73.72783923107987,40.66940332300772],[-73.72759551401091,40.67073503655542],[-73.72735179694195,40.67339846365083],[-73.72735179694195,40.67357602545719],[-73.72588949452819,40.67668335706849],[-73.72564577745922,40.67774872790665],[-73.72564577745922,40.677926289713014],[-73.72552391892475,40.68041215500206],[-73.72552391892475,40.68076727861478],[-73.72552391892475,40.682187773065664],[-73.72503648478683,40.683253143903826],[-73.7257676359937,40.68502876196743],[-73.72588949452819,40.68778096996601],[-73.72588949452819,40.6896453689328],[-73.72601135306266,40.69559368944587],[-73.72588949452819,40.69612637486495],[-73.72528020185578,40.69958883008898],[-73.72552391892475,40.70065420092714],[-73.72564577745922,40.70198591447485],[-73.72564577745922,40.70216347628121],[-73.72564577745922,40.70251859989393],[-73.72588949452819,40.705004465182974],[-73.7257676359937,40.70855570131018],[-73.7257676359937,40.70899960582608],[-73.72625507013163,40.709798633954705],[-73.72796108961435,40.715746954467775],[-73.72857038228675,40.71823281975682],[-73.72905781642467,40.719475752401344],[-73.72978896763155,40.720985027755404],[-73.72747365547643,40.72222796039993],[-73.72662064573507,40.72240552220629],[-73.72649878720058,40.72258308401265],[-73.72601135306266,40.72276064581901],[-73.72564577745922,40.72284942672219],[-73.72418347504546,40.72329333123809],[-73.72357418237307,40.72338211214127],[-73.72284303116618,40.72355967394763],[-73.7221118799593,40.72364845485081],[-73.72138072875242,40.723914797560354],[-73.72052771901106,40.72418114026989],[-73.7202840019421,40.72418114026989],[-73.71345992401122,40.725779196527135],[-73.7111446118561,40.72604553923667],[-73.71004788504577,40.72604553923667],[-73.70882929970097,40.726311881946216],[-73.70712328021825,40.726755786462114],[-73.70651398754585,40.727643595493916],[-73.70590469487345,40.72870896633208],[-73.70419867539073,40.731017269814764],[-73.70395495832177,40.731549955233845],[-73.702492655908,40.73368069691017],[-73.70188336323561,40.734479725038796],[-73.70163964616664,40.73492362955469],[-73.7012740705632,40.73554509587696],[-73.70042106082184,40.73643290490876],[-73.69956805108049,40.738030961166],[-73.699446192546,40.73820852297236],[-73.699446192546,40.73998414103596],[-73.69968990961496,40.742114882712286],[-73.69993362668393,40.74389050077589],[-73.69993362668393,40.74575489974268],[-73.70029920228737,40.74770807961264],[-73.70078663642529,40.751436877546205],[-73.70139592909769,40.75170322025575],[-73.70188336323561,40.752147124771646],[-73.70456425099417,40.75365640012571],[-73.70724513875273,40.75560957999568],[-73.71224133866642,40.758628130703805],[-73.71370364108017,40.75951593973561],[-73.71577523616634,40.76084765328331],[-73.71955285073523,40.763244737669176],[-73.72016214340762,40.76368864218507],[-73.72052771901106,40.76395498489462],[-73.72515834332131,40.7667071928932],[-73.72735179694195,40.76795012553772],[-73.72820480668331,40.76857159185998],[-73.733201006597,40.77167892347129],[-73.73905021625204,40.77540772140486],[-73.7411218113382,40.7765618731462],[-73.74648358685532,40.780024328370224],[-73.74928633314836,40.78188872733701],[-73.74977376728629,40.78215507004655],[-73.75623226961373,40.788724856881885],[-73.76829626452727,40.80088784061757]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.77341432297543,40.85948323671649],[-73.77061157668238,40.860371045748295],[-73.76634652797559,40.85735249504017],[-73.76512794263078,40.854245163428864],[-73.76598095237215,40.844923168594946],[-73.76963670840654,40.8446568258854],[-73.77304874737199,40.848119281109426],[-73.77365804004438,40.85486662975112],[-73.77341432297543,40.85948323671649]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.7858438934924,40.80079905971439],[-73.78133512771663,40.7949395201045],[-73.77597335219951,40.79529464371722],[-73.76829626452727,40.80079905971439],[-73.76829626452727,40.80088784061757],[-73.75623226961373,40.788724856881885],[-73.74977376728629,40.78215507004655],[-73.74928633314836,40.78188872733701],[-73.74648358685532,40.780024328370224],[-73.7411218113382,40.7765618731462],[-73.73905021625204,40.77540772140486],[-73.733201006597,40.77167892347129],[-73.72820480668331,40.76857159185998],[-73.72735179694195,40.76795012553772],[-73.72515834332131,40.7667071928932],[-73.72052771901106,40.76395498489462],[-73.72016214340762,40.76368864218507],[-73.71955285073523,40.763244737669176],[-73.71577523616634,40.76084765328331],[-73.71370364108017,40.75951593973561],[-73.71224133866642,40.758628130703805],[-73.70724513875273,40.75560957999568],[-73.70456425099417,40.75365640012571],[-73.70188336323561,40.752147124771646],[-73.70139592909769,40.75170322025575],[-73.70078663642529,40.751436877546205],[-73.70029920228737,40.74770807961264],[-73.69993362668393,40.74575489974268],[-73.69993362668393,40.74389050077589],[-73.69968990961496,40.742114882712286],[-73.699446192546,40.73998414103596],[-73.699446192546,40.73820852297236],[-73.69956805108049,40.738030961166],[-73.70042106082184,40.73643290490876],[-73.7012740705632,40.73554509587696],[-73.70163964616664,40.73492362955469],[-73.70188336323561,40.734479725038796],[-73.702492655908,40.73368069691017],[-73.70395495832177,40.731549955233845],[-73.70419867539073,40.731017269814764],[-73.70590469487345,40.72870896633208],[-73.70651398754585,40.727643595493916],[-73.70712328021825,40.726755786462114],[-73.70882929970097,40.726311881946216],[-73.71004788504577,40.72604553923667],[-73.7111446118561,40.72604553923667],[-73.71345992401122,40.725779196527135],[-73.7202840019421,40.72418114026989],[-73.72052771901106,40.72418114026989],[-73.72138072875242,40.723914797560354],[-73.7221118799593,40.72364845485081],[-73.72284303116618,40.72355967394763],[-73.72357418237307,40.72338211214127],[-73.72418347504546,40.72329333123809],[-73.72564577745922,40.72284942672219],[-73.72601135306266,40.72276064581901],[-73.72649878720058,40.72258308401265],[-73.72662064573507,40.72240552220629],[-73.72747365547643,40.72222796039993],[-73.72978896763155,40.720985027755404],[-73.72905781642467,40.719475752401344],[-73.72857038228675,40.71823281975682],[-73.72796108961435,40.715746954467775],[-73.72625507013163,40.709798633954705],[-73.7257676359937,40.70899960582608],[-73.7257676359937,40.70855570131018],[-73.72588949452819,40.705004465182974],[-73.72564577745922,40.70251859989393],[-73.72564577745922,40.70216347628121],[-73.72564577745922,40.70198591447485],[-73.72552391892475,40.70065420092714],[-73.72528020185578,40.69958883008898],[-73.72588949452819,40.69612637486495],[-73.72601135306266,40.69559368944587],[-73.72588949452819,40.6896453689328],[-73.72588949452819,40.68778096996601],[-73.7257676359937,40.68502876196743],[-73.72503648478683,40.683253143903826],[-73.72552391892475,40.682187773065664],[-73.72552391892475,40.68076727861478],[-73.72552391892475,40.68041215500206],[-73.72564577745922,40.677926289713014],[-73.72564577745922,40.67774872790665],[-73.72588949452819,40.67668335706849],[-73.72735179694195,40.67357602545719],[-73.72735179694195,40.67339846365083],[-73.72759551401091,40.67073503655542],[-73.72783923107987,40.66940332300772],[-73.72808294814882,40.667272581331396],[-73.72808294814882,40.66647355320277],[-73.72820480668331,40.66567452507415],[-73.72832666521779,40.66505305875189],[-73.72747365547643,40.663188659785106],[-73.72747365547643,40.660258889980156],[-73.72613321159714,40.657861805594294],[-73.72515834332131,40.652801294113026],[-73.72479276771787,40.65120323785578],[-73.72808294814882,40.650049086114436],[-73.73015454323499,40.6497827434049],[-73.73088569444187,40.64942761979218],[-73.73405401633835,40.64907249617946],[-73.73539446021763,40.64845102985719],[-73.74075623573476,40.64649784998723],[-73.7405125186658,40.64534369824589],[-73.74124366987267,40.642769052053666],[-73.74124366987267,40.6421475857314],[-73.74039066013131,40.63646560792787],[-73.74002508452787,40.63477877076745],[-73.742340396683,40.6345124280579],[-73.74099995280372,40.63664316973423],[-73.74185296254508,40.63726463605649],[-73.74404641616572,40.63682073154059],[-73.74672730392429,40.633358276316564],[-73.76659024504454,40.62581189954625],[-73.76695582064798,40.62279334883812],[-73.76671210357902,40.620928949871335],[-73.76659024504454,40.619774798129995],[-73.76585909383766,40.614359163036006],[-73.7637874987515,40.6139152585201],[-73.75976616711365,40.610541584199254],[-73.75720713788957,40.6108079269088],[-73.75489182573445,40.609032308845194],[-73.75355138185517,40.60983133697381],[-73.74928633314836,40.611429393231056],[-73.74758031366565,40.61151817413424],[-73.74709287952773,40.611251831424696],[-73.74563057711396,40.6108079269088],[-73.74550871857949,40.61063036510244],[-73.74477756737261,40.60965377516745],[-73.74343712349332,40.60752303349113],[-73.7435589820278,40.60690156716887],[-73.74331526495884,40.60672400536251],[-73.74148738694164,40.604948387298904],[-73.74039066013131,40.604770825492544],[-73.73831906504516,40.60299520742894],[-73.73783163090724,40.60113080846216],[-73.7386846406486,40.59749079143177],[-73.73844092357963,40.596780544206325],[-73.7386846406486,40.59536004975544],[-73.73710047970036,40.59358443169184],[-73.73685676263139,40.59278540356322],[-73.74319340642435,40.592874184466396],[-73.74343712349332,40.592874184466396],[-73.74441199176916,40.592874184466396],[-73.74770217220012,40.5915424709187],[-73.75233279651037,40.58799123479149],[-73.75428253306205,40.586393178534244],[-73.7533076647862,40.59056588098371],[-73.76415307435494,40.590654661886894],[-73.76780883038934,40.590654661886894],[-73.77012414254446,40.59074344279007],[-73.77329246444094,40.59074344279007],[-73.77487662538918,40.59074344279007],[-73.77609521073398,40.59056588098371],[-73.77646078633742,40.590477100080534],[-73.7888903568544,40.58808001569467],[-73.79084009340608,40.58772489208195],[-73.79120566900951,40.58763611117877],[-73.79181496168192,40.58754733027559],[-73.79559257625081,40.586748302146965],[-73.80083249323344,40.58577171221199],[-73.8016855029748,40.585594150405626],[-73.80436639073338,40.585061464986545],[-73.80680356142297,40.58461756047064],[-73.81777082952618,40.5816877906657],[-73.81911127340547,40.581332667052976],[-73.82142658556059,40.58071120073071],[-73.82861623909491,40.57875802086075],[-73.82959110737076,40.57849167815121],[-73.83446544874995,40.5771599646035],[-73.83556217556028,40.57680484099078],[-73.84409227297388,40.5736087284763],[-73.84774802900829,40.572277014928595],[-73.84860103874965,40.57201067221906],[-73.85298794599093,40.570412615961814],[-73.85737485323222,40.56881455970457],[-73.85981202392182,40.56792675067277],[-73.8629803458183,40.566683818028245],[-73.8635896384907,40.566506256221885],[-73.86517379943894,40.56588478989962],[-73.87894381383519,40.560913059321535],[-73.898441179352,40.55540864332436],[-73.93451130555812,40.54519883945864],[-73.93451130555812,40.54528762036182],[-73.93451130555812,40.555231081518],[-73.93451130555812,40.55531986242118],[-73.93268342754092,40.56029159299927],[-73.93572989090292,40.56490819996464],[-73.93926378840284,40.5664174753187],[-73.93353643728229,40.567482846156864],[-73.92890581297203,40.56828187428549],[-73.90489968167945,40.57147798679998],[-73.89088595021424,40.57254335763814],[-73.886255325904,40.57334238576676],[-73.8850367405592,40.57307604305722],[-73.87930938943863,40.57414141389538],[-73.87102300909399,40.57831411634485],[-73.86578309211134,40.580622419827534],[-73.85956830685285,40.58372975143884],[-73.85481582400813,40.58586049311516],[-73.84969776555997,40.58834635840421],[-73.83434359021548,40.60672400536251],[-73.83324686340515,40.62900801206074],[-73.83592775116372,40.631671439156136],[-73.8360496096982,40.63176022005932],[-73.83739005357748,40.63326949541338],[-73.84823546314621,40.643745641988644],[-73.85518139961158,40.642769052053666],[-73.8574967117667,40.64996030521126],[-73.86066503366318,40.65386666495119],[-73.86078689219765,40.654133007660725],[-73.86103060926662,40.65457691217663],[-73.86249291168038,40.656707653852955],[-73.8617617604735,40.65892717643246],[-73.86163990193901,40.65901595733563],[-73.85822786297358,40.662478412559665],[-73.85554697521502,40.663011097978746],[-73.85579069228397,40.664165249720085],[-73.8562781264219,40.66558574417097],[-73.85676556055981,40.667894047653654],[-73.85725299469773,40.66966966571726],[-73.8574967117667,40.67100137926496],[-73.86029945805974,40.67064625565224],[-73.86090875073214,40.67313212094128],[-73.86090875073214,40.673664806360364],[-73.8611524678011,40.674197491779445],[-73.8617617604735,40.677127261584396],[-73.86212733607694,40.67837019422892],[-73.86322406288726,40.678281413325735],[-73.86334592142174,40.67854775603528],[-73.86371149702518,40.68032337409888],[-73.86395521409415,40.681566306743406],[-73.86493008236998,40.681388744937045],[-73.86590495064583,40.681211183130685],[-73.86627052624927,40.682542896678385],[-73.86639238478374,40.68369704841973],[-73.86675796038719,40.684584857451526],[-73.86712353599063,40.68609413280559],[-73.86736725305958,40.686981941837395],[-73.86736725305958,40.68778096996601],[-73.86761097012854,40.688313655385095],[-73.86773282866302,40.689023902610536],[-73.86785468719751,40.6896453689328],[-73.86809840426646,40.6905331779646],[-73.86907327254231,40.69452831860771],[-73.86919513107678,40.694972223123614],[-73.87419133099047,40.69372929047909],[-73.87930938943863,40.69062195886778],[-73.8813809845248,40.68982293073916],[-73.8825995698696,40.68911268351372],[-73.88357443814544,40.688313655385095],[-73.88942364780048,40.68360826751655],[-73.89003294047288,40.68414095293563],[-73.89247011116248,40.68280923938793],[-73.89393241357625,40.684584857451526],[-73.89649144280033,40.68129996403386],[-73.90124392564505,40.68724828454693],[-73.90039091590369,40.68742584635329],[-73.90185321831746,40.690888301577324],[-73.90136578417953,40.69150976789958],[-73.90148764271402,40.69150976789958],[-73.90185321831746,40.691420986996405],[-73.90331552073121,40.692397576931384],[-73.90392481340362,40.692752700544105],[-73.90477782314497,40.69319660506001],[-73.90550897435186,40.69355172867273],[-73.90489968167945,40.69443953770453],[-73.90416853047257,40.69523856583315],[-73.9046559646105,40.695504908542695],[-73.9046559646105,40.695504908542695],[-73.90477782314497,40.69559368944587],[-73.90477782314497,40.69559368944587],[-73.90599640848977,40.69630393667131],[-73.90684941823113,40.69674784118722],[-73.90721499383457,40.697014183896755],[-73.9077024279725,40.697191745703115],[-73.9083117206449,40.69763565021901],[-73.90928658892074,40.698168335638094],[-73.90977402305866,40.698523459250815],[-73.91050517426554,40.69896736376672],[-73.91123632547242,40.69932248737944],[-73.9101395986621,40.70047663912078],[-73.91087074986898,40.700920543636684],[-73.91160190107585,40.70136444815258],[-73.91233305228275,40.701808352668486],[-73.91160190107585,40.70287372350665],[-73.91233305228275,40.703317628022546],[-73.91306420348963,40.70385031344163],[-73.91367349616202,40.70420543705435],[-73.9144046473689,40.70473812247343],[-73.91513579857579,40.70509324608615],[-73.91598880831714,40.70562593150523],[-73.91671995952403,40.706069836021136],[-73.91745111073091,40.70642495963386],[-73.91818226193779,40.706868864149754],[-73.91891341314467,40.70731276866566],[-73.91964456435154,40.70784545408474],[-73.92122872529978,40.70908838672926],[-73.92025385702395,40.71006497666424],[-73.92074129116187,40.7102425384706],[-73.92086314969634,40.7102425384706],[-73.92159430090322,40.71255084195329],[-73.92342217892043,40.71370499369463],[-73.92390961305836,40.71485914543597],[-73.92354403745492,40.71530304995187],[-73.92256916917907,40.716723544402754],[-73.92366589598939,40.71974209511088],[-73.92707793495484,40.72498016839851],[-73.93158670073059,40.728176280913],[-73.93950750547181,40.73146117433067],[-73.93950750547181,40.731549955233845],[-73.93975122254076,40.731905078846566],[-73.94036051521317,40.73314801149109],[-73.94669715900613,40.7371431521342],[-73.9468190175406,40.73723193303738],[-73.95230265159222,40.7389187701978],[-73.95376495400598,40.7393626747137],[-73.95461796374734,40.7393626747137],[-73.96241690995406,40.736166562199216],[-73.9609546075403,40.73927389381052],[-73.96132018314374,40.740605607358226],[-73.96132018314374,40.74291391084091],[-73.95815186124726,40.745666118839495],[-73.95681141736797,40.748240765031724],[-73.95510539788526,40.750460287611226],[-73.95254636866117,40.75365640012571],[-73.94401627124756,40.76244570954055],[-73.94377255417861,40.76413254670098],[-73.94060423228213,40.76706231650592],[-73.93914192986837,40.76741744011864],[-73.93865449573045,40.768660372763165],[-73.93560803236844,40.76874915366634],[-73.93451130555812,40.77096867624585],[-73.93682661771324,40.77159014256811],[-73.93719219331668,40.773454541534896],[-73.9364610421098,40.77487503598578],[-73.93572989090292,40.7765618731462],[-73.93451130555812,40.778159929403444],[-73.93329272021332,40.77842627211298],[-73.93073369098924,40.777538463081186],[-73.93073369098924,40.777005777662104],[-73.92963696417891,40.77629553043666],[-73.92719979348931,40.77647309224302],[-73.92537191547211,40.778337491209804],[-73.92403147159283,40.778692614822525],[-73.92013199848947,40.78135604191793],[-73.91988828142051,40.78224385094973],[-73.91976642288603,40.78251019365927],[-73.91659810098955,40.78393068811015],[-73.9156232327137,40.78623899159284],[-73.91416093029994,40.78748192423736],[-73.91233305228275,40.78810339055963],[-73.9095303059897,40.78996778952641],[-73.91245491081722,40.79618245274902],[-73.89929418909337,40.79236487391227],[-73.89222639409353,40.79041169404231],[-73.89027665754185,40.79041169404231],[-73.88905807219705,40.787393143334185],[-73.88540231616264,40.78677167701192],[-73.8813809845248,40.78615021068966],[-73.87906567236968,40.78570630617376],[-73.87346017978359,40.7859726488833],[-73.87102300909399,40.786860457915104],[-73.87077929202502,40.78863607597871],[-73.87004814081814,40.79058925584867],[-73.87004814081814,40.79067803675185],[-73.86712353599063,40.79325268294407],[-73.86273662874935,40.797159042684],[-73.86273662874935,40.797247823587185],[-73.85298794599093,40.79964490797305],[-73.8526223703875,40.79982246977941],[-73.84384855590493,40.80097662152075],[-73.83495288288788,40.801864430552556],[-73.83044411711211,40.80230833506845],[-73.83007854150867,40.80239711597164],[-73.8299566829742,40.80248589687481],[-73.82715393668116,40.80310736319708],[-73.82288888797434,40.8043502958416],[-73.81606481004346,40.80541566667976],[-73.8109467515953,40.805060543067036],[-73.80509754194026,40.803373705906615],[-73.7992483322852,40.801686868746195],[-73.79339912263016,40.79991125068259],[-73.78730619590615,40.80000003158577],[-73.7858438934924,40.80079905971439]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-73.96241690995406,40.736166562199216],[-73.95461796374734,40.7393626747137],[-73.95376495400598,40.7393626747137],[-73.95230265159222,40.7389187701978],[-73.9468190175406,40.73723193303738],[-73.94669715900613,40.7371431521342],[-73.94036051521317,40.73314801149109],[-73.93975122254076,40.731905078846566],[-73.93950750547181,40.731549955233845],[-73.93950750547181,40.73146117433067],[-73.93158670073059,40.728176280913],[-73.92707793495484,40.72498016839851],[-73.92366589598939,40.71974209511088],[-73.92256916917907,40.716723544402754],[-73.92354403745492,40.71530304995187],[-73.92390961305836,40.71485914543597],[-73.92342217892043,40.71370499369463],[-73.92159430090322,40.71255084195329],[-73.92086314969634,40.7102425384706],[-73.92074129116187,40.7102425384706],[-73.92025385702395,40.71006497666424],[-73.92122872529978,40.70908838672926],[-73.91964456435154,40.70784545408474],[-73.91891341314467,40.70731276866566],[-73.91818226193779,40.706868864149754],[-73.91745111073091,40.70642495963386],[-73.91671995952403,40.706069836021136],[-73.91598880831714,40.70562593150523],[-73.91513579857579,40.70509324608615],[-73.9144046473689,40.70473812247343],[-73.91367349616202,40.70420543705435],[-73.91306420348963,40.70385031344163],[-73.91233305228275,40.703317628022546],[-73.91160190107585,40.70287372350665],[-73.91233305228275,40.701808352668486],[-73.91160190107585,40.70136444815258],[-73.91087074986898,40.700920543636684],[-73.9101395986621,40.70047663912078],[-73.91123632547242,40.69932248737944],[-73.91050517426554,40.69896736376672],[-73.90977402305866,40.698523459250815],[-73.90928658892074,40.698168335638094],[-73.9083117206449,40.69763565021901],[-73.9077024279725,40.697191745703115],[-73.90721499383457,40.697014183896755],[-73.90684941823113,40.69674784118722],[-73.90599640848977,40.69630393667131],[-73.90477782314497,40.69559368944587],[-73.90477782314497,40.69559368944587],[-73.9046559646105,40.695504908542695],[-73.9046559646105,40.695504908542695],[-73.90416853047257,40.69523856583315],[-73.90489968167945,40.69443953770453],[-73.90550897435186,40.69355172867273],[-73.90477782314497,40.69319660506001],[-73.90392481340362,40.692752700544105],[-73.90331552073121,40.692397576931384],[-73.90185321831746,40.691420986996405],[-73.90148764271402,40.69150976789958],[-73.90136578417953,40.69150976789958],[-73.90185321831746,40.690888301577324],[-73.90039091590369,40.68742584635329],[-73.90124392564505,40.68724828454693],[-73.89649144280033,40.68129996403386],[-73.89393241357625,40.684584857451526],[-73.89247011116248,40.68280923938793],[-73.89003294047288,40.68414095293563],[-73.88942364780048,40.68360826751655],[-73.88357443814544,40.688313655385095],[-73.8825995698696,40.68911268351372],[-73.8813809845248,40.68982293073916],[-73.87930938943863,40.69062195886778],[-73.87419133099047,40.69372929047909],[-73.86919513107678,40.694972223123614],[-73.86907327254231,40.69452831860771],[-73.86809840426646,40.6905331779646],[-73.86785468719751,40.6896453689328],[-73.86773282866302,40.689023902610536],[-73.86761097012854,40.688313655385095],[-73.86736725305958,40.68778096996601],[-73.86736725305958,40.686981941837395],[-73.86712353599063,40.68609413280559],[-73.86675796038719,40.684584857451526],[-73.86639238478374,40.68369704841973],[-73.86627052624927,40.682542896678385],[-73.86590495064583,40.681211183130685],[-73.86493008236998,40.681388744937045],[-73.86395521409415,40.681566306743406],[-73.86371149702518,40.68032337409888],[-73.86334592142174,40.67854775603528],[-73.86322406288726,40.678281413325735],[-73.86212733607694,40.67837019422892],[-73.8617617604735,40.677127261584396],[-73.8611524678011,40.674197491779445],[-73.86090875073214,40.673664806360364],[-73.86090875073214,40.67313212094128],[-73.86029945805974,40.67064625565224],[-73.8574967117667,40.67100137926496],[-73.85725299469773,40.66966966571726],[-73.85676556055981,40.667894047653654],[-73.8562781264219,40.66558574417097],[-73.85579069228397,40.664165249720085],[-73.85554697521502,40.663011097978746],[-73.85822786297358,40.662478412559665],[-73.86163990193901,40.65901595733563],[-73.8617617604735,40.65892717643246],[-73.86249291168038,40.656707653852955],[-73.86103060926662,40.65457691217663],[-73.86078689219765,40.654133007660725],[-73.86066503366318,40.65386666495119],[-73.8574967117667,40.64996030521126],[-73.85518139961158,40.642769052053666],[-73.84823546314621,40.643745641988644],[-73.83739005357748,40.63326949541338],[-73.8360496096982,40.63176022005932],[-73.83592775116372,40.631671439156136],[-73.83324686340515,40.62900801206074],[-73.83434359021548,40.60672400536251],[-73.84969776555997,40.58834635840421],[-73.85481582400813,40.58586049311516],[-73.85956830685285,40.58372975143884],[-73.86578309211134,40.580622419827534],[-73.87102300909399,40.57831411634485],[-73.87930938943863,40.57414141389538],[-73.8850367405592,40.57307604305722],[-73.886255325904,40.57334238576676],[-73.89088595021424,40.57254335763814],[-73.90489968167945,40.57147798679998],[-73.92890581297203,40.56828187428549],[-73.93353643728229,40.567482846156864],[-73.93926378840284,40.5664174753187],[-73.94450370538549,40.56872577880139],[-73.94620972486821,40.57005749234909],[-73.95010919797157,40.57334238576676],[-73.9518152174543,40.57325360486358],[-73.95949230512655,40.572632138541316],[-73.99129738262585,40.57032383505863],[-74.00202093366009,40.570590177768175],[-74.00908872865995,40.572809700347676],[-74.01030731400475,40.57351994757312],[-74.01201333348746,40.574496537508104],[-74.01213519202194,40.57511800383036],[-74.01225705055643,40.57529556563672],[-74.01250076762538,40.57627215557171],[-74.01262262615987,40.576716060087605],[-74.0129882017633,40.57813655453849],[-74.01250076762538,40.57866923995757],[-74.01213519202194,40.57893558266711],[-74.01189147495299,40.57920192537665],[-74.00726085064274,40.58364097053566],[-74.00153349952217,40.590654661886894],[-74.0032395190049,40.59571517336816],[-74.01091660667714,40.60077568484944],[-74.02005599676315,40.6022849602035],[-74.02578334788372,40.603261550138484],[-74.03285114288356,40.60441570187982],[-74.03467902090077,40.60672400536251],[-74.03626318184901,40.60876596613565],[-74.03955336227996,40.61293866858512],[-74.04004079641788,40.61471428664873],[-74.04016265495237,40.61542453387417],[-74.04052823055581,40.617022590131405],[-74.04089380615925,40.61862064638865],[-74.04138124029717,40.62048504535544],[-74.04162495736612,40.621461635290416],[-74.0418686744351,40.62252700612858],[-74.04199053296956,40.62323725335402],[-74.042356108573,40.624835309611264],[-74.04223425003853,40.625545556836705],[-74.04089380615925,40.629274354770274],[-74.03991893788341,40.63238168638158],[-74.03955336227996,40.633358276316564],[-74.03955336227996,40.63344705721974],[-74.03894406960757,40.635222675283345],[-74.03833477693516,40.63708707425013],[-74.03772548426277,40.637974883281935],[-74.03614132331452,40.64046074857098],[-74.03358229409044,40.644100765601365],[-74.03346043555597,40.644278327407726],[-74.03309485995253,40.64498857463317],[-74.03211999167668,40.64649784998723],[-74.02956096245259,40.648717372566736],[-74.02456476253892,40.65324519862892],[-74.01834997728042,40.65892717643246],[-74.01822811874595,40.65901595733563],[-74.01859369434939,40.66238963165648],[-74.01895926995283,40.66567452507415],[-74.01969042115971,40.6717116264904],[-74.02042157236659,40.678814098744816],[-74.02054343090107,40.678814098744816],[-74.00835757745305,40.68636047551513],[-74.00713899210825,40.68707072274057],[-74.00579854822898,40.68778096996601],[-74.00494553848762,40.688491217191455],[-74.00397067021177,40.689023902610536],[-74.00336137753938,40.68973414983598],[-74.00299580193594,40.69035561615824],[-74.0026302263325,40.691065863383685],[-74.00238650926353,40.69150976789958],[-74.00189907512562,40.69230879602821],[-74.00153349952217,40.693107824156826],[-74.00068048978082,40.69364050957591],[-74.00043677271185,40.694972223123614],[-73.99994933857394,40.696037593961776],[-73.99958376297049,40.69657027938086],[-73.99921818736705,40.69710296479994],[-73.99885261176361,40.69807955473492],[-73.99836517762569,40.69896736376672],[-73.99799960202225,40.69958883008898],[-73.99763402641881,40.70012151550806],[-73.99556243133264,40.70322884711937],[-73.99458756305681,40.70420543705435],[-73.99361269478096,40.70473812247343],[-73.99215039236721,40.70447177976389],[-73.99129738262585,40.70473812247343],[-73.98959136314312,40.70509324608615],[-73.98946950460865,40.70509324608615],[-73.98751976805697,40.70473812247343],[-73.98703233391905,40.70473812247343],[-73.98398587055704,40.70491568427979],[-73.98203613400536,40.70527080789251],[-73.98045197305711,40.70527080789251],[-73.97947710478128,40.70562593150523],[-73.97911152917784,40.70580349331159],[-73.97460276340207,40.707579111375196],[-73.97216559271247,40.7089108249229],[-73.97021585616079,40.707046425956115],[-73.97009399762631,40.70695764505294],[-73.96948470495391,40.706868864149754],[-73.96911912935047,40.71210693743738],[-73.96899727081599,40.712462061050104],[-73.96850983667807,40.712994746469185],[-73.96838797814358,40.71414889821053],[-73.96570709038502,40.7187655051759],[-73.96266062702303,40.72276064581901],[-73.96205133435062,40.72338211214127],[-73.9615639002127,40.723914797560354],[-73.9615639002127,40.72471382568897],[-73.9615639002127,40.72489138749533],[-73.9615639002127,40.72586797743031],[-73.96168575874718,40.72719969097802],[-73.96168575874718,40.72915287084798],[-73.96180761728166,40.729863118073425],[-73.96205133435062,40.731549955233845],[-73.96229505141959,40.732082640652926],[-73.96229505141959,40.73288166878155],[-73.96253876848854,40.73350313510381],[-73.96241690995406,40.736166562199216]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.04296540124541,40.697014183896755],[-74.04089380615925,40.70012151550806],[-74.04028451348685,40.70047663912078],[-74.04028451348685,40.70056542002396],[-74.04004079641788,40.70065420092714],[-74.03943150374549,40.70047663912078],[-74.03943150374549,40.70047663912078],[-74.0380910598662,40.699056144669896],[-74.03796920133172,40.69896736376672],[-74.04016265495237,40.69541612763951],[-74.04345283538333,40.68973414983598],[-74.04345283538333,40.6896453689328],[-74.04442770365917,40.68840243628828],[-74.0455244304695,40.688846340804176],[-74.04637744021085,40.6892014644169],[-74.0473523084867,40.69044439706142],[-74.04686487434877,40.69115464428686],[-74.04296540124541,40.697014183896755]]]}},{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-74.08805305900304,40.64827346805083],[-74.0864688980548,40.64862859166355],[-74.07647649822744,40.64809590624447],[-74.07586720555504,40.64809590624447],[-74.0755016299516,40.64774078263175],[-74.07513605434815,40.64729687811585],[-74.07391746900336,40.645965164568146],[-74.07135843977927,40.64312417566639],[-74.07087100564135,40.64250270934412],[-74.06965242029655,40.6412597766996],[-74.06879941055519,40.634246085348366],[-74.06758082521038,40.623858719676285],[-74.06331577650359,40.616845028325045],[-74.06307205943463,40.61640112380915],[-74.06039117167606,40.61196207865014],[-74.0577102839175,40.60894352794201],[-74.05673541564167,40.60787815710385],[-74.05307965960726,40.60370545465438],[-74.05917258633126,40.59349565078866],[-74.06819011788279,40.58408487505156],[-74.08659075658929,40.56979114963955],[-74.09036837115816,40.56677259893142],[-74.09061208822713,40.56659503712506],[-74.09085580529609,40.566506256221885],[-74.09451156133049,40.56295502009468],[-74.09682687348561,40.560735497515175],[-74.11120618055426,40.54715201932861],[-74.11144989762323,40.54688567661906],[-74.11144989762323,40.54688567661906],[-74.11254662443355,40.547595923844504],[-74.11559308779555,40.54599786758726],[-74.12168601451955,40.542712974169596],[-74.12777894124356,40.537741243591505],[-74.137283906933,40.53010608591801],[-74.14020851176053,40.5337461029484],[-74.14020851176053,40.5337461029484],[-74.14240196538117,40.53445635017384],[-74.14447356046733,40.53516659739928],[-74.14873860917413,40.53445635017384],[-74.14971347744998,40.53392366475476],[-74.15470967736366,40.53072755224027],[-74.1569031309843,40.52930705778939],[-74.15763428219118,40.528863153273484],[-74.15982773581183,40.5274426588226],[-74.16080260408766,40.52682119250034],[-74.16823597469096,40.52371386088903],[-74.17798465744936,40.51962993934275],[-74.18212784762169,40.52060652927773],[-74.183224574432,40.52007384385865],[-74.1937044083973,40.51483577057102],[-74.19711644736273,40.51314893341059],[-74.19930990098338,40.51208356257243],[-74.19991919365577,40.51172843895971],[-74.20966787641419,40.50959769728338],[-74.21052088615555,40.50942013547703],[-74.21917284210363,40.503027910448054],[-74.21978213477604,40.50258400593215],[-74.2218537298622,40.50240644412579],[-74.22282859813804,40.50231766322261],[-74.22758108098276,40.50187375870671],[-74.23318657356884,40.50134107328763],[-74.23635489546533,40.500098140643104],[-74.23647675399981,40.50000935973993],[-74.23830463201702,40.499299112514485],[-74.2395232173618,40.49885520799858],[-74.24135109537902,40.49814496077314],[-74.24671287089613,40.496103],[-74.25024676839607,40.496724466322256],[-74.25463367563735,40.50231766322261],[-74.2560959780511,40.50791086012296],[-74.25353694882702,40.51243868618515],[-74.25341509029255,40.51261624799151],[-74.25268393908567,40.51385918063603],[-74.2524402220167,40.51412552334558],[-74.25207464641326,40.514391866055114],[-74.25097791960295,40.51519089418374],[-74.24293525632726,40.52087287198727],[-74.24293525632726,40.52096165289045],[-74.24281339779277,40.521583119212714],[-74.24244782218933,40.5252231362431],[-74.24171667098246,40.53126023765935],[-74.24732216356854,40.542535412363236],[-74.24780959770646,40.54342322139504],[-74.24269153925829,40.54653055300634],[-74.23745162227566,40.549815446424006],[-74.23428330037918,40.55176862629397],[-74.22904338339653,40.55505351971164],[-74.22295045667252,40.55505351971164],[-74.21807611529331,40.55496473880846],[-74.21795425675883,40.55496473880846],[-74.216979388483,40.55496473880846],[-74.2157608031382,40.55620767145298],[-74.21393292512099,40.557983289516585],[-74.21088646175899,40.560913059321535],[-74.20844929106939,40.57121164409043],[-74.2064995545177,40.57929070627983],[-74.2040623838281,40.589322948339195],[-74.19687273029378,40.59704688691587],[-74.19541042788002,40.6018410556876],[-74.1961415790869,40.61613478109961],[-74.2010159204661,40.61693380922823],[-74.20186893020747,40.61950845542045],[-74.20052848632818,40.6314050964466],[-74.1961415790869,40.63566657979925],[-74.19126723770769,40.6403719676678],[-74.1894393596905,40.6421475857314],[-74.18663661339745,40.64312417566639],[-74.18639289632848,40.64321295656956],[-74.18017811107,40.64552126005225],[-74.174085184346,40.645077355536344],[-74.171038720984,40.64285783295684],[-74.17018571124264,40.642236366634584],[-74.16275234063934,40.6408158721837],[-74.16177747236351,40.64054952947416],[-74.15300365788094,40.63886269231374],[-74.14325497512253,40.639839282248715],[-74.13972107762261,40.640194405861436],[-74.13935550201917,40.64028318676462],[-74.13106912167453,40.64108221489324],[-74.13082540460556,40.64117099579642],[-74.1202237121058,40.642236366634584],[-74.11364335124387,40.64347929927911],[-74.11218104883011,40.643745641988644],[-74.11193733176114,40.643745641988644],[-74.11071874641635,40.64401198469818],[-74.1073067074509,40.64463345102045],[-74.10669741477851,40.64472223192362],[-74.1048695367613,40.645077355536344],[-74.10462581969234,40.64516613643953],[-74.10170121486482,40.64569882185861],[-74.08805305900304,40.64827346805083]]]}}]};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment