Skip to content

Instantly share code, notes, and snippets.

@ansakoy
Last active January 5, 2016 02:19
Show Gist options
  • Save ansakoy/4d04ee76d6c2003350a9 to your computer and use it in GitHub Desktop.
Save ansakoy/4d04ee76d6c2003350a9 to your computer and use it in GitHub Desktop.
NYT Map
<!DOCTYPE html>
<html>
<head>
<title>My Test Map</title>
<meta charset="utf-8" />
<link href="https://rawgit.com/andrewgiessel/leafletstuff/master/leaflet.css" type="text/css" rel=stylesheet>
<style>
#map {
width: 600px;
height: 450px;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
text-align: left;
line-height: 18px;
color: #555;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.js"></script>
<script type="text/javascript" src="nyt_countries2015.js"></script>
<script type="text/javascript" src="nyt_countries2014.js"></script>
<script type="text/javascript" src="nyt_countries2013.js"></script>
<script type="text/javascript" src="nyt_countries2012.js"></script>
<script type="text/javascript">
var geojson2012
function resetHighlight(e) {
geojson2012.resetStyle(e.target);
info.update();
}
geojson2012 = L.geoJson(nyt_countries2012, {
style: style,
onEachFeature: onEachFeature
});
var geojson2013
function resetHighlight(e) {
geojson2013.resetStyle(e.target);
info.update();
}
geojson2013 = L.geoJson(nyt_countries2013, {
style: style,
onEachFeature: onEachFeature
});
var geojson2014
function resetHighlight(e) {
geojson2014.resetStyle(e.target);
info.update();
}
geojson2014 = L.geoJson(nyt_countries2014, {
style: style,
onEachFeature: onEachFeature
});
var geojson2015
function resetHighlight(e) {
geojson2015.resetStyle(e.target);
info.update();
}
geojson2015 = L.geoJson(nyt_countries2015, {
style: style,
onEachFeature: onEachFeature
});
function zoomToFeature(e) {
map.fitBounds(e.target.getBounds());
}
function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight,
click: zoomToFeature
});
}
var baseLayers = {
"2015": geojson2015,
"2014": geojson2014,
"2013": geojson2013,
"2012": geojson2012
};
var map = L.map('map',{
center: [30.8, 3.0],
zoom: 2,
layers: geojson2015
});
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: 'Map data (c) <a href="http://openstreetmap.org">OpenStreetMap</a> contributors'
}).addTo(map);
L.control.layers(baseLayers).addTo(map)
// control that shows state info on hover
var info = L.control({position: 'bottomleft'});
info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
this.update();
return this._div;
};
info.update = function (props) {
this._div.innerHTML = '<h4>Характеристика:</h4>' + (props ?
'<b> Страна: </b>' + props.ru_name + '<br /><b> Материалов: </b>' + props.num_occurrences + '<br /><b> Год: </b>' + props.year
: 'Наведите мышку на страну');
};
info.addTo(map);
// get color depending on population density value
function getColor(d) {
return d > 10000 ? '#0c2c84' :
d > 5000 ? '#225ea8' :
d > 3000 ? '#1d91c0' :
d > 2000 ? '#41b6c4' :
d > 1000 ? '#7fcdbb' :
d > 500 ? '#c7e9b4' :
d > 100 ? '#edf8b1' :
'#ffffd9';
}
function style(feature) {
return {
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7,
fillColor: getColor(feature.properties.num_occurrences)
};
}
function highlightFeature(e) {
var layer = e.target;
layer.setStyle({
weight: 5,
color: '#666',
dashArray: '',
fillOpacity: 0.7
});
if (!L.Browser.ie && !L.Browser.opera) {
layer.bringToFront();
}
info.update(layer.feature.properties);
}
map.attributionControl.addAttribution('NY Times; <a href=" http://api.nytimes.com/svc/search/v2/articlesearch">API</a>');
var legend = L.control({position: 'bottomright'});
legend.onAdd = function (map) {
var div = L.DomUtil.create('div', 'info legend'),
grades = [0, 100, 500, 1000, 2000, 3000, 5000, 10000],
labels = [],
from, to;
for (var i = 0; i < grades.length; i++) {
from = grades[i];
to = grades[i + 1];
labels.push(
'<i style="background:' + getColor(from + 1) + '"></i> ' +
from + (to ? '&ndash;' + to : '+'));
}
div.innerHTML = labels.join('<br>');
return div;
};
legend.addTo(map);
</script>
</body>
</html>
var nyt_countries2012 = {"type": "FeatureCollection", "features": [{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.737519,-16.692578],[11.738507,-16.705822],[11.715794,-16.685006],[11.701973,-16.655674],[11.669394,-16.55721],[11.67137,-16.529744],[11.681244,-16.517436],[11.701977,-16.500393],[11.719746,-16.506083],[11.721528,-16.555434],[11.725759,-16.577325],[11.725759,-16.618422],[11.726659,-16.656627],[11.737519,-16.692578]]],[[[13.98233,-5.853285],[14.006307,-5.866928],[14.02119,-5.872509],[14.140149,-5.863517],[14.163094,-5.866101],[14.222212,-5.886978],[14.241849,-5.889562],[14.346132,-5.891526],[14.436669,-5.893386],[14.482144,-5.885531],[14.545706,-5.901654],[14.576609,-5.904651],[14.703733,-5.881397],[14.759652,-5.880469],[14.797164,-5.879847],[14.888424,-5.878296],[14.979581,-5.876746],[15.070842,-5.875299],[15.162102,-5.873749],[15.253363,-5.872199],[15.34452,-5.870752],[15.435781,-5.869201],[15.527041,-5.867754],[15.618302,-5.866204],[15.709563,-5.864757],[15.80072,-5.863207],[15.892084,-5.861657],[15.983241,-5.860106],[16.074502,-5.858556],[16.100856,-5.858108],[16.165659,-5.857006],[16.257023,-5.855559],[16.315727,-5.854629],[16.341255,-5.859796],[16.358515,-5.870235],[16.374328,-5.882844],[16.396136,-5.894109],[16.412465,-5.896797],[16.427452,-5.894626],[16.459491,-5.885221],[16.479335,-5.882224],[16.497318,-5.882844],[16.515095,-5.887081],[16.552922,-5.902378],[16.56026,-5.906408],[16.597364,-5.924702],[16.594056,-5.933177],[16.580621,-5.94899],[16.580724,-5.955398],[16.590336,-5.968007],[16.595297,-5.978549],[16.597157,-5.98785],[16.601188,-6.050586],[16.604288,-6.061851],[16.610076,-6.061231],[16.619481,-6.05658],[16.62837,-6.05534],[16.632194,-6.065262],[16.61111,-6.089756],[16.630953,-6.09172],[16.643046,-6.100712],[16.660099,-6.123966],[16.671778,-6.130167],[16.68511,-6.134301],[16.695859,-6.140916],[16.700407,-6.154352],[16.717873,-6.174092],[16.726762,-6.189182],[16.724384,-6.202411],[16.717253,-6.215123],[16.714773,-6.231556],[16.715393,-6.304834],[16.716943,-6.313309],[16.720147,-6.32261],[16.722317,-6.332429],[16.720974,-6.342351],[16.715289,-6.345968],[16.706091,-6.346692],[16.697409,-6.349792],[16.693585,-6.359817],[16.692965,-6.398368],[16.694722,-6.402192],[16.700407,-6.411287],[16.707021,-6.415421],[16.713636,-6.413974],[16.718907,-6.415318],[16.720974,-6.42834],[16.715186,-6.441363],[16.706091,-6.455212],[16.706091,-6.465031],[16.727795,-6.465961],[16.721284,-6.480534],[16.721697,-6.491799],[16.728002,-6.501101],[16.738337,-6.510609],[16.747329,-6.521978],[16.746812,-6.53159],[16.734513,-6.552364],[16.730792,-6.56983],[16.733996,-6.586057],[16.748672,-6.619543],[16.753013,-6.637216],[16.755907,-6.674113],[16.760351,-6.691994],[16.768103,-6.708323],[16.823086,-6.785114],[16.82691,-6.799791],[16.828564,-6.814363],[16.832905,-6.827799],[16.84448,-6.838445],[16.855332,-6.842165],[16.879414,-6.844646],[16.890783,-6.847126],[16.914967,-6.864076],[16.926956,-6.888571],[16.934501,-6.945725],[16.932124,-6.949859],[16.92861,-6.959264],[16.928713,-6.968669],[16.937601,-6.97301],[16.949074,-6.975387],[16.955275,-6.981485],[16.959305,-6.989443],[16.964576,-6.997195],[16.973155,-7.014765],[16.969331,-7.030371],[16.962303,-7.047424],[16.961166,-7.069231],[16.929126,-7.060653],[16.927059,-7.085665],[16.947523,-7.151087],[16.945663,-7.204624],[16.950831,-7.213202],[16.960546,-7.219093],[16.972845,-7.232219],[16.989071,-7.254853],[16.991655,-7.270563],[16.991655,-7.286066],[16.996099,-7.297951],[17.022867,-7.306013],[17.056664,-7.329887],[17.082502,-7.34229],[17.093354,-7.352315],[17.097798,-7.367404],[17.097895,-7.378294],[17.098108,-7.402338],[17.103999,-7.416084],[17.118159,-7.425489],[17.12622,-7.411433],[17.132215,-7.409572],[17.138209,-7.413707],[17.146167,-7.418047],[17.167458,-7.423525],[17.176553,-7.428176],[17.180274,-7.435411],[17.1749,-7.441612],[17.163117,-7.445539],[17.151542,-7.451224],[17.146167,-7.463109],[17.148545,-7.472618],[17.154952,-7.479129],[17.163427,-7.485227],[17.172832,-7.493805],[17.186268,-7.516336],[17.202908,-7.564292],[17.217791,-7.585996],[17.266574,-7.610387],[17.286417,-7.625167],[17.282697,-7.643977],[17.287451,-7.660203],[17.286521,-7.683664],[17.288898,-7.699477],[17.303781,-7.692449],[17.305951,-7.700097],[17.308121,-7.701854],[17.308121,-7.702371],[17.303781,-7.706712],[17.32042,-7.713637],[17.320627,-7.722422],[17.314219,-7.731827],[17.310602,-7.740818],[17.315976,-7.753634],[17.334063,-7.769654],[17.337887,-7.778646],[17.342435,-7.78402],[17.365482,-7.787327],[17.375404,-7.792288],[17.376954,-7.801693],[17.376128,-7.814096],[17.380985,-7.823191],[17.400002,-7.823397],[17.400002,-7.830219],[17.3907,-7.83921],[17.397625,-7.841381],[17.410854,-7.841484],[17.420569,-7.843861],[17.423567,-7.855127],[17.42305,-7.867942],[17.426357,-7.875487],[17.44093,-7.871146],[17.452402,-7.883962],[17.448681,-7.89285],[17.43938,-7.902152],[17.434109,-7.915795],[17.437829,-7.922409],[17.446821,-7.928921],[17.468318,-7.939463],[17.463564,-7.946904],[17.463047,-7.949798],[17.465218,-7.952588],[17.468318,-7.959926],[17.471109,-7.955586],[17.477207,-7.950521],[17.481858,-7.945664],[17.490953,-7.977496],[17.496224,-7.987212],[17.506352,-7.996513],[17.528366,-8.007779],[17.536531,-8.015117],[17.540045,-8.032067],[17.528366,-8.060592],[17.536219,-8.075402],[17.536531,-8.075992],[17.544283,-8.084777],[17.600197,-8.098523],[17.628412,-8.098006],[17.713265,-8.068344],[17.74334,-8.070721],[17.77724,-8.08333],[17.789539,-8.081779],[17.851757,-8.047776],[17.867984,-8.044469],[17.901367,-8.048086],[17.930822,-8.062142],[17.981879,-8.105344],[18.008544,-8.111235],[18.098151,-8.109271],[18.091743,-8.084157],[18.09288,-8.056355],[18.102181,-8.033307],[18.120372,-8.022455],[18.135771,-8.018528],[18.176596,-7.999201],[18.192719,-7.996927],[18.267339,-7.999821],[18.316225,-8.001681],[18.353639,-8.015944],[18.366558,-8.016771],[18.381958,-8.012326],[18.403868,-8.000647],[18.420508,-7.99827],[18.481797,-7.99734],[18.487894,-7.99827],[18.507635,-7.997547],[18.50226,-7.960133],[18.504327,-7.940703],[18.516523,-7.932228],[18.588663,-7.932331],[18.666901,-7.932331],[18.738525,-7.932331],[18.74731,-7.937809],[18.752064,-7.965921],[18.758265,-7.97822],[18.773768,-8.001991],[18.818003,-8.001991],[18.945437,-8.001991],[19.073078,-8.001991],[19.200616,-8.001991],[19.328256,-8.001991],[19.355542,-8.001991],[19.334044,-7.92427],[19.330944,-7.898638],[19.333838,-7.867322],[19.348514,-7.821537],[19.358022,-7.791565],[19.377762,-7.73007],[19.38138,-7.703921],[19.380966,-7.679737],[19.373215,-7.653795],[19.361846,-7.627027],[19.353681,-7.600258],[19.355645,-7.57411],[19.424685,-7.579691],[19.443908,-7.575247],[19.458274,-7.560261],[19.468713,-7.52109],[19.482356,-7.50352],[19.483079,-7.5029],[19.483906,-7.502383],[19.484733,-7.50197],[19.513155,-7.479439],[19.513775,-7.448433],[19.487213,-7.381977],[19.479462,-7.347664],[19.476361,-7.315935],[19.487213,-7.153877],[19.497032,-7.121735],[19.508607,-7.103235],[19.536202,-7.068405],[19.54261,-7.052282],[19.540233,-7.041636],[19.521836,-7.001949],[19.57403,-7.001949],[19.616094,-7.001949],[19.658055,-7.001949],[19.700017,-7.001949],[19.741978,-7.001949],[19.784043,-7.001949],[19.826107,-7.001949],[19.868068,-7.001949],[19.91003,-7.001949],[19.952094,-7.001949],[19.963079,-7.001949],[19.994056,-7.001949],[20.03612,-7.001949],[20.078185,-7.001949],[20.120146,-7.001949],[20.162107,-7.001949],[20.204069,-7.001949],[20.246237,-7.001949],[20.294296,-7.001949],[20.294192,-6.987479],[20.298637,-6.95451],[20.303184,-6.940144],[20.311246,-6.925054],[20.319514,-6.918543],[20.331089,-6.916786],[20.383696,-6.916683],[20.467308,-6.916373],[20.553711,-6.916166],[20.611486,-6.915959],[20.588128,-6.976834],[20.560946,-7.047837],[20.545443,-7.088558],[20.524463,-7.143129],[20.518261,-7.189741],[20.519398,-7.23718],[20.520535,-7.286376],[20.567044,-7.286169],[20.639804,-7.285962],[20.712565,-7.285859],[20.785222,-7.285549],[20.857982,-7.285342],[20.930743,-7.285239],[21.003503,-7.284929],[21.076263,-7.284722],[21.148921,-7.284619],[21.221784,-7.284412],[21.294338,-7.284205],[21.367098,-7.283999],[21.439962,-7.283792],[21.512619,-7.283585],[21.585483,-7.283379],[21.658243,-7.283172],[21.730901,-7.282965],[21.76449,-7.282758],[21.784954,-7.283379],[21.784644,-7.286893],[21.788261,-7.29175],[21.794773,-7.294024],[21.802524,-7.298882],[21.808829,-7.306426],[21.831359,-7.354175],[21.836941,-7.360583],[21.842418,-7.369885],[21.839938,-7.378153],[21.834977,-7.385285],[21.83291,-7.390762],[21.838698,-7.402028],[21.845726,-7.409056],[21.851617,-7.416497],[21.854097,-7.428899],[21.85296,-7.434997],[21.847793,-7.444092],[21.846656,-7.449053],[21.848929,-7.454841],[21.858645,-7.464039],[21.860918,-7.469827],[21.859058,-7.482643],[21.849963,-7.5029],[21.846656,-7.514269],[21.845932,-7.526775],[21.848206,-7.532976],[21.851513,-7.538453],[21.854097,-7.548375],[21.854097,-7.585996],[21.85079,-7.593644],[21.836217,-7.60832],[21.83291,-7.614211],[21.831049,-7.632815],[21.826558,-7.645601],[21.819577,-7.665474],[21.807898,-7.699374],[21.795083,-7.736271],[21.787228,-7.758595],[21.776169,-7.790324],[21.770485,-7.806758],[21.764594,-7.850682],[21.770898,-7.876521],[21.772138,-7.8882],[21.768831,-7.899878],[21.754362,-7.919619],[21.751054,-7.929231],[21.753948,-7.99734],[21.758496,-8.015117],[21.768211,-8.023178],[21.79963,-8.040852],[21.806348,-8.052427],[21.808519,-8.076715],[21.815133,-8.096766],[21.825985,-8.114439],[21.851203,-8.143481],[21.857301,-8.156917],[21.860195,-8.173764],[21.862469,-8.216448],[21.873217,-8.264094],[21.881382,-8.282077],[21.910631,-8.310499],[21.920553,-8.329],[21.913146,-8.333003],[21.905257,-8.337268],[21.899882,-8.348843],[21.911458,-8.374268],[21.935953,-8.413025],[21.943911,-8.455917],[21.939983,-8.499945],[21.916212,-8.57684],[21.921276,-8.578597],[21.924377,-8.580767],[21.928408,-8.582524],[21.935953,-8.583144],[21.917762,-8.615184],[21.90691,-8.645466],[21.895128,-8.718743],[21.884793,-8.782305],[21.877765,-8.78923],[21.870117,-8.822303],[21.859885,-8.846384],[21.85172,-8.925862],[21.854097,-8.977849],[21.839731,-9.092364],[21.851927,-9.192926],[21.851617,-9.233751],[21.841075,-9.275815],[21.810172,-9.338137],[21.803764,-9.372967],[21.793326,-9.393534],[21.791982,-9.406143],[21.79622,-9.417098],[21.813169,-9.437459],[21.819887,-9.447691],[21.832186,-9.488412],[21.843658,-9.576159],[21.854097,-9.61781],[21.878902,-9.657084],[21.94236,-9.72292],[21.95652,-9.76178],[21.962721,-9.758473],[21.978224,-9.752168],[21.984425,-9.748758],[21.986285,-9.781107],[21.998378,-9.809116],[22.055842,-9.875365],[22.065764,-9.881049],[22.072792,-9.878879],[22.079923,-9.871644],[22.090982,-9.877122],[22.107622,-9.891385],[22.146276,-9.915673],[22.159918,-9.931486],[22.167566,-9.953707],[22.175628,-9.98895],[22.196092,-10.043624],[22.204877,-10.085792],[22.209734,-10.098194],[22.20281,-10.130647],[22.221103,-10.176225],[22.245701,-10.221184],[22.263478,-10.268209],[22.286939,-10.309137],[22.295517,-10.339316],[22.31009,-10.356989],[22.313397,-10.368565],[22.31226,-10.379934],[22.307093,-10.399571],[22.305956,-10.409803],[22.301098,-10.424892],[22.278671,-10.460962],[22.271849,-10.481736],[22.27402,-10.503027],[22.284045,-10.516463],[22.296447,-10.529692],[22.305956,-10.550673],[22.30947,-10.592944],[22.308573,-10.612519],[22.307609,-10.633562],[22.31009,-10.668805],[22.32642,-10.694643],[22.321045,-10.700741],[22.319495,-10.703842],[22.322389,-10.742186],[22.319495,-10.761306],[22.309677,-10.769781],[22.29066,-10.772675],[22.265855,-10.779909],[22.223997,-10.797066],[22.206014,-10.809882],[22.182759,-10.830449],[22.165499,-10.85236],[22.165706,-10.868793],[22.174801,-10.884296],[22.196092,-10.954162],[22.196092,-10.992299],[22.199296,-10.997364],[22.213972,-11.007906],[22.217176,-11.012763],[22.220586,-11.030023],[22.23733,-11.059376],[22.243841,-11.078289],[22.25552,-11.166552],[22.252006,-11.208617],[22.23764,-11.249545],[22.263064,-11.248201],[22.281771,-11.236729],[22.325696,-11.190324],[22.340269,-11.180195],[22.440315,-11.146915],[22.469357,-11.122421],[22.500983,-11.042426],[22.53757,-11.037155],[22.613637,-11.06754],[22.650948,-11.08232],[22.688982,-11.092965],[22.727739,-11.096789],[22.764222,-11.090485],[22.785306,-11.078496],[22.806907,-11.063096],[22.829231,-11.052141],[22.853106,-11.053071],[22.87357,-11.063716],[22.91119,-11.088314],[22.931137,-11.096789],[22.969585,-11.102474],[23.014336,-11.102474],[23.114692,-11.085524],[23.196754,-11.071881],[23.306515,-11.01173],[23.373281,-10.975143],[23.415449,-10.963257],[23.455963,-10.960984],[23.494824,-10.964291],[23.557042,-10.981344],[23.641585,-11.004495],[23.674865,-11.006976],[23.714139,-11.003875],[23.752276,-11.008216],[23.79372,-11.021135],[23.833718,-11.028473],[23.867411,-11.016381],[23.874129,-11.006872],[23.881777,-10.984548],[23.887771,-10.974419],[23.89728,-10.966461],[23.918571,-10.954059],[23.927976,-10.945377],[23.936141,-10.925223],[23.940585,-10.901556],[23.948646,-10.881505],[23.967457,-10.872307],[23.974278,-10.921399],[23.980582,-10.938349],[24.000013,-10.967805],[24.003733,-10.982481],[23.997325,-11.001705],[23.993708,-11.019585],[23.994535,-11.074982],[23.990091,-11.113532],[23.995775,-11.127382],[24.015309,-11.130482],[24.011175,-11.272903],[24.016963,-11.298431],[24.061094,-11.394962],[24.061714,-11.406951],[24.052102,-11.42049],[24.020787,-11.444572],[24.009935,-11.459454],[24.007557,-11.470513],[24.007247,-11.483122],[24.009831,-11.507203],[24.009728,-11.52343],[24.005387,-11.535212],[23.977688,-11.577277],[23.959912,-11.617171],[23.954641,-11.636911],[23.954641,-11.662233],[23.962289,-11.68156],[23.972727,-11.700577],[23.981306,-11.724761],[23.985543,-11.799485],[23.990194,-11.824083],[23.98854,-11.834212],[23.967043,-11.882891],[23.961049,-12.011669],[23.954331,-12.151919],[23.959602,-12.19667],[23.981306,-12.227676],[24.006627,-12.253721],[24.016859,-12.278939],[24.020993,-12.340021],[24.030812,-12.385083],[24.028021,-12.402136],[24.019856,-12.419189],[23.98606,-12.467662],[23.940791,-12.532774],[23.928699,-12.561609],[23.910716,-12.631269],[23.891699,-12.705063],[23.872269,-12.750125],[23.865654,-12.789709],[23.874749,-12.821749],[23.895109,-12.849757],[23.949576,-12.904638],[23.971797,-12.93337],[23.988851,-12.965099],[24.000633,-13.001479],[23.968283,-13.001479],[23.844157,-13.001479],[23.719823,-13.001479],[23.595593,-13.001479],[23.471259,-13.001479],[23.346926,-13.001479],[23.222696,-13.001479],[23.098362,-13.001479],[22.974029,-13.001479],[22.849799,-13.001479],[22.725465,-13.001479],[22.601235,-13.001479],[22.477005,-13.001479],[22.352775,-13.001479],[22.228545,-13.001479],[22.104211,-13.001479],[21.979878,-13.001479],[21.979981,-13.152168],[21.980084,-13.302701],[21.980188,-13.453493],[21.980291,-13.604181],[21.980353,-13.694822],[21.980394,-13.754973],[21.980498,-13.905558],[21.980601,-14.05635],[21.980704,-14.206935],[21.980808,-14.357624],[21.980911,-14.508416],[21.981014,-14.659104],[21.981118,-14.809793],[21.981221,-14.960481],[21.981325,-15.11117],[21.981428,-15.261858],[21.981531,-15.412546],[21.981531,-15.452337],[21.981531,-15.473525],[21.981531,-15.503807],[21.981531,-15.547835],[21.981428,-15.649948],[21.981221,-15.751957],[21.980911,-15.853967],[21.980808,-15.956079],[21.980601,-16.001244],[21.981531,-16.004035],[21.981531,-16.067494],[21.981531,-16.128162],[21.981531,-16.144285],[21.983805,-16.165886],[22.010367,-16.198132],[22.045197,-16.252289],[22.019875,-16.253115],[22.01171,-16.252289],[22.022356,-16.266345],[22.025973,-16.278954],[22.02773,-16.291666],[22.032174,-16.306342],[22.036618,-16.312233],[22.048607,-16.322362],[22.052018,-16.326806],[22.053672,-16.336521],[22.054188,-16.358639],[22.055842,-16.364633],[22.089122,-16.371971],[22.105555,-16.379413],[22.103591,-16.391918],[22.094289,-16.404734],[22.086021,-16.422304],[22.08075,-16.441011],[22.079923,-16.457754],[22.084574,-16.470156],[22.101731,-16.497958],[22.107312,-16.512324],[22.106588,-16.525967],[22.104004,-16.536716],[22.108138,-16.54395],[22.127259,-16.546431],[22.138111,-16.552632],[22.142452,-16.567101],[22.145139,-16.584051],[22.15165,-16.597694],[22.237743,-16.665493],[22.251282,-16.670041],[22.259034,-16.669214],[22.274123,-16.663633],[22.283735,-16.661359],[22.287352,-16.658259],[22.290763,-16.656398],[22.295621,-16.659189],[22.303062,-16.66694],[22.306989,-16.669214],[22.333654,-16.673658],[22.343473,-16.683167],[22.350088,-16.696292],[22.365797,-16.71686],[22.372618,-16.728849],[22.377993,-16.734843],[22.383574,-16.73753],[22.399594,-16.740424],[22.408895,-16.745798],[22.416647,-16.75448],[22.489097,-16.865378],[22.499742,-16.89349],[22.508527,-16.906202],[22.522894,-16.914677],[22.554519,-16.924185],[22.567232,-16.936898],[22.569299,-16.944959],[22.569196,-16.962426],[22.573433,-16.971004],[22.579324,-16.975345],[22.592037,-16.975449],[22.651671,-16.998703],[22.665624,-17.008625],[22.710479,-17.055444],[22.730736,-17.081592],[22.744792,-17.108257],[22.755851,-17.154869],[22.765153,-17.169649],[22.778278,-17.180397],[22.809388,-17.196417],[22.849179,-17.23104],[22.876154,-17.248093],[22.936512,-17.273311],[22.984157,-17.285817],[22.998627,-17.293775],[23.040381,-17.33708],[23.046376,-17.348449],[23.054127,-17.375321],[23.073041,-17.405086],[23.097639,-17.432165],[23.121513,-17.450872],[23.165748,-17.467408],[23.176187,-17.478157],[23.179081,-17.494177],[23.17691,-17.509783],[23.177531,-17.524046],[23.189726,-17.536551],[23.206986,-17.541202],[23.224246,-17.539342],[23.241299,-17.535104],[23.258352,-17.532831],[23.290805,-17.535414],[23.305378,-17.539548],[23.320158,-17.54637],[23.340621,-17.560736],[23.359432,-17.582853],[23.382273,-17.601043],[23.375141,-17.615409],[23.375968,-17.628225],[23.381652,-17.641144],[23.29804,-17.656854],[23.093918,-17.695405],[22.889796,-17.734059],[22.685674,-17.772816],[22.481449,-17.811366],[22.230508,-17.857565],[21.979464,-17.903764],[21.728523,-17.949859],[21.477583,-17.996058],[21.405546,-18.009287],[21.386839,-18.014455],[21.381154,-18.012595],[21.364825,-17.992027],[21.335059,-17.977971],[21.278112,-17.958541],[21.23274,-17.93446],[21.216617,-17.930636],[21.175792,-17.93322],[21.161323,-17.930636],[21.143133,-17.933736],[21.12608,-17.941074],[21.10944,-17.945002],[21.09311,-17.938077],[21.000713,-17.962055],[20.986455,-17.965771],[20.908315,-17.986136],[20.894466,-18.012595],[20.8616,-18.018796],[20.831937,-18.029338],[20.806202,-18.031405],[20.784602,-18.012595],[20.754423,-17.997918],[20.737473,-17.993474],[20.729928,-18.002363],[20.722487,-18.006497],[20.706157,-18.00381],[20.68962,-17.996988],[20.682179,-17.988617],[20.666263,-17.980245],[20.630089,-17.976938],[20.590712,-17.978798],[20.565494,-17.985206],[20.552885,-17.979108],[20.523946,-17.958541],[20.489529,-17.942108],[20.479504,-17.934356],[20.460074,-17.913686],[20.437543,-17.894462],[20.412635,-17.884127],[20.386797,-17.890328],[20.347729,-17.858909],[20.336154,-17.854878],[20.302771,-17.860769],[20.288921,-17.861596],[20.278173,-17.854878],[20.243446,-17.882783],[20.219882,-17.873378],[20.193113,-17.872138],[20.169239,-17.878132],[20.154563,-17.890328],[20.147121,-17.882783],[20.132962,-17.888778],[20.119939,-17.890741],[20.092551,-17.890328],[20.03426,-17.895909],[20.024545,-17.894566],[19.989508,-17.882783],[19.951991,-17.862319],[19.793964,-17.862319],[19.78766,-17.866454],[19.775981,-17.885057],[19.77102,-17.890328],[19.755207,-17.889088],[19.732056,-17.88206],[19.711282,-17.872965],[19.702187,-17.86573],[19.693195,-17.847747],[19.672628,-17.842682],[19.649787,-17.844956],[19.59284,-17.857255],[19.421274,-17.859426],[19.262421,-17.81395],[19.246608,-17.804028],[19.201856,-17.807129],[19.17209,-17.801238],[19.160825,-17.800928],[19.139327,-17.805269],[19.105118,-17.818188],[19.020575,-17.822322],[18.89004,-17.799274],[18.800847,-17.756589],[18.761986,-17.747701],[18.74824,-17.736332],[18.728293,-17.710907],[18.670932,-17.653133],[18.66132,-17.646725],[18.64282,-17.638044],[18.633312,-17.628949],[18.627937,-17.619854],[18.622873,-17.60218],[18.619669,-17.594842],[18.567476,-17.553294],[18.554144,-17.54637],[18.55094,-17.535311],[18.516626,-17.471336],[18.492752,-17.464514],[18.489858,-17.462447],[18.488101,-17.452112],[18.471668,-17.414285],[18.465157,-17.40922],[18.458645,-17.405293],[18.455028,-17.395991],[18.453581,-17.389893],[18.445726,-17.389273],[18.392293,-17.389273],[18.135668,-17.38917],[18.000483,-17.389116],[17.879146,-17.389067],[17.622624,-17.388963],[17.366102,-17.388963],[17.278972,-17.388928],[17.109477,-17.38886],[16.852852,-17.388757],[16.59633,-17.388757],[16.339808,-17.388653],[16.08339,-17.388653],[15.826765,-17.388653],[15.570243,-17.38855],[15.559114,-17.388545],[15.313721,-17.388447],[15.057199,-17.388343],[14.800574,-17.388343],[14.543949,-17.38824],[14.287427,-17.388136],[14.219112,-17.388136],[14.218801,-17.388136],[14.207432,-17.388033],[14.206502,-17.393097],[14.197097,-17.412941],[14.174979,-17.416248],[14.130744,-17.40922],[14.123923,-17.411598],[14.108213,-17.420486],[14.097258,-17.423587],[14.085372,-17.423587],[14.069146,-17.418626],[14.047442,-17.416042],[14.029148,-17.410461],[14.017883,-17.40922],[14.008891,-17.411494],[13.992975,-17.421313],[13.980573,-17.423587],[13.957318,-17.419142],[13.942745,-17.408187],[13.896857,-17.349069],[13.884351,-17.338527],[13.790403,-17.288091],[13.69413,-17.236621],[13.606487,-17.167375],[13.521324,-17.1219],[13.530936,-17.093271],[13.522254,-17.076941],[13.507785,-17.063505],[13.494659,-17.024024],[13.479776,-17.010278],[13.458899,-17.001803],[13.435128,-16.999013],[13.417248,-16.993742],[13.382004,-16.970384],[13.363711,-16.964183],[13.345947,-16.968711],[13.321543,-16.974932],[13.315238,-16.974415],[13.308417,-16.970178],[13.293018,-16.973795],[13.267489,-16.98537],[13.267489,-16.977929],[13.257154,-16.98165],[13.245269,-16.98134],[13.222841,-16.977929],[13.212092,-16.972761],[13.205478,-16.963046],[13.19814,-16.957362],[13.184911,-16.964183],[13.166307,-16.951057],[13.1445,-16.952401],[13.121762,-16.959842],[13.014275,-16.977929],[12.961668,-17.007385],[12.930456,-17.014206],[12.911025,-17.023508],[12.887151,-17.029812],[12.882293,-17.039527],[12.880536,-17.050793],[12.876402,-17.059784],[12.867721,-17.065572],[12.849944,-17.070843],[12.842296,-17.074047],[12.833097,-17.081799],[12.824932,-17.096371],[12.818318,-17.104846],[12.784315,-17.115078],[12.739873,-17.135542],[12.704733,-17.164274],[12.685923,-17.173576],[12.660705,-17.17709],[12.63621,-17.185151],[12.591458,-17.222565],[12.56717,-17.234554],[12.554561,-17.235588],[12.519215,-17.227836],[12.46051,-17.223082],[12.4417,-17.216984],[12.417929,-17.203445],[12.407594,-17.204065],[12.393951,-17.21471],[12.379482,-17.220395],[12.314679,-17.218121],[12.242642,-17.224839],[12.239335,-17.220705],[12.236545,-17.2113],[12.23179,-17.201895],[12.222282,-17.197657],[12.21174,-17.195177],[12.200474,-17.189286],[12.190656,-17.182568],[12.185075,-17.17709],[12.181148,-17.169235],[12.179494,-17.161587],[12.177117,-17.154766],[12.170709,-17.149185],[12.16151,-17.146291],[12.156653,-17.149081],[12.151279,-17.153629],[12.13991,-17.156006],[12.105597,-17.146084],[12.095261,-17.139676],[12.08813,-17.139159],[12.082239,-17.14133],[12.075211,-17.142983],[12.028909,-17.148978],[11.98302,-17.161897],[11.942092,-17.180501],[11.894963,-17.214607],[11.853932,-17.233417],[11.835536,-17.245406],[11.829644,-17.253468],[11.827474,-17.260082],[11.82241,-17.264423],[11.80763,-17.26587],[11.796882,-17.263803],[11.779518,-17.254915],[11.766184,-17.252751],[11.766124,-17.252699],[11.766124,-17.245294],[11.757986,-17.23919],[11.752778,-17.229181],[11.750743,-17.216892],[11.751801,-17.203709],[11.758637,-17.165216],[11.759288,-17.032973],[11.772114,-16.947026],[11.780013,-16.869467],[11.768144,-16.79852],[11.768141,-16.768251],[11.785921,-16.76352],[11.79087,-16.806082],[11.80371,-16.824033],[11.820474,-16.781472],[11.817638,-16.704685],[11.82309,-16.678969],[11.813813,-16.583917],[11.821951,-16.479099],[11.779145,-16.099867],[11.779796,-16.080255],[11.784516,-16.06406],[11.806977,-16.018813],[11.784356,-15.972633],[11.736618,-15.900203],[11.735525,-15.85711],[11.751801,-15.799086],[11.76352,-15.789972],[11.784679,-15.777276],[11.804942,-15.76922],[11.813813,-15.774998],[11.81837,-15.792413],[11.829845,-15.797784],[11.844249,-15.793552],[11.894705,-15.746677],[11.903331,-15.731378],[11.906505,-15.71795],[11.907481,-15.690037],[11.910167,-15.676202],[11.930512,-15.652439],[11.992035,-15.617283],[12.005138,-15.594334],[12.008474,-15.565362],[12.028494,-15.490167],[12.040375,-15.463311],[12.03004,-15.436944],[12.033458,-15.407403],[12.046641,-15.350681],[12.056407,-15.233087],[12.061778,-15.217869],[12.070567,-15.204685],[12.104991,-15.172784],[12.112478,-15.170994],[12.127778,-15.178969],[12.135997,-15.178969],[12.145274,-15.168634],[12.14975,-15.151951],[12.148936,-15.13421],[12.142833,-15.120701],[12.12794,-15.113377],[12.117361,-15.116632],[12.112478,-15.115167],[12.115001,-15.093927],[12.124848,-15.062188],[12.151134,-15.002048],[12.156505,-14.967055],[12.160492,-14.953546],[12.170095,-14.942478],[12.181407,-14.932306],[12.190603,-14.922052],[12.196137,-14.908461],[12.205333,-14.853611],[12.205414,-14.840427],[12.207774,-14.833266],[12.21518,-14.824151],[12.221934,-14.823989],[12.228526,-14.82586],[12.235606,-14.823012],[12.244314,-14.809991],[12.252778,-14.782322],[12.272716,-14.750584],[12.272309,-14.732843],[12.268077,-14.714776],[12.266368,-14.696059],[12.268728,-14.683526],[12.276622,-14.66074],[12.292735,-14.587498],[12.299001,-14.507582],[12.303884,-14.494073],[12.319672,-14.468683],[12.331309,-14.433526],[12.342133,-14.36712],[12.345388,-14.302992],[12.342133,-14.27044],[12.331554,-14.236749],[12.324229,-14.220636],[12.322113,-14.213067],[12.321056,-14.202732],[12.319672,-14.197442],[12.315196,-14.187921],[12.31422,-14.182224],[12.315603,-14.174981],[12.319021,-14.175388],[12.323578,-14.177504],[12.332205,-14.173435],[12.344249,-14.171319],[12.348888,-14.168552],[12.353038,-14.160903],[12.355235,-14.151788],[12.355805,-14.142348],[12.355154,-14.133722],[12.347179,-14.119887],[12.334972,-14.106378],[12.328787,-14.092218],[12.344737,-14.066827],[12.349783,-14.045505],[12.369884,-14.021905],[12.374522,-14.007582],[12.377289,-13.992446],[12.383067,-13.977309],[12.399913,-13.951593],[12.402843,-13.941339],[12.404145,-13.906345],[12.407237,-13.890558],[12.415538,-13.878595],[12.439301,-13.87127],[12.445079,-13.866143],[12.450531,-13.862481],[12.458181,-13.863865],[12.471853,-13.874444],[12.478363,-13.878025],[12.485688,-13.87713],[12.502452,-13.855239],[12.508962,-13.819594],[12.516287,-13.715102],[12.512706,-13.616795],[12.51588,-13.604913],[12.530121,-13.578709],[12.533865,-13.565199],[12.523611,-13.551202],[12.522146,-13.544203],[12.523936,-13.539972],[12.526541,-13.536228],[12.527029,-13.50449],[12.524587,-13.489353],[12.514903,-13.457615],[12.512706,-13.442071],[12.51531,-13.425958],[12.522146,-13.410577],[12.53297,-13.399021],[12.547211,-13.394627],[12.568044,-13.392348],[12.57545,-13.385919],[12.580821,-13.375258],[12.594737,-13.360447],[12.611095,-13.351983],[12.624197,-13.349216],[12.634451,-13.343357],[12.642426,-13.325616],[12.64324,-13.316339],[12.64088,-13.308852],[12.637869,-13.302016],[12.636241,-13.29461],[12.638438,-13.288018],[12.647716,-13.27809],[12.650076,-13.271091],[12.656505,-13.255629],[12.685069,-13.240818],[12.69158,-13.229425],[12.694102,-13.218357],[12.699962,-13.217869],[12.706798,-13.221449],[12.712087,-13.222589],[12.730642,-13.210545],[12.731781,-13.208917],[12.749766,-13.201349],[12.761485,-13.192966],[12.827159,-13.109796],[12.855724,-13.089532],[12.865977,-13.078709],[12.883149,-13.052016],[12.944835,-12.982354],[12.958669,-12.955499],[12.958832,-12.929132],[12.949474,-12.902114],[12.934825,-12.873793],[12.927501,-12.842055],[12.939464,-12.816664],[12.985688,-12.770115],[13.009613,-12.756524],[13.075043,-12.695001],[13.101085,-12.68141],[13.109223,-12.674493],[13.126475,-12.644464],[13.132823,-12.636651],[13.161632,-12.611261],[13.178559,-12.601739],[13.198009,-12.599379],[13.198904,-12.603611],[13.221039,-12.607192],[13.232758,-12.613051],[13.264415,-12.582615],[13.276866,-12.578302],[13.294281,-12.58115],[13.311534,-12.594496],[13.32838,-12.599379],[13.364024,-12.592706],[13.392914,-12.570408],[13.437673,-12.523696],[13.459727,-12.507257],[13.469249,-12.494806],[13.472992,-12.479099],[13.474946,-12.437758],[13.479015,-12.419122],[13.486583,-12.400811],[13.505626,-12.371352],[13.568614,-12.311456],[13.57545,-12.311456],[13.57545,-12.318292],[13.564952,-12.322035],[13.558279,-12.328302],[13.556814,-12.336602],[13.561778,-12.346124],[13.577485,-12.330987],[13.597504,-12.298761],[13.630219,-12.263442],[13.639822,-12.248712],[13.663585,-12.16961],[13.69337,-12.110284],[13.705089,-12.078058],[13.71518,-12.008396],[13.722504,-11.992771],[13.73699,-11.977716],[13.74879,-11.961196],[13.758556,-11.942478],[13.766449,-11.920505],[13.782481,-11.820896],[13.792247,-11.790948],[13.794607,-11.770196],[13.77768,-11.589125],[13.781912,-11.481052],[13.785981,-11.458266],[13.794607,-11.440606],[13.786632,-11.431573],[13.787364,-11.420343],[13.79184,-11.407973],[13.794607,-11.395929],[13.7942,-11.341485],[13.795258,-11.332208],[13.800141,-11.321384],[13.819021,-11.295587],[13.821625,-11.283624],[13.821788,-11.25628],[13.846528,-11.113702],[13.847423,-11.055434],[13.848481,-10.98211],[13.843435,-10.945733],[13.828624,-10.91367],[13.739268,-10.78338],[13.731456,-10.764255],[13.73113,-10.747166],[13.739431,-10.730239],[13.769786,-10.694268],[13.771739,-10.677911],[13.764985,-10.662042],[13.75294,-10.646173],[13.711436,-10.612074],[13.705089,-10.601983],[13.700857,-10.590916],[13.60613,-10.478204],[13.542328,-10.42669],[13.527599,-10.406508],[13.522634,-10.387791],[13.520763,-10.320245],[13.517345,-10.298435],[13.508962,-10.277032],[13.455089,-10.201755],[13.442638,-10.179376],[13.431163,-10.130548],[13.415294,-10.11004],[13.37672,-10.070733],[13.317393,-9.976332],[13.319835,-9.961602],[13.329112,-9.947524],[13.335216,-9.92669],[13.327159,-9.886],[13.305431,-9.842462],[13.278005,-9.80169],[13.198578,-9.708673],[13.191173,-9.690037],[13.196137,-9.672784],[13.218598,-9.649184],[13.225352,-9.63128],[13.223888,-9.61419],[13.217784,-9.594171],[13.209646,-9.577407],[13.201427,-9.570489],[13.202403,-9.559015],[13.169932,-9.466404],[13.168305,-9.447361],[13.170665,-9.40252],[13.166515,-9.38714],[13.147716,-9.352146],[13.143403,-9.330255],[13.120616,-9.313084],[13.045421,-9.18906],[13.016856,-9.122817],[12.996349,-9.093845],[12.992361,-9.038018],[13.030284,-8.959568],[13.086436,-8.892348],[13.136567,-8.871026],[13.114757,-8.902927],[13.042817,-8.962498],[13.006847,-9.045587],[13.000173,-9.072035],[13.013031,-9.083754],[13.023448,-9.074965],[13.0796,-8.980645],[13.081879,-8.970473],[13.086925,-8.959731],[13.098888,-8.956476],[13.112478,-8.95615],[13.122895,-8.954197],[13.137462,-8.940851],[13.148285,-8.907973],[13.160411,-8.887953],[13.185557,-8.861586],[13.191173,-8.850518],[13.192149,-8.839532],[13.190603,-8.816095],[13.194591,-8.806085],[13.224132,-8.773858],[13.241547,-8.760675],[13.259532,-8.754815],[13.209727,-8.804295],[13.198009,-8.823175],[13.212169,-8.814874],[13.245372,-8.800063],[13.263682,-8.788263],[13.271658,-8.786554],[13.278005,-8.782485],[13.280528,-8.771661],[13.281016,-8.764744],[13.28297,-8.759454],[13.28712,-8.756036],[13.2942,-8.754815],[13.35613,-8.763604],[13.380138,-8.75506],[13.393321,-8.704278],[13.408051,-8.666925],[13.410899,-8.651951],[13.406098,-8.63714],[13.37672,-8.596612],[13.365408,-8.566827],[13.352061,-8.499688],[13.342052,-8.467462],[13.355479,-8.464614],[13.365001,-8.465916],[13.372569,-8.464451],[13.379893,-8.45379],[13.382579,-8.444024],[13.383556,-8.368748],[13.378917,-8.347101],[13.369395,-8.3235],[13.276866,-8.178888],[13.264903,-8.169692],[13.250824,-8.124444],[13.242442,-8.107192],[13.234548,-8.095961],[13.222504,-8.069594],[13.215505,-8.059177],[13.198009,-8.02158],[13.189301,-7.975763],[13.122895,-7.857354],[12.986308,-7.550661],[12.939283,-7.435969],[12.911473,-7.335111],[12.883895,-7.305754],[12.869055,-7.288986],[12.849963,-7.265919],[12.855192,-7.231279],[12.849857,-7.205053],[12.833263,-7.005792],[12.823416,-6.975193],[12.8213,-6.959161],[12.819672,-6.954034],[12.816661,-6.950372],[12.815196,-6.946954],[12.817882,-6.942153],[12.824555,-6.934259],[12.827485,-6.929132],[12.829926,-6.918878],[12.832774,-6.915785],[12.833507,-6.912286],[12.828787,-6.904555],[12.799571,-6.923272],[12.779633,-6.914727],[12.706879,-6.814223],[12.620425,-6.734823],[12.550632,-6.632639],[12.458181,-6.465753],[12.421954,-6.380988],[12.395576,-6.324453],[12.368826,-6.287693],[12.344543,-6.254147],[12.319149,-6.22014],[12.279447,-6.147705],[12.27506,-6.114769],[12.290294,-6.096612],[12.312655,-6.090545],[12.333648,-6.078436],[12.327012,-6.093811],[12.324781,-6.122353],[12.346873,-6.120113],[12.382207,-6.110168],[12.432959,-6.108984],[12.496928,-6.094594],[12.527768,-6.074826],[12.549799,-6.067123],[12.580642,-6.062695],[12.632823,-6.034356],[12.645518,-6.028985],[12.669817,-6.02971],[12.690752,-6.037358],[12.716095,-6.045002],[12.742538,-6.049356],[12.77117,-6.041659],[12.817431,-6.03175],[12.861469,-6.016347],[12.882386,-6.000986],[12.927569,-5.981218],[12.94627,-5.955991],[12.966074,-5.931853],[12.97266,-5.913214],[12.98588,-5.90114],[13.011139,-5.895606],[13.029867,-5.893381],[13.046372,-5.885679],[13.064015,-5.887838],[13.100597,-5.891209],[13.111827,-5.890232],[13.129161,-5.883559],[13.169688,-5.861749],[13.183849,-5.856459],[13.183913,-5.856427],[13.184911,-5.856386],[13.26935,-5.863517],[13.311001,-5.873956],[13.342524,-5.890595],[13.353582,-5.882637],[13.37384,-5.860933],[13.380454,-5.856386],[13.41332,-5.857006],[13.493212,-5.858453],[13.522668,-5.867548],[13.53476,-5.867031],[13.553053,-5.859383],[13.562562,-5.857419],[13.641523,-5.865791],[13.807146,-5.852458],[13.943572,-5.841606],[13.98233,-5.853285]]],[[[12.801058,-4.410014],[12.814804,-4.412908],[12.830307,-4.409704],[12.842296,-4.40433],[12.854285,-4.403089],[12.869891,-4.411978],[12.884464,-4.432131],[12.902447,-4.480191],[12.921981,-4.502308],[12.961565,-4.533831],[13.027194,-4.612172],[13.073703,-4.635323],[13.065331,-4.663952],[13.029571,-4.676871],[12.833201,-4.722656],[12.802918,-4.739813],[12.786175,-4.758416],[12.774806,-4.7795],[12.768295,-4.801928],[12.766228,-4.825182],[12.756926,-4.837275],[12.711968,-4.86332],[12.696982,-4.875619],[12.6883,-4.897013],[12.686233,-4.912826],[12.678895,-4.924298],[12.6544,-4.932566],[12.61585,-4.93546],[12.606961,-4.94223],[12.603964,-4.96259],[12.587738,-5.000314],[12.550427,-5.024188],[12.466505,-5.053127],[12.458133,-5.054161],[12.450692,-5.053127],[12.444387,-5.055091],[12.439426,-5.064806],[12.43891,-5.073281],[12.44077,-5.08403],[12.444697,-5.093538],[12.450382,-5.098809],[12.51198,-5.120513],[12.524072,-5.129091],[12.530687,-5.162681],[12.52769,-5.239472],[12.524382,-5.324738],[12.519731,-5.444214],[12.514977,-5.568755],[12.512497,-5.63366],[12.508983,-5.726264],[12.435499,-5.725541],[12.344445,-5.724611],[12.258972,-5.736703],[12.210555,-5.763465],[12.210541,-5.763442],[12.210297,-5.763116],[12.161794,-5.681248],[12.147227,-5.617934],[12.170177,-5.55462],[12.182384,-5.543227],[12.19337,-5.540623],[12.204845,-5.539809],[12.218598,-5.534112],[12.228282,-5.523696],[12.232188,-5.510919],[12.232188,-5.479587],[12.229259,-5.466892],[12.214122,-5.431248],[12.19639,-5.396097],[12.171362,-5.329088],[12.172091,-5.302095],[12.132349,-5.232529],[12.124612,-5.184828],[12.069737,-5.119783],[12.023123,-5.045994],[12.023285,-5.035252],[12.035151,-5.038469],[12.054771,-5.042354],[12.067823,-5.046253],[12.074346,-5.052106],[12.080892,-5.075509],[12.100527,-5.080022],[12.116815,-5.069629],[12.127259,-5.053366],[12.128561,-5.039711],[12.137715,-5.034497],[12.137054,-5.014996],[12.132476,-5.005899],[12.123331,-5.002655],[12.112885,-5.00201],[12.10505,-5.013067],[12.103085,-5.027376],[12.103738,-5.048836],[12.097859,-5.054043],[12.09067,-5.050798],[12.086108,-5.030636],[12.079588,-5.020232],[12.071752,-5.017634],[12.066529,-5.02674],[12.056727,-5.027397],[12.04496,-5.020902],[12.030556,-5.022867],[12.009608,-5.019631],[12.018072,-5.0086],[12.130815,-4.912929],[12.15717,-4.870554],[12.187555,-4.768028],[12.192206,-4.763481],[12.204092,-4.763481],[12.213497,-4.769165],[12.222592,-4.780637],[12.235201,-4.803995],[12.244089,-4.796347],[12.258559,-4.790766],[12.273752,-4.787149],[12.307651,-4.783635],[12.321914,-4.778157],[12.332353,-4.765858],[12.374107,-4.683176],[12.378862,-4.662298],[12.377621,-4.619407],[12.387026,-4.605454],[12.414105,-4.608865],[12.429091,-4.607521],[12.497201,-4.5853],[12.608098,-4.565043],[12.623808,-4.559255],[12.634867,-4.54768],[12.656571,-4.507372],[12.670523,-4.491353],[12.686853,-4.47833],[12.70494,-4.467995],[12.718479,-4.451872],[12.726541,-4.427997],[12.737909,-4.40495],[12.761681,-4.391204],[12.775426,-4.396165],[12.782656,-4.400071],[12.801058,-4.410014]]]]},"properties":{"cartodb_id":7,"year":2012,"country":"Angola","num_occurrences":90,"ru_name":"Ангола","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[71.049802,38.408664],[71.05714,38.409026],[71.064943,38.411817],[71.076984,38.412178],[71.089386,38.409853],[71.117395,38.398639],[71.155946,38.376212],[71.217699,38.325827],[71.300123,38.298697],[71.334384,38.280662],[71.358156,38.251258],[71.364512,38.206816],[71.359086,38.184105],[71.340947,38.140929],[71.334539,38.11168],[71.316039,38.083284],[71.302397,38.04233],[71.272631,37.997992],[71.265913,37.972541],[71.255785,37.949881],[71.254544,37.939287],[71.258265,37.926472],[71.263536,37.924353],[71.271184,37.926187],[71.281829,37.924999],[71.31976,37.900582],[71.341154,37.893295],[71.360998,37.902029],[71.379188,37.912932],[71.501196,37.946212],[71.537059,37.944455],[71.567342,37.928074],[71.597727,37.89836],[71.590286,37.891435],[71.593387,37.879343],[71.59504,37.857535],[71.594214,37.833764],[71.590286,37.815729],[71.57468,37.798004],[71.537783,37.779039],[71.529515,37.761133],[71.531168,37.751754],[71.540263,37.730515],[71.542537,37.719559],[71.540883,37.709715],[71.529515,37.67858],[71.52476,37.647729],[71.522073,37.637626],[71.517216,37.629229],[71.505123,37.616],[71.501506,37.610341],[71.497165,37.566545],[71.511221,37.485878],[71.501506,37.445777],[71.490241,37.423376],[71.48714,37.409087],[71.494685,37.370692],[71.496545,37.328524],[71.493858,37.307543],[71.487863,37.294986],[71.487037,37.267055],[71.45014,37.21667],[71.453757,37.192615],[71.446832,37.183597],[71.441045,37.16843],[71.43319,37.127347],[71.431123,37.066989],[71.43319,37.054742],[71.439184,37.044097],[71.456444,37.022548],[71.459958,37.010739],[71.459958,36.969786],[71.463059,36.948082],[71.47174,36.930047],[71.528481,36.856149],[71.538506,36.836099],[71.545328,36.790004],[71.552872,36.769591],[71.563931,36.750678],[71.577367,36.733263],[71.61106,36.704841],[71.653021,36.687012],[71.699943,36.678641],[71.748519,36.678641],[71.797612,36.686082],[71.836576,36.699156],[72.126687,36.872738],[72.152836,36.895708],[72.186839,36.911392],[72.195934,36.918988],[72.210403,36.93661],[72.220325,36.94555],[72.259806,36.967305],[72.360988,37.000275],[72.405947,37.007665],[72.474987,36.997484],[72.50868,37.011075],[72.657714,37.028826],[72.666603,37.038335],[72.672701,37.05761],[72.714352,37.109984],[72.760964,37.187499],[72.79073,37.220262],[72.83052,37.239769],[72.877443,37.246875],[72.902247,37.2538],[72.924262,37.274832],[72.995575,37.3093],[73.067509,37.315062],[73.087766,37.326069],[73.099238,37.339867],[73.116394,37.369064],[73.132104,37.384386],[73.170241,37.40826],[73.179026,37.410741],[73.200627,37.404178],[73.211479,37.40826],[73.260262,37.450041],[73.276075,37.459472],[73.296332,37.464949],[73.32124,37.467017],[73.345011,37.464484],[73.361858,37.456397],[73.378394,37.452547],[73.440612,37.479936],[73.485261,37.480969],[73.605047,37.445777],[73.6745,37.43105],[73.717805,37.431825],[73.753462,37.428388],[73.747054,37.403119],[73.745917,37.394902],[73.74571,37.352863],[73.739096,37.338342],[73.722249,37.322452],[73.704989,37.310954],[73.690416,37.305218],[73.651969,37.302065],[73.630988,37.295993],[73.609904,37.281395],[73.597295,37.261809],[73.601636,37.24088],[73.617656,37.233181],[73.659927,37.243748],[73.680494,37.242457],[73.688039,37.236901],[73.702405,37.221166],[73.709227,37.217006],[73.719975,37.217549],[73.736202,37.227651],[73.746123,37.230545],[73.768654,37.228892],[73.783951,37.225894],[73.798213,37.22853],[73.836247,37.256745],[73.856401,37.261577],[73.899292,37.265478],[73.95562,37.286769],[73.976704,37.290283],[74.052151,37.312246],[74.163256,37.330074],[74.187647,37.338394],[74.206044,37.355654],[74.207697,37.389915],[74.223924,37.403351],[74.250382,37.403687],[74.279424,37.397512],[74.303816,37.400173],[74.315598,37.426916],[74.320869,37.413893],[74.332444,37.420353],[74.343813,37.420999],[74.353632,37.415909],[74.368204,37.396375],[74.378126,37.393765],[74.389392,37.393403],[74.418331,37.389192],[74.435901,37.392344],[74.454814,37.393636],[74.476622,37.386091],[74.512692,37.377229],[74.521167,37.375601],[74.529848,37.375756],[74.631444,37.381079],[74.660383,37.393972],[74.78854,37.331159],[74.816859,37.306923],[74.862644,37.244601],[74.892307,37.231114],[74.813138,37.21543],[74.794018,37.213931],[74.783269,37.219667],[74.743995,37.288397],[74.737381,37.296123],[74.721464,37.297776],[74.709372,37.290826],[74.698934,37.28031],[74.676299,37.263721],[74.670925,37.261344],[74.650978,37.259639],[74.646327,37.254833],[74.64302,37.248374],[74.629997,37.238297],[74.627207,37.234318],[74.623279,37.230804],[74.615011,37.228375],[74.609017,37.230183],[74.596511,37.240751],[74.59,37.243361],[74.575944,37.242147],[74.532225,37.232199],[74.500083,37.23163],[74.487267,37.225946],[74.476622,37.210055],[74.46763,37.189927],[74.456674,37.177318],[74.441585,37.170549],[74.420294,37.168068],[74.38226,37.172047],[74.368308,37.167061],[74.366137,37.14776],[74.38257,37.126572],[74.414403,37.107839],[74.476622,37.083138],[74.494088,37.066472],[74.505767,37.047042],[74.519203,37.030247],[74.542354,37.021669],[74.547418,37.015675],[74.549279,37.008931],[74.548142,37.001644],[74.544214,36.994022],[74.537393,36.962241],[74.521373,36.958495],[74.501736,36.972421],[74.48365,36.99397],[74.480342,36.996916],[74.476622,36.999319],[74.456984,37.004383],[74.43559,37.003221],[74.394043,36.994022],[74.368101,36.976762],[74.284592,36.934232],[74.235706,36.902167],[74.211728,36.895139],[74.145996,36.901702],[74.129666,36.898421],[74.1153,36.889532],[74.108789,36.875631],[74.103931,36.841318],[74.094319,36.831241],[74.035305,36.815583],[74.006366,36.815738],[73.976704,36.824833],[73.946938,36.83088],[73.865083,36.872582],[73.834077,36.882866],[73.772892,36.892013],[73.711842,36.894139],[73.711335,36.894157],[73.711128,36.894164],[73.709483,36.894221],[73.640083,36.896638],[73.509342,36.87868],[73.476889,36.882866],[73.445883,36.886483],[73.379738,36.879249],[73.331782,36.882091],[73.281862,36.867983],[73.267496,36.866536],[73.252717,36.868035],[73.223468,36.874339],[73.191842,36.877027],[73.042497,36.864263],[73.026271,36.859457],[73.002293,36.846124],[72.990511,36.841577],[72.976765,36.842093],[72.945862,36.852222],[72.921058,36.847364],[72.896873,36.836977],[72.867727,36.830415],[72.779361,36.826797],[72.695852,36.836719],[72.629602,36.832947],[72.565214,36.820596],[72.516741,36.800597],[72.454109,36.757964],[72.433129,36.753417],[72.387343,36.755794],[72.346209,36.74489],[72.301974,36.74272],[72.213607,36.726442],[72.169682,36.711352],[72.153456,36.702102],[72.149632,36.689338],[72.164618,36.670063],[72.171646,36.653629],[72.154179,36.645465],[72.096095,36.638902],[72.070877,36.632287],[72.059095,36.627119],[72.050413,36.618645],[72.05217,36.610376],[72.056304,36.601901],[72.054961,36.592858],[72.038838,36.580456],[71.997806,36.572446],[71.977033,36.563041],[71.960909,36.549605],[71.913471,36.527591],[71.899725,36.518341],[71.887632,36.508005],[71.874713,36.499065],[71.85859,36.494156],[71.793788,36.490745],[71.773221,36.480048],[71.774564,36.448422],[71.791514,36.421292],[71.794408,36.407598],[71.782626,36.396539],[71.766916,36.391837],[71.751,36.391113],[71.736324,36.395919],[71.706868,36.421447],[71.649301,36.452763],[71.629147,36.459533],[71.61044,36.457931],[71.600725,36.449301],[71.588736,36.41845],[71.580364,36.402327],[71.572303,36.391682],[71.547188,36.371631],[71.542227,36.356387],[71.552666,36.340987],[71.55835,36.327861],[71.53892,36.319283],[71.514632,36.315201],[71.495822,36.309619],[71.479078,36.300524],[71.402752,36.231381],[71.382443,36.218566],[71.31914,36.200582],[71.313972,36.194019],[71.309011,36.172729],[71.302087,36.163323],[71.292682,36.157897],[71.262296,36.146115],[71.223073,36.125393],[71.217699,36.118055],[71.212635,36.096816],[71.207622,36.087617],[71.175376,36.061159],[71.165919,36.045708],[71.169913,36.030802],[71.170932,36.027001],[71.181887,36.018836],[71.217854,36.002713],[71.23191,35.99398],[71.257438,35.971552],[71.28431,35.962457],[71.312525,35.957393],[71.341567,35.947264],[71.356399,35.933053],[71.360688,35.90029],[71.371333,35.885149],[71.416705,35.858846],[71.431019,35.843705],[71.464402,35.794715],[71.470914,35.779936],[71.47205,35.769962],[71.471017,35.761333],[71.47112,35.752289],[71.475564,35.741024],[71.481352,35.734099],[71.496132,35.724591],[71.502746,35.719061],[71.515355,35.701491],[71.519799,35.683766],[71.514012,35.665576],[71.495925,35.646611],[71.483316,35.62656],[71.492721,35.609559],[71.512771,35.596278],[71.567859,35.574212],[71.584188,35.564187],[71.59349,35.549356],[71.59287,35.530184],[71.586049,35.512097],[71.581708,35.493132],[71.587806,35.470911],[71.593422,35.464194],[71.600725,35.45546],[71.613954,35.443212],[71.622429,35.429621],[71.620879,35.410139],[71.61106,35.395463],[71.562277,35.360582],[71.531582,35.327922],[71.529825,35.300895],[71.547808,35.275626],[71.603205,35.223381],[71.633694,35.203124],[71.637932,35.189688],[71.62925,35.170102],[71.604135,35.138166],[71.534992,35.098582],[71.508947,35.072021],[71.5075,35.028199],[71.512978,35.018122],[71.511325,35.008717],[71.504297,35.000604],[71.493444,34.994196],[71.493444,34.994144],[71.493341,34.994144],[71.493341,34.994041],[71.485383,34.983499],[71.476701,34.960296],[71.46957,34.949702],[71.459958,34.942674],[71.445239,34.937757],[71.324928,34.897561],[71.289478,34.87503],[71.270822,34.844283],[71.25563,34.810228],[71.203075,34.748164],[71.189535,34.737054],[71.150933,34.720311],[71.080601,34.672923],[71.070163,34.661245],[71.068768,34.645948],[71.076261,34.623624],[71.079878,34.602902],[71.076571,34.578511],[71.065822,34.55846],[71.047529,34.551122],[71.006963,34.556341],[70.985827,34.556186],[70.983356,34.555256],[70.96867,34.549727],[70.956991,34.532002],[70.955648,34.510014],[70.961229,34.487612],[70.970841,34.468879],[70.991511,34.443067],[71.01983,34.414438],[71.050939,34.389788],[71.122046,34.356819],[71.126387,34.332221],[71.097086,34.262458],[71.09688,34.244345],[71.106543,34.209386],[71.109489,34.189206],[71.108093,34.165228],[71.101789,34.151818],[71.073884,34.125257],[71.062773,34.10531],[71.063858,34.088928],[71.067269,34.073012],[71.062618,34.054253],[71.046702,34.041877],[70.997712,34.033324],[70.977145,34.027407],[70.965725,34.013816],[70.953994,34.004825],[70.939731,34.000923],[70.921231,34.002241],[70.894308,34.009372],[70.884334,34.007047],[70.879994,33.994257],[70.862217,33.964775],[70.791317,33.953562],[70.656183,33.95475],[70.521979,33.938705],[70.49149,33.939609],[70.408963,33.954414],[70.328193,33.957282],[70.309899,33.961675],[70.275586,33.97617],[70.218845,33.980692],[70.002838,34.043789],[69.969093,34.045727],[69.916021,34.038879],[69.889253,34.031206],[69.872613,34.017227],[69.870443,34.001337],[69.873853,33.986325],[69.871993,33.971519],[69.854216,33.956352],[69.841091,33.941805],[69.847188,33.926948],[69.876489,33.902557],[69.885429,33.889457],[69.898761,33.851501],[69.907546,33.83561],[69.931318,33.806439],[69.940103,33.791479],[69.947234,33.771971],[69.957518,33.752695],[69.972659,33.744841],[69.996478,33.742091],[70.011829,33.740319],[70.065573,33.721018],[70.108154,33.727296],[70.118128,33.716522],[70.126551,33.676964],[70.132546,33.661435],[70.136886,33.656293],[70.145981,33.649885],[70.162518,33.643245],[70.170218,33.638671],[70.174093,33.632108],[70.173473,33.607872],[70.153009,33.544749],[70.151356,33.525862],[70.154973,33.506612],[70.163758,33.488655],[70.177607,33.47341],[70.185462,33.468966],[70.213368,33.461344],[70.220447,33.456021],[70.227837,33.43995],[70.233005,33.432612],[70.285715,33.382873],[70.301579,33.35179],[70.294448,33.318949],[70.124794,33.199034],[70.105364,33.18981],[70.08366,33.191283],[70.059785,33.198052],[70.048003,33.194073],[70.014517,33.140769],[70.006869,33.131803],[69.994725,33.127333],[69.965734,33.1294],[69.955812,33.127695],[69.880933,33.089248],[69.838713,33.086664],[69.771844,33.114776],[69.732983,33.109298],[69.68601,33.080773],[69.667768,33.077],[69.658776,33.078421],[69.650198,33.081858],[69.640689,33.084235],[69.60834,33.079067],[69.587773,33.079532],[69.547517,33.075011],[69.514185,33.056691],[69.487727,33.028373],[69.478125,33.01135],[69.468503,32.994292],[69.48721,32.885875],[69.477288,32.856833],[69.471449,32.852234],[69.445559,32.835671],[69.421064,32.80681],[69.387165,32.785338],[69.376313,32.771877],[69.37807,32.752317],[69.383237,32.744462],[69.39042,32.737899],[69.399154,32.732964],[69.407732,32.729941],[69.414657,32.725575],[69.41724,32.718004],[69.419101,32.70046],[69.429126,32.667361],[69.426025,32.655088],[69.413933,32.635477],[69.361223,32.568478],[69.34355,32.55605],[69.302105,32.543777],[69.281952,32.532796],[69.251566,32.50055],[69.232859,32.462671],[69.228001,32.421304],[69.238543,32.378283],[69.264433,32.322369],[69.268102,32.301337],[69.266965,32.279581],[69.259989,32.236819],[69.259524,32.194522],[69.251876,32.15225],[69.251049,32.13065],[69.270634,32.035978],[69.302157,31.959911],[69.304793,31.94694],[69.301157,31.941282],[69.29885,31.93769],[69.250946,31.907046],[69.223764,31.881931],[69.114313,31.737754],[69.10005,31.724008],[69.084754,31.715791],[69.071628,31.69786],[69.040106,31.673107],[69.004036,31.651092],[68.977267,31.641481],[68.94099,31.643651],[68.906987,31.634298],[68.843529,31.606496],[68.803841,31.602568],[68.77728,31.618588],[68.731184,31.675535],[68.705449,31.70127],[68.697905,31.715946],[68.694907,31.756357],[68.688293,31.768605],[68.675787,31.774702],[68.61946,31.783487],[68.561065,31.811806],[68.527476,31.822968],[68.5051,31.822658],[68.481484,31.815682],[68.438179,31.796045],[68.418748,31.783022],[68.422211,31.773152],[68.439574,31.766589],[68.461433,31.763592],[68.521274,31.764781],[68.540601,31.762507],[68.5498,31.753515],[68.536829,31.741009],[68.515177,31.729951],[68.49802,31.725248],[68.460968,31.730467],[68.356065,31.762507],[68.316532,31.765194],[68.276948,31.763592],[68.255037,31.766383],[68.242635,31.776925],[68.2323,31.790154],[68.206823,31.807879],[68.184758,31.818214],[68.159126,31.825914],[68.138559,31.824674],[68.125743,31.811496],[68.104504,31.76876],[68.09834,31.759124],[68.093497,31.751551],[68.060476,31.725558],[68.055566,31.716566],[68.052259,31.695431],[68.046575,31.688403],[67.994071,31.663443],[67.977328,31.651868],[67.966063,31.638225],[67.955211,31.633212],[67.914696,31.631352],[67.884311,31.635641],[67.870668,31.635176],[67.842711,31.623497],[67.781165,31.564173],[67.74828,31.544392],[67.726698,31.53141],[67.696312,31.520816],[67.665461,31.518129],[67.600504,31.53048],[67.568981,31.52986],[67.556114,31.512186],[67.5634,31.497252],[67.578076,31.48211],[67.591099,31.464799],[67.59699,31.42568],[67.611459,31.410797],[67.631406,31.4001],[67.651147,31.395294],[67.734294,31.404751],[67.770364,31.394674],[67.775067,31.352764],[67.764731,31.334058],[67.749435,31.328011],[67.709024,31.329303],[67.692798,31.325221],[67.678949,31.316591],[67.665926,31.306256],[67.602157,31.271116],[67.583657,31.265225],[67.530224,31.256646],[67.493327,31.242952],[67.433899,31.236079],[67.364601,31.210706],[67.346204,31.20776],[67.282177,31.212773],[67.230294,31.210603],[67.213757,31.212256],[67.19319,31.218509],[67.156707,31.235924],[67.136759,31.241092],[67.116864,31.240316],[67.078468,31.232048],[67.058211,31.232358],[67.035267,31.235924],[67.022865,31.239386],[67.015268,31.244657],[67.013873,31.252667],[67.017904,31.258713],[67.023433,31.264863],[67.025965,31.273028],[67.023898,31.2953],[67.016818,31.309149],[67.002091,31.315867],[66.943283,31.314731],[66.905921,31.305532],[66.838483,31.277007],[66.808614,31.254734],[66.785308,31.23179],[66.759522,31.214788],[66.721281,31.210292],[66.696993,31.195823],[66.663093,31.083117],[66.643973,31.060172],[66.550025,30.976973],[66.527494,30.968343],[66.392309,30.944624],[66.375359,30.936717],[66.366264,30.922868],[66.267975,30.601389],[66.264926,30.557826],[66.281928,30.518138],[66.306113,30.491112],[66.313761,30.478296],[66.319393,30.457832],[66.321822,30.437368],[66.303012,30.305283],[66.305286,30.24477],[66.300893,30.225598],[66.236349,30.1116],[66.221725,30.073721],[66.219296,30.057856],[66.225239,30.04442],[66.260431,30.02313],[66.301565,29.98675],[66.332364,29.966079],[66.340529,29.956571],[66.336808,29.952023],[66.328437,29.949543],[66.322442,29.946545],[66.301772,29.915694],[66.27521,29.885154],[66.195628,29.835338],[66.110466,29.813634],[66.052381,29.798854],[65.994297,29.784023],[65.936109,29.769295],[65.878232,29.75449],[65.820147,29.739736],[65.762063,29.724905],[65.70403,29.710151],[65.645843,29.695346],[65.58781,29.680567],[65.529726,29.665736],[65.471745,29.650956],[65.413661,29.636177],[65.355783,29.621423],[65.297595,29.606644],[65.239511,29.591838],[65.181427,29.57711],[65.036371,29.540162],[64.986606,29.541557],[64.820312,29.567886],[64.683886,29.568816],[64.499477,29.570203],[64.477697,29.570367],[64.207739,29.499983],[64.172599,29.4843],[64.149758,29.458461],[64.113378,29.396295],[64.086093,29.386605],[63.971991,29.429574],[63.78792,29.46058],[63.568605,29.497477],[63.415953,29.484971],[63.366809,29.480941],[63.317768,29.47691],[63.268675,29.472879],[63.219686,29.468797],[63.170697,29.464766],[63.121604,29.460787],[63.072615,29.456756],[63.023626,29.452674],[62.974533,29.448643],[62.925544,29.444638],[62.876451,29.440581],[62.827462,29.436602],[62.778421,29.43252],[62.72938,29.428489],[62.680391,29.424458],[62.63135,29.420428],[62.602581,29.41807],[62.477509,29.407819],[62.374466,29.424872],[62.279433,29.451485],[62.196286,29.47492],[62.112983,29.498226],[62.029629,29.521636],[61.946534,29.545045],[61.863231,29.568351],[61.779929,29.591787],[61.696626,29.615196],[61.613427,29.638502],[61.530228,29.66186],[61.446926,29.685321],[61.363727,29.708627],[61.280424,29.732011],[61.197225,29.755343],[61.114026,29.778726],[61.030621,29.802161],[60.947422,29.825519],[60.876005,29.845518],[60.844379,29.858179],[60.902153,29.916883],[60.978117,29.994139],[60.978427,29.994398],[61.133043,30.154285],[61.215622,30.239706],[61.272156,30.298307],[61.380367,30.41029],[61.461705,30.494522],[61.461705,30.494574],[61.57622,30.613895],[61.702621,30.745515],[61.7852,30.831401],[61.802253,30.847059],[61.799773,30.852381],[61.798429,30.853467],[61.799876,30.871502],[61.802356,30.87853],[61.808351,30.881424],[61.804527,30.94974],[61.800186,30.961419],[61.819306,30.993923],[61.826438,31.014956],[61.826334,31.034593],[61.821477,31.054488],[61.809281,31.087148],[61.791814,31.118929],[61.789334,31.129315],[61.78768,31.158616],[61.779205,31.181095],[61.752437,31.219129],[61.742722,31.239541],[61.742308,31.259437],[61.749233,31.30238],[61.742308,31.32088],[61.706548,31.359844],[61.686911,31.373177],[61.661176,31.38191],[61.606259,31.388741],[61.490851,31.403097],[61.29479,31.427644],[61.125149,31.448887],[61.123535,31.449089],[60.956,31.47007],[60.855024,31.482731],[60.821744,31.494668],[60.809962,31.588357],[60.794976,31.636675],[60.792599,31.660084],[60.805311,31.733981],[60.791462,31.826534],[60.789292,31.874955],[60.796733,31.93676],[60.794976,31.958464],[60.791049,31.969161],[60.786088,31.978979],[60.784021,31.989263],[60.792599,32.011277],[60.786708,32.01691],[60.778336,32.021044],[60.774926,32.027194],[60.782677,32.042541],[60.808825,32.07117],[60.81482,32.087862],[60.828256,32.167443],[60.830323,32.248885],[60.79632,32.355907],[60.752291,32.494581],[60.711674,32.61031],[60.67488,32.715601],[60.64005,32.815517],[60.60615,32.912359],[60.577522,32.994344],[60.562949,33.058268],[60.561502,33.137307],[60.5676,33.151285],[60.615969,33.206191],[60.670332,33.267712],[60.719012,33.323032],[60.757046,33.366337],[60.785881,33.387782],[60.818644,33.404887],[60.829082,33.416282],[60.834664,33.436255],[60.832803,33.453463],[60.829289,33.470129],[60.832183,33.484495],[60.849856,33.494365],[60.897295,33.497026],[60.912075,33.501522],[60.919788,33.512571],[60.92086,33.514105],[60.911971,33.528446],[60.895125,33.541132],[60.879622,33.548703],[60.846032,33.555782],[60.807378,33.558159],[60.733894,33.554852],[60.655553,33.559891],[60.574834,33.587796],[60.511789,33.638387],[60.486881,33.71138],[60.494943,33.744117],[60.525845,33.80215],[60.528016,33.84145],[60.499387,33.994257],[60.488461,34.080927],[60.486778,34.094277],[60.492772,34.139028],[60.520884,34.186131],[60.552407,34.220057],[60.587443,34.250262],[60.634986,34.271217],[60.650592,34.28535],[60.643667,34.306641],[60.714361,34.310129],[60.815957,34.315271],[60.890474,34.318914],[60.879105,34.337647],[60.804898,34.417487],[60.789085,34.44348],[60.77937,34.455081],[60.767277,34.464151],[60.742783,34.473452],[60.733894,34.480429],[60.725316,34.504277],[60.718908,34.51115],[60.71033,34.515129],[60.699685,34.516396],[60.714361,34.537428],[60.739269,34.548022],[60.794046,34.554119],[60.818954,34.559907],[60.838488,34.570914],[60.883859,34.613702],[60.888924,34.62166],[60.895435,34.628327],[60.908871,34.634683],[60.922824,34.636543],[60.935846,34.635665],[60.947525,34.63799],[60.957964,34.649411],[60.961994,34.67375],[60.958687,34.699589],[60.959927,34.723205],[60.978014,34.74062],[61.00964,34.76098],[61.02907,34.789712],[61.034755,34.806249],[61.06545,34.814724],[61.073409,34.847693],[61.077749,34.88304],[61.077026,34.891721],[61.072582,34.910325],[61.071548,34.920557],[61.074752,34.933114],[61.088912,34.951925],[61.092012,34.961485],[61.095319,34.981018],[61.109892,35.018535],[61.115887,35.059877],[61.123121,35.074191],[61.147306,35.102096],[61.136764,35.111191],[61.135214,35.119408],[61.137901,35.128296],[61.139865,35.139665],[61.137074,35.143902],[61.101521,35.183228],[61.096353,35.193202],[61.102347,35.197698],[61.112373,35.202038],[61.112786,35.21165],[61.107929,35.221262],[61.102347,35.225603],[61.101624,35.235318],[61.102451,35.25666],[61.108342,35.277951],[61.122708,35.287666],[61.143999,35.28808],[61.167873,35.291387],[61.187097,35.300379],[61.195055,35.318104],[61.190404,35.369573],[61.195055,35.390089],[61.200843,35.401148],[61.221823,35.424247],[61.227301,35.434479],[61.235983,35.465847],[61.247041,35.48507],[61.270503,35.508428],[61.283835,35.52729],[61.290036,35.548064],[61.287556,35.568269],[61.277014,35.609197],[61.269676,35.618499],[61.283318,35.622633],[61.335718,35.630901],[61.344193,35.630901],[61.351531,35.627801],[61.360936,35.621031],[61.360109,35.618395],[61.351531,35.60713],[61.363934,35.598242],[61.365484,35.5985],[61.367654,35.597983],[61.383467,35.586459],[61.383881,35.582119],[61.379953,35.571318],[61.380263,35.567339],[61.386878,35.559536],[61.393182,35.553593],[61.401244,35.549821],[61.412613,35.548322],[61.419309,35.545891],[61.427702,35.542845],[61.492711,35.494165],[61.538703,35.452307],[61.604746,35.430603],[61.739621,35.413757],[61.799049,35.417478],[61.919352,35.451842],[61.977746,35.450912],[62.00746,35.438923],[62.033815,35.423989],[62.136341,35.341358],[62.163885,35.326165],[62.219023,35.30627],[62.2337,35.293764],[62.244345,35.278055],[62.251218,35.260381],[62.252613,35.242811],[62.25096,35.202349],[62.256851,35.187156],[62.275713,35.151034],[62.286203,35.140647],[62.302016,35.14752],[62.399323,35.255937],[62.431879,35.280638],[62.458905,35.281879],[62.524586,35.232166],[62.53549,35.22736],[62.545515,35.228032],[62.555437,35.230409],[62.566186,35.230771],[62.595641,35.22059],[62.60453,35.219402],[62.621066,35.222709],[62.69362,35.248392],[62.708606,35.25604],[62.721628,35.266427],[62.734238,35.280742],[62.760489,35.302446],[62.823063,35.327514],[62.827565,35.329318],[62.918206,35.388177],[62.985282,35.414584],[63.005539,35.418408],[63.047087,35.421353],[63.066827,35.425591],[63.080211,35.437063],[63.086257,35.455666],[63.090495,35.493545],[63.100727,35.524964],[63.097213,35.535455],[63.080573,35.546514],[63.077369,35.558761],[63.07494,35.609817],[63.076646,35.6247],[63.103156,35.646042],[63.179895,35.666455],[63.207697,35.683198],[63.213588,35.692293],[63.214415,35.699269],[63.209351,35.704488],[63.183926,35.712343],[63.17726,35.716891],[63.163255,35.73229],[63.112044,35.769911],[63.105688,35.782882],[63.101295,35.800555],[63.091322,35.813319],[63.084397,35.826083],[63.088634,35.843395],[63.104086,35.856469],[63.125273,35.860241],[63.342934,35.856262],[63.430216,35.871042],[63.511089,35.901841],[63.52592,35.912693],[63.549588,35.939048],[63.563438,35.950623],[63.582093,35.959047],[63.602298,35.962664],[63.725702,35.968865],[63.765906,35.977288],[63.859854,36.022092],[63.889826,36.029637],[63.906327,36.031732],[63.921969,36.033719],[63.949977,36.028861],[64.045114,35.998734],[64.045579,36.011291],[64.03638,36.058575],[64.036225,36.076404],[64.044648,36.09232],[64.057258,36.105239],[64.123352,36.146064],[64.158698,36.160275],[64.195905,36.165907],[64.237143,36.16043],[64.253731,36.154849],[64.266134,36.152471],[64.276056,36.159241],[64.291869,36.199445],[64.303651,36.211538],[64.318947,36.219754],[64.33724,36.225955],[64.410879,36.239856],[64.444572,36.249985],[64.477697,36.271637],[64.498161,36.291429],[64.576657,36.389615],[64.594382,36.424186],[64.605855,36.461083],[64.610505,36.500926],[64.607767,36.521648],[64.593711,36.559837],[64.589008,36.580249],[64.588801,36.600454],[64.592005,36.621073],[64.604821,36.660554],[64.621357,36.692593],[64.728549,36.85057],[64.765225,36.904622],[64.778764,36.93847],[64.77463,36.977589],[64.755613,37.053631],[64.76016,37.092621],[64.778764,37.118046],[64.807909,37.135512],[64.989087,37.213673],[65.063088,37.233232],[65.487922,37.241997],[65.501407,37.242276],[65.536857,37.257107],[65.583159,37.30806],[65.611271,37.331056],[65.624087,37.345138],[65.629461,37.365421],[65.628893,37.387538],[65.620986,37.430404],[65.625741,37.452805],[65.635766,37.474096],[65.648168,37.493837],[65.648272,37.49394],[65.648323,37.493992],[65.648323,37.494147],[65.65871,37.51027],[65.668839,37.520553],[65.681034,37.526393],[65.698294,37.529416],[65.739429,37.529054],[65.752658,37.537865],[65.758859,37.564117],[65.761443,37.578379],[65.776532,37.572902],[65.79648,37.569336],[65.804334,37.565305],[65.821078,37.535178],[65.829087,37.525618],[65.836064,37.519158],[65.855184,37.507944],[66.079666,37.440868],[66.097856,37.428414],[66.125607,37.3987],[66.142918,37.385058],[66.163072,37.376893],[66.174648,37.375498],[66.207721,37.376893],[66.218469,37.3748],[66.232525,37.365421],[66.241879,37.363302],[66.250848,37.35965],[66.257743,37.356842],[66.274383,37.343277],[66.294434,37.331211],[66.320685,37.329144],[66.389622,37.347179],[66.413496,37.349633],[66.423625,37.34568],[66.438663,37.327904],[66.451065,37.322943],[66.461452,37.324441],[66.469927,37.329764],[66.485223,37.343406],[66.502896,37.355654],[66.519588,37.36418],[66.539018,37.36909],[66.564598,37.370692],[66.588576,37.36847],[66.65467,37.346145],[66.667021,37.344311],[66.694099,37.343406],[66.704745,37.346533],[66.724433,37.36015],[66.734975,37.363302],[66.865768,37.367927],[66.957649,37.385213],[67.005915,37.384386],[67.024105,37.377487],[67.064102,37.354569],[67.085083,37.349633],[67.097382,37.34059],[67.113918,37.297182],[67.123324,37.281963],[67.143477,37.27186],[67.187816,37.258244],[67.20797,37.243464],[67.217995,37.226256],[67.225281,37.207704],[67.236753,37.192408],[67.259129,37.185147],[67.281453,37.188661],[67.319591,37.208428],[67.345222,37.213027],[67.36951,37.21468],[67.391163,37.21959],[67.411265,37.22791],[67.431108,37.239769],[67.463975,37.266279],[67.482371,37.277364],[67.503145,37.281963],[67.526141,37.272894],[67.545003,37.231527],[67.561385,37.2199],[67.572185,37.223155],[67.579937,37.232664],[67.586034,37.242612],[67.592287,37.247185],[67.602726,37.24827],[67.621794,37.252921],[67.633163,37.254058],[67.644635,37.251216],[67.666443,37.238012],[67.677502,37.233542],[67.690162,37.23225],[67.725871,37.233542],[67.746593,37.229408],[67.764266,37.220882],[67.775997,37.207549],[67.780544,37.188868],[67.771966,37.12497],[67.773051,37.109984],[67.78535,37.096548],[67.808036,37.083241],[67.832893,37.073087],[67.87811,37.064431],[67.891959,37.052029],[67.902501,37.034381],[67.918417,37.013814],[67.929269,37.006244],[67.952937,36.996244],[67.961825,36.98994],[67.99619,36.955782],[68.00203,36.947487],[68.00606,36.938677],[68.011125,36.930874],[68.02022,36.92568],[68.02482,36.925518],[68.032725,36.925241],[68.044714,36.92922],[68.054946,36.934646],[68.121092,36.980276],[68.133391,36.986529],[68.151995,36.992782],[68.167963,37.006089],[68.186411,37.01831],[68.212559,37.021256],[68.253746,37.010223],[68.277775,37.010068],[68.288317,37.024408],[68.281599,37.066472],[68.280772,37.086652],[68.288317,37.103214],[68.307282,37.114221],[68.326661,37.113033],[68.346091,37.106909],[68.365832,37.103214],[68.391877,37.105437],[68.411462,37.113369],[68.418025,37.128277],[68.403711,37.151635],[68.465774,37.155356],[68.513316,37.163986],[68.523858,37.164658],[68.532747,37.168999],[68.546544,37.188222],[68.551453,37.192615],[68.571401,37.194708],[68.608814,37.204087],[68.626901,37.206257],[68.630777,37.213828],[68.63641,37.229925],[68.648605,37.244369],[68.671239,37.247185],[68.665452,37.259381],[68.662661,37.263721],[68.657545,37.267675],[68.668862,37.278294],[68.686949,37.279018],[68.725913,37.274522],[68.746532,37.276227],[68.759606,37.275245],[68.771285,37.270724],[68.808492,37.251629],[68.820378,37.250906],[68.824615,37.260621],[68.822031,37.281963],[68.810197,37.312091],[68.813815,37.323408],[68.835829,37.329144],[68.856758,37.324906],[68.868023,37.312142],[68.877015,37.296097],[68.890296,37.281963],[68.904714,37.276692],[68.915824,37.279069],[68.921147,37.287958],[68.917633,37.302427],[68.912982,37.306768],[68.896755,37.316483],[68.890296,37.322943],[68.885077,37.334828],[68.887867,37.338135],[68.893655,37.337154],[68.897169,37.335965],[68.965433,37.329144],[68.985225,37.320359],[69.005483,37.305528],[69.021037,37.287958],[69.035765,37.251577],[69.055609,37.237108],[69.078398,37.225171],[69.096433,37.213027],[69.114313,37.177473],[69.123615,37.169205],[69.145732,37.156958],[69.151003,37.155046],[69.245675,37.103886],[69.265777,37.105411],[69.285621,37.11293],[69.308617,37.116882],[69.312079,37.117477],[69.323913,37.120991],[69.334765,37.129053],[69.350836,37.144142],[69.391196,37.164658],[69.407732,37.177473],[69.442148,37.223621],[69.445197,37.23641],[69.426852,37.239459],[69.409851,37.245661],[69.417912,37.267675],[69.409696,37.276744],[69.403081,37.31116],[69.394606,37.326069],[69.389439,37.332916],[69.386441,37.34152],[69.384891,37.3509],[69.384478,37.36015],[69.385821,37.363147],[69.388508,37.363767],[69.390885,37.365317],[69.391196,37.370692],[69.388302,37.37511],[69.378948,37.377125],[69.377036,37.380665],[69.376313,37.418854],[69.37838,37.437406],[69.384478,37.453271],[69.389645,37.4588],[69.404011,37.466861],[69.411711,37.47252],[69.415587,37.477507],[69.421788,37.489496],[69.425405,37.49425],[69.469744,37.52014],[69.491448,37.536986],[69.508656,37.578973],[69.528655,37.586027],[69.664977,37.576157],[69.687301,37.579594],[69.729573,37.594089],[69.754274,37.596673],[69.762232,37.595794],[69.784453,37.59042],[69.791843,37.586105],[69.80223,37.581506],[69.812668,37.585846],[69.823004,37.592952],[69.832926,37.596673],[69.853286,37.60122],[69.895247,37.61817],[69.918812,37.617137],[69.935245,37.605664],[69.944547,37.589696],[69.955399,37.575485],[69.976586,37.569336],[69.989505,37.56732],[69.994673,37.562256],[69.998497,37.55559],[70.004187,37.551371],[70.007592,37.548846],[70.016894,37.545978],[70.048003,37.541431],[70.041698,37.548846],[70.06919,37.545203],[70.099059,37.536573],[70.129135,37.532284],[70.157867,37.541431],[70.192697,37.576028],[70.199415,37.579284],[70.201947,37.587991],[70.216468,37.617137],[70.218432,37.617447],[70.237655,37.618118],[70.240963,37.617137],[70.246079,37.621271],[70.248301,37.623338],[70.253934,37.630805],[70.255225,37.637471],[70.253882,37.646592],[70.253572,37.654576],[70.257706,37.65809],[70.262564,37.660881],[70.275121,37.675479],[70.277033,37.687985],[70.280547,37.696046],[70.283079,37.704831],[70.281891,37.719559],[70.271762,37.748705],[70.269592,37.762632],[70.275121,37.774181],[70.265561,37.781209],[70.256517,37.791803],[70.249851,37.804877],[70.247164,37.819166],[70.240343,37.827563],[70.207476,37.835624],[70.196004,37.839914],[70.179158,37.860791],[70.165205,37.889911],[70.160503,37.920658],[70.17213,37.946083],[70.192232,37.93288],[70.214711,37.929262],[70.238121,37.932363],[70.26153,37.939287],[70.253675,37.947401],[70.250161,37.955617],[70.25042,37.964144],[70.253934,37.973394],[70.26091,37.976469],[70.272692,37.978174],[70.283751,37.981869],[70.288712,37.990809],[70.293776,37.996106],[70.298583,37.998134],[70.317961,38.006312],[70.326281,38.011273],[70.371187,38.058298],[70.415371,38.094523],[70.425964,38.100647],[70.460071,38.112248],[70.470303,38.120517],[70.482602,38.137363],[70.508543,38.192502],[70.537947,38.238055],[70.547197,38.262653],[70.559393,38.268182],[70.573036,38.27105],[70.583061,38.275081],[70.5966,38.309187],[70.596703,38.317585],[70.595566,38.327791],[70.595773,38.338178],[70.600011,38.347066],[70.609312,38.3512],[70.632102,38.350115],[70.641352,38.354197],[70.676698,38.37492],[70.68476,38.38665],[70.664865,38.398639],[70.664865,38.405409],[70.683313,38.414581],[70.741811,38.419439],[70.754213,38.436466],[70.761086,38.44352],[70.777261,38.446466],[70.808887,38.446362],[70.817982,38.444993],[70.834105,38.4406],[70.843045,38.440161],[70.849814,38.442823],[70.853587,38.447422],[70.859323,38.451659],[70.871002,38.45321],[70.91224,38.437655],[70.936217,38.433004],[70.946759,38.443236],[70.943452,38.465948],[70.950739,38.473053],[70.974045,38.473673],[70.986809,38.470909],[70.998229,38.465664],[71.008564,38.458584],[71.018641,38.449825],[71.024584,38.441918],[71.032956,38.423651],[71.039467,38.415331],[71.049802,38.408664]]]]},"properties":{"cartodb_id":1,"year":2012,"country":"Afghanistan","num_occurrences":2872,"ru_name":"Афганистан","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[19.002126,54.344916],[19.377208,54.377631],[19.459972,54.401028],[19.499278,54.406399],[19.531016,54.414944],[19.59254,54.452379],[19.609548,54.456732],[19.63077,54.446652],[19.680276,54.436678],[19.758256,54.434256],[19.964703,54.427842],[20.35207,54.415749],[20.640838,54.406784],[20.929606,54.397818],[21.287413,54.386759],[21.720772,54.373271],[21.998946,54.364667],[22.27712,54.356063],[22.510388,54.348777],[22.698387,54.342937],[22.76722,54.35627],[22.78603,54.36521],[22.811344,54.392633],[22.812695,54.394097],[22.837603,54.400918],[22.858894,54.399213],[22.918838,54.381126],[22.92969,54.380299],[22.952428,54.38309],[22.96266,54.381695],[22.973305,54.37539],[22.97899,54.367587],[22.983434,54.359784],[22.989738,54.353376],[23.001004,54.34888],[23.035317,54.346503],[23.041622,54.340974],[23.038004,54.331465],[23.032216,54.320148],[23.032113,54.309554],[23.050096,54.294827],[23.073041,54.294878],[23.096915,54.300821],[23.117069,54.303457],[23.135259,54.298289],[23.197271,54.267851],[23.235408,54.254157],[23.316023,54.236277],[23.33599,54.226294],[23.354471,54.217054],[23.364082,54.208269],[23.382273,54.187856],[23.391471,54.180105],[23.401806,54.175971],[23.423304,54.172508],[23.432502,54.169305],[23.449039,54.154938],[23.462991,54.13494],[23.473947,54.112564],[23.481595,54.091221],[23.496167,54.044558],[23.496477,54.021975],[23.481595,54.006627],[23.469502,54.000684],[23.464128,53.996757],[23.45927,53.992313],[23.45865,53.981616],[23.462888,53.972521],[23.470949,53.965286],[23.481595,53.960118],[23.487486,53.955622],[23.49038,53.95061],[23.48976,53.945132],[23.485625,53.939293],[23.486866,53.909992],[23.497201,53.885549],[23.51043,53.862502],[23.520662,53.837335],[23.52986,53.78416],[23.540402,53.763593],[23.56469,53.742457],[23.56469,53.742405],[23.564794,53.742405],[23.567068,53.681014],[23.590942,53.611251],[23.675795,53.455705],[23.722924,53.397104],[23.742974,53.365478],[23.782972,53.270936],[23.800645,53.242462],[23.818628,53.227967],[23.828447,53.213833],[23.836198,53.199286],[23.848084,53.183809],[23.865964,53.172001],[23.883121,53.163991],[23.893663,53.151951],[23.891389,53.127714],[23.882397,53.113297],[23.870305,53.101256],[23.860693,53.087484],[23.859349,53.067976],[23.867928,53.051027],[23.89821,53.02754],[23.909682,53.012734],[23.911336,53.00506],[23.908959,52.993046],[23.909062,52.986664],[23.917537,52.95881],[23.91795,52.9508],[23.914953,52.944625],[23.903894,52.931137],[23.901104,52.923257],[23.902034,52.912534],[23.905445,52.906539],[23.909476,52.901501],[23.912059,52.893853],[23.920426,52.772625],[23.922498,52.742596],[23.908752,52.699859],[23.868961,52.670042],[23.736153,52.614903],[23.569031,52.585887],[23.480458,52.554416],[23.392298,52.509638],[23.270548,52.395123],[23.230447,52.365074],[23.21205,52.347504],[23.165645,52.289393],[23.168746,52.288928],[23.176099,52.285136],[23.183525,52.281306],[23.19448,52.271462],[23.197684,52.25831],[23.189726,52.240533],[23.212257,52.231671],[23.284191,52.219734],[23.29959,52.223428],[23.312716,52.215289],[23.374831,52.200949],[23.395812,52.19958],[23.395812,52.193379],[23.388474,52.184154],[23.391368,52.182501],[23.405734,52.185911],[23.418239,52.182501],[23.427231,52.17679],[23.43674,52.175679],[23.450485,52.185911],[23.454413,52.181467],[23.464335,52.176351],[23.470949,52.171623],[23.487693,52.181622],[23.491517,52.174103],[23.488726,52.16214],[23.484695,52.158626],[23.512497,52.124442],[23.531928,52.120644],[23.579366,52.121548],[23.598177,52.11452],[23.604791,52.106769],[23.609856,52.09863],[23.61585,52.0923],[23.625255,52.089716],[23.637451,52.084471],[23.641482,52.072921],[23.642515,52.061397],[23.650783,52.048943],[23.664943,52.011168],[23.676415,51.994088],[23.660705,51.98688],[23.647579,51.97409],[23.628666,51.946339],[23.622155,51.927943],[23.621431,51.895567],[23.61492,51.88425],[23.618847,51.883268],[23.620604,51.883217],[23.621328,51.882028],[23.621845,51.877429],[23.609856,51.873269],[23.605721,51.851591],[23.594559,51.843297],[23.610269,51.825184],[23.628666,51.809759],[23.617504,51.786504],[23.59828,51.77467],[23.577299,51.766686],[23.56035,51.754542],[23.556319,51.747359],[23.552288,51.736636],[23.546604,51.713589],[23.550221,51.708421],[23.556939,51.701393],[23.559213,51.695166],[23.550014,51.692427],[23.546087,51.689637],[23.549291,51.683203],[23.555389,51.676304],[23.56035,51.671963],[23.547534,51.662067],[23.541436,51.659742],[23.532444,51.658967],[23.532444,51.6515],[23.543813,51.6438],[23.545157,51.63411],[23.539886,51.607109],[23.5434,51.592743],[23.552081,51.578817],[23.573992,51.555304],[23.567171,51.55489],[23.56035,51.555304],[23.572752,51.539672],[23.588668,51.535899],[23.602311,51.530783],[23.606238,51.517399],[23.608099,51.511224],[23.614817,51.49722],[23.630526,51.490424],[23.648613,51.486212],[23.662772,51.480192],[23.647166,51.460193],[23.648716,51.453966],[23.689437,51.416423],[23.697602,51.404435],[23.686027,51.40105],[23.678895,51.394073],[23.677655,51.38379],[23.683856,51.370276],[23.665563,51.365806],[23.647786,51.353998],[23.63404,51.339296],[23.628666,51.325964],[23.635177,51.304699],[23.650887,51.299609],[23.670214,51.299376],[23.687267,51.2924],[23.742664,51.216255],[23.765195,51.199021],[23.816045,51.178789],[23.863587,51.148274],[23.874749,51.13613],[23.858213,51.13073],[23.854492,51.121532],[23.869271,51.10174],[23.895523,51.076108],[23.904205,51.062724],[23.915987,51.020866],[23.915987,51.014665],[23.911749,51.00681],[23.919087,51.002728],[23.9318,50.999472],[23.943995,50.994201],[23.955054,50.983556],[23.957845,50.975339],[23.958878,50.966348],[23.964356,50.953222],[23.979342,50.937512],[24.046935,50.898031],[24.130237,50.868937],[24.143156,50.856432],[24.130857,50.839069],[24.100472,50.834986],[24.067295,50.834831],[24.046935,50.829095],[24.020477,50.838552],[23.992881,50.836226],[23.969937,50.825168],[23.957638,50.808011],[23.959498,50.788891],[23.974278,50.776178],[23.997946,50.769202],[24.025851,50.767032],[24.025851,50.76083],[24.012828,50.743312],[24.026884,50.728016],[24.05417,50.717164],[24.081041,50.712978],[24.074943,50.690189],[24.082798,50.669156],[24.108165,50.630287],[24.10843,50.629882],[24.085279,50.604406],[24.095407,50.556864],[24.102539,50.543634],[24.107706,50.540844],[24.106466,50.538622],[24.09396,50.52715],[24.075047,50.514282],[24.010658,50.492785],[24.007867,50.480744],[24.009418,50.461469],[24.007764,50.448498],[24.003217,50.437698],[23.981306,50.40478],[23.928699,50.390827],[23.747522,50.38938],[23.713002,50.382404],[23.695742,50.376771],[23.682203,50.368245],[23.671247,50.353568],[23.658677,50.327005],[23.658018,50.325611],[23.644169,50.312692],[23.565311,50.257812],[23.536372,50.242826],[23.536268,50.242826],[23.536165,50.242774],[23.536062,50.242774],[23.481595,50.215954],[23.436429,50.193475],[23.207916,50.03395],[23.177841,50.003977],[23.141254,49.985477],[23.101463,49.957107],[22.993046,49.854426],[22.951188,49.826624],[22.945917,49.818356],[22.937752,49.798202],[22.933101,49.79107],[22.924419,49.785438],[22.906746,49.7812],[22.897961,49.777428],[22.888246,49.769728],[22.826648,49.697381],[22.809801,49.686322],[22.798846,49.683273],[22.777348,49.680483],[22.766186,49.67423],[22.758951,49.6656],[22.741692,49.633664],[22.665831,49.567363],[22.640922,49.528761],[22.660146,49.493001],[22.666864,49.478376],[22.673065,49.435847],[22.676786,49.424478],[22.679576,49.418948],[22.692599,49.405513],[22.7142,49.39063],[22.719781,49.382982],[22.724225,49.367065],[22.737764,49.275391],[22.73394,49.26087],[22.717094,49.230433],[22.702934,49.195034],[22.687121,49.173382],[22.681747,49.161238],[22.687845,49.155915],[22.692496,49.157931],[22.705725,49.168835],[22.721434,49.1616],[22.720194,49.161186],[22.71637,49.160566],[22.748823,49.14558],[22.778072,49.12031],[22.796469,49.11137],[22.841324,49.094886],[22.853416,49.084757],[22.853519,49.076282],[22.844424,49.056697],[22.843184,49.043106],[22.847525,49.033701],[22.863751,49.015356],[22.865014,49.013237],[22.866955,49.009981],[22.855276,48.994013],[22.835019,48.999749],[22.812902,49.012875],[22.795022,49.019025],[22.783963,49.02135],[22.765463,49.038403],[22.755334,49.044708],[22.744482,49.045535],[22.721951,49.041039],[22.685778,49.042796],[22.664384,49.041452],[22.642886,49.043157],[22.618288,49.054216],[22.580771,49.08145],[22.560721,49.085532],[22.539637,49.0722],[22.505013,49.083413],[22.426775,49.085635],[22.390085,49.093025],[22.339442,49.12646],[22.318151,49.131989],[22.262858,49.130594],[22.215936,49.139999],[22.208494,49.144185],[22.20622,49.150489],[22.209011,49.156949],[22.208908,49.163977],[22.197952,49.171987],[22.189684,49.17302],[22.165706,49.171108],[22.155681,49.171522],[22.144105,49.174881],[22.111549,49.188627],[22.040752,49.197463],[22.012434,49.211054],[22.005819,49.242887],[21.99321,49.278182],[21.964478,49.308568],[21.928408,49.330788],[21.874561,49.348358],[21.837871,49.370424],[21.819577,49.377246],[21.799423,49.374817],[21.782164,49.364482],[21.768004,49.353474],[21.757566,49.348927],[21.742166,49.357092],[21.708576,49.390888],[21.69173,49.402154],[21.681808,49.404066],[21.666305,49.401792],[21.65876,49.402464],[21.648632,49.407063],[21.630028,49.418897],[21.6199,49.423341],[21.601193,49.426493],[21.529569,49.421222],[21.514422,49.417213],[21.496186,49.412386],[21.48151,49.415228],[21.444406,49.409905],[21.42787,49.409802],[21.330408,49.427785],[21.274391,49.447267],[21.260542,49.449438],[21.242455,49.441273],[21.211242,49.411094],[21.194086,49.400603],[21.172588,49.398278],[21.157292,49.405151],[21.143029,49.415538],[21.124943,49.423651],[21.10944,49.424581],[21.068822,49.419207],[21.053526,49.414453],[21.033269,49.399673],[21.045464,49.390578],[21.068512,49.381431],[21.080708,49.366342],[21.072543,49.357195],[21.054043,49.354766],[21.032959,49.354611],[21.017249,49.352441],[20.996682,49.339367],[20.964022,49.308103],[20.942422,49.295855],[20.91896,49.290326],[20.900564,49.2926],[20.884337,49.300299],[20.868007,49.31141],[20.849301,49.320505],[20.833591,49.322055],[20.816538,49.321383],[20.79411,49.323657],[20.778297,49.331202],[20.689517,49.4005],[20.673911,49.402309],[20.636084,49.39833],[20.614483,49.400448],[20.605284,49.400035],[20.595053,49.396263],[20.579136,49.383395],[20.567664,49.376367],[20.543996,49.370838],[20.522085,49.374352],[20.437543,49.402515],[20.421936,49.40019],[20.422143,49.382982],[20.370467,49.38169],[20.329539,49.391767],[20.317653,49.391612],[20.307422,49.386599],[20.303701,49.380398],[20.301634,49.371199],[20.296466,49.356937],[20.289335,49.343087],[20.284374,49.338643],[20.207169,49.334199],[20.191976,49.328618],[20.170169,49.311617],[20.16035,49.305622],[20.138336,49.307327],[20.135856,49.308878],[20.130171,49.303917],[20.111051,49.275856],[20.105367,49.263971],[20.098442,49.25286],[20.08604,49.243042],[20.080355,49.208109],[20.07002,49.183097],[20.050486,49.173227],[20.01731,49.183872],[19.965737,49.215653],[19.937935,49.22511],[19.905896,49.222785],[19.887809,49.214],[19.868292,49.200788],[19.854219,49.191262],[19.831998,49.185888],[19.785903,49.188162],[19.760685,49.194208],[19.747766,49.205887],[19.747787,49.205956],[19.751797,49.219064],[19.789624,49.259475],[19.794068,49.261852],[19.800476,49.263041],[19.806263,49.265263],[19.808641,49.270895],[19.80678,49.275236],[19.806415,49.275488],[19.798822,49.280714],[19.798563,49.281081],[19.796962,49.28335],[19.79686,49.283399],[19.783216,49.290016],[19.779702,49.293375],[19.779713,49.293453],[19.780322,49.297612],[19.78797,49.305105],[19.78952,49.309188],[19.783629,49.357557],[19.778565,49.374197],[19.769263,49.39311],[19.769056,49.393213],[19.760065,49.397658],[19.726578,49.388873],[19.706321,49.387529],[19.684514,49.389079],[19.627044,49.401868],[19.627097,49.402165],[19.62922,49.413936],[19.6286,49.429594],[19.63015,49.43502],[19.634801,49.441324],[19.594804,49.441583],[19.573926,49.445252],[19.55677,49.453882],[19.551602,49.461013],[19.535479,49.492846],[19.517289,49.543282],[19.505197,49.563384],[19.481735,49.573513],[19.474191,49.578732],[19.457344,49.598059],[19.44889,49.600313],[19.443392,49.60178],[19.437604,49.600126],[19.43378,49.595165],[19.347067,49.532998],[19.339522,49.528761],[19.325363,49.52504],[19.315027,49.523955],[19.284228,49.524162],[19.265005,49.521475],[19.248675,49.516255],[19.234102,49.507212],[19.220459,49.493001],[19.20444,49.460548],[19.206197,49.459411],[19.209401,49.456414],[19.211364,49.45166],[19.208987,49.444993],[19.204543,49.442823],[19.192244,49.442616],[19.18935,49.442203],[19.182322,49.422721],[19.179738,49.410267],[19.172504,49.402257],[19.141705,49.394195],[19.11659,49.39094],[19.106255,49.391405],[19.096643,49.394609],[19.076799,49.404066],[19.067601,49.406133],[19.045793,49.402774],[19.007139,49.388098],[18.981818,49.386806],[18.962284,49.389183],[18.956703,49.400448],[18.960837,49.433315],[18.958253,49.448146],[18.953396,49.461685],[18.952362,49.475948],[18.961147,49.492794],[18.932208,49.504318],[18.833196,49.510261],[18.837434,49.526952],[18.83454,49.547623],[18.820174,49.590256],[18.81573,49.599299],[18.803947,49.616766],[18.799297,49.626378],[18.792579,49.660794],[18.788444,49.668597],[18.773458,49.675832],[18.757852,49.674075],[18.742246,49.669683],[18.727673,49.668907],[18.715064,49.673817],[18.695427,49.688854],[18.682404,49.695779],[18.668142,49.69857],[18.637343,49.700327],[18.62401,49.706373],[18.617706,49.713866],[18.60768,49.74296],[18.584116,49.774379],[18.566753,49.804765],[18.566339,49.831585],[18.593831,49.852204],[18.567269,49.861454],[18.562929,49.873701],[18.565409,49.889049],[18.559208,49.907187],[18.544428,49.912975],[18.505051,49.896697],[18.481797,49.896645],[18.407486,49.923155],[18.368832,49.932044],[18.328524,49.92884],[18.330695,49.92884],[18.332452,49.928271],[18.333795,49.927135],[18.334932,49.925429],[18.306923,49.909668],[18.292454,49.907808],[18.27261,49.918298],[18.267029,49.925067],[18.260105,49.94057],[18.255867,49.946048],[18.243982,49.951732],[18.22052,49.954885],[18.208738,49.958295],[18.177216,49.975814],[18.162023,49.98124],[18.098151,49.989043],[18.085128,49.998758],[18.091639,50.017207],[18.033245,50.041805],[18.019074,50.044087],[18.002446,50.046765],[18.00689,50.024131],[18.012161,50.022684],[18.020119,50.024286],[18.028698,50.024131],[18.035726,50.017207],[18.037483,50.007233],[18.032418,50.00284],[17.999862,49.996588],[17.959761,49.995812],[17.941571,49.992764],[17.912116,49.975814],[17.875735,49.968682],[17.839355,49.973643],[17.774553,50.015191],[17.763287,50.025216],[17.755433,50.037154],[17.749852,50.049504],[17.74303,50.060563],[17.731971,50.06909],[17.722566,50.075136],[17.719466,50.080872],[17.72267,50.08635],[17.731971,50.091466],[17.732385,50.092189],[17.732592,50.092964],[17.732385,50.093894],[17.731971,50.094876],[17.717915,50.096788],[17.690734,50.10547],[17.677608,50.107744],[17.666963,50.106142],[17.658488,50.102989],[17.648359,50.101801],[17.632753,50.106348],[17.584177,50.145881],[17.58211,50.153167],[17.589448,50.163244],[17.600403,50.16681],[17.648669,50.167998],[17.675334,50.174716],[17.717915,50.191098],[17.738173,50.202363],[17.747578,50.217504],[17.731971,50.236005],[17.721429,50.242722],[17.719156,50.252799],[17.721119,50.261946],[17.731971,50.280653],[17.734245,50.283805],[17.734969,50.286802],[17.734452,50.28949],[17.731971,50.291763],[17.713575,50.30768],[17.707994,50.311039],[17.691044,50.315069],[17.684533,50.312382],[17.681949,50.305561],[17.676368,50.297396],[17.646705,50.271093],[17.629549,50.262101],[17.606398,50.258225],[17.516998,50.268354],[17.469352,50.265563],[17.44,50.242722],[17.434832,50.2405],[17.429561,50.239777],[17.424187,50.240552],[17.419122,50.242722],[17.409821,50.261326],[17.388013,50.272643],[17.365896,50.271558],[17.355044,50.253264],[17.341711,50.259724],[17.334786,50.270008],[17.332823,50.282668],[17.334063,50.295691],[17.329515,50.298223],[17.325381,50.301117],[17.321867,50.304476],[17.319077,50.308248],[17.337474,50.313002],[17.316803,50.318635],[17.269881,50.317757],[17.24611,50.322149],[17.210866,50.336412],[17.201048,50.343233],[17.195053,50.351915],[17.188852,50.364834],[17.185442,50.375686],[17.187612,50.378476],[17.175933,50.38075],[17.145444,50.376719],[17.131698,50.376823],[17.118882,50.381164],[17.095628,50.393669],[17.084672,50.397958],[16.98194,50.416355],[16.958789,50.414598],[16.944005,50.420267],[16.915794,50.431083],[16.892953,50.432943],[16.865771,50.422401],[16.865874,50.408449],[16.897914,50.378218],[16.909283,50.359925],[16.916724,50.338634],[16.926543,50.319255],[16.945249,50.306905],[16.969641,50.297758],[16.987831,50.284942],[16.998373,50.26701],[16.99982,50.242722],[17.012842,50.231664],[17.014806,50.218486],[17.008398,50.20996],[16.996306,50.212905],[16.98566,50.223137],[16.98101,50.229183],[16.975015,50.231819],[16.960339,50.231974],[16.957548,50.229235],[16.957755,50.217143],[16.955275,50.213474],[16.946283,50.21306],[16.927783,50.217298],[16.918998,50.217091],[16.907009,50.211768],[16.890369,50.196937],[16.880964,50.191563],[16.869762,50.189729],[16.857606,50.187739],[16.837556,50.188617],[16.817712,50.186757],[16.795284,50.174406],[16.777301,50.15694],[16.766449,50.1434],[16.754253,50.13229],[16.732033,50.121955],[16.701233,50.094928],[16.660616,50.093016],[16.618654,50.10702],[16.584238,50.127432],[16.566668,50.142212],[16.557263,50.154718],[16.545894,50.188824],[16.535042,50.207738],[16.50476,50.227995],[16.492047,50.242722],[16.477578,50.255332],[16.452153,50.284994],[16.437787,50.297965],[16.415566,50.307938],[16.371021,50.318377],[16.353244,50.333518],[16.35066,50.342251],[16.351487,50.351346],[16.350764,50.360648],[16.343736,50.36995],[16.334227,50.371862],[16.288649,50.371862],[16.27697,50.369433],[16.269839,50.365454],[16.2625,50.36442],[16.249685,50.371035],[16.24493,50.376823],[16.232011,50.402609],[16.199559,50.406278],[16.190153,50.424158],[16.198008,50.440023],[16.217955,50.437129],[16.216095,50.440178],[16.211237,50.451289],[16.217335,50.45165],[16.226534,50.455371],[16.232011,50.456766],[16.247411,50.464983],[16.264981,50.471649],[16.279967,50.479866],[16.287719,50.492785],[16.303428,50.49604],[16.335468,50.490356],[16.352624,50.492785],[16.362029,50.501208],[16.382596,50.514179],[16.391175,50.521827],[16.388384,50.521258],[16.388281,50.52715],[16.389624,50.534849],[16.391175,50.539914],[16.395516,50.545701],[16.398306,50.548492],[16.398306,50.551799],[16.394482,50.559344],[16.425901,50.567561],[16.416806,50.586629],[16.331644,50.644042],[16.300948,50.6551],[16.268288,50.660423],[16.232011,50.660888],[16.219092,50.659131],[16.211754,50.649106],[16.204519,50.636342],[16.192324,50.626575],[16.175477,50.624095],[16.160284,50.628642],[16.128658,50.644042],[16.086491,50.64678],[16.024479,50.608592],[15.982001,50.603631],[15.979934,50.606628],[15.97921,50.60978],[15.980037,50.612984],[15.982001,50.61624],[15.996367,50.623681],[15.998641,50.635567],[15.993163,50.649364],[15.984481,50.662904],[15.971459,50.678613],[15.958023,50.686881],[15.941486,50.68838],[15.882265,50.674221],[15.854567,50.673704],[15.848159,50.675151],[15.797619,50.729773],[15.794415,50.735871],[15.792245,50.742692],[15.76744,50.744191],[15.684345,50.731426],[15.673803,50.733545],[15.666464,50.738093],[15.653235,50.75096],[15.641866,50.755766],[15.441775,50.800208],[15.400124,50.797986],[15.390822,50.790648],[15.381314,50.780002],[15.370255,50.772613],[15.368579,50.772949],[15.356096,50.775455],[15.349688,50.783723],[15.350515,50.793232],[15.353305,50.803257],[15.352995,50.812972],[15.341006,50.83173],[15.325813,50.839689],[15.307727,50.844753],[15.28778,50.854881],[15.277134,50.865734],[15.265352,50.88227],[15.25605,50.899892],[15.253053,50.914103],[15.260081,50.932499],[15.268763,50.94299],[15.269796,50.952653],[15.253776,50.969035],[15.227111,50.977406],[15.170164,50.977975],[15.160759,50.992651],[15.156108,51.007844],[15.144429,51.011564],[15.13151,51.005828],[15.122518,50.992754],[15.122518,50.992651],[15.119211,50.982471],[15.107946,50.981024],[15.09389,50.985416],[15.082107,50.992754],[15.073632,51.002624],[15.02299,51.009652],[15.003973,51.020685],[15.001182,51.012443],[14.996531,51.007844],[14.982062,51.001177],[14.976377,51.000402],[14.970693,50.998697],[14.965629,50.996062],[14.961081,50.992651],[14.960978,50.992651],[14.965215,50.981334],[14.981442,50.973221],[14.996635,50.959216],[14.997771,50.930174],[14.994671,50.92511],[14.984852,50.918082],[14.982062,50.914671],[14.981132,50.90909],[14.981752,50.905266],[14.982889,50.902424],[14.984129,50.867697],[14.982062,50.859067],[14.867857,50.86439],[14.831683,50.857982],[14.810393,50.858447],[14.810496,50.877051],[14.824655,50.89183],[14.860209,50.916842],[14.910645,50.992651],[14.955293,51.064042],[14.958291,51.075514],[14.958497,51.094738],[14.960254,51.104582],[14.965629,51.111507],[14.97338,51.116132],[14.979995,51.122798],[14.982062,51.13564],[14.983199,51.160909],[14.991364,51.18897],[15.004903,51.215609],[15.022059,51.23677],[15.017925,51.239561],[15.014308,51.242661],[15.019476,51.271678],[15.004903,51.291289],[14.982269,51.308006],[14.963768,51.328393],[14.960978,51.335291],[14.956637,51.353223],[14.956637,51.354153],[14.950648,51.396539],[14.946922,51.422909],[14.955397,51.435415],[14.945061,51.449186],[14.926561,51.46133],[14.910955,51.468978],[14.888321,51.475748],[14.841399,51.48443],[14.818558,51.492595],[14.818558,51.492698],[14.797474,51.502103],[14.732155,51.515823],[14.710037,51.530241],[14.70677,51.540828],[14.704559,51.547992],[14.712724,51.567422],[14.732155,51.58662],[14.743937,51.606644],[14.742283,51.632974],[14.732465,51.658347],[14.719546,51.675632],[14.67097,51.700773],[14.648439,51.717206],[14.638103,51.742631],[14.634176,51.769012],[14.620327,51.780536],[14.60224,51.788313],[14.585807,51.803893],[14.58281,51.825081],[14.595936,51.842418],[14.653296,51.878617],[14.671693,51.893888],[14.687093,51.911897],[14.695568,51.931457],[14.699082,51.992512],[14.704456,52.002227],[14.726057,52.026438],[14.730294,52.035895],[14.732155,52.045067],[14.735359,52.054033],[14.743007,52.062534],[14.761403,52.076667],[14.696394,52.106691],[14.686369,52.121032],[14.692467,52.146973],[14.703216,52.165163],[14.70704,52.179452],[14.69257,52.193379],[14.69257,52.19958],[14.712104,52.215444],[14.712414,52.235908],[14.696911,52.253478],[14.668903,52.260997],[14.640481,52.265054],[14.606581,52.275751],[14.584153,52.291228],[14.590148,52.309418],[14.569167,52.338512],[14.545396,52.382153],[14.539815,52.421866],[14.591595,52.449797],[14.615779,52.473284],[14.632316,52.496745],[14.627665,52.507416],[14.609061,52.517803],[14.616813,52.541032],[14.644821,52.576921],[14.613712,52.592527],[14.607965,52.596463],[14.549943,52.636194],[14.490102,52.650638],[14.46137,52.674564],[14.442353,52.679964],[14.431915,52.686088],[14.397705,52.727119],[14.382202,52.738152],[14.275955,52.78572],[14.24867,52.794582],[14.21601,52.817992],[14.19596,52.823366],[14.173739,52.824348],[14.152758,52.828327],[14.135395,52.836595],[14.123923,52.850651],[14.150485,52.86463],[14.16082,52.876748],[14.164954,52.895661],[14.16268,52.908167],[14.150485,52.943643],[14.14449,52.953694],[14.14449,52.959921],[14.192859,52.981651],[14.253734,53.000875],[14.312645,53.029219],[14.343341,53.048624],[14.356777,53.066684],[14.359568,53.075056],[14.38954,53.131668],[14.387473,53.146137],[14.381478,53.160296],[14.377861,53.176549],[14.380651,53.189855],[14.387783,53.202077],[14.397705,53.210991],[14.408247,53.214402],[14.415585,53.22099],[14.44163,53.251841],[14.428607,53.259076],[14.42468,53.264657],[14.409384,53.272434],[14.403286,53.27879],[14.400185,53.288609],[14.399565,53.306747],[14.398015,53.315222],[14.391261,53.334017],[14.370316,53.392298],[14.359878,53.444077],[14.338897,53.465213],[14.328458,53.48609],[14.30417,53.508518],[14.296936,53.529137],[14.296212,53.551306],[14.298899,53.587893],[14.297039,53.597763],[14.276058,53.636624],[14.260969,53.656209],[14.265103,53.671764],[14.263863,53.699876],[14.263901,53.699976],[14.263927,53.699978],[14.273692,53.700629],[14.291677,53.705268],[14.304861,53.712551],[14.306163,53.720689],[14.288585,53.727973],[14.29835,53.731431],[14.301606,53.734849],[14.29835,53.738267],[14.288585,53.741645],[14.2942,53.749091],[14.304047,53.743883],[14.318044,53.739732],[14.330414,53.734198],[14.342052,53.714911],[14.356212,53.708441],[14.383556,53.700629],[14.403575,53.687812],[14.414561,53.682359],[14.458669,53.677883],[14.51238,53.666449],[14.531016,53.657782],[14.546235,53.644761],[14.579112,53.607245],[14.590587,53.598375],[14.595876,53.601304],[14.597016,53.617336],[14.601573,53.626654],[14.610037,53.632758],[14.62379,53.639228],[14.623057,53.643012],[14.622813,53.646959],[14.62379,53.652818],[14.613048,53.65469],[14.587413,53.656073],[14.575938,53.659654],[14.544932,53.704047],[14.551443,53.726142],[14.575938,53.769517],[14.587413,53.763495],[14.597341,53.765204],[14.608246,53.769029],[14.62379,53.769517],[14.61671,53.794745],[14.620372,53.814846],[14.627289,53.832709],[14.630626,53.851508],[14.62379,53.851508],[14.621349,53.839545],[14.613536,53.83161],[14.58961,53.817328],[14.595876,53.810492],[14.587087,53.812649],[14.580089,53.815334],[14.574474,53.819078],[14.569102,53.824164],[14.574229,53.827094],[14.583263,53.834215],[14.58961,53.837836],[14.575857,53.854804],[14.552094,53.862779],[14.441173,53.869615],[14.425548,53.879828],[14.438162,53.899319],[14.434906,53.901313],[14.434093,53.901597],[14.433767,53.902411],[14.431895,53.906155],[14.422048,53.896145],[14.414236,53.894721],[14.405772,53.897406],[14.393809,53.899319],[14.385102,53.897284],[14.378266,53.89232],[14.371593,53.885891],[14.363048,53.879381],[14.392914,53.875963],[14.40919,53.871568],[14.417654,53.865139],[14.415701,53.853013],[14.405284,53.844184],[14.392589,53.840725],[14.383556,53.844672],[14.356212,53.834459],[14.342621,53.831855],[14.328298,53.831],[14.328298,53.824164],[14.342052,53.82099],[14.341319,53.818915],[14.328298,53.817328],[14.318858,53.818183],[14.303071,53.823065],[14.291352,53.824164],[14.274669,53.830797],[14.226573,53.871975],[14.203136,53.878323],[14.200857,53.87816],[14.200819,53.878157],[14.192756,53.893766],[14.175289,53.906478],[14.184798,53.908132],[14.193066,53.911491],[14.210076,53.938457],[14.226573,53.934027],[14.237478,53.928656],[14.268077,53.92182],[14.367035,53.916978],[14.406749,53.92182],[14.445567,53.934027],[14.517345,53.965237],[14.781912,54.034613],[15.010102,54.06981],[15.288341,54.138861],[15.468516,54.167141],[15.665782,54.198432],[15.859711,54.249986],[16.020844,54.261786],[16.131521,54.283515],[16.118907,54.276028],[16.069347,54.263007],[16.091075,54.253974],[16.17921,54.263007],[16.17921,54.269192],[16.172374,54.269192],[16.172374,54.276597],[16.220063,54.276597],[16.219574,54.28148],[16.218516,54.282375],[16.216645,54.28205],[16.213227,54.283515],[16.21518,54.299628],[16.192149,54.300279],[16.137706,54.290269],[16.17213,54.300238],[16.213552,54.316107],[16.275401,54.358588],[16.262869,54.343695],[16.240489,54.330024],[16.231781,54.322577],[16.240896,54.32453],[16.259044,54.326728],[16.274913,54.330471],[16.288829,54.340237],[16.323904,54.349921],[16.336762,54.358588],[16.32488,54.373114],[16.305024,54.373481],[16.296235,54.367255],[16.281586,54.358588],[16.323985,54.401313],[16.439789,54.488267],[16.439789,54.482123],[16.434418,54.472357],[16.444509,54.469875],[16.460623,54.473456],[16.473399,54.482123],[16.479747,54.495551],[16.473888,54.499661],[16.460948,54.496487],[16.446056,54.488267],[16.466563,54.512152],[16.501313,54.532416],[16.569591,54.557196],[16.778494,54.575141],[16.85963,54.59394],[16.902192,54.598131],[16.939952,54.606024],[17.035818,54.66706],[17.337413,54.74901],[17.715668,54.790432],[17.885427,54.824123],[18.152354,54.838324],[18.316905,54.838324],[18.339529,54.833482],[18.375824,54.815131],[18.389171,54.811103],[18.410167,54.808295],[18.75172,54.69009],[18.813975,54.643215],[18.824067,54.632229],[18.834321,54.616685],[18.835297,54.603095],[18.817638,54.598131],[18.813243,54.601549],[18.80836,54.608832],[18.802257,54.616034],[18.784028,54.623521],[18.771821,54.642279],[18.755382,54.654486],[18.707774,54.701239],[18.698497,54.703803],[18.663422,54.707994],[18.654552,54.71015],[18.64503,54.71955],[18.61671,54.725246],[18.556977,54.74901],[18.49822,54.765367],[18.48878,54.773179],[18.456309,54.787665],[18.447765,54.789984],[18.435557,54.786811],[18.42921,54.781684],[18.41505,54.753119],[18.413097,54.746527],[18.413097,54.73192],[18.418468,54.728217],[18.442393,54.721991],[18.447765,54.718248],[18.459809,54.706041],[18.474457,54.687567],[18.473888,54.679918],[18.470063,54.673285],[18.470388,54.666734],[18.481944,54.659613],[18.475922,54.640082],[18.487315,54.631781],[18.506358,54.634101],[18.52296,54.646552],[18.5171,54.62995],[18.525157,54.616685],[18.537608,54.605455],[18.562836,54.560004],[18.570649,54.55036],[18.566742,54.527411],[18.567556,54.48786],[18.574067,54.450385],[18.588064,54.433661],[18.60377,54.430609],[18.634288,54.416938],[18.649913,54.413804],[18.663341,54.412991],[18.680024,54.40998],[18.694347,54.404527],[18.70045,54.395819],[18.717296,54.382025],[18.885916,54.350165],[18.923188,54.348538],[18.954356,54.358588],[18.962901,54.353502],[18.97462,54.349758],[19.002126,54.344916]]]]},"properties":{"cartodb_id":175,"year":2012,"country":"Poland","num_occurrences":730,"ru_name":"Польша","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-16.023101,30.032294],[-16.02302,30.029242],[-16.027252,30.029608],[-16.027984,30.033596],[-16.023101,30.032294]]],[[[-15.85497,30.139594],[-15.859771,30.133287],[-15.863271,30.13467],[-15.870229,30.136176],[-15.874745,30.137926],[-15.874094,30.139716],[-15.874135,30.141669],[-15.873443,30.143541],[-15.86441,30.152533],[-15.855458,30.146918],[-15.85497,30.139594]]],[[[-16.492055,32.517157],[-16.48705,32.491685],[-16.52184,32.539496],[-16.530426,32.548529],[-16.536773,32.55801],[-16.540761,32.568508],[-16.542348,32.580512],[-16.525258,32.567206],[-16.506663,32.544176],[-16.492055,32.517157]]],[[[-17.067983,32.814154],[-17.041168,32.812201],[-17.014312,32.817043],[-16.994781,32.827541],[-16.97997,32.833238],[-16.957875,32.837795],[-16.919749,32.841213],[-16.903066,32.83633],[-16.872874,32.81745],[-16.860748,32.813218],[-16.808705,32.780015],[-16.797475,32.774563],[-16.785634,32.772284],[-16.747467,32.770819],[-16.730133,32.766791],[-16.713612,32.758612],[-16.703684,32.764635],[-16.693023,32.766669],[-16.682485,32.764635],[-16.672678,32.758612],[-16.689768,32.754869],[-16.725087,32.741156],[-16.737864,32.738105],[-16.749989,32.730618],[-16.782216,32.696112],[-16.788686,32.686672],[-16.806386,32.656806],[-16.847808,32.644029],[-16.895904,32.641588],[-16.976796,32.647203],[-17.142974,32.705552],[-17.180653,32.725979],[-17.214467,32.750637],[-17.2412,32.77912],[-17.249908,32.796536],[-17.252105,32.814521],[-17.246449,32.828599],[-17.231272,32.834377],[-17.224965,32.839301],[-17.200266,32.868476],[-17.191396,32.872748],[-17.184885,32.874172],[-17.177561,32.872748],[-17.166127,32.868476],[-17.155751,32.861233],[-17.131947,32.839057],[-17.121693,32.834377],[-17.115549,32.833441],[-17.093902,32.827704],[-17.067983,32.814154]]],[[[-16.317128,33.110785],[-16.295888,33.101264],[-16.289133,33.10871],[-16.289784,33.079413],[-16.286,33.067532],[-16.27538,33.060248],[-16.31078,33.066067],[-16.325673,33.065823],[-16.339955,33.057196],[-16.352691,33.043769],[-16.364329,33.034369],[-16.378285,33.03205],[-16.398346,33.039781],[-16.398346,33.046617],[-16.38801,33.047349],[-16.379872,33.051337],[-16.374135,33.058173],[-16.361684,33.090318],[-16.341298,33.105943],[-16.317128,33.110785]]],[[[-7.860097,36.980536],[-7.878489,36.970852],[-7.903879,36.965888],[-7.931386,36.966498],[-7.955719,36.97309],[-7.955719,36.980536],[-7.903961,36.97484],[-7.884023,36.980862],[-7.860097,37.000434],[-7.857818,36.997463],[-7.856068,36.994208],[-7.853261,36.986762],[-7.85912,36.983385],[-7.860097,36.980536]]],[[[-25.016916,36.970445],[-25.012196,36.949205],[-25.027089,36.934312],[-25.060658,36.937242],[-25.119008,36.952623],[-25.151723,36.945868],[-25.169097,36.94599],[-25.176666,36.956041],[-25.183217,36.968899],[-25.195302,36.98017],[-25.20165,36.990424],[-25.190989,37.000434],[-25.170318,37.01553],[-25.133616,37.023017],[-25.094472,37.024482],[-25.066803,37.02147],[-25.046742,37.010728],[-25.029205,36.992377],[-25.016916,36.970445]]],[[[-25.680735,37.843329],[-25.553782,37.829657],[-25.538889,37.832953],[-25.512563,37.84748],[-25.498891,37.850775],[-25.489858,37.848049],[-25.468861,37.834662],[-25.458485,37.829657],[-25.442047,37.837307],[-25.339752,37.861802],[-25.197825,37.864407],[-25.159169,37.852037],[-25.135162,37.822333],[-25.132314,37.7862],[-25.15685,37.754543],[-25.194732,37.740709],[-25.327545,37.72724],[-25.372426,37.717434],[-25.420318,37.713568],[-25.465443,37.715399],[-25.488271,37.71369],[-25.505686,37.706732],[-25.532704,37.72012],[-25.559071,37.729071],[-25.615549,37.740912],[-25.704254,37.744045],[-25.825063,37.815416],[-25.859486,37.853909],[-25.841461,37.905992],[-25.764556,37.911566],[-25.739084,37.905992],[-25.704213,37.882636],[-25.69811,37.874335],[-25.697174,37.862535],[-25.694203,37.852688],[-25.688832,37.845852],[-25.680735,37.843329]]],[[[-28.047109,38.432563],[-28.040598,38.409084],[-28.054189,38.398505],[-28.084869,38.398179],[-28.162709,38.407172],[-28.185211,38.405951],[-28.205312,38.400336],[-28.241851,38.37759],[-28.253651,38.382554],[-28.262929,38.394843],[-28.274566,38.405666],[-28.296783,38.411322],[-28.439443,38.41352],[-28.459543,38.405666],[-28.52538,38.453925],[-28.548899,38.484442],[-28.548899,38.528551],[-28.518666,38.550116],[-28.48526,38.557807],[-28.41454,38.556464],[-28.374501,38.550482],[-28.274566,38.501858],[-28.239125,38.489651],[-28.236684,38.487535],[-28.226226,38.484442],[-28.206288,38.470852],[-28.19579,38.467719],[-28.174469,38.464789],[-28.109486,38.446601],[-28.063832,38.442776],[-28.047109,38.432563]]],[[[-28.623402,38.522366],[-28.63622,38.51553],[-28.647817,38.515815],[-28.671783,38.522366],[-28.683949,38.52143],[-28.714345,38.515326],[-28.72704,38.514879],[-28.749582,38.523505],[-28.77538,38.554389],[-28.795318,38.569525],[-28.841135,38.591132],[-28.842397,38.599433],[-28.808949,38.604234],[-28.779897,38.604885],[-28.766347,38.606757],[-28.753774,38.611721],[-28.745107,38.619208],[-28.728586,38.638983],[-28.719594,38.645209],[-28.632639,38.614],[-28.609731,38.597398],[-28.596059,38.55272],[-28.603017,38.5515],[-28.634999,38.540595],[-28.643951,38.535346],[-28.637807,38.529446],[-28.635365,38.525784],[-28.632069,38.523627],[-28.623402,38.522366]]],[[[-28.232533,38.725572],[-28.034332,38.666327],[-27.890981,38.604234],[-27.81664,38.582831],[-27.77892,38.567084],[-27.76061,38.549018],[-27.777455,38.544135],[-27.796457,38.541571],[-27.835764,38.542792],[-27.852203,38.547268],[-27.884918,38.560533],[-27.915151,38.565172],[-27.931996,38.570299],[-27.948598,38.577826],[-27.962392,38.586859],[-27.976877,38.593085],[-28.003774,38.589423],[-28.020741,38.597398],[-28.034535,38.590074],[-28.044179,38.59394],[-28.061635,38.611721],[-28.074371,38.617621],[-28.177887,38.645087],[-28.19579,38.655748],[-28.215566,38.682115],[-28.223053,38.686225],[-28.231109,38.685045],[-28.234731,38.683254],[-28.238637,38.682847],[-28.247222,38.686225],[-28.249623,38.689927],[-28.248525,38.694403],[-28.249257,38.698188],[-28.257192,38.699897],[-28.265492,38.703192],[-28.312123,38.735256],[-28.315785,38.742092],[-28.315541,38.755072],[-28.297475,38.749254],[-28.264475,38.731513],[-28.250356,38.727729],[-28.232533,38.725572]]],[[[-27.051747,38.654283],[-27.054351,38.645209],[-27.060292,38.641425],[-27.089101,38.631008],[-27.114166,38.638983],[-27.181711,38.63935],[-27.204498,38.652655],[-27.217152,38.641303],[-27.228383,38.641099],[-27.252919,38.652655],[-27.278798,38.657416],[-27.304758,38.658881],[-27.327626,38.666327],[-27.352691,38.684394],[-27.373402,38.706977],[-27.38329,38.727729],[-27.391713,38.758857],[-27.368764,38.78266],[-27.331776,38.798041],[-27.298207,38.803534],[-27.144276,38.796088],[-27.115549,38.786078],[-27.075063,38.766995],[-27.042551,38.744452],[-27.037506,38.724351],[-27.040883,38.714423],[-27.032826,38.708564],[-27.022817,38.702826],[-27.020131,38.693671],[-27.025746,38.690009],[-27.04776,38.682929],[-27.054351,38.679389],[-27.056142,38.671332],[-27.051747,38.654283]]],[[[-9.054555,38.832994],[-9.07315,38.818183],[-9.079661,38.820136],[-9.071401,38.837592],[-9.061391,38.85224],[-9.05012,38.861721],[-9.043935,38.86579],[-9.041127,38.867621],[-9.035268,38.870551],[-9.034576,38.864203],[-9.041412,38.849189],[-9.054555,38.832994]]],[[[-28.023834,39.103217],[-28.013824,39.097724],[-28.007069,39.10456],[-27.991282,39.087795],[-27.958079,39.066474],[-27.942209,39.053046],[-27.935902,39.035956],[-27.947174,39.024237],[-27.966217,39.01732],[-27.983469,39.015123],[-28.003896,39.015937],[-28.025217,39.01911],[-28.045155,39.02558],[-28.061635,39.036282],[-28.072987,39.052965],[-28.071523,39.067613],[-28.05484,39.097724],[-28.04483,39.103217],[-28.034332,39.105048],[-28.023834,39.103217]]],[[[-31.186269,39.496649],[-31.172719,39.495347],[-31.159535,39.501776],[-31.140736,39.482733],[-31.13268,39.465522],[-31.131581,39.423],[-31.139027,39.400295],[-31.156646,39.372626],[-31.177235,39.355618],[-31.193674,39.364651],[-31.212514,39.357733],[-31.234446,39.355699],[-31.25475,39.3581],[-31.268788,39.364651],[-31.278147,39.378404],[-31.284657,39.397895],[-31.284901,39.416164],[-31.275624,39.426093],[-31.280914,39.443101],[-31.275624,39.457099],[-31.267079,39.472073],[-31.262563,39.491889],[-31.255767,39.507473],[-31.239329,39.517564],[-31.218984,39.522406],[-31.20051,39.522203],[-31.207916,39.508612],[-31.198557,39.502183],[-31.186269,39.496649]]],[[[-31.099965,39.664008],[-31.131581,39.65884],[-31.133046,39.665351],[-31.148915,39.696357],[-31.152699,39.701077],[-31.149648,39.711493],[-31.141103,39.720893],[-31.129384,39.727118],[-31.117299,39.728339],[-31.082672,39.722724],[-31.08023,39.693305],[-31.099965,39.664008]]],[[[-8.204016,42.069552],[-8.191304,42.062085],[-8.176163,42.065263],[-8.158386,42.071387],[-8.137612,42.072911],[-8.11844,42.066865],[-8.103196,42.055806],[-8.095083,42.040923],[-8.097356,42.023483],[-8.108028,42.010899],[-8.123918,42.0009],[-8.15296,41.986818],[-8.182132,41.965424],[-8.220708,41.922714],[-8.230216,41.904678],[-8.231715,41.886049],[-8.220398,41.868195],[-8.184586,41.85773],[-8.177041,41.84985],[-8.175388,41.836595],[-8.179265,41.812613],[-8.179574,41.810705],[-8.093481,41.806726],[-8.050446,41.815986],[-8.048574,41.816389],[-8.015708,41.841892],[-8.005889,41.853958],[-7.993642,41.863673],[-7.979431,41.868608],[-7.963359,41.866619],[-7.944756,41.866955],[-7.935351,41.879951],[-7.930493,41.896669],[-7.925791,41.908167],[-7.906102,41.913851],[-7.903363,41.886824],[-7.896593,41.857937],[-7.864812,41.857885],[-7.857888,41.863777],[-7.854425,41.870262],[-7.849723,41.875765],[-7.839233,41.878375],[-7.812154,41.877135],[-7.750142,41.888375],[-7.72203,41.899252],[-7.706372,41.896255],[-7.678674,41.881347],[-7.661156,41.874913],[-7.60736,41.873182],[-7.622812,41.841737],[-7.622192,41.832331],[-7.606068,41.825536],[-7.588395,41.824218],[-7.567104,41.826595],[-7.546692,41.832047],[-7.531551,41.84016],[-7.526332,41.847369],[-7.525247,41.854165],[-7.523283,41.860159],[-7.515841,41.864991],[-7.508142,41.864939],[-7.493,41.856904],[-7.483285,41.856206],[-7.469384,41.852537],[-7.456569,41.83923],[-7.446957,41.821841],[-7.442719,41.805951],[-7.429542,41.814503],[-7.405409,41.835199],[-7.391921,41.842047],[-7.376832,41.844036],[-7.340503,41.843209],[-7.322468,41.845406],[-7.251465,41.863699],[-7.21865,41.879047],[-7.209316,41.889161],[-7.197928,41.9015],[-7.195654,41.917365],[-7.202114,41.94974],[-7.199943,41.963719],[-7.192605,41.96961],[-7.177309,41.978369],[-7.159739,41.985733],[-7.145373,41.98749],[-7.113179,41.972426],[-7.082741,41.952789],[-7.05127,41.942015],[-7.015769,41.953668],[-6.992359,41.96638],[-6.983456,41.962996],[-6.969518,41.957698],[-6.945127,41.943358],[-6.917118,41.939095],[-6.854952,41.942945],[-6.831232,41.953952],[-6.824928,41.983769],[-6.794387,41.979713],[-6.757903,41.93757],[-6.727983,41.930853],[-6.656772,41.933075],[-6.622821,41.940955],[-6.609488,41.962324],[-6.585149,41.95465],[-6.571661,41.942609],[-6.567631,41.926072],[-6.575795,41.882897],[-6.567889,41.875869],[-6.550061,41.873879],[-6.524222,41.86742],[-6.535746,41.848584],[-6.560137,41.766883],[-6.564375,41.757504],[-6.571506,41.74921],[-6.577397,41.739727],[-6.574349,41.731046],[-6.567682,41.722442],[-6.563083,41.713036],[-6.560499,41.694459],[-6.55528,41.674899],[-6.541534,41.658905],[-6.513422,41.650921],[-6.503035,41.653092],[-6.488049,41.658802],[-6.474355,41.665933],[-6.46774,41.672057],[-6.460815,41.676553],[-6.447069,41.676243],[-6.365937,41.663608],[-6.317103,41.650146],[-6.272248,41.628235],[-6.23008,41.594904],[-6.216127,41.580099],[-6.205947,41.57028],[-6.253645,41.517519],[-6.279534,41.497003],[-6.285891,41.486874],[-6.285167,41.478968],[-6.28248,41.472302],[-6.282945,41.465635],[-6.321031,41.419592],[-6.321134,41.411013],[-6.352347,41.409256],[-6.366248,41.405174],[-6.379167,41.397319],[-6.376169,41.396854],[-6.375549,41.390808],[-6.376738,41.383005],[-6.379167,41.377475],[-6.383197,41.376545],[-6.395496,41.378406],[-6.399579,41.377475],[-6.430998,41.339028],[-6.463141,41.31412],[-6.495852,41.294948],[-6.554453,41.275621],[-6.563496,41.270712],[-6.628919,41.269937],[-6.646644,41.267611],[-6.658219,41.257845],[-6.693773,41.217382],[-6.701266,41.202447],[-6.70695,41.194334],[-6.742245,41.171442],[-6.755216,41.158833],[-6.758988,41.151753],[-6.756508,41.127051],[-6.764776,41.108861],[-6.80436,41.06442],[-6.818003,41.054136],[-6.845288,41.051914],[-6.906835,41.0561],[-6.927448,41.048098],[-6.927867,41.047935],[-6.931794,41.029125],[-6.942491,41.015999],[-6.940424,41.00339],[-6.930606,40.992073],[-6.899238,40.966751],[-6.885182,40.948923],[-6.863633,40.908305],[-6.855262,40.887221],[-6.847045,40.878901],[-6.832059,40.875904],[-6.821155,40.870065],[-6.816194,40.856835],[-6.820328,40.844226],[-6.836658,40.840247],[-6.838053,40.814926],[-6.836813,40.808311],[-6.833506,40.797821],[-6.834539,40.79224],[-6.837278,40.786762],[-6.839139,40.776892],[-6.839139,40.757513],[-6.836968,40.743302],[-6.824307,40.710694],[-6.816246,40.677156],[-6.814231,40.659328],[-6.814282,40.647184],[-6.82131,40.630183],[-6.844461,40.597781],[-6.850456,40.582227],[-6.848389,40.56476],[-6.839759,40.55458],[-6.828545,40.545537],[-6.818055,40.531894],[-6.812525,40.514634],[-6.815316,40.502542],[-6.838673,40.47722],[-6.857122,40.442132],[-6.851283,40.409524],[-6.82808,40.380585],[-6.794438,40.356401],[-6.811957,40.33232],[-6.820793,40.325343],[-6.863943,40.300952],[-6.870196,40.295526],[-6.873865,40.287775],[-6.874509,40.279188],[-6.875105,40.271238],[-6.878051,40.265244],[-6.896448,40.255477],[-6.915826,40.254443],[-6.935412,40.255839],[-6.942101,40.254978],[-6.954687,40.253358],[-6.997785,40.231706],[-7.015769,40.225504],[-7.02476,40.216203],[-7.034579,40.193052],[-7.043105,40.181373],[-7.034837,40.166748],[-7.027654,40.132642],[-7.015769,40.119051],[-7.003676,40.116312],[-6.977166,40.113418],[-6.966418,40.110318],[-6.955721,40.102928],[-6.94213,40.08634],[-6.919909,40.064894],[-6.879705,40.009187],[-6.896913,39.987121],[-6.901615,39.976476],[-6.899755,39.965624],[-6.903682,39.956684],[-6.909522,39.931982],[-6.912571,39.928107],[-6.922286,39.922422],[-6.925231,39.917926],[-6.925128,39.912242],[-6.921562,39.902165],[-6.921769,39.897152],[-6.923474,39.888316],[-6.92425,39.871573],[-6.92766,39.861909],[-6.952827,39.832867],[-6.962335,39.828526],[-6.985228,39.821136],[-6.993031,39.816072],[-7.000266,39.802533],[-6.99887,39.791784],[-6.994581,39.782586],[-6.993031,39.774214],[-6.996803,39.764706],[-7.008741,39.748324],[-7.01334,39.738919],[-7.01365,39.729617],[-7.010704,39.722796],[-7.009619,39.715458],[-7.021143,39.694012],[-7.035767,39.689258],[-7.18289,39.675099],[-7.214051,39.676184],[-7.235755,39.686519],[-7.25286,39.682333],[-7.292754,39.683315],[-7.311409,39.680318],[-7.327843,39.674789],[-7.341433,39.671843],[-7.557286,39.679801],[-7.555872,39.677207],[-7.548243,39.663213],[-7.515841,39.59376],[-7.497858,39.581048],[-7.468092,39.550249],[-7.451349,39.537846],[-7.417553,39.524204],[-7.408923,39.515574],[-7.399414,39.493663],[-7.38417,39.483999],[-7.362931,39.476093],[-7.320918,39.467411],[-7.313528,39.457438],[-7.313632,39.436095],[-7.318851,39.413254],[-7.326706,39.398837],[-7.331925,39.384729],[-7.331408,39.362611],[-7.326654,39.341321],[-7.319264,39.329538],[-7.300454,39.317911],[-7.250845,39.270627],[-7.264332,39.252334],[-7.265779,39.231353],[-7.258079,39.211303],[-7.244127,39.195645],[-7.219322,39.184844],[-7.191572,39.17916],[-7.168059,39.170633],[-7.155812,39.151513],[-7.15793,39.141385],[-7.168886,39.121851],[-7.167491,39.113479],[-7.157207,39.105444],[-7.142531,39.099527],[-7.127286,39.097485],[-7.115194,39.101103],[-7.091268,39.112446],[-7.064913,39.114771],[-7.038816,39.109138],[-7.015769,39.096814],[-6.999697,39.084696],[-6.985693,39.066764],[-6.979388,39.047178],[-6.986313,39.030074],[-6.974893,39.02302],[-6.973291,39.013951],[-6.97882,39.003822],[-6.988638,38.993771],[-7.022125,38.94287],[-7.044501,38.918633],[-7.06605,38.904603],[-7.0522,38.884992],[-7.057265,38.869437],[-7.056076,38.855149],[-7.064293,38.851118],[-7.07654,38.843237],[-7.088684,38.833367],[-7.104859,38.827192],[-7.151006,38.819285],[-7.160618,38.812903],[-7.166199,38.803421],[-7.179738,38.790889],[-7.196429,38.779985],[-7.211519,38.77536],[-7.225878,38.766134],[-7.27043,38.737507],[-7.272187,38.733735],[-7.280714,38.720428],[-7.284073,38.713245],[-7.290946,38.679087],[-7.292961,38.656272],[-7.292496,38.646118],[-7.290946,38.638159],[-7.286036,38.631907],[-7.279422,38.628909],[-7.273531,38.625395],[-7.27043,38.617696],[-7.275856,38.60382],[-7.317714,38.556252],[-7.335801,38.505868],[-7.345619,38.494137],[-7.334095,38.481011],[-7.335181,38.469436],[-7.344844,38.458326],[-7.35921,38.446362],[-7.345516,38.440962],[-7.317146,38.424581],[-7.211364,38.317533],[-7.207126,38.311694],[-7.200667,38.298387],[-7.196326,38.29216],[-7.189453,38.286527],[-7.1724,38.276528],[-7.167181,38.272084],[-7.126873,38.1909],[-7.117068,38.183633],[-7.103515,38.173588],[-7.088322,38.173382],[-7.063053,38.177542],[-7.038713,38.186223],[-7.026414,38.199633],[-7.02104,38.198238],[-7.018146,38.198031],[-6.992101,38.204284],[-6.964196,38.206145],[-6.950576,38.198386],[-6.947504,38.196636],[-6.957633,38.168162],[-6.965487,38.153331],[-6.978975,38.119948],[-6.99763,38.089614],[-7.006363,38.059332],[-7.015769,38.046826],[-7.023985,38.022564],[-7.049358,38.020213],[-7.105944,38.038661],[-7.123256,38.040005],[-7.131989,38.032383],[-7.141911,38.011583],[-7.152246,38.000653],[-7.159739,37.996803],[-7.172865,37.993832],[-7.185267,37.98869],[-7.197618,37.98993],[-7.21033,37.993031],[-7.223301,37.993832],[-7.23405,37.98807],[-7.265831,37.982954],[-7.272704,37.977011],[-7.272135,37.96895],[-7.269086,37.959441],[-7.268621,37.949235],[-7.273892,37.931536],[-7.295803,37.884872],[-7.306862,37.850766],[-7.334405,37.811931],[-7.426338,37.750617],[-7.444011,37.730153],[-7.45755,37.700077],[-7.466335,37.651966],[-7.471606,37.636903],[-7.478479,37.628867],[-7.504886,37.606388],[-7.514343,37.601401],[-7.511759,37.595277],[-7.512534,37.590368],[-7.514653,37.585872],[-7.515841,37.580937],[-7.526487,37.571196],[-7.529691,37.567165],[-7.529122,37.556701],[-7.527598,37.555512],[-7.52367,37.555667],[-7.518425,37.541947],[-7.517547,37.535178],[-7.515428,37.529338],[-7.514613,37.528334],[-7.506333,37.518124],[-7.498633,37.511665],[-7.481477,37.500374],[-7.475947,37.49425],[-7.468868,37.475569],[-7.462925,37.451126],[-7.460031,37.429138],[-7.462253,37.417872],[-7.444993,37.386763],[-7.437448,37.307336],[-7.427578,37.274522],[-7.434244,37.259329],[-7.429387,37.236746],[-7.414418,37.192816],[-7.411488,37.187934],[-7.409413,37.183743],[-7.406402,37.180487],[-7.400217,37.178534],[-7.400217,37.172349],[-7.407623,37.164862],[-7.424306,37.175035],[-7.445709,37.179633],[-7.468658,37.180325],[-7.490142,37.178534],[-7.51179,37.17178],[-7.552235,37.149237],[-7.569,37.144436],[-7.627349,37.113959],[-7.635162,37.105414],[-7.78661,37.022691],[-7.819569,36.998725],[-7.834055,36.998928],[-7.849599,37.004381],[-7.870717,37.00788],[-7.932444,37.008531],[-7.949534,37.014106],[-7.958119,37.002631],[-7.968821,37.00373],[-7.981597,37.010077],[-7.9912,37.014106],[-7.981353,37.001695],[-7.978098,36.995347],[-7.976796,36.986762],[-7.999257,37.013251],[-8.035268,37.037502],[-8.106557,37.069281],[-8.147475,37.076531],[-8.179152,37.088099],[-8.212896,37.08691],[-8.293202,37.077704],[-8.327382,37.087388],[-8.365384,37.097999],[-8.395215,37.087139],[-8.438834,37.082734],[-8.482257,37.095754],[-8.484252,37.094164],[-8.537465,37.117825],[-8.580149,37.123969],[-8.62678,37.121161],[-8.641591,37.117743],[-8.654652,37.110297],[-8.686269,37.082953],[-8.74767,37.082953],[-8.759674,37.080268],[-8.785553,37.067206],[-8.798573,37.062486],[-8.81371,37.061591],[-8.837215,37.056588],[-8.859158,37.040798],[-8.878919,37.047209],[-8.896962,37.032782],[-8.9051,37.027737],[-8.915598,37.024604],[-8.935618,37.010972],[-8.946034,37.00788],[-8.961171,37.012397],[-8.972076,37.021186],[-8.9829,37.026597],[-8.997874,37.02147],[-8.991038,37.049506],[-8.985585,37.063381],[-8.980784,37.069281],[-8.941793,37.118706],[-8.92691,37.146145],[-8.913564,37.169908],[-8.922719,37.199652],[-8.904652,37.213202],[-8.881365,37.23248],[-8.86709,37.276725],[-8.874919,37.294119],[-8.882768,37.309931],[-8.866676,37.335154],[-8.838657,37.360318],[-8.833363,37.384589],[-8.815989,37.417914],[-8.804064,37.462787],[-8.797861,37.4896],[-8.795497,37.535362],[-8.801305,37.559065],[-8.811144,37.574897],[-8.824371,37.587551],[-8.826527,37.600572],[-8.812856,37.64468],[-8.808258,37.672024],[-8.799306,37.697577],[-8.786206,37.702615],[-8.757639,37.706732],[-8.752187,37.73078],[-8.752187,37.734565],[-8.76183,37.727769],[-8.784056,37.723129],[-8.808705,37.722886],[-8.817006,37.740302],[-8.809582,37.791231],[-8.797182,37.844873],[-8.798956,37.878093],[-8.804815,37.901873],[-8.820669,37.927267],[-8.853871,37.932278],[-8.894846,37.952541],[-8.890045,37.960924],[-8.883168,37.964504],[-8.875396,37.967353],[-8.867502,37.973619],[-8.815683,38.062115],[-8.796993,38.133246],[-8.774396,38.186949],[-8.777952,38.240691],[-8.785466,38.303908],[-8.795071,38.359227],[-8.820941,38.398821],[-8.846791,38.420071],[-8.878285,38.449164],[-8.914662,38.472846],[-8.942616,38.481391],[-8.927317,38.493801],[-8.90453,38.486396],[-8.867502,38.460883],[-8.821848,38.448554],[-8.80016,38.439114],[-8.798573,38.426093],[-8.756988,38.427314],[-8.65689,38.405951],[-8.606801,38.418687],[-8.63683,38.420152],[-8.66275,38.424506],[-8.736155,38.45185],[-8.745025,38.460273],[-8.750803,38.473944],[-8.752512,38.487982],[-8.750885,38.500637],[-8.745758,38.510077],[-8.737172,38.514879],[-8.737172,38.522366],[-8.751454,38.526435],[-8.76122,38.538072],[-8.764231,38.552069],[-8.757639,38.5633],[-8.773346,38.565334],[-8.792958,38.533596],[-8.812856,38.528551],[-8.812856,38.522366],[-8.790639,38.519924],[-8.780263,38.505439],[-8.780019,38.489081],[-8.788401,38.481391],[-8.812327,38.482856],[-8.832265,38.487047],[-8.867502,38.501858],[-8.905832,38.512397],[-8.95489,38.505144],[-8.999765,38.464253],[-8.991864,38.459478],[-9.048595,38.440671],[-9.145657,38.431383],[-9.165909,38.425089],[-9.182141,38.415624],[-9.200357,38.412481],[-9.226186,38.418402],[-9.230621,38.418687],[-9.233998,38.424221],[-9.233754,38.431464],[-9.231068,38.43769],[-9.227203,38.440375],[-9.21996,38.449042],[-9.190027,38.472532],[-9.183868,38.504128],[-9.183793,38.551537],[-9.20807,38.597417],[-9.238464,38.635412],[-9.252675,38.665484],[-9.234395,38.673361],[-9.187681,38.67801],[-9.145042,38.681068],[-9.124135,38.670966],[-9.113922,38.658881],[-9.107737,38.658881],[-9.113922,38.679389],[-9.098866,38.685614],[-9.067291,38.692328],[-9.052398,38.693671],[-9.052398,38.699897],[-9.037434,38.713941],[-9.021168,38.72653],[-8.992709,38.743814],[-8.956858,38.768134],[-8.952952,38.77025],[-8.947133,38.774237],[-8.942616,38.77558],[-8.942616,38.781724],[-8.952626,38.794908],[-8.964263,38.814846],[-8.970286,38.835435],[-8.963124,38.850653],[-8.986318,38.849433],[-8.996816,38.865546],[-9.002594,38.889838],[-9.011545,38.913398],[-8.969106,38.983954],[-8.943227,39.015204],[-8.908437,39.036282],[-8.888417,39.040107],[-8.84553,39.042914],[-8.826527,39.049262],[-8.790354,39.070624],[-8.774648,39.083441],[-8.765126,39.097724],[-8.791737,39.082424],[-8.836415,39.056708],[-8.922719,39.049262],[-8.935862,39.040717],[-8.955068,39.012193],[-9.003529,38.95775],[-9.058909,38.871405],[-9.08967,38.843573],[-9.10025,38.830227],[-9.106557,38.813788],[-9.104217,38.794816],[-9.102257,38.761593],[-9.098248,38.737858],[-9.112503,38.714182],[-9.163287,38.701672],[-9.220171,38.693895],[-9.285209,38.698758],[-9.303485,38.687705],[-9.321777,38.670325],[-9.360585,38.689521],[-9.404775,38.704088],[-9.429189,38.707261],[-9.471669,38.70246],[-9.491689,38.707587],[-9.491282,38.727729],[-9.484731,38.744696],[-9.497467,38.788235],[-9.497467,38.80976],[-9.491933,38.819241],[-9.479888,38.830756],[-9.455496,38.850469],[-9.422725,38.931404],[-9.425364,38.991645],[-9.436635,39.029486],[-9.426647,39.051724],[-9.422549,39.078625],[-9.383696,39.134032],[-9.371418,39.16092],[-9.35086,39.197309],[-9.346781,39.235226],[-9.34059,39.26683],[-9.354075,39.31623],[-9.365834,39.336005],[-9.401763,39.36522],[-9.409291,39.37519],[-9.397817,39.377997],[-9.352922,39.367934],[-9.279245,39.405822],[-9.260803,39.418442],[-9.240315,39.419997],[-9.227895,39.408433],[-9.2176,39.406195],[-9.205922,39.415473],[-9.213531,39.428616],[-9.229888,39.440741],[-9.213649,39.461035],[-9.191085,39.481536],[-9.182873,39.492584],[-9.164413,39.502024],[-9.135694,39.51618],[-9.1213,39.535105],[-9.111009,39.550879],[-9.090434,39.579275],[-9.088341,39.596662],[-9.090343,39.615641],[-9.077947,39.642479],[-9.071692,39.680437],[-8.993031,39.843166],[-8.868153,40.124823],[-8.853261,40.139228],[-8.841624,40.125963],[-8.825063,40.120063],[-8.784983,40.11872],[-8.784983,40.126166],[-8.801096,40.137926],[-8.816151,40.146552],[-8.833608,40.151679],[-8.879384,40.156236],[-8.896474,40.16474],[-8.906606,40.179389],[-8.908437,40.20067],[-8.895741,40.228746],[-8.865387,40.275458],[-8.798573,40.474433],[-8.784855,40.536818],[-8.765788,40.582541],[-8.753,40.640815],[-8.750356,40.643948],[-8.744618,40.646918],[-8.743967,40.6258],[-8.744618,40.619045],[-8.72468,40.644517],[-8.710276,40.653469],[-8.696156,40.646918],[-8.690012,40.646918],[-8.690012,40.653144],[-8.692372,40.655707],[-8.696401,40.661322],[-8.698801,40.667955],[-8.696156,40.673651],[-8.686391,40.677924],[-8.680776,40.674994],[-8.676869,40.669664],[-8.671986,40.666815],[-8.662099,40.669867],[-8.653635,40.677191],[-8.641591,40.694159],[-8.65746,40.701402],[-8.666331,40.713202],[-8.663645,40.724066],[-8.644928,40.728909],[-8.621816,40.730658],[-8.603871,40.735785],[-8.588368,40.744208],[-8.572662,40.755561],[-8.589508,40.754706],[-8.614735,40.74494],[-8.635976,40.741604],[-8.639882,40.740058],[-8.645375,40.739732],[-8.668446,40.747463],[-8.675689,40.755561],[-8.683705,40.783108],[-8.645579,40.823676],[-8.655263,40.844916],[-8.656972,40.828559],[-8.663197,40.814927],[-8.670522,40.811184],[-8.675689,40.824449],[-8.689809,40.804104],[-8.700551,40.777981],[-8.707387,40.750312],[-8.709828,40.725165],[-8.714263,40.709052],[-8.725087,40.685981],[-8.738433,40.664496],[-8.750803,40.653144],[-8.6551,40.993801],[-8.655263,41.030504],[-8.667104,41.097561],[-8.666127,41.132758],[-8.648346,41.146633],[-8.648346,41.152777],[-8.68578,41.159491],[-8.70519,41.186916],[-8.718373,41.221503],[-8.737172,41.249661],[-8.732289,41.262926],[-8.734609,41.274075],[-8.740061,41.28498],[-8.744618,41.297431],[-8.744456,41.328111],[-8.749135,41.337795],[-8.756132,41.34054],[-8.760325,41.350898],[-8.764027,41.361314],[-8.778147,41.37934],[-8.783803,41.393866],[-8.783773,41.406109],[-8.785564,41.434878],[-8.774849,41.468338],[-8.78647,41.491067],[-8.78826,41.511798],[-8.792733,41.525838],[-8.79542,41.542553],[-8.808339,41.572943],[-8.812856,41.595404],[-8.819488,41.611884],[-8.820449,41.630097],[-8.828603,41.648157],[-8.830511,41.671586],[-8.827056,41.682807],[-8.804677,41.689276],[-8.743276,41.696967],[-8.725942,41.703111],[-8.710032,41.711859],[-8.696156,41.721991],[-8.806874,41.696967],[-8.829986,41.694648],[-8.842885,41.695787],[-8.861113,41.704368],[-8.880306,41.736862],[-8.880317,41.765533],[-8.872039,41.810569],[-8.878896,41.839016],[-8.874745,41.849555],[-8.867502,41.859117],[-8.79662,41.903306],[-8.762766,41.931952],[-8.750803,41.96898],[-8.739591,41.975113],[-8.717008,41.983769],[-8.691274,41.989609],[-8.67081,41.999815],[-8.663213,42.009892],[-8.652568,42.031441],[-8.643886,42.041492],[-8.626885,42.051026],[-8.609418,42.053662],[-8.572805,42.054411],[-8.554434,42.060069],[-8.520018,42.077717],[-8.501208,42.083091],[-8.346747,42.101695],[-8.329952,42.108439],[-8.304269,42.125828],[-8.29538,42.130091],[-8.287836,42.131435],[-8.270679,42.132003],[-8.252334,42.137584],[-8.222362,42.15363],[-8.213396,42.144018],[-8.204327,42.128799],[-8.207375,42.085779],[-8.204016,42.069552]]]]},"properties":{"cartodb_id":176,"year":2012,"country":"Portugal","num_occurrences":666,"ru_name":"Португалия","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[26.722379,48.259769],[26.733127,48.27075],[26.744031,48.255583],[26.76372,48.252741],[26.804906,48.25827],[26.821908,48.252534],[26.844749,48.23331],[26.855497,48.237832],[26.897665,48.208971],[26.90397,48.201452],[26.908001,48.184528],[26.917716,48.187964],[26.929085,48.199049],[26.938128,48.204811],[26.950582,48.197524],[26.955646,48.186],[26.963088,48.175381],[26.997607,48.16657],[26.997607,48.15794],[26.986239,48.150421],[26.966602,48.149594],[26.966602,48.143367],[26.99399,48.132412],[27.012697,48.128123],[27.025099,48.135048],[27.033678,48.132386],[27.042773,48.127296],[27.048044,48.122232],[27.047955,48.121409],[27.047424,48.116496],[27.036882,48.107349],[27.034298,48.101768],[27.041739,48.077273],[27.059206,48.05805],[27.083184,48.043658],[27.109332,48.033503],[27.109332,48.026088],[27.088971,48.019809],[27.090005,48.015623],[27.091452,48.011851],[27.093364,48.00844],[27.095793,48.005598],[27.121476,48.013194],[27.134602,48.000456],[27.143748,47.986839],[27.157184,47.991955],[27.16876,47.983067],[27.169793,47.973791],[27.162869,47.965006],[27.150983,47.957797],[27.171964,47.946429],[27.178268,47.944129],[27.178268,47.942096],[27.178268,47.937928],[27.160698,47.921727],[27.17155,47.912632],[27.194185,47.904054],[27.212375,47.889507],[27.211548,47.885011],[27.213202,47.854134],[27.212375,47.847933],[27.222813,47.842662],[27.234906,47.840208],[27.245809,47.83659],[27.253406,47.828089],[27.219196,47.813775],[27.231082,47.807083],[27.244879,47.792588],[27.256196,47.77755],[27.260847,47.769075],[27.264671,47.764553],[27.282448,47.755691],[27.287512,47.752332],[27.288114,47.75068],[27.29113,47.74241],[27.289579,47.731687],[27.295057,47.724427],[27.295057,47.718174],[27.272009,47.71497],[27.281104,47.693007],[27.304049,47.666549],[27.369161,47.60831],[27.397066,47.589086],[27.428382,47.581024],[27.429404,47.57813],[27.431342,47.572638],[27.435824,47.55994],[27.438976,47.553713],[27.440268,47.550096],[27.440061,47.541027],[27.442128,47.536634],[27.446056,47.534877],[27.456908,47.533896],[27.459491,47.533224],[27.466726,47.506352],[27.473134,47.491779],[27.483676,47.485423],[27.492564,47.484545],[27.497525,47.482426],[27.501453,47.479945],[27.50724,47.477982],[27.532975,47.477413],[27.534526,47.477982],[27.548168,47.474261],[27.563154,47.468344],[27.575867,47.460412],[27.582998,47.450671],[27.574782,47.446252],[27.569356,47.438553],[27.565531,47.428269],[27.562534,47.416538],[27.580311,47.405996],[27.572353,47.375197],[27.586409,47.368764],[27.588724,47.367389],[27.599948,47.360728],[27.624029,47.321428],[27.636948,47.306674],[27.6447,47.303987],[27.671727,47.299853],[27.68232,47.295254],[27.689865,47.290887],[27.697823,47.287502],[27.722835,47.283317],[27.733273,47.275617],[27.753634,47.251432],[27.752393,47.238926],[27.763039,47.226317],[27.788309,47.204277],[27.800349,47.176966],[27.802106,47.176346],[27.804793,47.168492],[27.807687,47.162471],[27.805879,47.158234],[27.794665,47.155831],[27.80655,47.144617],[27.849855,47.12852],[27.849855,47.121724],[27.843757,47.114386],[27.848202,47.111415],[27.85771,47.109322],[27.867012,47.104645],[27.897604,47.081417],[27.925923,47.068756],[27.938429,47.061056],[27.938739,47.046638],[27.96313,47.043383],[27.986591,47.033228],[28.008295,47.026304],[28.028036,47.03297],[28.037027,47.016459],[28.038146,47.015483],[28.069067,46.988503],[28.082709,46.971527],[28.102295,46.935121],[28.104994,46.920185],[28.105447,46.91768],[28.096869,46.902616],[28.11356,46.894761],[28.114335,46.883393],[28.113095,46.87143],[28.124257,46.861637],[28.124257,46.854195],[28.122615,46.84227],[28.121518,46.8343],[28.137796,46.80624],[28.178156,46.758646],[28.178104,46.739836],[28.234121,46.662424],[28.24425,46.635372],[28.245085,46.631451],[28.24735,46.620825],[28.247144,46.607156],[28.240529,46.596382],[28.230504,46.583902],[28.225439,46.569562],[28.234121,46.553129],[28.224768,46.548736],[28.221099,46.541191],[28.219032,46.503726],[28.221099,46.495768],[28.234121,46.478069],[28.2381,46.475588],[28.242338,46.476518],[28.2458,46.475511],[28.247144,46.467191],[28.247247,46.436185],[28.246058,46.427865],[28.240219,46.420268],[28.22606,46.415359],[28.233294,46.401768],[28.228643,46.39611],[28.226796,46.395548],[28.219548,46.393345],[28.212934,46.388694],[28.207146,46.358153],[28.202392,46.353916],[28.190351,46.351074],[28.187922,46.343787],[28.191953,46.323504],[28.192883,46.311231],[28.191333,46.307769],[28.177794,46.287047],[28.165753,46.27883],[28.156296,46.275368],[28.144928,46.272939],[28.135212,46.269322],[28.131078,46.262397],[28.134489,46.245344],[28.132112,46.239918],[28.120846,46.237851],[28.108961,46.23413],[28.110976,46.225603],[28.129321,46.204674],[28.135626,46.198835],[28.141517,46.191962],[28.144721,46.183229],[28.133249,46.159974],[28.127358,46.135325],[28.110506,46.101491],[28.107823,46.096103],[28.100796,46.081995],[28.092838,46.078377],[28.090151,46.073365],[28.090461,46.06799],[28.096558,46.065045],[28.096869,46.05967],[28.084466,46.024582],[28.082709,46.014712],[28.08612,46.000552],[28.110511,45.950426],[28.112371,45.939213],[28.114852,45.933218],[28.120846,45.926293],[28.124981,45.918387],[28.12281,45.910791],[28.118779,45.903142],[28.117436,45.895236],[28.120226,45.887846],[28.129115,45.875134],[28.131078,45.871361],[28.128184,45.8664],[28.114955,45.859734],[28.110511,45.854308],[28.113302,45.825369],[28.128908,45.795035],[28.146478,45.771161],[28.154953,45.761807],[28.163738,45.661503],[28.161774,45.645432],[28.167975,45.632461],[28.153713,45.6275],[28.120846,45.627707],[28.107721,45.6244],[28.091184,45.615976],[28.074751,45.604866],[28.062142,45.593601],[28.118004,45.572723],[28.140949,45.560218],[28.157743,45.538927],[28.161567,45.532726],[28.164048,45.530607],[28.165391,45.528282],[28.165908,45.494589],[28.172936,45.484357],[28.199498,45.461774],[28.212934,45.450198],[28.215146,45.450365],[28.237635,45.452059],[28.266884,45.440483],[28.286418,45.421725],[28.281198,45.401829],[28.310809,45.347827],[28.330239,45.322919],[28.353287,45.312429],[28.370237,45.309225],[28.40517,45.295066],[28.494157,45.278891],[28.577046,45.248092],[28.710061,45.226956],[28.747371,45.23047],[28.778687,45.23109],[28.7914,45.234966],[28.802665,45.244165],[28.774295,45.253363],[28.767267,45.257755],[28.762564,45.265145],[28.75967,45.274189],[28.761531,45.281837],[28.79016,45.292069],[28.788609,45.307106],[28.789746,45.321421],[28.816308,45.326072],[28.831811,45.322299],[28.858114,45.30907],[28.880852,45.306176],[28.893616,45.29982],[28.910049,45.287366],[28.929893,45.279098],[28.952837,45.285092],[28.957384,45.292017],[28.960433,45.311292],[28.96648,45.319871],[28.973663,45.323695],[28.982448,45.325503],[29.004617,45.326072],[29.018156,45.330878],[29.069522,45.360798],[29.110295,45.369066],[29.127503,45.374544],[29.141869,45.385086],[29.150138,45.387877],[29.174322,45.388962],[29.179386,45.391856],[29.183107,45.398987],[29.191582,45.40617],[29.206672,45.41542],[29.228169,45.42374],[29.244602,45.424205],[29.260828,45.422035],[29.281809,45.422293],[29.290491,45.424619],[29.299276,45.428908],[29.307027,45.434127],[29.312815,45.439346],[29.322117,45.443842],[29.332969,45.442137],[29.343924,45.438106],[29.353743,45.435936],[29.430637,45.430406],[29.569699,45.394956],[29.616362,45.365346],[29.628145,45.360798],[29.650262,45.346122],[29.667109,45.311861],[29.672276,45.272948],[29.659254,45.244165],[29.66499,45.23786],[29.666488,45.230625],[29.664215,45.223184],[29.659079,45.215887],[29.659075,45.215881],[29.659028,45.215888],[29.650157,45.217231],[29.623871,45.216498],[29.623871,45.210273],[29.638845,45.195624],[29.64975,45.177802],[29.667003,45.164211],[29.699555,45.161811],[29.676524,45.144599],[29.664399,45.116929],[29.656261,45.028957],[29.650727,45.012112],[29.637543,44.98371],[29.634939,44.96955],[29.633637,44.953355],[29.63087,44.938666],[29.623871,44.929104],[29.630382,44.90766],[29.605154,44.880032],[29.617849,44.861477],[29.611176,44.849311],[29.603201,44.845404],[29.593761,44.844306],[29.583507,44.840277],[29.569347,44.824897],[29.561778,44.820258],[29.542003,44.827826],[29.531098,44.826239],[29.520518,44.822496],[29.510997,44.820502],[29.315929,44.798774],[29.192068,44.792873],[29.156098,44.78441],[29.055837,44.735175],[29.026378,44.714667],[29.000743,44.68891],[28.993907,44.696357],[28.994884,44.711127],[28.981293,44.729438],[28.974946,44.74494],[28.997325,44.751614],[29.021495,44.754706],[29.058279,44.768297],[29.098155,44.775377],[29.120616,44.786566],[29.138682,44.804023],[29.144705,44.826646],[29.138845,44.839179],[29.125987,44.852484],[29.096365,44.875067],[29.101817,44.859117],[29.103363,44.851304],[29.10377,44.840277],[29.087901,44.842719],[29.073497,44.835435],[29.060313,44.832343],[29.048595,44.847154],[29.044119,44.865546],[29.041759,44.925686],[29.052094,44.944648],[29.098806,44.956977],[29.110606,44.970038],[29.101736,44.980292],[29.058279,45.000963],[29.045177,45.004828],[29.014415,45.004828],[28.983246,45.012274],[28.97283,45.010972],[28.969249,45.005845],[28.966075,44.996568],[28.960216,44.987698],[28.949229,44.98371],[28.927013,44.982611],[28.91684,44.979682],[28.880056,44.954779],[28.869395,44.943345],[28.863536,44.922309],[28.865082,44.916571],[28.87436,44.911566],[28.876638,44.904853],[28.874685,44.899115],[28.870128,44.89643],[28.865489,44.89468],[28.863536,44.891547],[28.866466,44.882636],[28.873546,44.874986],[28.881521,44.869696],[28.904063,44.862738],[28.952403,44.826646],[28.939708,44.816881],[28.934093,44.814195],[28.924978,44.813056],[28.934418,44.807522],[28.938731,44.80622],[28.938731,44.798774],[28.92628,44.792955],[28.925466,44.783677],[28.932953,44.773505],[28.946137,44.765204],[28.936371,44.759955],[28.923839,44.757799],[28.879405,44.756578],[28.868826,44.753567],[28.808442,44.726874],[28.79835,44.720201],[28.788829,44.706244],[28.78712,44.693305],[28.793712,44.687893],[28.80836,44.696357],[28.80421,44.684231],[28.785411,44.679674],[28.781016,44.665269],[28.784028,44.649237],[28.792491,44.644721],[28.845551,44.651557],[28.869477,44.661811],[28.891368,44.677191],[28.911957,44.696357],[28.897716,44.716783],[28.967459,44.700995],[28.983409,44.692613],[28.987559,44.675279],[28.97934,44.655341],[28.962087,44.63939],[28.938731,44.634263],[28.956391,44.651109],[28.972667,44.670233],[28.975352,44.686835],[28.952403,44.696357],[28.952403,44.68891],[28.959972,44.681952],[28.957774,44.678778],[28.938731,44.675238],[28.924164,44.682074],[28.918224,44.682685],[28.913829,44.679918],[28.909434,44.675198],[28.904552,44.668402],[28.885427,44.658108],[28.854177,44.634345],[28.836274,44.627427],[28.787852,44.609605],[28.774181,44.600775],[28.791515,44.623847],[28.794688,44.634263],[28.779796,44.63581],[28.766938,44.633734],[28.757823,44.626776],[28.753673,44.613756],[28.766775,44.613756],[28.76059,44.603705],[28.764415,44.595893],[28.774425,44.590155],[28.787852,44.586493],[28.748057,44.577786],[28.732677,44.567857],[28.732677,44.552314],[28.737153,44.557074],[28.743907,44.561998],[28.746918,44.565985],[28.761078,44.560207],[28.774181,44.552314],[28.765636,44.538886],[28.753429,44.513495],[28.745616,44.486151],[28.750255,44.466702],[28.758474,44.465277],[28.766368,44.472602],[28.771983,44.48371],[28.778331,44.507392],[28.788097,44.515367],[28.80836,44.525051],[28.838145,44.554023],[28.855642,44.567694],[28.873546,44.573432],[28.892426,44.577053],[28.906261,44.587714],[28.914887,44.601386],[28.924978,44.620551],[28.918468,44.60102],[28.909679,44.584215],[28.844005,44.49372],[28.796723,44.467922],[28.706554,44.381049],[28.6963,44.358344],[28.693126,44.346137],[28.680186,44.353339],[28.664399,44.348375],[28.651215,44.340033],[28.64088,44.328559],[28.635102,44.316392],[28.632335,44.302436],[28.631033,44.26435],[28.635265,44.252021],[28.651215,44.23078],[28.665212,44.199286],[28.668142,44.184312],[28.664887,44.175605],[28.671723,44.168687],[28.658376,44.174465],[28.645844,44.172024],[28.636241,44.164293],[28.63087,44.154486],[28.637462,44.135891],[28.654145,44.054918],[28.671235,44.003323],[28.671723,43.997382],[28.669119,43.989163],[28.660004,43.979804],[28.654959,43.961371],[28.64088,43.932196],[28.637706,43.918647],[28.61378,43.884182],[28.609386,43.874498],[28.593516,43.819525],[28.587657,43.810248],[28.584483,43.800849],[28.589203,43.791327],[28.584809,43.782416],[28.58253,43.772366],[28.581879,43.761705],[28.583018,43.751044],[28.57838,43.741278],[28.434574,43.735213],[28.221254,43.761981],[28.014806,43.830039],[27.98101,43.84934],[27.935845,43.964398],[27.912074,43.993233],[27.912074,43.993336],[27.85647,43.988634],[27.787327,43.960419],[27.721698,43.94874],[27.682515,43.987256],[27.676119,43.993543],[27.656275,44.023877],[27.633434,44.029768],[27.574523,44.016281],[27.383837,44.015092],[27.372882,44.020725],[27.353555,44.045271],[27.341669,44.053074],[27.285342,44.072453],[27.26431,44.089765],[27.269012,44.112399],[27.252662,44.121519],[27.251132,44.122373],[27.226741,44.120719],[27.205553,44.129246],[27.100237,44.14449],[27.027476,44.177046],[27.001535,44.165109],[26.884126,44.156531],[26.789455,44.115965],[26.753695,44.10811],[26.708685,44.10811],[26.697212,44.106094],[26.677317,44.097051],[26.667808,44.095087],[26.647758,44.093382],[26.614168,44.084855],[26.415791,44.063789],[26.332335,44.054926],[26.310518,44.052609],[26.231453,44.027495],[26.150734,44.012405],[26.116214,43.998866],[26.079317,43.969049],[26.061644,43.949773],[26.054306,43.934322],[25.934003,43.870321],[25.924495,43.858616],[25.916433,43.844379],[25.869304,43.800893],[25.839332,43.788439],[25.806259,43.763661],[25.804399,43.759914],[25.781144,43.732009],[25.739596,43.718935],[25.732948,43.718781],[25.671384,43.717359],[25.653503,43.708134],[25.637897,43.697282],[25.616503,43.687748],[25.593869,43.680668],[25.575059,43.677387],[25.556558,43.670359],[25.533821,43.668679],[25.488759,43.67054],[25.48245,43.669715],[25.467417,43.667749],[25.426075,43.654391],[25.403131,43.65005],[25.35962,43.654287],[25.323033,43.669713],[25.28872,43.688962],[25.285405,43.690391],[25.252339,43.704646],[25.211308,43.711881],[25.0816,43.718935],[24.963675,43.749605],[24.752628,43.738804],[24.705603,43.743765],[24.661763,43.755657],[24.500137,43.799498],[24.466341,43.802418],[24.431201,43.794176],[24.375494,43.763867],[24.358234,43.760017],[24.336705,43.759251],[24.159383,43.752938],[24.149606,43.75472],[23.799922,43.818463],[23.742871,43.8427],[23.720753,43.845826],[23.636107,43.832158],[23.620854,43.83401],[23.592699,43.837429],[23.484695,43.880604],[23.325151,43.886592],[23.234478,43.877297],[23.196961,43.86275],[23.161924,43.857324],[23.131849,43.847945],[23.052551,43.84282],[22.919562,43.834225],[22.888763,43.839522],[22.863441,43.855412],[22.851039,43.874352],[22.850522,43.896986],[22.874707,43.972046],[22.885869,43.994525],[22.905816,44.003982],[22.926486,44.006152],[22.966277,44.015557],[22.988085,44.017676],[23.023018,44.031629],[23.040071,44.062325],[23.030976,44.093072],[23.008307,44.100446],[22.988085,44.107025],[22.942609,44.111469],[22.906436,44.122889],[22.69164,44.228435],[22.690739,44.228878],[22.685364,44.243657],[22.689498,44.291716],[22.68154,44.305307],[22.662523,44.311663],[22.621182,44.315901],[22.582838,44.328406],[22.549352,44.348974],[22.522687,44.37507],[22.505117,44.404061],[22.50398,44.411709],[22.506357,44.427522],[22.505427,44.435015],[22.500983,44.44194],[22.480002,44.455789],[22.477005,44.463954],[22.477212,44.476976],[22.479795,44.490412],[22.484136,44.499766],[22.491061,44.50421],[22.500363,44.50638],[22.535503,44.507517],[22.548422,44.511703],[22.55669,44.52147],[22.55979,44.538781],[22.565578,44.555421],[22.580461,44.565498],[22.600305,44.569787],[22.621182,44.569219],[22.642163,44.563121],[22.678543,44.545551],[22.700144,44.54183],[22.719367,44.544362],[22.741692,44.551855],[22.759262,44.564671],[22.765153,44.58281],[22.714716,44.623065],[22.700144,44.63061],[22.621182,44.637432],[22.587489,44.649369],[22.553279,44.669161],[22.483723,44.72399],[22.468943,44.730191],[22.450547,44.732981],[22.426052,44.733653],[22.41551,44.727814],[22.38068,44.700528],[22.361146,44.692054],[22.319702,44.685336],[22.304922,44.677377],[22.299031,44.661668],[22.185136,44.515113],[22.172114,44.505347],[22.148239,44.500902],[22.126639,44.502659],[22.104314,44.509636],[22.086951,44.52178],[22.076306,44.550718],[22.067107,44.55723],[22.055739,44.562139],[22.045197,44.569219],[22.039822,44.576867],[22.036174,44.589489],[22.034243,44.596168],[22.032174,44.603325],[22.004269,44.651539],[21.994347,44.658567],[21.962411,44.662288],[21.871977,44.695981],[21.855441,44.698461],[21.838284,44.695206],[21.801697,44.683889],[21.756842,44.677274],[21.705166,44.677067],[21.65628,44.687661],[21.619693,44.713913],[21.610288,44.731948],[21.604293,44.749983],[21.595612,44.765951],[21.578042,44.777681],[21.558405,44.78166],[21.49722,44.778043],[21.41216,44.784813],[21.395934,44.790239],[21.378571,44.816645],[21.360587,44.826412],[21.359841,44.826644],[21.3598,44.826657],[21.342811,44.831942],[21.346428,44.845636],[21.355523,44.856591],[21.368545,44.86486],[21.395314,44.871629],[21.453398,44.869562],[21.48151,44.872611],[21.522128,44.880776],[21.536287,44.889302],[21.539078,44.908474],[21.531016,44.924649],[21.51634,44.933899],[21.48151,44.943563],[21.456499,44.952348],[21.40844,44.958342],[21.385185,44.969504],[21.384565,44.97493],[21.387046,44.981545],[21.383945,44.986661],[21.366995,44.987281],[21.353456,44.989813],[21.351389,44.998236],[21.356143,45.008572],[21.363378,45.01653],[21.3733,45.020096],[21.398828,45.021387],[21.409266,45.023971],[21.421875,45.031413],[21.425079,45.036219],[21.425596,45.043247],[21.429524,45.057303],[21.432521,45.061488],[21.440996,45.068723],[21.443786,45.072909],[21.444406,45.07787],[21.444406,45.08526],[21.443786,45.091461],[21.442443,45.092908],[21.449987,45.101021],[21.458566,45.107325],[21.469004,45.111046],[21.48151,45.111563],[21.494119,45.119314],[21.49784,45.131872],[21.493292,45.145101],[21.484388,45.152702],[21.459393,45.17404],[21.433761,45.188819],[21.405546,45.199671],[21.299299,45.223184],[21.257131,45.224114],[21.239251,45.229385],[21.206075,45.245922],[21.189745,45.259564],[21.155638,45.295169],[21.139412,45.303696],[21.12918,45.301887],[21.113057,45.28933],[21.103342,45.286074],[21.09156,45.288089],[21.082775,45.293671],[21.0743,45.300544],[21.063964,45.30628],[21.016668,45.321482],[20.981489,45.33279],[20.966193,45.341575],[20.927642,45.37749],[20.863047,45.418728],[20.830387,45.452524],[20.816021,45.462859],[20.799484,45.468544],[20.781604,45.472574],[20.767135,45.479344],[20.760727,45.493348],[20.783155,45.506061],[20.797624,45.516499],[20.800208,45.530504],[20.787392,45.553655],[20.75804,45.58926],[20.754423,45.605589],[20.762174,45.630601],[20.773233,45.648894],[20.777264,45.657524],[20.779951,45.671684],[20.779124,45.72367],[20.781604,45.733954],[20.785532,45.743411],[20.785739,45.752557],[20.77747,45.762324],[20.765171,45.766768],[20.754113,45.763564],[20.745328,45.754986],[20.739436,45.743411],[20.726827,45.736176],[20.713392,45.733334],[20.700059,45.735401],[20.68807,45.7431],[20.678562,45.75664],[20.655617,45.77731],[20.645902,45.788731],[20.64349,45.795141],[20.642285,45.798343],[20.640114,45.818703],[20.636704,45.827023],[20.629676,45.833276],[20.612312,45.841492],[20.605284,45.846143],[20.572108,45.887691],[20.556709,45.89844],[20.538002,45.903711],[20.499865,45.906656],[20.481674,45.912703],[20.429068,45.946706],[20.410258,45.955594],[20.370984,45.96779],[20.35393,45.976678],[20.338634,45.992801],[20.317653,46.038586],[20.305665,46.053572],[20.242826,46.108091],[20.283237,46.1438],[20.444157,46.1469],[20.468549,46.174134],[20.509373,46.167674],[20.548957,46.15615],[20.578103,46.137547],[20.588025,46.132844],[20.600117,46.12964],[20.607558,46.129485],[20.663989,46.137753],[20.683523,46.144678],[20.698819,46.15646],[20.704193,46.16633],[20.704368,46.168526],[20.70533,46.180645],[20.710291,46.188086],[20.717836,46.189998],[20.727137,46.187725],[20.736646,46.186691],[20.744707,46.192272],[20.744811,46.200282],[20.735509,46.222503],[20.734992,46.231908],[20.739333,46.237489],[20.778504,46.260072],[20.787369,46.26339],[20.798658,46.267616],[20.819638,46.271699],[20.839689,46.271079],[20.848991,46.267771],[20.866974,46.257126],[20.875139,46.254387],[20.885061,46.255007],[20.899737,46.260692],[20.906558,46.26219],[20.924438,46.259555],[20.961748,46.248341],[20.981489,46.248858],[20.990584,46.251597],[20.999162,46.251597],[21.007017,46.248858],[21.013942,46.24307],[21.033475,46.231339],[21.051459,46.236094],[21.099208,46.27635],[21.105616,46.278675],[21.134865,46.27852],[21.144476,46.283739],[21.155949,46.298932],[21.164527,46.318259],[21.168661,46.362753],[21.17879,46.384457],[21.195636,46.398099],[21.21517,46.402905],[21.257544,46.404171],[21.280695,46.416393],[21.274391,46.438355],[21.245142,46.47688],[21.247623,46.497473],[21.261679,46.513338],[21.278938,46.528401],[21.291341,46.546721],[21.295268,46.585039],[21.300953,46.603926],[21.316249,46.616639],[21.337643,46.620411],[21.374436,46.618448],[21.396037,46.626354],[21.416811,46.645216],[21.423539,46.658231],[21.425493,46.662011],[21.436241,46.673741],[21.463527,46.677049],[21.483577,46.684852],[21.501767,46.703507],[21.505178,46.723247],[21.478203,46.735934],[21.475206,46.737846],[21.472622,46.740197],[21.470451,46.743014],[21.471381,46.749034],[21.473655,46.754873],[21.477066,46.760222],[21.48151,46.764976],[21.502904,46.80531],[21.51572,46.821588],[21.536597,46.835023],[21.573081,46.841767],[21.583416,46.847943],[21.591788,46.860707],[21.591477,46.871533],[21.588067,46.882204],[21.587137,46.8944],[21.588687,46.906182],[21.589927,46.908869],[21.594371,46.910006],[21.640053,46.935689],[21.648528,46.942976],[21.667545,46.992378],[21.671369,46.99336],[21.670749,46.994394],[21.661757,47.006072],[21.654833,47.009948],[21.645221,47.01124],[21.636643,47.014082],[21.63427,47.019422],[21.632819,47.022686],[21.671886,47.054726],[21.69421,47.069169],[21.74351,47.091597],[21.763767,47.105214],[21.770485,47.114025],[21.775446,47.131672],[21.77989,47.140741],[21.789398,47.150301],[21.811516,47.164693],[21.819887,47.172729],[21.825985,47.185054],[21.825675,47.194278],[21.823298,47.203321],[21.823608,47.214923],[21.827742,47.226007],[21.839318,47.240839],[21.844589,47.249934],[21.856061,47.285745],[21.862159,47.297424],[21.900813,47.335742],[21.919003,47.349669],[21.936986,47.357162],[21.981531,47.366102],[22.001582,47.393827],[22.000238,47.427184],[21.991453,47.461807],[21.988869,47.492942],[22.007886,47.517411],[22.037445,47.539322],[22.09956,47.570948],[22.148549,47.579345],[22.154177,47.582213],[22.162089,47.586244],[22.16736,47.593789],[22.167608,47.594862],[22.169117,47.601385],[22.16984,47.608775],[22.172837,47.615389],[22.197642,47.639315],[22.200743,47.647945],[22.204153,47.666291],[22.207874,47.673732],[22.215212,47.679933],[22.232162,47.688253],[22.23981,47.693472],[22.261721,47.715848],[22.27309,47.723755],[22.29159,47.730705],[22.309366,47.735046],[22.322079,47.735873],[22.368278,47.73117],[22.382644,47.732023],[22.395873,47.735692],[22.407345,47.743082],[22.423675,47.782563],[22.454371,47.787394],[22.528475,47.761039],[22.562994,47.757215],[22.601235,47.760936],[22.637719,47.771555],[22.666967,47.78879],[22.691669,47.8107],[22.703864,47.817186],[22.724225,47.82349],[22.745826,47.824989],[22.75182,47.827676],[22.760295,47.838916],[22.758331,47.846228],[22.753267,47.852687],[22.752854,47.86124],[22.763602,47.874753],[22.779622,47.882298],[22.819723,47.892323],[22.836053,47.902452],[22.861167,47.933819],[22.877601,47.946739],[22.897858,47.950976],[22.915841,47.959193],[22.924213,47.972732],[22.915738,47.992989],[22.924109,48.004823],[22.939302,48.00565],[22.957079,48.00012],[22.972478,47.992886],[22.988188,47.986374],[23.004415,47.983067],[23.020331,47.984721],[23.063119,48.007458],[23.076555,48.024512],[23.098982,48.071227],[23.118619,48.091536],[23.139083,48.098125],[23.161718,48.095903],[23.231377,48.079728],[23.248637,48.071227],[23.289772,48.038206],[23.337521,48.010869],[23.360052,47.993144],[23.367286,47.991206],[23.374728,47.99056],[23.382169,47.991129],[23.390127,47.993067],[23.391574,47.993454],[23.393021,47.993583],[23.394468,47.993454],[23.396019,47.993067],[23.460821,47.971337],[23.481595,47.972163],[23.485476,47.974234],[23.488519,47.975858],[23.494307,47.980535],[23.499371,47.986219],[23.503712,47.992886],[23.514461,47.998983],[23.525623,48.00118],[23.563243,48.005753],[23.581744,48.001567],[23.646132,47.996606],[23.687267,47.987253],[23.710521,47.985083],[23.780078,47.987511],[23.796511,47.981982],[23.848394,47.949658],[23.855215,47.934233],[23.876609,47.93444],[23.977275,47.962293],[24.008798,47.961208],[24.025231,47.95325],[24.074943,47.944181],[24.094787,47.937928],[24.131167,47.914544],[24.148737,47.912115],[24.150184,47.912916],[24.209302,47.897594],[24.231006,47.897026],[24.297876,47.919789],[24.347175,47.920875],[24.386242,47.94369],[24.409187,47.952061],[24.428514,47.952526],[24.485564,47.943199],[24.542098,47.943819],[24.561632,47.940537],[24.569808,47.937289],[24.608451,47.921934],[24.633669,47.908291],[24.649275,47.895217],[24.655993,47.879301],[24.656923,47.866201],[24.661471,47.853876],[24.679144,47.84013],[24.712837,47.825919],[24.793659,47.804473],[24.808232,47.79574],[24.820738,47.784087],[24.854431,47.743133],[24.877789,47.718742],[24.896599,47.710061],[24.928858,47.713938],[24.94238,47.715563],[25.017418,47.724582],[25.079947,47.742927],[25.08005,47.743082],[25.080257,47.743133],[25.121908,47.770315],[25.218956,47.878474],[25.261744,47.898576],[25.752516,47.934595],[25.818351,47.952578],[25.870958,47.957022],[25.90124,47.965962],[25.918087,47.968158],[25.965732,47.964903],[26.029294,47.977796],[26.10253,47.978267],[26.125723,47.978416],[26.173058,47.993144],[26.18267,48.003273],[26.204788,48.037379],[26.217087,48.048024],[26.243235,48.062907],[26.255327,48.072338],[26.270727,48.093603],[26.286953,48.124712],[26.297495,48.156338],[26.296152,48.178998],[26.30349,48.212045],[26.311758,48.20972],[26.330258,48.208506],[26.347311,48.212097],[26.380488,48.223207],[26.397437,48.226205],[26.44467,48.227729],[26.461309,48.230391],[26.5874,48.249356],[26.617889,48.258968],[26.665741,48.274212],[26.688531,48.274832],[26.711475,48.261319],[26.722379,48.259769]]]]},"properties":{"cartodb_id":180,"year":2012,"country":"Romania","num_occurrences":244,"ru_name":"Румыния","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.707006,42.502781],[1.697498,42.494462],[1.686336,42.490612],[1.674244,42.490508],[1.662358,42.493712],[1.659774,42.496813],[1.656984,42.49764],[1.653986,42.496529],[1.650369,42.493402],[1.639517,42.466427],[1.607478,42.456428],[1.544432,42.450356],[1.538851,42.445653],[1.534511,42.439917],[1.528206,42.434233],[1.51663,42.429504],[1.508466,42.428677],[1.447901,42.434646],[1.436429,42.440951],[1.436429,42.453482],[1.407593,42.486762],[1.424543,42.492472],[1.430227,42.493557],[1.449968,42.504073],[1.446557,42.519886],[1.428987,42.531462],[1.406456,42.52924],[1.409764,42.540609],[1.4263,42.561796],[1.426403,42.565646],[1.418032,42.569832],[1.419272,42.579263],[1.424853,42.589365],[1.429297,42.595386],[1.451415,42.602052],[1.466814,42.641455],[1.49844,42.640241],[1.527793,42.648535],[1.543089,42.649362],[1.597349,42.621921],[1.608304,42.618123],[1.721993,42.609855],[1.713311,42.589546],[1.729434,42.582001],[1.752688,42.576679],[1.761107,42.567646],[1.765091,42.563372],[1.739976,42.561641],[1.721683,42.548515],[1.710624,42.527741],[1.707006,42.502781]]]]},"properties":{"cartodb_id":6,"year":2012,"country":"Andorra","num_occurrences":14,"ru_name":"Андорра","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-63.037668,18.212958],[-63.099517,18.176174],[-63.102366,18.180406],[-63.10912,18.185045],[-63.11384,18.189846],[-63.13683,18.173407],[-63.150502,18.169094],[-63.167836,18.169338],[-63.142079,18.198147],[-63.134348,18.204088],[-63.122792,18.208075],[-63.097239,18.21247],[-63.085846,18.217719],[-63.067779,18.236477],[-63.055084,18.25434],[-63.038197,18.267727],[-63.007395,18.273017],[-62.983998,18.276435],[-62.972646,18.275865],[-62.97289,18.269273],[-62.992909,18.236884],[-63.000559,18.227362],[-63.011545,18.220445],[-63.037668,18.212958]]],[[[-63.423573,18.600043],[-63.427968,18.592841],[-63.428822,18.601264],[-63.423573,18.600043]]]]},"properties":{"cartodb_id":8,"year":2012,"country":"Anguilla","num_occurrences":6,"ru_name":"Ангилья","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-162.409047,-82.896417],[-162.339833,-82.923761],[-162.339792,-82.923761],[-162.267405,-82.946547],[-161.9216,-82.985447],[-161.575795,-83.024347],[-161.813303,-83.03867],[-161.844187,-83.045505],[-161.873118,-83.058282],[-161.937327,-83.100518],[-161.970041,-83.116306],[-162.012685,-83.126072],[-162.402415,-83.14837],[-162.831858,-83.114679],[-163.261301,-83.080987],[-163.283884,-83.063084],[-163.281077,-83.057712],[-163.270212,-83.051202],[-163.268625,-83.045668],[-163.295603,-83.026625],[-163.507069,-83.010919],[-163.601552,-82.990167],[-163.619456,-82.981703],[-163.629587,-82.970636],[-163.625111,-82.952813],[-163.605214,-82.940362],[-163.562327,-82.924086],[-163.578481,-82.913832],[-163.602406,-82.907892],[-163.730417,-82.889825],[-163.752756,-82.879978],[-163.72114,-82.873224],[-163.688791,-82.871515],[-163.710032,-82.861423],[-163.811391,-82.846938],[-163.749705,-82.833591],[-163.326975,-82.847941],[-162.904246,-82.862291],[-162.481516,-82.876642],[-162.409047,-82.896417]]],[[[-168.787343,-83.2138],[-168.847157,-83.226821],[-169.324696,-83.205418],[-169.802235,-83.184015],[-169.816111,-83.180271],[-169.828236,-83.172947],[-169.849965,-83.154474],[-169.863149,-83.147393],[-170.355112,-83.07641],[-170.847076,-83.005426],[-171.33904,-82.934442],[-171.831003,-82.863458],[-171.901357,-82.842055],[-171.820505,-82.82464],[-171.355478,-82.879571],[-170.890452,-82.934503],[-170.425425,-82.989435],[-169.960398,-83.044366],[-169.495371,-83.099298],[-169.030344,-83.154229],[-168.89863,-83.188897],[-168.81017,-83.201837],[-168.787343,-83.2138]]],[[[-157.990915,-82.097833],[-158.067209,-82.102227],[-158.0985,-82.095798],[-158.085072,-82.087091],[-158.069285,-82.081476],[-158.036977,-82.075616],[-158.067006,-82.048598],[-158.10969,-82.035333],[-158.393666,-81.993748],[-158.697113,-81.906101],[-159.000559,-81.818455],[-159.019154,-81.787693],[-159.003041,-81.780369],[-158.978586,-81.778009],[-158.892201,-81.781834],[-158.638966,-81.831231],[-158.385732,-81.880629],[-158.371449,-81.886489],[-158.346832,-81.901462],[-158.346791,-81.901544],[-158.304148,-81.929946],[-158.246531,-81.954522],[-157.914906,-82.018243],[-157.856638,-82.019789],[-157.827463,-82.024672],[-157.808583,-82.039158],[-157.920766,-82.084731],[-157.990915,-82.097833]]],[[[-160.48766,-81.597101],[-160.571116,-81.598891],[-161.022171,-81.582138],[-161.473227,-81.565385],[-161.924283,-81.548633],[-162.375338,-81.53188],[-162.826394,-81.515127],[-163.277449,-81.498375],[-163.728505,-81.481622],[-163.753163,-81.470473],[-163.748606,-81.468683],[-163.67101,-81.465427],[-163.658193,-81.461602],[-163.670155,-81.45436],[-163.948842,-81.418878],[-163.990061,-81.403497],[-163.969838,-81.393162],[-163.949208,-81.378351],[-163.932118,-81.361017],[-163.922678,-81.343357],[-163.851186,-81.318943],[-163.417531,-81.29461],[-162.983876,-81.270278],[-162.522247,-81.308787],[-162.060618,-81.347296],[-161.598988,-81.385805],[-161.137359,-81.424314],[-160.67573,-81.462823],[-160.632273,-81.490899],[-160.628529,-81.496759],[-160.671498,-81.507989],[-160.685129,-81.514744],[-160.647206,-81.517836],[-160.442209,-81.560235],[-160.413889,-81.573663],[-160.445383,-81.590509],[-160.48766,-81.597101]]],[[[-153.918202,-80.006036],[-153.894602,-80.020929],[-153.942576,-80.038751],[-154.114125,-80.037042],[-154.114247,-80.037042],[-154.361887,-80.030532],[-154.335398,-80.025323],[-154.309804,-80.016697],[-154.367665,-80.007013],[-154.409739,-80.00921],[-154.423207,-80.004653],[-154.430491,-79.998956],[-154.442942,-79.986423],[-154.452626,-79.981215],[-154.513905,-79.964288],[-154.987864,-79.929376],[-155.028635,-79.915704],[-155.0183,-79.896173],[-155.478749,-79.857599],[-155.665273,-79.816827],[-155.661855,-79.816095],[-155.648264,-79.809991],[-155.613515,-79.80283],[-155.576975,-79.800388],[-155.162282,-79.8518],[-154.747589,-79.903212],[-154.332895,-79.954624],[-153.918202,-80.006036]]],[[[-155.654124,-79.803888],[-155.79308,-79.820082],[-155.82787,-79.815525],[-155.855417,-79.797459],[-155.823598,-79.778253],[-155.790476,-79.770115],[-155.71935,-79.769138],[-155.581654,-79.782892],[-155.616444,-79.795343],[-155.654124,-79.803888]]],[[[-163.162913,-79.739923],[-163.099721,-79.745294],[-163.09968,-79.745294],[-162.734242,-79.793878],[-162.707631,-79.802016],[-162.687367,-79.814874],[-162.732004,-79.835056],[-162.782664,-79.841729],[-163.065826,-79.819757],[-163.348988,-79.797784],[-163.400136,-79.782892],[-163.309153,-79.778985],[-163.247996,-79.768324],[-163.151601,-79.767755],[-163.065663,-79.781996],[-163.038075,-79.777114],[-163.048777,-79.768324],[-163.062489,-79.764907],[-163.077341,-79.763849],[-163.146799,-79.748224],[-163.162913,-79.739923]]],[[[-60.074452,-79.694106],[-60.082102,-79.695489],[-60.099599,-79.694431],[-60.107655,-79.695245],[-60.149403,-79.705662],[-60.226877,-79.70615],[-60.486562,-79.737726],[-60.403147,-79.757257],[-60.111887,-79.763238],[-59.820627,-79.76922],[-59.799143,-79.774347],[-59.810658,-79.787693],[-59.823638,-79.799412],[-59.838002,-79.809259],[-59.853627,-79.817153],[-59.837148,-79.822931],[-59.818105,-79.826349],[-59.799062,-79.82643],[-59.749989,-79.818129],[-59.717844,-79.826267],[-59.656402,-79.850356],[-59.783193,-79.833673],[-59.835805,-79.834161],[-59.8544,-79.837579],[-59.874501,-79.84588],[-59.884836,-79.858819],[-59.87442,-79.876397],[-59.876291,-79.878025],[-59.880483,-79.882257],[-59.883168,-79.883966],[-59.862782,-79.903253],[-59.826568,-79.906834],[-59.787587,-79.901056],[-59.759104,-79.892999],[-59.747467,-79.886326],[-59.730946,-79.884047],[-59.677724,-79.886489],[-59.655181,-79.89072],[-59.625559,-79.906345],[-59.718007,-79.906834],[-59.732167,-79.913751],[-59.727406,-79.922052],[-59.719879,-79.926853],[-59.702016,-79.933526],[-59.694447,-79.93906],[-59.684397,-79.95143],[-59.677602,-79.957208],[-59.708648,-79.961196],[-59.71939,-79.960056],[-59.72936,-79.956231],[-59.757639,-79.940688],[-59.774037,-79.936456],[-59.791005,-79.935317],[-59.846669,-79.943617],[-59.852691,-79.94964],[-59.851308,-79.961196],[-59.862701,-79.968194],[-59.85497,-79.978611],[-59.82787,-79.99684],[-59.822092,-80.001886],[-59.791127,-80.022719],[-59.779937,-80.033298],[-59.77595,-80.04518],[-59.784332,-80.057794],[-59.799387,-80.063897],[-59.935414,-80.075779],[-59.961334,-80.083917],[-59.920155,-80.108575],[-59.909413,-80.113051],[-59.897939,-80.115818],[-59.519887,-80.111912],[-59.433339,-80.128676],[-59.42162,-80.136163],[-59.432973,-80.147149],[-59.447865,-80.15602],[-59.47997,-80.169529],[-59.366078,-80.160903],[-59.349477,-80.161716],[-59.334869,-80.166111],[-59.332916,-80.168552],[-59.332387,-80.175063],[-59.331166,-80.177341],[-59.327952,-80.178318],[-59.286366,-80.179457],[-59.287953,-80.184503],[-59.290679,-80.188897],[-59.294423,-80.192478],[-59.298736,-80.195489],[-59.286773,-80.209649],[-59.280385,-80.215427],[-59.300608,-80.21852],[-59.318186,-80.216241],[-59.353261,-80.205255],[-59.379384,-80.202081],[-59.580393,-80.211358],[-59.592641,-80.213962],[-59.599965,-80.21738],[-59.605092,-80.223403],[-59.610422,-80.233819],[-59.619618,-80.246515],[-59.623199,-80.253513],[-59.622629,-80.259698],[-59.616567,-80.263767],[-59.598866,-80.265069],[-59.591786,-80.266534],[-59.586008,-80.271173],[-59.58023,-80.281345],[-59.574574,-80.285821],[-59.597157,-80.289158],[-59.637318,-80.284601],[-59.657704,-80.292413],[-59.669749,-80.303155],[-59.6881,-80.323907],[-59.699696,-80.330662],[-59.718861,-80.332615],[-59.73884,-80.331801],[-59.757436,-80.335707],[-59.772532,-80.351658],[-59.773346,-80.354913],[-59.774241,-80.364028],[-59.775258,-80.368097],[-59.777415,-80.371026],[-59.783315,-80.376153],[-59.785227,-80.379164],[-59.784088,-80.398207],[-59.769887,-80.406996],[-59.730865,-80.414158],[-59.774403,-80.419203],[-59.785878,-80.423923],[-59.792592,-80.429376],[-59.794342,-80.43377],[-59.791615,-80.447849],[-59.795644,-80.469415],[-59.808827,-80.494561],[-59.82726,-80.516371],[-59.846832,-80.528253],[-59.809234,-80.532647],[-59.681549,-80.515069],[-59.670074,-80.511163],[-59.659657,-80.505466],[-59.652211,-80.497166],[-59.658925,-80.490655],[-59.666737,-80.484796],[-59.647288,-80.479425],[-59.626332,-80.476983],[-59.585194,-80.478692],[-59.574086,-80.481622],[-59.552805,-80.490167],[-59.54186,-80.493097],[-59.535512,-80.493585],[-59.519602,-80.489679],[-59.506256,-80.488458],[-59.466542,-80.490899],[-59.476145,-80.495782],[-59.490224,-80.507257],[-59.501861,-80.520196],[-59.503896,-80.529474],[-59.564361,-80.541599],[-59.581858,-80.538832],[-59.584625,-80.536798],[-59.590932,-80.529718],[-59.591705,-80.528416],[-59.60025,-80.527276],[-59.610585,-80.527602],[-59.620595,-80.529555],[-59.628529,-80.533461],[-59.641225,-80.545994],[-59.647206,-80.55047],[-59.741322,-80.576267],[-59.833323,-80.583266],[-59.847564,-80.587091],[-59.859242,-80.594985],[-59.868398,-80.608819],[-59.884267,-80.645929],[-59.793813,-80.655694],[-59.714996,-80.641209],[-59.690175,-80.641046],[-59.665924,-80.646417],[-59.684722,-80.664239],[-59.691803,-80.669122],[-59.69929,-80.672296],[-59.723459,-80.679132],[-59.755605,-80.694594],[-59.785227,-80.714044],[-59.809153,-80.738214],[-59.819,-80.744887],[-60.090199,-80.830499],[-60.361399,-80.916111],[-60.652659,-80.960382],[-61.120015,-80.936517],[-61.587371,-80.912652],[-62.054728,-80.888788],[-62.522084,-80.864923],[-62.958485,-80.775323],[-62.983632,-80.759698],[-62.988108,-80.736993],[-62.97997,-80.726739],[-62.969716,-80.718357],[-62.965077,-80.709161],[-62.973622,-80.696873],[-62.988271,-80.688572],[-63.04011,-80.674493],[-63.051625,-80.668634],[-63.055979,-80.66253],[-63.056508,-80.640558],[-63.061147,-80.625177],[-63.071848,-80.614679],[-63.086293,-80.607517],[-63.141103,-80.592462],[-63.466725,-80.599298],[-63.792348,-80.606134],[-63.805043,-80.609796],[-63.816029,-80.616143],[-63.836822,-80.631443],[-63.850209,-80.638604],[-63.863678,-80.642836],[-63.878,-80.645196],[-64.127512,-80.653578],[-64.165639,-80.664809],[-64.158803,-80.666436],[-64.152333,-80.669203],[-64.146596,-80.67311],[-64.142201,-80.678399],[-64.177317,-80.696466],[-64.183746,-80.707696],[-64.170806,-80.726821],[-64.176096,-80.733168],[-64.218332,-80.744724],[-64.284779,-80.751153],[-64.768007,-80.683396],[-65.251235,-80.615639],[-65.734462,-80.547882],[-66.21769,-80.480125],[-66.700917,-80.412367],[-66.751373,-80.393813],[-66.75886,-80.389093],[-66.767242,-80.379327],[-66.776357,-80.357599],[-66.782867,-80.347426],[-66.788726,-80.343032],[-66.795562,-80.339532],[-66.801584,-80.335219],[-66.804758,-80.328546],[-66.796457,-80.308201],[-66.769114,-80.289727],[-66.57665,-80.227309],[-66.330963,-80.219171],[-66.276967,-80.211521],[-66.266225,-80.212498],[-66.27009,-80.199884],[-66.257883,-80.19492],[-66.239898,-80.194431],[-66.210561,-80.197198],[-66.194407,-80.201104],[-66.179555,-80.207778],[-66.167226,-80.218194],[-66.169789,-80.227472],[-66.184682,-80.237563],[-66.211781,-80.249933],[-66.207102,-80.25628],[-66.18932,-80.272556],[-66.212636,-80.294366],[-66.223866,-80.313897],[-66.228831,-80.319594],[-66.203481,-80.343683],[-66.165354,-80.357354],[-65.918446,-80.394952],[-65.455325,-80.391995],[-64.992204,-80.389038],[-64.529083,-80.386082],[-64.065962,-80.383125],[-63.60284,-80.380168],[-63.139719,-80.377211],[-62.676598,-80.374254],[-62.213477,-80.371298],[-61.750356,-80.368341],[-61.48646,-80.320733],[-61.222564,-80.273126],[-61.194569,-80.25506],[-61.18456,-80.252618],[-61.447255,-80.251153],[-61.515859,-80.241876],[-61.535268,-80.23561],[-61.544545,-80.230076],[-61.555898,-80.216729],[-61.562978,-80.210056],[-61.576772,-80.203546],[-61.65807,-80.179457],[-61.663075,-80.175551],[-61.662668,-80.17018],[-61.658355,-80.166111],[-61.652903,-80.162205],[-61.648671,-80.157892],[-61.650136,-80.14365],[-61.667795,-80.135349],[-61.706451,-80.124933],[-61.714467,-80.117283],[-61.727651,-80.099054],[-61.736073,-80.091567],[-61.749989,-80.084405],[-61.795766,-80.066583],[-61.807851,-80.05755],[-61.806142,-80.050877],[-61.795481,-80.046075],[-61.7801,-80.042413],[-61.749867,-80.038995],[-61.658844,-80.038018],[-61.669789,-80.035903],[-61.700754,-80.015395],[-61.290517,-80.014907],[-61.266754,-80.008477],[-61.258941,-80.003351],[-61.238108,-79.984959],[-61.235585,-79.979669],[-61.244456,-79.973891],[-61.308705,-79.945896],[-61.468007,-79.913344],[-61.515289,-79.894464],[-61.522694,-79.892999],[-61.49474,-79.885675],[-61.466054,-79.881606],[-61.120758,-79.873468],[-61.094838,-79.832452],[-61.026926,-79.806085],[-60.551788,-79.731052],[-60.07665,-79.65602],[-60.040761,-79.660089],[-60.044504,-79.669854],[-60.053334,-79.679864],[-60.064198,-79.688409],[-60.074452,-79.694106]]],[[[-31.134511,-79.79754],[-31.115142,-79.805759],[-31.095448,-79.810724],[-30.654124,-79.846124],[-30.492299,-79.841892],[-30.3579,-79.855401],[-30.290517,-79.853204],[-30.225575,-79.837498],[-30.522878,-79.792901],[-30.82018,-79.748305],[-30.847483,-79.740655],[-30.870717,-79.727227],[-30.877838,-79.719659],[-30.890492,-79.702813],[-30.898183,-79.695977],[-30.905751,-79.69256],[-30.921498,-79.688572],[-30.928944,-79.684259],[-30.88858,-79.664809],[-30.843373,-79.65252],[-30.797353,-79.650079],[-30.754872,-79.660333],[-30.74059,-79.670994],[-30.722035,-79.698907],[-30.707021,-79.711602],[-30.662831,-79.734552],[-30.647084,-79.739679],[-30.276662,-79.777358],[-29.906239,-79.815037],[-29.765126,-79.851983],[-29.612864,-79.910252],[-29.618316,-79.911228],[-29.679799,-79.927992],[-29.701243,-79.931329],[-29.779612,-79.92962],[-29.861724,-79.919041],[-29.877797,-79.912367],[-29.889556,-79.901788],[-29.909291,-79.877699],[-29.923695,-79.869806],[-30.008901,-79.853611],[-30.053456,-79.851983],[-30.095448,-79.856215],[-30.163401,-79.876886],[-30.252349,-79.886163],[-30.145904,-79.931085],[-30.034657,-79.940851],[-30.021962,-79.943455],[-30.014475,-79.947849],[-29.994618,-79.96266],[-29.989084,-79.96559],[-30.184722,-80.004978],[-30.366444,-80.017755],[-30.425526,-80.010919],[-30.471669,-79.988702],[-30.324208,-79.984796],[-30.287262,-79.975844],[-30.277984,-79.975844],[-30.310902,-79.967218],[-30.482655,-79.945001],[-30.496002,-79.937595],[-30.501617,-79.929132],[-30.505483,-79.91961],[-30.513661,-79.908949],[-30.521474,-79.904067],[-30.529205,-79.902602],[-30.631174,-79.906427],[-30.652496,-79.916925],[-30.646067,-79.919366],[-30.635976,-79.927423],[-30.632436,-79.938897],[-30.64566,-79.95143],[-30.661122,-79.955662],[-30.678944,-79.956313],[-30.887685,-79.925551],[-31.214711,-79.912042],[-31.541737,-79.898533],[-31.751943,-79.859145],[-31.851715,-79.852634],[-31.872426,-79.847101],[-31.855824,-79.837986],[-31.835805,-79.832452],[-31.737172,-79.816827],[-31.718902,-79.809503],[-31.809682,-79.800958],[-31.998199,-79.820245],[-32.044789,-79.819024],[-32.089467,-79.809259],[-31.916331,-79.772149],[-31.896718,-79.764825],[-31.878774,-79.75449],[-31.924387,-79.747654],[-31.93932,-79.743748],[-31.950795,-79.737726],[-31.971669,-79.723077],[-31.983144,-79.717543],[-31.998036,-79.713962],[-32.161773,-79.709649],[-31.996693,-79.697035],[-31.967763,-79.690118],[-31.984609,-79.685154],[-32.037221,-79.681329],[-32.07726,-79.666599],[-32.063873,-79.663832],[-32.024403,-79.649672],[-31.787709,-79.630792],[-31.644765,-79.636895],[-31.591664,-79.648696],[-31.443959,-79.708591],[-31.18928,-79.76572],[-31.134511,-79.79754]]],[[[-67.657297,-79.536798],[-67.681142,-79.551365],[-67.617258,-79.544203],[-67.562652,-79.551446],[-67.519643,-79.548761],[-67.450063,-79.56699],[-67.184071,-79.566542],[-66.91808,-79.566095],[-66.910756,-79.565199],[-66.92516,-79.572686],[-66.975168,-79.583185],[-66.888254,-79.586033],[-66.870961,-79.588556],[-66.833485,-79.601495],[-66.750966,-79.616795],[-66.450022,-79.622491],[-66.149078,-79.628188],[-65.857818,-79.602146],[-65.819407,-79.608005],[-65.788564,-79.624607],[-65.813385,-79.627537],[-65.937896,-79.658949],[-65.965647,-79.659763],[-65.991811,-79.655369],[-65.992421,-79.654229],[-65.998402,-79.64837],[-66.002065,-79.646173],[-66.009755,-79.64544],[-66.2565,-79.673272],[-66.656239,-79.660414],[-66.6787,-79.662856],[-66.700754,-79.668064],[-66.645863,-79.690199],[-66.584096,-79.701837],[-66.271799,-79.721449],[-66.114573,-79.76686],[-66.016591,-79.774835],[-65.691274,-79.751886],[-65.651031,-79.758966],[-65.600942,-79.776544],[-65.571116,-79.78281],[-65.554067,-79.777439],[-65.558583,-79.782892],[-65.579457,-79.79461],[-65.560455,-79.798761],[-65.551503,-79.802667],[-65.544789,-79.808364],[-65.565785,-79.812677],[-65.86852,-79.830987],[-65.895497,-79.839125],[-65.901275,-79.839532],[-65.874989,-79.849216],[-65.530385,-79.882745],[-65.516998,-79.886407],[-65.505849,-79.893324],[-65.499745,-79.904229],[-65.50121,-79.913995],[-65.503896,-79.923435],[-65.501617,-79.933526],[-65.492299,-79.940606],[-65.477854,-79.945977],[-65.450103,-79.952407],[-65.463368,-79.952732],[-65.511586,-79.964532],[-65.727406,-79.990411],[-65.741689,-79.995538],[-65.753774,-80.00213],[-65.776763,-80.018487],[-65.794749,-80.027439],[-66.222727,-80.086358],[-66.310455,-80.080743],[-66.395375,-80.059828],[-66.385894,-80.052016],[-66.382069,-80.050063],[-66.385854,-80.042169],[-66.395131,-80.037286],[-66.406158,-80.033624],[-66.415273,-80.029474],[-66.3544,-80.016209],[-66.335846,-80.01629],[-66.34203,-80.000665],[-66.357777,-79.986586],[-66.376698,-79.975518],[-66.392445,-79.96852],[-66.419301,-79.960382],[-66.722035,-79.936619],[-66.769439,-79.91961],[-66.973012,-79.921645],[-67.008941,-79.913263],[-67.025746,-79.89837],[-67.000722,-79.876235],[-66.846262,-79.822035],[-66.837636,-79.815362],[-66.819203,-79.796645],[-66.811838,-79.791925],[-66.871571,-79.79811],[-66.933339,-79.792576],[-67.311879,-79.715427],[-67.690419,-79.638279],[-67.760121,-79.593683],[-67.776479,-79.588474],[-67.805776,-79.586602],[-67.832102,-79.57936],[-67.839833,-79.55877],[-67.828033,-79.545994],[-67.805409,-79.538507],[-67.707346,-79.525649],[-67.680084,-79.527439],[-67.65392,-79.534112],[-67.657297,-79.536798]]],[[[-32.191314,-79.620375],[-32.205556,-79.627048],[-32.208648,-79.642755],[-32.198801,-79.657159],[-32.18102,-79.66253],[-32.1433,-79.661065],[-32.168691,-79.669122],[-32.496653,-79.673272],[-32.601226,-79.661065],[-32.529652,-79.654474],[-32.485463,-79.645115],[-32.494496,-79.641778],[-32.521148,-79.640395],[-32.555898,-79.627699],[-32.564605,-79.626886],[-32.539906,-79.623224],[-32.489654,-79.625421],[-32.464752,-79.62363],[-32.450307,-79.619561],[-32.447255,-79.614923],[-32.448232,-79.607192],[-32.445465,-79.594415],[-32.441721,-79.59002],[-32.430531,-79.582127],[-32.427887,-79.578058],[-32.430247,-79.567641],[-32.437611,-79.5617],[-32.446848,-79.557061],[-32.454742,-79.550714],[-32.424469,-79.547947],[-32.360707,-79.531508],[-32.294179,-79.521905],[-32.222279,-79.520196],[-31.933339,-79.563084],[-31.913482,-79.572849],[-31.92455,-79.599786],[-31.964426,-79.610935],[-32.191314,-79.620375]]],[[[-67.048207,-79.264825],[-67.069081,-79.282647],[-67.09732,-79.294122],[-67.198232,-79.318617],[-67.212758,-79.319268],[-67.223297,-79.317641],[-67.252065,-79.308282],[-67.271474,-79.308201],[-67.334462,-79.324884],[-67.511057,-79.397231],[-67.499013,-79.40545],[-67.48233,-79.409926],[-67.339508,-79.42197],[-67.312815,-79.427423],[-67.289418,-79.438246],[-67.293202,-79.441664],[-67.306508,-79.449802],[-67.292592,-79.454848],[-67.242177,-79.455824],[-67.257883,-79.461358],[-67.331288,-79.474054],[-67.377349,-79.490411],[-67.423207,-79.500909],[-67.467885,-79.506036],[-67.930287,-79.488417],[-68.39269,-79.470798],[-68.454498,-79.447524],[-68.550282,-79.442966],[-68.572133,-79.436619],[-68.562245,-79.42547],[-68.536692,-79.414727],[-68.504018,-79.405369],[-68.008921,-79.365167],[-67.513824,-79.324965],[-67.46935,-79.308038],[-67.50357,-79.301853],[-67.676015,-79.303399],[-67.696645,-79.30047],[-67.705556,-79.297052],[-67.710072,-79.292413],[-67.709584,-79.286554],[-67.703481,-79.279962],[-67.710683,-79.281915],[-67.799794,-79.289972],[-67.853342,-79.280938],[-68.269154,-79.327732],[-68.432973,-79.327732],[-68.447011,-79.323826],[-68.415924,-79.312677],[-68.233062,-79.285903],[-68.233022,-79.285903],[-68.138295,-79.268813],[-68.122385,-79.261407],[-68.093617,-79.24212],[-68.077545,-79.23504],[-68.01769,-79.225844],[-67.613108,-79.211521],[-67.33609,-79.236423],[-67.059071,-79.261326],[-67.048207,-79.264825]]],[[[-67.68814,-79.125177],[-67.712229,-79.136814],[-67.70226,-79.134373],[-67.602528,-79.136651],[-67.892934,-79.159967],[-68.183339,-79.183282],[-68.225942,-79.168145],[-68.034739,-79.133966],[-67.720326,-79.11891],[-67.68814,-79.125177]]],[[[-34.020863,-79.268487],[-33.916493,-79.312595],[-33.987538,-79.34824],[-34.070872,-79.361505],[-34.513458,-79.350939],[-34.956044,-79.340373],[-35.39863,-79.329807],[-35.841217,-79.319241],[-36.283803,-79.308675],[-36.726389,-79.29811],[-36.844797,-79.259861],[-36.938466,-79.181248],[-36.883168,-79.192641],[-36.723256,-79.265313],[-36.611073,-79.270603],[-36.590077,-79.275567],[-36.604075,-79.259373],[-36.62206,-79.243829],[-36.641469,-79.231134],[-36.659576,-79.223077],[-36.251861,-79.195855],[-35.844146,-79.168634],[-35.787831,-79.153497],[-35.684071,-79.107843],[-35.628651,-79.093927],[-35.503407,-79.090102],[-35.009226,-79.149564],[-34.515045,-79.209025],[-34.020863,-79.268487]]],[[[-75.491282,-78.863051],[-75.512359,-78.866795],[-75.551747,-78.864679],[-75.603017,-78.854669],[-75.628651,-78.845473],[-75.649892,-78.833185],[-75.660553,-78.809747],[-75.643381,-78.787693],[-75.613922,-78.769464],[-75.588368,-78.757908],[-75.505849,-78.735121],[-75.446929,-78.730076],[-75.393666,-78.740981],[-75.395579,-78.741957],[-75.396352,-78.742852],[-75.396148,-78.743748],[-75.394887,-78.744561],[-75.44343,-78.761407],[-75.465077,-78.772068],[-75.473785,-78.785089],[-75.49706,-78.790134],[-75.514394,-78.797052],[-75.524973,-78.805922],[-75.527943,-78.817153],[-75.520009,-78.824477],[-75.487538,-78.84002],[-75.481191,-78.852309],[-75.491282,-78.863051]]],[[[-160.294871,-79.265802],[-160.114084,-79.292901],[-159.993357,-79.327325],[-159.842152,-79.348565],[-159.566396,-79.43255],[-159.560251,-79.435724],[-159.555735,-79.440037],[-159.54894,-79.449884],[-159.544749,-79.45436],[-159.539174,-79.457696],[-159.526479,-79.462335],[-159.521108,-79.46559],[-159.50768,-79.482192],[-159.502065,-79.486505],[-159.49413,-79.488865],[-159.466054,-79.490899],[-159.33495,-79.528253],[-159.321645,-79.536798],[-159.323801,-79.547133],[-159.334788,-79.55169],[-159.349599,-79.552667],[-159.377187,-79.550551],[-159.253163,-79.581638],[-159.235178,-79.589044],[-159.215037,-79.601821],[-159.204783,-79.617852],[-159.216501,-79.634454],[-159.204457,-79.64422],[-159.189158,-79.652765],[-158.974843,-79.722345],[-158.958445,-79.739923],[-158.962026,-79.745701],[-158.976674,-79.755141],[-158.978464,-79.761977],[-158.974314,-79.765395],[-158.966624,-79.767673],[-158.953074,-79.769708],[-158.990427,-79.790216],[-159.003285,-79.795099],[-159.028066,-79.799493],[-159.035959,-79.802667],[-159.05073,-79.812921],[-159.057973,-79.816339],[-159.069814,-79.81878],[-159.48058,-79.827732],[-159.891347,-79.836684],[-160.302113,-79.845636],[-160.71288,-79.854587],[-161.174319,-79.793769],[-161.635759,-79.732951],[-162.097198,-79.672133],[-162.558637,-79.611315],[-163.020077,-79.550497],[-163.481516,-79.489679],[-163.570872,-79.454685],[-163.936635,-79.411716],[-164.160959,-79.333429],[-164.300893,-79.301935],[-164.326527,-79.287367],[-164.31843,-79.288018],[-164.276438,-79.28102],[-164.222646,-79.28574],[-164.233957,-79.273614],[-164.247263,-79.262791],[-164.297841,-79.230076],[-164.305369,-79.220147],[-164.300771,-79.209568],[-164.288808,-79.202569],[-164.280629,-79.199395],[-164.276479,-79.19378],[-164.276845,-79.178888],[-164.288319,-79.142673],[-164.289296,-79.135675],[-164.285878,-79.132257],[-164.275136,-79.126153],[-164.271596,-79.120782],[-164.270863,-79.115411],[-164.271718,-79.110121],[-164.275461,-79.099542],[-164.236155,-79.099379],[-164.215321,-79.095147],[-164.202626,-79.08408],[-164.204701,-79.071059],[-164.216908,-79.058689],[-164.232777,-79.048761],[-164.245676,-79.043227],[-164.238515,-79.039727],[-164.214792,-79.031427],[-164.201487,-79.022719],[-164.177805,-79.003513],[-164.163157,-78.99627],[-164.148061,-78.99212],[-163.992421,-78.968032],[-163.98412,-78.965427],[-163.977284,-78.961521],[-163.964792,-78.951837],[-163.957875,-78.948337],[-163.940378,-78.943536],[-163.794057,-78.934015],[-163.778676,-78.930352],[-163.775217,-78.921075],[-163.833608,-78.906915],[-163.818308,-78.898533],[-163.771677,-78.887384],[-163.736684,-78.872003],[-163.724477,-78.868585],[-163.691029,-78.864679],[-163.679799,-78.862074],[-163.638499,-78.844822],[-163.483957,-78.811212],[-163.470693,-78.802504],[-163.300282,-78.77337],[-163.265004,-78.757257],[-163.272776,-78.753025],[-163.310984,-78.720961],[-163.242991,-78.706313],[-162.798105,-78.729465],[-162.35322,-78.752618],[-162.341868,-78.754978],[-162.333852,-78.759942],[-162.321604,-78.77337],[-162.31428,-78.779067],[-162.296498,-78.783868],[-162.144114,-78.792413],[-161.76301,-78.875828],[-161.381907,-78.959242],[-161.35615,-78.974379],[-161.353261,-78.977716],[-161.366689,-78.98211],[-161.372507,-78.985772],[-161.373362,-78.991143],[-161.364084,-78.99684],[-160.943003,-79.09177],[-160.521921,-79.1867],[-160.294871,-79.265802]]],[[[-66.833608,-78.436619],[-66.794057,-78.441013],[-66.778554,-78.43963],[-66.763499,-78.436456],[-66.74885,-78.435724],[-66.734364,-78.441827],[-66.768666,-78.450291],[-66.875071,-78.458754],[-67.056752,-78.495294],[-67.052154,-78.49863],[-67.022694,-78.514337],[-67.056142,-78.527927],[-67.159413,-78.553481],[-67.264556,-78.605157],[-67.301991,-78.618341],[-67.34203,-78.624933],[-67.354726,-78.629002],[-67.368031,-78.636895],[-67.388173,-78.655938],[-67.399526,-78.664239],[-67.786254,-78.772495],[-68.172983,-78.880751],[-68.559712,-78.989007],[-68.946441,-79.097263],[-68.963124,-79.108494],[-68.964426,-79.113214],[-68.959381,-79.121677],[-68.959625,-79.125584],[-68.976064,-79.138116],[-68.998606,-79.146661],[-69.29601,-79.217706],[-69.307769,-79.224542],[-69.314931,-79.231541],[-69.32433,-79.245864],[-69.330474,-79.253106],[-69.360097,-79.271173],[-69.464467,-79.298028],[-69.598215,-79.3742],[-69.603749,-79.379327],[-69.613108,-79.391778],[-69.61913,-79.397068],[-69.62975,-79.402276],[-69.664784,-79.411798],[-69.64745,-79.415948],[-69.606272,-79.417657],[-69.524241,-79.411798],[-69.503326,-79.415134],[-69.780507,-79.442478],[-69.822011,-79.458429],[-69.800852,-79.468845],[-69.667958,-79.486912],[-69.64684,-79.493341],[-69.58731,-79.520196],[-69.563059,-79.526056],[-69.491567,-79.532647],[-69.691884,-79.541192],[-69.704091,-79.545099],[-69.715932,-79.551039],[-69.726796,-79.558526],[-69.736155,-79.567153],[-69.646555,-79.603774],[-69.994171,-79.650323],[-70.341786,-79.696873],[-70.709245,-79.682224],[-71.076704,-79.667576],[-71.444163,-79.652927],[-71.558909,-79.623305],[-71.6704,-79.58115],[-71.781077,-79.524021],[-71.805165,-79.500421],[-71.813303,-79.488539],[-71.815663,-79.479181],[-71.814809,-79.453302],[-71.803375,-79.42783],[-71.786244,-79.404229],[-71.768381,-79.385024],[-71.752919,-79.325128],[-71.688466,-79.260431],[-71.599599,-79.199965],[-71.395416,-79.101739],[-70.994089,-78.993829],[-70.592763,-78.885919],[-70.411244,-78.882582],[-70.366119,-78.872979],[-70.27595,-78.84059],[-69.833363,-78.799737],[-69.696685,-78.752862],[-69.60851,-78.745701],[-69.577545,-78.739435],[-69.473215,-78.702732],[-69.451894,-78.691502],[-69.437245,-78.687107],[-69.010467,-78.620416],[-68.583689,-78.553725],[-68.156911,-78.487034],[-67.730133,-78.420343],[-67.626373,-78.383477],[-67.577626,-78.37184],[-67.285268,-78.339288],[-66.992909,-78.306736],[-66.730865,-78.321466],[-66.66393,-78.336684],[-66.60554,-78.363702],[-66.629058,-78.379571],[-66.659291,-78.389093],[-66.835683,-78.414158],[-66.872548,-78.427992],[-66.833608,-78.436619]]],[[[167.579112,-78.18727],[167.496837,-78.226983],[167.405528,-78.2492],[167.29127,-78.252699],[166.947276,-78.222263],[166.903168,-78.227472],[166.729747,-78.277032],[166.315115,-78.310317],[166.194184,-78.299249],[166.141124,-78.287205],[166.09783,-78.267836],[166.034841,-78.196547],[165.986095,-78.109552],[166.045421,-78.09002],[166.093435,-78.083185],[166.132335,-78.090509],[166.164317,-78.112888],[166.310313,-78.1124],[166.65268,-78.161391],[166.773611,-78.20143],[166.795665,-78.211602],[167.067882,-78.154962],[167.348399,-78.05877],[167.411143,-78.011163],[167.456065,-77.99627],[167.511729,-77.992446],[167.565278,-78.002699],[167.603282,-78.030206],[167.609874,-78.056329],[167.624197,-78.081964],[167.663748,-78.127374],[167.661876,-78.128676],[167.661469,-78.129815],[167.662771,-78.130548],[167.665701,-78.130955],[167.579112,-78.18727]]],[[[-45.349965,-78.693292],[-45.224599,-78.73561],[-45.370473,-78.786065],[-45.298166,-78.810724],[-45.218984,-78.818943],[-44.725657,-78.812812],[-44.23233,-78.806682],[-43.739003,-78.800551],[-43.71231,-78.80877],[-43.553456,-78.880548],[-43.50064,-78.913832],[-43.459869,-78.955499],[-43.444325,-78.988539],[-43.430816,-79.037856],[-43.430043,-79.084893],[-43.452545,-79.110772],[-43.405588,-79.100356],[-43.381581,-79.098321],[-43.357777,-79.100763],[-43.343577,-79.10768],[-43.305531,-79.136],[-43.199859,-79.158461],[-43.148834,-79.179457],[-43.133534,-79.181899],[-43.188344,-79.18906],[-43.348459,-79.23919],[-43.309804,-79.267511],[-43.15095,-79.315118],[-43.106679,-79.334242],[-43.069651,-79.355727],[-43.070221,-79.362888],[-43.065745,-79.371515],[-43.059397,-79.380792],[-43.054596,-79.389581],[-43.041493,-79.400567],[-42.989654,-79.42018],[-42.971547,-79.429946],[-42.961578,-79.440851],[-42.953521,-79.452569],[-42.947133,-79.465427],[-42.942372,-79.479099],[-42.939076,-79.492934],[-42.936431,-79.522068],[-42.962229,-79.716078],[-42.981516,-79.786554],[-43.015736,-79.849786],[-43.072825,-79.908949],[-43.137441,-79.951755],[-43.207143,-79.978123],[-43.281239,-79.98797],[-43.596181,-79.963474],[-43.856679,-79.996026],[-43.853139,-79.99627],[-43.851959,-79.996677],[-43.853098,-79.997003],[-43.856516,-79.997491],[-43.477122,-80.094659],[-43.437978,-80.10947],[-43.423411,-80.131524],[-43.452382,-80.164483],[-43.531565,-80.199965],[-44.007539,-80.237325],[-44.483513,-80.274685],[-44.959487,-80.312044],[-45.435461,-80.349404],[-45.911435,-80.386764],[-46.387409,-80.424124],[-46.863383,-80.461484],[-47.339357,-80.498843],[-47.815331,-80.536203],[-48.291305,-80.573563],[-48.76728,-80.610923],[-49.243254,-80.648282],[-49.719228,-80.685642],[-49.742665,-80.695082],[-49.756256,-80.706964],[-49.759104,-80.721856],[-49.750478,-80.74033],[-49.741567,-80.742364],[-49.699534,-80.761977],[-49.695953,-80.767999],[-49.798004,-80.790948],[-50.282849,-80.800524],[-50.767694,-80.8101],[-51.252539,-80.819675],[-51.737384,-80.829251],[-52.22223,-80.838827],[-52.707075,-80.848403],[-53.19192,-80.857978],[-53.676765,-80.867554],[-54.16161,-80.87713],[-54.258412,-80.855076],[-54.290028,-80.838556],[-54.34911,-80.782485],[-54.363189,-80.772068],[-54.396555,-80.752537],[-54.407826,-80.740004],[-54.412953,-80.717462],[-54.411,-80.689386],[-54.404652,-80.661391],[-54.396392,-80.639418],[-54.38329,-80.623305],[-54.368967,-80.610121],[-54.363637,-80.596124],[-54.377594,-80.577407],[-54.273101,-80.536065],[-54.217519,-80.521742],[-54.163808,-80.530043],[-54.146148,-80.545017],[-54.134429,-80.561212],[-54.120676,-80.568943],[-54.096506,-80.558364],[-54.081654,-80.543227],[-54.063832,-80.508477],[-54.051015,-80.491957],[-54.019358,-80.470636],[-53.789418,-80.36061],[-53.589467,-80.23211],[-53.423655,-80.193048],[-53.430165,-80.182306],[-53.43692,-80.173598],[-53.445465,-80.166681],[-53.457631,-80.160903],[-53.407053,-80.10768],[-53.342641,-80.107192],[-53.213206,-80.161391],[-53.151479,-80.175958],[-53.088002,-80.181817],[-52.890248,-80.177016],[-52.694325,-80.143731],[-52.606679,-80.107599],[-52.409332,-80.055108],[-52.351552,-80.052992],[-52.302358,-80.061212],[-52.279897,-80.078302],[-52.287587,-80.101658],[-52.32901,-80.128351],[-52.476104,-80.192722],[-52.522817,-80.198989],[-52.518788,-80.200128],[-52.396352,-80.184991],[-51.939707,-80.055597],[-51.483062,-79.926202],[-51.338979,-79.865004],[-51.062571,-79.799412],[-50.916168,-79.733005],[-50.541371,-79.637872],[-50.403066,-79.570977],[-50.353342,-79.554376],[-50.282135,-79.544854],[-50.263661,-79.53574],[-50.253651,-79.522638],[-50.240387,-79.494724],[-50.226308,-79.480401],[-50.245432,-79.465916],[-50.253489,-79.46266],[-50.25178,-79.457778],[-50.251047,-79.45322],[-50.249623,-79.448419],[-50.246205,-79.443292],[-50.280751,-79.42669],[-50.324086,-79.415216],[-50.350168,-79.398533],[-50.333079,-79.366143],[-50.389231,-79.330824],[-50.460072,-79.312107],[-50.713124,-79.281671],[-50.739735,-79.284438],[-50.651031,-79.243259],[-50.544301,-79.161716],[-50.497914,-79.13836],[-50.484364,-79.129327],[-50.480458,-79.115981],[-50.492421,-79.095636],[-50.480377,-79.079685],[-50.455474,-79.022149],[-50.452992,-79.003839],[-50.47468,-78.983575],[-50.540679,-78.974867],[-50.56135,-78.959568],[-50.518666,-78.945733],[-50.379058,-78.929864],[-50.334299,-78.913832],[-50.290883,-78.891534],[-50.250356,-78.864028],[-50.214426,-78.83294],[-50.324696,-78.838311],[-50.380279,-78.83172],[-50.430531,-78.812595],[-50.267323,-78.72324],[-50.281728,-78.721287],[-50.309478,-78.721856],[-50.323476,-78.719985],[-50.363515,-78.696222],[-50.367421,-78.690525],[-50.341949,-78.683038],[-50.288686,-78.679376],[-50.263905,-78.671319],[-50.249745,-78.657485],[-50.232818,-78.620701],[-50.221099,-78.604425],[-50.204091,-78.593032],[-50.056549,-78.534112],[-50.042104,-78.52337],[-50.017079,-78.498712],[-50.003082,-78.48797],[-49.971059,-78.473321],[-49.894887,-78.45322],[-49.586476,-78.32704],[-49.278066,-78.20086],[-49.250722,-78.179457],[-49.24767,-78.172052],[-49.246002,-78.152439],[-49.234446,-78.139825],[-49.220815,-78.131606],[-49.11559,-78.094659],[-49.103017,-78.079767],[-49.138743,-78.069757],[-49.110992,-78.052911],[-49.072336,-78.042169],[-48.609883,-77.974786],[-48.14743,-77.907403],[-47.684977,-77.84002],[-47.222524,-77.772638],[-46.79304,-77.787449],[-46.363555,-77.80226],[-45.934071,-77.817071],[-45.895172,-77.828546],[-45.434967,-77.899754],[-44.974762,-77.970961],[-44.514556,-78.042169],[-44.166697,-78.145237],[-43.818837,-78.248305],[-43.768544,-78.274184],[-43.731068,-78.311782],[-43.718251,-78.367446],[-43.725087,-78.394952],[-43.740142,-78.414483],[-43.782582,-78.447361],[-43.799387,-78.464614],[-43.827748,-78.504002],[-43.89981,-78.584242],[-43.920277,-78.596287],[-43.963124,-78.603285],[-44.360666,-78.622817],[-44.758209,-78.642348],[-45.155751,-78.661879],[-45.302724,-78.680352],[-45.349965,-78.693292]]],[[[-49.258656,-77.872491],[-49.391225,-77.880548],[-49.415191,-77.878025],[-49.445058,-77.864679],[-49.450795,-77.863051],[-49.430898,-77.853123],[-49.336415,-77.829767],[-48.989003,-77.784275],[-48.846913,-77.744236],[-48.814198,-77.738865],[-48.781606,-77.73919],[-48.750356,-77.747654],[-48.770904,-77.750177],[-49.245473,-77.865655],[-49.258656,-77.872491]]],[[[-148.96996,-77.478936],[-149.018666,-77.480076],[-149.207712,-77.45672],[-149.174672,-77.448337],[-149.19286,-77.446547],[-149.201609,-77.444106],[-149.208852,-77.439874],[-149.094716,-77.42311],[-149.055857,-77.421563],[-148.832021,-77.448337],[-148.878041,-77.462335],[-148.96996,-77.478936]]],[[[-149.236195,-77.305108],[-149.225209,-77.315525],[-149.224965,-77.319431],[-149.228505,-77.327244],[-149.227976,-77.330743],[-149.214833,-77.339532],[-148.92988,-77.375095],[-148.918853,-77.384861],[-148.918894,-77.384861],[-148.935902,-77.393324],[-148.958933,-77.397393],[-149.391672,-77.382257],[-149.579945,-77.339939],[-149.669789,-77.304376],[-149.640085,-77.294854],[-149.625071,-77.295587],[-149.581532,-77.304864],[-149.539784,-77.304295],[-149.528025,-77.307061],[-149.5478,-77.298028],[-149.597157,-77.282892],[-149.492624,-77.27337],[-149.336415,-77.283461],[-149.252797,-77.298435],[-149.236195,-77.305108]]],[[[-150.483795,-77.343194],[-150.451365,-77.347914],[-150.349965,-77.345473],[-150.361643,-77.355727],[-150.375111,-77.363865],[-150.38976,-77.369399],[-150.40449,-77.372328],[-150.498484,-77.375584],[-150.830732,-77.348294],[-151.16298,-77.321005],[-151.495229,-77.293715],[-151.512278,-77.285252],[-151.511464,-77.270766],[-151.499094,-77.263116],[-151.479929,-77.258071],[-151.130849,-77.21738],[-150.985178,-77.222345],[-150.545115,-77.314874],[-150.499827,-77.338067],[-150.483795,-77.343194]]],[[[-153.081288,-77.261977],[-153.108754,-77.264907],[-153.416331,-77.231622],[-153.4676,-77.211114],[-153.436594,-77.202813],[-153.116282,-77.20615],[-153.075063,-77.216567],[-153.054921,-77.226821],[-153.047231,-77.240004],[-153.048166,-77.243259],[-153.050282,-77.246515],[-153.05366,-77.249933],[-153.05842,-77.253351],[-153.081288,-77.261977]]],[[[-147.344106,-77.255955],[-147.383372,-77.259047],[-147.460764,-77.24977],[-147.456451,-77.248305],[-147.452789,-77.246352],[-147.44636,-77.241388],[-147.475942,-77.235447],[-147.484771,-77.231866],[-147.48884,-77.228204],[-147.494537,-77.221449],[-147.497548,-77.215427],[-147.493479,-77.213637],[-147.591135,-77.193129],[-147.601633,-77.18434],[-147.566518,-77.165623],[-147.515248,-77.16131],[-147.249582,-77.188572],[-147.187734,-77.210219],[-147.203765,-77.215916],[-147.32726,-77.232354],[-147.323557,-77.236505],[-147.318959,-77.240004],[-147.313629,-77.242934],[-147.307688,-77.244724],[-147.344106,-77.255955]]],[[[167.113129,-77.281915],[167.065766,-77.316339],[167.068858,-77.315851],[167.070649,-77.316013],[167.070974,-77.316583],[167.069672,-77.317641],[167.139008,-77.341892],[167.568126,-77.413263],[167.89385,-77.392796],[168.219574,-77.372328],[168.681814,-77.402032],[169.144054,-77.431736],[169.273448,-77.454522],[169.309337,-77.465427],[169.33961,-77.479669],[169.359386,-77.498224],[169.364431,-77.522068],[169.318207,-77.537205],[169.050304,-77.56992],[168.912283,-77.630304],[168.872569,-77.640395],[168.40089,-77.696222],[168.087413,-77.645603],[167.747732,-77.644789],[167.408051,-77.643976],[167.344981,-77.666925],[167.283702,-77.70672],[167.25766,-77.715916],[167.068858,-77.745375],[166.893565,-77.793715],[166.778656,-77.844822],[166.677257,-77.859959],[166.664806,-77.857843],[166.614513,-77.836358],[166.651703,-77.809015],[166.789317,-77.769952],[166.865408,-77.718683],[166.890636,-77.712498],[166.511078,-77.721775],[166.45338,-77.710056],[166.510509,-77.704197],[166.627778,-77.70672],[166.683116,-77.696466],[166.81422,-77.691583],[166.880382,-77.676365],[166.895681,-77.675714],[166.875255,-77.670343],[166.388682,-77.613377],[166.365408,-77.607029],[166.348399,-77.598565],[166.316905,-77.577732],[166.299815,-77.569513],[166.278494,-77.565851],[166.235118,-77.567315],[166.213715,-77.563653],[166.176606,-77.536798],[166.165538,-77.534845],[166.216482,-77.520929],[166.370616,-77.498224],[166.401622,-77.485447],[166.476817,-77.431248],[166.65447,-77.362563],[166.676117,-77.359959],[166.601899,-77.336521],[166.575857,-77.332127],[166.547862,-77.313409],[166.400076,-77.266534],[166.451915,-77.212335],[166.524425,-77.183038],[166.679454,-77.163344],[166.827159,-77.160903],[166.973318,-77.182224],[167.029063,-77.20379],[167.088145,-77.240655],[167.113129,-77.281915]]],[[[-154.048166,-77.137465],[-154.187123,-77.154392],[-154.512441,-77.135512],[-154.541737,-77.126886],[-154.549875,-77.123468],[-154.555776,-77.12005],[-154.559763,-77.116876],[-154.561879,-77.113539],[-154.552968,-77.100518],[-154.524648,-77.089614],[-154.433542,-77.072524],[-154.284006,-77.064142],[-154.128245,-77.07822],[-154.055124,-77.097263],[-154.049428,-77.100274],[-154.045237,-77.104669],[-154.040232,-77.112074],[-154.035756,-77.13006],[-154.048166,-77.137465]]],[[[166.977306,-76.96266],[166.872244,-76.972914],[166.872325,-76.96266],[166.866466,-76.947931],[166.853282,-76.936212],[166.854666,-76.929132],[166.874034,-76.926446],[166.91505,-76.931329],[166.956554,-76.938409],[166.977306,-76.950616],[166.977306,-76.96266]]],[[[-148.481191,-77.001153],[-148.939931,-77.028009],[-149.239003,-76.996352],[-149.262644,-76.987237],[-149.274973,-76.970147],[-149.27184,-76.96559],[-149.27009,-76.956964],[-149.267649,-76.950779],[-149.283396,-76.941013],[-149.295766,-76.930922],[-149.303415,-76.921157],[-149.304799,-76.912042],[-149.215891,-76.897638],[-148.874725,-76.923639],[-148.533559,-76.94964],[-148.445749,-76.972914],[-148.43517,-76.973728],[-148.453806,-76.991632],[-148.481191,-77.001153]]],[[[-149.773264,-76.894301],[-149.758656,-76.925388],[-149.694651,-76.936212],[-149.44286,-77.024998],[-149.445505,-77.02988],[-149.448801,-77.034275],[-149.456858,-77.042413],[-149.451243,-77.0499],[-149.443064,-77.055108],[-149.424875,-77.06227],[-149.434641,-77.070896],[-149.444814,-77.07822],[-149.331492,-77.085138],[-149.274037,-77.097263],[-149.224355,-77.118097],[-149.249989,-77.132013],[-149.308054,-77.139581],[-149.728668,-77.12949],[-149.728749,-77.12949],[-149.837351,-77.123142],[-149.805124,-77.110121],[-149.7954,-77.104425],[-149.809641,-77.106541],[-149.872019,-77.098403],[-150.146799,-77.094089],[-150.42158,-77.089776],[-150.582631,-77.037367],[-150.782664,-77.006931],[-150.801137,-76.990004],[-150.796254,-76.978692],[-150.782541,-76.970798],[-150.64623,-76.942478],[-150.419016,-76.922052],[-150.428293,-76.911798],[-150.443959,-76.900079],[-150.461008,-76.891371],[-150.474843,-76.890802],[-150.456125,-76.884861],[-150.394765,-76.877537],[-150.392405,-76.881524],[-150.392934,-76.907159],[-149.962595,-76.870701],[-149.840037,-76.878025],[-149.773264,-76.894301]]],[[[-146.241078,-76.886326],[-146.236684,-76.893243],[-146.229075,-76.896091],[-146.212026,-76.897638],[-146.202504,-76.901544],[-146.194651,-76.906427],[-146.164784,-76.931329],[-146.154205,-76.937921],[-146.142934,-76.942966],[-146.119049,-76.94964],[-146.137685,-76.957778],[-146.158193,-76.958673],[-146.27245,-76.940606],[-146.296986,-76.93255],[-146.332875,-76.913263],[-146.328481,-76.911798],[-146.32429,-76.909763],[-146.316721,-76.904962],[-146.322336,-76.90488],[-146.346181,-76.894789],[-146.368764,-76.891209],[-146.38622,-76.890883],[-146.39566,-76.892185],[-146.404693,-76.894952],[-146.413319,-76.899998],[-146.409657,-76.908298],[-146.407135,-76.911798],[-146.403676,-76.914809],[-146.413808,-76.922621],[-146.417348,-76.924493],[-146.415517,-76.926039],[-146.412506,-76.930271],[-146.411122,-76.931736],[-146.479237,-76.949884],[-146.964833,-77.007094],[-147.031484,-77.005304],[-147.094797,-76.989923],[-147.051422,-76.979262],[-147.040517,-76.974786],[-147.009348,-76.956638],[-147.032541,-76.929457],[-147.043813,-76.921482],[-147.130198,-76.881768],[-147.100657,-76.861017],[-147.090077,-76.855239],[-147.126088,-76.839451],[-147.103993,-76.828546],[-147.072133,-76.823907],[-146.660939,-76.852431],[-146.249745,-76.880955],[-146.241078,-76.886326]]],[[[-149.055226,-76.725396],[-148.800649,-76.736749],[-148.787953,-76.73447],[-148.779124,-76.730727],[-148.763254,-76.720961],[-148.754628,-76.717055],[-148.74706,-76.715997],[-148.409373,-76.738702],[-148.326487,-76.756768],[-148.308909,-76.765558],[-148.35676,-76.794122],[-148.413767,-76.801853],[-148.52953,-76.796563],[-148.716257,-76.805352],[-148.730336,-76.809177],[-148.739939,-76.814874],[-148.75654,-76.829767],[-148.765859,-76.835626],[-148.77717,-76.839044],[-148.927113,-76.849786],[-149.15449,-76.836196],[-149.490712,-76.76686],[-149.403798,-76.731866],[-149.352366,-76.719415],[-149.309804,-76.714044],[-149.055226,-76.725396]]],[[[-150.232615,-76.77752],[-150.601796,-76.796645],[-150.815541,-76.769789],[-150.875478,-76.740492],[-150.867747,-76.729425],[-150.851186,-76.718927],[-150.827626,-76.710382],[-150.516815,-76.698582],[-150.206003,-76.686782],[-150.091786,-76.708754],[-150.093984,-76.714288],[-150.097279,-76.719659],[-150.105092,-76.729262],[-150.098988,-76.732599],[-150.078074,-76.738458],[-150.113026,-76.756606],[-150.152537,-76.767022],[-150.232574,-76.77752],[-150.232615,-76.77752]]],[[[-148.518137,-76.695977],[-148.577707,-76.705499],[-148.717437,-76.707208],[-148.717478,-76.707208],[-148.737416,-76.703302],[-148.773997,-76.700128],[-148.789866,-76.701918],[-148.943796,-76.685235],[-149.135691,-76.638116],[-149.148508,-76.636977],[-148.996938,-76.607517],[-148.811472,-76.611912],[-148.467885,-76.677179],[-148.470774,-76.677423],[-148.472035,-76.677667],[-148.471628,-76.678155],[-148.469472,-76.678806],[-148.518137,-76.695977]]],[[[-147.621693,-76.621026],[-147.559804,-76.662856],[-147.636342,-76.666599],[-147.729726,-76.654474],[-147.729766,-76.654474],[-147.99234,-76.599054],[-147.990875,-76.597589],[-147.987782,-76.593438],[-147.986073,-76.591892],[-147.9947,-76.580662],[-148.000722,-76.575128],[-148.006174,-76.573663],[-147.946848,-76.559828],[-147.884023,-76.558689],[-147.731597,-76.584405],[-147.621693,-76.621026]]],[[[-147.098053,-76.530369],[-147.108957,-76.533298],[-147.119211,-76.532159],[-147.086008,-76.548028],[-147.066029,-76.552179],[-147.045237,-76.552341],[-146.939605,-76.541681],[-146.919789,-76.545831],[-146.957509,-76.563084],[-146.970448,-76.567071],[-146.948232,-76.565118],[-146.815826,-76.580743],[-146.798411,-76.588311],[-146.810333,-76.595961],[-146.810414,-76.595961],[-146.819814,-76.602227],[-146.797109,-76.609633],[-146.77599,-76.621189],[-146.759267,-76.633396],[-146.749867,-76.638442],[-146.740346,-76.639907],[-146.785797,-76.648858],[-146.801096,-76.650079],[-147.063832,-76.628106],[-147.049875,-76.63421],[-146.934926,-76.65545],[-146.951894,-76.658624],[-147.005198,-76.659926],[-146.995758,-76.664158],[-146.965566,-76.669366],[-146.919667,-76.68434],[-146.839711,-76.701104],[-146.8933,-76.714532],[-146.951283,-76.716974],[-147.064687,-76.705173],[-147.273671,-76.660903],[-147.284413,-76.654962],[-147.30248,-76.639255],[-147.312611,-76.632094],[-147.325063,-76.626642],[-147.365468,-76.617446],[-147.34317,-76.605076],[-147.330393,-76.60003],[-147.319814,-76.600274],[-147.343414,-76.586684],[-147.352122,-76.583185],[-147.341624,-76.580743],[-147.310211,-76.579848],[-147.269602,-76.570489],[-147.260081,-76.572442],[-147.279408,-76.555841],[-147.270741,-76.54754],[-147.261342,-76.541192],[-147.319569,-76.531915],[-147.298004,-76.517185],[-147.270131,-76.508966],[-147.240631,-76.505466],[-147.160024,-76.504653],[-147.093251,-76.514093],[-147.079905,-76.51865],[-147.087961,-76.524998],[-147.098053,-76.530369]]],[[[-147.071401,-76.075942],[-146.908315,-76.107029],[-146.894643,-76.114435],[-146.885732,-76.123956],[-146.877797,-76.134535],[-146.867299,-76.145196],[-146.857737,-76.151137],[-146.703033,-76.204685],[-146.70108,-76.219496],[-146.671051,-76.258477],[-146.661285,-76.275567],[-146.709299,-76.292739],[-146.760162,-76.298028],[-146.811838,-76.294854],[-147.062001,-76.246759],[-147.086049,-76.23561],[-147.075429,-76.2374],[-147.05956,-76.234796],[-147.032094,-76.226821],[-147.073557,-76.209649],[-147.381947,-76.160577],[-147.404124,-76.150079],[-147.39745,-76.150323],[-147.371449,-76.142511],[-147.326975,-76.14129],[-147.4381,-76.097752],[-147.460479,-76.097752],[-147.438791,-76.078709],[-147.407582,-76.068536],[-147.345082,-76.06227],[-147.071401,-76.075942]]],[[[162.803477,-75.695733],[162.742198,-75.701837],[162.635102,-75.690037],[162.602712,-75.67962],[162.576508,-75.662774],[162.717784,-75.603448],[162.735525,-75.586602],[162.767833,-75.576104],[162.917003,-75.558282],[162.917166,-75.558282],[162.956716,-75.553155],[162.972341,-75.554864],[162.97755,-75.565037],[162.971934,-75.573175],[162.898611,-75.619806],[162.887218,-75.63006],[162.8838,-75.636326],[162.88087,-75.649021],[162.878184,-75.654392],[162.871837,-75.658868],[162.854747,-75.663995],[162.847179,-75.66725],[162.840505,-75.672784],[162.828868,-75.684666],[162.822113,-75.68963],[162.813487,-75.693292],[162.803477,-75.695733]]],[[[-145.724233,-75.518324],[-145.440378,-75.580011],[-145.440338,-75.580011],[-145.408762,-75.589939],[-145.348622,-75.616306],[-145.263783,-75.668145],[-145.230702,-75.68141],[-145.200795,-75.685805],[-145.218984,-75.704522],[-145.244537,-75.714776],[-145.272857,-75.719334],[-145.383046,-75.718032],[-145.699391,-75.669448],[-146.015736,-75.620864],[-146.124013,-75.588962],[-146.154775,-75.574477],[-146.159779,-75.569757],[-146.137359,-75.55462],[-146.111155,-75.542739],[-145.969716,-75.509454],[-145.870758,-75.504571],[-145.724233,-75.518324]]],[[[162.572276,-75.481134],[162.533702,-75.484063],[162.504649,-75.474054],[162.487966,-75.457208],[162.531505,-75.426528],[162.570811,-75.422947],[162.601248,-75.436782],[162.617849,-75.459161],[162.572276,-75.481134]]],[[[163.69516,-74.892267],[163.658702,-74.914972],[163.626475,-74.913751],[163.603526,-74.896905],[163.595063,-74.872735],[163.60377,-74.862563],[163.612966,-74.857517],[163.617686,-74.852716],[163.614268,-74.843438],[163.65089,-74.846612],[163.673676,-74.858575],[163.687022,-74.875177],[163.69516,-74.892267]]],[[[164.237804,-74.618748],[164.240408,-74.625665],[164.244314,-74.63128],[164.087657,-74.625421],[164.038097,-74.636326],[164.059093,-74.648207],[164.059093,-74.669203],[164.046397,-74.688165],[164.030284,-74.693943],[164.067231,-74.705336],[164.098399,-74.719008],[164.107188,-74.736098],[164.077403,-74.757501],[164.040212,-74.764907],[163.926036,-74.772231],[163.987966,-74.787856],[164.037771,-74.806329],[163.980968,-74.840265],[163.987071,-74.840265],[163.992931,-74.841485],[163.998546,-74.84352],[164.003754,-74.846449],[163.978282,-74.861017],[163.96339,-74.866388],[163.950531,-74.866388],[163.944102,-74.862237],[163.94337,-74.857029],[163.944591,-74.85117],[163.944184,-74.844822],[163.94044,-74.833673],[163.937185,-74.830743],[163.92921,-74.826755],[163.891775,-74.81992],[163.86964,-74.819268],[163.860525,-74.824477],[163.861827,-74.826349],[163.868663,-74.833429],[163.836599,-74.833754],[163.804861,-74.828383],[163.771251,-74.812758],[163.759939,-74.809666],[163.765636,-74.808282],[163.771251,-74.805759],[163.776134,-74.801935],[163.779307,-74.79697],[163.75115,-74.793552],[163.737071,-74.789483],[163.726736,-74.782485],[163.723399,-74.775974],[163.717947,-74.758477],[163.714041,-74.750665],[163.692638,-74.728611],[163.687755,-74.725518],[163.717784,-74.716404],[163.813243,-74.700942],[163.803477,-74.689548],[164.016368,-74.603204],[164.273285,-74.550551],[164.302419,-74.552667],[164.293305,-74.559177],[164.262706,-74.571466],[164.253266,-74.579278],[164.244884,-74.589939],[164.238048,-74.601658],[164.233084,-74.612888],[164.237804,-74.618748]]],[[[-132.342275,-74.404474],[-132.369537,-74.416436],[-132.377309,-74.421808],[-132.367543,-74.427341],[-132.363678,-74.428318],[-132.375844,-74.438165],[-132.437815,-74.457452],[-132.477203,-74.486505],[-132.53185,-74.498956],[-132.589752,-74.501072],[-132.857533,-74.470961],[-132.883534,-74.459893],[-132.866282,-74.450291],[-132.855946,-74.446873],[-132.847768,-74.446873],[-132.885854,-74.42962],[-132.898508,-74.426365],[-132.865834,-74.428399],[-132.837026,-74.426365],[-132.815541,-74.420994],[-132.805165,-74.412693],[-132.746002,-74.41546],[-132.571156,-74.388442],[-132.496571,-74.385024],[-132.421702,-74.398533],[-132.357818,-74.401951],[-132.342275,-74.404474]]],[[[-131.671254,-74.321222],[-131.642486,-74.331801],[-131.632314,-74.333754],[-131.581451,-74.329767],[-131.564117,-74.331231],[-131.57429,-74.33766],[-131.612375,-74.348891],[-131.588368,-74.365004],[-131.553212,-74.375095],[-131.127553,-74.427911],[-130.983754,-74.410821],[-130.968984,-74.412774],[-130.959543,-74.416599],[-130.957387,-74.420831],[-130.956695,-74.426446],[-130.951812,-74.43434],[-130.94518,-74.438735],[-130.920481,-74.444268],[-130.92748,-74.448907],[-130.935618,-74.452895],[-130.952301,-74.458917],[-130.951405,-74.470147],[-130.957753,-74.499282],[-130.956654,-74.513767],[-130.964752,-74.519301],[-130.968617,-74.520196],[-130.971832,-74.52044],[-130.978017,-74.523696],[-130.976959,-74.525974],[-130.973459,-74.53045],[-130.972727,-74.532485],[-131.038564,-74.569106],[-131.080881,-74.582208],[-131.078969,-74.583266],[-131.080678,-74.588637],[-131.084299,-74.594903],[-131.088246,-74.599054],[-131.098053,-74.602309],[-131.205922,-74.60711],[-131.467295,-74.572198],[-131.728668,-74.537286],[-131.766672,-74.539727],[-131.818471,-74.552341],[-131.846059,-74.554295],[-131.867096,-74.544692],[-131.871409,-74.536554],[-131.883412,-74.527927],[-131.897532,-74.520766],[-131.90807,-74.517511],[-132.02831,-74.504653],[-132.082753,-74.491143],[-132.080556,-74.488865],[-132.057607,-74.478285],[-132.022043,-74.469985],[-132.012074,-74.465427],[-132.028717,-74.467869],[-132.049916,-74.461602],[-132.107004,-74.436293],[-132.159088,-74.423923],[-132.181264,-74.423761],[-132.016754,-74.381524],[-132.014394,-74.378595],[-132.00357,-74.370375],[-131.981679,-74.359552],[-131.806264,-74.321954],[-131.721913,-74.324395],[-131.683705,-74.320489],[-131.671254,-74.321222]]],[[[-127.504018,-74.404718],[-127.434193,-74.411065],[-127.36856,-74.403741],[-127.337961,-74.404555],[-127.235992,-74.423435],[-127.224355,-74.427504],[-127.217275,-74.432712],[-127.207143,-74.445408],[-127.200592,-74.450453],[-127.185129,-74.453871],[-127.151845,-74.452569],[-127.137196,-74.458185],[-127.13386,-74.461033],[-127.131256,-74.463962],[-127.129547,-74.466729],[-127.128489,-74.469415],[-127.129018,-74.476658],[-127.13386,-74.483087],[-127.141428,-74.488214],[-127.190419,-74.511489],[-127.226674,-74.522719],[-127.233957,-74.530938],[-127.173818,-74.554295],[-127.179351,-74.56113],[-127.204254,-74.5735],[-127.203481,-74.574477],[-127.200754,-74.577325],[-127.215932,-74.588149],[-127.415883,-74.635512],[-127.506256,-74.646173],[-127.551747,-74.64365],[-127.905629,-74.552992],[-127.899648,-74.548598],[-127.895823,-74.541925],[-127.895131,-74.534438],[-127.898508,-74.527602],[-127.910634,-74.52158],[-127.943267,-74.514255],[-127.954172,-74.504978],[-127.977651,-74.499282],[-127.98884,-74.494887],[-127.992909,-74.491143],[-127.995229,-74.487726],[-128.018707,-74.482192],[-128.088246,-74.488539],[-128.10912,-74.477797],[-128.102203,-74.477146],[-128.073313,-74.46738],[-128.065907,-74.462335],[-128.069244,-74.450453],[-128.083241,-74.440688],[-128.09968,-74.432712],[-128.110707,-74.425551],[-128.108388,-74.421808],[-128.10143,-74.417657],[-128.098744,-74.412042],[-128.108998,-74.404474],[-128.139272,-74.402032],[-128.132558,-74.393976],[-128.132883,-74.388442],[-128.148752,-74.367364],[-128.155426,-74.350356],[-128.159535,-74.344415],[-128.182485,-74.323989],[-128.189198,-74.316095],[-128.175404,-74.305108],[-128.137847,-74.303481],[-127.758046,-74.342706],[-127.504018,-74.404718]]],[[[-117.282135,-74.377374],[-117.338694,-74.377537],[-117.395579,-74.366143],[-117.361236,-74.32879],[-117.311513,-74.309259],[-117.025054,-74.280938],[-116.993967,-74.282973],[-116.968129,-74.291925],[-117.06607,-74.330255],[-117.168528,-74.356378],[-117.282135,-74.377374]]],[[[-132.144032,-74.167576],[-132.174672,-74.17311],[-132.234975,-74.167087],[-132.274403,-74.157647],[-132.295155,-74.147882],[-132.300526,-74.134942],[-132.276926,-74.129815],[-132.228668,-74.125909],[-132.184885,-74.129327],[-132.139027,-74.140802],[-132.121897,-74.149591],[-132.144032,-74.167576]]],[[[-116.649648,-74.065606],[-116.504262,-74.081964],[-116.485748,-74.081476],[-116.522125,-74.105401],[-116.599355,-74.141778],[-116.785064,-74.174249],[-117.196401,-74.200291],[-117.297231,-74.184177],[-117.332183,-74.174412],[-117.373362,-74.157892],[-117.400258,-74.132501],[-117.39273,-74.096287],[-117.371083,-74.079767],[-116.887237,-73.973525],[-116.403391,-73.867283],[-116.315175,-73.864841],[-116.140696,-73.90252],[-116.19811,-73.938409],[-116.33495,-73.973565],[-116.490305,-74.033787],[-116.619252,-74.055922],[-116.649648,-74.065606]]],[[[-119.500071,-74.106622],[-119.695709,-74.125584],[-119.821034,-74.120782],[-119.88915,-74.111912],[-119.922922,-74.101332],[-119.929555,-74.084649],[-119.911488,-74.070977],[-119.886586,-74.065037],[-119.837026,-74.059503],[-119.837392,-74.057224],[-119.83552,-74.051446],[-119.830719,-74.041436],[-119.827219,-74.038344],[-119.818674,-74.034356],[-119.801503,-74.028741],[-119.788238,-74.0263],[-119.696604,-74.02044],[-119.664215,-74.014581],[-119.636098,-74.001235],[-119.647857,-73.989353],[-119.665679,-73.979262],[-119.761057,-73.947198],[-119.776682,-73.939223],[-119.783518,-73.929864],[-119.790679,-73.906671],[-119.797475,-73.896661],[-119.811635,-73.887953],[-119.858144,-73.87656],[-119.835764,-73.869073],[-119.789052,-73.861993],[-119.76769,-73.85117],[-119.889394,-73.833103],[-119.903554,-73.824965],[-119.698476,-73.818292],[-119.580881,-73.78631],[-119.494944,-73.772556],[-119.123402,-73.780857],[-118.974436,-73.804864],[-118.914133,-73.827407],[-118.905426,-73.832778],[-118.899729,-73.839451],[-118.898061,-73.848077],[-118.901926,-73.864841],[-118.900787,-73.873224],[-118.895172,-73.879815],[-118.887441,-73.882582],[-118.870839,-73.885675],[-118.947865,-73.921563],[-118.96349,-73.930922],[-118.963287,-73.937107],[-118.945668,-73.949884],[-118.972483,-73.968683],[-119.003774,-73.983575],[-119.223134,-74.044122],[-119.431386,-74.067315],[-119.447581,-74.072361],[-119.458608,-74.080662],[-119.468495,-74.090265],[-119.481068,-74.099705],[-119.500071,-74.106622]]],[[[-121.142879,-73.750095],[-120.686431,-73.767267],[-120.540151,-73.753351],[-120.429067,-73.772556],[-120.375803,-73.796482],[-120.378041,-73.830987],[-120.394602,-73.840916],[-120.41511,-73.846856],[-120.695709,-73.868097],[-120.727162,-73.878839],[-120.735178,-73.87949],[-120.647369,-73.896742],[-120.285715,-73.917413],[-120.26122,-73.92783],[-120.267568,-73.930108],[-120.290517,-73.946384],[-120.295888,-73.952325],[-120.258453,-73.958754],[-120.240793,-73.966729],[-120.237294,-73.981541],[-120.243642,-73.98919],[-120.254262,-73.995375],[-120.275543,-74.003188],[-120.63978,-74.075779],[-121.004018,-74.14837],[-121.027211,-74.155857],[-121.047109,-74.167087],[-121.054067,-74.17669],[-121.051869,-74.194431],[-121.05724,-74.203383],[-121.038645,-74.216485],[-121.033599,-74.223077],[-121.039662,-74.230401],[-121.04955,-74.233087],[-121.074452,-74.23268],[-121.085439,-74.234633],[-121.08019,-74.244806],[-121.057729,-74.256768],[-121.049428,-74.265558],[-121.06017,-74.271173],[-121.071889,-74.275567],[-121.058827,-74.283624],[-120.970041,-74.29811],[-120.948964,-74.307387],[-120.944244,-74.308689],[-121.099029,-74.348077],[-121.480512,-74.369806],[-121.861996,-74.391534],[-122.243479,-74.413263],[-122.460683,-74.379164],[-122.572092,-74.386489],[-122.626373,-74.382094],[-122.687327,-74.36533],[-122.903798,-74.337009],[-122.936431,-74.325616],[-122.988759,-74.297784],[-123.011098,-74.278416],[-123.005116,-74.263442],[-123.028188,-74.248305],[-122.994537,-74.234633],[-122.955149,-74.228774],[-122.762196,-74.226251],[-122.729156,-74.215753],[-122.736195,-74.207452],[-122.746571,-74.203709],[-122.769399,-74.20086],[-122.796946,-74.193292],[-122.80956,-74.1867],[-122.830881,-74.167087],[-122.939565,-74.140232],[-122.94636,-74.135186],[-122.944814,-74.128676],[-122.945709,-74.114679],[-122.945302,-74.110284],[-122.924184,-74.091567],[-122.909901,-74.087172],[-122.894683,-74.085707],[-122.864369,-74.086521],[-122.820465,-74.079278],[-122.815256,-74.075372],[-122.817535,-74.063735],[-122.804026,-74.058526],[-122.756744,-74.056899],[-122.749013,-74.055597],[-122.744293,-74.05169],[-122.74474,-74.046075],[-122.752024,-74.033461],[-122.752838,-74.026137],[-122.751047,-74.023696],[-122.744456,-74.02044],[-122.742502,-74.018813],[-122.742421,-74.016209],[-122.743031,-74.012302],[-122.744049,-74.008966],[-122.745107,-74.008233],[-122.741078,-74.003595],[-122.736562,-74.000177],[-122.731068,-73.997735],[-122.607655,-73.964288],[-122.552561,-73.961602],[-122.349843,-73.924981],[-122.331695,-73.916599],[-122.327382,-73.915704],[-122.364613,-73.907403],[-122.43635,-73.899672],[-122.591298,-73.907322],[-122.934071,-73.879327],[-122.943593,-73.875909],[-122.950185,-73.869806],[-122.953603,-73.863214],[-122.95637,-73.856052],[-122.960927,-73.848321],[-122.972239,-73.839776],[-122.986969,-73.834893],[-123.016957,-73.830824],[-123.349273,-73.848403],[-123.349233,-73.845392],[-123.349762,-73.8388],[-123.349517,-73.836114],[-123.33727,-73.831231],[-123.248891,-73.823337],[-123.237375,-73.820245],[-123.230784,-73.815118],[-123.234242,-73.804946],[-123.248606,-73.796563],[-123.276926,-73.78574],[-123.289133,-73.774509],[-123.286773,-73.76393],[-123.27538,-73.753839],[-123.193023,-73.706801],[-123.120229,-73.682794],[-123.065582,-73.675388],[-122.668975,-73.678806],[-122.272369,-73.682224],[-122.055776,-73.715753],[-121.599327,-73.732924],[-121.142879,-73.750095]]],[[[-20.669016,-74.080662],[-20.68106,-74.092869],[-20.69286,-74.101983],[-20.661733,-74.128513],[-20.609527,-74.192641],[-20.579905,-74.220961],[-20.425649,-74.309015],[-20.399485,-74.33172],[-20.378651,-74.360772],[-20.366689,-74.392999],[-20.366567,-74.425388],[-20.36913,-74.433689],[-20.372711,-74.441664],[-20.377675,-74.449395],[-20.403676,-74.476332],[-20.414784,-74.483819],[-20.428456,-74.48919],[-20.478098,-74.498712],[-20.528554,-74.502618],[-20.80663,-74.475193],[-20.843007,-74.462823],[-20.865712,-74.43906],[-20.867014,-74.431573],[-20.86498,-74.418064],[-20.865712,-74.410333],[-20.869618,-74.401625],[-20.887441,-74.375258],[-20.959828,-74.238539],[-20.981191,-74.211033],[-21.011952,-74.187188],[-21.062652,-74.163181],[-21.122426,-74.142836],[-21.299469,-74.10589],[-21.71345,-74.088474],[-22.021148,-74.114028],[-22.040151,-74.105564],[-21.893951,-74.041681],[-21.615,-74.022678],[-21.336049,-74.003676],[-21.234853,-73.980645],[-21.145375,-73.950128],[-21.069569,-73.913018],[-21.009511,-73.870538],[-21.010732,-73.825942],[-20.940907,-73.751072],[-20.924387,-73.70436],[-20.89037,-73.678969],[-20.853586,-73.660089],[-20.814198,-73.646417],[-20.648793,-73.619399],[-20.640736,-73.615818],[-20.637603,-73.61004],[-20.635325,-73.600844],[-20.63561,-73.592055],[-20.640248,-73.587498],[-20.611155,-73.594659],[-20.582875,-73.605727],[-20.55663,-73.620782],[-20.533111,-73.639581],[-20.515859,-73.659763],[-20.509185,-73.677667],[-20.512685,-73.695571],[-20.525461,-73.715753],[-20.535024,-73.739516],[-20.528188,-73.75921],[-20.495839,-73.793715],[-20.543202,-73.818943],[-20.566274,-73.836033],[-20.583119,-73.854099],[-20.584462,-73.865167],[-20.578725,-73.876072],[-20.575836,-73.887465],[-20.599924,-73.917657],[-20.600087,-73.934177],[-20.59435,-73.951349],[-20.591217,-73.971287],[-20.598622,-73.990492],[-20.614329,-74.000258],[-20.632476,-74.007582],[-20.647369,-74.019464],[-20.650787,-74.027765],[-20.65099,-74.045099],[-20.652252,-74.053888],[-20.658762,-74.067153],[-20.669016,-74.080662]]],[[[-73.773427,-73.393324],[-73.787587,-73.396417],[-73.795033,-73.396091],[-73.821929,-73.391697],[-73.823842,-73.387465],[-73.803578,-73.372491],[-73.779368,-73.359145],[-73.755238,-73.355645],[-73.735097,-73.37005],[-73.746165,-73.379083],[-73.759267,-73.387302],[-73.773427,-73.393324]]],[[[169.838145,-73.612237],[169.666189,-73.631036],[169.649425,-73.629083],[169.651215,-73.616469],[169.65089,-73.60589],[169.646495,-73.596856],[169.636404,-73.588637],[169.622813,-73.582778],[169.608165,-73.579034],[169.506847,-73.567478],[169.458751,-73.554946],[169.542003,-73.497003],[169.666759,-73.430352],[169.677501,-73.421808],[169.651134,-73.407159],[169.637055,-73.39544],[169.636974,-73.385512],[169.670584,-73.364353],[169.672211,-73.341404],[169.705251,-73.325779],[169.751638,-73.320082],[169.793712,-73.327244],[169.813731,-73.348565],[169.814708,-73.375665],[169.819184,-73.400811],[169.850271,-73.416111],[169.861501,-73.441583],[169.895763,-73.471287],[169.961681,-73.514418],[169.943533,-73.531915],[169.917979,-73.543878],[169.858409,-73.563084],[169.866466,-73.565362],[169.869802,-73.576267],[169.869314,-73.589288],[169.865977,-73.59824],[169.854015,-73.606866],[169.838145,-73.612237]]],[[[-126.084381,-73.304132],[-126.002594,-73.351739],[-125.942494,-73.375909],[-125.599273,-73.429376],[-125.565785,-73.44378],[-125.571441,-73.461196],[-125.598704,-73.479099],[-125.629709,-73.494561],[-125.625722,-73.503188],[-125.606068,-73.517267],[-125.521799,-73.560805],[-125.46996,-73.578871],[-125.246327,-73.610528],[-125.225982,-73.621677],[-125.212799,-73.639825],[-125.210194,-73.660577],[-125.22175,-73.679946],[-125.243479,-73.692153],[-125.270009,-73.698826],[-125.730784,-73.716404],[-125.825836,-73.703709],[-125.878041,-73.704767],[-125.912262,-73.723403],[-125.907135,-73.75506],[-125.865305,-73.78102],[-125.776438,-73.810317],[-125.683502,-73.826104],[-125.589426,-73.823907],[-125.370025,-73.791762],[-125.260569,-73.791925],[-125.239858,-73.797052],[-125.203481,-73.814142],[-125.183827,-73.820571],[-125.126576,-73.82464],[-125.082102,-73.832778],[-125.060129,-73.84295],[-125.0572,-73.858331],[-125.062896,-73.861423],[-125.090077,-73.865411],[-125.070058,-73.876072],[-125.043284,-73.880955],[-124.992421,-73.882257],[-124.926096,-73.870212],[-124.912953,-73.869887],[-124.929921,-73.859633],[-124.93517,-73.854262],[-124.939605,-73.845147],[-124.935943,-73.832452],[-124.935414,-73.828546],[-124.937489,-73.82586],[-124.948842,-73.814386],[-124.90274,-73.795505],[-124.758168,-73.774835],[-124.629506,-73.730727],[-124.579579,-73.724379],[-124.534291,-73.727634],[-124.515777,-73.736586],[-124.508453,-73.753188],[-124.112172,-73.832696],[-124.096262,-73.84295],[-124.060414,-73.847345],[-124.027455,-73.855239],[-124.019928,-73.875746],[-124.036529,-73.889581],[-124.208811,-73.93434],[-124.177073,-73.960626],[-124.132192,-73.97617],[-123.93106,-74.002699],[-123.93932,-74.010512],[-123.972524,-74.023858],[-123.949045,-74.024021],[-123.894643,-74.031183],[-123.872955,-74.038832],[-123.866078,-74.044122],[-123.85558,-74.05641],[-123.848866,-74.061456],[-123.839508,-74.064874],[-123.754384,-74.072524],[-123.777008,-74.087579],[-123.776438,-74.089939],[-123.777333,-74.096612],[-123.779612,-74.104262],[-123.78303,-74.109633],[-123.787709,-74.110772],[-123.808746,-74.110284],[-123.837148,-74.114435],[-123.85204,-74.119806],[-123.860219,-74.128513],[-123.859242,-74.137302],[-123.852935,-74.142673],[-123.845815,-74.146661],[-123.842152,-74.151625],[-123.848297,-74.163995],[-123.864329,-74.172052],[-123.883534,-74.176528],[-123.899281,-74.178155],[-123.806264,-74.21502],[-123.833485,-74.231215],[-123.865102,-74.244561],[-123.928293,-74.261814],[-124.007436,-74.263442],[-124.244985,-74.214776],[-124.514617,-74.220392],[-124.78425,-74.226007],[-125.20344,-74.163018],[-125.239247,-74.151625],[-125.237294,-74.151056],[-125.236806,-74.150567],[-125.237782,-74.15016],[-125.240224,-74.150079],[-125.109283,-74.122817],[-125.414093,-74.081557],[-125.718902,-74.040297],[-125.749135,-74.024672],[-125.753245,-74.018487],[-125.754547,-74.00628],[-125.758127,-74.000665],[-125.769521,-73.994561],[-125.79894,-73.988214],[-125.811391,-73.983168],[-125.805043,-73.981866],[-125.79898,-73.979669],[-125.793528,-73.976658],[-125.78893,-73.972914],[-125.812734,-73.966567],[-125.927846,-73.956801],[-125.938344,-73.952895],[-125.96642,-73.936944],[-126.011342,-73.921319],[-126.475453,-73.842218],[-126.451772,-73.834893],[-126.421783,-73.821547],[-126.401194,-73.802504],[-126.405507,-73.778416],[-126.429107,-73.767348],[-126.496165,-73.757501],[-126.514638,-73.742608],[-126.51183,-73.730645],[-126.49885,-73.723891],[-126.471995,-73.715997],[-126.46349,-73.705662],[-126.46817,-73.700291],[-126.561106,-73.684666],[-126.550608,-73.673272],[-126.546539,-73.670343],[-126.725168,-73.665216],[-126.835439,-73.646173],[-126.87267,-73.646742],[-126.913238,-73.654392],[-126.952138,-73.667657],[-126.984242,-73.685479],[-126.954661,-73.719903],[-126.952545,-73.726658],[-127.005238,-73.740411],[-127.2294,-73.73268],[-127.25121,-73.728936],[-127.262115,-73.724542],[-127.26887,-73.717869],[-127.268666,-73.707696],[-127.260569,-73.678643],[-127.26122,-73.665623],[-127.254262,-73.644138],[-127.225087,-73.626153],[-127.166005,-73.602634],[-127.18814,-73.594496],[-127.36734,-73.562758],[-127.422109,-73.562758],[-127.450551,-73.559828],[-127.473175,-73.549574],[-127.438832,-73.54225],[-127.418202,-73.534601],[-127.415191,-73.525567],[-127.420806,-73.517673],[-127.421295,-73.509861],[-127.420277,-73.501886],[-127.421376,-73.493259],[-127.42516,-73.485935],[-127.429433,-73.482843],[-127.443227,-73.478448],[-127.471832,-73.462335],[-127.48648,-73.451267],[-127.494944,-73.440118],[-127.495432,-73.42962],[-127.489125,-73.424412],[-127.426096,-73.398533],[-127.374094,-73.357192],[-127.303212,-73.318129],[-127.226389,-73.292169],[-127.148997,-73.277276],[-127.107004,-73.277602],[-127.074574,-73.290704],[-127.084584,-73.295343],[-127.105133,-73.301528],[-127.114003,-73.305597],[-127.029897,-73.309259],[-126.778533,-73.288792],[-126.52717,-73.268324],[-126.104075,-73.296157],[-126.084381,-73.304132]]],[[[-71.854482,-73.245538],[-71.920277,-73.258559],[-71.987375,-73.258396],[-72.049062,-73.243748],[-72.096181,-73.214532],[-72.080922,-73.194594],[-72.032541,-73.183689],[-71.980824,-73.181085],[-71.88565,-73.188897],[-71.840443,-73.200128],[-71.796539,-73.219822],[-71.854482,-73.245538]]],[[[-73.602406,-73.109145],[-73.538645,-73.130141],[-73.522532,-73.130141],[-73.673573,-73.204278],[-73.692128,-73.216974],[-73.705678,-73.236505],[-73.701527,-73.238539],[-73.694488,-73.248224],[-73.688466,-73.261163],[-73.687734,-73.273045],[-73.695302,-73.28281],[-73.708363,-73.291599],[-73.76061,-73.314386],[-73.838938,-73.334649],[-73.891672,-73.365492],[-73.91039,-73.373142],[-73.933909,-73.373712],[-73.957346,-73.369236],[-73.979807,-73.368341],[-74.000559,-73.380304],[-73.999582,-73.397882],[-74.014719,-73.406345],[-74.035878,-73.406996],[-74.05309,-73.401544],[-74.062001,-73.39186],[-74.066803,-73.379164],[-74.067291,-73.365655],[-74.06314,-73.353204],[-74.145619,-73.3235],[-74.159169,-73.308038],[-74.157948,-73.300551],[-74.15453,-73.295505],[-74.151438,-73.289321],[-74.150868,-73.279229],[-74.129994,-73.272068],[-74.002919,-73.25156],[-74.017486,-73.248142],[-74.047841,-73.226251],[-74.063588,-73.22031],[-74.045766,-73.217706],[-73.990102,-73.218032],[-73.911244,-73.205255],[-73.887318,-73.196466],[-73.874867,-73.189711],[-73.867909,-73.182224],[-73.866363,-73.168878],[-73.87328,-73.16253],[-73.885121,-73.157647],[-73.898305,-73.149184],[-73.88683,-73.12005],[-73.69815,-73.09881],[-73.650014,-73.101332],[-73.602406,-73.109145]]],[[[-104.630483,-73.211358],[-104.746938,-73.21852],[-104.859486,-73.20672],[-104.945668,-73.186212],[-104.998891,-73.164483],[-105.037668,-73.140395],[-105.098866,-73.086684],[-105.119537,-73.062595],[-105.140736,-73.020603],[-105.155385,-73.005304],[-105.061025,-72.954197],[-105.01415,-72.940525],[-104.958608,-72.942641],[-104.935699,-72.95086],[-104.881825,-72.989435],[-104.687123,-73.096449],[-104.687123,-73.096531],[-104.637603,-73.116469],[-104.591054,-73.129653],[-104.553944,-73.145766],[-104.532704,-73.174493],[-104.630483,-73.211358]]],[[[-89.478749,-72.975763],[-89.507721,-72.997166],[-89.555247,-73.050714],[-89.585072,-73.070408],[-89.63329,-73.083754],[-89.689117,-73.09059],[-89.796376,-73.09238],[-89.995676,-73.067641],[-90.132476,-73.094415],[-90.219146,-73.084242],[-90.295969,-73.049493],[-90.336293,-72.9874],[-90.28246,-72.941339],[-90.215688,-72.944513],[-90.093902,-72.986505],[-90.050852,-72.986261],[-90.005523,-72.976739],[-89.963368,-72.958266],[-89.929351,-72.931573],[-89.892445,-72.884617],[-89.892445,-72.884535],[-89.882069,-72.874119],[-89.869211,-72.865492],[-89.852162,-72.858819],[-89.829172,-72.854099],[-89.785512,-72.850274],[-89.571523,-72.86297],[-89.405629,-72.895685],[-89.330678,-72.927992],[-89.359364,-72.945977],[-89.478749,-72.975763]]],[[[-74.946401,-72.865411],[-74.846791,-72.866632],[-74.84675,-72.866632],[-74.503977,-72.882094],[-74.30956,-72.921075],[-74.218577,-72.990818],[-74.239898,-73.020115],[-74.386098,-73.102716],[-74.39509,-73.118259],[-74.405751,-73.152439],[-74.414703,-73.167657],[-74.432973,-73.181899],[-74.500234,-73.20794],[-74.508412,-73.252374],[-74.694692,-73.276544],[-74.758046,-73.303155],[-74.71703,-73.30934],[-74.591908,-73.30877],[-74.554596,-73.316664],[-74.532379,-73.33172],[-74.5301,-73.354913],[-74.552358,-73.387384],[-74.501943,-73.393243],[-74.474517,-73.401951],[-74.458567,-73.415297],[-74.441233,-73.43377],[-74.360911,-73.460382],[-74.381947,-73.480157],[-74.403228,-73.525323],[-74.418446,-73.548272],[-74.439565,-73.566664],[-74.465321,-73.58294],[-74.519399,-73.606052],[-74.593129,-73.614516],[-75.02028,-73.525215],[-75.447431,-73.435913],[-75.874582,-73.346612],[-76.030995,-73.283868],[-76.052113,-73.26214],[-76.114329,-73.17962],[-76.126129,-73.158787],[-76.103139,-73.122817],[-76.074127,-73.09881],[-76.039174,-73.084242],[-75.858225,-73.047621],[-75.748158,-73.057712],[-75.524526,-73.113377],[-75.416819,-73.106703],[-75.460927,-73.0735],[-75.433217,-73.054783],[-75.372792,-73.046319],[-75.096303,-73.055841],[-75.038197,-73.041436],[-75.039784,-73.039972],[-75.040028,-73.038995],[-75.03893,-73.038751],[-75.036448,-73.038995],[-75.211049,-73.005548],[-75.406728,-73.002537],[-75.501088,-72.989353],[-75.704416,-72.922784],[-75.761545,-72.896417],[-75.775746,-72.89365],[-75.696645,-72.878595],[-75.573232,-72.869561],[-75.555328,-72.871515],[-75.541086,-72.861423],[-75.447336,-72.828383],[-75.403879,-72.822035],[-75.295806,-72.819513],[-74.946401,-72.865411]]],[[[-93.813547,-72.926202],[-93.86205,-72.928155],[-94.000111,-72.919041],[-94.070383,-72.902765],[-94.128163,-72.872979],[-94.068349,-72.82586],[-93.9829,-72.819024],[-93.818227,-72.856378],[-93.773061,-72.873224],[-93.759267,-72.881117],[-93.750803,-72.888604],[-93.749989,-72.905532],[-93.773549,-72.918227],[-93.813547,-72.926202]]],[[[-97.831288,-72.716974],[-97.941233,-72.72503],[-98.050445,-72.714451],[-98.130767,-72.692315],[-98.042348,-72.662286],[-97.940256,-72.657403],[-97.748687,-72.683282],[-97.831288,-72.716974]]],[[[-90.918121,-72.833591],[-90.930531,-72.847914],[-90.905629,-72.838474],[-90.861073,-72.835626],[-90.785878,-72.840997],[-90.759185,-72.850681],[-90.739898,-72.864435],[-90.728261,-72.884454],[-90.724477,-72.912774],[-90.735341,-72.945408],[-90.761057,-72.980076],[-90.819488,-73.03631],[-90.917714,-73.101251],[-91.02538,-73.149835],[-91.2058,-73.194431],[-91.39037,-73.212823],[-91.506337,-73.197849],[-91.524648,-73.19256],[-91.486318,-73.124607],[-91.477528,-73.083754],[-91.476674,-73.073012],[-91.477935,-73.062107],[-91.465443,-73.034112],[-91.458079,-72.975356],[-91.449086,-72.951837],[-91.416168,-72.942153],[-91.386708,-72.929132],[-91.333404,-72.897556],[-91.528472,-72.783136],[-91.556223,-72.757257],[-91.620473,-72.669366],[-91.666249,-72.632501],[-91.686513,-72.609959],[-91.390045,-72.550063],[-91.044179,-72.543145],[-90.915191,-72.562188],[-90.863881,-72.579034],[-90.816396,-72.603448],[-90.779612,-72.636163],[-90.757965,-72.697442],[-90.787668,-72.744561],[-90.901601,-72.819757],[-90.918121,-72.833591]]],[[[-93.236318,-72.635512],[-93.274485,-72.636977],[-93.314687,-72.630466],[-93.353831,-72.618097],[-93.388783,-72.602472],[-93.359364,-72.579767],[-93.326812,-72.560235],[-93.276519,-72.545587],[-93.219106,-72.541762],[-93.161488,-72.547296],[-93.110585,-72.559828],[-93.129872,-72.592706],[-93.160797,-72.61419],[-93.197987,-72.627537],[-93.236318,-72.635512]]],[[[-60.827016,-72.584405],[-60.946685,-72.598077],[-60.968861,-72.591974],[-60.955556,-72.57171],[-60.917958,-72.545099],[-60.909291,-72.541111],[-60.840688,-72.546157],[-60.775136,-72.562433],[-60.798166,-72.576267],[-60.827016,-72.584405]]],[[[-94.852996,-72.655043],[-95.201243,-72.677341],[-95.274281,-72.651788],[-95.269276,-72.636],[-95.24413,-72.615655],[-95.197825,-72.588637],[-95.166168,-72.580987],[-94.810455,-72.534601],[-94.580881,-72.468927],[-94.55016,-72.465916],[-94.522084,-72.469415],[-94.502065,-72.479262],[-94.493804,-72.491469],[-94.491444,-72.522393],[-94.489003,-72.533787],[-94.486684,-72.539646],[-94.483266,-72.545587],[-94.409535,-72.597263],[-94.39981,-72.607354],[-94.50475,-72.632745],[-94.852996,-72.655043]]],[[[-16.102773,-72.687433],[-16.198842,-72.709242],[-16.296254,-72.707615],[-16.381581,-72.690037],[-16.441558,-72.663751],[-16.487538,-72.622328],[-16.517201,-72.570245],[-16.516347,-72.519138],[-16.470693,-72.480645],[-16.409576,-72.456638],[-16.390981,-72.453546],[-16.363515,-72.455255],[-16.338002,-72.460626],[-16.314036,-72.470473],[-16.291249,-72.485284],[-16.186147,-72.590509],[-16.131703,-72.632582],[-16.109853,-72.65838],[-16.102773,-72.687433]]],[[[-70.538482,-72.278253],[-70.601186,-72.280043],[-70.653554,-72.250746],[-70.608957,-72.231703],[-70.584462,-72.22503],[-70.550282,-72.221856],[-70.446523,-72.228123],[-70.417633,-72.238377],[-70.538482,-72.278253]]],[[[-60.12678,-72.252537],[-60.181386,-72.255792],[-60.23644,-72.238377],[-60.258453,-72.204034],[-60.238433,-72.177423],[-60.188059,-72.175958],[-60.134877,-72.193536],[-60.106557,-72.224054],[-60.12678,-72.252537]]],[[[68.769216,-72.113458],[68.778738,-72.116469],[68.778819,-72.116469],[68.784841,-72.118585],[68.804942,-72.128839],[68.840017,-72.155369],[68.854177,-72.17018],[68.862559,-72.193455],[68.852306,-72.212579],[68.831716,-72.22796],[68.809093,-72.239841],[68.742035,-72.264581],[68.451915,-72.314142],[68.417654,-72.312433],[68.394705,-72.297052],[68.449962,-72.249688],[68.604991,-72.171645],[68.62615,-72.149672],[68.631847,-72.122003],[68.647472,-72.109308],[68.684906,-72.096449],[68.725841,-72.088556],[68.751801,-72.090427],[68.755544,-72.094822],[68.758637,-72.105157],[68.760997,-72.108819],[68.764822,-72.111505],[68.769216,-72.113458]]],[[[-12.724965,-72.028009],[-12.659495,-72.059503],[-12.659413,-72.059503],[-12.565541,-72.101495],[-12.522694,-72.128351],[-12.489654,-72.167087],[-12.56664,-72.196384],[-12.653961,-72.199314],[-12.742299,-72.185154],[-12.877594,-72.143813],[-12.921051,-72.121189],[-12.951324,-72.09295],[-12.967356,-72.056329],[-12.897328,-72.00213],[-12.810211,-72.000665],[-12.724965,-72.028009]]],[[[69.787364,-72.055434],[69.768403,-72.060317],[69.759532,-72.060154],[69.733246,-72.056573],[69.726899,-72.05641],[69.749197,-72.041436],[69.702973,-71.988051],[69.682791,-71.97503],[69.698741,-71.967543],[69.722016,-71.952081],[69.725841,-71.9485],[69.727875,-71.943943],[69.72755,-71.941339],[69.725841,-71.933282],[69.724783,-71.931899],[69.753754,-71.916111],[69.762462,-71.909763],[69.76531,-71.905938],[69.766368,-71.903009],[69.768403,-71.899998],[69.774099,-71.89658],[69.793468,-71.891371],[69.817231,-71.889337],[69.862071,-71.890232],[69.92449,-71.908949],[69.913585,-71.930352],[69.899913,-71.948337],[69.806163,-72.024347],[69.796153,-72.042169],[69.798676,-72.043064],[69.800955,-72.044041],[69.802989,-72.045343],[69.804861,-72.047052],[69.796641,-72.051935],[69.787364,-72.055434]]],[[[-98.281484,-72.079197],[-98.308746,-72.128676],[-98.31843,-72.136814],[-98.35261,-72.156427],[-98.297841,-72.155369],[-98.273549,-72.149509],[-98.162506,-72.093194],[-98.132395,-72.083429],[-98.069081,-72.07822],[-97.993642,-72.085056],[-97.852528,-72.116957],[-97.869781,-72.122491],[-97.951975,-72.163995],[-97.825592,-72.161798],[-97.764312,-72.142511],[-97.753733,-72.094008],[-97.773061,-72.071384],[-97.799875,-72.06463],[-97.828725,-72.0617],[-97.854237,-72.050063],[-97.863922,-72.02044],[-97.856028,-71.980727],[-97.840891,-71.946466],[-97.828847,-71.933364],[-97.892079,-71.91074],[-97.843495,-71.89544],[-97.739735,-71.883396],[-97.602773,-71.888116],[-97.492543,-71.909275],[-97.47232,-71.907973],[-97.62267,-71.950453],[-97.407867,-71.986586],[-97.36498,-71.979913],[-97.389638,-72.014255],[-97.412506,-72.034601],[-97.441396,-72.047133],[-97.590932,-72.08408],[-97.618316,-72.096124],[-97.588124,-72.106215],[-97.568105,-72.120864],[-97.530588,-72.159438],[-97.517201,-72.168552],[-97.473256,-72.191176],[-97.394114,-72.208429],[-97.305653,-72.176853],[-97.223134,-72.120294],[-97.16161,-72.063246],[-97.137074,-72.032892],[-97.115834,-71.998956],[-97.084462,-71.927667],[-97.048207,-71.876397],[-96.990102,-71.847345],[-96.922109,-71.834893],[-96.856516,-71.833591],[-96.824941,-71.838067],[-96.736236,-71.860935],[-96.360463,-71.835056],[-96.282338,-71.842543],[-96.208811,-71.86061],[-96.065338,-71.913832],[-96.095815,-71.969659],[-96.115061,-71.995782],[-96.139475,-72.013604],[-96.168691,-72.021661],[-96.200266,-72.023696],[-96.422841,-72.004571],[-96.509592,-72.013767],[-96.407297,-72.055108],[-96.382151,-72.056899],[-96.440053,-72.078383],[-96.498931,-72.091974],[-96.620107,-72.106622],[-96.999989,-72.214288],[-96.916005,-72.249119],[-96.820709,-72.265395],[-96.723785,-72.264093],[-96.441274,-72.193455],[-95.953277,-72.143813],[-95.737172,-72.056329],[-95.658111,-72.047621],[-95.59317,-72.076837],[-95.689361,-72.093357],[-95.719106,-72.103285],[-95.717152,-72.102797],[-95.715932,-72.102797],[-95.715484,-72.103611],[-95.715932,-72.104587],[-95.502919,-72.151625],[-95.541005,-72.176853],[-95.589833,-72.194431],[-95.640981,-72.206638],[-95.936289,-72.220392],[-96.231597,-72.234145],[-96.336171,-72.255141],[-96.377838,-72.269708],[-96.415761,-72.289809],[-96.413726,-72.289321],[-96.412465,-72.289321],[-96.412017,-72.289809],[-96.412424,-72.291111],[-96.349192,-72.295668],[-96.038808,-72.257501],[-95.976186,-72.25921],[-95.921986,-72.277439],[-95.863271,-72.317804],[-95.83849,-72.326837],[-95.810374,-72.33172],[-95.753285,-72.33294],[-95.555653,-72.312677],[-95.499216,-72.315606],[-95.499176,-72.315606],[-95.428863,-72.334242],[-95.437408,-72.355239],[-95.480946,-72.378025],[-95.515492,-72.402032],[-95.755279,-72.437758],[-96.022572,-72.436456],[-96.096791,-72.461114],[-96.051747,-72.455662],[-95.990631,-72.47031],[-95.944407,-72.50156],[-95.943918,-72.546157],[-95.987945,-72.574314],[-96.054758,-72.583673],[-96.329539,-72.572239],[-96.604319,-72.560805],[-96.654693,-72.545343],[-96.68932,-72.527114],[-96.714833,-72.517022],[-96.73998,-72.519789],[-96.773346,-72.54046],[-96.787506,-72.566502],[-96.855946,-72.577813],[-96.936106,-72.580173],[-97.126047,-72.561212],[-97.168813,-72.546645],[-97.193512,-72.532647],[-97.211903,-72.519464],[-97.231272,-72.509942],[-97.259023,-72.507094],[-97.599355,-72.557224],[-98.089752,-72.565037],[-98.580149,-72.572849],[-98.673004,-72.542169],[-98.624379,-72.529718],[-98.591786,-72.511],[-98.535471,-72.464125],[-98.966013,-72.481174],[-99.396555,-72.498224],[-99.468088,-72.461358],[-99.401275,-72.42783],[-99.251047,-72.409763],[-99.186431,-72.375421],[-99.475535,-72.374444],[-99.764638,-72.373468],[-99.891957,-72.332696],[-99.980377,-72.321222],[-100.140492,-72.279962],[-100.205312,-72.271254],[-100.328033,-72.286554],[-100.377187,-72.284845],[-100.415761,-72.259535],[-100.813588,-72.235935],[-101.211415,-72.212335],[-101.609242,-72.188735],[-101.688344,-72.166599],[-101.725209,-72.163018],[-101.899322,-72.192478],[-101.967275,-72.193292],[-102.182607,-72.164972],[-102.292226,-72.126723],[-102.32372,-72.06406],[-102.304026,-72.03574],[-102.27359,-72.017836],[-102.087026,-71.973891],[-101.674611,-71.95025],[-101.262196,-71.926609],[-100.849782,-71.902968],[-100.437367,-71.879327],[-100.239898,-71.825779],[-100.132558,-71.821873],[-100.028798,-71.842706],[-99.944407,-71.893813],[-99.993276,-71.932794],[-100.053131,-71.943292],[-100.321645,-71.954685],[-100.391469,-71.967462],[-100.451975,-71.998305],[-100.02359,-71.972752],[-99.945383,-71.978611],[-99.868316,-71.99627],[-99.902699,-72.030043],[-99.895375,-72.046075],[-99.861155,-72.049412],[-99.749501,-72.040297],[-99.7176,-72.032322],[-99.691396,-72.014907],[-99.631093,-71.955255],[-99.596832,-71.938735],[-99.548004,-71.930759],[-99.499013,-71.930434],[-99.401357,-71.943292],[-99.204701,-71.997491],[-99.041371,-72.071547],[-99.000396,-72.083917],[-98.822825,-72.091404],[-98.735951,-72.10589],[-98.685536,-72.107354],[-98.634023,-72.098077],[-98.748769,-72.019301],[-98.785471,-72.002374],[-98.959706,-71.969822],[-99.104075,-71.921645],[-99.152577,-71.916192],[-99.126698,-71.888279],[-99.089711,-71.871189],[-99.011383,-71.853123],[-98.970286,-71.838637],[-98.880523,-71.774184],[-98.856272,-71.765232],[-98.828114,-71.760512],[-98.531646,-71.756768],[-98.257029,-71.808201],[-97.982411,-71.859633],[-98.040191,-71.915623],[-98.115224,-71.946547],[-98.290883,-71.974216],[-98.266469,-72.008071],[-98.252838,-72.016534],[-98.243235,-72.025486],[-98.228627,-72.045017],[-98.242502,-72.052341],[-98.265859,-72.070489],[-98.281484,-72.079197]]],[[[-3.228098,-71.05283],[-3.179067,-71.110121],[-2.986399,-71.18434],[-2.944569,-71.22503],[-3.03661,-71.2374],[-3.132721,-71.238539],[-3.224477,-71.228936],[-3.304189,-71.208591],[-3.337717,-71.192966],[-3.370839,-71.172052],[-3.398346,-71.149998],[-3.415028,-71.129978],[-3.400706,-71.122654],[-3.389556,-71.114516],[-3.370351,-71.093845],[-3.372385,-71.094334],[-3.373525,-71.094008],[-3.373891,-71.093194],[-3.37328,-71.091567],[-3.409291,-71.066502],[-3.368031,-71.052911],[-3.293202,-71.048923],[-3.228098,-71.05283]]],[[[-60.53067,-71.051039],[-60.617421,-71.063084],[-60.756581,-71.049981],[-60.889475,-71.018813],[-60.957346,-70.977309],[-60.914296,-70.941583],[-60.813344,-70.917087],[-60.691762,-70.909438],[-60.587026,-70.925063],[-60.538889,-70.954278],[-60.516591,-70.991632],[-60.515452,-71.027439],[-60.53067,-71.051039]]],[[[-2.899424,-70.682875],[-2.618072,-70.697686],[-2.55956,-70.710626],[-2.504628,-70.731541],[-2.568267,-70.757582],[-2.734364,-70.792413],[-2.717681,-70.820082],[-2.611562,-70.840916],[-2.298451,-70.792739],[-2.126943,-70.810724],[-2.080719,-70.825616],[-2.091298,-70.830255],[-2.131825,-70.866795],[-2.147328,-70.874119],[-2.196604,-70.887791],[-2.215932,-70.896254],[-2.234039,-70.906996],[-2.250885,-70.919692],[-2.265736,-70.934503],[-2.290598,-70.968438],[-2.297963,-70.988539],[-2.293121,-71.005141],[-2.303863,-71.016371],[-2.56432,-71.132582],[-2.734486,-71.170994],[-2.799957,-71.167739],[-2.817738,-71.156183],[-2.822336,-71.126642],[-2.843617,-71.112074],[-2.839101,-71.094415],[-2.840891,-71.080011],[-2.848785,-71.06699],[-2.862172,-71.053481],[-2.843617,-71.055597],[-2.818023,-71.045017],[-2.775706,-71.020115],[-2.752756,-71.011326],[-2.690826,-70.99505],[-2.667307,-70.993748],[-2.984975,-70.935805],[-2.963287,-70.933282],[-2.948394,-70.919366],[-2.942779,-70.899509],[-2.948598,-70.879083],[-2.964589,-70.86533],[-2.987294,-70.856052],[-3.011464,-70.849867],[-3.187734,-70.82464],[-3.440338,-70.751886],[-3.585561,-70.738377],[-3.571034,-70.692804],[-3.525706,-70.681573],[-3.410715,-70.692478],[-3.180776,-70.668064],[-2.899424,-70.682875]]],[[[2.145193,-70.650079],[2.115571,-70.675551],[2.054047,-70.673517],[1.989431,-70.654474],[1.95045,-70.629002],[1.951345,-70.623224],[1.953136,-70.617852],[1.953868,-70.611912],[1.951345,-70.604262],[1.99936,-70.597426],[2.065278,-70.601007],[2.122813,-70.617608],[2.145193,-70.650079]]],[[[-73.883901,-70.570571],[-73.617909,-70.66961],[-73.547475,-70.716241],[-73.559234,-70.749688],[-73.618886,-70.774998],[-74.009694,-70.875136],[-74.400502,-70.975274],[-74.656585,-70.999322],[-74.912668,-71.02337],[-75.318593,-71.061537],[-75.724517,-71.099705],[-76.130442,-71.137872],[-76.34557,-71.122979],[-76.405873,-71.107517],[-76.432688,-71.096124],[-76.450999,-71.084405],[-76.465566,-71.070733],[-76.532094,-70.973321],[-76.542551,-70.96559],[-76.469106,-70.919203],[-76.382069,-70.888279],[-76.108998,-70.83766],[-75.654408,-70.807143],[-75.199818,-70.776625],[-75.131581,-70.755629],[-75.077219,-70.727146],[-75.039296,-70.691176],[-75.032379,-70.670343],[-75.032786,-70.622003],[-75.029449,-70.608087],[-74.999745,-70.592869],[-74.954457,-70.584568],[-74.90392,-70.583754],[-74.858062,-70.591729],[-74.820872,-70.607029],[-74.674306,-70.702407],[-74.596099,-70.794122],[-74.567209,-70.792413],[-74.489084,-70.763116],[-74.469879,-70.751397],[-74.465159,-70.656834],[-74.483551,-70.593438],[-74.463368,-70.576837],[-74.389963,-70.575453],[-74.318837,-70.586847],[-74.248443,-70.606541],[-74.17512,-70.643243],[-74.156321,-70.649835],[-74.100697,-70.658624],[-74.148183,-70.594822],[-74.157541,-70.58587],[-74.130849,-70.565118],[-74.101552,-70.553318],[-74.069895,-70.548272],[-74.036122,-70.54811],[-73.883901,-70.570571]]],[[[-60.716542,-70.710626],[-60.812896,-70.714614],[-60.857533,-70.709161],[-60.885569,-70.700128],[-60.906809,-70.6867],[-60.982249,-70.620864],[-60.981109,-70.61004],[-60.975209,-70.596612],[-60.968251,-70.586114],[-60.963368,-70.583754],[-60.970937,-70.570896],[-60.973704,-70.55877],[-60.96939,-70.547621],[-60.955678,-70.537774],[-60.900461,-70.520766],[-60.834543,-70.512384],[-60.569976,-70.507257],[-60.504872,-70.517511],[-60.453359,-70.541274],[-60.447621,-70.55047],[-60.436757,-70.583591],[-60.435292,-70.596775],[-60.446889,-70.621759],[-60.469146,-70.639825],[-60.543528,-70.671157],[-60.716542,-70.710626]]],[[[-5.939849,-70.422621],[-5.978424,-70.465102],[-5.965972,-70.498468],[-5.884918,-70.549412],[-5.921702,-70.565037],[-6.119252,-70.612888],[-6.150054,-70.614841],[-6.174387,-70.606052],[-6.193105,-70.583429],[-6.190053,-70.578871],[-6.182729,-70.575453],[-6.179107,-70.571547],[-6.416249,-70.471612],[-6.453765,-70.444431],[-6.350819,-70.459568],[-6.295888,-70.460219],[-6.086903,-70.406345],[-6.012318,-70.403578],[-5.939849,-70.422621]]],[[[2.957856,-70.613458],[2.743663,-70.629327],[2.682384,-70.622979],[2.631602,-70.602716],[2.596039,-70.569513],[2.580821,-70.524347],[2.648448,-70.493748],[3.049815,-70.385431],[3.139171,-70.373956],[3.2199,-70.392348],[3.26238,-70.437595],[3.252615,-70.486749],[3.210948,-70.531345],[3.157888,-70.562758],[3.063243,-70.593438],[2.957856,-70.613458]]],[[[163.515636,-70.378188],[163.346202,-70.395278],[163.309581,-70.386407],[163.319347,-70.38421],[163.327159,-70.381524],[163.333995,-70.378188],[163.34018,-70.373956],[163.348888,-70.366957],[163.395681,-70.345392],[163.455333,-70.339125],[163.516287,-70.345961],[163.566661,-70.363946],[163.515636,-70.378188]]],[[[-3.130116,-70.531101],[-3.430409,-70.538507],[-3.476186,-70.53045],[-3.494537,-70.523858],[-3.509918,-70.514418],[-3.492502,-70.481052],[-3.461822,-70.458754],[-3.392486,-70.423761],[-3.296498,-70.349705],[-3.260487,-70.331231],[-3.144154,-70.300714],[-2.988596,-70.280532],[-2.833811,-70.281427],[-2.71939,-70.313897],[-2.696034,-70.343194],[-2.680572,-70.38836],[-2.676137,-70.435968],[-2.685048,-70.472345],[-2.711252,-70.497247],[-2.74706,-70.511814],[-2.829823,-70.523696],[-3.130116,-70.531101]]],[[[-71.667633,-70.295831],[-71.588368,-70.29811],[-71.500356,-70.276788],[-71.408762,-70.265558],[-71.318593,-70.298761],[-71.339345,-70.324395],[-71.370025,-70.352227],[-71.405588,-70.378025],[-71.534535,-70.436212],[-71.601633,-70.450779],[-71.641957,-70.452732],[-71.680898,-70.446954],[-71.711008,-70.429783],[-71.711049,-70.427423],[-71.710317,-70.424981],[-71.70995,-70.422296],[-71.71109,-70.419692],[-71.726226,-70.408624],[-71.743804,-70.399021],[-71.758941,-70.387302],[-71.766672,-70.369724],[-71.765981,-70.362563],[-71.761342,-70.351007],[-71.761627,-70.343194],[-71.76476,-70.336521],[-71.769846,-70.330824],[-71.816518,-70.295831],[-71.731679,-70.270115],[-71.682851,-70.264825],[-71.667633,-70.295831]]],[[[72.164561,-70.651056],[72.084483,-70.653985],[71.826915,-70.624933],[71.786957,-70.607843],[71.673595,-70.517185],[71.660492,-70.503106],[71.651378,-70.487481],[71.636892,-70.453058],[71.631358,-70.428643],[71.63087,-70.378839],[71.623302,-70.35475],[71.634288,-70.341241],[71.641775,-70.335707],[71.653819,-70.33115],[71.676117,-70.304376],[71.714692,-70.279067],[71.761241,-70.263604],[71.80836,-70.265883],[71.819102,-70.276788],[71.823416,-70.295017],[71.829845,-70.314386],[71.847911,-70.329034],[71.847504,-70.361749],[71.862071,-70.389418],[71.885997,-70.412286],[71.913259,-70.429864],[71.946544,-70.446059],[71.9817,-70.457696],[72.017751,-70.461684],[72.035411,-70.466078],[72.049327,-70.476658],[72.058279,-70.492446],[72.064626,-70.508477],[72.073009,-70.522719],[72.088145,-70.533136],[72.104747,-70.537042],[72.186209,-70.537693],[72.200857,-70.541192],[72.211192,-70.549493],[72.214041,-70.563246],[72.208669,-70.575128],[72.200857,-70.586358],[72.197032,-70.597914],[72.197439,-70.600356],[72.198009,-70.602716],[72.199067,-70.604913],[72.200369,-70.607029],[72.216807,-70.623793],[72.220225,-70.630466],[72.193614,-70.643813],[72.164561,-70.651056]]],[[[-70.70344,-70.334242],[-70.740102,-70.334405],[-70.776112,-70.327569],[-70.76891,-70.303481],[-70.764963,-70.282403],[-70.75886,-70.26393],[-70.746165,-70.24977],[-70.722279,-70.240818],[-70.69872,-70.238539],[-70.676178,-70.240818],[-70.654205,-70.246515],[-70.632436,-70.254978],[-70.641672,-70.261326],[-70.649281,-70.268487],[-70.653554,-70.276788],[-70.652496,-70.286879],[-70.648264,-70.293145],[-70.638905,-70.301365],[-70.638173,-70.306736],[-70.648346,-70.318617],[-70.667104,-70.326837],[-70.70344,-70.334242]]],[[[4.466807,-70.501235],[4.331391,-70.50449],[4.204845,-70.469496],[4.104666,-70.400811],[4.048839,-70.302992],[4.13266,-70.256036],[4.297211,-70.237237],[4.468761,-70.244561],[4.574392,-70.276137],[4.621755,-70.352716],[4.604747,-70.420587],[4.545584,-70.472589],[4.466807,-70.501235]]],[[[5.825857,-70.303969],[5.747325,-70.340916],[5.642914,-70.329522],[5.539887,-70.293145],[5.465587,-70.255304],[5.560069,-70.229262],[5.654633,-70.225681],[5.744802,-70.248793],[5.825857,-70.303969]]],[[[161.888031,-70.257257],[161.855724,-70.261163],[161.828787,-70.255141],[161.81186,-70.241469],[161.834483,-70.222101],[161.867686,-70.217462],[161.900076,-70.224542],[161.920421,-70.240655],[161.888031,-70.257257]]],[[[6.503673,-70.222589],[6.46811,-70.223321],[6.432465,-70.214532],[6.329112,-70.169203],[6.294607,-70.147638],[6.272716,-70.122735],[6.343272,-70.122979],[6.451671,-70.136977],[6.536469,-70.164972],[6.536469,-70.207208],[6.503673,-70.222589]]],[[[26.850434,-70.396417],[26.839854,-70.412042],[26.817882,-70.424086],[26.775727,-70.430597],[26.737641,-70.428155],[26.663422,-70.413181],[26.623302,-70.411228],[26.56544,-70.420099],[26.507823,-70.445408],[26.457774,-70.450128],[26.057302,-70.391046],[25.988048,-70.368259],[25.975352,-70.346612],[25.950206,-70.332615],[25.932384,-70.316664],[25.920258,-70.30047],[25.912283,-70.284926],[25.939626,-70.262953],[25.937673,-70.247817],[25.940929,-70.234552],[25.948904,-70.222589],[25.960297,-70.211114],[25.987315,-70.195001],[26.115082,-70.15309],[26.136567,-70.142999],[26.188162,-70.109796],[26.221934,-70.094415],[26.269216,-70.078871],[26.327403,-70.066583],[26.458263,-70.059991],[26.589692,-70.074802],[26.650157,-70.092706],[26.673106,-70.102634],[26.69158,-70.114353],[26.706065,-70.129653],[26.737478,-70.187188],[26.765636,-70.224298],[26.817231,-70.276544],[26.866954,-70.304783],[26.879893,-70.318943],[26.881684,-70.331313],[26.87672,-70.346449],[26.850434,-70.396417]]],[[[1.448904,-70.095392],[1.465017,-70.150486],[1.463227,-70.149835],[1.462169,-70.149998],[1.461762,-70.150486],[1.461762,-70.151544],[1.369884,-70.20322],[1.275727,-70.273858],[1.256847,-70.30283],[1.223481,-70.379164],[1.197765,-70.406427],[1.163829,-70.417087],[1.150727,-70.398045],[1.141612,-70.360935],[1.119314,-70.317478],[1.060395,-70.268731],[1.001638,-70.236586],[0.956798,-70.191664],[0.939708,-70.104913],[0.979503,-70.065606],[1.042491,-70.045994],[1.299571,-70.02337],[1.36085,-70.025079],[1.410981,-70.040216],[1.435395,-70.064386],[1.448904,-70.095392]]],[[[11.000824,-70.07643],[10.921886,-70.08294],[10.812022,-70.07586],[10.576182,-70.031508],[10.539806,-70.011489],[10.634613,-70.004571],[10.894216,-70.017836],[10.988048,-70.045994],[11.000824,-70.07643]]],[[[72.639903,-69.995701],[72.661306,-70.006524],[72.71811,-70.000746],[72.730154,-70.004815],[72.73113,-70.022556],[72.56072,-70.090265],[72.459321,-70.108657],[72.411957,-70.074802],[72.435557,-70.060479],[72.456065,-70.051853],[72.471934,-70.050877],[72.4817,-70.058852],[72.505544,-70.053155],[72.526622,-70.043634],[72.546153,-70.030857],[72.597992,-69.98797],[72.615977,-69.978285],[72.637055,-69.969822],[72.635916,-69.97796],[72.636078,-69.98504],[72.637462,-69.990899],[72.639903,-69.995701]]],[[[-61.176178,-69.981134],[-61.246693,-69.987074],[-61.288482,-69.984308],[-61.329661,-69.976495],[-61.369252,-69.962823],[-61.405995,-69.942804],[-61.39977,-69.905938],[-61.394358,-69.894708],[-61.384836,-69.883071],[-61.373402,-69.873305],[-61.360585,-69.86533],[-61.346832,-69.859145],[-61.309193,-69.851251],[-61.268219,-69.851983],[-61.190012,-69.867852],[-61.155019,-69.879978],[-61.138336,-69.888604],[-61.124176,-69.899835],[-61.115875,-69.909845],[-61.112945,-69.91546],[-61.111155,-69.921808],[-61.111643,-69.926365],[-61.115834,-69.934015],[-61.116567,-69.938165],[-61.114898,-69.944757],[-61.105377,-69.9638],[-61.176178,-69.981134]]],[[[-74.717926,-69.762953],[-74.717763,-69.803806],[-74.547922,-69.854913],[-74.535471,-69.861017],[-74.524159,-69.869806],[-74.504018,-69.890395],[-74.492909,-69.899591],[-74.476918,-69.908136],[-74.42691,-69.924981],[-74.414377,-69.931248],[-74.407135,-69.937677],[-74.402333,-69.947035],[-74.397084,-69.961847],[-74.408193,-69.962498],[-74.444488,-69.973891],[-74.573354,-69.986017],[-74.609446,-69.983494],[-74.627675,-69.984552],[-74.642445,-69.991876],[-74.649973,-70.005466],[-74.648305,-70.019952],[-74.640777,-70.033949],[-74.63093,-70.045994],[-74.619781,-70.054783],[-74.579254,-70.073337],[-74.589019,-70.091078],[-74.602162,-70.104262],[-74.618235,-70.114353],[-74.63683,-70.122247],[-74.711497,-70.141534],[-74.757314,-70.16546],[-74.776112,-70.170994],[-74.873158,-70.183526],[-75.178273,-70.158624],[-75.483388,-70.133722],[-75.48351,-70.133722],[-75.693105,-70.113051],[-75.785715,-70.079685],[-75.831695,-70.016371],[-75.803049,-69.993585],[-75.794911,-69.959893],[-75.778798,-69.923272],[-75.726226,-69.890883],[-75.604319,-69.864923],[-75.230133,-69.841729],[-75.239166,-69.836684],[-75.269887,-69.800958],[-75.284739,-69.793064],[-75.299387,-69.789321],[-75.388824,-69.792087],[-75.417551,-69.78631],[-75.435536,-69.768813],[-74.962799,-69.716892],[-74.787017,-69.736017],[-74.717926,-69.762953]]],[[[16.17156,-70.072931],[16.122244,-70.0735],[15.897227,-69.989353],[15.688243,-69.964044],[15.589122,-69.932061],[15.554942,-69.872735],[15.585704,-69.837091],[15.630707,-69.805108],[15.679454,-69.779718],[15.721853,-69.76393],[15.972179,-69.71795],[16.246837,-69.705987],[16.552094,-69.718032],[16.637218,-69.742852],[16.59018,-69.776625],[16.330414,-69.828871],[16.308442,-69.838637],[16.288748,-69.849867],[16.271739,-69.862481],[16.2588,-69.875746],[16.247244,-69.897882],[16.248871,-69.915216],[16.25408,-69.934747],[16.252208,-69.963637],[16.239594,-69.9874],[16.189626,-70.055108],[16.17156,-70.072931]]],[[[-71.949696,-69.682794],[-72.018463,-69.711033],[-72.010162,-69.715997],[-71.970367,-69.751723],[-72.002553,-69.751723],[-72.034657,-69.740655],[-72.10912,-69.701267],[-72.14151,-69.688409],[-72.158518,-69.684747],[-72.167592,-69.684015],[-72.178944,-69.684503],[-72.189931,-69.686456],[-72.197743,-69.690851],[-72.203114,-69.700453],[-72.199045,-69.706231],[-72.190989,-69.711358],[-72.184722,-69.719171],[-72.18517,-69.729262],[-72.193471,-69.733657],[-72.205312,-69.73447],[-72.488555,-69.692153],[-72.771799,-69.649835],[-72.79894,-69.639825],[-72.827219,-69.619806],[-72.83609,-69.611912],[-72.840077,-69.607354],[-72.843007,-69.602146],[-72.84553,-69.585626],[-72.878896,-69.568617],[-72.956776,-69.540297],[-72.981923,-69.51393],[-72.968007,-69.485447],[-72.929433,-69.460056],[-72.833404,-69.425551],[-72.747629,-69.413507],[-72.661855,-69.416111],[-72.398549,-69.465265],[-72.308705,-69.50213],[-72.29426,-69.520766],[-72.27123,-69.538751],[-72.235178,-69.560642],[-72.192616,-69.573337],[-72.181142,-69.580173],[-72.175038,-69.588556],[-72.167104,-69.606703],[-72.16039,-69.614516],[-72.151601,-69.619724],[-72.14037,-69.624119],[-72.008046,-69.649998],[-71.957346,-69.669854],[-71.949696,-69.682794]]],[[[-61.802317,-69.506606],[-61.796213,-69.527439],[-61.825063,-69.530694],[-61.886586,-69.524184],[-61.886342,-69.524347],[-61.919749,-69.537774],[-61.901235,-69.570489],[-61.887807,-69.588149],[-61.87621,-69.593357],[-61.88565,-69.59881],[-61.909901,-69.617608],[-61.937123,-69.630141],[-61.945058,-69.637465],[-61.925201,-69.658298],[-61.918935,-69.660903],[-61.941029,-69.664321],[-61.958404,-69.671319],[-61.966298,-69.684991],[-61.95995,-69.708429],[-61.978383,-69.719415],[-62.013336,-69.728774],[-62.055409,-69.733168],[-62.095123,-69.729669],[-62.128651,-69.71795],[-62.132069,-69.708266],[-62.123525,-69.699151],[-62.120839,-69.688897],[-62.137278,-69.669122],[-62.183583,-69.627211],[-62.199208,-69.606134],[-62.200185,-69.597263],[-62.194814,-69.591974],[-62.187123,-69.587986],[-62.181264,-69.582696],[-62.178822,-69.5735],[-62.182281,-69.568048],[-62.187856,-69.563409],[-62.191477,-69.55641],[-62.190907,-69.549005],[-62.185618,-69.535333],[-62.185699,-69.527114],[-62.198842,-69.508071],[-62.267974,-69.459893],[-62.311676,-69.415704],[-62.468658,-69.322524],[-62.510365,-69.274591],[-62.539296,-69.229181],[-62.579172,-69.189142],[-62.533518,-69.158787],[-62.463043,-69.146417],[-62.379547,-69.148614],[-62.192047,-69.186212],[-62.093251,-69.225681],[-62.049713,-69.252211],[-62.017974,-69.281996],[-61.859731,-69.359796],[-61.819407,-69.370294],[-61.830922,-69.383966],[-61.830393,-69.397068],[-61.821278,-69.409275],[-61.806956,-69.420668],[-61.776438,-69.436944],[-61.767201,-69.443048],[-61.755483,-69.454278],[-61.746246,-69.464532],[-61.738515,-69.475356],[-61.734202,-69.485528],[-61.735422,-69.493259],[-61.748606,-69.501235],[-61.767445,-69.504571],[-61.802317,-69.506606]]],[[[-70.02184,-69.191583],[-70.030995,-69.194268],[-70.044667,-69.192641],[-70.056711,-69.196954],[-70.057973,-69.201837],[-70.054514,-69.213637],[-70.054596,-69.219334],[-70.058217,-69.224867],[-70.063832,-69.22975],[-70.075917,-69.236993],[-70.091868,-69.242934],[-70.108998,-69.245294],[-70.126129,-69.243341],[-70.141957,-69.236993],[-70.104482,-69.269301],[-70.091705,-69.277439],[-70.094797,-69.280694],[-70.108266,-69.300958],[-70.077219,-69.291111],[-70.044097,-69.289158],[-69.8697,-69.304132],[-69.767161,-69.287286],[-69.739003,-69.293715],[-69.702789,-69.316095],[-69.563385,-69.4367],[-69.546213,-69.445571],[-69.537994,-69.45143],[-69.534901,-69.458917],[-69.537343,-69.463067],[-69.552154,-69.474786],[-69.513295,-69.506931],[-69.482004,-69.522719],[-69.475209,-69.528985],[-69.473704,-69.53867],[-69.476715,-69.547133],[-69.478383,-69.555759],[-69.472727,-69.565199],[-69.460032,-69.572931],[-69.413808,-69.585707],[-69.317128,-69.625909],[-69.328236,-69.646905],[-69.329742,-69.654718],[-69.328481,-69.661798],[-69.314768,-69.695082],[-69.313791,-69.701755],[-69.314768,-69.708266],[-69.31786,-69.712986],[-69.323883,-69.719415],[-69.33023,-69.724705],[-69.334381,-69.725193],[-69.322662,-69.74505],[-69.318186,-69.762872],[-69.321278,-69.77809],[-69.332102,-69.79046],[-69.331207,-69.805597],[-69.313873,-69.828383],[-69.279612,-69.862888],[-69.265452,-69.880548],[-69.263295,-69.893813],[-69.270579,-69.906834],[-69.284779,-69.92311],[-69.256459,-69.934828],[-69.243153,-69.942315],[-69.232777,-69.953546],[-69.228505,-69.964532],[-69.225819,-69.976658],[-69.221547,-69.98797],[-69.212514,-69.997003],[-69.141184,-70.048598],[-69.027455,-70.159763],[-68.720367,-70.369073],[-68.65982,-70.430352],[-68.635854,-70.464532],[-68.604726,-70.528741],[-68.584788,-70.55283],[-68.55956,-70.567804],[-68.503977,-70.589451],[-68.478586,-70.604181],[-68.470041,-70.610528],[-68.466298,-70.614516],[-68.464508,-70.619399],[-68.466298,-70.625258],[-68.475453,-70.635024],[-68.476633,-70.639418],[-68.470611,-70.644789],[-68.440012,-70.651788],[-68.426503,-70.668634],[-68.427398,-70.707289],[-68.410064,-70.722914],[-68.402699,-70.724542],[-68.395334,-70.725274],[-68.389027,-70.727309],[-68.384674,-70.733168],[-68.38561,-70.738539],[-68.39273,-70.753513],[-68.39391,-70.757094],[-68.385894,-70.762872],[-68.357086,-70.774998],[-68.335072,-70.796319],[-68.33019,-70.799737],[-68.470041,-70.810968],[-68.481191,-70.809503],[-68.454091,-70.823175],[-68.345693,-70.835545],[-68.308665,-70.854181],[-68.299184,-70.869073],[-68.308013,-70.903009],[-68.293853,-70.99033],[-68.296498,-70.996677],[-68.309967,-71.016534],[-68.280751,-71.056736],[-68.272572,-71.074395],[-68.273793,-71.080255],[-68.279164,-71.087091],[-68.286977,-71.093438],[-68.295725,-71.097833],[-68.283559,-71.115655],[-68.238108,-71.168878],[-68.243276,-71.19671],[-68.243398,-71.23561],[-68.236399,-71.300226],[-68.237375,-71.309177],[-68.237294,-71.31756],[-68.234446,-71.327732],[-68.226796,-71.341241],[-68.258127,-71.350844],[-68.267323,-71.367852],[-68.263417,-71.388442],[-68.255605,-71.408868],[-68.265004,-71.415297],[-68.268788,-71.422052],[-68.270497,-71.429132],[-68.273915,-71.436619],[-68.253529,-71.458266],[-68.236969,-71.481052],[-68.223785,-71.505629],[-68.206654,-71.551935],[-68.197377,-71.569594],[-68.18932,-71.580011],[-68.161244,-71.606378],[-68.192209,-71.633396],[-68.207346,-71.66367],[-68.211741,-71.699314],[-68.208648,-71.821059],[-68.22053,-71.858331],[-68.249745,-71.883071],[-68.307362,-71.895278],[-68.425526,-71.890802],[-68.483144,-71.896905],[-68.464711,-71.909763],[-68.445139,-71.92783],[-68.428822,-71.948419],[-68.420522,-71.968927],[-68.418691,-71.982029],[-68.416127,-71.988946],[-68.40982,-71.993585],[-68.367177,-72.014255],[-68.358632,-72.021173],[-68.349436,-72.031996],[-68.343821,-72.044041],[-68.341868,-72.057061],[-68.343658,-72.071059],[-68.350982,-72.083429],[-68.390289,-72.120294],[-68.408844,-72.153985],[-68.414133,-72.219659],[-68.436106,-72.240818],[-68.496693,-72.251642],[-68.555409,-72.24391],[-68.668691,-72.216729],[-68.71642,-72.213962],[-68.741078,-72.216404],[-68.762766,-72.223403],[-68.774078,-72.234552],[-68.772694,-72.246759],[-68.763254,-72.257501],[-68.7506,-72.264825],[-68.770172,-72.274347],[-68.854237,-72.293634],[-68.912831,-72.293064],[-68.910756,-72.298598],[-68.904612,-72.309828],[-68.902943,-72.315362],[-68.903879,-72.319594],[-68.908681,-72.327081],[-68.909535,-72.332127],[-68.907623,-72.33587],[-68.900461,-72.345798],[-68.900054,-72.348891],[-68.915395,-72.361098],[-68.931874,-72.368097],[-68.949696,-72.370538],[-69.006093,-72.366143],[-69.138783,-72.375421],[-69.146474,-72.378106],[-69.152943,-72.383233],[-69.157379,-72.391371],[-69.15746,-72.398696],[-69.156361,-72.406183],[-69.157541,-72.414483],[-69.170277,-72.421808],[-69.194081,-72.425714],[-69.227447,-72.42669],[-69.213368,-72.469496],[-69.191803,-72.475274],[-69.140289,-72.50213],[-69.21817,-72.542901],[-69.643992,-72.5888],[-70.069814,-72.634698],[-70.2565,-72.630548],[-70.523834,-72.667576],[-70.646148,-72.667087],[-70.670888,-72.659763],[-70.690053,-72.642755],[-70.695546,-72.619806],[-70.698232,-72.594903],[-70.709299,-72.572198],[-70.724843,-72.561782],[-70.743316,-72.55877],[-70.762563,-72.560724],[-70.780588,-72.565525],[-70.805287,-72.576267],[-70.813547,-72.578709],[-70.839345,-72.579034],[-70.84789,-72.580987],[-70.861684,-72.591567],[-70.865102,-72.605157],[-70.866363,-72.619806],[-70.87385,-72.633722],[-70.894683,-72.646091],[-70.923085,-72.650974],[-71.191558,-72.640069],[-71.460032,-72.629164],[-71.460072,-72.629164],[-71.934173,-72.651829],[-72.408274,-72.674493],[-72.51476,-72.639337],[-72.510894,-72.625177],[-72.504954,-72.6124],[-72.496897,-72.600763],[-72.486806,-72.590265],[-72.432118,-72.553481],[-72.507924,-72.555108],[-72.546213,-72.561782],[-72.647125,-72.599298],[-72.681264,-72.606134],[-72.717763,-72.607517],[-72.799713,-72.594171],[-73.109242,-72.473403],[-73.146718,-72.452732],[-73.164174,-72.431248],[-73.154286,-72.422784],[-73.091624,-72.383396],[-72.819569,-72.292169],[-72.676747,-72.271254],[-72.453928,-72.276951],[-72.320627,-72.295994],[-72.292592,-72.303318],[-72.272084,-72.315606],[-72.258168,-72.332289],[-72.250722,-72.339451],[-72.239858,-72.345636],[-72.230458,-72.349379],[-72.179677,-72.362481],[-72.118723,-72.36004],[-72.135121,-72.346938],[-72.138336,-72.339532],[-72.133372,-72.330255],[-72.123891,-72.324314],[-72.11205,-72.320896],[-72.099721,-72.319106],[-72.064931,-72.318129],[-71.871083,-72.34881],[-71.483957,-72.364679],[-71.096832,-72.380548],[-70.709706,-72.396417],[-70.650746,-72.388849],[-70.628041,-72.383233],[-70.624623,-72.381036],[-70.621897,-72.375665],[-70.622467,-72.370782],[-70.623769,-72.365981],[-70.623199,-72.361423],[-70.614735,-72.353285],[-70.602651,-72.350274],[-70.574534,-72.34881],[-70.183339,-72.273858],[-70.17398,-72.268324],[-70.150624,-72.248224],[-70.142486,-72.244724],[-70.124867,-72.241306],[-70.116322,-72.238539],[-70.182973,-72.222263],[-70.302235,-72.210219],[-70.319203,-72.198989],[-70.327952,-72.175063],[-70.363515,-72.156427],[-70.41161,-72.14422],[-70.457672,-72.140232],[-70.736195,-72.178481],[-71.043772,-72.257582],[-71.367177,-72.287856],[-71.552642,-72.278416],[-71.695221,-72.23447],[-71.689931,-72.23268],[-71.663971,-72.218683],[-72.055247,-72.158136],[-72.042958,-72.134454],[-72.011586,-72.119724],[-71.549285,-72.084649],[-71.086985,-72.049574],[-70.769765,-71.989679],[-70.741851,-71.981052],[-70.734446,-71.96795],[-70.739491,-71.962498],[-70.753774,-71.954197],[-70.758941,-71.949395],[-70.762685,-71.932306],[-70.752919,-71.92018],[-70.736318,-71.911716],[-70.719716,-71.905694],[-70.73526,-71.895685],[-70.805084,-71.872166],[-70.837148,-71.850844],[-70.856516,-71.845636],[-70.87975,-71.846368],[-71.065785,-71.882013],[-71.116363,-71.884535],[-71.166575,-71.879815],[-71.305409,-71.840916],[-71.394195,-71.833429],[-71.484283,-71.84059],[-71.788442,-71.898614],[-71.829742,-71.898614],[-71.855946,-71.88714],[-71.853505,-71.881443],[-71.858062,-71.872328],[-71.857045,-71.867364],[-71.850942,-71.863214],[-71.834584,-71.859552],[-71.82787,-71.855157],[-71.823638,-71.844985],[-71.824045,-71.83294],[-71.830556,-71.80283],[-71.832183,-71.799086],[-71.836741,-71.797947],[-71.869496,-71.799574],[-71.877553,-71.797947],[-71.88561,-71.793552],[-71.899566,-71.781427],[-71.907135,-71.776137],[-71.9169,-71.772231],[-72.001332,-71.754164],[-72.004994,-71.751642],[-72.006703,-71.74684],[-72.012522,-71.738458],[-72.016225,-71.734796],[-72.018625,-71.733494],[-72.137196,-71.701755],[-72.166127,-71.699884],[-72.188791,-71.707778],[-72.183746,-71.701104],[-72.175282,-71.682387],[-72.169586,-71.674981],[-72.263051,-71.642022],[-72.259267,-71.637953],[-72.252065,-71.628106],[-72.247711,-71.624119],[-72.338938,-71.613458],[-72.344472,-71.614923],[-72.350168,-71.620864],[-72.355946,-71.633559],[-72.363637,-71.639337],[-72.374827,-71.643243],[-72.410268,-71.650974],[-72.427235,-71.657647],[-72.44107,-71.666436],[-72.447255,-71.678888],[-72.440989,-71.696547],[-72.540639,-71.731541],[-72.549306,-71.748224],[-72.638173,-71.732599],[-72.671295,-71.733331],[-72.683095,-71.739841],[-72.688873,-71.753513],[-72.690297,-71.76922],[-72.689076,-71.782485],[-72.687001,-71.783949],[-72.675038,-71.790623],[-72.682688,-71.804295],[-72.69933,-71.826837],[-72.711497,-71.858982],[-72.711537,-71.860935],[-72.741526,-71.885431],[-72.779897,-71.902439],[-72.859364,-71.920994],[-72.947011,-71.928969],[-73.035064,-71.926446],[-73.223704,-71.897638],[-73.408437,-71.849298],[-73.504628,-71.835545],[-73.789052,-71.838556],[-73.878896,-71.86419],[-73.501332,-72.012465],[-73.785227,-72.094903],[-73.806264,-72.131443],[-73.892568,-72.156834],[-74.00475,-72.173517],[-74.121327,-72.172459],[-74.220774,-72.144464],[-74.312123,-72.065688],[-74.357818,-72.044366],[-74.396799,-72.040297],[-74.658274,-72.074965],[-74.815989,-72.064874],[-75.086008,-71.994236],[-75.356028,-71.923598],[-75.39977,-71.90252],[-75.4287,-71.874933],[-75.438344,-71.836847],[-75.402415,-71.801039],[-75.347076,-71.789483],[-75.287099,-71.787042],[-75.237172,-71.778741],[-75.249989,-71.760512],[-75.177154,-71.752618],[-75.188466,-71.74212],[-75.20759,-71.734308],[-75.2447,-71.724379],[-75.240712,-71.719659],[-75.235911,-71.71559],[-75.230336,-71.712498],[-75.224233,-71.710545],[-75.24352,-71.698337],[-75.26891,-71.693048],[-75.318918,-71.691339],[-75.403717,-71.670831],[-75.414133,-71.660903],[-75.381988,-71.636],[-75.332021,-71.622491],[-75.199452,-71.604913],[-75.191233,-71.588962],[-75.170155,-71.571059],[-75.145009,-71.555271],[-75.124664,-71.545343],[-75.078765,-71.533949],[-75.016428,-71.526544],[-74.885854,-71.528416],[-74.793446,-71.553643],[-74.644032,-71.62656],[-74.390248,-71.668145],[-74.3544,-71.66725],[-74.28954,-71.657892],[-74.278635,-71.650811],[-74.278798,-71.636],[-74.295888,-71.625258],[-74.335927,-71.612726],[-74.397043,-71.583673],[-74.384633,-71.56113],[-74.388743,-71.538263],[-74.406565,-71.515802],[-74.435455,-71.49391],[-74.411529,-71.474867],[-74.436635,-71.450942],[-74.42276,-71.428318],[-74.368153,-71.408461],[-74.222483,-71.381931],[-74.122182,-71.382989],[-73.852203,-71.455662],[-73.788482,-71.486749],[-73.756907,-71.510349],[-73.580678,-71.568048],[-73.525217,-71.606215],[-73.458811,-71.59531],[-73.336415,-71.536798],[-73.404449,-71.498468],[-73.583079,-71.456313],[-73.660064,-71.410577],[-73.672515,-71.388849],[-73.669301,-71.367934],[-73.653961,-71.349542],[-73.630483,-71.335219],[-73.585317,-71.322931],[-73.407948,-71.315362],[-73.082672,-71.359959],[-72.757395,-71.404555],[-72.645904,-71.403416],[-72.627187,-71.399672],[-72.610015,-71.37477],[-72.567454,-71.36419],[-72.188954,-71.373142],[-72.208079,-71.359959],[-72.216908,-71.351495],[-72.218739,-71.342055],[-72.211334,-71.336196],[-72.197418,-71.331801],[-72.182973,-71.329685],[-72.173818,-71.330255],[-72.315297,-71.288832],[-72.60558,-71.259617],[-72.895863,-71.230401],[-73.053538,-71.181736],[-73.124582,-71.143976],[-73.100819,-71.115655],[-73.064931,-71.102797],[-72.916493,-71.101658],[-72.859975,-71.094985],[-72.850168,-71.091078],[-72.826731,-71.072686],[-72.817006,-71.068455],[-72.786122,-71.062758],[-72.532135,-71.075779],[-72.395416,-71.065118],[-72.042734,-71.111993],[-71.690053,-71.158868],[-71.546295,-71.136651],[-71.35969,-71.069106],[-71.344553,-71.05934],[-71.335357,-71.050714],[-71.319692,-71.031834],[-71.309926,-71.023207],[-71.329213,-71.017755],[-71.350738,-71.006036],[-71.363637,-70.990004],[-71.357045,-70.971368],[-71.343577,-70.966078],[-71.324615,-70.966078],[-71.186635,-70.995212],[-71.151723,-70.997491],[-71.119618,-70.991143],[-71.05484,-70.966892],[-71.025502,-70.962172],[-70.804514,-70.997817],[-70.717885,-70.998468],[-70.411204,-70.945408],[-70.299184,-70.952407],[-70.208485,-70.98797],[-70.133412,-71.040134],[-70.011952,-71.144789],[-69.996816,-71.151788],[-69.933217,-71.160252],[-69.887441,-71.159356],[-69.878977,-71.156834],[-69.878896,-71.14837],[-69.866078,-71.147393],[-69.838002,-71.151951],[-69.839101,-71.145196],[-69.838612,-71.124444],[-69.837392,-71.120782],[-69.833363,-71.113702],[-69.832997,-71.10947],[-69.834381,-71.106541],[-69.839182,-71.100518],[-69.840199,-71.098403],[-69.836334,-71.082289],[-69.826283,-71.06463],[-69.812245,-71.050063],[-69.796742,-71.043634],[-69.823883,-71.005792],[-69.833363,-70.984145],[-69.836537,-70.961847],[-69.831614,-70.942478],[-69.820139,-70.925714],[-69.789174,-70.899347],[-69.805043,-70.888849],[-69.809682,-70.884373],[-69.789133,-70.874933],[-69.780141,-70.867608],[-69.776275,-70.858087],[-69.786692,-70.853448],[-69.836578,-70.837986],[-69.853668,-70.835545],[-69.864858,-70.838637],[-69.874501,-70.843845],[-69.909535,-70.872654],[-69.919301,-70.878351],[-69.930328,-70.881524],[-69.952545,-70.878839],[-69.996734,-70.856866],[-70.019928,-70.849786],[-70.15392,-70.858005],[-70.170277,-70.856052],[-70.212636,-70.840102],[-70.402699,-70.819106],[-70.701283,-70.831801],[-70.786936,-70.820082],[-71.002187,-70.765558],[-71.166086,-70.755955],[-71.199208,-70.744806],[-71.209828,-70.738458],[-71.216461,-70.731215],[-71.221059,-70.722752],[-71.230377,-70.6985],[-71.233957,-70.693455],[-71.240224,-70.688246],[-71.26651,-70.680108],[-71.252349,-70.648858],[-71.221344,-70.626072],[-71.076324,-70.560642],[-71.065907,-70.547621],[-71.057729,-70.540134],[-71.015981,-70.517673],[-71.003082,-70.513767],[-71.022125,-70.48447],[-70.998606,-70.465753],[-70.558054,-70.39776],[-70.117502,-70.329767],[-70.078196,-70.332452],[-69.694569,-70.420587],[-69.596059,-70.423435],[-69.576487,-70.417087],[-69.58849,-70.393487],[-69.614003,-70.375584],[-69.669504,-70.353936],[-70.111195,-70.242771],[-70.231801,-70.235121],[-70.242055,-70.22975],[-70.237416,-70.224054],[-70.23648,-70.223321],[-70.244008,-70.192071],[-70.217763,-70.179132],[-70.18399,-70.174737],[-70.16926,-70.168634],[-70.173085,-70.158868],[-70.178334,-70.150567],[-70.185658,-70.144138],[-70.195668,-70.140069],[-70.230702,-70.136326],[-70.473622,-70.167901],[-70.540883,-70.166192],[-70.571401,-70.158624],[-70.65217,-70.120294],[-70.674224,-70.115818],[-70.698069,-70.114841],[-70.779775,-70.125665],[-70.796539,-70.134373],[-70.801015,-70.149102],[-70.799306,-70.151462],[-70.79304,-70.157485],[-70.791737,-70.159275],[-70.821116,-70.164809],[-70.93928,-70.216404],[-70.963694,-70.22031],[-70.979563,-70.212498],[-70.999867,-70.211847],[-71.059193,-70.224054],[-71.076731,-70.222263],[-71.090403,-70.215753],[-71.118235,-70.1985],[-71.151845,-70.188165],[-71.316884,-70.177341],[-71.334869,-70.170831],[-71.34732,-70.162367],[-71.369496,-70.141697],[-71.381947,-70.133477],[-71.399648,-70.127862],[-71.548166,-70.11061],[-71.697499,-70.075453],[-71.784495,-70.04225],[-71.811106,-70.027602],[-71.819325,-70.019708],[-71.833323,-70.001723],[-71.841786,-69.994399],[-71.850331,-69.990411],[-71.879709,-69.980645],[-71.912221,-69.965916],[-71.927642,-69.954197],[-71.932118,-69.940525],[-71.925933,-69.932712],[-71.892323,-69.910252],[-71.910715,-69.894301],[-71.893951,-69.879978],[-71.864898,-69.86533],[-71.846425,-69.848403],[-71.838979,-69.803806],[-71.834625,-69.799574],[-71.843007,-69.792657],[-71.863596,-69.784763],[-71.872426,-69.778253],[-71.879384,-69.767755],[-71.879547,-69.759861],[-71.873525,-69.75449],[-71.86144,-69.751642],[-71.875356,-69.738051],[-71.897694,-69.722833],[-71.91161,-69.708266],[-71.899892,-69.696954],[-71.890533,-69.682875],[-71.86148,-69.671563],[-71.742055,-69.646905],[-71.723134,-69.64072],[-71.733022,-69.636651],[-71.743031,-69.630955],[-71.751047,-69.623224],[-71.75475,-69.613214],[-71.752797,-69.607599],[-71.743398,-69.59295],[-71.741038,-69.590427],[-71.741282,-69.566583],[-71.72289,-69.546157],[-71.675608,-69.510837],[-71.679311,-69.506931],[-71.683583,-69.503595],[-71.688222,-69.501072],[-71.693186,-69.499119],[-71.681223,-69.481541],[-71.674184,-69.473728],[-71.665354,-69.467706],[-71.653432,-69.463067],[-71.615875,-69.454848],[-71.636464,-69.445977],[-71.689809,-69.41131],[-71.68224,-69.404718],[-71.672515,-69.399509],[-71.662017,-69.395766],[-71.651926,-69.394301],[-71.677358,-69.386326],[-71.803293,-69.374933],[-71.824941,-69.369073],[-71.841786,-69.357517],[-71.85261,-69.351821],[-71.926584,-69.340509],[-71.952952,-69.330743],[-71.961985,-69.318943],[-71.982655,-69.315362],[-72.079986,-69.317804],[-72.097971,-69.312677],[-72.053782,-69.30462],[-72.04186,-69.295994],[-72.057444,-69.279229],[-72.142079,-69.232354],[-72.158762,-69.226658],[-72.1433,-69.210219],[-72.122467,-69.174493],[-72.10436,-69.161716],[-72.115875,-69.157159],[-72.163075,-69.119887],[-72.190338,-69.107192],[-72.198883,-69.097752],[-72.197011,-69.082452],[-72.185455,-69.067966],[-72.168121,-69.055759],[-72.046132,-68.991876],[-72.013539,-68.961033],[-72.012685,-68.955499],[-71.708241,-68.907769],[-71.403798,-68.86004],[-71.010854,-68.859063],[-70.921783,-68.842462],[-70.903676,-68.823337],[-70.872467,-68.81406],[-70.596791,-68.803969],[-70.469553,-68.781183],[-70.434967,-68.780043],[-70.402089,-68.786798],[-70.31314,-68.837579],[-70.16039,-68.863539],[-70.10558,-68.89072],[-70.096669,-68.90252],[-70.093577,-68.913263],[-70.094228,-68.937921],[-70.091664,-68.952325],[-70.085072,-68.964776],[-70.066151,-68.986423],[-70.099965,-68.999688],[-70.106516,-69.000909],[-70.077545,-69.049249],[-70.069244,-69.055597],[-70.03189,-69.071222],[-69.994293,-69.093683],[-70.026967,-69.097426],[-70.059397,-69.10589],[-70.071197,-69.111749],[-70.079416,-69.118422],[-70.09435,-69.136163],[-70.052846,-69.146173],[-70.034901,-69.156834],[-70.023346,-69.174574],[-70.02184,-69.191583]]],[[[-90.522694,-68.811944],[-90.533681,-68.812433],[-90.553131,-68.81227],[-90.567454,-68.812758],[-90.581776,-68.814223],[-90.595693,-68.816013],[-90.603912,-68.817478],[-90.606923,-68.817478],[-90.610219,-68.815525],[-90.61498,-68.81113],[-90.624908,-68.802423],[-90.633616,-68.793878],[-90.63858,-68.785089],[-90.634592,-68.773696],[-90.623769,-68.76865],[-90.62328,-68.761407],[-90.62328,-68.75213],[-90.618031,-68.74391],[-90.61498,-68.735528],[-90.615712,-68.730645],[-90.612294,-68.72796],[-90.603342,-68.726251],[-90.586659,-68.726495],[-90.576243,-68.727227],[-90.5572,-68.728123],[-90.548207,-68.729181],[-90.535024,-68.732599],[-90.521962,-68.742608],[-90.511708,-68.752618],[-90.511708,-68.757094],[-90.509429,-68.762953],[-90.507721,-68.769952],[-90.505727,-68.778416],[-90.50121,-68.785414],[-90.50475,-68.797459],[-90.512441,-68.809177],[-90.519439,-68.811456],[-90.522694,-68.811944]]],[[[-60.675893,-68.79518],[-60.746083,-68.798923],[-60.783599,-68.793634],[-60.894114,-68.759942],[-60.996449,-68.723077],[-61.021148,-68.70672],[-60.968617,-68.682387],[-60.883046,-68.679376],[-60.790517,-68.69199],[-60.717152,-68.715265],[-60.667836,-68.747166],[-60.652008,-68.775811],[-60.675893,-68.79518]]],[[[-67.162994,-68.157973],[-67.200754,-68.172621],[-67.235504,-68.171645],[-67.254954,-68.144789],[-67.240102,-68.133071],[-67.202016,-68.131606],[-67.134999,-68.138116],[-67.162994,-68.157973]]],[[[-66.875478,-67.883966],[-66.901112,-67.88836],[-66.998647,-67.882094],[-67.020985,-67.874444],[-67.040028,-67.861423],[-66.945546,-67.848891],[-66.898346,-67.853285],[-66.855377,-67.872247],[-66.875478,-67.883966]]],[[[-67.211537,-67.892348],[-67.246409,-67.893976],[-67.275014,-67.884454],[-67.290639,-67.876235],[-67.292551,-67.868829],[-67.253774,-67.849542],[-67.235097,-67.833917],[-67.233795,-67.830824],[-67.336781,-67.818292],[-67.237294,-67.798272],[-67.185943,-67.794122],[-67.151031,-67.798435],[-67.134104,-67.803399],[-67.083079,-67.832696],[-67.104604,-67.850681],[-67.127349,-67.864841],[-67.17748,-67.884942],[-67.211537,-67.892348]]],[[[-64.58731,-67.610772],[-64.56371,-67.620375],[-64.65095,-67.661065],[-64.677887,-67.669203],[-64.707143,-67.674249],[-64.736155,-67.673435],[-64.762522,-67.664483],[-64.745839,-67.651788],[-64.774037,-67.641534],[-64.799875,-67.637791],[-64.82608,-67.640232],[-64.904612,-67.665623],[-64.930002,-67.668227],[-64.954335,-67.661391],[-64.947377,-67.658868],[-64.938588,-67.649021],[-64.93102,-67.637302],[-64.927561,-67.629164],[-64.928538,-67.620294],[-64.93224,-67.612481],[-64.9405,-67.59881],[-64.89566,-67.599216],[-64.756093,-67.615411],[-64.761383,-67.61061],[-64.776601,-67.592055],[-64.749745,-67.592218],[-64.58731,-67.610772]]],[[[-67.231272,-67.677341],[-67.253163,-67.710056],[-67.270131,-67.708754],[-67.320546,-67.711033],[-67.291331,-67.725844],[-67.288197,-67.730076],[-67.334584,-67.762872],[-67.392445,-67.780532],[-67.510487,-67.789483],[-67.647084,-67.776951],[-67.708852,-67.760349],[-67.742055,-67.746515],[-67.751047,-67.732354],[-67.742258,-67.727472],[-67.703928,-67.724542],[-67.693715,-67.720473],[-67.68932,-67.71559],[-67.686147,-67.709405],[-67.680043,-67.701349],[-67.671986,-67.696222],[-67.652333,-67.689548],[-67.643625,-67.683689],[-67.660146,-67.682061],[-67.67748,-67.685154],[-67.726674,-67.699395],[-67.746693,-67.701918],[-67.764638,-67.698907],[-67.77477,-67.685805],[-67.766265,-67.667657],[-67.73998,-67.65488],[-67.495717,-67.589044],[-67.183705,-67.599786],[-67.151112,-67.610772],[-67.122182,-67.642511],[-67.231272,-67.677341]]],[[[47.492931,-67.572686],[47.69752,-67.593438],[47.735037,-67.590509],[47.771007,-67.582127],[47.834158,-67.558201],[47.845388,-67.55641],[47.860606,-67.557712],[47.863617,-67.558526],[47.875662,-67.564467],[47.875743,-67.564548],[47.914724,-67.58587],[47.92335,-67.586602],[47.791677,-67.619724],[47.532481,-67.641697],[47.469412,-67.637384],[47.411306,-67.621759],[47.460134,-67.559015],[47.484874,-67.540704],[47.517426,-67.527114],[47.558849,-67.520929],[47.609711,-67.524184],[47.59311,-67.540785],[47.557628,-67.55641],[47.519054,-67.568048],[47.492931,-67.572686]]],[[[-66.999379,-67.591485],[-67.083608,-67.602146],[-67.160268,-67.588067],[-67.081532,-67.55755],[-67.023101,-67.546645],[-67.006256,-67.538507],[-66.99059,-67.525486],[-66.982533,-67.520685],[-66.971181,-67.517022],[-66.933583,-67.511489],[-66.893137,-67.512384],[-66.810536,-67.523533],[-66.830881,-67.533949],[-66.852406,-67.541925],[-66.875234,-67.543878],[-66.925852,-67.568943],[-66.999379,-67.591485]]],[[[-67.668691,-67.35711],[-67.709096,-67.369724],[-67.744456,-67.360772],[-67.728017,-67.339614],[-67.690541,-67.31878],[-67.644928,-67.307387],[-67.604156,-67.31463],[-67.631174,-67.334893],[-67.668691,-67.35711]]],[[[164.819835,-67.550226],[164.760427,-67.570408],[164.703787,-67.568617],[164.657237,-67.538344],[164.656586,-67.524591],[164.651866,-67.511407],[164.643809,-67.499282],[164.632823,-67.488702],[164.65919,-67.47324],[164.68214,-67.447849],[164.6963,-67.416762],[164.696056,-67.385186],[164.689952,-67.372003],[164.669281,-67.343194],[164.659516,-67.333591],[164.660167,-67.327244],[164.662283,-67.321384],[164.665701,-67.316339],[164.670421,-67.312107],[164.656993,-67.278741],[164.657237,-67.260837],[164.674571,-67.257745],[164.712169,-67.268487],[164.823741,-67.325616],[164.840343,-67.339288],[164.836925,-67.362726],[164.857188,-67.375909],[164.887706,-67.386895],[164.91391,-67.404392],[164.926036,-67.431085],[164.916189,-67.454278],[164.889008,-67.476739],[164.848969,-67.500909],[164.854828,-67.504164],[164.858897,-67.50742],[164.864431,-67.510837],[164.875011,-67.515069],[164.819835,-67.550226]]],[[[-67.693349,-67.284275],[-67.760406,-67.294529],[-67.810211,-67.263442],[-67.700836,-67.213637],[-67.670888,-67.205011],[-67.637196,-67.199802],[-67.604075,-67.201593],[-67.575795,-67.214451],[-67.626088,-67.251397],[-67.693349,-67.284275]]],[[[-67.608632,-67.140232],[-67.633412,-67.141534],[-67.657867,-67.137465],[-67.681467,-67.128106],[-67.672719,-67.125746],[-67.662953,-67.122003],[-67.654164,-67.116632],[-67.648508,-67.10947],[-67.647776,-67.101658],[-67.650746,-67.095147],[-67.656606,-67.0888],[-67.65038,-67.080824],[-67.641184,-67.076104],[-67.631093,-67.072442],[-67.622548,-67.067966],[-67.609527,-67.054132],[-67.602651,-67.049086],[-67.591135,-67.046075],[-67.572743,-67.046808],[-67.558176,-67.053806],[-67.547963,-67.066339],[-67.542592,-67.083754],[-67.540354,-67.098891],[-67.542836,-67.104262],[-67.550364,-67.112074],[-67.557973,-67.118341],[-67.566477,-67.123956],[-67.58434,-67.132908],[-67.608632,-67.140232]]],[[[120.689789,-66.90838],[120.711762,-66.910577],[120.743175,-66.90838],[120.838634,-66.887953],[120.866384,-66.886814],[120.531993,-66.969008],[120.511974,-66.969334],[120.492442,-66.962335],[120.479991,-66.950128],[120.478526,-66.935154],[120.491384,-66.920017],[120.500011,-66.912367],[120.514985,-66.894952],[120.523692,-66.887791],[120.54005,-66.88128],[120.558849,-66.878595],[120.607432,-66.879571],[120.651134,-66.88714],[120.656586,-66.889744],[120.66505,-66.89658],[120.670421,-66.900649],[120.678477,-66.905206],[120.684093,-66.907159],[120.689789,-66.90838]]],[[[121.023204,-66.848321],[120.937755,-66.857029],[120.883149,-66.846449],[120.945079,-66.830743],[121.048106,-66.788832],[121.127778,-66.779474],[121.192882,-66.778904],[121.19516,-66.786391],[121.168305,-66.805922],[121.109711,-66.82879],[121.023204,-66.848321]]],[[[-67.381215,-66.902439],[-67.43517,-66.908136],[-67.493398,-66.904474],[-67.603139,-66.879978],[-67.563832,-66.866469],[-67.527577,-66.821059],[-67.490224,-66.799086],[-67.502105,-66.788751],[-67.508372,-66.779474],[-67.512847,-66.770766],[-67.519887,-66.76214],[-67.483957,-66.742608],[-67.445953,-66.734959],[-67.406646,-66.736505],[-67.306793,-66.760675],[-67.290028,-66.768976],[-67.285227,-66.773533],[-67.282582,-66.778253],[-67.280426,-66.782973],[-67.277008,-66.788018],[-67.271962,-66.792901],[-67.261586,-66.800877],[-67.256907,-66.805759],[-67.245717,-66.824965],[-67.240712,-66.830824],[-67.271108,-66.854913],[-67.306142,-66.875258],[-67.343617,-66.89129],[-67.381215,-66.902439]]],[[[85.87615,-66.936456],[85.787364,-66.968927],[85.613048,-66.986586],[85.589854,-66.981703],[85.613048,-66.957696],[85.62615,-66.947849],[85.641287,-66.939386],[85.618907,-66.940362],[85.374766,-66.877211],[85.338552,-66.857599],[85.306895,-66.832208],[85.28004,-66.801528],[85.258637,-66.766209],[85.275401,-66.737726],[85.307628,-66.723728],[85.345388,-66.719171],[85.483653,-66.720961],[85.565929,-66.736423],[85.622081,-66.738051],[85.658865,-66.743585],[85.659272,-66.743666],[85.769867,-66.759698],[85.796072,-66.769627],[85.836925,-66.793715],[85.941173,-66.889907],[85.927419,-66.91074],[85.87615,-66.936456]]],[[[48.80893,-66.767348],[48.763357,-66.783298],[48.594737,-66.77752],[48.399913,-66.808038],[48.312185,-66.809503],[48.281586,-66.767185],[48.281261,-66.751642],[48.287852,-66.736261],[48.305024,-66.721612],[48.336436,-66.707778],[48.375255,-66.699151],[48.725352,-66.703058],[48.773692,-66.720473],[48.80893,-66.767348]]],[[[163.310395,-66.781183],[163.311209,-66.781508],[163.313243,-66.781508],[163.311209,-66.783298],[163.31072,-66.784356],[163.311371,-66.784926],[163.31365,-66.784926],[163.286143,-66.797784],[163.302257,-66.820408],[163.310395,-66.827325],[163.309744,-66.828058],[163.309744,-66.828709],[163.310802,-66.82879],[163.312511,-66.828709],[163.296886,-66.835138],[163.293712,-66.838067],[163.295095,-66.884861],[163.249197,-66.877374],[163.190766,-66.843845],[163.15504,-66.81227],[163.082693,-66.712335],[163.082042,-66.71087],[163.081879,-66.707778],[163.081309,-66.706476],[163.114757,-66.68727],[163.169932,-66.690199],[163.225597,-66.70379],[163.260509,-66.716241],[163.262055,-66.73211],[163.265473,-66.740411],[163.26531,-66.748468],[163.257009,-66.763279],[163.292491,-66.7763],[163.312266,-66.778985],[163.310802,-66.780206],[163.310395,-66.781183]]],[[[86.580821,-66.71795],[86.61085,-66.721612],[86.675792,-66.719659],[86.617035,-66.746026],[86.497244,-66.784763],[86.403168,-66.795994],[86.343761,-66.792576],[86.314789,-66.78631],[86.265391,-66.762628],[86.237641,-66.744724],[86.230479,-66.730401],[86.259532,-66.704278],[86.294281,-66.687595],[86.332286,-66.678155],[86.516124,-66.667169],[86.536388,-66.669122],[86.531749,-66.677992],[86.532888,-66.6867],[86.538748,-66.695082],[86.548595,-66.703058],[86.580821,-66.71795]]],[[[-67.985422,-67.062677],[-67.97643,-67.066502],[-67.922109,-67.063409],[-67.883209,-67.066583],[-67.844635,-67.074802],[-67.806142,-67.08766],[-67.791982,-67.094903],[-67.785308,-67.103123],[-67.786773,-67.113051],[-67.796986,-67.125095],[-67.767568,-67.133071],[-67.706166,-67.139907],[-67.676829,-67.148045],[-67.681793,-67.1513],[-67.738759,-67.17311],[-67.768544,-67.190199],[-67.786,-67.192804],[-67.820668,-67.191502],[-67.832265,-67.193455],[-67.839182,-67.195245],[-67.845693,-67.198175],[-67.850982,-67.202407],[-67.85436,-67.208754],[-67.854644,-67.214288],[-67.853017,-67.225274],[-67.854604,-67.230564],[-67.864898,-67.238214],[-67.881581,-67.244073],[-67.912506,-67.250746],[-67.95995,-67.250258],[-67.973988,-67.254653],[-67.981557,-67.262465],[-67.980336,-67.270115],[-67.975819,-67.278009],[-67.973785,-67.287367],[-67.977366,-67.294041],[-67.984771,-67.298923],[-68.001536,-67.30462],[-68.106557,-67.317804],[-68.250966,-67.369317],[-68.187652,-67.38421],[-68.122792,-67.388767],[-68.018788,-67.383884],[-67.965159,-67.394627],[-67.947662,-67.428806],[-67.957143,-67.449965],[-67.973785,-67.468438],[-68.067006,-67.528416],[-68.09968,-67.540297],[-68.108632,-67.547052],[-68.113596,-67.554376],[-68.117665,-67.562188],[-68.122711,-67.568617],[-68.130686,-67.572442],[-68.139027,-67.571466],[-68.214508,-67.545994],[-68.227691,-67.538263],[-68.238026,-67.530043],[-68.249013,-67.523696],[-68.26415,-67.521173],[-68.283599,-67.522719],[-68.390004,-67.549249],[-68.413686,-67.559177],[-68.432362,-67.573907],[-68.416086,-67.582289],[-68.39977,-67.59352],[-68.390696,-67.607843],[-68.395823,-67.625177],[-68.412668,-67.641046],[-68.476389,-67.677504],[-68.541615,-67.732029],[-68.558583,-67.741469],[-68.575185,-67.74391],[-68.59203,-67.740655],[-68.643788,-67.714776],[-68.662994,-67.710219],[-68.678578,-67.717218],[-68.673573,-67.719496],[-68.656117,-67.723565],[-68.666005,-67.729913],[-68.67927,-67.735121],[-68.741526,-67.749444],[-68.884592,-67.762465],[-68.899322,-67.760512],[-68.912709,-67.754978],[-68.921376,-67.747817],[-68.930898,-67.737237],[-68.937245,-67.725274],[-68.936635,-67.714532],[-68.933502,-67.711358],[-68.92984,-67.70908],[-68.927358,-67.705987],[-68.927724,-67.701349],[-68.931874,-67.697524],[-68.938832,-67.695571],[-68.952016,-67.693292],[-68.994008,-67.671563],[-69.009999,-67.668064],[-69.038889,-67.666925],[-69.053212,-67.664483],[-69.066274,-67.659275],[-69.071604,-67.654718],[-69.079457,-67.644301],[-69.083852,-67.640069],[-69.109283,-67.626153],[-69.132151,-67.604913],[-69.153228,-67.589776],[-69.164784,-67.579278],[-69.173695,-67.566664],[-69.178944,-67.55169],[-69.178334,-67.52516],[-69.169179,-67.499444],[-69.154897,-67.475681],[-69.116444,-67.430434],[-69.06607,-67.387628],[-68.837473,-67.266778],[-68.799428,-67.234633],[-68.795318,-67.230401],[-68.791575,-67.223321],[-68.784169,-67.201267],[-68.707021,-67.109633],[-68.377838,-66.820733],[-68.320953,-66.789239],[-67.860463,-66.625665],[-67.830556,-66.620294],[-67.800201,-66.618097],[-67.769683,-66.619236],[-67.741038,-66.6242],[-67.659413,-66.648614],[-67.661936,-66.661554],[-67.660227,-66.670505],[-67.653717,-66.677179],[-67.641957,-66.683201],[-67.666331,-66.696873],[-67.67162,-66.701918],[-67.68102,-66.713474],[-67.686676,-66.718194],[-67.744211,-66.733657],[-67.752187,-66.739679],[-67.749664,-66.743422],[-67.746571,-66.74684],[-67.739369,-66.752618],[-67.761464,-66.763604],[-67.812123,-66.771417],[-67.834218,-66.782403],[-67.830963,-66.78753],[-67.819163,-66.801365],[-67.884145,-66.810724],[-67.913401,-66.811456],[-67.9287,-66.815037],[-67.938547,-66.823419],[-67.940053,-66.830743],[-67.936025,-66.841078],[-67.937571,-66.847914],[-67.948598,-66.856541],[-67.964223,-66.861912],[-67.977691,-66.86891],[-67.982249,-66.882745],[-67.98648,-66.885919],[-68.013254,-66.900079],[-68.019276,-66.909601],[-68.023061,-66.929946],[-68.026235,-66.940606],[-68.012115,-66.950291],[-67.941558,-66.982599],[-67.923248,-66.997247],[-67.925526,-67.006443],[-67.933502,-67.011814],[-67.940297,-67.017673],[-67.93871,-67.028009],[-67.949818,-67.032159],[-67.994211,-67.039972],[-67.990712,-67.053969],[-67.985422,-67.062677]]],[[[85.286469,-66.637628],[85.201182,-66.646742],[85.114431,-66.635349],[85.054861,-66.606215],[85.079112,-66.577325],[85.092052,-66.544854],[85.110688,-66.520685],[85.15211,-66.516371],[85.168956,-66.524591],[85.187999,-66.554783],[85.202403,-66.567966],[85.233653,-66.58115],[85.34254,-66.60475],[85.286469,-66.637628]]],[[[98.814952,-66.483982],[98.791189,-66.4874],[98.730724,-66.482354],[98.668142,-66.462498],[98.616222,-66.430108],[98.588552,-66.387953],[98.597179,-66.378513],[98.620291,-66.370782],[98.660004,-66.363458],[98.711681,-66.364028],[98.859386,-66.389255],[98.953298,-66.418145],[98.939626,-66.43141],[98.837576,-66.477146],[98.814952,-66.483982]]],[[[97.424327,-66.42311],[97.393728,-66.430271],[97.067638,-66.404718],[97.037852,-66.395115],[97.010509,-66.381036],[97.048106,-66.344171],[97.105317,-66.328302],[97.167735,-66.325942],[97.284679,-66.340753],[97.346853,-66.360528],[97.363048,-66.368748],[97.378184,-66.379002],[97.405528,-66.403497],[97.424327,-66.42311]]],[[[-67.093373,-66.386489],[-67.127065,-66.389581],[-67.161041,-66.388767],[-67.138539,-66.378188],[-67.127187,-66.370538],[-67.122711,-66.362563],[-67.127309,-66.356378],[-67.146596,-66.349054],[-67.153066,-66.343194],[-67.154124,-66.331964],[-67.14745,-66.325291],[-67.13683,-66.322035],[-67.125722,-66.320977],[-67.097646,-66.322524],[-67.058258,-66.329278],[-67.027089,-66.341892],[-67.023834,-66.361261],[-67.037221,-66.37127],[-67.056386,-66.378351],[-67.093373,-66.386489]]],[[[162.558116,-66.532973],[162.546397,-66.534601],[162.531505,-66.530206],[162.516368,-66.523126],[162.478852,-66.510919],[162.471039,-66.506606],[162.340505,-66.410252],[162.32781,-66.405206],[162.290212,-66.397638],[162.325043,-66.383477],[162.342947,-66.372491],[162.349457,-66.360447],[162.34547,-66.354262],[162.330333,-66.351251],[162.324474,-66.346775],[162.323416,-66.338556],[162.329763,-66.32171],[162.328868,-66.312758],[162.321544,-66.305108],[162.310232,-66.299737],[162.287608,-66.294041],[162.297862,-66.254815],[162.314708,-66.251397],[162.556326,-66.436619],[162.573416,-66.445896],[162.62615,-66.462498],[162.615977,-66.468357],[162.568044,-66.526137],[162.558116,-66.532973]]],[[[-67.051259,-66.254083],[-67.027089,-66.259861],[-66.923736,-66.252862],[-66.884633,-66.262872],[-66.87682,-66.263767],[-66.908925,-66.277765],[-66.942698,-66.28574],[-66.977366,-66.288018],[-67.012318,-66.285903],[-67.081776,-66.273614],[-67.101755,-66.261733],[-67.101877,-66.261651],[-67.1197,-66.251397],[-67.121571,-66.250909],[-67.110219,-66.240981],[-67.091624,-66.236098],[-67.071604,-66.234959],[-67.056386,-66.236261],[-67.051259,-66.254083]]],[[[100.274913,-66.197931],[100.282725,-66.198907],[100.299083,-66.198175],[100.307302,-66.198989],[100.298025,-66.201837],[100.253673,-66.222833],[100.182872,-66.23268],[100.116547,-66.229913],[100.08074,-66.221124],[100.064789,-66.204278],[100.080089,-66.184015],[100.155121,-66.138604],[100.205821,-66.114679],[100.235118,-66.107192],[100.264496,-66.105239],[100.289317,-66.111505],[100.293793,-66.114516],[100.29835,-66.11891],[100.306488,-66.130141],[100.310395,-66.13714],[100.315929,-66.151056],[100.317149,-66.157159],[100.310557,-66.173028],[100.291759,-66.180108],[100.251231,-66.18434],[100.255056,-66.186212],[100.269542,-66.195489],[100.274913,-66.197931]]],[[[-66.841054,-66.321954],[-66.864084,-66.326267],[-66.888661,-66.325779],[-66.890777,-66.320733],[-66.903798,-66.310479],[-66.910797,-66.301935],[-66.891713,-66.28753],[-66.792877,-66.240655],[-66.774037,-66.226983],[-66.770375,-66.221775],[-66.769439,-66.203871],[-66.766184,-66.184828],[-66.766347,-66.178969],[-66.76891,-66.173598],[-66.777008,-66.164483],[-66.779408,-66.159275],[-66.779408,-66.153009],[-66.777699,-66.148045],[-66.772532,-66.137791],[-66.778228,-66.134373],[-66.789906,-66.129083],[-66.7954,-66.125746],[-66.77359,-66.107192],[-66.739817,-66.093032],[-66.640289,-66.068536],[-66.604848,-66.066013],[-66.59081,-66.067478],[-66.577992,-66.071547],[-66.566314,-66.07822],[-66.555572,-66.087009],[-66.568918,-66.099216],[-66.5926,-66.114516],[-66.617584,-66.126235],[-66.634755,-66.128025],[-66.600168,-66.149835],[-66.58727,-66.155857],[-66.575999,-66.180352],[-66.600453,-66.206231],[-66.601877,-66.208754],[-66.662099,-66.235284],[-66.751454,-66.289239],[-66.841054,-66.321954]]],[[[96.725597,-66.063653],[96.749278,-66.069106],[96.791352,-66.068129],[96.878429,-66.053481],[96.917166,-66.054376],[96.974864,-66.074477],[97.01588,-66.105564],[97.030935,-66.140558],[97.010509,-66.17311],[96.908458,-66.211358],[96.657929,-66.219496],[96.4074,-66.227634],[96.355968,-66.221612],[96.338634,-66.197198],[96.29656,-66.183526],[96.346528,-66.118829],[96.375824,-66.091404],[96.417979,-66.067071],[96.467621,-66.050714],[96.529307,-66.039809],[96.596446,-66.035821],[96.661469,-66.040134],[96.68393,-66.046075],[96.725597,-66.063653]]],[[[-65.737416,-65.991469],[-65.801991,-65.992608],[-65.787953,-65.977634],[-65.784739,-65.971856],[-65.784047,-65.96502],[-65.785064,-65.958591],[-65.784779,-65.952895],[-65.779856,-65.948012],[-65.769154,-65.945977],[-65.75886,-65.949884],[-65.749257,-65.958103],[-65.740793,-65.968438],[-65.727691,-65.989353],[-65.737416,-65.991469]]],[[[-65.914377,-65.916925],[-65.998402,-65.929295],[-66.01651,-65.928318],[-66.033844,-65.924574],[-66.005198,-65.90545],[-65.970693,-65.888116],[-65.934397,-65.877048],[-65.900095,-65.876723],[-65.900054,-65.876723],[-65.894765,-65.878595],[-65.891021,-65.881443],[-65.889027,-65.885512],[-65.888824,-65.890883],[-65.900746,-65.911065],[-65.914377,-65.916925]]],[[[-65.200103,-65.856134],[-65.194,-65.883884],[-65.205963,-65.894627],[-65.221262,-65.900323],[-65.237904,-65.901788],[-65.254018,-65.90016],[-65.268137,-65.896254],[-65.281728,-65.890313],[-65.306996,-65.875177],[-65.317738,-65.865899],[-65.317779,-65.865899],[-65.342437,-65.84238],[-65.34435,-65.839532],[-65.306142,-65.837009],[-65.247792,-65.841404],[-65.200103,-65.856134]]],[[[100.797699,-65.777276],[100.973318,-65.787367],[101.006684,-65.796157],[101.025564,-65.812595],[101.011241,-65.8388],[100.963227,-65.864923],[100.904552,-65.878106],[100.7588,-65.881768],[100.700206,-65.873956],[100.671641,-65.865492],[100.635265,-65.859145],[100.525401,-65.874444],[100.460216,-65.875665],[100.427908,-65.869317],[100.399669,-65.854669],[100.534923,-65.790623],[100.558604,-65.784356],[100.607188,-65.778497],[100.712087,-65.785903],[100.797699,-65.777276]]],[[[92.578868,-65.81756],[92.434418,-65.824395],[92.299164,-65.802911],[92.23585,-65.750665],[92.28533,-65.712172],[92.350271,-65.694757],[92.42335,-65.693292],[92.496267,-65.703139],[92.496349,-65.70322],[92.621104,-65.726007],[92.671641,-65.7492],[92.668956,-65.784845],[92.578868,-65.81756]]],[[[-65.716461,-65.537856],[-65.690541,-65.542657],[-65.634755,-65.53867],[-65.624827,-65.534926],[-65.632558,-65.549493],[-65.655629,-65.572035],[-65.662465,-65.586033],[-65.664174,-65.612726],[-65.668772,-65.623142],[-65.682118,-65.632908],[-65.680491,-65.633966],[-65.679921,-65.634861],[-65.680572,-65.635349],[-65.682444,-65.635349],[-65.665517,-65.660089],[-65.859934,-65.690199],[-65.912953,-65.705824],[-65.838043,-65.734145],[-65.825347,-65.754164],[-65.82018,-65.764907],[-65.818227,-65.775811],[-65.821278,-65.78574],[-65.833363,-65.802423],[-65.835683,-65.8117],[-65.830678,-65.820733],[-65.819732,-65.825372],[-65.796986,-65.830255],[-65.813547,-65.839939],[-65.83495,-65.843357],[-65.876576,-65.843927],[-66.051503,-65.881036],[-66.101308,-65.884535],[-66.174713,-65.871759],[-66.185902,-65.865167],[-66.178456,-65.847752],[-66.177805,-65.840509],[-66.181874,-65.830824],[-66.183583,-65.828546],[-66.185658,-65.826837],[-66.190094,-65.823826],[-66.190175,-65.823744],[-66.193105,-65.821547],[-66.195383,-65.819024],[-66.196523,-65.815362],[-66.195953,-65.810479],[-66.192372,-65.802667],[-66.174794,-65.785089],[-66.163442,-65.766371],[-66.159779,-65.762465],[-66.143707,-65.760349],[-66.100697,-65.768162],[-66.082183,-65.768324],[-66.071929,-65.763116],[-66.037953,-65.738946],[-66.053619,-65.733168],[-66.070872,-65.722752],[-66.082753,-65.708917],[-66.082346,-65.692804],[-66.079172,-65.688653],[-66.071848,-65.682224],[-66.069244,-65.677504],[-66.069895,-65.673761],[-66.072987,-65.671482],[-66.075429,-65.668878],[-66.074045,-65.663995],[-66.06607,-65.659356],[-66.029408,-65.653985],[-66.018951,-65.649672],[-65.993276,-65.628595],[-65.977284,-65.622491],[-65.96996,-65.618585],[-65.964467,-65.611749],[-65.963043,-65.599054],[-65.96935,-65.590265],[-65.977284,-65.582696],[-65.980702,-65.573419],[-65.978342,-65.57171],[-65.965728,-65.556248],[-65.960032,-65.553318],[-65.791575,-65.519952],[-65.764638,-65.522149],[-65.716461,-65.537856]]],[[[-65.596018,-65.467055],[-65.542348,-65.475193],[-65.527008,-65.472914],[-65.548573,-65.487074],[-65.577382,-65.497166],[-65.659983,-65.511489],[-65.686147,-65.509454],[-65.710683,-65.501235],[-65.732249,-65.485284],[-65.722239,-65.47088],[-65.705393,-65.47324],[-65.685536,-65.481622],[-65.666575,-65.48561],[-65.653554,-65.483087],[-65.616444,-65.468357],[-65.596018,-65.467055]]],[[[101.024913,-65.66546],[100.967052,-65.682875],[100.557872,-65.704034],[100.513927,-65.697198],[100.538422,-65.68613],[100.536388,-65.682875],[100.524913,-65.678643],[100.503673,-65.67311],[100.368175,-65.678969],[100.329845,-65.673435],[100.298025,-65.658624],[100.276215,-65.633071],[100.26824,-65.594659],[100.303722,-65.536065],[100.385102,-65.478611],[100.482432,-65.431248],[100.565929,-65.403009],[100.729666,-65.380466],[100.934581,-65.378676],[101.12672,-65.411879],[101.251801,-65.493748],[101.261404,-65.540297],[101.230724,-65.573989],[101.024913,-65.66546]]],[[[103.381358,-65.463556],[103.32252,-65.471612],[103.212738,-65.468845],[103.172211,-65.460626],[103.139659,-65.444757],[103.130138,-65.430922],[103.138438,-65.382989],[103.145518,-65.363051],[103.139334,-65.338311],[103.104015,-65.30462],[103.084727,-65.29461],[103.037852,-65.280369],[102.826996,-65.250584],[102.776134,-65.232517],[102.774587,-65.226007],[102.752208,-65.178318],[102.781586,-65.14072],[102.839366,-65.127699],[102.910655,-65.131768],[103.09311,-65.173598],[103.151378,-65.197686],[103.188813,-65.229669],[103.196625,-65.26336],[103.167735,-65.302423],[103.177419,-65.334731],[103.198253,-65.356134],[103.225841,-65.37184],[103.29127,-65.392022],[103.389985,-65.415623],[103.408539,-65.423598],[103.419119,-65.434747],[103.416026,-65.448663],[103.400645,-65.45794],[103.381358,-65.463556]]],[[[-59.435455,-65.233819],[-59.514638,-65.245701],[-59.648752,-65.219903],[-59.77774,-65.174412],[-59.841542,-65.127374],[-59.771392,-65.086114],[-59.646148,-65.12184],[-59.435455,-65.233819]]],[[[-63.014394,-64.869724],[-63.008901,-64.87005],[-62.989491,-64.862888],[-62.971303,-64.859552],[-62.954905,-64.861749],[-62.93871,-64.867934],[-62.921457,-64.87713],[-62.925445,-64.880548],[-62.959096,-64.894952],[-62.987945,-64.896742],[-63.076487,-64.889907],[-63.108062,-64.882908],[-63.129547,-64.869399],[-63.123891,-64.863051],[-63.121449,-64.851739],[-63.117014,-64.847101],[-63.097727,-64.84238],[-63.069936,-64.841404],[-63.042633,-64.844171],[-63.024892,-64.850844],[-63.020904,-64.856378],[-63.018666,-64.865981],[-63.014394,-64.869724]]],[[[-62.84675,-64.809015],[-62.900461,-64.823907],[-63.005238,-64.816664],[-63.019276,-64.813084],[-63.030995,-64.80641],[-62.994618,-64.797133],[-62.957102,-64.794854],[-62.84675,-64.809015]]],[[[-63.255442,-64.790704],[-63.277699,-64.806248],[-63.282379,-64.815688],[-63.290028,-64.849379],[-63.306549,-64.859308],[-63.324941,-64.866388],[-63.381744,-64.877699],[-63.430735,-64.898858],[-63.453277,-64.904718],[-63.537913,-64.916436],[-63.571401,-64.916436],[-63.594472,-64.907403],[-63.582387,-64.899509],[-63.540679,-64.886895],[-63.490346,-64.863458],[-63.443674,-64.833754],[-63.481923,-64.822442],[-63.502268,-64.818943],[-63.52009,-64.822035],[-63.447906,-64.789483],[-63.422109,-64.784926],[-63.400461,-64.787042],[-63.357981,-64.797052],[-63.336781,-64.795343],[-63.325307,-64.790297],[-63.233225,-64.72975],[-63.205149,-64.717462],[-63.177154,-64.712986],[-63.157135,-64.724542],[-63.154408,-64.734959],[-63.15807,-64.743585],[-63.165639,-64.751072],[-63.17455,-64.75742],[-63.255442,-64.790704]]],[[[-62.679555,-64.746352],[-62.704823,-64.747654],[-62.722564,-64.738214],[-62.7235,-64.734552],[-62.720815,-64.727797],[-62.722524,-64.723321],[-62.731028,-64.71738],[-62.764312,-64.709649],[-62.733062,-64.70086],[-62.720448,-64.69378],[-62.708608,-64.683282],[-62.697174,-64.675063],[-62.682851,-64.670505],[-62.667795,-64.669854],[-62.654205,-64.673272],[-62.644683,-64.678806],[-62.641835,-64.683689],[-62.641835,-64.700779],[-62.641103,-64.705011],[-62.639475,-64.708591],[-62.636464,-64.712009],[-62.6315,-64.715509],[-62.632639,-64.718438],[-62.634023,-64.721124],[-62.637522,-64.72617],[-62.654612,-64.73797],[-62.679555,-64.746352]]],[[[-62.022776,-64.653009],[-62.036692,-64.661228],[-62.058746,-64.659601],[-62.076975,-64.651056],[-62.079091,-64.638767],[-62.068918,-64.632501],[-62.051503,-64.626642],[-62.033803,-64.623468],[-62.022817,-64.624933],[-62.028961,-64.633071],[-62.032094,-64.641046],[-62.030588,-64.648045],[-62.022776,-64.653009]]],[[[-62.064361,-64.614028],[-62.093007,-64.620864],[-62.106313,-64.620782],[-62.116811,-64.616306],[-62.136545,-64.602634],[-62.127268,-64.597345],[-62.123647,-64.593683],[-62.121653,-64.589044],[-62.142445,-64.583103],[-62.148997,-64.580255],[-62.137929,-64.57643],[-62.111887,-64.575372],[-62.100901,-64.571873],[-62.094716,-64.566095],[-62.093495,-64.560724],[-62.093577,-64.555922],[-62.091298,-64.551528],[-62.087229,-64.549249],[-62.078847,-64.548923],[-62.07433,-64.547621],[-62.060455,-64.539727],[-62.053782,-64.538018],[-62.044545,-64.539239],[-62.014638,-64.552911],[-62.015248,-64.558852],[-62.041737,-64.580824],[-62.045806,-64.588637],[-62.051503,-64.603936],[-62.05724,-64.610528],[-62.064361,-64.614028]]],[[[-57.563954,-64.442315],[-57.587514,-64.470961],[-57.652455,-64.450291],[-57.584584,-64.417657],[-57.563954,-64.442315]]],[[[-61.525624,-64.395929],[-61.545766,-64.397068],[-61.565826,-64.395603],[-61.598866,-64.388279],[-61.61144,-64.380792],[-61.603627,-64.371759],[-61.60851,-64.367446],[-61.626536,-64.359552],[-61.613149,-64.355076],[-61.567698,-64.349298],[-61.546254,-64.350274],[-61.527415,-64.360528],[-61.509145,-64.373793],[-61.489247,-64.384535],[-61.495839,-64.385512],[-61.525624,-64.395929]]],[[[-57.219106,-64.565362],[-57.304758,-64.574965],[-57.391184,-64.561944],[-57.427235,-64.54811],[-57.447581,-64.534356],[-57.45641,-64.518324],[-57.45816,-64.498305],[-57.457916,-64.487237],[-57.455922,-64.474054],[-57.450999,-64.461602],[-57.441965,-64.452244],[-57.41686,-64.443292],[-57.314565,-64.436456],[-57.314524,-64.436456],[-57.258412,-64.427016],[-56.943959,-64.32879],[-56.922678,-64.327895],[-56.901763,-64.330336],[-56.878407,-64.335707],[-56.94636,-64.375584],[-56.953521,-64.385349],[-56.937815,-64.419122],[-56.967885,-64.455499],[-57.017568,-64.487888],[-57.060536,-64.509373],[-57.219106,-64.565362]]],[[[-63.263539,-64.275811],[-63.235951,-64.279962],[-63.207346,-64.277602],[-63.17927,-64.278497],[-63.153432,-64.291599],[-63.157704,-64.297459],[-63.156402,-64.300063],[-63.152984,-64.302667],[-63.15099,-64.308282],[-63.192616,-64.31113],[-63.161936,-64.325128],[-63.155263,-64.326349],[-63.173085,-64.335138],[-63.278635,-64.356215],[-63.302154,-64.364028],[-63.319244,-64.376642],[-63.3072,-64.379978],[-63.266184,-64.380548],[-63.271311,-64.385024],[-63.286122,-64.389337],[-63.293324,-64.392755],[-63.298492,-64.398207],[-63.304026,-64.410089],[-63.308502,-64.416111],[-63.319569,-64.42311],[-63.359934,-64.436212],[-63.331695,-64.445082],[-63.303538,-64.44492],[-63.275787,-64.437433],[-63.21996,-64.409763],[-63.189036,-64.39837],[-63.169586,-64.395766],[-63.111195,-64.398045],[-63.142445,-64.408461],[-63.223541,-64.457452],[-63.242299,-64.478204],[-63.219879,-64.478285],[-63.198394,-64.476007],[-63.12206,-64.455987],[-63.103586,-64.453709],[-63.089589,-64.458591],[-63.105133,-64.476821],[-63.12914,-64.492852],[-63.235178,-64.541192],[-63.284983,-64.553888],[-63.298736,-64.563572],[-63.2801,-64.576837],[-63.270375,-64.581231],[-63.256947,-64.583591],[-63.130767,-64.577569],[-63.115834,-64.580662],[-63.124135,-64.571466],[-63.127431,-64.566502],[-63.129872,-64.560724],[-63.076039,-64.545587],[-63.029652,-64.521173],[-63.014068,-64.517185],[-62.995473,-64.515883],[-63.015452,-64.531834],[-62.975819,-64.536391],[-62.966217,-64.534601],[-62.929799,-64.520278],[-62.920888,-64.518731],[-62.913319,-64.519138],[-62.906443,-64.521173],[-62.906402,-64.521173],[-62.900258,-64.524509],[-62.842275,-64.563653],[-62.829823,-64.569757],[-62.856557,-64.582208],[-63.023183,-64.617934],[-63.045766,-64.618341],[-63.056508,-64.620782],[-63.064117,-64.625095],[-63.077382,-64.636407],[-63.084584,-64.640802],[-63.091908,-64.642836],[-63.09789,-64.643162],[-63.111562,-64.641697],[-63.153554,-64.643813],[-63.176015,-64.649184],[-63.191558,-64.659438],[-63.193715,-64.664483],[-63.194895,-64.676365],[-63.197174,-64.682061],[-63.201527,-64.68613],[-63.250844,-64.710382],[-63.284006,-64.720392],[-63.288319,-64.72324],[-63.302887,-64.739353],[-63.318512,-64.750421],[-63.335805,-64.758966],[-63.351715,-64.763604],[-63.374257,-64.767511],[-63.396148,-64.767673],[-63.410146,-64.760837],[-63.412587,-64.749607],[-63.40925,-64.74033],[-63.410024,-64.732599],[-63.424672,-64.725844],[-63.444,-64.722589],[-63.463694,-64.722263],[-63.558258,-64.732192],[-63.572987,-64.741306],[-63.556223,-64.745782],[-63.523997,-64.750665],[-63.508534,-64.759861],[-63.530019,-64.761814],[-63.550608,-64.76686],[-63.570546,-64.774509],[-63.650706,-64.816502],[-63.660268,-64.826267],[-63.665639,-64.847752],[-63.682118,-64.853204],[-63.703521,-64.849379],[-63.740875,-64.838637],[-63.748118,-64.835056],[-63.754018,-64.828383],[-63.758127,-64.81878],[-63.759511,-64.811293],[-63.762318,-64.80462],[-63.77066,-64.797621],[-63.778554,-64.793878],[-63.804799,-64.786879],[-63.983795,-64.772068],[-64.015126,-64.775486],[-64.029164,-64.774509],[-64.043691,-64.767267],[-64.089996,-64.735935],[-64.129709,-64.716404],[-64.282094,-64.709893],[-64.291127,-64.707452],[-64.297597,-64.704197],[-64.301096,-64.699884],[-64.301096,-64.694431],[-64.295033,-64.688409],[-64.28482,-64.687188],[-64.265289,-64.689142],[-64.250071,-64.685805],[-64.242665,-64.677992],[-64.236806,-64.668064],[-64.226308,-64.65781],[-64.216135,-64.653985],[-64.205881,-64.652276],[-64.196278,-64.649021],[-64.188547,-64.639907],[-64.187245,-64.629327],[-64.188629,-64.612481],[-64.192698,-64.597426],[-64.199534,-64.592055],[-64.155995,-64.579278],[-64.141916,-64.577732],[-64.085927,-64.555597],[-63.902943,-64.534763],[-63.855295,-64.502862],[-63.8662,-64.495538],[-63.936147,-64.465753],[-63.930816,-64.459405],[-63.922434,-64.457452],[-63.912831,-64.456801],[-63.904124,-64.454848],[-63.870513,-64.438084],[-63.856516,-64.435642],[-63.720855,-64.436212],[-63.687734,-64.429783],[-63.65746,-64.417657],[-63.676869,-64.401951],[-63.681304,-64.399835],[-63.66804,-64.387872],[-63.663157,-64.384454],[-63.656809,-64.382582],[-63.64981,-64.381606],[-63.6433,-64.379978],[-63.638092,-64.375584],[-63.639027,-64.362726],[-63.6551,-64.35475],[-63.690989,-64.349298],[-63.687978,-64.345961],[-63.659779,-64.327325],[-63.576283,-64.316583],[-63.56371,-64.313246],[-63.554433,-64.307224],[-63.549224,-64.293715],[-63.556142,-64.284275],[-63.567291,-64.275567],[-63.574941,-64.265232],[-63.360748,-64.257582],[-63.364735,-64.248468],[-63.360951,-64.242852],[-63.352528,-64.24033],[-63.342885,-64.240004],[-63.334462,-64.242283],[-63.313222,-64.254978],[-63.284779,-64.261407],[-63.275706,-64.264907],[-63.272532,-64.267348],[-63.26769,-64.27337],[-63.263539,-64.275811]]],[[[-56.714467,-64.306573],[-56.808827,-64.322686],[-56.898549,-64.317315],[-56.880238,-64.310317],[-56.863922,-64.302016],[-56.852773,-64.291925],[-56.849477,-64.279962],[-56.714345,-64.235121],[-56.635243,-64.221612],[-56.582509,-64.235121],[-56.633209,-64.27516],[-56.714467,-64.306573]]],[[[-61.659088,-64.171563],[-61.700429,-64.172459],[-61.715688,-64.170017],[-61.733062,-64.164809],[-61.749135,-64.157322],[-61.760406,-64.147149],[-61.753896,-64.138604],[-61.753733,-64.130548],[-61.755238,-64.122654],[-61.753733,-64.11419],[-61.747182,-64.108087],[-61.736195,-64.101821],[-61.724436,-64.097101],[-61.715688,-64.095147],[-61.689565,-64.102716],[-61.676137,-64.122654],[-61.659088,-64.171563]]],[[[-62.266916,-64.099298],[-62.008941,-64.141697],[-62.026031,-64.155206],[-62.053049,-64.160089],[-62.131703,-64.162286],[-62.186025,-64.169854],[-62.211497,-64.178399],[-62.194814,-64.18963],[-62.171864,-64.193536],[-62.103261,-64.190606],[-62.096059,-64.192071],[-62.091379,-64.195571],[-62.085032,-64.201755],[-62.08019,-64.207696],[-62.080312,-64.210138],[-62.05663,-64.212091],[-62.04898,-64.214451],[-62.060374,-64.227309],[-62.167836,-64.286554],[-62.189605,-64.290785],[-62.201039,-64.294366],[-62.207509,-64.300551],[-62.20641,-64.30755],[-62.193959,-64.320082],[-62.191029,-64.32822],[-62.194081,-64.336196],[-62.200347,-64.342706],[-62.205312,-64.349054],[-62.204335,-64.356541],[-62.197825,-64.360121],[-62.187123,-64.361749],[-62.16747,-64.362074],[-62.240631,-64.393162],[-62.249013,-64.394301],[-62.258046,-64.393162],[-62.275461,-64.386],[-62.283518,-64.383884],[-62.294301,-64.383722],[-62.335805,-64.394138],[-62.330963,-64.396254],[-62.324534,-64.402276],[-62.318756,-64.409275],[-62.316151,-64.414483],[-62.317209,-64.421645],[-62.320912,-64.426446],[-62.326487,-64.429946],[-62.354848,-64.443455],[-62.377756,-64.463474],[-62.385487,-64.465997],[-62.427317,-64.464614],[-62.442006,-64.466404],[-62.454172,-64.472263],[-62.45641,-64.476495],[-62.453603,-64.48447],[-62.455312,-64.488702],[-62.476674,-64.495212],[-62.494252,-64.482843],[-62.499908,-64.46559],[-62.485422,-64.457615],[-62.515736,-64.45436],[-62.531117,-64.454848],[-62.544342,-64.460219],[-62.55191,-64.469496],[-62.551178,-64.477634],[-62.548085,-64.485528],[-62.548451,-64.494724],[-62.556508,-64.502618],[-62.587514,-64.519627],[-62.5985,-64.523533],[-62.613637,-64.522719],[-62.628529,-64.517267],[-62.656565,-64.503025],[-62.689768,-64.498712],[-62.72643,-64.501153],[-62.761098,-64.49977],[-62.788482,-64.483819],[-62.761952,-64.468845],[-62.730295,-64.468032],[-62.697174,-64.472345],[-62.666371,-64.472263],[-62.603383,-64.452325],[-62.585601,-64.453709],[-62.63679,-64.44199],[-62.660797,-64.431736],[-62.673695,-64.410089],[-62.673736,-64.402032],[-62.670969,-64.396417],[-62.665842,-64.392185],[-62.658681,-64.38836],[-62.653798,-64.386651],[-62.64269,-64.384373],[-62.637278,-64.38242],[-62.632965,-64.37949],[-62.625071,-64.372166],[-62.620717,-64.368829],[-62.589833,-64.35768],[-62.580719,-64.350518],[-62.575836,-64.34238],[-62.570546,-64.326349],[-62.5655,-64.318617],[-62.55602,-64.311456],[-62.522288,-64.297052],[-62.509999,-64.289158],[-62.487416,-64.269789],[-62.469309,-64.248468],[-62.463775,-64.236749],[-62.463612,-64.224705],[-62.471344,-64.212823],[-62.483022,-64.206801],[-62.510162,-64.204848],[-62.522857,-64.202407],[-62.527211,-64.199477],[-62.541371,-64.185235],[-62.546539,-64.18255],[-62.557525,-64.178643],[-62.562489,-64.17547],[-62.5655,-64.170587],[-62.573883,-64.152276],[-62.609486,-64.141046],[-62.623402,-64.130548],[-62.616689,-64.117446],[-62.609486,-64.115411],[-62.584299,-64.118748],[-62.564443,-64.115981],[-62.515696,-64.102227],[-62.488108,-64.088962],[-62.49474,-64.085707],[-62.528391,-64.063409],[-62.562164,-64.057712],[-62.572092,-64.052423],[-62.560129,-64.045994],[-62.496409,-64.032322],[-62.489858,-64.028578],[-62.478505,-64.016534],[-62.478179,-64.014581],[-62.371327,-64.009942],[-62.314687,-64.016046],[-62.26537,-64.032485],[-62.273061,-64.038507],[-62.279856,-64.057387],[-62.282826,-64.079197],[-62.279449,-64.093683],[-62.266916,-64.099298]]],[[[-61.961822,-64.085138],[-61.982533,-64.090916],[-62.008656,-64.09059],[-62.034901,-64.086033],[-62.055735,-64.078302],[-62.064036,-64.070977],[-62.065419,-64.062433],[-62.060658,-64.053888],[-62.050649,-64.046645],[-62.044667,-64.045017],[-62.032867,-64.044854],[-62.027089,-64.043064],[-62.023549,-64.039646],[-62.021555,-64.035577],[-62.019114,-64.031671],[-62.013661,-64.028904],[-62.020619,-64.019464],[-62.023549,-64.016697],[-62.009145,-64.011814],[-61.965199,-64.00449],[-61.957346,-64.002211],[-61.936269,-63.991306],[-61.924916,-63.986505],[-61.913686,-63.984633],[-61.879547,-63.984552],[-61.833485,-63.978204],[-61.836008,-63.97503],[-61.839711,-63.96795],[-61.842275,-63.964532],[-61.829213,-63.959731],[-61.813344,-63.960382],[-61.797353,-63.964288],[-61.784291,-63.969496],[-61.798248,-63.976251],[-61.834299,-64.002048],[-61.846588,-64.006768],[-61.878651,-64.013604],[-61.887603,-64.017755],[-61.912953,-64.03867],[-61.920033,-64.049981],[-61.906728,-64.054864],[-61.92455,-64.057794],[-61.936838,-64.065199],[-61.961822,-64.085138]]],[[[-57.8072,-63.818129],[-57.770497,-63.879978],[-57.755442,-63.896091],[-57.801829,-63.903416],[-57.815785,-63.909926],[-57.823638,-63.91725],[-57.823313,-63.923517],[-57.816518,-63.929376],[-57.805409,-63.936212],[-57.812978,-63.943129],[-57.823598,-63.949151],[-57.887929,-63.975681],[-57.834788,-63.99391],[-57.818227,-64.004164],[-57.825754,-64.011977],[-57.830637,-64.016046],[-57.834381,-64.017348],[-57.825063,-64.021661],[-57.817942,-64.029229],[-57.814768,-64.03867],[-57.817291,-64.048761],[-57.826527,-64.056085],[-57.853098,-64.06227],[-57.864369,-64.066583],[-57.829579,-64.074802],[-57.791371,-64.079278],[-57.753082,-64.079685],[-57.717681,-64.075372],[-57.744374,-64.029962],[-57.728098,-64.019464],[-57.625234,-63.982354],[-57.542388,-63.939223],[-57.49352,-63.926202],[-57.499379,-63.928806],[-57.505605,-63.934177],[-57.515696,-63.94492],[-57.507436,-63.953546],[-57.496734,-63.959893],[-57.473459,-63.96852],[-57.504791,-63.983657],[-57.511138,-63.988214],[-57.513824,-63.995212],[-57.51179,-63.999933],[-57.509145,-64.004164],[-57.509633,-64.009535],[-57.513661,-64.013604],[-57.520009,-64.01686],[-57.532582,-64.021417],[-57.52123,-64.020929],[-57.155385,-64.085138],[-57.189809,-64.093845],[-57.195465,-64.096368],[-57.191396,-64.103774],[-57.183461,-64.108575],[-57.17394,-64.111261],[-57.164703,-64.112481],[-57.196034,-64.125095],[-57.229726,-64.129002],[-57.331044,-64.125746],[-57.363759,-64.12949],[-57.372874,-64.132745],[-57.393707,-64.143324],[-57.40038,-64.145603],[-57.343414,-64.146742],[-57.326243,-64.150974],[-57.319976,-64.158136],[-57.307362,-64.159112],[-57.293284,-64.158624],[-57.282786,-64.161716],[-57.316274,-64.179457],[-57.325592,-64.181817],[-57.301259,-64.182387],[-57.256093,-64.177341],[-57.213124,-64.167657],[-57.149566,-64.163995],[-57.137359,-64.169366],[-57.121409,-64.159601],[-57.09203,-64.153985],[-57.070221,-64.159601],[-57.07726,-64.18377],[-57.093129,-64.197686],[-57.113026,-64.206964],[-57.203969,-64.222263],[-57.228424,-64.221612],[-57.252024,-64.215997],[-57.242747,-64.225274],[-57.252553,-64.234796],[-57.264475,-64.24033],[-57.277455,-64.242608],[-57.291086,-64.242771],[-57.308217,-64.240818],[-57.392201,-64.218032],[-57.423329,-64.213637],[-57.453603,-64.217543],[-57.484486,-64.23268],[-57.47643,-64.23211],[-57.346669,-64.251397],[-57.325754,-64.258884],[-57.30663,-64.269789],[-57.370432,-64.278009],[-57.512318,-64.255548],[-57.564565,-64.287205],[-57.551178,-64.29225],[-57.386708,-64.305841],[-57.368398,-64.310642],[-57.35143,-64.317804],[-57.29955,-64.346775],[-57.290842,-64.354181],[-57.284291,-64.361912],[-57.295522,-64.371189],[-57.384104,-64.388767],[-57.414174,-64.388116],[-57.430491,-64.385919],[-57.44225,-64.380792],[-57.447581,-64.372328],[-57.449208,-64.353285],[-57.454579,-64.345473],[-57.467397,-64.339939],[-57.483388,-64.337579],[-57.499664,-64.338067],[-57.513336,-64.340997],[-57.495839,-64.355239],[-57.487131,-64.366795],[-57.492421,-64.373793],[-57.516347,-64.375258],[-57.516225,-64.371026],[-57.524526,-64.361261],[-57.535227,-64.35117],[-57.542307,-64.345636],[-57.555776,-64.341485],[-57.570953,-64.3388],[-57.586415,-64.337986],[-57.600453,-64.339288],[-57.572174,-64.356866],[-57.587554,-64.356541],[-57.600697,-64.353692],[-57.639027,-64.335219],[-57.651357,-64.331476],[-57.664052,-64.331231],[-57.67748,-64.336033],[-57.657704,-64.357354],[-57.652333,-64.369399],[-57.657541,-64.383071],[-57.672841,-64.393162],[-57.691029,-64.39422],[-57.709788,-64.392348],[-57.72704,-64.39365],[-57.727528,-64.381117],[-57.726308,-64.367283],[-57.723215,-64.353285],[-57.718007,-64.341729],[-57.706532,-64.330743],[-57.686513,-64.316013],[-57.666168,-64.303969],[-57.654205,-64.301528],[-57.685292,-64.289321],[-57.719797,-64.29518],[-57.754506,-64.307875],[-57.786,-64.315606],[-57.802968,-64.312595],[-57.837636,-64.299086],[-57.855214,-64.299493],[-57.852528,-64.303888],[-57.84911,-64.307224],[-57.827626,-64.323012],[-57.824574,-64.327732],[-57.823638,-64.333917],[-57.825836,-64.347914],[-57.825266,-64.354669],[-57.821523,-64.3624],[-57.81607,-64.369561],[-57.803131,-64.38128],[-57.817209,-64.391046],[-57.822743,-64.39658],[-57.82665,-64.405043],[-57.839467,-64.401544],[-57.853098,-64.403253],[-57.859975,-64.408624],[-57.852528,-64.416681],[-57.86559,-64.419529],[-57.901479,-64.417169],[-57.955556,-64.404229],[-57.967519,-64.398533],[-57.956532,-64.388442],[-57.951527,-64.382582],[-57.947987,-64.376153],[-57.946889,-64.370294],[-57.94579,-64.350681],[-57.947011,-64.346612],[-57.925933,-64.344496],[-57.915395,-64.342218],[-57.90685,-64.33766],[-57.933095,-64.322849],[-57.962392,-64.316013],[-58.048818,-64.317966],[-58.06078,-64.321384],[-58.069081,-64.329034],[-58.071034,-64.338637],[-58.069325,-64.360121],[-58.073638,-64.369806],[-58.088043,-64.381036],[-58.106923,-64.389907],[-58.126943,-64.394708],[-58.144602,-64.393813],[-58.133209,-64.381443],[-58.103139,-64.362726],[-58.08967,-64.351983],[-58.114329,-64.34881],[-58.13386,-64.349542],[-58.152496,-64.356134],[-58.183827,-64.376235],[-58.193471,-64.381036],[-58.203765,-64.383722],[-58.214996,-64.384535],[-58.230336,-64.380141],[-58.232289,-64.371677],[-58.228993,-64.362888],[-58.228505,-64.358087],[-58.313303,-64.321384],[-58.298004,-64.30755],[-58.278188,-64.298435],[-58.236399,-64.28867],[-58.180531,-64.281996],[-58.164622,-64.283624],[-58.160146,-64.282647],[-58.155873,-64.279229],[-58.154693,-64.276056],[-58.15453,-64.273045],[-58.152943,-64.269789],[-58.137847,-64.262791],[-58.075836,-64.260024],[-58.041982,-64.25506],[-58.025787,-64.249119],[-58.012685,-64.239028],[-58.05191,-64.228692],[-58.142934,-64.221124],[-58.183217,-64.213067],[-58.173655,-64.188165],[-58.135243,-64.11891],[-58.131093,-64.102227],[-58.195221,-64.086602],[-58.256744,-64.100356],[-58.313303,-64.124282],[-58.361928,-64.139093],[-58.420155,-64.13714],[-58.460764,-64.12949],[-58.457672,-64.127537],[-58.443959,-64.113539],[-58.437082,-64.110528],[-58.414866,-64.106052],[-58.453847,-64.089451],[-58.460357,-64.085707],[-58.451243,-64.069513],[-58.434316,-64.060642],[-58.414215,-64.053806],[-58.395863,-64.044041],[-58.382558,-64.028904],[-58.373443,-64.013767],[-58.362172,-64.000584],[-58.341786,-63.991795],[-58.312001,-63.990981],[-58.299631,-63.987726],[-58.296986,-63.977472],[-58.303131,-63.971612],[-58.332631,-63.954278],[-58.303944,-63.924981],[-58.25768,-63.906834],[-58.166331,-63.892755],[-58.141469,-63.893813],[-58.128285,-63.897882],[-58.118642,-63.898045],[-58.103912,-63.887302],[-58.103342,-63.881606],[-58.109039,-63.876642],[-58.109039,-63.868341],[-58.091176,-63.85296],[-58.076283,-63.846775],[-58.023346,-63.836847],[-57.952626,-63.859959],[-57.947011,-63.853611],[-57.943186,-63.846856],[-57.941965,-63.839776],[-57.944488,-63.83172],[-57.949452,-63.827325],[-57.968129,-63.816095],[-57.973541,-63.81463],[-57.951812,-63.805108],[-57.927235,-63.80047],[-57.794667,-63.791436],[-57.793324,-63.793634],[-57.821523,-63.809177],[-57.827952,-63.809747],[-57.823354,-63.812758],[-57.812164,-63.815525],[-57.8072,-63.818129]]],[[[-57.402496,-63.839125],[-57.367299,-63.841974],[-57.223012,-63.81113],[-57.184885,-63.809177],[-57.171132,-63.810805],[-57.143422,-63.819757],[-57.120595,-63.830255],[-57.089101,-63.839451],[-57.095693,-63.845392],[-57.107289,-63.847833],[-57.148997,-63.851007],[-57.154408,-63.853123],[-57.160064,-63.857192],[-57.162221,-63.86061],[-57.163319,-63.864353],[-57.170562,-63.876072],[-57.172922,-63.877537],[-57.179555,-63.88006],[-57.200673,-63.884861],[-57.243967,-63.902276],[-57.236969,-63.883396],[-57.236806,-63.873305],[-57.242909,-63.866876],[-57.249664,-63.866388],[-57.310048,-63.870782],[-57.352895,-63.883966],[-57.365956,-63.884861],[-57.379303,-63.883722],[-57.487131,-63.854587],[-57.501088,-63.858575],[-57.513743,-63.875177],[-57.532338,-63.866795],[-57.547678,-63.864028],[-57.55191,-63.862726],[-57.558217,-63.858982],[-57.562571,-63.855645],[-57.567209,-63.853204],[-57.57433,-63.851739],[-57.614613,-63.854913],[-57.628529,-63.854099],[-57.636098,-63.852146],[-57.643056,-63.849379],[-57.69518,-63.816664],[-57.647694,-63.804783],[-57.369985,-63.788263],[-57.365956,-63.788832],[-57.361969,-63.791274],[-57.358144,-63.798761],[-57.357249,-63.807061],[-57.354807,-63.815118],[-57.346181,-63.821466],[-57.389801,-63.833103],[-57.402496,-63.839125]]],[[[-61.653391,-63.803399],[-61.684193,-63.807875],[-61.684438,-63.803969],[-61.693227,-63.78045],[-61.699859,-63.772149],[-61.708241,-63.764093],[-61.726064,-63.750909],[-61.745961,-63.741795],[-61.808258,-63.728936],[-61.78482,-63.722833],[-61.636383,-63.72617],[-61.621409,-63.732354],[-61.613759,-63.763604],[-61.627187,-63.787856],[-61.653391,-63.803399]]],[[[-60.563629,-63.702081],[-60.613393,-63.727472],[-60.614329,-63.736017],[-60.624094,-63.740492],[-60.645497,-63.745375],[-60.656484,-63.755792],[-60.66983,-63.782892],[-60.679596,-63.794854],[-60.695465,-63.805759],[-60.698842,-63.809666],[-60.693349,-63.825128],[-60.671742,-63.841729],[-60.645823,-63.854587],[-60.627919,-63.858575],[-60.680084,-63.872817],[-60.728871,-63.894708],[-60.73998,-63.903904],[-60.744781,-63.904962],[-60.750722,-63.904067],[-60.752553,-63.901788],[-60.753326,-63.898858],[-60.755971,-63.896254],[-60.768219,-63.891697],[-60.779693,-63.890558],[-60.790598,-63.893162],[-60.801137,-63.899672],[-60.815541,-63.912774],[-60.821156,-63.913507],[-60.883534,-63.903497],[-60.899037,-63.896905],[-60.870229,-63.886],[-60.864613,-63.879002],[-60.86498,-63.870864],[-60.870351,-63.864841],[-60.878245,-63.86061],[-60.886586,-63.858575],[-60.910797,-63.856134],[-60.968088,-63.85947],[-60.984527,-63.85589],[-60.984527,-63.842462],[-60.9794,-63.839614],[-60.972076,-63.839776],[-60.958608,-63.84295],[-60.923085,-63.847263],[-60.84732,-63.846856],[-60.807769,-63.840427],[-60.787465,-63.834731],[-60.777455,-63.830011],[-60.770253,-63.823175],[-60.766672,-63.814548],[-60.767974,-63.808526],[-60.77184,-63.803399],[-60.77538,-63.79697],[-60.790761,-63.790948],[-60.802968,-63.781671],[-60.807525,-63.769464],[-60.799713,-63.75449],[-60.790273,-63.751397],[-60.713287,-63.751072],[-60.699086,-63.746352],[-60.685862,-63.734959],[-60.68456,-63.73268],[-60.682485,-63.730076],[-60.676829,-63.726739],[-60.665151,-63.722263],[-60.691274,-63.71502],[-60.756907,-63.722833],[-60.768788,-63.721856],[-60.778188,-63.717462],[-60.771352,-63.709731],[-60.772857,-63.700128],[-60.779408,-63.690118],[-60.787262,-63.681817],[-60.791412,-63.679376],[-60.802561,-63.674574],[-60.805328,-63.671319],[-60.802235,-63.665785],[-60.791982,-63.666925],[-60.756256,-63.679946],[-60.724517,-63.687677],[-60.591054,-63.690037],[-60.552846,-63.699314],[-60.563629,-63.702081]]],[[[-57.487416,-63.696059],[-57.511545,-63.698337],[-57.530873,-63.693129],[-57.53307,-63.691502],[-57.535146,-63.689142],[-57.53893,-63.683201],[-57.53893,-63.683119],[-57.552317,-63.655938],[-57.560862,-63.645685],[-57.572133,-63.642755],[-57.486318,-63.623712],[-57.440419,-63.619236],[-57.402089,-63.628025],[-57.412668,-63.632501],[-57.446401,-63.678155],[-57.463857,-63.688653],[-57.487416,-63.696059]]],[[[-56.57787,-63.611017],[-56.64802,-63.623305],[-56.689198,-63.592869],[-56.662831,-63.567478],[-56.602691,-63.557306],[-56.530426,-63.558282],[-56.467926,-63.565688],[-56.57787,-63.611017]]],[[[-59.794179,-63.598403],[-59.815338,-63.600844],[-59.834706,-63.600356],[-59.853179,-63.59531],[-59.871571,-63.583754],[-59.87442,-63.572686],[-59.86205,-63.563572],[-59.837514,-63.55462],[-59.838612,-63.553399],[-59.841664,-63.546482],[-59.842356,-63.544203],[-59.817209,-63.546482],[-59.801178,-63.551528],[-59.797353,-63.553399],[-59.794057,-63.556085],[-59.792836,-63.559747],[-59.79483,-63.566502],[-59.79426,-63.569594],[-59.776031,-63.589939],[-59.777943,-63.594822],[-59.794179,-63.598403]]],[[[-55.932362,-63.57936],[-55.964915,-63.581476],[-56.157786,-63.5263],[-56.233795,-63.484633],[-56.240468,-63.478692],[-56.240142,-63.472589],[-56.236724,-63.468845],[-56.232411,-63.46559],[-56.229482,-63.461521],[-56.219716,-63.443455],[-56.206654,-63.436212],[-56.012807,-63.41131],[-55.806386,-63.407403],[-55.746978,-63.428399],[-55.719594,-63.475356],[-55.719106,-63.499119],[-55.923736,-63.549249],[-55.932362,-63.57936]]],[[[-62.01179,-63.345147],[-62.083079,-63.352634],[-62.277496,-63.352309],[-62.267161,-63.34881],[-62.256174,-63.340265],[-62.246897,-63.32936],[-62.241567,-63.319268],[-62.240224,-63.303888],[-62.2447,-63.292169],[-62.253407,-63.282403],[-62.264312,-63.273126],[-62.255523,-63.271905],[-62.21109,-63.255466],[-62.210072,-63.251235],[-62.213612,-63.244561],[-62.213775,-63.238865],[-62.202707,-63.237074],[-62.187001,-63.240167],[-62.154124,-63.250095],[-62.035512,-63.258071],[-62.019521,-63.261651],[-62.012278,-63.264825],[-62.0065,-63.269789],[-62.002797,-63.277114],[-61.999094,-63.291599],[-61.993886,-63.298517],[-61.98526,-63.303318],[-61.973704,-63.307224],[-61.951731,-63.311782],[-61.975738,-63.333591],[-62.01179,-63.345147]]],[[[-57.029408,-63.28102],[-57.036204,-63.347263],[-57.027821,-63.350356],[-57.011464,-63.35947],[-57.002919,-63.362237],[-57.016347,-63.373956],[-57.027496,-63.386895],[-57.047597,-63.415623],[-56.96581,-63.395278],[-56.944407,-63.398533],[-56.928863,-63.42018],[-56.941803,-63.438897],[-56.967763,-63.452813],[-56.991322,-63.460382],[-56.980051,-63.470636],[-56.968861,-63.473565],[-56.957509,-63.474786],[-56.945709,-63.47975],[-56.933949,-63.490818],[-56.925526,-63.501072],[-56.916086,-63.509861],[-56.901194,-63.516371],[-56.824371,-63.53102],[-56.799631,-63.543064],[-56.776031,-63.563084],[-56.768137,-63.58294],[-56.775787,-63.603774],[-56.799062,-63.626235],[-56.821604,-63.638116],[-56.847808,-63.643731],[-56.874867,-63.642673],[-56.899403,-63.634535],[-56.945424,-63.61297],[-56.968373,-63.611423],[-57.020375,-63.632989],[-57.095937,-63.651788],[-57.12442,-63.654474],[-57.146474,-63.643243],[-57.163319,-63.622491],[-57.175526,-63.596856],[-57.169993,-63.579767],[-57.146637,-63.567071],[-57.118072,-63.559747],[-57.096547,-63.558526],[-57.104156,-63.546482],[-57.114613,-63.537042],[-57.126943,-63.52988],[-57.140289,-63.524509],[-57.136586,-63.519627],[-57.130686,-63.508233],[-57.12678,-63.503513],[-57.145131,-63.498712],[-57.177317,-63.476821],[-57.201283,-63.473077],[-57.29426,-63.481378],[-57.343007,-63.472345],[-57.394683,-63.454197],[-57.445383,-63.444431],[-57.491038,-63.460056],[-57.457916,-63.492364],[-57.450999,-63.510837],[-57.458404,-63.533787],[-57.386098,-63.541681],[-57.420725,-63.561944],[-57.482167,-63.565525],[-57.686391,-63.552504],[-57.715566,-63.554132],[-57.728831,-63.566664],[-57.74059,-63.580743],[-57.765614,-63.587009],[-57.72643,-63.598728],[-57.6044,-63.602472],[-57.61852,-63.606134],[-57.655751,-63.625095],[-57.673248,-63.630466],[-57.699696,-63.630792],[-57.708079,-63.632501],[-57.715972,-63.636651],[-57.727691,-63.647556],[-57.733998,-63.651951],[-57.750885,-63.656345],[-57.766916,-63.654474],[-57.783315,-63.65016],[-57.801829,-63.647556],[-57.842926,-63.648207],[-57.864166,-63.651788],[-57.881337,-63.659438],[-57.877024,-63.661065],[-57.868235,-63.665297],[-57.863678,-63.666762],[-57.865387,-63.669366],[-57.886708,-63.681899],[-57.895375,-63.68377],[-57.905141,-63.684666],[-57.924062,-63.684015],[-57.991119,-63.670994],[-58.033599,-63.673272],[-58.077056,-63.662856],[-58.097727,-63.663995],[-58.117177,-63.674493],[-58.154164,-63.705011],[-58.175282,-63.716404],[-58.29247,-63.753595],[-58.329213,-63.776544],[-58.381215,-63.830662],[-58.400461,-63.842218],[-58.419789,-63.843438],[-58.439565,-63.840509],[-58.457265,-63.842543],[-58.470693,-63.858657],[-58.465159,-63.861586],[-58.454701,-63.869399],[-58.449086,-63.872003],[-58.499135,-63.910333],[-58.619008,-63.944757],[-58.659088,-63.964044],[-58.704701,-63.994806],[-58.733306,-64.031427],[-58.723053,-64.067641],[-58.707387,-64.08766],[-58.713287,-64.097752],[-58.75178,-64.114679],[-58.771311,-64.131524],[-58.784413,-64.147556],[-58.806508,-64.186944],[-58.80899,-64.195408],[-58.810902,-64.205743],[-58.813832,-64.214776],[-58.819895,-64.218683],[-58.874989,-64.218357],[-58.896718,-64.214044],[-58.939198,-64.200128],[-59.033437,-64.188897],[-59.054799,-64.19199],[-59.062123,-64.198012],[-59.072662,-64.214451],[-59.081654,-64.217869],[-59.093861,-64.220636],[-59.1079,-64.227309],[-59.116282,-64.236505],[-59.111643,-64.246515],[-59.088979,-64.25628],[-58.769928,-64.282403],[-58.754547,-64.29339],[-58.748687,-64.316502],[-58.761383,-64.332208],[-58.791127,-64.338637],[-58.847524,-64.338474],[-58.873402,-64.341567],[-58.922597,-64.357354],[-58.949452,-64.357354],[-58.933176,-64.380629],[-58.905873,-64.400079],[-58.874745,-64.412856],[-58.810658,-64.417413],[-58.779897,-64.431736],[-58.762034,-64.458673],[-58.764027,-64.49863],[-58.783925,-64.527602],[-58.815785,-64.542739],[-58.889882,-64.551528],[-58.917063,-64.546563],[-58.954742,-64.532485],[-58.990834,-64.514337],[-59.013051,-64.496759],[-58.992747,-64.483575],[-58.986073,-64.463474],[-58.993031,-64.443455],[-59.013661,-64.430434],[-59.036244,-64.430271],[-59.171213,-64.459161],[-59.223215,-64.461033],[-59.275299,-64.454848],[-59.330881,-64.440037],[-59.367502,-64.411554],[-59.417633,-64.330824],[-59.463938,-64.310642],[-59.487782,-64.311619],[-59.516469,-64.317153],[-59.543935,-64.32643],[-59.563791,-64.3388],[-59.607533,-64.378595],[-59.632395,-64.39072],[-59.66218,-64.391534],[-59.649281,-64.406915],[-59.622182,-64.431085],[-59.610666,-64.448012],[-59.611562,-64.466241],[-59.640981,-64.502374],[-59.649241,-64.520278],[-59.624338,-64.513442],[-59.60436,-64.510675],[-59.585561,-64.514255],[-59.563791,-64.526625],[-59.550893,-64.544692],[-59.555409,-64.562595],[-59.57079,-64.577813],[-59.591054,-64.587986],[-59.63561,-64.594334],[-59.679921,-64.588556],[-59.76891,-64.56699],[-59.759145,-64.55462],[-59.755442,-64.542169],[-59.749094,-64.496189],[-59.754221,-64.436293],[-59.770172,-64.424737],[-59.789866,-64.419854],[-59.8308,-64.417169],[-59.917592,-64.393487],[-59.957509,-64.387465],[-60.007314,-64.39837],[-59.989125,-64.428481],[-59.987213,-64.44199],[-59.995839,-64.456476],[-60.009511,-64.468032],[-60.024526,-64.476251],[-60.040761,-64.481703],[-60.182281,-64.51336],[-60.223866,-64.515883],[-60.234486,-64.520685],[-60.245717,-64.536065],[-60.252756,-64.552911],[-60.261952,-64.566095],[-60.279286,-64.570733],[-60.346832,-64.537367],[-60.364166,-64.531427],[-60.421986,-64.524835],[-60.387766,-64.59295],[-60.375966,-64.607192],[-60.362864,-64.617608],[-60.35554,-64.628188],[-60.360911,-64.64365],[-60.374623,-64.648045],[-60.39745,-64.646173],[-60.437245,-64.638767],[-60.456654,-64.639093],[-60.468902,-64.645196],[-60.480336,-64.654392],[-60.497182,-64.663995],[-60.636301,-64.696547],[-60.665883,-64.708673],[-60.702626,-64.731541],[-60.723256,-64.758071],[-60.704945,-64.78102],[-60.735178,-64.810968],[-60.819569,-64.84352],[-60.856068,-64.863539],[-61.00829,-64.987481],[-61.051747,-65.010919],[-61.097524,-65.008722],[-61.145131,-64.998793],[-61.194325,-64.99977],[-61.381215,-65.053318],[-61.390004,-65.05169],[-61.398346,-65.045994],[-61.422922,-65.021661],[-61.428049,-65.014744],[-61.435414,-65.008884],[-61.518463,-64.979099],[-61.541412,-64.974216],[-61.728749,-64.968683],[-61.750315,-64.975356],[-61.756215,-64.992934],[-61.744456,-65.073907],[-61.739369,-65.087823],[-61.732655,-65.092543],[-61.7235,-65.094903],[-61.693105,-65.112563],[-61.674631,-65.119073],[-61.634389,-65.125584],[-61.583485,-65.125095],[-61.568471,-65.132094],[-61.555776,-65.157892],[-61.608144,-65.169854],[-61.62621,-65.17018],[-61.604482,-65.19964],[-61.606435,-65.224786],[-61.627553,-65.241388],[-61.662994,-65.245375],[-61.733551,-65.240981],[-61.8037,-65.246759],[-61.830393,-65.241876],[-61.93163,-65.193292],[-61.961171,-65.191339],[-61.996571,-65.199395],[-62.030588,-65.213311],[-62.055735,-65.229262],[-62.021718,-65.249119],[-62.038889,-65.261651],[-62.125071,-65.292739],[-62.148752,-65.298435],[-62.198313,-65.304457],[-62.187327,-65.330336],[-62.17512,-65.344008],[-62.157338,-65.350274],[-62.032094,-65.372247],[-62.045766,-65.383477],[-62.058583,-65.389907],[-62.072418,-65.392836],[-62.089467,-65.393487],[-62.095448,-65.40309],[-62.098256,-65.4249],[-62.097768,-65.448175],[-62.094309,-65.462498],[-62.067372,-65.477309],[-61.990834,-65.48504],[-61.960846,-65.493585],[-61.950063,-65.504978],[-61.933909,-65.532892],[-61.922109,-65.541192],[-61.881459,-65.548761],[-61.839955,-65.547947],[-61.766916,-65.530857],[-61.72997,-65.529474],[-61.700999,-65.545668],[-61.724721,-65.562107],[-61.750152,-65.570082],[-61.874176,-65.57936],[-61.905507,-65.57643],[-61.93814,-65.564142],[-61.957509,-65.564874],[-62.046376,-65.590509],[-62.065826,-65.592543],[-62.079945,-65.596368],[-62.086903,-65.606215],[-62.084828,-65.626723],[-62.077789,-65.635919],[-62.067006,-65.640802],[-62.057729,-65.648533],[-62.054921,-65.666274],[-62.06607,-65.69199],[-62.089711,-65.711602],[-62.119293,-65.725763],[-62.148264,-65.73504],[-62.191029,-65.741469],[-62.206288,-65.746677],[-62.218129,-65.75449],[-62.244618,-65.7763],[-62.253529,-65.781183],[-62.31371,-65.78631],[-62.341664,-65.795099],[-62.361887,-65.814223],[-62.362457,-65.827407],[-62.353017,-65.838556],[-62.341298,-65.848728],[-62.335276,-65.859145],[-62.339955,-65.871189],[-62.372426,-65.915704],[-62.282582,-65.922133],[-62.264312,-65.928643],[-62.262359,-65.938897],[-62.266428,-65.971775],[-62.266184,-65.984145],[-62.258778,-65.999282],[-62.248402,-66.009535],[-62.022776,-66.111505],[-61.914866,-66.133396],[-61.861195,-66.133396],[-61.809316,-66.120294],[-61.77595,-66.106541],[-61.752919,-66.102227],[-61.733876,-66.111749],[-61.712148,-66.139581],[-61.694244,-66.146173],[-61.596018,-66.165623],[-61.600453,-66.138604],[-61.61266,-66.113051],[-61.64391,-66.065688],[-61.647125,-66.033624],[-61.617991,-66.021905],[-61.577626,-66.022719],[-61.339345,-66.08766],[-61.309071,-66.086602],[-61.315989,-66.063084],[-61.320139,-66.039809],[-61.316477,-66.018162],[-61.30016,-65.999119],[-61.321889,-65.981134],[-61.346099,-65.955824],[-61.355377,-65.932306],[-61.332753,-65.919692],[-61.275502,-65.91253],[-61.244618,-65.912856],[-61.223988,-65.922133],[-61.200307,-65.942315],[-61.116078,-65.98447],[-61.106842,-65.995375],[-61.090159,-66.02337],[-61.08019,-66.030369],[-61.063344,-66.033624],[-61.031239,-66.035903],[-61.014068,-66.034356],[-61.016835,-66.01393],[-61.018381,-65.924412],[-61.006703,-65.912774],[-60.985666,-65.911716],[-60.932769,-65.916599],[-60.869862,-65.911228],[-60.577504,-65.940118],[-60.547109,-65.958266],[-60.563385,-65.996759],[-60.601877,-66.03574],[-60.637766,-66.055108],[-60.657338,-66.050226],[-60.681304,-66.041274],[-60.699859,-66.041925],[-60.70287,-66.065606],[-60.698232,-66.091404],[-60.697906,-66.116306],[-60.708363,-66.130792],[-60.735951,-66.124933],[-60.794586,-66.098565],[-60.815012,-66.084731],[-60.820668,-66.076593],[-60.826487,-66.055108],[-60.831776,-66.04754],[-60.840199,-66.045343],[-60.900461,-66.039483],[-60.910308,-66.040216],[-60.916412,-66.046645],[-60.921539,-66.059991],[-60.926991,-66.066095],[-60.935658,-66.068455],[-61.004547,-66.0735],[-61.024078,-66.082778],[-61.038971,-66.106622],[-61.022206,-66.132582],[-60.970611,-66.156183],[-60.875885,-66.187595],[-60.883534,-66.198419],[-60.906158,-66.221124],[-60.909901,-66.227634],[-60.903879,-66.245294],[-60.904652,-66.258233],[-60.911977,-66.269627],[-60.970774,-66.32586],[-60.99474,-66.341485],[-61.028635,-66.349542],[-61.09024,-66.352227],[-61.1197,-66.346612],[-61.146311,-66.332452],[-61.167633,-66.304783],[-61.163889,-66.280532],[-61.150868,-66.254815],[-61.143951,-66.222833],[-61.157379,-66.200372],[-61.187408,-66.18141],[-61.248769,-66.158787],[-61.284779,-66.154474],[-61.355702,-66.159438],[-61.39151,-66.15545],[-61.417958,-66.141371],[-61.443837,-66.123142],[-61.468658,-66.114353],[-61.492421,-66.128595],[-61.500478,-66.153741],[-61.503651,-66.19256],[-61.501373,-66.23211],[-61.49352,-66.259861],[-61.521962,-66.251072],[-61.57311,-66.226007],[-61.601186,-66.218438],[-61.731272,-66.200453],[-61.764394,-66.202895],[-61.780385,-66.212986],[-61.778554,-66.230239],[-61.757924,-66.254815],[-61.728831,-66.280043],[-61.696767,-66.300958],[-61.682362,-66.316583],[-61.689036,-66.331313],[-61.702707,-66.344171],[-61.709096,-66.354262],[-61.701324,-66.366795],[-61.669301,-66.392348],[-61.685292,-66.443943],[-61.694081,-66.458103],[-61.717885,-66.472345],[-61.750885,-66.477716],[-61.784901,-66.474786],[-61.811635,-66.464451],[-61.834096,-66.442641],[-61.846547,-66.418878],[-61.856313,-66.392511],[-61.892445,-66.328302],[-61.899281,-66.322524],[-61.917388,-66.318943],[-61.925526,-66.315118],[-61.950795,-66.287856],[-61.964182,-66.276544],[-61.98233,-66.269952],[-61.963002,-66.240818],[-61.954986,-66.222833],[-61.955637,-66.207778],[-61.970204,-66.198419],[-61.992665,-66.196873],[-62.111684,-66.206638],[-62.147084,-66.203871],[-62.18871,-66.18434],[-62.220326,-66.174249],[-62.258046,-66.175388],[-62.3308,-66.187433],[-62.395172,-66.184503],[-62.416127,-66.186293],[-62.474029,-66.207615],[-62.494985,-66.211847],[-62.668284,-66.227472],[-62.70051,-66.237563],[-62.738515,-66.260512],[-62.764638,-66.288995],[-62.760894,-66.316095],[-62.694081,-66.355239],[-62.617584,-66.379815],[-62.551137,-66.413181],[-62.514475,-66.478204],[-62.6315,-66.492364],[-62.690419,-66.509942],[-62.721995,-66.542901],[-62.703725,-66.580743],[-62.641998,-66.592462],[-62.519683,-66.593927],[-62.547597,-66.624933],[-62.554433,-66.64186],[-62.555491,-66.664727],[-62.505686,-66.660577],[-62.483754,-66.654555],[-62.457916,-66.643324],[-62.460276,-66.671157],[-62.46642,-66.690037],[-62.48058,-66.702732],[-62.506947,-66.712498],[-62.534088,-66.71852],[-62.589019,-66.724542],[-62.64387,-66.724542],[-62.665679,-66.718845],[-62.788238,-66.664321],[-62.800445,-66.648696],[-62.801015,-66.608982],[-62.804107,-66.598891],[-62.816151,-66.589532],[-62.828684,-66.586521],[-62.839223,-66.58172],[-62.845448,-66.56699],[-62.851471,-66.537205],[-62.861684,-66.513279],[-62.878651,-66.493748],[-62.905141,-66.476739],[-63.162994,-66.35296],[-63.177398,-66.334242],[-63.183258,-66.324477],[-63.197662,-66.305759],[-63.202463,-66.295668],[-63.203277,-66.279962],[-63.199574,-66.269627],[-63.19933,-66.260512],[-63.210846,-66.248712],[-63.234609,-66.239435],[-63.257395,-66.242771],[-63.302846,-66.263116],[-63.319,-66.26629],[-63.330434,-66.263116],[-63.34142,-66.258559],[-63.356313,-66.257013],[-63.402984,-66.257501],[-63.418935,-66.254571],[-63.430572,-66.249933],[-63.447174,-66.236993],[-63.456288,-66.232354],[-63.469472,-66.230239],[-63.49649,-66.231134],[-63.508901,-66.229262],[-63.52184,-66.222426],[-63.546864,-66.20322],[-63.560129,-66.197849],[-63.573354,-66.198419],[-63.61266,-66.212009],[-63.663197,-66.214451],[-63.811594,-66.188897],[-63.784332,-66.203383],[-63.755767,-66.214614],[-63.786488,-66.231866],[-63.769154,-66.241306],[-63.712148,-66.250421],[-63.752024,-66.261814],[-63.834584,-66.263604],[-63.874135,-66.272638],[-63.836781,-66.290785],[-63.797515,-66.298517],[-63.71524,-66.300226],[-63.721059,-66.304457],[-63.73176,-66.315037],[-63.737538,-66.319431],[-63.638092,-66.333754],[-63.58609,-66.352227],[-63.57372,-66.358982],[-63.569732,-66.37005],[-63.573354,-66.391209],[-63.583241,-66.394301],[-63.90331,-66.381606],[-63.886383,-66.409438],[-63.845815,-66.424493],[-63.761301,-66.434991],[-63.850901,-66.442153],[-63.876576,-66.447849],[-63.891835,-66.459405],[-63.901967,-66.477634],[-63.911977,-66.502618],[-63.804799,-66.529718],[-63.823354,-66.543878],[-63.825551,-66.559177],[-63.815338,-66.574151],[-63.797027,-66.588474],[-63.872426,-66.597345],[-63.89684,-66.603204],[-63.926422,-66.60711],[-63.950999,-66.598891],[-63.996246,-66.566583],[-64.02123,-66.55755],[-64.041575,-66.564548],[-64.057607,-66.581313],[-64.069936,-66.601983],[-64.079661,-66.626642],[-64.086537,-66.631606],[-64.112864,-66.632908],[-64.126088,-66.636163],[-64.134918,-66.643162],[-64.132558,-66.654474],[-64.111155,-66.677992],[-64.09081,-66.688409],[-63.984039,-66.695571],[-63.936187,-66.704197],[-63.841379,-66.738946],[-63.751332,-66.787693],[-63.756174,-66.792413],[-63.764312,-66.803888],[-63.769195,-66.808364],[-63.719838,-66.862074],[-63.755523,-66.897638],[-63.831288,-66.917901],[-64.044423,-66.936212],[-64.113393,-66.928155],[-64.193471,-66.885919],[-64.225453,-66.873305],[-64.25536,-66.84824],[-64.271962,-66.841567],[-64.308827,-66.836521],[-64.333892,-66.851495],[-64.349599,-66.884942],[-64.36852,-66.911228],[-64.434234,-66.898533],[-64.515981,-66.904962],[-64.540761,-66.894627],[-64.550933,-66.873305],[-64.548695,-66.862481],[-64.540761,-66.851983],[-64.533599,-66.831801],[-64.526926,-66.756768],[-64.59911,-66.774102],[-64.606272,-66.773207],[-64.612213,-66.769789],[-64.617909,-66.767836],[-64.62385,-66.771742],[-64.649037,-66.802423],[-64.678293,-66.821059],[-64.773793,-66.845636],[-64.757314,-66.866876],[-64.716542,-66.904962],[-64.702952,-66.927992],[-64.701568,-66.939142],[-64.703928,-66.979262],[-64.71052,-66.987074],[-64.72761,-66.991306],[-64.762034,-66.992934],[-64.790883,-66.986993],[-64.810374,-66.972345],[-64.828033,-66.953383],[-64.851674,-66.935235],[-64.904897,-66.909926],[-64.932362,-66.902032],[-64.963775,-66.896661],[-64.915435,-66.9249],[-64.891957,-66.943455],[-64.882232,-66.963149],[-64.892893,-66.984145],[-64.917063,-67.00449],[-64.966298,-67.033868],[-64.952301,-67.042657],[-64.921864,-67.057224],[-64.908844,-67.066095],[-64.897857,-67.08115],[-64.889027,-67.097345],[-64.87621,-67.10947],[-64.853342,-67.112237],[-64.838043,-67.108087],[-64.80842,-67.094415],[-64.791249,-67.090509],[-64.774973,-67.090509],[-64.725413,-67.098565],[-64.731313,-67.116957],[-64.72289,-67.129083],[-64.690094,-67.14837],[-64.765126,-67.16253],[-64.853098,-67.16961],[-64.873362,-67.165948],[-64.890533,-67.19199],[-64.950551,-67.200942],[-65.065907,-67.202081],[-65.00768,-67.237237],[-64.791168,-67.26214],[-64.749135,-67.307306],[-64.835764,-67.326755],[-64.8815,-67.331801],[-64.921457,-67.32464],[-64.955881,-67.306573],[-64.973622,-67.299574],[-64.993235,-67.297459],[-65.011138,-67.302667],[-65.037221,-67.322198],[-65.055653,-67.326918],[-65.024485,-67.340427],[-65.055043,-67.36061],[-65.088938,-67.364028],[-65.120839,-67.352227],[-65.145416,-67.327325],[-65.158518,-67.323175],[-65.177805,-67.330987],[-65.217152,-67.359959],[-65.22289,-67.363377],[-65.229237,-67.365004],[-65.238433,-67.366388],[-65.244252,-67.371026],[-65.241078,-67.388849],[-65.246083,-67.394627],[-65.285064,-67.401056],[-65.326894,-67.399102],[-65.363881,-67.383966],[-65.388499,-67.350763],[-65.388295,-67.336684],[-65.384104,-67.320082],[-65.383412,-67.304295],[-65.393625,-67.291925],[-65.476877,-67.263604],[-65.470123,-67.277032],[-65.446889,-67.298598],[-65.441274,-67.306248],[-65.443227,-67.321873],[-65.451405,-67.335545],[-65.463612,-67.34588],[-65.477651,-67.352227],[-65.505442,-67.352797],[-65.535268,-67.343032],[-65.562978,-67.327813],[-65.584299,-67.311293],[-65.615956,-67.36891],[-65.576894,-67.384861],[-65.536448,-67.396417],[-65.518463,-67.407485],[-65.514516,-67.445245],[-65.501454,-67.462335],[-65.52538,-67.469415],[-65.574086,-67.477309],[-65.596669,-67.483982],[-65.61498,-67.49505],[-65.621083,-67.507257],[-65.61266,-67.517755],[-65.587636,-67.523614],[-65.588735,-67.554376],[-65.552724,-67.574395],[-65.453765,-67.599786],[-65.438466,-67.602146],[-65.430531,-67.60711],[-65.427398,-67.617283],[-65.425282,-67.628513],[-65.420277,-67.63714],[-65.402699,-67.645685],[-65.337473,-67.657973],[-65.348785,-67.669203],[-65.35969,-67.696954],[-65.365875,-67.703302],[-65.55016,-67.72031],[-65.576731,-67.728774],[-65.592152,-67.75449],[-65.562245,-67.812188],[-65.57608,-67.844415],[-65.603749,-67.85711],[-65.639272,-67.861017],[-65.706695,-67.85947],[-65.672841,-67.88836],[-65.569325,-67.914239],[-65.50178,-67.948175],[-65.478831,-67.951755],[-65.429555,-67.952244],[-65.404042,-67.957696],[-65.329172,-67.983819],[-65.38036,-68.011651],[-65.521718,-68.044692],[-65.583323,-68.044122],[-65.616444,-68.048435],[-65.631459,-68.054783],[-65.650054,-68.07643],[-65.663645,-68.086602],[-65.693349,-68.09352],[-65.751088,-68.087091],[-65.780914,-68.094822],[-65.764027,-68.128513],[-65.760162,-68.145603],[-65.760732,-68.165704],[-65.51537,-68.142755],[-65.506703,-68.146905],[-65.498769,-68.153009],[-65.484934,-68.158136],[-65.471303,-68.158787],[-65.379262,-68.139337],[-65.351633,-68.140069],[-65.275136,-68.171075],[-65.22643,-68.163018],[-65.129262,-68.113377],[-65.025624,-68.073989],[-65.015614,-68.065362],[-64.999013,-68.043715],[-64.988637,-68.036716],[-64.937408,-68.022149],[-64.945912,-68.042169],[-64.989084,-68.089125],[-64.952463,-68.100518],[-64.829213,-68.100681],[-64.830881,-68.093438],[-64.831695,-68.077813],[-64.833567,-68.070489],[-64.811187,-68.076837],[-64.792592,-68.084649],[-64.755849,-68.108087],[-64.766428,-68.115981],[-64.771392,-68.125177],[-64.770172,-68.134861],[-64.762115,-68.144708],[-64.800771,-68.163751],[-65.005198,-68.224216],[-65.04898,-68.230645],[-65.089263,-68.225518],[-65.128733,-68.210056],[-65.14745,-68.20794],[-65.166615,-68.21502],[-65.206614,-68.23919],[-65.249867,-68.256606],[-65.270497,-68.257257],[-65.288564,-68.252862],[-65.303944,-68.253106],[-65.316314,-68.267999],[-65.328725,-68.278904],[-65.351064,-68.288263],[-65.394195,-68.298923],[-65.481068,-68.308364],[-65.493886,-68.317071],[-65.492828,-68.334731],[-65.48412,-68.353692],[-65.473948,-68.365899],[-65.436391,-68.381443],[-65.391591,-68.386163],[-65.18163,-68.36297],[-65.120269,-68.366957],[-65.081125,-68.364516],[-65.061147,-68.367852],[-64.975697,-68.40781],[-64.997711,-68.423517],[-65.077138,-68.461847],[-65.177724,-68.485935],[-65.204579,-68.503676],[-65.22997,-68.516534],[-65.339263,-68.525974],[-65.347401,-68.533787],[-65.346059,-68.548272],[-65.338531,-68.563409],[-65.327992,-68.572524],[-65.311025,-68.577407],[-65.256988,-68.584405],[-65.262603,-68.618341],[-65.243804,-68.62949],[-65.185658,-68.625909],[-65.166493,-68.628595],[-65.154856,-68.635024],[-65.144114,-68.643324],[-65.127594,-68.652032],[-65.112416,-68.654392],[-65.060902,-68.650323],[-64.816151,-68.68963],[-64.783518,-68.688735],[-64.725209,-68.676202],[-64.674224,-68.671075],[-64.661488,-68.672621],[-64.652577,-68.680597],[-64.643381,-68.698826],[-64.635081,-68.710707],[-64.58727,-68.751723],[-64.574941,-68.758071],[-64.527984,-68.773533],[-64.515004,-68.772393],[-64.501861,-68.768324],[-64.482411,-68.764744],[-64.452382,-68.765883],[-64.359446,-68.784438],[-64.368642,-68.767755],[-64.381663,-68.755792],[-64.413889,-68.737563],[-64.373158,-68.738377],[-64.274729,-68.778741],[-64.084869,-68.829522],[-64.03303,-68.831313],[-64.040761,-68.810317],[-64.052887,-68.799005],[-64.136545,-68.770115],[-64.180165,-68.747654],[-64.134389,-68.747491],[-64.046702,-68.758722],[-64.0006,-68.754327],[-64.077382,-68.714939],[-64.245473,-68.672296],[-64.325836,-68.642185],[-64.281606,-68.632908],[-64.18106,-68.649102],[-64.145619,-68.631768],[-64.174957,-68.618748],[-64.206695,-68.608494],[-64.235748,-68.595392],[-64.257314,-68.573826],[-64.228383,-68.571222],[-64.139638,-68.585382],[-64.144765,-68.559991],[-64.127838,-68.545017],[-64.076405,-68.529962],[-63.989166,-68.491388],[-63.962392,-68.487726],[-63.905914,-68.488946],[-63.617197,-68.45204],[-63.328481,-68.415134],[-62.871734,-68.420668],[-62.857574,-68.433282],[-62.873199,-68.459731],[-62.90567,-68.495864],[-62.924469,-68.505792],[-62.954172,-68.507501],[-62.982167,-68.502211],[-63.119862,-68.457208],[-63.178619,-68.447931],[-63.237904,-68.446466],[-63.292388,-68.455255],[-63.328928,-68.471449],[-63.431467,-68.53867],[-63.465443,-68.54754],[-63.663401,-68.548598],[-63.701527,-68.557387],[-63.741811,-68.57171],[-63.76061,-68.580987],[-63.777577,-68.592462],[-63.808949,-68.619724],[-63.824045,-68.639825],[-63.820302,-68.652602],[-63.803619,-68.661716],[-63.779897,-68.670099],[-63.796498,-68.677667],[-63.813222,-68.679946],[-63.8485,-68.677423],[-63.812896,-68.71795],[-63.370758,-68.774102],[-63.285797,-68.799737],[-63.21231,-68.838637],[-63.276357,-68.858331],[-63.4381,-68.817153],[-63.512685,-68.813246],[-63.488393,-68.837091],[-63.38858,-68.880466],[-63.40925,-68.898207],[-63.463612,-68.902927],[-63.477122,-68.923923],[-63.4051,-68.935805],[-63.446523,-68.946547],[-63.650054,-68.960138],[-63.809885,-68.941583],[-63.829213,-68.94256],[-63.888295,-68.957208],[-63.902496,-68.966974],[-63.897084,-68.982599],[-63.882151,-68.997817],[-63.867543,-69.007013],[-63.849029,-69.010431],[-63.807037,-69.010186],[-63.624623,-69.043878],[-63.32079,-69.050063],[-63.303538,-69.055597],[-63.305084,-69.071547],[-63.329416,-69.096856],[-63.364329,-69.12184],[-63.435536,-69.157973],[-63.396352,-69.186293],[-63.343129,-69.196384],[-63.238678,-69.188653],[-63.213531,-69.179457],[-63.193918,-69.167657],[-63.172678,-69.16253],[-63.142893,-69.174086],[-63.121327,-69.191339],[-63.060374,-69.253513],[-63.059641,-69.265558],[-63.06725,-69.284438],[-63.070546,-69.30641],[-63.056996,-69.32822],[-63.012318,-69.360121],[-62.986318,-69.37363],[-62.962514,-69.379002],[-62.79894,-69.348403],[-62.745229,-69.352227],[-62.693715,-69.367934],[-62.653432,-69.38893],[-62.621571,-69.420505],[-62.595815,-69.46795],[-62.558583,-69.492771],[-62.439605,-69.487237],[-62.397288,-69.515232],[-62.393381,-69.536554],[-62.402211,-69.57936],[-62.395497,-69.605076],[-62.38561,-69.629571],[-62.381825,-69.655043],[-62.384185,-69.681085],[-62.392893,-69.706801],[-62.40095,-69.719985],[-62.419504,-69.740655],[-62.428049,-69.752374],[-62.432769,-69.764093],[-62.434234,-69.77337],[-62.437611,-69.782973],[-62.456939,-69.807224],[-62.461252,-69.815525],[-62.467885,-69.822686],[-62.510243,-69.843032],[-62.520863,-69.851658],[-62.529652,-69.863946],[-62.32726,-69.911554],[-62.313303,-69.919203],[-62.295481,-69.941502],[-62.282379,-69.951837],[-62.296213,-69.955011],[-62.308176,-69.961684],[-62.318593,-69.971287],[-62.32726,-69.982599],[-62.295481,-69.994806],[-62.26415,-70.000584],[-62.197987,-70.000421],[-62.170318,-70.006768],[-62.073964,-70.054783],[-62.009267,-70.07586],[-61.985992,-70.094008],[-61.967885,-70.125421],[-61.948354,-70.144789],[-61.88268,-70.188653],[-61.868723,-70.208266],[-61.883616,-70.231703],[-61.917307,-70.251235],[-62.014556,-70.292576],[-62.02831,-70.291762],[-62.052317,-70.264581],[-62.071034,-70.257094],[-62.114166,-70.250421],[-62.183176,-70.247247],[-62.196889,-70.243097],[-62.225087,-70.225274],[-62.239858,-70.219334],[-62.259429,-70.218357],[-62.319325,-70.224542],[-62.374379,-70.215509],[-62.393463,-70.218845],[-62.378896,-70.24033],[-62.361887,-70.253188],[-62.322174,-70.276951],[-62.346913,-70.291599],[-62.407338,-70.298028],[-62.436391,-70.304783],[-62.430165,-70.319024],[-62.419911,-70.326755],[-62.409576,-70.33172],[-62.403432,-70.337823],[-62.404164,-70.35296],[-62.41275,-70.390883],[-62.407216,-70.40545],[-62.380483,-70.413995],[-62.202789,-70.415948],[-62.170277,-70.421563],[-62.147939,-70.437595],[-62.134389,-70.468683],[-62.136464,-70.495375],[-62.153798,-70.518162],[-62.185455,-70.537205],[-62.144887,-70.552504],[-62.089833,-70.547621],[-61.93517,-70.499444],[-61.532338,-70.501072],[-61.47411,-70.493097],[-61.445424,-70.493585],[-61.416371,-70.502211],[-61.393381,-70.517999],[-61.354237,-70.56113],[-61.429433,-70.590509],[-61.681142,-70.618829],[-61.649973,-70.633396],[-61.627553,-70.650079],[-61.625396,-70.670099],[-61.655019,-70.694757],[-61.687896,-70.707127],[-61.839996,-70.736912],[-61.882232,-70.738051],[-62.009633,-70.719985],[-62.129262,-70.723403],[-62.117584,-70.736912],[-62.1162,-70.749444],[-62.123525,-70.760837],[-62.138092,-70.770603],[-62.03775,-70.784763],[-62.005767,-70.793145],[-62.015207,-70.806817],[-62.0183,-70.836033],[-62.025543,-70.846775],[-62.040354,-70.859308],[-62.046539,-70.872247],[-62.044016,-70.886489],[-62.032582,-70.903009],[-62.003774,-70.921319],[-61.970204,-70.924981],[-61.902089,-70.917901],[-61.79304,-70.91961],[-61.758453,-70.909763],[-61.745595,-70.900323],[-61.72053,-70.873142],[-61.704213,-70.862074],[-61.68517,-70.854587],[-61.666819,-70.849705],[-61.554433,-70.841241],[-61.305002,-70.856052],[-61.276519,-70.869887],[-61.261708,-70.89422],[-61.266957,-70.930922],[-61.283274,-70.961033],[-61.307281,-70.988458],[-61.337148,-71.008396],[-61.371205,-71.01572],[-61.350006,-71.033787],[-61.333852,-71.039972],[-61.261057,-71.028009],[-61.232574,-71.027439],[-61.176584,-71.03338],[-61.18456,-71.05641],[-61.216786,-71.08294],[-61.208608,-71.100518],[-61.189687,-71.109063],[-61.115793,-71.113377],[-61.02009,-71.135186],[-60.970855,-71.155043],[-60.93456,-71.182224],[-60.925364,-71.220147],[-60.966868,-71.234308],[-61.225331,-71.21795],[-61.277415,-71.224379],[-61.243642,-71.250258],[-61.200917,-71.261489],[-61.11205,-71.267511],[-61.01122,-71.286065],[-60.965403,-71.306085],[-60.924184,-71.338637],[-60.983754,-71.366795],[-61.038971,-71.366876],[-61.2919,-71.314386],[-61.361887,-71.309177],[-61.417388,-71.322524],[-61.38268,-71.332778],[-61.365387,-71.340427],[-61.337066,-71.364679],[-61.320058,-71.369806],[-61.279042,-71.37363],[-61.129303,-71.414809],[-61.155385,-71.418064],[-61.223785,-71.441013],[-61.335805,-71.465916],[-61.390004,-71.466078],[-61.554026,-71.447361],[-61.542226,-71.505548],[-61.593129,-71.52988],[-61.725819,-71.53281],[-61.706899,-71.586196],[-61.710113,-71.596856],[-61.724599,-71.604669],[-61.813629,-71.627048],[-61.872426,-71.631524],[-62.054921,-71.622328],[-62.070302,-71.625177],[-62.094635,-71.639093],[-62.112213,-71.639825],[-62.096832,-71.659601],[-62.084096,-71.669854],[-62.068227,-71.673598],[-61.673492,-71.681085],[-61.595326,-71.694431],[-61.55724,-71.690606],[-61.283803,-71.593357],[-61.27009,-71.581964],[-61.268219,-71.575942],[-61.27009,-71.569268],[-61.27066,-71.563165],[-61.265126,-71.558526],[-61.180531,-71.533298],[-61.160512,-71.531508],[-61.141265,-71.532892],[-61.119049,-71.539321],[-61.11144,-71.548272],[-61.107086,-71.559666],[-61.094838,-71.573663],[-61.062123,-71.589451],[-60.983632,-71.605157],[-60.94579,-71.619073],[-60.959706,-71.62184],[-60.973256,-71.626642],[-60.998525,-71.639825],[-60.980336,-71.660821],[-60.955068,-71.66546],[-60.90038,-71.658787],[-60.838246,-71.662774],[-60.777943,-71.677016],[-60.786529,-71.69199],[-60.801015,-71.700616],[-60.835276,-71.711521],[-60.815419,-71.728448],[-60.785878,-71.743585],[-60.771555,-71.760024],[-60.797841,-71.781508],[-60.827992,-71.788995],[-60.861806,-71.788832],[-60.957102,-71.772068],[-61.048655,-71.739841],[-61.061391,-71.733087],[-61.087026,-71.711684],[-61.097035,-71.708103],[-61.16275,-71.718845],[-61.150543,-71.728774],[-61.138336,-71.753513],[-61.12914,-71.76336],[-61.05606,-71.79697],[-61.103098,-71.805597],[-61.088043,-71.819268],[-61.068715,-71.826104],[-61.027211,-71.832289],[-61.065745,-71.84531],[-61.073313,-71.851495],[-61.084625,-71.867446],[-61.091786,-71.871026],[-61.319651,-71.875095],[-61.497222,-71.854913],[-61.776031,-71.868748],[-61.851796,-71.891209],[-61.890452,-71.897638],[-62.165679,-71.908624],[-62.440907,-71.91961],[-62.397369,-71.960626],[-62.297597,-71.987481],[-62.112213,-72.009535],[-62.133127,-72.028253],[-62.162343,-72.037774],[-62.223256,-72.050551],[-62.34911,-72.097589],[-62.312652,-72.131606],[-62.254303,-72.135186],[-62.135406,-72.111261],[-61.908111,-72.092218],[-61.732655,-72.049005],[-61.674306,-72.046563],[-61.427398,-72.065199],[-61.37621,-72.078058],[-61.286692,-72.133477],[-61.192372,-72.165948],[-61.166982,-72.169854],[-61.148549,-72.154718],[-61.153676,-72.129327],[-61.176625,-72.107517],[-61.191803,-72.087335],[-61.173695,-72.06699],[-61.117014,-72.050063],[-61.053782,-72.046482],[-60.929311,-72.053318],[-60.870595,-72.046563],[-60.753326,-72.008884],[-60.693837,-71.997817],[-60.668324,-72.010186],[-60.65453,-72.041599],[-60.652455,-72.07822],[-60.662343,-72.106134],[-60.688629,-72.120212],[-60.800608,-72.133477],[-60.868642,-72.15016],[-60.937856,-72.15838],[-60.993072,-72.150811],[-61.009389,-72.153578],[-61.071889,-72.191339],[-61.016469,-72.19671],[-60.900461,-72.186456],[-60.843007,-72.188572],[-60.749623,-72.204848],[-60.687245,-72.23089],[-60.670969,-72.242283],[-60.661773,-72.255792],[-60.662424,-72.272393],[-60.667877,-72.286228],[-60.668446,-72.298923],[-60.654408,-72.312595],[-60.674387,-72.325372],[-60.689849,-72.331313],[-60.706451,-72.331801],[-60.771637,-72.317966],[-60.814809,-72.313409],[-60.861399,-72.31699],[-60.998036,-72.356215],[-60.965932,-72.369317],[-60.692209,-72.374688],[-60.656117,-72.386],[-60.637318,-72.407322],[-60.642568,-72.429946],[-60.679026,-72.445571],[-60.823476,-72.465102],[-61.142079,-72.454197],[-61.46467,-72.407322],[-61.457183,-72.428969],[-61.432851,-72.442315],[-61.376617,-72.457208],[-61.365631,-72.465997],[-61.373036,-72.474216],[-61.388092,-72.480727],[-61.400258,-72.48447],[-61.471018,-72.497817],[-61.436269,-72.522556],[-61.401763,-72.533624],[-61.364735,-72.533298],[-61.321685,-72.524021],[-61.275502,-72.526056],[-61.250722,-72.555922],[-61.215443,-72.638116],[-61.257965,-72.652927],[-61.420277,-72.645766],[-61.392893,-72.670017],[-61.259267,-72.691339],[-61.224599,-72.708185],[-61.208485,-72.720636],[-61.20637,-72.73211],[-61.218861,-72.752699],[-61.215321,-72.76393],[-61.200551,-72.769708],[-61.136586,-72.783298],[-61.119862,-72.78045],[-61.099599,-72.767673],[-61.084096,-72.75213],[-61.058461,-72.717869],[-61.041819,-72.701593],[-61.004384,-72.686619],[-60.863393,-72.681329],[-60.736073,-72.654392],[-60.596791,-72.649998],[-60.552398,-72.655857],[-60.520416,-72.682712],[-60.500356,-72.720961],[-60.489369,-72.75628],[-60.491689,-72.791192],[-60.511586,-72.82822],[-60.543202,-72.861993],[-60.579701,-72.890395],[-60.600331,-72.9013],[-60.664418,-72.915623],[-60.656606,-72.926365],[-60.646718,-72.934747],[-60.635121,-72.940199],[-60.622141,-72.942315],[-60.638254,-72.958429],[-60.769928,-73.035414],[-60.782216,-73.0499],[-60.763539,-73.074477],[-60.707509,-73.064386],[-60.60497,-73.022393],[-60.588857,-73.009698],[-60.571441,-72.992446],[-60.552235,-72.980564],[-60.530385,-72.983575],[-60.50536,-72.995538],[-60.426381,-73.01865],[-60.35676,-73.052016],[-60.333892,-73.055597],[-60.275746,-73.045994],[-60.246978,-73.033949],[-60.227895,-73.015395],[-60.215443,-72.995375],[-60.183746,-72.957289],[-60.10733,-72.888116],[-60.082102,-72.87477],[-60.060455,-72.869399],[-60.035553,-72.868829],[-60.01065,-72.871759],[-59.96581,-72.883233],[-59.954335,-72.88836],[-59.949371,-72.895196],[-59.948557,-72.910903],[-59.946156,-72.922052],[-59.940785,-72.931899],[-59.931142,-72.944431],[-59.904124,-72.993422],[-59.915435,-73.024998],[-59.997182,-73.081638],[-60.015533,-73.099542],[-60.0301,-73.12127],[-60.038157,-73.145196],[-60.037099,-73.169854],[-60.027984,-73.187677],[-60.011545,-73.208673],[-59.99234,-73.227309],[-59.975209,-73.238214],[-60.026601,-73.278985],[-60.093577,-73.299249],[-60.290761,-73.322198],[-60.378285,-73.32171],[-60.450429,-73.301935],[-60.46935,-73.227309],[-60.495269,-73.212579],[-60.598622,-73.184828],[-60.624664,-73.195489],[-60.638987,-73.223728],[-60.666331,-73.334568],[-60.683665,-73.37127],[-60.703114,-73.391046],[-60.734446,-73.398045],[-60.769521,-73.399347],[-60.80427,-73.395115],[-60.834625,-73.384942],[-60.826894,-73.36297],[-60.819936,-73.34881],[-60.816965,-73.333754],[-60.820668,-73.309177],[-60.877919,-73.241957],[-60.894683,-73.248956],[-60.903676,-73.270196],[-60.909901,-73.295994],[-60.918324,-73.316339],[-60.932362,-73.33115],[-60.949615,-73.342869],[-60.969065,-73.350356],[-60.989613,-73.35296],[-61.082753,-73.347426],[-61.130686,-73.33766],[-61.167633,-73.319757],[-61.21642,-73.273045],[-61.255442,-73.244399],[-61.262441,-73.226739],[-61.254547,-73.211196],[-61.229644,-73.201837],[-61.283274,-73.198663],[-61.336903,-73.203871],[-61.369985,-73.203709],[-61.397328,-73.194106],[-61.447092,-73.158136],[-61.457834,-73.163181],[-61.544423,-73.175958],[-62.001698,-73.104181],[-62.01476,-73.105239],[-62.027943,-73.111586],[-62.037994,-73.120538],[-62.04898,-73.128025],[-62.065094,-73.130466],[-61.989084,-73.173517],[-61.961334,-73.184666],[-61.646067,-73.252048],[-61.626536,-73.285089],[-61.6704,-73.268487],[-61.766103,-73.246189],[-61.955312,-73.223891],[-62.00182,-73.230564],[-61.816314,-73.260186],[-61.711252,-73.303969],[-61.635732,-73.325616],[-61.568471,-73.353123],[-61.539296,-73.392185],[-61.58788,-73.392836],[-61.6881,-73.375095],[-61.886057,-73.365004],[-61.934804,-73.372166],[-61.926747,-73.395115],[-61.919301,-73.408787],[-61.90689,-73.416192],[-61.883778,-73.420587],[-61.814443,-73.424574],[-61.729075,-73.450291],[-61.71288,-73.460138],[-61.714345,-73.477797],[-61.720123,-73.498468],[-61.7176,-73.517185],[-61.687815,-73.535903],[-61.64269,-73.543715],[-61.596262,-73.543552],[-61.562571,-73.537693],[-61.549387,-73.528741],[-61.523915,-73.498793],[-61.507802,-73.487481],[-61.489329,-73.481052],[-61.470937,-73.47796],[-61.452301,-73.477797],[-61.302113,-73.495294],[-61.272817,-73.511163],[-61.257965,-73.526788],[-61.241811,-73.535821],[-61.222971,-73.538344],[-61.161448,-73.524509],[-61.144276,-73.523045],[-61.120188,-73.524021],[-60.79955,-73.577895],[-60.84496,-73.621352],[-60.902821,-73.646254],[-61.030914,-73.672947],[-61.024322,-73.679376],[-61.012929,-73.694431],[-61.0065,-73.701104],[-61.145619,-73.737888],[-60.986236,-73.747328],[-60.933339,-73.735447],[-60.862701,-73.703383],[-60.838775,-73.698337],[-60.78425,-73.694513],[-60.762318,-73.699884],[-60.734731,-73.715753],[-60.77595,-73.740492],[-60.813954,-73.771417],[-60.879954,-73.842869],[-60.886952,-73.853285],[-60.902821,-73.88893],[-60.910797,-73.899835],[-60.967437,-73.944024],[-60.986562,-73.955336],[-61.007721,-73.962009],[-61.031239,-73.96502],[-61.232411,-73.958185],[-61.348297,-73.926446],[-61.359446,-73.92018],[-61.366567,-73.911228],[-61.370839,-73.900811],[-61.376576,-73.890395],[-61.388092,-73.881768],[-61.437734,-73.873224],[-61.540639,-73.892673],[-61.644643,-73.882501],[-61.691965,-73.886163],[-61.791005,-73.906671],[-61.746978,-73.930841],[-61.581939,-73.969903],[-61.648834,-73.992934],[-61.859283,-74.02988],[-61.775136,-74.042576],[-61.490468,-74.015558],[-61.445912,-74.019952],[-61.405181,-74.032647],[-61.378041,-74.055759],[-61.350453,-74.066176],[-61.084137,-74.063246],[-61.055776,-74.073175],[-61.055409,-74.103123],[-61.088979,-74.135837],[-61.133453,-74.164158],[-61.241567,-74.209731],[-61.404408,-74.24863],[-61.484731,-74.254164],[-61.480621,-74.243748],[-61.473988,-74.235121],[-61.465443,-74.228611],[-61.454986,-74.224216],[-61.476471,-74.220636],[-61.510732,-74.23089],[-61.529775,-74.23211],[-61.551178,-74.225274],[-61.566477,-74.212498],[-61.569407,-74.195082],[-61.553863,-74.175063],[-61.638295,-74.181899],[-61.663726,-74.190525],[-61.730133,-74.241143],[-61.756947,-74.251235],[-61.813059,-74.25449],[-61.922231,-74.243259],[-61.978098,-74.244236],[-61.950063,-74.257745],[-61.917388,-74.266209],[-61.88801,-74.277602],[-61.869374,-74.299493],[-61.877431,-74.300958],[-61.893422,-74.306736],[-61.901601,-74.308364],[-61.884633,-74.325453],[-61.856597,-74.328709],[-61.644195,-74.29754],[-61.491038,-74.328871],[-61.278717,-74.329848],[-61.068023,-74.300551],[-60.858144,-74.245212],[-60.751332,-74.235528],[-60.691151,-74.238946],[-60.650014,-74.254002],[-60.640248,-74.292657],[-60.681956,-74.324802],[-60.780141,-74.359145],[-60.883656,-74.378676],[-60.895009,-74.384454],[-60.915842,-74.398207],[-60.924224,-74.400811],[-60.938466,-74.40252],[-60.952138,-74.407647],[-60.978383,-74.421157],[-60.958852,-74.424249],[-60.940012,-74.429783],[-60.92219,-74.437921],[-60.905995,-74.449151],[-60.977895,-74.497166],[-61.06786,-74.519627],[-61.542714,-74.544041],[-61.595611,-74.537286],[-61.642934,-74.49863],[-61.664377,-74.498305],[-61.687327,-74.503513],[-61.707509,-74.505792],[-62.112782,-74.464288],[-62.205149,-74.43141],[-62.363881,-74.403497],[-62.334218,-74.458103],[-62.277455,-74.49212],[-62.211985,-74.519464],[-62.137318,-74.565118],[-62.11384,-74.570001],[-62.065094,-74.574802],[-62.033315,-74.583917],[-62.007883,-74.596124],[-61.958404,-74.632501],[-61.93517,-74.655043],[-61.923207,-74.660414],[-61.898061,-74.668064],[-61.885813,-74.673272],[-61.876943,-74.680922],[-61.866689,-74.695082],[-61.858388,-74.702081],[-61.847727,-74.704278],[-61.817047,-74.704278],[-61.801422,-74.70672],[-61.788157,-74.712091],[-61.782135,-74.721775],[-61.792226,-74.778985],[-61.825103,-74.821059],[-61.872955,-74.851495],[-62.131907,-74.951593],[-62.467275,-74.997735],[-62.52599,-74.997247],[-62.575266,-74.976739],[-62.591054,-74.951104],[-62.587148,-74.924981],[-62.579579,-74.898858],[-62.584462,-74.872817],[-62.598744,-74.848321],[-62.608957,-74.820977],[-62.607737,-74.794692],[-62.587758,-74.773858],[-62.610463,-74.76336],[-62.626047,-74.761163],[-62.664866,-74.761814],[-62.689076,-74.753106],[-62.699086,-74.736586],[-62.694,-74.718194],[-62.673166,-74.703302],[-62.701283,-74.677992],[-62.735463,-74.677992],[-62.80724,-74.70379],[-62.84439,-74.708429],[-62.881988,-74.704848],[-63.119008,-74.652276],[-63.138499,-74.651625],[-63.151112,-74.655043],[-63.17455,-74.665623],[-63.187611,-74.668634],[-63.246938,-74.665134],[-63.265696,-74.668145],[-63.263539,-74.674086],[-63.292958,-74.720147],[-63.148427,-74.788507],[-63.106923,-74.822035],[-63.07018,-74.868097],[-63.062245,-74.892511],[-63.076894,-74.908461],[-63.102366,-74.914483],[-63.181223,-74.919366],[-63.404937,-74.898696],[-63.52009,-74.867771],[-63.57311,-74.871352],[-63.606313,-74.916274],[-63.586497,-74.922296],[-63.609731,-74.936782],[-63.642568,-74.94378],[-64.021392,-74.979425],[-64.085601,-74.99863],[-64.054799,-75.007257],[-63.994618,-75.008966],[-63.964508,-75.013116],[-63.920033,-75.031834],[-63.90038,-75.035252],[-63.622182,-75.021336],[-63.343984,-75.00742],[-63.277903,-75.015395],[-63.243804,-75.025323],[-63.068186,-75.120782],[-63.040924,-75.147231],[-63.303619,-75.177423],[-63.390004,-75.175226],[-63.470815,-75.161554],[-63.509633,-75.159356],[-63.834238,-75.191827],[-64.158844,-75.224298],[-64.205068,-75.236261],[-64.249827,-75.237074],[-64.272328,-75.241143],[-64.357167,-75.27988],[-64.400624,-75.291274],[-64.420074,-75.300958],[-64.434438,-75.31756],[-64.412017,-75.327407],[-64.390045,-75.329848],[-64.371693,-75.334893],[-64.360097,-75.351983],[-64.348988,-75.364516],[-64.329945,-75.366388],[-64.220204,-75.337823],[-64.196767,-75.335707],[-64.11144,-75.349867],[-63.762115,-75.32464],[-63.423329,-75.338149],[-63.084543,-75.351658],[-63.106679,-75.385512],[-63.16161,-75.409438],[-63.623921,-75.5039],[-64.086232,-75.598362],[-64.548543,-75.692824],[-65.010854,-75.787286],[-65.26476,-75.791436],[-65.289784,-75.79697],[-65.355621,-75.833673],[-65.377105,-75.842869],[-65.759592,-75.914239],[-66.142079,-75.98561],[-66.218617,-76.010837],[-66.690043,-76.045099],[-67.161468,-76.07936],[-67.632893,-76.113621],[-68.104319,-76.147882],[-68.127675,-76.154474],[-68.146718,-76.165704],[-68.098948,-76.182061],[-68.083241,-76.189711],[-68.054758,-76.210626],[-68.03954,-76.218194],[-68.018137,-76.221124],[-67.949208,-76.215916],[-68.330617,-76.247186],[-68.712026,-76.278456],[-69.093434,-76.309727],[-69.474843,-76.340997],[-69.486318,-76.337579],[-69.500966,-76.330173],[-69.515004,-76.326755],[-69.546783,-76.326918],[-69.604726,-76.337009],[-69.715484,-76.369317],[-69.79776,-76.376886],[-69.852651,-76.393487],[-69.877065,-76.39544],[-69.927073,-76.391371],[-70.100819,-76.423923],[-70.153879,-76.444024],[-70.180898,-76.450616],[-70.134592,-76.468032],[-70.073842,-76.47324],[-69.854075,-76.451104],[-69.800852,-76.455743],[-69.746327,-76.469496],[-70.049916,-76.498712],[-69.996734,-76.520603],[-69.816151,-76.522231],[-69.853627,-76.533298],[-69.978383,-76.534601],[-70.056956,-76.548517],[-70.099517,-76.565199],[-70.119252,-76.589044],[-70.080474,-76.617364],[-69.988026,-76.62363],[-69.827382,-76.613946],[-69.861684,-76.623142],[-69.965484,-76.632257],[-70.030181,-76.648207],[-70.094309,-76.675063],[-69.978139,-76.663018],[-69.941762,-76.667169],[-69.971344,-76.686212],[-70.014027,-76.693617],[-70.332143,-76.677667],[-70.5808,-76.71087],[-70.52892,-76.719334],[-70.369496,-76.715265],[-70.393422,-76.72617],[-70.420318,-76.730645],[-70.502838,-76.734308],[-70.586741,-76.749444],[-70.77481,-76.733494],[-70.781158,-76.736098],[-70.787465,-76.748305],[-70.793813,-76.751397],[-70.964345,-76.738946],[-71.3367,-76.750868],[-71.709055,-76.762791],[-72.057647,-76.726088],[-72.406239,-76.689386],[-72.570546,-76.704522],[-72.881418,-76.672133],[-72.894765,-76.674574],[-72.902943,-76.680597],[-72.910471,-76.694757],[-72.917388,-76.702813],[-72.926991,-76.707208],[-72.942535,-76.710626],[-72.974355,-76.712579],[-73.060455,-76.691502],[-73.498647,-76.672255],[-73.936838,-76.653009],[-73.919504,-76.671482],[-73.899403,-76.680271],[-73.793813,-76.685724],[-73.770741,-76.695489],[-73.766591,-76.719008],[-73.981557,-76.694513],[-74.082021,-76.693617],[-74.458106,-76.650811],[-74.834191,-76.608005],[-75.210276,-76.565199],[-75.259145,-76.564874],[-75.271555,-76.596775],[-75.332631,-76.603123],[-75.613433,-76.560968],[-75.666737,-76.561293],[-75.60912,-76.579767],[-75.597401,-76.58766],[-75.5926,-76.608168],[-75.603627,-76.621026],[-75.622426,-76.629002],[-75.679921,-76.644789],[-75.810414,-76.638116],[-75.894276,-76.621026],[-76.053822,-76.5617],[-76.13801,-76.549005],[-76.299062,-76.567804],[-76.377065,-76.568129],[-76.499257,-76.524998],[-76.541615,-76.516778],[-76.583974,-76.52044],[-76.625071,-76.538995],[-76.630035,-76.546075],[-76.630238,-76.553643],[-76.631825,-76.560235],[-76.641103,-76.565118],[-76.770497,-76.578709],[-76.766469,-76.607517],[-76.749867,-76.629571],[-76.728098,-76.65016],[-76.708323,-76.674412],[-76.75178,-76.670099],[-76.929067,-76.603774],[-77.118153,-76.560642],[-77.264516,-76.563735],[-77.315582,-76.554864],[-77.364898,-76.534112],[-77.456899,-76.480076],[-77.44107,-76.497491],[-77.384877,-76.545017],[-77.414377,-76.556085],[-77.509267,-76.556085],[-77.492299,-76.580255],[-77.472971,-76.596449],[-77.425893,-76.627211],[-77.496816,-76.610284],[-77.531646,-76.596449],[-77.559967,-76.577081],[-77.591868,-76.549737],[-77.693471,-76.487563],[-77.697011,-76.51629],[-77.675404,-76.535089],[-77.614329,-76.55877],[-77.508453,-76.630466],[-77.520131,-76.638767],[-77.524973,-76.649102],[-77.525217,-76.67547],[-77.530426,-76.683852],[-77.542877,-76.690199],[-77.569081,-76.698826],[-77.52359,-76.72975],[-77.186879,-76.826593],[-77.038889,-76.925226],[-76.983754,-76.947849],[-76.867909,-76.973565],[-76.838043,-76.985935],[-76.822336,-77.005466],[-76.831899,-77.026056],[-76.863352,-77.029555],[-76.971018,-77.010186],[-76.984527,-77.011651],[-76.994944,-77.014825],[-77.0065,-77.020278],[-77.011057,-77.027602],[-76.999867,-77.036391],[-76.85912,-77.085626],[-76.750356,-77.079522],[-76.72232,-77.081964],[-76.473948,-77.163995],[-76.322581,-77.262872],[-76.266713,-77.285821],[-76.088287,-77.33172],[-75.921295,-77.336602],[-75.871571,-77.349542],[-75.910553,-77.364679],[-75.817616,-77.414646],[-75.78661,-77.425226],[-75.692209,-77.437107],[-75.668121,-77.446384],[-75.598948,-77.489353],[-75.564849,-77.503106],[-75.557688,-77.510919],[-75.549672,-77.525079],[-75.539459,-77.534926],[-75.526601,-77.541192],[-75.458811,-77.552016],[-75.436676,-77.54811],[-75.364247,-77.499607],[-75.308705,-77.473077],[-75.25414,-77.457615],[-75.080393,-77.437107],[-74.60877,-77.464809],[-74.137148,-77.492511],[-73.665525,-77.520212],[-73.193902,-77.547914],[-72.722279,-77.575616],[-72.796702,-77.600763],[-72.773508,-77.619806],[-72.759877,-77.636895],[-72.760976,-77.656183],[-72.781809,-77.681573],[-72.804514,-77.698989],[-73.043284,-77.800388],[-73.089833,-77.830011],[-73.108795,-77.848321],[-73.11974,-77.856378],[-73.131174,-77.859633],[-73.151357,-77.860284],[-73.163157,-77.863051],[-73.186513,-77.876642],[-73.211049,-77.887791],[-73.399729,-77.949314],[-73.433217,-77.969985],[-73.44933,-77.974379],[-73.481272,-77.979181],[-73.498158,-77.986505],[-73.43106,-77.999444],[-73.465647,-78.014744],[-73.47761,-78.017836],[-73.499257,-78.018487],[-73.505483,-78.01214],[-73.507476,-78.003595],[-73.516469,-77.997654],[-73.542551,-77.99863],[-73.627309,-78.024998],[-73.948374,-78.077081],[-74.269439,-78.129164],[-74.186879,-78.134942],[-74.016754,-78.112563],[-73.933258,-78.1124],[-74.055653,-78.13714],[-74.473805,-78.152602],[-74.891957,-78.168064],[-74.961537,-78.182224],[-74.997874,-78.18434],[-74.992177,-78.187677],[-74.976186,-78.200942],[-74.995758,-78.219985],[-75.020253,-78.229913],[-75.047353,-78.231622],[-75.07433,-78.226332],[-75.087554,-78.219659],[-75.093861,-78.211521],[-75.098866,-78.201755],[-75.108022,-78.190525],[-75.119781,-78.181817],[-75.149037,-78.167169],[-75.217641,-78.144627],[-75.711195,-78.101674],[-76.20475,-78.058722],[-76.698305,-78.015769],[-77.19186,-77.972817],[-77.685414,-77.929864],[-77.757924,-77.945896],[-77.783315,-77.948419],[-78.237403,-77.913832],[-78.691491,-77.879246],[-79.145579,-77.844659],[-79.173492,-77.845961],[-79.315256,-77.87656],[-79.423695,-77.878025],[-79.695526,-77.845473],[-79.967356,-77.812921],[-80.02245,-77.815606],[-80.227162,-77.797784],[-80.386098,-77.75156],[-80.576405,-77.723728],[-80.769358,-77.669854],[-80.749623,-77.690037],[-80.719309,-77.704848],[-80.65689,-77.724867],[-80.704986,-77.764093],[-80.762278,-77.789972],[-81.157094,-77.852309],[-81.398508,-77.833103],[-81.66747,-77.841485],[-81.6162,-77.862074],[-81.149123,-77.924023],[-80.682046,-77.985971],[-80.214969,-78.04792],[-79.747892,-78.109868],[-79.280814,-78.171817],[-78.813737,-78.233765],[-78.34666,-78.295713],[-77.879583,-78.357662],[-77.412506,-78.41961],[-77.366567,-78.447931],[-77.364329,-78.501723],[-77.356109,-78.511],[-77.335113,-78.52516],[-77.330719,-78.533787],[-77.337473,-78.558282],[-77.337514,-78.570001],[-77.330881,-78.588067],[-77.329416,-78.597833],[-77.334625,-78.605401],[-77.348053,-78.616469],[-77.361195,-78.624444],[-77.663442,-78.705336],[-77.701405,-78.725356],[-77.723988,-78.731378],[-77.754018,-78.735772],[-78.177554,-78.754273],[-78.601091,-78.772773],[-79.024627,-78.791274],[-79.448164,-78.809774],[-79.8717,-78.828275],[-80.295237,-78.846775],[-80.717063,-78.771515],[-81.138889,-78.696254],[-81.560715,-78.620994],[-81.982541,-78.545733],[-82.404368,-78.470473],[-82.460072,-78.469985],[-82.48705,-78.465753],[-82.883887,-78.314331],[-83.280724,-78.16291],[-83.677561,-78.011489],[-83.735707,-77.979587],[-83.767649,-77.968032],[-83.799875,-77.96738],[-83.812001,-77.969822],[-83.824127,-77.973891],[-83.83137,-77.982192],[-83.828603,-77.996677],[-83.817047,-78.011977],[-83.79011,-78.034845],[-83.780019,-78.04754],[-83.74649,-78.11004],[-83.725087,-78.135675],[-83.695302,-78.15545],[-83.661773,-78.167739],[-83.629465,-78.174249],[-83.559967,-78.177179],[-83.567738,-78.184666],[-83.596669,-78.202081],[-83.597971,-78.21738],[-83.591298,-78.226251],[-83.379709,-78.298517],[-83.305653,-78.302667],[-83.262847,-78.321222],[-83.217885,-78.334568],[-83.18163,-78.360935],[-83.020985,-78.428481],[-83.013661,-78.437758],[-83.004018,-78.460707],[-82.994985,-78.466241],[-82.944936,-78.473321],[-82.985707,-78.491876],[-83.045888,-78.504815],[-83.105336,-78.505141],[-83.143788,-78.486261],[-83.13622,-78.482517],[-83.121571,-78.472833],[-83.113759,-78.469415],[-83.150299,-78.44199],[-83.193471,-78.416681],[-83.239817,-78.398533],[-83.285797,-78.392185],[-83.373891,-78.404474],[-83.417388,-78.405938],[-83.461822,-78.392755],[-83.447581,-78.379083],[-83.428293,-78.371189],[-83.386871,-78.364679],[-83.407094,-78.351821],[-83.428863,-78.348403],[-83.475413,-78.351739],[-83.681264,-78.327244],[-83.702138,-78.334242],[-83.711903,-78.341729],[-83.73526,-78.355239],[-83.73998,-78.360935],[-83.739125,-78.375421],[-83.734731,-78.385837],[-83.725453,-78.392673],[-83.710032,-78.397231],[-83.744252,-78.418145],[-83.792348,-78.422947],[-83.886138,-78.419366],[-83.856353,-78.444431],[-83.803944,-78.501072],[-83.719635,-78.560154],[-83.541005,-78.629164],[-83.440053,-78.696222],[-83.403391,-78.714939],[-83.253529,-78.772719],[-82.91808,-78.858575],[-82.728383,-78.875665],[-82.632476,-78.863946],[-82.585683,-78.867852],[-82.56664,-78.894708],[-82.607167,-78.911391],[-82.607045,-78.92962],[-82.579498,-78.944594],[-82.517445,-78.955336],[-82.479848,-78.967055],[-82.459706,-78.969822],[-82.389027,-78.969334],[-82.065907,-79.017348],[-81.742787,-79.065362],[-81.718373,-79.080743],[-81.706899,-79.091241],[-81.688547,-79.095961],[-81.651112,-79.100763],[-81.451324,-79.16725],[-81.410146,-79.173598],[-81.453359,-79.188572],[-81.410634,-79.208185],[-81.388254,-79.215509],[-81.367828,-79.21559],[-81.30012,-79.197361],[-81.277211,-79.194513],[-81.105702,-79.203383],[-81.222157,-79.233331],[-81.274973,-79.254815],[-81.319325,-79.298517],[-81.301584,-79.324884],[-81.168528,-79.448175],[-81.11734,-79.469903],[-80.80484,-79.523899],[-80.49234,-79.577895],[-80.46817,-79.57464],[-80.439117,-79.565525],[-80.411936,-79.551935],[-80.393178,-79.535252],[-80.385976,-79.508233],[-80.401438,-79.489028],[-80.507069,-79.445977],[-80.530873,-79.43141],[-80.5454,-79.414321],[-80.546864,-79.392348],[-80.537221,-79.323663],[-80.530426,-79.304295],[-80.486562,-79.273614],[-80.429351,-79.258477],[-79.942255,-79.265283],[-79.455159,-79.272088],[-78.968063,-79.278894],[-78.480967,-79.285699],[-77.993871,-79.292505],[-77.506774,-79.29931],[-77.019678,-79.306115],[-76.532582,-79.312921],[-76.327301,-79.377211],[-76.216379,-79.391778],[-76.180002,-79.401625],[-76.131418,-79.423272],[-76.113515,-79.425063],[-76.066274,-79.435317],[-76.035878,-79.463311],[-76.008412,-79.496759],[-75.970204,-79.52337],[-75.955556,-79.522068],[-75.937652,-79.517267],[-75.924631,-79.520278],[-75.924469,-79.54225],[-75.938547,-79.56878],[-75.961293,-79.589044],[-76.011545,-79.62184],[-76.035634,-79.647149],[-76.074696,-79.706313],[-76.097646,-79.733575],[-76.149403,-79.768813],[-76.261952,-79.806817],[-76.4204,-79.879815],[-76.632192,-79.939223],[-77.025624,-79.976536],[-77.419057,-80.013849],[-77.872711,-80.007599],[-78.326365,-80.001349],[-78.780019,-79.995099],[-79.233673,-79.988849],[-79.687327,-79.982599],[-79.645416,-80.021254],[-79.221167,-80.064277],[-78.796919,-80.1073],[-78.37267,-80.150323],[-78.296254,-80.17547],[-78.273183,-80.178155],[-77.900543,-80.149021],[-77.779042,-80.161879],[-77.703277,-80.178318],[-77.666127,-80.181736],[-77.202246,-80.148207],[-76.738366,-80.114679],[-76.274485,-80.08115],[-76.246571,-80.089614],[-76.253977,-80.10947],[-76.271881,-80.133233],[-76.275746,-80.154474],[-76.253977,-80.184177],[-76.233388,-80.202569],[-76.176381,-80.231052],[-76.152455,-80.24627],[-76.115346,-80.281915],[-76.095082,-80.294122],[-76.081654,-80.294692],[-76.067047,-80.289972],[-76.040273,-80.275811],[-76.027455,-80.272068],[-76.012766,-80.271254],[-75.96524,-80.274835],[-75.956532,-80.277765],[-75.947825,-80.282647],[-75.987172,-80.303155],[-75.967152,-80.313409],[-75.901519,-80.306329],[-75.87206,-80.307712],[-75.57844,-80.403497],[-75.565541,-80.410903],[-75.546132,-80.434747],[-75.530181,-80.441664],[-75.512318,-80.44671],[-75.496734,-80.454848],[-75.466664,-80.476495],[-75.453969,-80.481378],[-75.414052,-80.488539],[-75.401723,-80.51922],[-75.42398,-80.541599],[-75.460072,-80.556329],[-75.519887,-80.570571],[-75.647532,-80.586358],[-75.67101,-80.59531],[-75.6905,-80.611505],[-75.711985,-80.638116],[-75.648183,-80.662774],[-75.469797,-80.703709],[-75.391428,-80.704848],[-75.370229,-80.711114],[-75.347808,-80.721856],[-75.247141,-80.741143],[-75.130116,-80.744236],[-75.02953,-80.772068],[-74.949452,-80.770196],[-74.988149,-80.79046],[-75.041127,-80.793634],[-75.192454,-80.771254],[-75.348988,-80.800063],[-75.725087,-80.818536],[-75.770904,-80.837579],[-75.653472,-80.841729],[-75.642323,-80.844903],[-75.631703,-80.852472],[-75.61266,-80.870212],[-75.599924,-80.878106],[-75.584788,-80.883722],[-75.554067,-80.891371],[-75.498606,-80.89658],[-75.381093,-80.880792],[-75.241038,-80.882013],[-75.148834,-80.863458],[-75.139068,-80.865655],[-75.096832,-80.883233],[-75.084381,-80.883559],[-75.061187,-80.879164],[-75.049387,-80.878676],[-74.987213,-80.896091],[-74.962148,-80.893976],[-74.931752,-80.887628],[-74.902496,-80.885919],[-74.838287,-80.919366],[-74.783315,-80.907892],[-74.724721,-80.885431],[-74.671498,-80.873468],[-74.619252,-80.873793],[-74.594228,-80.870782],[-74.479156,-80.834405],[-74.276967,-80.823337],[-74.162587,-80.800063],[-74.104237,-80.796157],[-74.046864,-80.804132],[-73.990631,-80.826593],[-73.95108,-80.837335],[-73.864369,-80.831313],[-73.822621,-80.835626],[-73.778188,-80.848403],[-73.441857,-80.888659],[-73.105526,-80.928915],[-72.769195,-80.969171],[-72.588857,-80.961358],[-72.603749,-80.93141],[-72.614084,-80.91961],[-72.628977,-80.910414],[-72.58373,-80.832289],[-72.557037,-80.798598],[-72.515981,-80.770278],[-72.46231,-80.750421],[-72.411,-80.744073],[-72.359486,-80.74863],[-72.277577,-80.765558],[-71.958079,-80.732761],[-71.63858,-80.699965],[-71.607167,-80.701755],[-71.548573,-80.71502],[-71.526601,-80.715427],[-71.281809,-80.663507],[-71.125803,-80.602634],[-71.067738,-80.601821],[-70.974273,-80.623956],[-70.941274,-80.625095],[-70.820627,-80.610121],[-70.433705,-80.657322],[-70.401519,-80.668064],[-70.37564,-80.68434],[-70.364125,-80.707696],[-70.367909,-80.723077],[-70.38801,-80.749444],[-70.393544,-80.763767],[-70.390696,-80.781183],[-70.384389,-80.794854],[-70.383534,-80.808038],[-70.397125,-80.823337],[-70.388173,-80.827244],[-70.324574,-80.840427],[-70.198638,-80.889418],[-70.15689,-80.895278],[-70.034169,-80.892673],[-70.055491,-80.913263],[-70.061757,-80.929132],[-70.052724,-80.943455],[-70.028228,-80.959649],[-70.002065,-80.970798],[-69.975819,-80.976007],[-69.778432,-80.985284],[-69.685455,-80.976007],[-69.429799,-81.002862],[-69.174143,-81.029718],[-69.116363,-81.025567],[-68.952504,-80.984796],[-68.680328,-80.96087],[-68.44872,-80.977146],[-68.306264,-81.003188],[-68.234853,-81.003513],[-68.170277,-81.025649],[-68.057118,-81.038263],[-68.087717,-81.051039],[-68.297353,-81.089939],[-68.42101,-81.087823],[-68.371653,-81.110284],[-67.914889,-81.167715],[-67.458125,-81.225146],[-67.001361,-81.282578],[-66.544597,-81.340009],[-66.087834,-81.39744],[-65.63107,-81.454871],[-65.174306,-81.512302],[-64.923329,-81.51336],[-64.672353,-81.514418],[-64.618479,-81.530369],[-64.589589,-81.534438],[-64.154506,-81.53906],[-63.719423,-81.543683],[-63.28434,-81.548305],[-62.849257,-81.552927],[-62.414174,-81.55755],[-62.281321,-81.586684],[-62.211334,-81.592055],[-62.189198,-81.599379],[-62.180491,-81.607517],[-62.161733,-81.631117],[-62.147857,-81.640232],[-62.131256,-81.645603],[-62.116363,-81.647638],[-62.083608,-81.645685],[-62.114491,-81.671319],[-62.159169,-81.685317],[-62.207346,-81.69256],[-62.597808,-81.700562],[-62.988271,-81.708564],[-63.378733,-81.716567],[-63.461252,-81.700779],[-63.2954,-81.649021],[-63.391184,-81.632094],[-63.492991,-81.64072],[-63.737375,-81.689386],[-64.03425,-81.697035],[-64.084381,-81.688897],[-63.843902,-81.622166],[-63.878163,-81.600844],[-63.936838,-81.609552],[-64.092152,-81.666111],[-64.198638,-81.688409],[-64.455678,-81.693292],[-64.712717,-81.698175],[-64.665273,-81.677341],[-64.513499,-81.638849],[-64.559316,-81.621759],[-64.61677,-81.619317],[-64.778472,-81.636977],[-64.979237,-81.695001],[-65.303782,-81.717543],[-65.417226,-81.701104],[-65.691721,-81.710545],[-65.705556,-81.714532],[-65.713043,-81.719985],[-65.714752,-81.729181],[-65.706166,-81.761489],[-65.701527,-81.769952],[-65.693471,-81.773614],[-65.677561,-81.777276],[-65.624867,-81.784112],[-65.267995,-81.790216],[-64.911122,-81.796319],[-64.964833,-81.815118],[-64.917551,-81.819513],[-64.751291,-81.797947],[-64.685536,-81.800226],[-64.633616,-81.79339],[-64.248877,-81.788941],[-63.864139,-81.784492],[-63.4794,-81.780043],[-63.512034,-81.802423],[-63.540883,-81.829278],[-63.508778,-81.835626],[-63.476064,-81.837335],[-63.517893,-81.862074],[-63.577219,-81.87184],[-64.022393,-81.875144],[-64.467568,-81.878448],[-64.912742,-81.881752],[-65.357916,-81.885056],[-65.80309,-81.88836],[-66.255767,-81.948012],[-65.978647,-81.958469],[-65.701527,-81.968927],[-65.629791,-81.986586],[-65.652984,-82.005792],[-65.681793,-82.015883],[-65.742828,-82.026788],[-65.920318,-82.079685],[-65.943715,-82.095798],[-65.985585,-82.15016],[-66.005767,-82.168145],[-66.062408,-82.195408],[-66.033559,-82.214451],[-65.866851,-82.209893],[-65.89387,-82.227227],[-65.940338,-82.23504],[-66.028147,-82.239679],[-65.989858,-82.249444],[-65.862701,-82.244806],[-65.913442,-82.263116],[-66.080068,-82.291681],[-66.030263,-82.311619],[-65.759226,-82.302504],[-65.488189,-82.29339],[-65.374989,-82.263116],[-65.233469,-82.256931],[-65.218617,-82.259942],[-65.207631,-82.265802],[-65.200673,-82.273614],[-65.194569,-82.282322],[-65.186106,-82.290704],[-65.178822,-82.294041],[-65.16218,-82.29754],[-65.154408,-82.301202],[-65.146596,-82.308364],[-65.144846,-82.31406],[-65.148061,-82.319513],[-65.155385,-82.325942],[-65.167348,-82.340265],[-65.16454,-82.349705],[-65.151112,-82.355645],[-65.107777,-82.363702],[-65.09435,-82.367934],[-65.091908,-82.374119],[-65.101308,-82.392755],[-65.09203,-82.40252],[-65.072581,-82.40602],[-64.76476,-82.380222],[-64.456939,-82.354425],[-64.490549,-82.368585],[-64.525746,-82.377862],[-64.488271,-82.403904],[-64.439605,-82.410333],[-64.140696,-82.356256],[-63.841786,-82.302179],[-63.587575,-82.321466],[-63.333363,-82.340753],[-63.286733,-82.330255],[-63.195872,-82.29461],[-63.234731,-82.269138],[-63.188832,-82.257582],[-63.041371,-82.252048],[-63.035146,-82.273696],[-63.009877,-82.279718],[-62.740895,-82.26808],[-62.471913,-82.256443],[-62.072987,-82.28753],[-61.618235,-82.245267],[-61.163482,-82.203003],[-60.70873,-82.16074],[-60.647288,-82.166681],[-60.69286,-82.197686],[-60.401235,-82.17018],[-60.506174,-82.215102],[-60.813201,-82.279718],[-61.120229,-82.344334],[-61.290191,-82.342218],[-61.758412,-82.402602],[-61.995676,-82.459161],[-62.395355,-82.489435],[-62.795033,-82.519708],[-62.765126,-82.554295],[-62.729075,-82.577813],[-62.495188,-82.681736],[-62.511098,-82.709568],[-62.522084,-82.718194],[-62.538686,-82.720636],[-62.51887,-82.725763],[-62.481679,-82.719415],[-62.462026,-82.719415],[-62.443593,-82.725681],[-62.403147,-82.745538],[-62.100697,-82.849705],[-62.093251,-82.854425],[-62.089955,-82.862481],[-62.091217,-82.87127],[-62.090728,-82.880792],[-62.082387,-82.891209],[-61.932485,-82.972345],[-61.997222,-83.001235],[-62.066396,-83.013279],[-62.20934,-83.018813],[-62.180776,-83.034112],[-62.138539,-83.036879],[-61.94164,-83.028416],[-61.905344,-83.020115],[-61.8544,-82.995375],[-61.833485,-82.992446],[-61.815785,-82.994561],[-61.657826,-83.057712],[-61.620229,-83.063409],[-61.601918,-83.059991],[-61.587148,-83.050714],[-61.563588,-83.023207],[-61.549387,-83.010349],[-61.532135,-83.00213],[-61.384999,-82.966404],[-61.364898,-82.949802],[-61.349355,-82.908949],[-61.337066,-82.898126],[-61.314117,-82.890232],[-61.29426,-82.887384],[-61.276519,-82.889825],[-61.260732,-82.897638],[-61.218251,-82.93906],[-61.184682,-82.959242],[-61.147939,-82.964776],[-61.110178,-82.948989],[-61.132883,-82.917901],[-61.096547,-82.905043],[-61.065745,-82.909763],[-61.006581,-82.946059],[-60.978342,-82.975193],[-60.974924,-83.005466],[-61.000234,-83.073012],[-61.04011,-83.119561],[-61.112538,-83.164809],[-61.192494,-83.1985],[-61.254303,-83.210056],[-61.326568,-83.213556],[-61.484731,-83.254653],[-61.624827,-83.312188],[-61.851471,-83.367608],[-61.824696,-83.374444],[-61.795277,-83.372735],[-61.73762,-83.361749],[-61.541127,-83.350844],[-61.529612,-83.357599],[-61.524241,-83.374444],[-61.52066,-83.392755],[-61.514475,-83.403985],[-61.488881,-83.406915],[-61.419057,-83.391209],[-61.255238,-83.375746],[-61.186391,-83.379815],[-61.147694,-83.408461],[-61.110422,-83.413263],[-60.899648,-83.387953],[-61.005035,-83.424005],[-61.113637,-83.447931],[-60.95226,-83.476251],[-60.900136,-83.474216],[-60.667836,-83.430271],[-60.608062,-83.428399],[-60.446116,-83.468683],[-60.160105,-83.448093],[-59.874094,-83.427504],[-59.862701,-83.433282],[-59.845041,-83.454278],[-59.833608,-83.458673],[-59.46996,-83.460138],[-59.076629,-83.347345],[-58.683298,-83.234552],[-58.289967,-83.121759],[-57.896637,-83.008966],[-57.698883,-82.910252],[-57.245269,-82.821981],[-56.791656,-82.733711],[-56.338043,-82.64544],[-56.319203,-82.636814],[-56.296376,-82.621189],[-55.99234,-82.540948],[-55.931874,-82.514093],[-55.925852,-82.509942],[-55.924916,-82.504571],[-55.928293,-82.488214],[-55.927235,-82.483087],[-55.916127,-82.476983],[-55.850168,-82.462091],[-55.843658,-82.467218],[-55.840443,-82.476332],[-55.826243,-82.485121],[-55.776926,-82.487563],[-55.68106,-82.461684],[-55.558949,-82.461196],[-55.497792,-82.474298],[-55.440989,-82.476739],[-55.428456,-82.479913],[-55.424916,-82.486017],[-55.423004,-82.493097],[-55.41511,-82.49977],[-55.392934,-82.506524],[-55.224843,-82.517755],[-55.176422,-82.510431],[-55.14387,-82.490655],[-55.187611,-82.458266],[-55.141428,-82.444513],[-55.130116,-82.43906],[-55.121978,-82.426039],[-55.110829,-82.394138],[-55.099762,-82.384373],[-55.015492,-82.352309],[-54.987864,-82.346856],[-54.857574,-82.347914],[-54.848378,-82.343194],[-54.831166,-82.323419],[-54.820546,-82.316339],[-54.761545,-82.299737],[-54.500559,-82.287408],[-54.239573,-82.275079],[-54.173899,-82.262953],[-54.200917,-82.254164],[-54.293202,-82.253513],[-53.924672,-82.20615],[-53.96996,-82.1985],[-54.25768,-82.201593],[-54.303456,-82.191664],[-53.909291,-82.178399],[-53.799631,-82.194024],[-53.313954,-82.152765],[-53.287587,-82.147149],[-53.275461,-82.14186],[-53.255442,-82.130141],[-53.240346,-82.126397],[-53.224924,-82.125095],[-52.934031,-82.142755],[-52.643137,-82.160414],[-52.186879,-82.111505],[-51.730643,-82.062598],[-51.730621,-82.062595],[-51.246897,-82.010675],[-50.763173,-81.958754],[-50.733388,-81.959568],[-50.557932,-81.993829],[-50.122418,-81.973126],[-49.686903,-81.952423],[-49.251389,-81.93172],[-48.815875,-81.911017],[-48.38036,-81.890313],[-48.2294,-81.918227],[-48.220082,-81.915623],[-48.206899,-81.898696],[-48.198883,-81.892836],[-48.188222,-81.891534],[-47.887685,-81.92197],[-47.431223,-81.917657],[-47.380442,-81.923517],[-47.344879,-81.950128],[-47.350819,-81.954848],[-47.361969,-81.966241],[-47.368153,-81.97031],[-47.263783,-81.969985],[-47.423736,-82.007501],[-47.584584,-82.02044],[-47.562001,-82.03753],[-47.527577,-82.047621],[-47.49059,-82.052341],[-47.460317,-82.05283],[-47.396311,-82.045017],[-47.363108,-82.044692],[-47.295522,-82.069513],[-47.255523,-82.072198],[-47.215199,-82.065688],[-47.175689,-82.053318],[-47.087026,-82.003676],[-47.055043,-81.993259],[-46.667124,-81.951511],[-46.279205,-81.909763],[-46.229319,-81.916925],[-46.251576,-81.94378],[-46.253407,-81.955336],[-46.246693,-81.97324],[-46.234609,-81.988946],[-46.216949,-82.003188],[-46.196929,-82.014337],[-46.136057,-82.03631],[-46.053944,-82.083266],[-46.012563,-82.094415],[-46.027089,-82.102227],[-46.038197,-82.112726],[-46.044749,-82.126153],[-46.045562,-82.142511],[-45.973012,-82.125421],[-45.948842,-82.125746],[-46.027211,-82.154474],[-46.049428,-82.170994],[-46.064443,-82.191827],[-46.074778,-82.210056],[-46.088775,-82.224379],[-46.300771,-82.305922],[-46.688791,-82.40545],[-46.632802,-82.430841],[-46.452992,-82.470798],[-46.463531,-82.4874],[-46.479482,-82.496189],[-46.5183,-82.503351],[-46.053619,-82.554864],[-46.025054,-82.552179],[-46.042226,-82.540785],[-45.946889,-82.49212],[-45.832509,-82.451755],[-45.71939,-82.443617],[-45.579335,-82.522149],[-45.520416,-82.526625],[-45.028818,-82.453464],[-44.537221,-82.380304],[-44.305247,-82.315525],[-44.198598,-82.255466],[-44.137074,-82.244724],[-44.073476,-82.248468],[-44.013539,-82.262953],[-44.019154,-82.275486],[-44.026519,-82.284845],[-44.035878,-82.292657],[-44.046986,-82.299493],[-44.054677,-82.309503],[-44.053863,-82.337335],[-44.056996,-82.349786],[-44.074371,-82.363377],[-44.10143,-82.374607],[-44.152984,-82.389337],[-44.08495,-82.402439],[-44.011098,-82.391209],[-43.682139,-82.300307],[-43.353179,-82.209405],[-43.346425,-82.199314],[-43.344228,-82.17962],[-43.333363,-82.169854],[-43.264231,-82.142267],[-43.159779,-82.124688],[-43.147776,-82.11419],[-43.155385,-82.096775],[-43.170766,-82.079685],[-43.181752,-82.070245],[-43.198598,-82.062107],[-43.255849,-82.04754],[-43.234527,-82.029718],[-43.192372,-82.00921],[-43.169016,-81.992852],[-43.215159,-81.964451],[-43.2235,-81.956638],[-43.222564,-81.941176],[-43.21349,-81.925226],[-43.190297,-81.899672],[-43.165639,-81.886],[-43.131947,-81.878513],[-42.996327,-81.867364],[-42.959706,-81.860447],[-42.906361,-81.830173],[-42.799794,-81.818617],[-42.517486,-81.754978],[-42.235178,-81.691339],[-42.278879,-81.677911],[-42.223053,-81.643162],[-42.206532,-81.636407],[-41.986195,-81.619561],[-41.941396,-81.611423],[-41.899892,-81.583591],[-41.925201,-81.561456],[-41.93932,-81.553806],[-41.956125,-81.550877],[-41.922231,-81.534763],[-41.87621,-81.492852],[-41.846791,-81.477146],[-41.841135,-81.471449],[-41.841298,-81.463149],[-41.842519,-81.454685],[-41.840077,-81.4485],[-41.831695,-81.444757],[-41.821889,-81.442966],[-41.783193,-81.441583],[-41.773834,-81.439711],[-41.76891,-81.43434],[-41.766469,-81.418064],[-41.763824,-81.410414],[-41.758453,-81.406915],[-41.724599,-81.399591],[-41.58788,-81.340102],[-41.119496,-81.22617],[-41.10497,-81.220392],[-41.062978,-81.187921],[-41.046702,-81.18141],[-40.879506,-81.157973],[-40.912994,-81.169366],[-40.947987,-81.175388],[-40.915639,-81.189874],[-40.569325,-81.15488],[-40.39802,-81.169854],[-40.141265,-81.120701],[-39.884511,-81.071547],[-39.849192,-81.048028],[-39.83849,-81.043552],[-39.699086,-81.021417],[-39.646555,-81.022638],[-39.619985,-81.02044],[-39.549184,-80.996352],[-39.240956,-80.951511],[-38.932729,-80.906671],[-38.822418,-80.905369],[-38.772288,-80.892267],[-38.820058,-80.886163],[-38.813385,-80.872491],[-38.803578,-80.863214],[-38.791127,-80.859552],[-38.776763,-80.863051],[-38.75536,-80.871026],[-38.54662,-80.913507],[-38.392242,-80.912042],[-38.007517,-80.954034],[-37.622792,-80.996026],[-37.637807,-81.005141],[-37.653676,-81.009942],[-37.687896,-81.013442],[-37.471059,-81.031345],[-37.372182,-81.06992],[-37.336903,-81.078058],[-37.230295,-81.089288],[-37.212026,-81.088149],[-37.194,-81.084161],[-37.139801,-81.059503],[-37.123769,-81.056248],[-36.978505,-81.052423],[-36.908193,-81.031427],[-36.861236,-80.986261],[-36.816965,-80.97503],[-36.590728,-81.004978],[-36.595082,-80.972589],[-36.554107,-80.951349],[-36.457875,-80.934666],[-36.033193,-80.920668],[-36.014516,-80.91131],[-35.997548,-80.892022],[-35.982411,-80.884535],[-35.882436,-80.867852],[-35.827748,-80.839776],[-35.792592,-80.830987],[-35.782582,-80.826593],[-35.780588,-80.808038],[-35.778066,-80.801528],[-35.773264,-80.80047],[-35.767079,-80.801039],[-35.759999,-80.799574],[-35.721669,-80.786065],[-35.468312,-80.740737],[-35.214955,-80.695408],[-35.466786,-80.648126],[-35.358388,-80.61533],[-34.887837,-80.61535],[-34.417287,-80.61537],[-33.946736,-80.615391],[-33.476186,-80.615411],[-33.177561,-80.55462],[-33.425526,-80.523614],[-33.464752,-80.497654],[-33.413075,-80.497654],[-33.125111,-80.531996],[-33.069732,-80.53045],[-32.931508,-80.541599],[-32.481007,-80.488417],[-32.030507,-80.435235],[-31.649342,-80.445977],[-31.268178,-80.45672],[-30.887013,-80.467462],[-30.505849,-80.478204],[-30.387847,-80.498305],[-30.350209,-80.499933],[-30.387115,-80.469008],[-30.456858,-80.458185],[-30.586903,-80.458429],[-30.953196,-80.38364],[-31.319488,-80.308852],[-31.278879,-80.297133],[-30.827314,-80.292874],[-30.375749,-80.288615],[-29.924184,-80.284356],[-29.915517,-80.281427],[-29.895741,-80.269138],[-29.884755,-80.264907],[-29.87267,-80.263442],[-29.720937,-80.261977],[-29.790639,-80.233494],[-29.86384,-80.215427],[-29.81607,-80.187433],[-29.760813,-80.175551],[-29.271108,-80.167901],[-28.781402,-80.160252],[-28.291697,-80.152602],[-27.801991,-80.144952],[-27.312286,-80.137302],[-26.822581,-80.129653],[-26.332875,-80.122003],[-26.305776,-80.118585],[-26.228261,-80.096368],[-26.195139,-80.091485],[-25.709889,-80.087599],[-25.224639,-80.083713],[-24.73939,-80.079828],[-24.25414,-80.075942],[-24.209218,-80.069757],[-24.106191,-80.019708],[-24.068593,-80.009942],[-23.680938,-80.000909],[-23.293284,-79.991876],[-22.905629,-79.982843],[-22.824086,-79.963474],[-22.828847,-79.959161],[-22.836903,-79.948663],[-22.841542,-79.944268],[-22.766835,-79.926202],[-22.609242,-79.929132],[-22.53246,-79.917087],[-22.93456,-79.888062],[-23.336659,-79.859036],[-23.738759,-79.830011],[-23.765981,-79.820896],[-23.791331,-79.815606],[-23.820953,-79.817153],[-23.877838,-79.827081],[-23.930816,-79.830336],[-24.089752,-79.819594],[-24.201487,-79.82643],[-24.262034,-79.822361],[-24.303131,-79.803806],[-24.283111,-79.790134],[-24.274322,-79.781834],[-24.271148,-79.772556],[-24.272328,-79.756036],[-24.271718,-79.741469],[-24.267079,-79.728204],[-24.256215,-79.715102],[-24.729848,-79.781996],[-25.225131,-79.765836],[-25.720414,-79.749675],[-26.215698,-79.733514],[-26.710981,-79.717353],[-27.206264,-79.701193],[-27.701548,-79.685032],[-28.196831,-79.668871],[-28.692114,-79.65271],[-29.187398,-79.63655],[-29.682681,-79.620389],[-30.177965,-79.604228],[-30.673248,-79.588067],[-30.652089,-79.563165],[-30.28185,-79.468791],[-29.91161,-79.374417],[-29.541371,-79.280043],[-29.585317,-79.267673],[-29.63036,-79.268162],[-29.78893,-79.313084],[-29.829172,-79.319431],[-29.849233,-79.307306],[-29.848297,-79.298517],[-29.833811,-79.276056],[-30.059804,-79.262791],[-30.524729,-79.286391],[-30.541493,-79.275079],[-30.556223,-79.248224],[-30.449452,-79.217218],[-30.008656,-79.144464],[-29.941762,-79.111423],[-29.989654,-79.091485],[-30.195627,-79.104425],[-30.183013,-79.093927],[-30.169342,-79.085138],[-30.154652,-79.078383],[-30.138987,-79.073989],[-30.183827,-79.044203],[-30.239166,-79.034275],[-30.297515,-79.037286],[-30.457834,-79.065362],[-30.468088,-79.070001],[-30.484853,-79.08587],[-30.494862,-79.091567],[-30.510732,-79.096124],[-30.573598,-79.10589],[-30.582875,-79.105076],[-30.58845,-79.099054],[-30.591705,-79.085219],[-30.598134,-79.077813],[-30.611195,-79.074965],[-31.052992,-79.108754],[-31.494789,-79.142543],[-31.936586,-79.176332],[-32.378383,-79.210121],[-32.82018,-79.24391],[-33.286163,-79.208646],[-33.752146,-79.173381],[-34.218129,-79.138116],[-34.186106,-79.1242],[-34.169423,-79.12005],[-34.151845,-79.117608],[-34.200754,-79.091078],[-34.258453,-79.076593],[-34.657029,-79.031606],[-35.055605,-78.986619],[-35.45418,-78.941632],[-35.852756,-78.896645],[-36.251332,-78.851658],[-36.344635,-78.815199],[-36.411285,-78.753513],[-36.419667,-78.731541],[-36.425282,-78.684177],[-36.443756,-78.634047],[-36.441151,-78.611261],[-36.427113,-78.590997],[-36.404042,-78.570896],[-36.399403,-78.564223],[-36.395619,-78.547621],[-36.391835,-78.540216],[-36.324696,-78.457127],[-36.30724,-78.43963],[-36.283315,-78.423923],[-36.277455,-78.418145],[-36.266998,-78.400079],[-36.260162,-78.392348],[-36.057851,-78.265069],[-36.038442,-78.246515],[-36.032704,-78.236586],[-36.027699,-78.225518],[-36.021799,-78.215916],[-36.013092,-78.210545],[-35.92748,-78.185724],[-35.850209,-78.184666],[-35.838857,-78.182387],[-35.832509,-78.17669],[-35.823842,-78.155694],[-35.81725,-78.152032],[-35.80602,-78.152765],[-35.783315,-78.157647],[-35.632395,-78.161391],[-35.606028,-78.158624],[-35.580963,-78.150486],[-35.59557,-78.139744],[-35.610951,-78.12127],[-35.62149,-78.100274],[-35.621205,-78.08172],[-35.60733,-78.072849],[-35.582875,-78.067315],[-35.500803,-78.058526],[-35.490549,-78.050714],[-35.475657,-77.986912],[-35.466461,-77.96795],[-35.416086,-77.924574],[-35.387522,-77.891371],[-35.356191,-77.861993],[-35.312856,-77.844415],[-35.056467,-77.823419],[-34.664296,-77.853611],[-34.59789,-77.845961],[-34.508453,-77.853123],[-34.499664,-77.851983],[-34.489491,-77.84588],[-34.471669,-77.827813],[-34.459096,-77.821954],[-34.650299,-77.793878],[-34.645334,-77.763767],[-34.679799,-77.751723],[-34.759267,-77.747735],[-34.7412,-77.731052],[-34.738881,-77.712172],[-34.750396,-77.696059],[-34.773915,-77.687433],[-34.711497,-77.62949],[-34.688303,-77.618585],[-34.60143,-77.606378],[-34.572662,-77.598891],[-34.521555,-77.575616],[-34.474233,-77.545994],[-34.434804,-77.529392],[-34.426259,-77.523614],[-34.413442,-77.508966],[-34.401357,-77.498793],[-34.369944,-77.482599],[-34.320546,-77.466404],[-34.135406,-77.44256],[-34.085601,-77.429946],[-33.975453,-77.418878],[-33.863596,-77.388116],[-33.839508,-77.378188],[-33.721099,-77.310968],[-33.696767,-77.305841],[-33.645131,-77.305271],[-33.621938,-77.298923],[-33.593577,-77.287856],[-33.56371,-77.282485],[-33.533437,-77.282322],[-33.504018,-77.286798],[-33.482289,-77.286879],[-33.407053,-77.267022],[-33.346344,-77.259454],[-33.173818,-77.261326],[-33.120432,-77.253106],[-32.954579,-77.188897],[-32.50064,-77.126153],[-32.119456,-77.170668],[-31.915028,-77.150811],[-31.894276,-77.143243],[-31.881825,-77.127537],[-31.868642,-77.067641],[-31.85143,-77.050958],[-31.749094,-76.994399],[-31.696116,-76.976658],[-31.361453,-76.934367],[-31.026791,-76.892077],[-30.692128,-76.849786],[-30.661366,-76.851658],[-30.650706,-76.847345],[-30.642568,-76.834731],[-30.635162,-76.820408],[-30.626861,-76.809991],[-30.614003,-76.804376],[-30.567698,-76.795587],[-30.539174,-76.785414],[-30.456288,-76.745538],[-30.4051,-76.736098],[-30.395863,-76.729913],[-30.384918,-76.706801],[-30.376088,-76.699477],[-30.226471,-76.667087],[-30.153472,-76.635349],[-29.65807,-76.576918],[-29.626576,-76.569431],[-29.557932,-76.543227],[-29.561391,-76.538181],[-29.566762,-76.526056],[-29.570424,-76.520929],[-29.556996,-76.515232],[-29.536977,-76.497328],[-29.526763,-76.491388],[-29.513783,-76.489841],[-29.485341,-76.491632],[-29.471547,-76.490167],[-29.411041,-76.474705],[-29.385243,-76.463474],[-29.358266,-76.44378],[-29.339508,-76.439548],[-29.157338,-76.425388],[-28.85912,-76.353285],[-28.51263,-76.311347],[-28.166141,-76.26941],[-27.819651,-76.227472],[-27.597646,-76.227472],[-27.337636,-76.172052],[-27.220204,-76.161228],[-26.985178,-76.169692],[-26.889801,-76.148858],[-26.859731,-76.135837],[-26.854115,-76.132501],[-26.851674,-76.127699],[-26.849965,-76.11297],[-26.847401,-76.108168],[-26.822865,-76.097345],[-26.794057,-76.092055],[-26.626536,-76.095147],[-26.595326,-76.089614],[-26.507436,-76.054946],[-26.404612,-76.040948],[-26.373687,-76.032322],[-26.287709,-75.996677],[-26.231557,-75.98504],[-26.117177,-75.973891],[-25.94815,-75.933038],[-25.542511,-75.894749],[-25.136871,-75.856459],[-24.731231,-75.81817],[-24.325592,-75.77988],[-24.213735,-75.756443],[-23.741546,-75.747206],[-23.269358,-75.73797],[-23.2447,-75.729913],[-23.215199,-75.715997],[-23.188466,-75.712091],[-23.161204,-75.711602],[-23.105092,-75.704685],[-22.847076,-75.707615],[-22.729604,-75.690037],[-22.650746,-75.690688],[-22.622426,-75.684828],[-22.596018,-75.674737],[-22.560943,-75.643813],[-22.533355,-75.642022],[-22.378529,-75.678155],[-22.365631,-75.676202],[-22.351959,-75.668552],[-22.327626,-75.649998],[-22.315541,-75.645196],[-22.301869,-75.644627],[-22.073964,-75.705824],[-22.069325,-75.684991],[-22.050893,-75.681573],[-21.862782,-75.709568],[-21.811635,-75.708673],[-21.76183,-75.699965],[-21.680531,-75.671157],[-21.269643,-75.714288],[-21.17394,-75.705011],[-21.080149,-75.680352],[-20.993764,-75.644789],[-20.947499,-75.632989],[-20.85969,-75.636651],[-20.816721,-75.626072],[-20.775258,-75.607517],[-20.755849,-75.605239],[-20.731191,-75.608982],[-20.687001,-75.620782],[-20.665273,-75.62127],[-20.644154,-75.612074],[-20.721669,-75.57822],[-20.735829,-75.563572],[-20.730295,-75.541599],[-20.705474,-75.528416],[-20.494456,-75.496677],[-20.445627,-75.481378],[-20.399485,-75.472101],[-20.083567,-75.510797],[-19.767649,-75.549493],[-19.742543,-75.546157],[-19.694081,-75.529555],[-19.67219,-75.52752],[-19.592437,-75.539972],[-19.388051,-75.545831],[-19.373891,-75.543145],[-19.347279,-75.532403],[-19.338246,-75.530532],[-19.240468,-75.548435],[-19.237782,-75.52516],[-19.237782,-75.502048],[-19.005971,-75.520685],[-18.967152,-75.514907],[-18.935618,-75.490981],[-19.028472,-75.454278],[-18.987131,-75.442804],[-18.653635,-75.48211],[-18.625478,-75.482354],[-18.578725,-75.467462],[-18.550893,-75.463962],[-18.528147,-75.466078],[-18.46052,-75.480239],[-18.408274,-75.48089],[-18.251373,-75.460219],[-18.5065,-75.415704],[-18.531484,-75.407403],[-18.551178,-75.376723],[-18.573069,-75.358494],[-18.614817,-75.330662],[-18.638661,-75.319594],[-18.663808,-75.312107],[-18.737701,-75.299981],[-18.774973,-75.280043],[-18.796498,-75.274347],[-18.819814,-75.271173],[-18.85204,-75.263116],[-18.873525,-75.249444],[-18.864858,-75.228936],[-18.84557,-75.224867],[-18.784739,-75.230076],[-18.760976,-75.228448],[-18.749745,-75.223891],[-18.740142,-75.218845],[-18.721099,-75.205499],[-18.714752,-75.195977],[-18.710276,-75.171319],[-18.704945,-75.161554],[-18.682932,-75.1513],[-18.654164,-75.15016],[-18.600087,-75.158298],[-18.546295,-75.146905],[-18.53661,-75.103285],[-18.535878,-75.053155],[-18.509429,-75.022556],[-18.484731,-75.021417],[-18.461985,-75.025811],[-18.439809,-75.02752],[-18.416493,-75.019138],[-18.393381,-75.005548],[-18.369618,-74.994806],[-18.319,-74.979262],[-18.308827,-74.979262],[-18.273671,-74.988051],[-18.257965,-74.988458],[-18.248118,-74.983819],[-18.226552,-74.966241],[-18.204945,-74.955987],[-18.180491,-74.948337],[-18.131093,-74.938735],[-18.150502,-74.924249],[-18.146148,-74.903741],[-18.128041,-74.88421],[-18.106272,-74.872654],[-18.055898,-74.858819],[-18.033315,-74.84824],[-18.013783,-74.831638],[-17.996978,-74.822686],[-17.915639,-74.801853],[-17.855824,-74.79811],[-17.826487,-74.791436],[-17.802154,-74.776544],[-17.822092,-74.767755],[-17.837758,-74.757013],[-17.850575,-74.743259],[-17.861684,-74.72503],[-17.871734,-74.713962],[-17.884389,-74.709893],[-17.898183,-74.708185],[-17.911855,-74.703871],[-17.91808,-74.699314],[-17.92634,-74.688084],[-17.93106,-74.682875],[-17.959828,-74.666762],[-17.965199,-74.658949],[-17.965688,-74.637872],[-17.954986,-74.632501],[-17.921376,-74.634454],[-17.810374,-74.616957],[-17.708323,-74.586847],[-17.675771,-74.586358],[-17.641103,-74.594659],[-17.623158,-74.585219],[-17.61734,-74.551528],[-17.604807,-74.51922],[-17.566762,-74.513849],[-17.575917,-74.499119],[-17.58731,-74.486423],[-17.601064,-74.476658],[-17.61734,-74.470473],[-17.609934,-74.465265],[-17.596547,-74.452244],[-17.589223,-74.446873],[-17.61205,-74.40252],[-17.57079,-74.369561],[-17.505483,-74.347833],[-17.456288,-74.337172],[-17.026784,-74.32228],[-16.597279,-74.307387],[-16.261952,-74.342462],[-15.926625,-74.377537],[-15.753082,-74.430434],[-15.639027,-74.430841],[-15.616689,-74.423028],[-15.616567,-74.401951],[-15.610951,-74.40016],[-15.59789,-74.399998],[-15.583241,-74.398207],[-15.560536,-74.399672],[-15.195546,-74.360528],[-15.280873,-74.338474],[-15.319569,-74.319106],[-15.33316,-74.288751],[-15.33023,-74.280938],[-15.324696,-74.275486],[-15.309804,-74.266209],[-15.304351,-74.256768],[-15.305409,-74.231215],[-15.302113,-74.221449],[-15.287099,-74.215916],[-15.223297,-74.212986],[-15.208363,-74.206313],[-15.206288,-74.200291],[-15.207672,-74.193943],[-15.20287,-74.1867],[-15.193227,-74.181329],[-15.152903,-74.168227],[-15.137929,-74.166681],[-15.130727,-74.163751],[-15.122792,-74.155938],[-15.114084,-74.137302],[-15.109527,-74.131524],[-15.089996,-74.126153],[-15.019276,-74.129327],[-15.003529,-74.125909],[-14.970204,-74.109063],[-14.953725,-74.103285],[-14.827992,-74.081231],[-14.789052,-74.065037],[-14.734609,-74.02158],[-14.71345,-74.00921],[-14.692983,-74.001642],[-14.611684,-73.986261],[-14.575795,-73.987074],[-14.525054,-73.975681],[-14.51773,-73.971368],[-14.517161,-73.962823],[-14.522206,-73.940118],[-14.518219,-73.934015],[-14.433013,-73.908298],[-14.396718,-73.888442],[-14.361806,-73.85768],[-14.416331,-73.841974],[-14.595774,-73.842706],[-14.627187,-73.839125],[-14.653676,-73.828709],[-14.676625,-73.811782],[-14.697133,-73.789646],[-14.717641,-73.780532],[-14.745717,-73.784601],[-14.796498,-73.802911],[-15.241383,-73.875706],[-15.686269,-73.9485],[-16.175933,-73.939223],[-16.199127,-73.931248],[-16.243031,-73.901788],[-16.262441,-73.894789],[-16.462148,-73.894627],[-16.516998,-73.885186],[-16.554433,-73.864841],[-16.512278,-73.857029],[-16.434641,-73.876397],[-16.391957,-73.879327],[-16.196401,-73.83408],[-15.90982,-73.81699],[-15.865956,-73.808201],[-15.825754,-73.78867],[-15.875478,-73.76336],[-15.929677,-73.750177],[-16.3308,-73.709242],[-16.376291,-73.719985],[-16.399403,-73.722426],[-16.4947,-73.7138],[-16.55899,-73.696547],[-16.583241,-73.686293],[-16.598256,-73.667739],[-16.602854,-73.633559],[-16.598622,-73.601495],[-16.587717,-73.5735],[-16.570221,-73.549412],[-16.546742,-73.528985],[-16.562164,-73.502537],[-16.560129,-73.484063],[-16.543568,-73.468683],[-16.438466,-73.413263],[-15.976186,-73.303806],[-15.957753,-73.290134],[-15.961659,-73.265802],[-15.980458,-73.239516],[-15.993072,-73.214776],[-15.978871,-73.194594],[-15.897694,-73.149998],[-15.8697,-73.139093],[-15.640126,-73.101821],[-15.566558,-73.079278],[-15.541412,-73.076837],[-15.426747,-73.091078],[-15.256907,-73.07879],[-15.242055,-73.072198],[-15.215403,-73.053155],[-15.202992,-73.04697],[-15.179921,-73.044122],[-14.984039,-73.052504],[-14.883209,-73.042413],[-14.612416,-73.082208],[-14.509267,-73.120375],[-14.457875,-73.158949],[-14.441477,-73.164727],[-14.42809,-73.160577],[-14.380971,-73.131443],[-14.36677,-73.130955],[-14.340159,-73.14544],[-14.322743,-73.14129],[-14.295033,-73.128513],[-14.262807,-73.120701],[-14.229807,-73.117608],[-14.19933,-73.119317],[-14.131703,-73.130955],[-14.097483,-73.132989],[-14.047597,-73.12477],[-14.016469,-73.129571],[-13.99828,-73.128188],[-13.936391,-73.113702],[-13.916819,-73.10589],[-13.941314,-73.093194],[-13.98998,-73.077813],[-14.014638,-73.066339],[-13.980865,-73.043064],[-13.959788,-73.016046],[-13.936391,-72.994317],[-13.895253,-72.986749],[-14.029775,-72.908461],[-14.172963,-72.846938],[-14.206939,-72.836602],[-14.222646,-72.828302],[-14.227162,-72.816339],[-14.226674,-72.797621],[-14.235829,-72.78574],[-14.251536,-72.777439],[-14.307485,-72.758722],[-14.386138,-72.742283],[-14.418324,-72.72381],[-14.390736,-72.713149],[-14.364817,-72.708917],[-14.221099,-72.711684],[-14.014027,-72.738702],[-13.899566,-72.771091],[-13.790273,-72.786716],[-13.653066,-72.791681],[-13.63036,-72.798923],[-13.576527,-72.825942],[-13.519399,-72.845392],[-13.491038,-72.846287],[-13.437896,-72.832127],[-13.379384,-72.836114],[-13.349477,-72.830743],[-13.288971,-72.810235],[-13.264027,-72.805759],[-13.181264,-72.803888],[-13.154775,-72.799493],[-13.128489,-72.789239],[-13.055002,-72.74977],[-13.027984,-72.740411],[-13.000396,-72.73447],[-12.973785,-72.732599],[-12.962758,-72.728936],[-12.945424,-72.711114],[-12.934926,-72.706231],[-12.915924,-72.70379],[-12.902333,-72.700372],[-12.890533,-72.693536],[-12.877105,-72.680597],[-12.869252,-72.668634],[-12.866444,-72.659845],[-12.861195,-72.653497],[-12.578969,-72.584649],[-12.537465,-72.585138],[-12.517161,-72.583103],[-12.456044,-72.559666],[-12.435048,-72.554946],[-12.411733,-72.555271],[-12.341298,-72.563572],[-12.321156,-72.561782],[-12.244374,-72.540704],[-11.900441,-72.492161],[-11.556508,-72.443617],[-11.505238,-72.446384],[-11.464019,-72.441502],[-11.387522,-72.418064],[-11.370229,-72.409112],[-11.356557,-72.396417],[-11.34789,-72.380141],[-11.335317,-72.344496],[-11.325347,-72.327895],[-11.338287,-72.328058],[-11.38036,-72.321222],[-11.407623,-72.305271],[-11.409739,-72.301935],[-11.377756,-72.294122],[-11.368276,-72.289483],[-11.360341,-72.281427],[-11.347768,-72.261489],[-11.34142,-72.256524],[-11.299224,-72.246759],[-11.28661,-72.239679],[-11.281565,-72.232192],[-11.274526,-72.218683],[-11.270375,-72.206313],[-11.273427,-72.202244],[-11.249745,-72.190688],[-11.23998,-72.176528],[-11.246978,-72.16546],[-11.273793,-72.163751],[-11.358998,-72.177341],[-11.382965,-72.172133],[-11.361318,-72.162693],[-11.253285,-72.138849],[-11.245717,-72.134047],[-11.245473,-72.126397],[-11.252349,-72.121352],[-11.272043,-72.11419],[-11.250356,-72.100763],[-11.149892,-72.08172],[-11.124745,-72.068129],[-11.113881,-72.064548],[-11.032297,-72.048923],[-11.052602,-72.03631],[-11.073842,-72.03574],[-11.095815,-72.038751],[-11.117909,-72.037774],[-11.109202,-72.025567],[-11.095937,-72.01865],[-11.036204,-72.004978],[-10.981191,-71.980727],[-10.97411,-71.973403],[-10.974721,-71.971287],[-10.976552,-71.967055],[-10.978098,-71.962009],[-10.977203,-71.956801],[-10.974355,-71.953546],[-10.936391,-71.922784],[-10.923818,-71.909926],[-10.917836,-71.895766],[-10.922922,-71.878676],[-10.944163,-71.865411],[-10.939198,-71.851332],[-10.919586,-71.831801],[-10.847157,-71.780857],[-10.888783,-71.754164],[-10.949086,-71.742852],[-11.23825,-71.749078],[-11.527415,-71.755304],[-11.753529,-71.705662],[-11.987904,-71.679457],[-12.150299,-71.636407],[-12.17516,-71.623956],[-12.330922,-71.494806],[-12.367665,-71.450779],[-12.380727,-71.39544],[-12.349233,-71.356378],[-12.295481,-71.32936],[-12.208567,-71.302667],[-12.06432,-71.297052],[-11.879506,-71.260349],[-11.806508,-71.259861],[-11.660146,-71.276462],[-11.698069,-71.304946],[-11.716786,-71.328709],[-11.71288,-71.355239],[-11.682607,-71.392267],[-11.651112,-71.409763],[-11.609486,-71.416925],[-11.370595,-71.423435],[-11.295806,-71.437433],[-11.218129,-71.466485],[-11.072092,-71.549005],[-11.03661,-71.561212],[-10.960683,-71.576349],[-10.839996,-71.584893],[-10.758127,-71.577407],[-10.67809,-71.558282],[-10.600331,-71.527032],[-10.620961,-71.500584],[-10.641591,-71.480157],[-10.721181,-71.427423],[-10.733144,-71.409601],[-10.727651,-71.389093],[-10.703725,-71.362237],[-10.653472,-71.324965],[-10.595611,-71.297296],[-10.348337,-71.23919],[-10.101064,-71.181085],[-10.036855,-71.15545],[-9.988759,-71.119317],[-10.03307,-71.08587],[-10.094106,-71.064223],[-10.215403,-71.040216],[-10.351186,-71.032322],[-10.42516,-71.01922],[-10.450063,-70.990981],[-10.430816,-70.974705],[-10.394399,-70.961114],[-10.266835,-70.93141],[-10.069651,-70.911879],[-10.002268,-70.919692],[-9.943105,-70.944513],[-9.981313,-70.987888],[-9.975819,-71.028578],[-9.939524,-71.062433],[-9.885243,-71.084161],[-9.833608,-71.092869],[-9.45165,-71.099216],[-9.105051,-71.185317],[-9.054514,-71.20672],[-9.01122,-71.236912],[-8.991444,-71.259047],[-8.987945,-71.276544],[-9.000478,-71.292413],[-9.029612,-71.309747],[-9.066029,-71.322524],[-9.129954,-71.359959],[-9.140045,-71.367771],[-9.142934,-71.380792],[-9.140452,-71.393731],[-9.134511,-71.405694],[-9.12682,-71.415623],[-9.113922,-71.425226],[-9.101633,-71.426935],[-9.070709,-71.419203],[-9.046132,-71.418227],[-8.99474,-71.427911],[-8.968861,-71.428318],[-8.911285,-71.421319],[-8.853424,-71.420668],[-8.824208,-71.427504],[-8.750722,-71.473565],[-8.829823,-71.533298],[-8.767405,-71.552423],[-8.73526,-71.566583],[-8.715443,-71.585707],[-8.687123,-71.640069],[-8.684885,-71.656183],[-8.694488,-71.668878],[-8.74649,-71.700779],[-8.718577,-71.704848],[-8.694,-71.705011],[-8.642201,-71.699477],[-8.614125,-71.699884],[-8.566762,-71.712498],[-8.428619,-71.730401],[-8.409739,-71.729913],[-8.392893,-71.72381],[-8.382476,-71.709161],[-8.382721,-71.703871],[-8.38801,-71.696059],[-8.388499,-71.692071],[-8.382314,-71.682387],[-8.37206,-71.675958],[-8.350331,-71.666111],[-8.310129,-71.634698],[-8.295237,-71.626153],[-8.226674,-71.604669],[-8.182851,-71.583103],[-8.162587,-71.576593],[-8.141835,-71.575942],[-8.117991,-71.581476],[-8.089182,-71.594415],[-8.072255,-71.611098],[-8.071685,-71.632013],[-8.091176,-71.657647],[-7.816762,-71.67197],[-7.788564,-71.666925],[-7.763824,-71.65545],[-7.739369,-71.647393],[-7.708852,-71.647882],[-7.651357,-71.657892],[-7.629221,-71.651951],[-7.603912,-71.633966],[-7.588694,-71.611993],[-7.596588,-71.594008],[-7.622426,-71.583754],[-7.709788,-71.562921],[-7.733998,-71.551446],[-7.758372,-71.535903],[-7.775787,-71.516697],[-7.779164,-71.494073],[-7.773834,-71.446873],[-7.765207,-71.428399],[-7.635406,-71.355564],[-7.588531,-71.345147],[-7.568512,-71.334649],[-7.563629,-71.310968],[-7.559316,-71.201349],[-7.564198,-71.150567],[-7.594594,-71.113702],[-7.688629,-71.063165],[-7.80427,-71.029392],[-7.853424,-71.006036],[-7.87564,-70.989923],[-7.892486,-70.970636],[-7.941151,-70.893731],[-7.961903,-70.873142],[-7.912221,-70.843683],[-7.855784,-70.82586],[-7.492055,-70.784763],[-7.284291,-70.791192],[-6.951283,-70.857599],[-6.618276,-70.924005],[-6.604319,-70.914239],[-6.572092,-70.837579],[-6.553334,-70.815037],[-6.429758,-70.737888],[-6.375315,-70.719659],[-6.31786,-70.70794],[-6.01358,-70.679783],[-5.675282,-70.73268],[-5.655629,-70.743259],[-5.574696,-70.803806],[-5.564361,-70.820489],[-5.56664,-70.841729],[-5.577504,-70.861586],[-5.592885,-70.874282],[-5.615712,-70.884698],[-5.63036,-70.89422],[-5.68692,-70.95794],[-5.698557,-70.975681],[-5.712148,-71.01686],[-5.721791,-71.029962],[-5.735707,-71.038832],[-6.019887,-71.108982],[-6.043691,-71.118259],[-6.077301,-71.146742],[-6.099721,-71.156834],[-6.06314,-71.174574],[-6.0454,-71.188165],[-6.042836,-71.201593],[-6.057973,-71.219171],[-6.074534,-71.231378],[-6.193918,-71.291436],[-6.23644,-71.305922],[-6.281117,-71.310642],[-6.179555,-71.358168],[-6.14977,-71.366306],[-6.123402,-71.36297],[-6.068186,-71.347345],[-5.892934,-71.361098],[-5.820058,-71.341078],[-5.592519,-71.353123],[-5.579905,-71.352146],[-5.539662,-71.339776],[-5.527455,-71.341078],[-5.496083,-71.348728],[-5.41161,-71.339939],[-5.298411,-71.355157],[-5.270619,-71.354181],[-5.221059,-71.334893],[-5.193837,-71.330824],[-4.795969,-71.344903],[-4.709137,-71.334731],[-4.599599,-71.344985],[-4.387278,-71.322931],[-4.345448,-71.326104],[-4.173695,-71.37005],[-4.169667,-71.345147],[-4.14037,-71.342218],[-4.075917,-71.35768],[-3.937571,-71.367446],[-3.97232,-71.342869],[-3.990387,-71.315606],[-3.981923,-71.295994],[-3.937164,-71.294122],[-3.888295,-71.306573],[-3.754547,-71.365167],[-3.729482,-71.372817],[-3.71817,-71.378595],[-3.709584,-71.387628],[-3.706451,-71.399184],[-3.709584,-71.409275],[-3.714019,-71.419366],[-3.714752,-71.430759],[-3.712229,-71.453383],[-3.707102,-71.457127],[-3.645334,-71.464125],[-3.621897,-71.471449],[-3.591298,-71.498224],[-3.571604,-71.509942],[-3.550689,-71.515395],[-3.492177,-71.522719],[-3.470937,-71.521173],[-3.495961,-71.484796],[-3.499094,-71.46852],[-3.48941,-71.450942],[-3.468984,-71.437677],[-3.446278,-71.434828],[-3.399892,-71.443617],[-3.375356,-71.445571],[-3.352651,-71.43963],[-3.337799,-71.425226],[-3.334584,-71.324884],[-3.322581,-71.302423],[-3.30899,-71.290216],[-3.290151,-71.287205],[-3.263336,-71.29225],[-3.239247,-71.301528],[-3.171498,-71.343194],[-3.132802,-71.356622],[-2.9912,-71.361098],[-2.998402,-71.336196],[-3.012359,-71.315199],[-3.016103,-71.297133],[-2.992299,-71.280938],[-2.966298,-71.273696],[-2.940297,-71.269789],[-2.887074,-71.267999],[-2.778066,-71.284763],[-2.727651,-71.283949],[-2.67748,-71.25742],[-2.650502,-71.288181],[-2.48526,-71.369399],[-2.436391,-71.382257],[-2.336822,-71.390069],[-2.273427,-71.377374],[-2.252553,-71.377537],[-2.236724,-71.387302],[-2.214589,-71.426935],[-2.196604,-71.446059],[-2.154368,-71.47324],[-2.131256,-71.482599],[-2.106801,-71.485447],[-2.087554,-71.48268],[-2.03954,-71.46795],[-2.020985,-71.45794],[-1.986684,-71.425226],[-1.972035,-71.42254],[-1.92634,-71.440606],[-1.903391,-71.446384],[-1.880035,-71.448989],[-1.861073,-71.446954],[-1.785268,-71.419854],[-1.76183,-71.414727],[-1.736236,-71.41546],[-1.61559,-71.441502],[-1.59557,-71.438897],[-1.577789,-71.427992],[-1.56017,-71.426446],[-1.489247,-71.458754],[-1.467437,-71.458429],[-1.395375,-71.443455],[-1.37206,-71.433852],[-1.328725,-71.408624],[-1.306264,-71.402765],[-1.324818,-71.359308],[-1.324534,-71.34002],[-1.310699,-71.319594],[-1.27245,-71.291762],[-1.230377,-71.267999],[-1.186025,-71.255466],[-1.137563,-71.255304],[-0.953969,-71.30047],[-0.912668,-71.318617],[-0.812815,-71.377537],[-0.80427,-71.394789],[-0.80602,-71.421563],[-0.817698,-71.436456],[-0.838002,-71.444106],[-0.865549,-71.448989],[-0.845286,-71.503188],[-0.870758,-71.54518],[-0.915151,-71.582778],[-0.952138,-71.62363],[-0.899403,-71.633396],[-0.876088,-71.640558],[-0.854604,-71.656508],[-0.83609,-71.663344],[-0.78189,-71.655938],[-0.755971,-71.656508],[-0.621938,-71.685317],[-0.599273,-71.694431],[-0.580922,-71.710138],[-0.560943,-71.736749],[-0.518463,-71.765232],[-0.469309,-71.754002],[-0.226877,-71.622206],[0.015554,-71.490411],[0.035004,-71.473891],[0.059174,-71.437188],[0.078746,-71.42018],[0.232188,-71.349867],[0.291759,-71.336196],[0.410818,-71.326593],[0.437755,-71.319757],[0.517833,-71.273045],[0.54713,-71.261814],[0.635509,-71.255548],[0.65089,-71.250421],[0.69158,-71.224216],[0.710948,-71.218194],[0.796397,-71.212823],[0.933767,-71.179376],[1.192841,-71.148818],[1.451915,-71.118259],[1.459158,-71.115004],[1.472667,-71.097833],[1.484141,-71.092218],[1.531912,-71.090997],[1.543224,-71.086196],[1.567393,-71.069513],[1.588715,-71.065199],[1.611339,-71.065199],[1.638845,-71.060724],[1.726736,-71.03338],[1.868826,-71.018162],[1.948578,-70.991143],[2.150157,-70.978285],[2.164724,-70.97381],[2.185069,-70.959161],[2.198741,-70.95436],[2.458344,-70.920343],[2.499197,-70.904392],[2.519705,-70.900567],[2.530121,-70.902114],[2.551524,-70.909601],[2.562022,-70.911228],[2.574392,-70.909356],[2.611583,-70.896905],[2.632579,-70.893487],[2.691254,-70.896254],[2.714041,-70.894627],[2.755382,-70.885349],[2.823253,-70.890558],[2.978282,-70.88421],[3.074067,-70.894627],[3.187999,-70.872491],[3.203624,-70.86533],[3.222667,-70.859552],[3.260916,-70.866469],[3.281586,-70.865655],[3.327159,-70.856541],[3.574718,-70.852146],[3.622732,-70.841078],[3.692231,-70.837335],[3.775645,-70.816013],[3.821544,-70.817478],[3.808279,-70.802016],[3.827891,-70.798435],[3.847179,-70.798517],[3.886241,-70.803399],[3.9074,-70.803806],[4.010753,-70.782892],[4.096528,-70.77516],[4.223969,-70.783787],[4.271983,-70.776056],[4.319021,-70.762465],[4.336436,-70.753676],[4.34197,-70.748712],[4.351085,-70.737726],[4.357595,-70.733819],[4.372895,-70.732192],[4.389334,-70.732354],[4.39975,-70.727472],[4.397634,-70.71087],[4.414073,-70.712498],[4.446788,-70.721449],[4.46339,-70.724054],[4.475271,-70.723728],[4.507823,-70.71795],[4.624766,-70.720798],[4.853038,-70.684666],[4.909028,-70.682224],[4.948578,-70.688735],[4.962901,-70.688653],[4.976573,-70.684259],[4.991873,-70.675388],[5.000824,-70.663832],[5.002615,-70.652276],[5.006114,-70.642673],[5.020763,-70.636977],[5.073741,-70.633722],[5.209727,-70.65016],[5.21754,-70.647719],[5.224457,-70.64422],[5.234874,-70.642348],[5.314708,-70.649672],[5.34197,-70.649184],[5.417328,-70.630792],[5.441742,-70.629815],[5.587738,-70.649184],[5.612966,-70.640232],[5.636485,-70.626397],[5.667166,-70.614028],[5.679861,-70.61297],[5.706065,-70.616143],[5.73585,-70.613051],[5.746593,-70.618259],[5.756521,-70.625746],[5.770763,-70.632013],[5.801117,-70.633559],[5.974457,-70.609959],[5.999278,-70.613051],[6.045665,-70.625746],[6.060395,-70.625258],[6.101329,-70.609796],[6.113292,-70.608657],[6.18336,-70.617283],[6.203136,-70.627048],[6.198985,-70.621677],[6.188324,-70.602797],[6.224132,-70.601983],[6.297374,-70.62005],[6.334972,-70.615492],[6.340994,-70.61061],[6.351248,-70.596124],[6.35727,-70.591078],[6.364919,-70.589044],[6.382009,-70.588474],[6.429047,-70.581231],[6.448009,-70.582452],[6.468516,-70.587579],[6.483897,-70.588311],[6.519054,-70.577813],[6.536388,-70.575291],[6.559093,-70.577895],[6.625662,-70.599054],[6.645681,-70.602146],[6.705333,-70.593683],[6.724376,-70.593683],[6.761729,-70.59881],[6.78061,-70.599379],[6.785655,-70.593683],[6.792735,-70.589125],[6.807872,-70.583103],[6.795909,-70.557875],[6.810232,-70.539809],[6.837657,-70.533787],[6.865082,-70.544122],[6.884532,-70.558282],[6.898774,-70.560479],[6.968028,-70.5263],[6.985199,-70.522556],[7.001801,-70.524021],[7.10963,-70.546808],[7.145274,-70.560968],[7.153168,-70.560724],[7.159434,-70.554132],[7.165294,-70.546319],[7.172211,-70.541925],[7.181814,-70.541925],[7.228526,-70.547052],[7.242442,-70.544122],[7.250499,-70.534601],[7.250255,-70.516209],[7.263031,-70.521417],[7.33546,-70.526462],[7.348643,-70.523614],[7.37379,-70.513604],[7.386892,-70.510349],[7.403005,-70.510349],[7.448904,-70.521742],[7.514415,-70.520929],[7.553722,-70.528497],[7.567393,-70.524347],[7.578868,-70.512953],[7.592784,-70.496026],[7.611827,-70.486017],[7.628673,-70.495701],[7.646332,-70.511],[7.668305,-70.518162],[7.666189,-70.487888],[7.656993,-70.473565],[7.475108,-70.376886],[7.455333,-70.358657],[7.43922,-70.337498],[7.427501,-70.312188],[7.41505,-70.253595],[7.414236,-70.221449],[7.423513,-70.20436],[7.479015,-70.189874],[7.835297,-70.16367],[7.893565,-70.177423],[7.917003,-70.194024],[7.925141,-70.217055],[7.921886,-70.24391],[7.895763,-70.309991],[7.888927,-70.319431],[7.877289,-70.325372],[7.846446,-70.333429],[7.836925,-70.339939],[7.834158,-70.366143],[7.844981,-70.398207],[7.862478,-70.428155],[7.87908,-70.447686],[7.904796,-70.464451],[7.930431,-70.472345],[8.105235,-70.475274],[8.225271,-70.494399],[8.254731,-70.492608],[8.302745,-70.474054],[8.328787,-70.467869],[8.354991,-70.468927],[8.443126,-70.482354],[8.549653,-70.472345],[8.654552,-70.448012],[8.666026,-70.44199],[8.683442,-70.425226],[8.693858,-70.421075],[8.753673,-70.421563],[8.784679,-70.417576],[8.812755,-70.40488],[8.832042,-70.383477],[8.837169,-70.353936],[8.971853,-70.372491],[8.983572,-70.372328],[8.996918,-70.368748],[9.024181,-70.35768],[9.037771,-70.356866],[9.115571,-70.375909],[9.136729,-70.375421],[9.157481,-70.359552],[9.168712,-70.334161],[9.167817,-70.308038],[9.151378,-70.290297],[9.126231,-70.281671],[9.101329,-70.276544],[9.019786,-70.270766],[8.938243,-70.246759],[8.887462,-70.215509],[8.898448,-70.185479],[9.080577,-70.089288],[9.128754,-70.075942],[9.182628,-70.070896],[9.294281,-70.07879],[9.403575,-70.104262],[9.415375,-70.109145],[9.42213,-70.115167],[9.431163,-70.136651],[9.439464,-70.149102],[9.450531,-70.156508],[9.531016,-70.186212],[9.553071,-70.198012],[9.575206,-70.217218],[9.592947,-70.228936],[9.636241,-70.240004],[9.655772,-70.247817],[9.671886,-70.267836],[9.670665,-70.291436],[9.66212,-70.31699],[9.656505,-70.343032],[9.71339,-70.338962],[9.764985,-70.348565],[9.867198,-70.392022],[9.955333,-70.444268],[9.979259,-70.453546],[10.286876,-70.524021],[10.322765,-70.536798],[10.339203,-70.538995],[10.392833,-70.539646],[10.421153,-70.547052],[10.476817,-70.572198],[10.53297,-70.578302],[10.599946,-70.604669],[10.656749,-70.611505],[10.705821,-70.632013],[10.722667,-70.636895],[10.809581,-70.64658],[10.968923,-70.688735],[11.067393,-70.701267],[11.1067,-70.697035],[11.118175,-70.700453],[11.158539,-70.728774],[11.209483,-70.749688],[11.237559,-70.757013],[11.260427,-70.756524],[11.321056,-70.740411],[11.351573,-70.736586],[11.641368,-70.773207],[11.700857,-70.771742],[11.822927,-70.783136],[11.853526,-70.781508],[11.861176,-70.776056],[11.884044,-70.752374],[11.894379,-70.744399],[11.914236,-70.737888],[11.993663,-70.725356],[12.005544,-70.72088],[12.014985,-70.712986],[12.032074,-70.685805],[12.046072,-70.679295],[12.081716,-70.674005],[12.074474,-70.651462],[12.091319,-70.603204],[12.087738,-70.545343],[12.107758,-70.530043],[12.167817,-70.514418],[12.142345,-70.485447],[12.163341,-70.47088],[12.184337,-70.461847],[12.231944,-70.452895],[12.252126,-70.446059],[12.267426,-70.43255],[12.279063,-70.414646],[12.288585,-70.394789],[12.322032,-70.370294],[12.380219,-70.358575],[12.530772,-70.351658],[12.608572,-70.320571],[12.648936,-70.314874],[12.715017,-70.32171],[12.736583,-70.320001],[12.801443,-70.298272],[12.824962,-70.295017],[12.837901,-70.26393],[12.897146,-70.248224],[13.018321,-70.241795],[13.041026,-70.23447],[13.029552,-70.217706],[12.969493,-70.172947],[12.939789,-70.164972],[12.483084,-70.126886],[12.435883,-70.105157],[12.426524,-70.085382],[12.444591,-70.070245],[12.473969,-70.059991],[12.497813,-70.055271],[12.559337,-70.053806],[12.735118,-70.071466],[12.969249,-70.046157],[13.026215,-70.051039],[13.084972,-70.075128],[13.108165,-70.091404],[13.164806,-70.150649],[13.186534,-70.166436],[13.236176,-70.187758],[13.292328,-70.247328],[13.342784,-70.272719],[13.399669,-70.286228],[13.570323,-70.289972],[13.598481,-70.298923],[13.650401,-70.323419],[13.848806,-70.347833],[14.016775,-70.341485],[14.080577,-70.345961],[14.093272,-70.34352],[14.120942,-70.330336],[14.135265,-70.326267],[14.167817,-70.327325],[14.187999,-70.332208],[14.204926,-70.327895],[14.227794,-70.301446],[14.247569,-70.295017],[14.340099,-70.306085],[14.344574,-70.302504],[14.34669,-70.296319],[14.349376,-70.29046],[14.355968,-70.28753],[14.386404,-70.285903],[14.400157,-70.288181],[14.427013,-70.295587],[14.441173,-70.29697],[14.468761,-70.294203],[14.495128,-70.28631],[14.510509,-70.283868],[14.539806,-70.289972],[14.555919,-70.291599],[14.573253,-70.291111],[14.585134,-70.292576],[14.595958,-70.297296],[14.60963,-70.306817],[14.618663,-70.309503],[14.629893,-70.307712],[14.652029,-70.30169],[14.683116,-70.303806],[14.747081,-70.324965],[14.78004,-70.329848],[14.836681,-70.327732],[14.865001,-70.322849],[14.880382,-70.313409],[14.89796,-70.298761],[15.036876,-70.290948],[15.144867,-70.310235],[15.534841,-70.33766],[15.599864,-70.331231],[15.63087,-70.333754],[15.702485,-70.365004],[15.766856,-70.378351],[15.826915,-70.377618],[15.857107,-70.353611],[15.862641,-70.323989],[15.859874,-70.313084],[15.849294,-70.301853],[15.845388,-70.293227],[15.846934,-70.281183],[15.851817,-70.269138],[15.857921,-70.260024],[15.90504,-70.216404],[15.931326,-70.20086],[15.962576,-70.18963],[16.129568,-70.17254],[16.140147,-70.16725],[16.161876,-70.147393],[16.174978,-70.141209],[16.200369,-70.139907],[16.284434,-70.149021],[16.519867,-70.126723],[16.577322,-70.131443],[16.626313,-70.151788],[16.638438,-70.161554],[16.647716,-70.173028],[16.653331,-70.185968],[16.654063,-70.201104],[16.650157,-70.220798],[16.643321,-70.231052],[16.63087,-70.236912],[16.610606,-70.243341],[16.622244,-70.278253],[16.62615,-70.311212],[16.619314,-70.34295],[16.598155,-70.3742],[16.574718,-70.396254],[16.545665,-70.417657],[16.514415,-70.435479],[16.48463,-70.446059],[16.505138,-70.454197],[16.871104,-70.439386],[16.925955,-70.463637],[16.910004,-70.476983],[16.927013,-70.48447],[16.943696,-70.483982],[16.960948,-70.480564],[17.126801,-70.48089],[17.194021,-70.465509],[17.21697,-70.463962],[17.48406,-70.478936],[17.75115,-70.49391],[17.789399,-70.510837],[17.875824,-70.517267],[17.908376,-70.514093],[18.093761,-70.542413],[18.329845,-70.540134],[18.331879,-70.535089],[18.331716,-70.528009],[18.339122,-70.520196],[18.375824,-70.507501],[18.417166,-70.502048],[18.49822,-70.502537],[18.310313,-70.373712],[18.304698,-70.366143],[18.300629,-70.35768],[18.295909,-70.350193],[18.288097,-70.34531],[18.269216,-70.337986],[18.260997,-70.33294],[18.252778,-70.325942],[18.316173,-70.324395],[18.447032,-70.300063],[18.506847,-70.278741],[18.573009,-70.26393],[18.71461,-70.259861],[18.78297,-70.238946],[18.806488,-70.219496],[18.821056,-70.198663],[18.838878,-70.181329],[18.871837,-70.172133],[18.941661,-70.170994],[19.153494,-70.203546],[19.290538,-70.248142],[19.27589,-70.25156],[19.261485,-70.251886],[19.23227,-70.248793],[19.215017,-70.249444],[19.201182,-70.254571],[19.173513,-70.273858],[19.200043,-70.288263],[19.269379,-70.341241],[19.296641,-70.368097],[19.281505,-70.381606],[19.25115,-70.389255],[19.232921,-70.398858],[19.227875,-70.414321],[19.221853,-70.420587],[19.196544,-70.426202],[19.178722,-70.432387],[19.170177,-70.438084],[19.147472,-70.474298],[19.142914,-70.48504],[19.137218,-70.49505],[19.016287,-70.596775],[18.991466,-70.61061],[18.936534,-70.623305],[18.915212,-70.634047],[18.920665,-70.652602],[18.931814,-70.678318],[18.930919,-70.736017],[18.945486,-70.752374],[18.959239,-70.754327],[18.98227,-70.749688],[18.995616,-70.748956],[19.01238,-70.753351],[19.028494,-70.761407],[19.057791,-70.781183],[19.075857,-70.799574],[19.111583,-70.847101],[19.130544,-70.860121],[19.289236,-70.914321],[19.567393,-70.946059],[19.628184,-70.940851],[19.732758,-70.892673],[19.78891,-70.893324],[19.903575,-70.91253],[20.033214,-70.919041],[20.076345,-70.929295],[20.112315,-70.930922],[20.190115,-70.908787],[20.228526,-70.905369],[20.403982,-70.923435],[20.422618,-70.92254],[20.498546,-70.902439],[20.560313,-70.904392],[20.578868,-70.902114],[20.617931,-70.889337],[20.637706,-70.885919],[20.705251,-70.883071],[20.844249,-70.856622],[20.886892,-70.855564],[21.005382,-70.870864],[21.043142,-70.863702],[21.201182,-70.812188],[21.172618,-70.784763],[21.159516,-70.756036],[21.166759,-70.728123],[21.198985,-70.701918],[21.170177,-70.678481],[21.158539,-70.664646],[21.156098,-70.649998],[21.16684,-70.632582],[21.184255,-70.622328],[21.224457,-70.6124],[21.20281,-70.594008],[21.208507,-70.57643],[21.289806,-70.507013],[21.317231,-70.49033],[21.341482,-70.481703],[21.431326,-70.479669],[21.451671,-70.468438],[21.472016,-70.439548],[21.471446,-70.434666],[21.46461,-70.422133],[21.464366,-70.417576],[21.473969,-70.406671],[21.502452,-70.383966],[21.611339,-70.272149],[21.636485,-70.257745],[21.694347,-70.234633],[21.745616,-70.22617],[21.801606,-70.235935],[21.993663,-70.302179],[22.019298,-70.317966],[22.03004,-70.327813],[22.035655,-70.335626],[22.042979,-70.342218],[22.058279,-70.34881],[22.181488,-70.385024],[22.283214,-70.4367],[22.338064,-70.455255],[22.447927,-70.477797],[22.475597,-70.488458],[22.525645,-70.515313],[22.553477,-70.524998],[22.579275,-70.540216],[22.575694,-70.561212],[22.555512,-70.58172],[22.532237,-70.595636],[22.480968,-70.61004],[22.166881,-70.6242],[21.852794,-70.63836],[21.826427,-70.655043],[22.028494,-70.683038],[22.24936,-70.685805],[22.2942,-70.695977],[22.348888,-70.693292],[22.367361,-70.694594],[22.326915,-70.759454],[22.344249,-70.761814],[22.380544,-70.761489],[22.416189,-70.769464],[22.433116,-70.764825],[22.450043,-70.757582],[22.471039,-70.754327],[22.488617,-70.757745],[22.548513,-70.77752],[22.563324,-70.778253],[22.595551,-70.772882],[22.724946,-70.769301],[22.761729,-70.777602],[22.832693,-70.804132],[22.855235,-70.808364],[22.917735,-70.812921],[22.926036,-70.816013],[22.941742,-70.826349],[22.94988,-70.829197],[22.957286,-70.828546],[22.972504,-70.8235],[23.180675,-70.813084],[23.259044,-70.823012],[23.292654,-70.821222],[23.323009,-70.809747],[23.412608,-70.743748],[23.437836,-70.717706],[23.435232,-70.691176],[23.44809,-70.686944],[23.460948,-70.684666],[23.487641,-70.683201],[23.502289,-70.679295],[23.512869,-70.670831],[23.522472,-70.660089],[23.534923,-70.649509],[23.553071,-70.629164],[23.557791,-70.605564],[23.547862,-70.585138],[23.522146,-70.574884],[23.552419,-70.568129],[23.616873,-70.565199],[23.643565,-70.551365],[23.667328,-70.523858],[23.686209,-70.493585],[23.712413,-70.42669],[23.752452,-70.402602],[24.108897,-70.409438],[24.175466,-70.424249],[24.277517,-70.460545],[24.408865,-70.533949],[24.419444,-70.544854],[24.428396,-70.563572],[24.433116,-70.58172],[24.439952,-70.599054],[24.455414,-70.614516],[24.346528,-70.673598],[24.319509,-70.680108],[24.291515,-70.681899],[24.26531,-70.678643],[24.291515,-70.71795],[24.319347,-70.74033],[24.479177,-70.796563],[24.499197,-70.809177],[24.533865,-70.837823],[24.555186,-70.846775],[24.968028,-70.945489],[25.26059,-70.98089],[25.44044,-70.980157],[25.524587,-70.994317],[25.567556,-70.993422],[25.562511,-70.989435],[25.553396,-70.979587],[25.548513,-70.975356],[25.576915,-70.971449],[25.599132,-70.977472],[25.620128,-70.98797],[25.645763,-70.997491],[25.661876,-71.000421],[25.674571,-71.000177],[25.702973,-70.991143],[25.715831,-70.990004],[25.730642,-70.993341],[25.758556,-71.002699],[25.782725,-71.006606],[25.827891,-71.008233],[25.916026,-71.034356],[25.982677,-71.041925],[26.101329,-71.042657],[26.159353,-71.034356],[26.215994,-71.015558],[26.267833,-71.008396],[26.39031,-71.03045],[26.445649,-71.032403],[26.478852,-71.018976],[26.489757,-71.019301],[26.504405,-71.022638],[26.517833,-71.022638],[26.606619,-71.008071],[26.635265,-70.9992],[26.674001,-70.965509],[26.699229,-70.961358],[26.767751,-70.961033],[26.794119,-70.964614],[26.804861,-70.9638],[26.821951,-70.954767],[26.829926,-70.946547],[26.839366,-70.94199],[26.861501,-70.943617],[26.888845,-70.94199],[26.907563,-70.931573],[26.92628,-70.923923],[26.95338,-70.929376],[26.979177,-70.938653],[27.275076,-70.989679],[27.296723,-70.984796],[27.303396,-70.968438],[27.298839,-70.952081],[27.298839,-70.93727],[27.318858,-70.925551],[27.302257,-70.911391],[27.283051,-70.907403],[27.24171,-70.90838],[27.217459,-70.904392],[27.197032,-70.897068],[27.178477,-70.885919],[27.159353,-70.870701],[27.18214,-70.855727],[27.20281,-70.844985],[27.22462,-70.839288],[27.251313,-70.8388],[27.297048,-70.846775],[27.317393,-70.843194],[27.328624,-70.824395],[27.351817,-70.838637],[27.371267,-70.834242],[27.389903,-70.821547],[27.412446,-70.811293],[27.443044,-70.809015],[27.471446,-70.810968],[27.500336,-70.809503],[27.545177,-70.793064],[27.574392,-70.789158],[27.585134,-70.783136],[27.604666,-70.758477],[27.616384,-70.747003],[27.628429,-70.741306],[28.029063,-70.726495],[28.055349,-70.722752],[28.085297,-70.712172],[28.114024,-70.707289],[28.173106,-70.717055],[28.202485,-70.715265],[28.231619,-70.702813],[28.256358,-70.688653],[28.282074,-70.678481],[28.314952,-70.678481],[28.451671,-70.694024],[28.473643,-70.687677],[28.494802,-70.67783],[28.552501,-70.658949],[28.609874,-70.632989],[28.641449,-70.623468],[28.721853,-70.610121],[28.77296,-70.594008],[28.833263,-70.594985],[29.021821,-70.572035],[29.034679,-70.56878],[29.048839,-70.561619],[29.075531,-70.542413],[29.089203,-70.537042],[29.14503,-70.529067],[29.150727,-70.524021],[29.163585,-70.500177],[29.174653,-70.491143],[29.201508,-70.481703],[29.294444,-70.461521],[29.331391,-70.461602],[29.346202,-70.456476],[29.364106,-70.439711],[29.376231,-70.432875],[29.440684,-70.410903],[29.443858,-70.407322],[29.448253,-70.395685],[29.451427,-70.392267],[29.459483,-70.391046],[29.477387,-70.392511],[29.486013,-70.392022],[29.602712,-70.372491],[29.74879,-70.365492],[29.763357,-70.36297],[29.771821,-70.355645],[29.778819,-70.3388],[29.785492,-70.329034],[29.795421,-70.323012],[29.812511,-70.317153],[29.841156,-70.311293],[30.165212,-70.285577],[30.170584,-70.282892],[30.180837,-70.273207],[30.18629,-70.271091],[30.192638,-70.273614],[30.205333,-70.285252],[30.211681,-70.288018],[30.239594,-70.287042],[30.295584,-70.277602],[30.355317,-70.278578],[30.439301,-70.266778],[30.631684,-70.261326],[30.707774,-70.275079],[30.737804,-70.273533],[30.935313,-70.214614],[30.965017,-70.214044],[31.017345,-70.227634],[31.044119,-70.231622],[31.280447,-70.237074],[31.411632,-70.223321],[31.495779,-70.20436],[31.60906,-70.200128],[31.844412,-70.146905],[31.994395,-70.134454],[32.045177,-70.118422],[32.266368,-70.086521],[32.313487,-70.065525],[32.339203,-70.058038],[32.365896,-70.053318],[32.568858,-70.051528],[32.624197,-70.040297],[32.671886,-70.023207],[32.695486,-70.018243],[32.722016,-70.017673],[32.745291,-70.013442],[32.759451,-69.99977],[32.770681,-69.982029],[32.785411,-69.965102],[32.806407,-69.955662],[32.851085,-69.945489],[32.868663,-69.930271],[32.877289,-69.90488],[32.871104,-69.884047],[32.85255,-69.870375],[32.824229,-69.866143],[32.830333,-69.856622],[32.849294,-69.834242],[32.853852,-69.826267],[32.851736,-69.818455],[32.840017,-69.795994],[32.837576,-69.784763],[32.851899,-69.785252],[32.862804,-69.781671],[32.868419,-69.773207],[32.867442,-69.759535],[32.88795,-69.760349],[32.897634,-69.751072],[32.903331,-69.736098],[32.912608,-69.719985],[32.923513,-69.710707],[32.94988,-69.695001],[32.961762,-69.685968],[32.975759,-69.672133],[32.985688,-69.659356],[32.992198,-69.644627],[32.99586,-69.625421],[32.995453,-69.618097],[32.993175,-69.612563],[32.98406,-69.601495],[32.981619,-69.593357],[32.986013,-69.586847],[32.992524,-69.580336],[32.996267,-69.572198],[33.001801,-69.51922],[33.000499,-69.504815],[32.997081,-69.497654],[32.980642,-69.476739],[32.978282,-69.469822],[32.979991,-69.463556],[32.982677,-69.457289],[32.982921,-69.450291],[32.96697,-69.386814],[32.951996,-69.35947],[32.927908,-69.343683],[32.790782,-69.290948],[32.752208,-69.262628],[32.701345,-69.243585],[32.532481,-69.118829],[32.521007,-69.107192],[32.513438,-69.094496],[32.504405,-69.084649],[32.487641,-69.081638],[32.524181,-69.055271],[32.53061,-69.048517],[32.529552,-69.03631],[32.511404,-68.99212],[32.50294,-68.961602],[32.498871,-68.930922],[32.505707,-68.90309],[32.562266,-68.856378],[32.572113,-68.852309],[32.585704,-68.850681],[32.610606,-68.843683],[32.838064,-68.75213],[33.215994,-68.66961],[33.715099,-68.673761],[34.214203,-68.677911],[34.300629,-68.688165],[34.363048,-68.725518],[34.384939,-68.794203],[34.371267,-68.806329],[34.091156,-68.852472],[34.082856,-68.859552],[34.07602,-68.886326],[34.063975,-68.889093],[34.049083,-68.886977],[34.034353,-68.899347],[34.009451,-68.927423],[33.974864,-68.947442],[33.830577,-69.009373],[33.603689,-69.052423],[33.628184,-69.060968],[33.771251,-69.053481],[33.781261,-69.058364],[33.800548,-69.082127],[33.811209,-69.091404],[33.865896,-69.112563],[33.921641,-69.122247],[34.361501,-69.132908],[34.38795,-69.12713],[34.450857,-69.087986],[34.467947,-69.081638],[34.58725,-69.066827],[34.619965,-69.070733],[34.652599,-69.083429],[34.610362,-69.091241],[34.650727,-69.111423],[34.665538,-69.114923],[34.73463,-69.113051],[34.754649,-69.118585],[34.774587,-69.126886],[34.838878,-69.142267],[34.856212,-69.149835],[34.889496,-69.172296],[34.943696,-69.191502],[35.011892,-69.228774],[35.125499,-69.259535],[35.19988,-69.294122],[35.175629,-69.311782],[35.154959,-69.323826],[35.146983,-69.340265],[35.160818,-69.371759],[35.167654,-69.400486],[35.154959,-69.426039],[35.131114,-69.446466],[35.104747,-69.459649],[35.125743,-69.494806],[35.13795,-69.508071],[35.156749,-69.516534],[35.22877,-69.536716],[35.204112,-69.579767],[35.157725,-69.595473],[35.108165,-69.605727],[35.073497,-69.631931],[35.079356,-69.670587],[35.123302,-69.699395],[35.243988,-69.73561],[35.268565,-69.736912],[35.317719,-69.734145],[35.342621,-69.729669],[35.385997,-69.715753],[35.434825,-69.711684],[35.483409,-69.701349],[35.559581,-69.699477],[35.708344,-69.666111],[35.904552,-69.66725],[36.003184,-69.653416],[36.052501,-69.638849],[36.0796,-69.636651],[36.101573,-69.644952],[36.145681,-69.700779],[36.160655,-69.704522],[36.212087,-69.688409],[36.370616,-69.657973],[36.33253,-69.619236],[36.370372,-69.605564],[36.41627,-69.606541],[36.50408,-69.621515],[36.70574,-69.629815],[36.750987,-69.637465],[36.756602,-69.642267],[36.757335,-69.650649],[36.756602,-69.66074],[36.757335,-69.670099],[36.769216,-69.694024],[36.783865,-69.704197],[36.915701,-69.750421],[36.973806,-69.790623],[36.995128,-69.797296],[36.971934,-69.814548],[36.968923,-69.838311],[36.9817,-69.862237],[37.006358,-69.880548],[37.036306,-69.886651],[37.056814,-69.878839],[37.076508,-69.867852],[37.103363,-69.863946],[37.130626,-69.86297],[37.212169,-69.84295],[37.240489,-69.831801],[37.237804,-69.816095],[37.217296,-69.798598],[37.192556,-69.781996],[37.281016,-69.728448],[37.491466,-69.754571],[37.596446,-69.730076],[37.549978,-69.714614],[37.527517,-69.704685],[37.508311,-69.690199],[37.54005,-69.684747],[37.786306,-69.681899],[37.781749,-69.686293],[37.774181,-69.697198],[37.769786,-69.701837],[37.777192,-69.704522],[37.79184,-69.712335],[37.79949,-69.715102],[37.790538,-69.722833],[37.780447,-69.727634],[37.769379,-69.729669],[37.757579,-69.729099],[37.785655,-69.757094],[37.841563,-69.759047],[38.038422,-69.717462],[38.059581,-69.718032],[38.21811,-69.756117],[38.240733,-69.766534],[38.250255,-69.781671],[38.24464,-69.795668],[38.221528,-69.802667],[38.119151,-69.818617],[38.020193,-69.849379],[38.042979,-69.862726],[38.06658,-69.867934],[38.116954,-69.872979],[38.139334,-69.881443],[38.206228,-69.925714],[38.246267,-69.941664],[38.25587,-69.949151],[38.26531,-69.967218],[38.261729,-69.977472],[38.251964,-69.98504],[38.22283,-70.014093],[38.219737,-70.024021],[38.236583,-70.028416],[38.295909,-70.033949],[38.329763,-70.030043],[38.358165,-70.022638],[38.385997,-70.018487],[38.418712,-70.024672],[38.447276,-70.03753],[38.4699,-70.052179],[38.537934,-70.108575],[38.562755,-70.120375],[38.685069,-70.149835],[38.711192,-70.163507],[38.714041,-70.188735],[38.789236,-70.187921],[38.940278,-70.204685],[39.01588,-70.198337],[39.050466,-70.188572],[39.068044,-70.181085],[39.076427,-70.172621],[39.075206,-70.154555],[39.065929,-70.146091],[38.921072,-70.108575],[38.815196,-70.055352],[38.797048,-70.028741],[38.803559,-69.987726],[39.0796,-69.905857],[39.158865,-69.903741],[39.192638,-69.892511],[39.194509,-69.860772],[39.208018,-69.862074],[39.221202,-69.860935],[39.233897,-69.857029],[39.24586,-69.850518],[39.178396,-69.847426],[39.158214,-69.84352],[39.136078,-69.829522],[39.129405,-69.81113],[39.136892,-69.763767],[39.161469,-69.726658],[39.208832,-69.706638],[39.495128,-69.686293],[39.535981,-69.66839],[39.561046,-69.629002],[39.588715,-69.59881],[39.638438,-69.608575],[39.625255,-69.636163],[39.644216,-69.650974],[39.677419,-69.656915],[39.707205,-69.658298],[39.692068,-69.648207],[39.642833,-69.626072],[39.668793,-69.603448],[39.70338,-69.60003],[39.778656,-69.611423],[39.766449,-69.594903],[39.757335,-69.586196],[39.746267,-69.584649],[39.72755,-69.589614],[39.713064,-69.586847],[39.700369,-69.573419],[39.690684,-69.555841],[39.686046,-69.541111],[39.766449,-69.525486],[39.796235,-69.526462],[39.740001,-69.490492],[39.769054,-69.489028],[39.783214,-69.486017],[39.790701,-69.478448],[39.795909,-69.463556],[39.817638,-69.422133],[39.82545,-69.412042],[39.8449,-69.393243],[39.847911,-69.384698],[39.842052,-69.368259],[39.831554,-69.359552],[39.715587,-69.315525],[39.701671,-69.306817],[39.712738,-69.290704],[39.746837,-69.283787],[39.814789,-69.279962],[39.803396,-69.247735],[39.786143,-69.230157],[39.736176,-69.195977],[39.81129,-69.180922],[39.735362,-69.108005],[39.707367,-69.067966],[39.708995,-69.021173],[39.723155,-68.993422],[39.737804,-68.976251],[39.803477,-68.925551],[39.819102,-68.905043],[39.844005,-68.855564],[39.85141,-68.833591],[39.857921,-68.829522],[39.899099,-68.822524],[40.262869,-68.802179],[40.372732,-68.775323],[40.398611,-68.76393],[40.446137,-68.735447],[40.470551,-68.72617],[40.523936,-68.719171],[40.701834,-68.726821],[40.71461,-68.731541],[40.740245,-68.74627],[40.752208,-68.750665],[40.760427,-68.747979],[40.768809,-68.741469],[40.780772,-68.734633],[40.888845,-68.709405],[40.991954,-68.651462],[41.038259,-68.63421],[41.03891,-68.621352],[41.014822,-68.596449],[41.028494,-68.59238],[41.055512,-68.59002],[41.068614,-68.587498],[41.078787,-68.58294],[41.097667,-68.570896],[41.107921,-68.566095],[41.119314,-68.563897],[41.206879,-68.560154],[41.230317,-68.555108],[41.271983,-68.537042],[41.356293,-68.515883],[41.451996,-68.506606],[41.503673,-68.493097],[41.543956,-68.472101],[41.980724,-68.406345],[42.109141,-68.410903],[42.194102,-68.387628],[42.289236,-68.377699],[42.536143,-68.379571],[42.526052,-68.35117],[42.523204,-68.336196],[42.527599,-68.327569],[42.542654,-68.319106],[42.580414,-68.285577],[42.552419,-68.278985],[42.542735,-68.264907],[42.547048,-68.245782],[42.560313,-68.223728],[42.570811,-68.214451],[42.583018,-68.209161],[42.595958,-68.205173],[42.608409,-68.199802],[42.634613,-68.177179],[42.644786,-68.170994],[42.659434,-68.165785],[42.847911,-68.136895],[42.828624,-68.096449],[42.859386,-68.103774],[42.99586,-68.091485],[43.107432,-68.064142],[43.405528,-68.034601],[43.441661,-68.039972],[43.50766,-68.05934],[43.776052,-68.046482],[43.81072,-68.038995],[43.855968,-68.010431],[43.876638,-68.004978],[43.939952,-67.99863],[43.954845,-67.991143],[43.968598,-67.981378],[43.987478,-67.971938],[44.002208,-67.96852],[44.15504,-67.978448],[44.49643,-67.959405],[44.523204,-67.962986],[44.600759,-68.003351],[44.629893,-68.009373],[44.654959,-68.004978],[44.689464,-67.98268],[44.714366,-67.97617],[44.803233,-67.976332],[44.828624,-67.965916],[44.781098,-67.933201],[44.618012,-67.860447],[44.660492,-67.811456],[44.717133,-67.783624],[44.973155,-67.731134],[45.039561,-67.731866],[45.104015,-67.744724],[45.131602,-67.747166],[45.161306,-67.741306],[45.217621,-67.721368],[45.248709,-67.71502],[45.346934,-67.715427],[45.361176,-67.711358],[45.390391,-67.695977],[45.403819,-67.695082],[45.451915,-67.70908],[45.500987,-67.713149],[45.529552,-67.719334],[45.556814,-67.729669],[45.585297,-67.744887],[45.57309,-67.764093],[45.557465,-67.779962],[45.538585,-67.791681],[45.516938,-67.797947],[45.544932,-67.81756],[45.582774,-67.824395],[45.659841,-67.817478],[45.68865,-67.803318],[45.714366,-67.780043],[45.740896,-67.760919],[45.772227,-67.758559],[45.750011,-67.719659],[45.739513,-67.708673],[45.819347,-67.665216],[45.848643,-67.657485],[46.21697,-67.653009],[46.245372,-67.663751],[46.290863,-67.704034],[46.308442,-67.71502],[46.370779,-67.743422],[46.401622,-67.745375],[46.433604,-67.729587],[46.400727,-67.697361],[46.388438,-67.679295],[46.385265,-67.658868],[46.392914,-67.632582],[46.406016,-67.619399],[46.425629,-67.615004],[46.556977,-67.618585],[46.612071,-67.612074],[46.622732,-67.59002],[46.590587,-67.578709],[46.350352,-67.56878],[46.306,-67.559259],[46.297374,-67.555841],[46.293142,-67.549412],[46.289073,-67.523207],[46.283458,-67.512791],[46.272309,-67.504002],[46.311697,-67.47381],[46.234548,-67.448663],[46.259125,-67.416274],[46.24822,-67.399591],[46.251801,-67.373305],[46.264659,-67.34824],[46.280772,-67.334242],[46.37794,-67.296157],[46.426768,-67.283298],[46.479991,-67.275323],[46.583995,-67.274509],[46.661794,-67.287774],[46.687755,-67.289158],[46.766287,-67.275486],[46.817149,-67.278985],[46.868012,-67.267511],[46.892426,-67.264581],[46.914399,-67.267022],[46.938162,-67.272638],[46.9817,-67.289321],[46.954926,-67.313084],[46.963552,-67.332696],[46.99171,-67.346449],[47.024262,-67.352716],[47.305675,-67.369806],[47.441091,-67.409438],[47.327159,-67.433852],[47.308767,-67.440362],[47.279145,-67.458917],[47.262869,-67.466485],[47.249034,-67.467869],[47.202403,-67.46266],[46.919607,-67.506524],[46.95753,-67.514581],[46.972911,-67.52337],[46.981293,-67.53867],[46.974457,-67.546157],[46.956879,-67.552992],[46.938975,-67.563409],[46.930349,-67.581638],[46.977794,-67.579685],[47.12794,-67.544366],[47.228852,-67.546482],[47.327159,-67.566502],[47.305186,-67.583673],[47.270193,-67.599867],[47.232677,-67.611261],[47.203949,-67.614353],[47.167979,-67.611586],[47.139334,-67.615411],[47.115977,-67.629164],[47.095714,-67.656996],[47.194835,-67.658787],[47.128266,-67.679946],[47.096365,-67.684259],[47.059093,-67.684991],[47.093761,-67.705173],[47.132091,-67.705336],[47.170584,-67.694024],[47.222341,-67.671645],[47.248546,-67.655369],[47.264903,-67.650649],[47.634451,-67.660333],[47.610606,-67.691827],[47.569998,-67.710219],[47.306895,-67.743422],[47.322765,-67.761977],[47.358653,-67.773126],[47.482677,-67.793552],[47.502615,-67.79225],[47.545665,-67.784356],[47.552094,-67.779555],[47.555349,-67.773614],[47.559337,-67.768162],[47.646821,-67.747491],[47.875173,-67.655206],[47.911306,-67.649021],[48.133149,-67.652602],[48.168224,-67.658136],[48.309744,-67.71852],[48.381114,-67.729425],[48.4546,-67.730157],[48.44516,-67.747654],[48.429535,-67.753513],[48.410655,-67.754653],[48.391449,-67.758722],[48.171153,-67.888849],[48.201182,-67.908949],[48.227794,-67.933201],[48.219981,-67.937595],[48.205089,-67.9485],[48.197276,-67.952732],[48.217459,-67.962986],[48.230154,-68.00506],[48.24936,-68.020766],[48.27475,-68.025567],[48.38266,-68.02337],[48.400076,-68.012384],[48.414073,-67.996677],[48.431895,-67.980645],[48.523936,-67.941664],[48.572927,-67.911716],[48.614024,-67.879327],[48.650076,-67.841567],[48.708832,-67.751153],[48.71811,-67.729262],[48.724783,-67.703709],[48.718272,-67.681899],[48.696788,-67.667169],[48.647309,-67.64544],[48.63852,-67.637872],[48.622569,-67.620375],[48.599783,-67.601495],[48.595063,-67.59059],[48.590099,-67.559747],[48.569102,-67.517673],[48.56658,-67.495294],[48.582042,-67.474786],[48.605805,-67.46087],[48.629405,-67.451918],[49.011078,-67.394464],[49.068207,-67.37713],[49.094493,-67.372735],[49.12143,-67.371677],[49.174653,-67.377048],[49.180919,-67.368259],[49.199474,-67.356866],[49.20753,-67.349379],[49.198009,-67.338067],[49.205333,-67.325291],[49.219981,-67.313735],[49.233165,-67.306329],[49.256114,-67.298435],[49.328461,-67.288832],[49.32488,-67.281183],[49.301606,-67.246677],[49.289806,-67.237888],[49.312999,-67.222345],[49.343761,-67.221775],[49.376638,-67.225763],[49.405284,-67.223321],[49.34962,-67.182387],[49.257335,-67.173517],[49.087413,-67.194106],[49.114513,-67.171482],[49.090099,-67.156671],[49.068044,-67.150811],[49.044688,-67.152032],[48.731619,-67.220798],[48.64088,-67.218927],[48.584646,-67.209242],[48.531993,-67.192478],[48.475841,-67.188084],[48.448741,-67.181736],[48.394542,-67.159275],[48.370128,-67.142999],[48.354666,-67.121515],[48.345388,-67.095636],[48.338878,-67.064874],[48.342052,-67.036228],[48.361095,-67.016371],[48.588064,-66.93727],[49.059337,-66.884861],[49.11199,-66.867364],[49.163829,-66.838149],[49.216482,-66.818943],[49.271251,-66.830743],[49.287771,-66.842462],[49.327973,-66.883477],[49.336599,-66.902927],[49.335297,-66.939142],[49.347504,-66.954685],[49.252452,-66.972345],[49.159923,-67.000909],[49.211436,-66.999282],[49.226736,-67.00156],[49.240001,-67.009535],[49.264171,-67.034275],[49.27768,-67.042413],[49.311534,-67.046157],[49.489106,-67.022882],[49.793305,-67.02809],[49.826834,-67.037286],[49.855642,-67.053481],[49.882823,-67.07822],[49.893077,-67.106622],[49.872325,-67.134047],[49.830333,-67.166111],[49.794281,-67.209731],[49.782888,-67.218438],[49.665701,-67.278416],[49.69752,-67.288507],[49.733165,-67.286391],[49.766775,-67.274591],[49.792491,-67.255141],[49.821544,-67.240981],[49.90089,-67.236261],[49.934581,-67.225356],[49.945486,-67.215265],[49.969493,-67.18613],[49.982188,-67.173761],[49.99586,-67.16546],[50.009776,-67.160903],[50.024425,-67.159112],[50.077891,-67.159763],[50.093272,-67.154718],[50.11199,-67.126397],[50.128591,-67.118585],[50.147716,-67.11533],[50.164724,-67.114679],[50.201671,-67.120701],[50.302094,-67.161879],[50.401866,-67.170994],[50.471202,-67.195245],[50.585948,-67.216404],[50.601817,-67.221775],[50.626231,-67.236505],[50.642426,-67.241957],[50.661143,-67.243585],[50.720714,-67.238214],[50.694347,-67.222345],[50.640147,-67.207452],[50.61964,-67.184747],[50.649913,-67.177667],[50.682628,-67.176528],[50.747244,-67.183038],[50.764496,-67.187677],[50.811046,-67.211114],[50.827891,-67.214532],[50.881196,-67.216241],[50.818533,-67.17783],[50.85377,-67.164158],[50.896169,-67.16131],[50.978201,-67.168145],[50.960704,-67.156915],[50.947113,-67.145929],[50.943533,-67.13242],[50.955414,-67.114028],[50.926931,-67.120294],[50.898204,-67.115411],[50.840017,-67.096856],[50.692393,-67.08172],[50.655284,-67.06463],[50.637055,-67.061619],[50.602387,-67.059747],[50.584809,-67.056085],[50.556651,-67.053643],[50.459321,-67.06878],[50.473399,-67.059828],[50.479828,-67.049412],[50.48113,-67.036554],[50.479666,-67.021173],[50.48227,-67.007257],[50.492198,-67.000665],[50.523611,-66.994887],[50.45102,-66.978692],[50.427745,-66.962579],[50.445811,-66.940118],[50.493826,-66.902032],[50.512462,-66.892267],[50.527843,-66.888767],[50.539317,-66.887465],[50.548513,-66.883396],[50.566905,-66.858087],[50.5796,-66.850518],[50.761729,-66.821059],[50.784353,-66.809828],[50.829845,-66.774672],[50.775727,-66.754815],[50.764903,-66.755141],[50.744802,-66.767348],[50.73406,-66.767755],[50.706065,-66.760675],[50.674815,-66.758477],[50.61378,-66.761977],[50.58546,-66.767836],[50.537771,-66.78631],[50.510427,-66.79225],[50.500255,-66.790785],[50.469737,-66.775649],[50.454112,-66.772556],[50.347016,-66.774998],[50.286143,-66.768976],[50.239513,-66.743097],[50.221202,-66.68613],[50.216645,-66.660577],[50.196056,-66.611017],[50.191417,-66.586521],[50.193614,-66.570489],[50.199718,-66.558282],[50.220876,-66.534845],[50.22755,-66.522231],[50.234386,-66.49033],[50.240977,-66.475356],[50.322032,-66.393813],[50.42449,-66.337823],[50.537364,-66.303888],[50.794973,-66.279921],[51.052582,-66.255955],[51.103526,-66.242364],[51.155528,-66.222263],[51.181163,-66.215753],[51.208751,-66.213556],[51.323253,-66.22796],[51.352306,-66.221775],[51.368175,-66.204278],[51.381684,-66.182306],[51.403575,-66.162205],[51.478282,-66.120538],[51.61378,-66.094008],[51.772146,-66.037205],[52.22169,-65.972914],[52.534679,-65.967503],[52.847667,-65.962091],[53.278005,-65.899998],[53.400238,-65.901951],[53.734548,-65.84588],[53.790212,-65.845392],[53.957856,-65.884373],[54.013357,-65.889744],[54.241059,-65.876397],[54.71225,-65.90366],[55.183442,-65.930922],[55.611583,-66.027927],[55.750824,-66.107843],[55.770518,-66.115655],[55.790782,-66.119073],[55.843272,-66.116876],[55.861339,-66.119806],[55.844737,-66.149102],[55.871755,-66.181329],[55.91505,-66.20908],[55.947276,-66.224786],[56.036143,-66.247003],[56.053966,-66.257013],[56.1067,-66.300388],[56.126231,-66.309747],[56.145356,-66.315525],[56.165538,-66.318048],[56.187348,-66.317153],[56.210704,-66.31992],[56.219574,-66.331964],[56.226085,-66.349298],[56.241954,-66.368097],[56.26295,-66.379978],[56.309825,-66.398696],[56.332042,-66.411554],[56.377208,-66.452813],[56.399099,-66.46266],[56.409679,-66.428318],[56.42449,-66.407973],[56.447276,-66.397149],[56.516775,-66.387953],[56.807791,-66.40545],[57.207693,-66.531183],[57.237804,-66.547459],[57.256847,-66.561619],[57.276052,-66.581231],[57.286957,-66.603692],[57.281423,-66.626397],[57.249522,-66.653416],[57.248057,-66.664972],[57.283702,-66.692966],[57.287771,-66.70143],[57.281423,-66.708754],[57.263927,-66.715509],[57.242442,-66.718927],[57.014659,-66.729262],[57.001475,-66.726821],[56.966319,-66.71087],[56.954763,-66.708429],[56.796397,-66.714614],[56.743663,-66.709405],[56.622244,-66.681329],[56.565196,-66.652439],[56.564708,-66.612888],[56.531586,-66.620375],[56.514659,-66.632989],[56.505544,-66.653904],[56.496593,-66.685724],[56.377208,-66.632013],[56.344737,-66.624444],[56.27768,-66.620375],[56.247244,-66.612074],[56.208263,-66.587498],[56.19337,-66.58294],[56.175059,-66.58172],[56.139903,-66.583673],[56.056407,-66.573907],[56.024425,-66.575453],[55.991873,-66.585707],[56.071137,-66.600356],[56.087901,-66.611017],[56.087413,-66.632908],[56.065766,-66.646742],[56.012543,-66.660903],[56.086762,-66.676528],[56.12086,-66.677179],[56.134532,-66.67962],[56.150645,-66.690851],[56.159923,-66.703383],[56.170177,-66.711033],[56.208018,-66.70143],[56.22641,-66.70086],[56.358653,-66.72324],[56.417328,-66.743097],[56.479015,-66.741388],[56.509532,-66.743829],[56.48463,-66.758477],[56.357107,-66.775567],[56.371593,-66.79697],[56.380544,-66.806085],[56.389822,-66.807875],[56.405528,-66.804295],[56.444347,-66.804946],[56.516449,-66.790785],[56.542328,-66.791681],[56.3921,-66.832289],[56.466156,-66.858494],[56.500824,-66.861505],[56.619965,-66.84824],[56.659679,-66.851332],[56.695567,-66.862563],[56.659353,-66.890313],[56.706798,-66.899672],[56.680186,-66.920343],[56.658214,-66.933282],[56.634044,-66.940362],[56.601248,-66.943455],[56.432953,-66.927992],[56.417979,-66.923598],[56.409353,-66.916681],[56.40211,-66.908298],[56.392345,-66.899509],[56.363129,-66.883966],[56.334483,-66.876235],[56.271658,-66.875665],[56.322032,-66.908868],[56.292735,-66.929457],[56.194347,-66.933852],[56.154063,-66.951837],[56.272716,-66.96502],[56.308849,-66.977472],[56.295177,-66.980645],[56.281749,-66.985284],[56.256684,-66.99863],[56.342133,-67.001072],[56.367198,-67.010186],[56.289561,-67.05283],[56.208751,-67.08294],[55.855479,-67.170343],[55.762218,-67.207615],[55.732188,-67.263604],[56.153494,-67.196059],[56.143565,-67.229587],[56.08839,-67.348403],[56.092133,-67.358087],[56.105154,-67.374444],[56.118826,-67.386977],[56.135265,-67.395929],[56.170665,-67.408949],[56.179373,-67.38128],[56.192556,-67.357599],[56.209972,-67.336684],[56.262462,-67.294692],[56.296153,-67.276056],[56.308279,-67.267185],[56.328298,-67.242608],[56.33961,-67.232029],[56.445567,-67.164727],[56.558442,-67.109796],[56.681407,-67.074151],[56.838552,-67.057061],[56.851899,-67.058852],[56.867361,-67.064548],[56.884776,-67.068129],[56.896251,-67.06227],[56.906586,-67.053399],[56.920421,-67.047784],[56.967947,-67.046157],[57.277517,-67.084893],[57.344249,-67.084161],[57.359141,-67.087823],[57.30893,-67.042576],[57.343028,-67.033868],[57.375255,-67.030043],[57.493175,-67.034438],[57.508067,-67.031834],[57.526215,-67.022882],[57.546641,-67.002699],[57.562755,-66.994236],[57.593516,-66.989923],[57.630219,-66.993585],[57.666189,-67.002618],[57.721202,-67.023614],[57.82781,-67.03338],[57.840343,-67.038018],[57.861501,-67.056085],[57.873871,-67.060642],[57.957042,-67.074314],[57.971934,-67.081313],[57.99464,-67.101983],[58.005138,-67.108331],[58.023611,-67.10947],[58.073497,-67.094008],[58.12379,-67.093927],[58.136485,-67.098403],[58.146495,-67.110284],[58.151703,-67.125909],[58.149913,-67.141209],[58.138845,-67.152032],[58.0713,-67.177911],[58.038097,-67.196059],[58.020274,-67.218927],[58.046886,-67.22503],[58.069998,-67.220473],[58.270274,-67.148045],[58.42628,-67.148614],[58.420665,-67.186782],[58.455333,-67.19492],[58.688731,-67.156996],[58.870616,-67.165134],[58.915863,-67.177504],[59.044119,-67.236912],[59.093761,-67.244724],[59.045665,-67.288507],[59.019867,-67.304946],[58.988617,-67.310154],[58.722992,-67.274835],[58.582205,-67.23211],[58.548839,-67.230239],[58.568614,-67.274672],[58.593761,-67.298517],[58.672374,-67.32586],[58.677013,-67.330499],[58.678559,-67.337335],[58.681,-67.343032],[58.688324,-67.344334],[58.725922,-67.338149],[58.757823,-67.336847],[58.793305,-67.341241],[58.939138,-67.376235],[59.051524,-67.428643],[59.093272,-67.4367],[59.126964,-67.424981],[59.128754,-67.446547],[59.116466,-67.45908],[59.096365,-67.46502],[59.030121,-67.471449],[59.009776,-67.477309],[58.98585,-67.4874],[59.02947,-67.490411],[59.038097,-67.493748],[59.052989,-67.506117],[59.061697,-67.508477],[59.208995,-67.498142],[59.250011,-67.484308],[59.264903,-67.484308],[59.298676,-67.501642],[59.411794,-67.544203],[59.480479,-67.594659],[59.51295,-67.606378],[59.548513,-67.605157],[59.593435,-67.594334],[59.549083,-67.56227],[59.509125,-67.524347],[59.526134,-67.514581],[59.541352,-67.513442],[59.57488,-67.521742],[59.594981,-67.52337],[59.615082,-67.520766],[59.65504,-67.510837],[59.645356,-67.486017],[59.640147,-67.461114],[59.645274,-67.438735],[59.666677,-67.421563],[59.648123,-67.415948],[59.646251,-67.406183],[59.657481,-67.397231],[59.678559,-67.394138],[59.916026,-67.400486],[59.916029,-67.400486],[60.094981,-67.405369],[60.234386,-67.381768],[60.328787,-67.37713],[60.393077,-67.383884],[60.466645,-67.369806],[60.475922,-67.372166],[60.490001,-67.385675],[60.499197,-67.388849],[60.618907,-67.400567],[60.6574,-67.420099],[60.677501,-67.427504],[60.747732,-67.443129],[60.793305,-67.443536],[60.829275,-67.462009],[60.853363,-67.469659],[60.874685,-67.469496],[60.894542,-67.465997],[60.914073,-67.464776],[60.95574,-67.481215],[60.974132,-67.482843],[60.992524,-67.477227],[61.013357,-67.465102],[61.018565,-67.483819],[61.033865,-67.491143],[61.07488,-67.491957],[61.142914,-67.504571],[61.167003,-67.505304],[61.163341,-67.519708],[61.155447,-67.530857],[61.143891,-67.538181],[61.129242,-67.541436],[61.14088,-67.550877],[61.152192,-67.55641],[61.16391,-67.557794],[61.177013,-67.554376],[61.18572,-67.555759],[61.216156,-67.579522],[61.243175,-67.590509],[61.273204,-67.593194],[61.608084,-67.539646],[61.862763,-67.550958],[62.117442,-67.56227],[62.146251,-67.568129],[62.201508,-67.586114],[62.230642,-67.589532],[62.329438,-67.589288],[62.35727,-67.598077],[62.410655,-67.625258],[62.492198,-67.633559],[62.617361,-67.660089],[62.667166,-67.653009],[62.688975,-67.647231],[62.770844,-67.642999],[63.087169,-67.538507],[63.112641,-67.533787],[63.381765,-67.518569],[63.65089,-67.503351],[63.843272,-67.527439],[63.960623,-67.527032],[64.425466,-67.590509],[64.476573,-67.607843],[64.527599,-67.615411],[64.553233,-67.622817],[64.56544,-67.624688],[64.591156,-67.619806],[64.603852,-67.619724],[64.621349,-67.6242],[64.651622,-67.636814],[64.720958,-67.65309],[65.121755,-67.680857],[65.522553,-67.708624],[65.92335,-67.736391],[66.324148,-67.764158],[66.724946,-67.791925],[66.736583,-67.789809],[66.759613,-67.776544],[66.773448,-67.773126],[66.864268,-67.786391],[66.886485,-67.784601],[66.94158,-67.767348],[67.005544,-67.758884],[67.128917,-67.759047],[67.285818,-67.786798],[67.300141,-67.792087],[67.326427,-67.806329],[67.33961,-67.810805],[67.705211,-67.82936],[68.070811,-67.847914],[68.181651,-67.87656],[68.37672,-67.895196],[68.710623,-67.873468],[68.77711,-67.886],[69.106781,-67.846287],[69.154145,-67.832615],[69.189952,-67.81113],[69.194102,-67.803969],[69.202973,-67.781508],[69.207693,-67.773045],[69.21697,-67.764581],[69.229015,-67.758559],[69.302582,-67.736098],[69.352387,-67.730076],[69.555186,-67.738458],[69.611013,-67.750584],[69.639008,-67.763279],[69.648611,-67.779962],[69.646251,-67.804132],[69.650401,-67.830336],[69.662283,-67.852472],[69.682953,-67.864435],[69.632335,-67.938572],[69.601085,-68.018731],[69.59547,-68.043064],[69.601817,-68.06992],[69.634776,-68.122166],[69.81365,-68.285252],[69.987478,-68.371677],[69.997732,-68.379653],[70.002208,-68.38893],[70.009125,-68.398045],[70.026622,-68.405369],[70.038259,-68.413344],[70.048839,-68.428155],[70.065929,-68.458103],[70.089366,-68.483005],[70.115408,-68.493585],[70.179698,-68.494806],[70.123546,-68.508884],[70.1067,-68.516534],[70.090343,-68.521173],[70.054047,-68.519789],[70.03891,-68.525323],[70.008067,-68.54518],[69.970225,-68.5617],[69.930512,-68.573907],[69.894216,-68.580662],[69.861827,-68.580987],[69.793793,-68.573826],[69.663259,-68.578871],[69.631602,-68.588637],[69.651703,-68.59588],[69.672211,-68.600274],[69.600352,-68.610121],[69.57309,-68.622003],[69.623871,-68.631606],[69.675304,-68.633477],[69.651703,-68.651137],[69.626313,-68.702325],[69.604666,-68.718845],[69.621755,-68.720392],[69.638357,-68.719415],[69.672048,-68.713637],[69.621104,-68.735528],[69.436046,-68.782403],[69.361339,-68.813084],[69.306326,-68.821384],[69.281261,-68.831313],[69.271169,-68.850681],[69.308279,-68.849705],[69.292003,-68.865411],[69.325857,-68.87005],[69.385916,-68.884942],[69.718028,-68.8624],[69.857595,-68.872491],[69.82545,-68.894952],[69.712087,-68.938084],[69.740245,-68.942804],[69.769054,-68.942966],[69.719574,-68.967055],[69.660981,-68.984308],[69.303884,-69.047296],[69.320079,-69.05283],[69.370779,-69.057061],[69.359548,-69.065362],[69.349783,-69.075372],[69.341807,-69.087009],[69.335704,-69.099705],[69.386567,-69.101983],[69.72641,-69.169692],[69.760102,-69.197849],[69.761567,-69.246352],[69.740082,-69.296075],[69.705577,-69.327325],[69.656749,-69.343032],[69.604503,-69.351983],[69.551524,-69.353123],[69.397309,-69.321466],[69.343761,-69.321873],[69.259532,-69.367934],[69.213878,-69.367364],[68.970551,-69.309259],[68.920665,-69.309015],[68.894379,-69.315606],[68.872569,-69.327407],[68.831554,-69.361017],[68.811209,-69.37363],[68.789073,-69.380792],[68.742035,-69.389255],[68.778494,-69.408298],[68.861664,-69.433852],[68.897716,-69.454685],[68.747081,-69.492446],[68.733409,-69.502618],[68.730968,-69.520278],[68.733409,-69.550877],[68.88795,-69.543552],[69.046153,-69.557306],[69.355235,-69.61712],[69.305919,-69.658461],[69.256521,-69.688165],[69.201671,-69.705662],[69.136404,-69.710545],[69.000662,-69.704278],[68.930024,-69.712579],[68.88266,-69.740899],[69.026622,-69.773533],[69.174001,-69.786228],[69.206879,-69.797947],[69.204845,-69.823175],[69.182465,-69.852227],[69.155284,-69.875665],[69.022227,-69.9485],[68.892589,-69.993829],[68.758067,-70.018324],[68.606293,-70.026951],[68.572602,-70.020929],[68.528575,-70.002211],[68.49643,-69.978204],[68.499522,-69.95672],[68.361501,-69.896091],[68.311371,-69.861423],[68.289561,-69.852227],[68.280772,-69.846368],[68.270844,-69.834731],[68.229503,-69.770766],[68.217621,-69.745538],[68.202403,-69.726007],[68.177013,-69.719659],[68.147634,-69.72503],[68.135265,-69.735528],[68.132498,-69.753351],[68.131196,-69.780043],[68.128429,-69.796482],[68.125255,-69.808038],[68.12379,-69.820082],[68.126231,-69.837823],[68.123383,-69.848565],[68.112559,-69.855645],[68.099376,-69.861423],[68.05714,-69.893731],[68.009044,-69.908949],[67.910492,-69.923923],[67.913585,-69.978936],[67.865408,-70.002048],[67.605479,-70.014825],[67.5713,-70.024509],[67.55836,-70.039646],[67.559255,-70.062921],[67.566173,-70.096612],[67.537934,-70.102634],[67.506358,-70.115899],[67.481944,-70.136407],[67.475841,-70.164239],[67.480479,-70.188735],[67.478689,-70.201755],[67.467459,-70.208266],[67.22462,-70.252618],[67.217947,-70.262791],[67.21697,-70.280694],[67.220958,-70.297621],[67.229177,-70.304457],[67.680675,-70.273126],[67.712738,-70.275486],[67.74586,-70.287042],[67.728852,-70.300063],[67.657888,-70.323337],[67.677908,-70.345798],[67.700206,-70.349298],[67.72462,-70.34824],[67.750255,-70.356703],[67.754568,-70.365899],[67.756684,-70.379815],[67.762462,-70.392511],[67.77768,-70.398207],[67.870372,-70.391697],[67.876231,-70.397149],[67.880219,-70.40602],[67.889415,-70.416762],[67.90797,-70.431899],[67.917166,-70.437433],[67.960948,-70.452081],[67.976085,-70.454197],[67.992361,-70.45379],[68.008311,-70.449477],[68.021658,-70.44378],[68.034679,-70.440851],[68.076671,-70.453546],[68.099783,-70.451755],[68.149425,-70.433852],[68.386892,-70.401544],[68.42213,-70.401951],[68.443858,-70.412286],[68.48699,-70.452325],[68.51059,-70.465753],[68.536306,-70.472345],[68.562673,-70.472426],[68.58839,-70.466974],[68.620453,-70.452407],[68.632579,-70.448826],[68.639659,-70.440362],[68.65089,-70.388604],[68.687999,-70.353692],[68.748383,-70.334405],[68.923513,-70.30462],[69.146332,-70.308852],[69.167979,-70.316583],[69.248383,-70.406915],[69.257498,-70.431573],[69.256521,-70.461114],[69.229259,-70.563897],[69.212901,-70.671808],[69.205414,-70.693129],[69.192149,-70.71087],[69.103852,-70.767348],[69.079275,-70.777276],[69.099783,-70.793227],[69.091563,-70.812107],[69.029063,-70.855727],[69.017589,-70.873712],[69.016287,-70.894464],[69.026622,-70.918552],[69.00766,-70.942071],[68.85434,-71.024835],[68.864106,-71.030043],[68.874522,-71.033787],[68.885265,-71.035821],[68.896495,-71.036228],[68.809906,-71.079685],[68.587413,-71.149509],[68.569509,-71.161554],[68.547862,-71.180922],[68.590505,-71.198175],[68.603201,-71.200372],[68.653087,-71.199802],[68.669688,-71.203709],[68.522309,-71.247735],[68.339122,-71.257501],[68.319102,-71.264418],[68.312348,-71.280043],[68.32309,-71.309177],[68.259451,-71.327081],[68.055024,-71.354669],[68.062266,-71.356541],[68.083263,-71.365411],[68.067556,-71.379653],[68.031016,-71.400486],[67.923188,-71.480564],[67.862153,-71.509373],[67.844005,-71.522149],[67.83253,-71.538507],[67.835704,-71.551853],[67.860118,-71.555759],[67.854015,-71.568536],[67.844574,-71.578302],[67.83253,-71.585382],[67.819184,-71.590427],[67.836192,-71.599298],[67.854828,-71.60296],[67.894216,-71.603692],[67.889171,-71.619806],[67.87908,-71.63006],[67.864757,-71.635512],[67.847992,-71.636651],[67.876313,-71.649347],[67.882335,-71.665297],[67.870616,-71.682224],[67.845225,-71.697524],[67.788829,-71.715916],[67.781993,-71.72088],[67.772797,-71.739679],[67.76295,-71.748142],[67.709321,-71.767511],[67.533376,-71.797459],[67.547862,-71.815688],[67.566254,-71.824151],[67.611176,-71.826837],[67.472667,-71.872328],[67.449067,-71.895929],[67.473318,-71.904962],[67.51002,-71.936293],[67.531912,-71.945489],[67.516856,-71.955743],[67.513031,-71.966974],[67.512462,-71.979262],[67.507009,-71.993341],[67.496755,-72.003676],[67.483897,-72.010919],[67.456228,-72.021173],[67.447602,-72.027276],[67.434825,-72.04518],[67.426524,-72.051935],[67.398692,-72.063735],[67.369884,-72.071954],[67.283865,-72.07171],[67.262218,-72.081231],[67.251964,-72.10711],[67.271983,-72.120294],[67.331798,-72.129083],[67.326996,-72.139581],[67.326834,-72.14837],[67.329845,-72.156508],[67.335704,-72.165297],[67.337169,-72.172621],[67.333018,-72.180271],[67.3213,-72.195245],[67.315603,-72.216241],[67.315196,-72.263849],[67.304942,-72.303318],[67.308604,-72.310724],[67.313813,-72.317071],[67.315115,-72.327895],[67.310395,-72.341729],[67.302745,-72.354913],[67.293142,-72.36712],[67.229177,-72.421482],[67.213227,-72.439386],[67.230642,-72.450291],[67.215099,-72.460707],[67.202403,-72.47381],[67.193126,-72.489028],[67.180024,-72.526137],[67.171886,-72.539158],[67.132009,-72.576918],[67.083832,-72.634047],[67.085216,-72.646254],[67.091319,-72.659438],[67.090343,-72.680271],[67.078787,-72.719659],[67.070811,-72.737726],[67.048025,-72.773207],[67.032481,-72.838556],[66.999766,-72.903497],[66.977387,-72.926446],[66.942393,-72.947849],[66.861095,-72.975763],[66.694184,-72.998142],[66.557302,-73.036554],[66.542328,-73.04339],[66.500499,-73.080255],[66.482921,-73.090509],[66.346039,-73.129002],[66.325938,-73.131443],[66.336762,-73.135675],[66.346039,-73.141209],[66.354259,-73.148126],[66.36199,-73.156345],[66.369314,-73.167657],[66.379893,-73.192966],[66.385427,-73.201837],[66.405935,-73.215427],[66.430431,-73.220392],[66.55836,-73.231541],[66.584483,-73.230564],[66.641124,-73.220147],[66.653494,-73.221612],[66.664399,-73.228123],[66.675059,-73.236098],[66.686534,-73.241876],[66.733897,-73.244724],[66.918142,-73.197686],[66.946137,-73.19671],[66.973399,-73.201349],[67.000011,-73.212823],[67.02296,-73.217543],[67.050059,-73.213311],[67.100597,-73.197849],[67.101817,-73.224379],[67.078868,-73.24391],[67.016449,-73.270929],[67.049978,-73.284601],[67.087657,-73.283298],[67.163259,-73.265883],[67.165701,-73.30169],[67.223155,-73.312433],[67.34197,-73.302341],[67.821788,-73.18377],[67.876964,-73.179132],[67.901052,-73.17018],[67.931651,-73.154392],[67.959158,-73.14658],[67.987966,-73.144627],[68.022309,-73.146742],[68.028575,-73.115981],[68.044932,-73.085626],[68.055675,-73.057061],[68.044281,-73.031427],[68.089854,-73.013849],[68.102794,-73.000584],[68.112071,-72.976332],[68.117361,-72.952732],[68.115001,-72.943617],[68.107677,-72.929132],[68.100108,-72.92018],[68.082286,-72.904962],[68.07488,-72.876235],[68.054373,-72.865818],[67.999685,-72.855727],[67.975841,-72.844903],[67.959727,-72.827325],[67.953624,-72.805108],[67.969086,-72.753188],[67.960704,-72.73919],[67.94158,-72.728285],[67.91863,-72.711196],[67.921072,-72.693048],[67.948009,-72.674086],[68.014822,-72.646661],[68.031586,-72.631036],[68.041189,-72.624444],[68.054698,-72.620212],[68.083507,-72.615899],[68.123546,-72.602227],[68.201915,-72.589288],[68.195649,-72.586684],[68.178233,-72.576755],[68.332774,-72.507501],[68.413585,-72.481622],[68.494314,-72.474867],[68.621837,-72.482192],[68.708507,-72.498142],[68.752289,-72.493585],[69.042166,-72.420343],[69.083832,-72.416274],[69.15504,-72.425958],[69.347179,-72.416436],[69.515147,-72.431899],[69.508311,-72.441502],[69.500173,-72.449884],[69.490896,-72.456964],[69.480642,-72.462986],[69.517589,-72.469496],[69.559255,-72.463962],[69.599132,-72.449802],[69.631847,-72.430759],[69.589854,-72.397149],[69.609141,-72.369887],[69.620291,-72.359633],[69.636567,-72.355564],[69.630138,-72.353611],[69.617442,-72.346856],[69.611013,-72.344415],[69.638682,-72.320733],[69.668793,-72.303155],[69.702322,-72.290623],[69.738129,-72.281996],[69.782725,-72.278416],[69.797374,-72.275486],[69.844574,-72.254815],[69.862478,-72.252211],[69.930919,-72.265558],[69.95045,-72.258071],[69.940196,-72.219822],[69.916026,-72.199884],[69.879161,-72.193048],[69.804942,-72.187677],[69.819835,-72.156183],[69.835297,-72.134047],[69.856944,-72.119317],[69.890391,-72.109796],[69.90797,-72.110284],[69.917003,-72.114435],[69.923839,-72.11297],[69.946462,-72.080743],[69.954112,-72.077244],[69.964041,-72.07879],[70.172048,-72.062595],[70.27003,-72.072035],[70.364757,-72.05462],[70.497081,-72.052341],[70.53004,-72.047947],[70.654552,-71.995375],[70.700206,-71.959568],[70.729503,-71.946059],[70.723155,-71.941013],[70.711762,-71.928399],[70.705414,-71.92311],[70.712413,-71.920668],[70.726248,-71.913995],[70.733409,-71.912042],[70.711111,-71.906183],[70.643077,-71.905369],[70.628591,-71.902114],[70.590505,-71.880955],[70.566905,-71.874607],[70.442393,-71.862237],[70.432872,-71.856378],[70.432465,-71.838962],[70.446951,-71.830173],[70.466645,-71.827244],[70.687266,-71.831638],[70.849132,-71.803481],[70.880544,-71.793145],[70.971202,-71.751397],[71.036306,-71.746352],[71.121104,-71.730564],[71.149669,-71.735447],[71.182791,-71.752699],[71.212413,-71.753839],[71.278168,-71.728285],[71.250255,-71.71852],[71.134613,-71.697524],[71.082042,-71.677911],[71.053477,-71.670994],[71.065766,-71.659926],[71.069835,-71.647068],[71.072032,-71.635024],[71.077891,-71.627211],[71.09547,-71.621352],[71.110118,-71.621759],[71.142589,-71.627211],[71.16212,-71.627211],[71.176443,-71.624688],[71.189952,-71.618829],[71.206716,-71.608494],[71.219005,-71.607517],[71.410492,-71.639337],[71.443044,-71.636651],[71.539806,-71.610284],[71.413748,-71.568536],[71.400076,-71.561944],[71.382091,-71.544692],[71.368175,-71.539646],[71.312673,-71.533461],[71.180431,-71.492283],[71.159516,-71.472589],[71.158214,-71.45615],[71.167003,-71.447198],[71.199474,-71.433526],[71.213634,-71.422052],[71.23699,-71.396417],[71.253429,-71.387953],[71.224376,-71.365004],[71.212738,-71.351821],[71.202485,-71.335056],[71.228852,-71.330011],[71.247813,-71.3235],[71.264171,-71.31227],[71.283702,-71.293634],[71.300629,-71.28631],[71.435557,-71.276951],[71.493826,-71.253188],[71.511892,-71.248468],[71.535899,-71.245538],[71.526052,-71.226821],[71.533458,-71.224542],[71.548188,-71.217706],[71.555837,-71.215916],[71.533865,-71.20436],[71.509532,-71.20143],[71.429454,-71.200372],[71.370372,-71.191583],[71.341563,-71.182061],[71.348969,-71.166762],[71.360688,-71.156996],[71.375499,-71.151951],[71.392345,-71.150811],[71.395193,-71.118097],[71.541759,-70.960138],[71.583832,-70.951104],[71.631033,-70.955824],[71.686046,-70.953709],[71.652354,-70.912205],[71.667328,-70.909356],[71.69809,-70.908461],[71.70574,-70.902114],[71.714366,-70.890558],[71.730479,-70.881036],[71.748871,-70.874933],[71.799327,-70.87656],[71.827647,-70.866795],[71.848155,-70.844659],[71.859386,-70.809666],[71.781261,-70.799981],[71.767589,-70.795505],[71.74171,-70.778904],[71.726817,-70.774021],[71.796235,-70.716404],[71.821544,-70.704197],[71.850352,-70.6985],[71.911143,-70.694513],[71.940115,-70.688735],[71.950694,-70.68377],[71.970714,-70.671319],[71.983246,-70.666274],[71.999522,-70.662693],[72.013438,-70.66131],[72.043712,-70.664483],[72.072927,-70.673598],[72.125255,-70.697686],[72.155528,-70.704848],[72.148448,-70.667413],[72.192231,-70.652927],[72.252778,-70.655532],[72.296072,-70.669854],[72.345958,-70.67547],[72.402517,-70.646091],[72.441091,-70.603774],[72.437348,-70.570082],[72.45102,-70.56463],[72.465587,-70.560968],[72.494965,-70.557387],[72.477387,-70.546319],[72.612071,-70.511651],[72.618826,-70.505955],[72.622325,-70.485528],[72.626475,-70.477309],[72.645763,-70.467543],[72.670584,-70.463962],[72.695649,-70.464451],[72.742686,-70.471287],[72.765473,-70.469171],[72.852794,-70.444757],[72.86964,-70.433364],[72.866222,-70.415948],[72.852224,-70.397882],[72.844005,-70.389418],[72.821544,-70.378839],[72.818126,-70.371677],[72.817556,-70.361749],[72.812836,-70.34824],[72.78004,-70.311293],[72.694347,-70.263279],[72.656423,-70.22975],[72.627452,-70.194594],[72.625662,-70.179132],[72.639496,-70.160252],[72.655284,-70.147638],[72.697765,-70.122247],[72.729015,-70.109145],[72.736827,-70.103123],[72.742198,-70.094171],[72.748383,-70.080987],[72.755382,-70.073826],[72.766287,-70.069024],[72.879161,-70.040297],[72.906423,-70.026951],[72.91627,-70.025811],[72.943126,-70.028497],[72.955821,-70.027927],[72.969493,-70.025486],[72.980154,-70.019952],[73.000987,-70.003106],[73.008556,-69.998956],[73.019298,-70.001072],[73.043224,-70.012628],[73.056163,-70.014581],[73.072765,-70.006931],[73.090831,-69.993259],[73.109386,-69.982354],[73.128266,-69.983005],[73.158376,-69.993748],[73.179535,-69.992771],[73.230724,-69.978936],[73.210785,-69.953383],[73.208018,-69.942478],[73.217459,-69.93255],[73.233165,-69.910333],[73.239757,-69.88836],[73.240977,-69.871352],[73.248871,-69.858575],[73.275564,-69.848403],[73.346446,-69.837172],[73.367686,-69.829848],[73.377696,-69.822931],[73.395518,-69.80462],[73.405528,-69.79754],[73.417328,-69.794854],[73.438975,-69.79518],[73.472992,-69.780938],[73.488129,-69.786879],[73.500499,-69.797784],[73.513927,-69.803318],[73.537364,-69.803318],[73.560557,-69.806329],[73.580414,-69.815525],[73.608897,-69.851251],[73.62908,-69.858168],[73.704845,-69.862481],[73.726736,-69.852146],[73.746593,-69.837579],[73.812836,-69.802667],[73.884044,-69.745864],[73.927989,-69.729913],[73.986501,-69.718927],[74.028331,-69.718438],[74.07488,-69.71266],[74.221365,-69.733575],[74.235199,-69.737563],[74.241059,-69.744317],[74.244884,-69.753839],[74.253266,-69.765558],[74.316905,-69.806817],[74.328298,-69.819757],[74.322602,-69.837986],[74.274587,-69.907403],[74.302745,-69.91961],[74.336192,-69.91546],[74.403168,-69.897393],[74.412283,-69.927911],[74.467052,-69.925226],[74.574962,-69.89365],[74.670177,-69.848403],[74.717459,-69.835382],[74.771983,-69.842055],[74.720225,-69.88006],[74.752208,-69.902032],[74.77589,-69.908868],[74.800059,-69.90252],[74.867198,-69.868585],[74.903982,-69.858087],[74.940196,-69.856703],[74.972016,-69.868341],[75.028575,-69.911228],[75.06072,-69.930108],[75.091075,-69.937107],[75.123546,-69.924493],[75.179942,-69.877374],[75.217296,-69.867852],[75.210623,-69.841241],[75.224132,-69.822524],[75.248871,-69.81227],[75.275238,-69.810479],[75.301606,-69.817966],[75.317882,-69.832452],[75.342052,-69.880141],[75.351329,-69.886163],[75.378266,-69.886326],[75.386241,-69.892673],[75.394705,-69.922784],[75.40268,-69.935235],[75.41684,-69.94199],[75.438243,-69.937433],[75.52475,-69.901462],[75.556488,-69.893243],[75.58253,-69.897393],[75.593272,-69.897882],[75.602875,-69.894952],[75.638194,-69.868422],[75.661388,-69.86004],[75.718028,-69.849786],[75.76059,-69.83172],[75.774669,-69.832127],[75.799571,-69.837009],[75.813975,-69.834893],[75.840343,-69.817315],[75.861013,-69.794529],[75.883311,-69.778904],[75.91627,-69.78281],[75.835297,-69.730645],[75.822032,-69.716404],[75.814626,-69.691095],[75.798595,-69.661228],[75.777354,-69.635349],[75.753917,-69.621759],[75.764985,-69.614923],[75.789317,-69.603611],[75.79949,-69.596775],[75.803966,-69.586847],[75.803722,-69.57643],[75.807953,-69.567153],[75.82545,-69.560724],[75.817638,-69.558689],[75.793956,-69.549574],[75.820486,-69.525079],[75.856781,-69.523614],[75.896007,-69.529067],[75.931163,-69.526137],[75.946462,-69.515883],[75.972992,-69.489923],[75.989757,-69.483819],[76.035655,-69.479262],[76.079926,-69.468683],[76.215668,-69.420668],[76.378184,-69.405369],[76.365977,-69.427911],[76.357188,-69.44964],[76.360606,-69.467218],[76.384451,-69.477797],[76.406016,-69.47503],[76.432628,-69.464288],[76.457774,-69.450453],[76.517751,-69.403985],[76.559581,-69.380304],[76.605154,-69.365167],[76.682953,-69.353123],[76.733165,-69.350763],[76.756684,-69.355076],[76.783539,-69.363539],[76.795665,-69.364353],[76.809581,-69.36061],[76.828136,-69.351983],[76.832367,-69.346287],[76.830821,-69.337172],[76.832367,-69.319513],[76.831879,-69.305597],[76.827485,-69.296563],[76.827485,-69.289727],[76.839854,-69.282973],[76.868337,-69.274835],[76.897716,-69.272068],[76.926768,-69.274835],[76.944835,-69.278578],[76.961274,-69.275974],[76.986583,-69.259535],[76.979991,-69.25506],[76.967784,-69.243585],[76.961192,-69.239353],[77.000499,-69.211684],[77.063487,-69.201837],[77.237966,-69.20379],[77.264415,-69.198907],[77.318696,-69.182875],[77.431651,-69.184666],[77.443126,-69.18963],[77.457774,-69.199802],[77.470714,-69.205743],[77.482188,-69.204034],[77.507823,-69.188735],[77.533214,-69.179864],[77.841645,-69.13006],[77.826834,-69.111749],[77.823497,-69.096612],[77.831309,-69.083185],[77.849132,-69.070082],[77.879649,-69.053318],[77.889008,-69.045831],[77.912283,-69.015313],[77.922618,-69.007582],[77.948497,-69.001235],[78.043956,-69.002618],[77.947765,-68.977634],[77.967052,-68.956313],[77.984141,-68.942804],[78.004405,-68.933689],[78.031912,-68.925063],[77.936209,-68.919692],[77.943614,-68.898696],[77.939789,-68.876072],[77.939626,-68.856134],[77.95753,-68.843438],[77.965587,-68.839288],[77.978038,-68.825372],[77.985606,-68.820082],[78.118663,-68.76393],[78.142914,-68.758966],[78.350841,-68.752048],[78.376231,-68.746026],[78.418468,-68.726007],[78.444102,-68.719171],[78.669932,-68.6985],[78.626475,-68.670505],[78.571462,-68.654474],[78.512706,-68.648533],[78.458263,-68.650079],[78.477387,-68.643976],[78.531586,-68.614841],[78.544607,-68.601007],[78.542491,-68.592055],[78.524181,-68.576918],[78.516124,-68.567153],[78.511485,-68.551935],[78.511485,-68.534601],[78.516124,-68.518487],[78.526703,-68.50628],[78.511485,-68.500421],[78.496349,-68.498793],[78.464366,-68.501642],[78.461681,-68.485528],[78.467296,-68.476495],[78.47877,-68.471612],[78.493907,-68.467543],[78.501475,-68.460626],[78.506521,-68.435805],[78.511241,-68.425063],[78.531993,-68.400974],[78.549815,-68.374688],[78.559906,-68.364679],[78.604015,-68.34881],[78.746593,-68.262465],[79.131358,-68.147719],[79.444224,-68.09295],[79.757091,-68.038181],[79.867035,-68.031915],[80.302053,-67.958307],[80.737071,-67.884698],[80.794932,-67.882013],[80.876231,-67.892348],[81.192882,-67.833022],[81.509532,-67.773696],[81.568696,-67.77337],[81.87672,-67.700128],[81.888194,-67.700453],[81.915538,-67.707778],[81.930186,-67.709242],[81.943044,-67.706313],[81.998057,-67.684666],[82.059418,-67.671808],[82.121755,-67.66961],[82.23585,-67.689386],[82.243663,-67.693617],[82.250499,-67.699395],[82.260916,-67.705173],[82.278819,-67.710219],[82.288259,-67.708103],[82.29713,-67.703383],[82.312999,-67.700453],[82.348806,-67.705987],[82.36199,-67.704197],[82.396251,-67.672296],[82.423106,-67.658461],[82.514415,-67.628188],[82.528087,-67.62656],[82.5442,-67.622328],[82.571056,-67.607354],[82.586192,-67.603448],[82.670095,-67.609552],[82.781505,-67.598565],[82.807628,-67.603204],[82.853852,-67.626723],[82.877289,-67.635675],[82.90504,-67.636814],[82.995942,-67.609633],[83.029552,-67.605727],[83.082042,-67.611098],[83.10613,-67.61061],[83.160004,-67.588556],[83.187266,-67.58115],[83.215343,-67.579034],[83.246104,-67.582289],[83.295909,-67.596287],[83.320486,-67.607599],[83.362559,-67.635431],[83.388682,-67.64422],[83.472667,-67.65781],[83.615977,-67.63836],[83.627615,-67.632501],[83.634125,-67.622247],[83.640391,-67.61004],[83.650564,-67.59824],[83.656423,-67.59352],[83.581798,-67.570896],[83.501964,-67.565525],[83.430919,-67.545587],[83.382579,-67.479587],[83.386729,-67.446547],[83.41684,-67.428155],[83.584727,-67.398858],[83.623302,-67.383396],[83.649262,-67.35296],[83.676768,-67.32936],[83.724132,-67.313653],[84.101573,-67.261895],[84.249685,-67.224054],[84.261892,-67.217706],[84.29127,-67.191176],[84.305431,-67.181736],[84.334483,-67.169122],[84.414073,-67.123793],[84.438731,-67.115981],[84.491466,-67.110121],[84.59669,-67.1124],[84.962169,-67.076104],[85.070323,-67.088556],[85.015636,-67.129002],[85.041026,-67.131036],[85.0949,-67.126072],[85.116222,-67.134942],[85.141124,-67.151625],[85.167003,-67.159112],[85.311778,-67.168715],[85.360118,-67.181573],[85.418956,-67.190362],[85.442882,-67.189386],[85.454845,-67.184991],[85.474132,-67.17311],[85.487478,-67.171563],[85.616466,-67.188165],[85.642345,-67.183282],[85.697276,-67.165134],[85.726329,-67.160333],[85.778819,-67.162205],[85.880056,-67.137791],[85.890147,-67.132094],[85.905935,-67.110284],[85.914236,-67.10117],[85.925629,-67.094659],[85.979177,-67.07643],[86.006847,-67.073419],[86.019379,-67.069594],[86.03297,-67.06113],[86.041759,-67.052992],[86.05128,-67.046075],[86.067149,-67.040948],[86.122813,-67.03753],[86.235118,-67.048272],[86.558279,-67.02809],[86.587169,-67.033949],[86.643809,-67.058282],[86.668142,-67.064548],[86.696788,-67.063897],[86.91627,-67.011814],[87.013194,-66.96502],[87.108653,-66.933282],[87.475271,-66.873956],[87.582042,-66.842543],[87.639903,-66.836847],[87.698578,-66.823663],[87.729015,-66.820489],[87.817719,-66.824314],[87.844737,-66.819024],[87.914317,-66.783949],[87.939301,-66.775079],[87.965668,-66.770278],[88.135102,-66.772638],[88.163259,-66.777927],[88.186697,-66.786391],[88.198253,-66.792657],[88.20753,-66.799737],[88.215668,-66.813084],[88.225108,-66.844659],[88.230154,-66.853936],[88.251231,-66.859552],[88.334321,-66.846287],[88.388194,-66.846612],[88.441173,-66.841241],[88.611013,-66.796808],[88.684418,-66.79518],[88.734711,-66.784926],[88.744802,-66.784926],[88.893077,-66.809503],[88.921153,-66.806899],[89.003429,-66.788263],[89.035167,-66.78867],[89.128754,-66.809503],[89.187673,-66.812921],[89.305349,-66.805841],[89.364594,-66.812188],[89.446544,-66.837091],[89.475759,-66.841567],[89.599864,-66.845961],[89.654307,-66.840427],[89.759044,-66.801202],[89.81072,-66.788751],[89.885916,-66.787042],[89.940929,-66.793878],[90.087576,-66.770196],[90.148936,-66.771173],[90.209646,-66.780043],[90.277029,-66.801365],[90.291515,-66.802667],[90.323253,-66.799493],[90.335216,-66.801202],[90.348399,-66.806899],[90.372325,-66.820733],[90.398692,-66.819594],[90.427094,-66.800388],[90.471039,-66.753676],[90.49171,-66.742852],[90.544444,-66.744073],[90.566417,-66.739516],[90.618419,-66.718194],[90.673839,-66.705173],[90.711192,-66.708673],[90.722423,-66.706231],[90.80128,-66.673435],[91.003429,-66.613946],[91.059255,-66.586114],[91.086111,-66.578058],[91.145193,-66.573826],[91.379405,-66.600274],[91.436778,-66.595961],[91.642263,-66.558201],[91.696788,-66.537286],[91.781749,-66.537856],[91.960134,-66.498224],[92.065278,-66.514418],[92.167979,-66.511651],[92.21697,-66.520278],[92.369802,-66.594985],[92.422699,-66.602309],[92.506847,-66.597589],[92.644216,-66.626235],[92.760265,-66.633884],[92.815929,-66.627537],[92.874766,-66.612726],[92.972179,-66.574151],[93.021332,-66.562188],[93.074474,-66.565362],[93.18572,-66.589532],[93.213064,-66.590427],[93.296153,-66.580336],[93.458263,-66.587009],[93.567556,-66.57936],[93.623546,-66.582615],[93.731212,-66.604262],[93.711274,-66.632501],[93.699229,-66.64365],[93.68336,-66.651788],[93.689138,-66.65545],[93.699555,-66.664646],[93.705577,-66.668145],[93.691091,-66.682875],[93.700531,-66.706231],[93.720714,-66.730239],[93.739268,-66.747166],[93.753754,-66.744317],[93.887869,-66.6867],[93.91505,-66.685724],[93.938243,-66.69199],[93.961192,-66.704522],[93.969249,-66.719985],[93.948253,-66.734308],[93.997081,-66.731378],[94.078136,-66.71795],[94.095063,-66.712335],[94.104991,-66.70379],[94.112804,-66.687188],[94.120128,-66.678155],[94.131033,-66.673435],[94.295421,-66.653416],[94.426036,-66.621677],[94.445567,-66.61004],[94.465099,-66.590427],[94.490977,-66.569757],[94.519054,-66.552504],[94.545095,-66.543145],[94.703949,-66.512791],[94.785655,-66.507013],[94.905284,-66.476983],[94.917166,-66.475356],[94.931,-66.478611],[94.955577,-66.48797],[94.997325,-66.488539],[95.021169,-66.492608],[95.069102,-66.508884],[95.095876,-66.514337],[95.174653,-66.507257],[95.226817,-66.511163],[95.278656,-66.527114],[95.321056,-66.556736],[95.345063,-66.600763],[95.344574,-66.613214],[95.342459,-66.626235],[95.345063,-66.637302],[95.359141,-66.642348],[95.493175,-66.653985],[95.521332,-66.651544],[95.511974,-66.659926],[95.481944,-66.708185],[95.496755,-66.700291],[95.517345,-66.702081],[95.556163,-66.710626],[95.576671,-66.706313],[95.636974,-66.679132],[95.65211,-66.676853],[95.683767,-66.676528],[95.699392,-66.6749],[95.760916,-66.659112],[95.825938,-66.649998],[95.858897,-66.650811],[95.890798,-66.657403],[95.950206,-66.657485],[96.004242,-66.63006],[96.056,-66.594415],[96.108653,-66.570082],[96.134613,-66.573337],[96.180512,-66.60589],[96.207205,-66.613539],[96.235525,-66.61004],[96.292247,-66.59531],[96.4074,-66.583754],[96.433767,-66.587009],[96.553477,-66.61533],[96.610362,-66.614841],[96.974132,-66.508396],[97.08074,-66.492283],[97.190115,-66.499444],[97.235199,-66.507989],[97.255626,-66.516534],[97.270518,-66.531671],[97.337087,-66.581313],[97.417735,-66.567315],[97.438813,-66.571954],[97.44809,-66.602472],[97.451915,-66.611017],[97.463227,-66.624444],[97.47169,-66.63128],[97.481781,-66.635024],[97.497732,-66.63893],[97.523692,-66.642348],[97.576915,-66.641778],[97.602712,-66.645278],[97.672048,-66.677179],[97.695323,-66.678643],[97.740571,-66.658298],[97.804373,-66.591404],[97.840099,-66.566095],[97.885509,-66.555271],[97.977387,-66.547133],[98.069102,-66.508233],[98.167003,-66.484063],[98.212087,-66.460707],[98.247813,-66.447931],[98.527599,-66.448989],[98.53712,-66.45436],[98.553559,-66.473565],[98.563243,-66.480727],[98.575369,-66.486017],[98.542491,-66.553481],[98.52003,-66.58408],[98.490733,-66.603774],[98.539806,-66.622735],[98.623302,-66.609308],[98.913748,-66.504571],[98.994314,-66.491957],[99.069347,-66.489923],[99.053233,-66.52516],[99.007335,-66.552911],[98.716482,-66.642755],[98.756196,-66.650079],[98.773285,-66.657403],[98.785981,-66.671319],[98.806163,-66.713474],[98.817638,-66.728285],[98.705251,-66.774347],[98.73227,-66.787367],[98.745942,-66.791762],[98.760997,-66.793878],[98.77589,-66.798761],[98.780935,-66.810317],[98.780121,-66.845392],[98.786388,-66.878513],[98.802501,-66.900649],[98.826182,-66.909926],[98.856456,-66.904229],[98.884532,-66.882745],[98.881358,-66.86061],[98.871349,-66.836196],[98.879731,-66.807306],[98.90504,-66.783298],[98.991384,-66.724298],[99.003673,-66.709405],[99.009125,-66.69964],[99.017263,-66.694513],[99.037364,-66.694268],[99.049327,-66.698663],[99.061778,-66.708185],[99.083507,-66.729099],[99.095551,-66.73797],[99.107595,-66.743259],[99.157074,-66.752618],[99.169444,-66.753106],[99.176768,-66.745864],[99.182465,-66.726332],[99.199229,-66.710056],[99.2317,-66.701349],[99.29713,-66.697198],[99.332042,-66.700128],[99.347179,-66.698826],[99.363943,-66.691013],[99.389659,-66.669366],[99.402843,-66.662774],[99.422537,-66.662205],[99.422862,-66.618748],[99.468516,-66.582289],[99.529552,-66.557387],[99.576182,-66.548517],[99.545258,-66.595961],[99.536306,-66.622166],[99.539561,-66.648207],[99.560232,-66.672052],[99.583995,-66.669041],[99.607677,-66.650649],[99.627289,-66.629083],[99.678396,-66.592218],[99.80714,-66.55283],[99.867524,-66.526462],[99.899181,-66.508233],[99.923188,-66.499688],[99.948904,-66.498142],[99.985362,-66.500258],[100.001231,-66.498712],[100.036469,-66.490655],[100.050304,-66.490899],[100.069835,-66.495294],[100.08546,-66.495212],[100.101329,-66.491306],[100.136078,-66.477634],[100.16627,-66.460219],[100.181326,-66.454848],[100.20045,-66.452732],[100.215343,-66.452407],[100.229828,-66.450453],[100.279633,-66.431085],[100.308279,-66.43255],[100.322765,-66.449151],[100.312266,-66.483575],[100.334483,-66.482192],[100.421397,-66.453058],[100.447032,-66.455662],[100.466319,-66.471449],[100.500011,-66.518731],[100.530447,-66.493097],[100.566254,-66.476658],[100.643891,-66.457696],[100.618907,-66.448175],[100.528005,-66.45143],[100.567231,-66.424574],[100.544281,-66.414727],[100.470551,-66.397393],[100.821544,-66.384535],[100.854991,-66.379653],[100.887706,-66.366632],[101.071462,-66.267022],[101.099864,-66.245294],[101.122325,-66.219334],[101.129893,-66.201918],[101.134451,-66.187188],[101.142589,-66.176935],[101.161388,-66.173517],[101.201427,-66.172133],[101.219574,-66.167901],[101.265798,-66.146905],[101.274913,-66.138442],[101.294444,-66.111993],[101.306163,-66.100193],[101.319021,-66.09002],[101.331065,-66.083917],[101.440115,-66.068943],[101.476248,-66.058364],[101.168712,-66.029474],[101.182872,-66.023614],[101.19752,-66.019301],[101.227794,-66.014581],[101.218516,-66.00742],[101.208181,-66.002537],[101.196625,-66.000177],[101.184825,-66.000095],[101.239431,-65.984063],[101.287283,-65.961358],[101.336436,-65.944024],[101.574229,-65.948989],[101.683116,-65.967218],[102.010509,-65.959242],[102.337901,-65.951267],[102.511078,-65.891209],[102.599864,-65.871026],[102.713715,-65.861261],[102.910655,-65.879327],[102.967052,-65.877618],[103.050955,-65.888849],[103.065766,-65.892999],[103.0713,-65.90252],[103.074962,-65.914158],[103.085134,-65.9249],[103.09669,-65.925714],[103.145518,-65.916192],[103.158539,-65.916762],[103.201345,-65.928399],[103.278087,-65.924249],[103.306,-65.928155],[103.318044,-65.932875],[103.338878,-65.945489],[103.349132,-65.949884],[103.413585,-65.957452],[103.559906,-66.002211],[103.610525,-66.009942],[103.640636,-66.007989],[103.729259,-65.982192],[103.759288,-65.976983],[103.908214,-65.978774],[104.16212,-66.019749],[104.416026,-66.060724],[104.573253,-66.131036],[104.630219,-66.141209],[104.863048,-66.142999],[105.290538,-66.216078],[105.350841,-66.208591],[105.361827,-66.210626],[105.405528,-66.230727],[105.448009,-66.232599],[105.46046,-66.237074],[105.485606,-66.254002],[105.498546,-66.259942],[105.900564,-66.31996],[106.302582,-66.379978],[106.32309,-66.38893],[106.325531,-66.397231],[106.324392,-66.408868],[106.324962,-66.420831],[106.332286,-66.430922],[106.345714,-66.433364],[106.361501,-66.428806],[106.376313,-66.420343],[106.386974,-66.411798],[106.410411,-66.401625],[106.598643,-66.414158],[106.644298,-66.426365],[106.698741,-66.47031],[106.722341,-66.468927],[106.767833,-66.455743],[107.116954,-66.462579],[107.332774,-66.498305],[107.434255,-66.528497],[107.779145,-66.55169],[107.801117,-66.561782],[107.846528,-66.59295],[107.869884,-66.613946],[107.879161,-66.633071],[107.867035,-66.652765],[107.840587,-66.666681],[107.78712,-66.682875],[107.764903,-66.694024],[107.701915,-66.737726],[107.713878,-66.756606],[107.715668,-66.787367],[107.709809,-66.847589],[107.725108,-66.84295],[107.737804,-66.83587],[107.784841,-66.797296],[107.792979,-66.792087],[107.800548,-66.790948],[107.818126,-66.793552],[107.825369,-66.792087],[107.83839,-66.779474],[107.859141,-66.74684],[107.87143,-66.734145],[107.88559,-66.727716],[108.043224,-66.678969],[108.135753,-66.62477],[108.16505,-66.621352],[108.207042,-66.626723],[108.202159,-66.653416],[108.213064,-66.670668],[108.25294,-66.696954],[108.27003,-66.716974],[108.282725,-66.738377],[108.298188,-66.756443],[108.323416,-66.76629],[108.352387,-66.767022],[108.377208,-66.764744],[108.401866,-66.765558],[108.476573,-66.79461],[108.500662,-66.799574],[108.576427,-66.805841],[108.621918,-66.818048],[108.661876,-66.842218],[108.6963,-66.882989],[108.708832,-66.919122],[108.713878,-66.927423],[108.723155,-66.93255],[108.761729,-66.941502],[108.832774,-66.968032],[108.858653,-66.971368],[108.881847,-66.968438],[108.95045,-66.950942],[108.986501,-66.953302],[108.997081,-66.95143],[108.99879,-66.947524],[108.997732,-66.940851],[108.997406,-66.933852],[109.001313,-66.928969],[109.079845,-66.896742],[109.125011,-66.884698],[109.149587,-66.885349],[109.223481,-66.904718],[109.248302,-66.903985],[109.270844,-66.900974],[109.292979,-66.900567],[109.316905,-66.907322],[109.362315,-66.927016],[109.385753,-66.932712],[109.609874,-66.919692],[109.603526,-66.913344],[109.59254,-66.898614],[109.586274,-66.892185],[109.619151,-66.877048],[109.84783,-66.854425],[109.805186,-66.829278],[109.905528,-66.807712],[109.882172,-66.799249],[110.099783,-66.766046],[110.156098,-66.747979],[110.253917,-66.696954],[110.39031,-66.659763],[110.417654,-66.655938],[110.44516,-66.658298],[110.503184,-66.671645],[110.555186,-66.690199],[110.605317,-66.716974],[110.630544,-66.725763],[110.6574,-66.72796],[110.744151,-66.714532],[110.733572,-66.695733],[110.715343,-66.683526],[110.672618,-66.667657],[110.705414,-66.624607],[110.671072,-66.612074],[110.651215,-66.593927],[110.644786,-66.567966],[110.650727,-66.531915],[110.626475,-66.529067],[110.601899,-66.529474],[110.688731,-66.489028],[110.705089,-66.472345],[110.710297,-66.426202],[110.724946,-66.40545],[110.635997,-66.385024],[110.611664,-66.372654],[110.594981,-66.361586],[110.580089,-66.355727],[110.544444,-66.351821],[110.526378,-66.347263],[110.511974,-66.337172],[110.499848,-66.323826],[110.489024,-66.30877],[110.518565,-66.295668],[110.548676,-66.275079],[110.599864,-66.227797],[110.623302,-66.216974],[110.684093,-66.210626],[110.707286,-66.194024],[110.711599,-66.180597],[110.710704,-66.168552],[110.711925,-66.15781],[110.722423,-66.148045],[110.760265,-66.129164],[110.800792,-66.115981],[110.927094,-66.05462],[110.954356,-66.048272],[111.014171,-66.043878],[111.314871,-65.988377],[111.615571,-65.932875],[111.847423,-65.934747],[112.306407,-65.880344],[112.765391,-65.825942],[112.878673,-65.798435],[113.203624,-65.765395],[113.222179,-65.772556],[113.253429,-65.815118],[113.275645,-65.832127],[113.306163,-65.84238],[113.423595,-65.860121],[113.528331,-65.89658],[113.662608,-65.915134],[113.775564,-65.9485],[113.797374,-65.960219],[113.84311,-65.993341],[113.894786,-66.021661],[114.003673,-66.061293],[114.062999,-66.068455],[114.087738,-66.075779],[114.13502,-66.118341],[114.161388,-66.128351],[114.190766,-66.129815],[114.223806,-66.126642],[114.254568,-66.134373],[114.290782,-66.179864],[114.319347,-66.188165],[114.340343,-66.187677],[114.351248,-66.191664],[114.360688,-66.199151],[114.377696,-66.208917],[114.39088,-66.21266],[114.403005,-66.214044],[114.415782,-66.217055],[114.429861,-66.226007],[114.406749,-66.235935],[114.402599,-66.253595],[114.401378,-66.273533],[114.387706,-66.289809],[114.338715,-66.314142],[114.320567,-66.33115],[114.309418,-66.357029],[114.333669,-66.351821],[114.416026,-66.367852],[114.408865,-66.370782],[114.38795,-66.38242],[114.429535,-66.401788],[114.424083,-66.40602],[114.41391,-66.415785],[114.408214,-66.41961],[114.483409,-66.415216],[114.351899,-66.477716],[114.322439,-66.509047],[114.674653,-66.478774],[114.766287,-66.493829],[114.812022,-66.495212],[114.896251,-66.472426],[115.039399,-66.48268],[115.088064,-66.477634],[115.113455,-66.478123],[115.132579,-66.48797],[115.151866,-66.506606],[115.171641,-66.518731],[115.193858,-66.52516],[115.265147,-66.532647],[115.34962,-66.555759],[115.434581,-66.559177],[115.598969,-66.592869],[115.649425,-66.614516],[115.681895,-66.642755],[115.668956,-66.673435],[115.682628,-66.685724],[115.69809,-66.696222],[115.708263,-66.705662],[115.707856,-66.714125],[115.705414,-66.722833],[115.709158,-66.731866],[115.719086,-66.738377],[115.742442,-66.746677],[115.751964,-66.75449],[115.765473,-66.772149],[115.780772,-66.788263],[115.694102,-66.860772],[115.597423,-66.919529],[115.38738,-67.003839],[115.160167,-67.053969],[114.765391,-67.07171],[114.598155,-67.117364],[114.482107,-67.130955],[114.39796,-67.122491],[114.030121,-67.190688],[114.004568,-67.202732],[113.905284,-67.28338],[113.878917,-67.298272],[113.816417,-67.318292],[113.850271,-67.326104],[113.884939,-67.330011],[113.868419,-67.362237],[113.835948,-67.379002],[113.761404,-67.395115],[113.742686,-67.404392],[113.71461,-67.428643],[113.698497,-67.437921],[113.659923,-67.451918],[113.646739,-67.464288],[113.646495,-67.483575],[113.66627,-67.481622],[113.678722,-67.487074],[113.689464,-67.49505],[113.704356,-67.500177],[113.722992,-67.499688],[113.782563,-67.486017],[113.812266,-67.483657],[113.900076,-67.490411],[114.031505,-67.478448],[114.3508,-67.410943],[114.670095,-67.343438],[114.60255,-67.393731],[114.58253,-67.416192],[114.625743,-67.427504],[114.668956,-67.424249],[114.754649,-67.404474],[114.775564,-67.397068],[114.790782,-67.375258],[114.812022,-67.366957],[115.063975,-67.328302],[115.212169,-67.32586],[115.254161,-67.313084],[115.207856,-67.290948],[115.240977,-67.258233],[115.286876,-67.233494],[115.337901,-67.219496],[115.528494,-67.22381],[115.588878,-67.211358],[115.671886,-67.209568],[115.723643,-67.201267],[115.776703,-67.181573],[115.799653,-67.181248],[115.80836,-67.202813],[115.819591,-67.221287],[115.847504,-67.22503],[115.965505,-67.199314],[115.983897,-67.185968],[115.997325,-67.15602],[116.013845,-67.144464],[116.044688,-67.14422],[116.077322,-67.150649],[116.129405,-67.16961],[116.156993,-67.165134],[116.180349,-67.149672],[116.21461,-67.104262],[116.232595,-67.095961],[116.253103,-67.100518],[116.309418,-67.13836],[116.333344,-67.149184],[116.358897,-67.149672],[116.500011,-67.124282],[116.531261,-67.113214],[116.585297,-67.080662],[116.692556,-67.044041],[116.796886,-66.988458],[116.942882,-66.948175],[116.941905,-66.976007],[116.930919,-67.00628],[116.903168,-67.061782],[116.862478,-67.101495],[116.85377,-67.122735],[116.883067,-67.136814],[116.993419,-67.145603],[117.091075,-67.130792],[117.155528,-67.131606],[117.23585,-67.113377],[117.295258,-67.106866],[117.462413,-67.107843],[117.494395,-67.099379],[117.520844,-67.086521],[117.544932,-67.083185],[117.569347,-67.104425],[117.58725,-67.114841],[117.645193,-67.124444],[117.668305,-67.136163],[117.675059,-67.14544],[117.680431,-67.15602],[117.686534,-67.165297],[117.695567,-67.170505],[117.714122,-67.171808],[117.730479,-67.168227],[117.864024,-67.101658],[117.914317,-67.083103],[118.367931,-67.046482],[118.428071,-67.031834],[118.398285,-67.072035],[118.380707,-67.090102],[118.360362,-67.10296],[118.253184,-67.147719],[118.269298,-67.149672],[118.2824,-67.155206],[118.289887,-67.16546],[118.29005,-67.181573],[118.42449,-67.15838],[118.434825,-67.161391],[118.459972,-67.184259],[118.47169,-67.183201],[118.48463,-67.176039],[118.502696,-67.169854],[118.604828,-67.163181],[118.619965,-67.16546],[118.665538,-67.178969],[118.679047,-67.179457],[118.709321,-67.17197],[118.779796,-67.166111],[118.804373,-67.169041],[118.842296,-67.184747],[118.855235,-67.187188],[118.8685,-67.186944],[118.881196,-67.183852],[118.881684,-67.180352],[118.879893,-67.166192],[118.880382,-67.16253],[118.889171,-67.160333],[118.920177,-67.159763],[119.14975,-67.116388],[119.181488,-67.113946],[119.266775,-67.129653],[119.297699,-67.130548],[119.32838,-67.127618],[119.438324,-67.09531],[119.598318,-67.077081],[119.672048,-67.047052],[119.961599,-67.013279],[120.017914,-66.992608],[120.351736,-66.934828],[120.401622,-66.945001],[120.445974,-66.977716],[120.341319,-67.012384],[119.939036,-67.079014],[119.536754,-67.145644],[119.134471,-67.212274],[118.732188,-67.278904],[118.74586,-67.284275],[118.760265,-67.28753],[118.789561,-67.289321],[118.783865,-67.29461],[118.774425,-67.308201],[118.768891,-67.313897],[118.813731,-67.351821],[118.827647,-67.356215],[118.865408,-67.350356],[118.883962,-67.349705],[118.902843,-67.352472],[118.89975,-67.357192],[118.89503,-67.367934],[118.891938,-67.372654],[118.962413,-67.380466],[118.890473,-67.419692],[118.923595,-67.422947],[118.956716,-67.422459],[119.022227,-67.411798],[119.103201,-67.382908],[119.128754,-67.382094],[119.133637,-67.38421],[119.143321,-67.39129],[119.148692,-67.393731],[119.16505,-67.39544],[119.183116,-67.393243],[119.200531,-67.388279],[119.244395,-67.370294],[119.269786,-67.363458],[119.296153,-67.359959],[119.356456,-67.358657],[119.414399,-67.365004],[119.443533,-67.364435],[119.727387,-67.31699],[119.802501,-67.323419],[119.931895,-67.291436],[120.215587,-67.262262],[120.499278,-67.233087],[120.553966,-67.215753],[120.616222,-67.208266],[120.920665,-67.131524],[120.949718,-67.130792],[121.006847,-67.142673],[121.037771,-67.142022],[121.404633,-67.088311],[121.51531,-67.09295],[121.663097,-67.05047],[121.677419,-67.048272],[121.701345,-67.051202],[121.716075,-67.046075],[121.730317,-67.039158],[121.744477,-67.034926],[121.775401,-67.02988],[121.773204,-67.024347],[121.770844,-67.01214],[121.768728,-67.006606],[121.78419,-67.004978],[121.796886,-67.007989],[121.80836,-67.014744],[121.820079,-67.023858],[121.82838,-67.024672],[121.850841,-67.015883],[121.864268,-67.018731],[121.852306,-66.994561],[121.833751,-66.992283],[121.814952,-66.992364],[121.801931,-66.975274],[121.829845,-66.967543],[121.908376,-66.927911],[121.937755,-66.917576],[122.082042,-66.891778],[122.188487,-66.855076],[122.244395,-66.844985],[122.436534,-66.832127],[122.492931,-66.815362],[122.520518,-66.810805],[122.610606,-66.810235],[122.88026,-66.771702],[123.149913,-66.733168],[123.209158,-66.734959],[123.327647,-66.751153],[123.516124,-66.754083],[123.557872,-66.74863],[123.59254,-66.737888],[123.663748,-66.705011],[123.693533,-66.684177],[123.702403,-66.673761],[123.706554,-66.665297],[123.713227,-66.657973],[123.730317,-66.650323],[123.931488,-66.608168],[123.962413,-66.610121],[123.967621,-66.607029],[123.971934,-66.601983],[123.981619,-66.596775],[123.999766,-66.591078],[124.015147,-66.5888],[124.030447,-66.590916],[124.048676,-66.598728],[124.019542,-66.613214],[124.036632,-66.614353],[124.050792,-66.609959],[124.093923,-66.590916],[124.103526,-66.588637],[124.260509,-66.594985],[124.261241,-66.623224],[124.283946,-66.636326],[124.365245,-66.651788],[124.371267,-66.65838],[124.373057,-66.674249],[124.369314,-66.685235],[124.360118,-66.697931],[124.34018,-66.717869],[124.358735,-66.719985],[124.376964,-66.718927],[124.413585,-66.712335],[124.428477,-66.713149],[124.455414,-66.72088],[124.471446,-66.717218],[124.467296,-66.722589],[124.460704,-66.734552],[124.456554,-66.739923],[124.483897,-66.733819],[124.513927,-66.731378],[124.571788,-66.734063],[124.578136,-66.733087],[124.591563,-66.727309],[124.597179,-66.727227],[124.603363,-66.73211],[124.616384,-66.749688],[124.622813,-66.756443],[124.63738,-66.763116],[124.654063,-66.76572],[124.671153,-66.76572],[124.716807,-66.75921],[124.779552,-66.741143],[124.805919,-66.727797],[124.813813,-66.717543],[124.817393,-66.706231],[124.825206,-66.697686],[124.845714,-66.695977],[124.851573,-66.699477],[124.862966,-66.713149],[124.8685,-66.716567],[124.877778,-66.715916],[125.02475,-66.679457],[125.122081,-66.667657],[125.148123,-66.659601],[125.200369,-66.63128],[125.224783,-66.612237],[125.238129,-66.590102],[125.24879,-66.56227],[125.26588,-66.539483],[125.289561,-66.523696],[125.320079,-66.517022],[125.334727,-66.448907],[125.410411,-66.417657],[125.704845,-66.391371],[125.736583,-66.378025],[125.77003,-66.358087],[125.897797,-66.306248],[125.919119,-66.302992],[125.940603,-66.302341],[125.958507,-66.305108],[125.973399,-66.312595],[125.987315,-66.322524],[126.003103,-66.330987],[126.067638,-66.339939],[126.093761,-66.361017],[126.108165,-66.394952],[126.116384,-66.43906],[126.175955,-66.469985],[126.194835,-66.459568],[126.215099,-66.453383],[126.258474,-66.448175],[126.297211,-66.453546],[126.32838,-66.469903],[126.332774,-66.488051],[126.29127,-66.499119],[126.305186,-66.514744],[126.354015,-66.553155],[126.372325,-66.561619],[126.392589,-66.552667],[126.402354,-66.526951],[126.408702,-66.467869],[126.399913,-66.38893],[126.403087,-66.372003],[126.430431,-66.354669],[126.456798,-66.357192],[126.484223,-66.367283],[126.514415,-66.372654],[126.495616,-66.404555],[126.490489,-66.423028],[126.500499,-66.430434],[126.517833,-66.43255],[126.553071,-66.443048],[126.568533,-66.444594],[126.580903,-66.440525],[126.630382,-66.415948],[126.648774,-66.410333],[126.686778,-66.404474],[126.706065,-66.404718],[126.667491,-66.422133],[126.684581,-66.443048],[126.703868,-66.445571],[126.750011,-66.434666],[126.776703,-66.434991],[126.854259,-66.449314],[126.83074,-66.478774],[126.821951,-66.486261],[126.808849,-66.491388],[126.779959,-66.496759],[126.766612,-66.502699],[126.748709,-66.522068],[126.749034,-66.53753],[126.751231,-66.554376],[126.739513,-66.576918],[126.718923,-66.592869],[126.694591,-66.601332],[126.643809,-66.611017],[126.618419,-66.619399],[126.600922,-66.630629],[126.569509,-66.665785],[126.670909,-66.643487],[126.704112,-66.64129],[126.76588,-66.652439],[126.779633,-66.658949],[126.804942,-66.682306],[126.819184,-66.691339],[126.796723,-66.715753],[126.715017,-66.73919],[126.680512,-66.756931],[126.674653,-66.769789],[126.664561,-66.816664],[126.665701,-66.831801],[126.68214,-66.845392],[126.703868,-66.845961],[126.968272,-66.807875],[126.981781,-66.809828],[127.062755,-66.848728],[127.035655,-66.895115],[127.018891,-66.916436],[126.998709,-66.932794],[127.082856,-66.956313],[127.065929,-66.969334],[127.058767,-66.983331],[127.057302,-67.000095],[127.057872,-67.021091],[127.056651,-67.028741],[127.053071,-67.036228],[127.044444,-67.049981],[127.045177,-67.057387],[127.053884,-67.062677],[127.064708,-67.067478],[127.071544,-67.073419],[127.069672,-67.087091],[127.064138,-67.106378],[127.064626,-67.124688],[127.081391,-67.135431],[127.098888,-67.133722],[127.112315,-67.124444],[127.149425,-67.080824],[127.156993,-67.068048],[127.157888,-67.053969],[127.151703,-67.034438],[127.154552,-67.020278],[127.167735,-67.003351],[127.184581,-66.988458],[127.198741,-66.97975],[127.363617,-66.931085],[127.334239,-66.981622],[127.356781,-66.991632],[127.367361,-66.998305],[127.370291,-67.005548],[127.35963,-67.03338],[127.361013,-67.043878],[127.371349,-67.054376],[127.401134,-67.06756],[127.432384,-67.070408],[127.615489,-67.049005],[127.694509,-67.056736],[127.836436,-67.021173],[127.865733,-67.019789],[127.922618,-67.029067],[128.074555,-67.022393],[128.081879,-67.026137],[128.088145,-67.03574],[128.103038,-67.07586],[128.109386,-67.083185],[128.16391,-67.101251],[128.185313,-67.104181],[128.206716,-67.100356],[128.295909,-67.074314],[128.330903,-67.071873],[128.357107,-67.078383],[128.365977,-67.088311],[128.375173,-67.111017],[128.382172,-67.117934],[128.492931,-67.144301],[128.520518,-67.145766],[128.625011,-67.123224],[128.682953,-67.118748],[128.707367,-67.108331],[128.724294,-67.088962],[128.733084,-67.059177],[128.76352,-67.025811],[128.823904,-67.034275],[129.012869,-67.111749],[129.021821,-67.122654],[129.036876,-67.155532],[129.064626,-67.174412],[129.09962,-67.167739],[129.202647,-67.100356],[129.211192,-67.092543],[129.213715,-67.085219],[129.213878,-67.067478],[129.215994,-67.059666],[129.222179,-67.050226],[129.246593,-67.024184],[129.272797,-67.00742],[129.434093,-66.967218],[129.444509,-66.959242],[129.444672,-66.944268],[129.436371,-66.927667],[129.424327,-66.913263],[129.384613,-66.877862],[129.392914,-66.858087],[129.42213,-66.843032],[129.479015,-66.823175],[129.493663,-66.815362],[129.504731,-66.803481],[129.516775,-66.783868],[129.526866,-66.775079],[129.575857,-66.750177],[129.584727,-66.729181],[129.549571,-66.718845],[129.500743,-66.715916],[129.469005,-66.717462],[129.47462,-66.691013],[129.5088,-66.65252],[129.519786,-66.629571],[129.532563,-66.614435],[129.559093,-66.600274],[129.637869,-66.57464],[129.65504,-66.561456],[129.670258,-66.546319],[129.69158,-66.532159],[129.71046,-66.515232],[129.725434,-66.487726],[129.730968,-66.459161],[129.72169,-66.438246],[129.802013,-66.40602],[129.87672,-66.3624],[129.914236,-66.351495],[130.008962,-66.346124],[130.035167,-66.330987],[130.064301,-66.294041],[130.102712,-66.276788],[130.236095,-66.260675],[130.254649,-66.262953],[130.291759,-66.279962],[130.310557,-66.27809],[130.348399,-66.26572],[130.346446,-66.272882],[130.344574,-66.288181],[130.342459,-66.29518],[130.46225,-66.252048],[130.529959,-66.241632],[130.562836,-66.261651],[130.580821,-66.241876],[130.604015,-66.197035],[130.62379,-66.185154],[130.704845,-66.149591],[130.729991,-66.147149],[130.840099,-66.178481],[130.871593,-66.183282],[131.021007,-66.187107],[131.070811,-66.198419],[131.098888,-66.201349],[131.157237,-66.195245],[131.184825,-66.199151],[131.1963,-66.205662],[131.217784,-66.223321],[131.230235,-66.230076],[131.243175,-66.233982],[131.269298,-66.23797],[131.324229,-66.240411],[131.33839,-66.23797],[131.352387,-66.232029],[131.381602,-66.21502],[131.394542,-66.211684],[131.757823,-66.243341],[132.050304,-66.217055],[132.147797,-66.178155],[132.478282,-66.150649],[132.503591,-66.155532],[132.556895,-66.175226],[132.6067,-66.186456],[132.826915,-66.190362],[133.016368,-66.14544],[133.091319,-66.105401],[133.120372,-66.096775],[133.275645,-66.080173],[133.500743,-66.083266],[133.607107,-66.108168],[133.792328,-66.105401],[133.824474,-66.113539],[133.854259,-66.127537],[133.873546,-66.145685],[133.890798,-66.169041],[133.910492,-66.184015],[133.933849,-66.193129],[133.96225,-66.198175],[133.975597,-66.198337],[134.002289,-66.195001],[134.015147,-66.195489],[134.075857,-66.21738],[134.126964,-66.227146],[134.148936,-66.237237],[134.191091,-66.279474],[134.211436,-66.279962],[134.233084,-66.274672],[134.259451,-66.279555],[134.264659,-66.286065],[134.271495,-66.306085],[134.278087,-66.313572],[134.290782,-66.318943],[134.301443,-66.320245],[134.376638,-66.30641],[134.403575,-66.305271],[134.426524,-66.311456],[134.438813,-66.329197],[134.420584,-66.343194],[134.346202,-66.366957],[134.261241,-66.412856],[134.229828,-66.44199],[134.109386,-66.504571],[134.164073,-66.512791],[134.339041,-66.483087],[134.327159,-66.48919],[134.316417,-66.497166],[134.306977,-66.506606],[134.298839,-66.517348],[134.350108,-66.519952],[134.420665,-66.496515],[134.766775,-66.33766],[134.739268,-66.367283],[134.873709,-66.357029],[134.935802,-66.341729],[134.95753,-66.343357],[134.986583,-66.358087],[135.01059,-66.365411],[135.035492,-66.364679],[135.178477,-66.331476],[135.176443,-66.310805],[135.17921,-66.291599],[135.178477,-66.274672],[135.166515,-66.261326],[135.187266,-66.258884],[135.228363,-66.247166],[135.288585,-66.222833],[135.297618,-66.215753],[135.302419,-66.162693],[135.319347,-66.126642],[135.331716,-66.108168],[135.343028,-66.100681],[135.488455,-66.111017],[135.494314,-66.114679],[135.497325,-66.122247],[135.499766,-66.131117],[135.503917,-66.138604],[135.538259,-66.174981],[135.544932,-66.180271],[135.560802,-66.185235],[135.568126,-66.190037],[135.611583,-66.245212],[135.647309,-66.27809],[135.649669,-66.300714],[135.641449,-66.324395],[135.629649,-66.347426],[135.66627,-66.354262],[135.698904,-66.329197],[135.728526,-66.29518],[135.756358,-66.275974],[135.808849,-66.267673],[135.817231,-66.26865],[135.833018,-66.277276],[135.840994,-66.279067],[135.862153,-66.275486],[135.905284,-66.261407],[135.927094,-66.256931],[135.980724,-66.260919],[135.996837,-66.25921],[136.083751,-66.237563],[136.128429,-66.235528],[136.159516,-66.245375],[136.225271,-66.287286],[136.284353,-66.316583],[136.302257,-66.328058],[136.334158,-66.357029],[136.352061,-66.368097],[136.38852,-66.379653],[136.511241,-66.39544],[136.526703,-66.400079],[136.544688,-66.409845],[136.559825,-66.422459],[136.567149,-66.435479],[136.572113,-66.456964],[136.580903,-66.473321],[136.639008,-66.529474],[136.656749,-66.540785],[136.671641,-66.540623],[136.706228,-66.512872],[136.719249,-66.497328],[136.731944,-66.477227],[136.707693,-66.474542],[136.660899,-66.460382],[136.636485,-66.456476],[136.656261,-66.400079],[136.689626,-66.366388],[136.736013,-66.348728],[136.944591,-66.32822],[137.414887,-66.350274],[137.457856,-66.344822],[137.469493,-66.347752],[137.490001,-66.361749],[137.501475,-66.365411],[137.669119,-66.377699],[137.710704,-66.368829],[137.720551,-66.368097],[137.731944,-66.3742],[137.755138,-66.395603],[137.767589,-66.40309],[137.781016,-66.406671],[137.822439,-66.409601],[137.846365,-66.415623],[137.911388,-66.442315],[137.921397,-66.447931],[137.927094,-66.454767],[137.93393,-66.461033],[137.958995,-66.465753],[137.970714,-66.469496],[137.992686,-66.480401],[138.018728,-66.488539],[138.141612,-66.498712],[138.148774,-66.504002],[138.162934,-66.525323],[138.171886,-66.533136],[138.184337,-66.538344],[138.133311,-66.623956],[138.180024,-66.615818],[138.221039,-66.600763],[138.299327,-66.553155],[138.333018,-66.539972],[138.378103,-66.533461],[138.607107,-66.541681],[138.616547,-66.539158],[138.633474,-66.525323],[138.641368,-66.522882],[138.648692,-66.527439],[138.662934,-66.545343],[138.669607,-66.551853],[138.678966,-66.555759],[138.732107,-66.569594],[138.752778,-66.567315],[138.773611,-66.562595],[138.926443,-66.556248],[138.968598,-66.559828],[139.029552,-66.57586],[139.045909,-66.575942],[139.091156,-66.566583],[139.176931,-66.571222],[139.25172,-66.567153],[139.454926,-66.594008],[139.441742,-66.623305],[139.452485,-66.64186],[139.477387,-66.650567],[139.507009,-66.650323],[139.524913,-66.645929],[139.573497,-66.627699],[139.590343,-66.625584],[139.677582,-66.630466],[139.711681,-66.640802],[139.777029,-66.67018],[139.812185,-66.679376],[139.841319,-66.682224],[139.867035,-66.691827],[139.891856,-66.721612],[139.867361,-66.733494],[139.841563,-66.750258],[139.823741,-66.77158],[139.822765,-66.79697],[139.864513,-66.775974],[139.915538,-66.757582],[139.965505,-66.751886],[140.021739,-66.774509],[140.040863,-66.762384],[140.060802,-66.744561],[140.081554,-66.733168],[140.110199,-66.729181],[140.284516,-66.729099],[140.314464,-66.735447],[140.335704,-66.747166],[140.376313,-66.784601],[140.384776,-66.787042],[140.394054,-66.782892],[140.410818,-66.767511],[140.417247,-66.753188],[140.413422,-66.74391],[140.414724,-66.737237],[140.43629,-66.73089],[140.462738,-66.726739],[140.517426,-66.72503],[140.695486,-66.7492],[140.901622,-66.753025],[141.003673,-66.767348],[141.260265,-66.857029],[141.281016,-66.861505],[141.29656,-66.853774],[141.305675,-66.827407],[141.335623,-66.837172],[141.362071,-66.839451],[141.388031,-66.834568],[141.444591,-66.812433],[141.578136,-66.779962],[141.9817,-66.799981],[142.092784,-66.827407],[142.198741,-66.875909],[142.218923,-66.892267],[142.249278,-66.931248],[142.267751,-66.948419],[142.273936,-66.950128],[142.289724,-66.949395],[142.296397,-66.950128],[142.302419,-66.954197],[142.313162,-66.96559],[142.319021,-66.969496],[142.335785,-66.97324],[142.346202,-66.97381],[142.356456,-66.977797],[142.372569,-66.991876],[142.415375,-67.014255],[142.477061,-67.025974],[142.822032,-67.019708],[142.881033,-67.008722],[142.99879,-66.962091],[143.470714,-66.845636],[143.508311,-66.844659],[143.750824,-66.880304],[143.823578,-66.901137],[143.861013,-66.919692],[143.87615,-66.940362],[143.863455,-66.995864],[143.865245,-67.01393],[143.875011,-67.03281],[143.884125,-67.041436],[143.887218,-67.051365],[143.878591,-67.073663],[143.855317,-67.094171],[143.781098,-67.120701],[143.751475,-67.139418],[144.0442,-67.08766],[144.069102,-67.086196],[144.075694,-67.092218],[144.078787,-67.105727],[144.081309,-67.134454],[144.088552,-67.153741],[144.100841,-67.171563],[144.114757,-67.177423],[144.127126,-67.161065],[144.145274,-67.092706],[144.154633,-67.073337],[144.184906,-67.044692],[144.226817,-67.023696],[144.272797,-67.009861],[144.315603,-67.002699],[144.414317,-67.001235],[144.512462,-67.01572],[144.545909,-67.031345],[144.645518,-67.095392],[144.662364,-67.116632],[144.630138,-67.160577],[144.596934,-67.185642],[144.556,-67.195977],[144.500987,-67.19671],[144.457286,-67.187595],[144.409434,-67.172133],[144.362641,-67.162774],[144.321462,-67.171645],[144.34018,-67.19492],[144.358572,-67.207289],[144.381033,-67.211033],[144.437266,-67.207615],[144.464366,-67.213556],[144.490896,-67.22324],[144.514171,-67.234552],[144.506196,-67.249119],[144.484386,-67.268731],[144.475597,-67.280694],[144.45574,-67.322686],[144.446462,-67.333754],[144.432384,-67.343438],[144.387462,-67.359145],[144.376475,-67.36533],[144.325206,-67.405532],[144.301036,-67.417413],[144.275157,-67.421319],[144.248057,-67.413832],[144.225108,-67.392348],[144.201834,-67.363865],[144.177094,-67.347101],[144.149669,-67.361098],[144.143565,-67.374119],[144.145518,-67.383233],[144.146332,-67.392836],[144.137055,-67.406996],[144.117849,-67.417087],[144.098806,-67.419041],[144.085704,-67.424737],[144.084483,-67.445489],[144.091563,-67.450779],[144.123302,-67.453871],[144.137543,-67.457452],[144.155447,-67.468032],[144.164561,-67.478448],[144.166759,-67.491957],[144.16391,-67.512628],[144.164561,-67.526056],[144.169688,-67.539809],[144.184581,-67.564386],[144.191905,-67.581231],[144.189708,-67.595636],[144.180919,-67.609145],[144.144379,-67.645685],[144.119395,-67.664239],[144.092784,-67.67962],[144.049083,-67.698175],[143.983735,-67.716567],[143.90919,-67.756117],[143.880138,-67.78102],[143.8567,-67.811944],[143.840587,-67.847263],[143.869395,-67.847589],[143.954763,-67.833266],[143.920177,-67.849705],[143.911632,-67.861017],[143.913585,-67.879653],[143.911794,-67.892511],[143.902354,-67.907485],[143.880707,-67.933852],[143.952647,-67.945896],[144.020274,-67.935724],[144.155935,-67.885512],[144.140636,-67.91839],[144.136485,-67.935642],[144.13852,-67.953383],[144.185802,-67.939874],[144.206798,-67.940199],[144.229503,-67.950372],[144.248709,-67.95436],[144.269216,-67.946873],[144.351736,-67.899998],[144.425792,-67.824884],[144.469086,-67.794366],[144.555837,-67.761326],[144.601817,-67.751153],[144.647309,-67.747654],[144.809418,-67.754978],[144.863292,-67.749688],[144.90504,-67.737726],[144.942068,-67.718927],[145.054373,-67.635186],[145.238129,-67.528253],[145.279796,-67.51572],[145.323009,-67.510431],[145.421397,-67.50921],[145.444347,-67.514825],[145.460623,-67.534112],[145.484223,-67.57643],[145.488943,-67.596612],[145.481456,-67.623468],[145.506358,-67.630141],[145.529633,-67.641046],[145.536632,-67.6513],[145.533458,-67.664646],[145.527843,-67.678399],[145.526622,-67.690525],[145.545909,-67.712091],[145.579438,-67.728204],[145.615896,-67.737074],[145.644298,-67.736993],[145.688324,-67.700942],[145.707774,-67.644138],[145.733409,-67.59295],[145.797048,-67.573989],[145.917247,-67.589044],[146.048106,-67.586602],[146.075043,-67.592055],[146.130138,-67.614028],[146.190684,-67.622817],[146.201915,-67.643976],[146.208018,-67.669203],[146.228852,-67.687107],[146.202403,-67.705743],[146.109711,-67.749607],[146.126475,-67.764825],[146.175304,-67.769138],[146.197276,-67.782485],[146.213064,-67.797947],[146.249197,-67.821466],[146.263438,-67.835056],[146.300955,-67.851332],[146.344412,-67.831313],[146.3838,-67.792657],[146.408702,-67.753513],[146.44158,-67.731134],[146.489106,-67.741795],[146.528982,-67.770278],[146.537934,-67.802423],[146.510916,-67.841485],[146.473643,-67.873793],[146.430431,-67.898696],[146.385427,-67.915216],[146.410167,-67.951755],[146.454763,-67.949395],[146.504242,-67.935642],[146.544444,-67.937595],[146.530284,-67.949395],[146.527843,-67.96087],[146.533458,-67.97324],[146.543224,-67.9874],[146.552989,-67.988946],[146.568044,-67.981052],[146.594981,-67.961521],[146.615733,-67.951349],[146.640798,-67.94378],[146.666759,-67.939386],[146.689708,-67.938897],[146.682465,-67.942315],[146.66212,-67.954767],[146.711111,-67.959731],[146.819835,-67.920587],[146.872813,-67.937595],[146.804454,-68.000665],[146.634288,-68.087091],[146.558279,-68.143243],[146.580903,-68.150649],[146.602306,-68.178481],[146.619395,-68.183201],[146.704275,-68.169692],[146.795177,-68.139093],[146.971365,-68.052179],[147.024587,-68.033949],[147.064708,-68.038751],[147.073985,-68.054295],[147.07781,-68.077569],[147.076508,-68.10117],[147.0713,-68.117446],[147.054942,-68.134698],[147.034679,-68.148858],[146.991222,-68.171075],[146.859548,-68.209161],[146.805675,-68.242852],[146.745128,-68.270685],[146.721202,-68.287693],[146.718028,-68.303399],[146.732188,-68.316013],[146.76002,-68.323175],[146.805675,-68.319431],[146.893728,-68.293227],[146.93572,-68.296157],[146.943858,-68.30283],[146.944347,-68.310154],[146.947113,-68.315606],[146.962413,-68.316583],[147.107921,-68.294041],[147.09783,-68.311293],[147.097179,-68.340997],[147.082774,-68.35947],[147.049978,-68.380466],[147.038422,-68.392755],[147.030447,-68.415623],[147.060395,-68.422784],[147.088634,-68.419692],[147.17449,-68.394708],[147.186209,-68.395115],[147.214854,-68.409845],[147.230479,-68.412042],[147.262462,-68.408949],[147.38738,-68.376397],[147.404959,-68.375909],[147.421235,-68.378676],[147.454845,-68.389093],[147.468516,-68.389255],[147.517263,-68.375177],[147.628673,-68.356052],[147.662364,-68.356622],[147.725108,-68.370538],[147.759125,-68.372979],[147.820323,-68.36712],[147.849376,-68.370375],[147.885753,-68.406427],[147.917328,-68.417169],[147.984223,-68.42311],[147.979666,-68.435154],[147.979747,-68.444757],[147.983897,-68.453546],[147.991547,-68.462091],[148.000987,-68.464044],[148.012055,-68.457778],[148.023285,-68.448826],[148.033458,-68.442478],[148.061046,-68.438246],[148.114919,-68.446384],[148.141124,-68.446059],[148.214854,-68.419122],[148.241466,-68.414158],[148.266856,-68.417087],[148.292735,-68.427423],[148.304698,-68.444431],[148.288259,-68.466485],[148.435395,-68.473321],[148.518565,-68.451918],[148.611339,-68.468194],[148.620372,-68.457208],[148.620453,-68.447361],[148.619395,-68.438409],[148.624278,-68.430352],[148.640391,-68.419122],[148.655772,-68.411065],[148.672048,-68.405694],[148.691905,-68.403009],[148.721446,-68.405369],[148.747244,-68.414483],[148.797618,-68.441664],[148.830414,-68.452895],[148.85727,-68.453709],[148.918305,-68.446466],[148.980479,-68.445733],[149.00766,-68.439223],[149.061534,-68.412205],[149.093761,-68.404962],[149.126964,-68.401625],[149.154063,-68.40252],[149.120616,-68.420994],[149.15919,-68.450128],[149.20753,-68.460382],[149.255382,-68.450779],[149.310069,-68.406834],[149.33725,-68.395685],[149.366466,-68.387872],[149.39031,-68.384373],[149.414399,-68.38714],[149.481781,-68.418145],[149.784923,-68.486912],[149.835785,-68.484308],[149.883637,-68.463637],[149.837657,-68.431248],[149.812999,-68.417901],[149.787283,-68.412205],[149.758149,-68.409275],[149.730642,-68.401544],[149.705414,-68.38836],[149.683604,-68.369317],[149.735688,-68.352472],[149.778331,-68.364516],[149.864757,-68.412774],[149.913341,-68.423435],[150.273936,-68.427667],[150.351817,-68.439711],[150.37794,-68.439874],[150.651378,-68.410821],[150.852875,-68.350763],[150.906505,-68.342706],[150.956554,-68.34295],[151.012869,-68.350681],[151.062836,-68.370375],[151.094249,-68.406996],[151.114106,-68.45615],[151.109548,-68.473565],[151.065766,-68.514825],[151.050629,-68.537774],[151.051931,-68.559015],[151.080089,-68.573989],[151.001638,-68.689548],[150.970714,-68.717218],[150.991954,-68.727634],[151.002452,-68.744073],[151.010509,-68.761977],[151.024913,-68.776951],[151.105154,-68.826837],[151.146983,-68.866143],[151.163585,-68.877618],[151.172048,-68.87005],[151.239757,-68.831638],[151.284679,-68.828709],[151.322765,-68.841729],[151.398936,-68.885675],[151.419607,-68.893976],[151.438813,-68.898533],[151.500336,-68.902032],[151.566905,-68.916762],[151.576834,-68.843357],[151.573985,-68.808038],[151.552745,-68.783461],[151.558604,-68.781996],[151.569672,-68.776951],[151.575531,-68.775323],[151.552094,-68.727634],[151.553233,-68.707208],[151.573253,-68.69256],[151.587901,-68.691339],[151.614513,-68.698419],[151.923839,-68.666762],[151.93393,-68.668715],[151.952647,-68.68141],[151.963145,-68.683201],[151.975841,-68.682061],[151.985118,-68.684015],[152.005219,-68.694268],[152.031505,-68.701918],[152.091075,-68.710545],[152.156505,-68.736423],[152.214854,-68.73504],[152.403087,-68.698663],[152.430675,-68.70086],[152.440603,-68.705255],[152.457286,-68.719659],[152.467052,-68.724054],[152.482921,-68.724216],[152.511485,-68.715997],[152.526378,-68.714939],[152.554698,-68.722426],[152.595388,-68.751397],[152.621349,-68.76572],[152.648774,-68.770196],[152.735199,-68.756606],[152.761241,-68.759454],[152.863536,-68.789972],[152.885265,-68.80169],[152.930186,-68.833185],[152.983409,-68.861586],[153.037283,-68.875909],[153.093028,-68.879164],[153.177501,-68.873305],[153.22755,-68.878839],[153.250662,-68.878188],[153.258556,-68.874607],[153.263927,-68.868259],[153.270274,-68.8624],[153.281423,-68.859633],[153.307791,-68.861261],[153.320323,-68.859308],[153.327159,-68.852227],[153.340099,-68.791192],[153.340099,-68.786554],[153.343598,-68.783868],[153.357432,-68.776788],[153.381847,-68.768813],[153.406749,-68.769138],[153.500255,-68.790785],[153.54835,-68.795994],[153.596446,-68.793634],[153.692719,-68.766209],[153.741466,-68.760837],[153.844981,-68.760431],[153.830251,-68.732517],[153.795584,-68.640802],[153.778168,-68.615981],[153.70045,-68.545668],[153.741384,-68.533136],[153.78891,-68.529392],[153.833507,-68.520685],[153.865245,-68.493748],[153.821462,-68.475518],[153.729259,-68.448663],[153.697765,-68.42018],[153.681977,-68.376072],[153.685802,-68.33408],[153.708263,-68.300063],[153.749034,-68.280369],[153.793142,-68.274021],[153.835948,-68.273614],[153.878429,-68.278985],[153.921886,-68.289239],[153.992931,-68.315606],[154.058604,-68.322035],[154.0796,-68.328709],[154.116222,-68.348728],[154.134776,-68.355564],[154.171641,-68.358087],[154.174653,-68.363865],[154.175141,-68.371026],[154.183116,-68.37656],[154.361013,-68.422459],[154.432465,-68.456638],[154.476817,-68.469985],[154.522472,-68.478611],[154.560313,-68.47975],[154.613129,-68.474298],[154.62143,-68.477227],[154.628184,-68.485528],[154.634288,-68.495212],[154.640961,-68.502374],[154.658214,-68.511814],[154.699229,-68.525323],[154.718516,-68.528253],[154.711274,-68.557794],[154.710134,-68.573175],[154.715099,-68.582615],[154.745128,-68.598321],[154.758067,-68.608494],[154.769216,-68.62184],[154.714203,-68.642511],[154.697113,-68.646254],[154.676443,-68.643976],[154.635509,-68.630141],[154.450369,-68.625746],[154.464041,-68.652602],[154.496755,-68.676365],[154.568044,-68.706476],[154.587576,-68.726332],[154.572032,-68.754327],[154.518321,-68.803969],[154.569347,-68.805597],[154.61199,-68.788995],[154.692638,-68.730157],[154.742524,-68.709731],[154.794688,-68.71087],[154.844737,-68.727716],[154.951182,-68.802911],[154.960216,-68.817153],[154.961681,-68.843927],[154.969737,-68.86712],[154.985525,-68.885919],[155.011078,-68.898858],[155.03712,-68.901788],[155.060883,-68.895685],[155.1067,-68.87477],[155.132823,-68.870212],[155.308604,-68.893324],[155.33725,-68.904718],[155.349457,-68.91253],[155.360118,-68.921482],[155.368988,-68.931817],[155.376801,-68.944268],[155.380544,-68.960545],[155.378266,-68.993585],[155.386567,-69.010349],[155.312266,-69.024998],[155.288829,-69.035903],[155.3921,-69.040704],[155.410818,-69.043634],[155.431326,-69.064386],[155.455903,-69.08115],[155.510509,-69.106541],[155.637543,-69.13421],[155.662608,-69.132257],[155.757091,-69.10117],[155.745616,-69.084568],[155.731293,-69.082127],[155.714122,-69.085138],[155.694509,-69.085219],[155.681488,-69.079278],[155.642345,-69.048435],[155.571462,-69.029555],[155.541515,-69.013442],[155.536794,-68.983575],[155.55893,-68.956801],[155.593435,-68.946954],[155.739594,-68.943943],[155.775401,-68.946873],[155.812836,-68.956231],[155.818614,-68.960382],[155.827891,-68.972345],[155.834727,-68.974867],[155.864431,-68.974216],[155.873383,-68.975763],[155.888031,-68.982599],[155.956309,-69.02809],[155.96697,-69.039483],[155.970876,-69.054132],[155.967784,-69.076593],[155.971853,-69.088149],[155.98463,-69.100763],[156.000987,-69.111423],[156.014415,-69.116632],[156.031586,-69.116795],[156.081716,-69.101251],[156.102061,-69.09881],[156.117035,-69.102716],[156.148936,-69.116469],[156.226899,-69.135431],[156.262462,-69.152927],[156.264903,-69.176853],[156.304373,-69.192478],[156.350108,-69.201918],[156.484141,-69.206638],[156.564301,-69.197035],[156.654552,-69.170668],[156.675059,-69.170017],[156.722423,-69.173517],[156.767833,-69.171075],[156.788748,-69.172784],[156.79835,-69.176935],[156.815196,-69.189874],[156.826671,-69.193536],[156.859874,-69.194268],[156.892833,-69.190525],[157.023204,-69.144789],[157.044444,-69.144789],[157.139822,-69.16131],[157.157725,-69.170587],[157.209483,-69.220473],[157.262869,-69.255792],[157.343598,-69.323175],[157.373546,-69.354669],[157.388845,-69.387953],[157.394705,-69.411228],[157.406016,-69.430597],[157.422537,-69.437188],[157.461762,-69.40838],[157.479015,-69.411065],[157.496918,-69.421482],[157.51824,-69.430271],[157.531016,-69.412205],[157.56837,-69.398207],[157.646169,-69.38242],[157.587901,-69.370864],[157.540375,-69.367608],[157.519054,-69.362481],[157.504731,-69.349542],[157.49879,-69.324151],[157.494477,-69.279474],[157.498709,-69.261326],[157.514415,-69.244724],[157.533458,-69.232029],[157.567638,-69.214451],[157.61085,-69.198663],[157.625499,-69.195408],[157.708995,-69.194024],[157.727061,-69.1985],[157.744965,-69.214451],[157.761892,-69.224298],[157.785899,-69.226983],[157.810802,-69.22324],[157.830577,-69.214044],[157.849864,-69.194594],[157.859223,-69.180434],[157.873057,-69.172052],[157.905284,-69.169529],[157.992198,-69.172133],[158.011729,-69.177423],[158.080821,-69.209893],[158.126801,-69.216892],[158.221934,-69.217055],[158.268321,-69.22503],[158.398204,-69.283298],[158.401703,-69.290704],[158.403819,-69.299086],[158.411388,-69.30877],[158.446544,-69.326755],[158.497244,-69.341974],[158.548676,-69.350681],[158.587169,-69.34881],[158.581798,-69.346449],[158.565929,-69.337498],[158.583751,-69.327081],[158.602061,-69.32586],[158.621104,-69.327081],[158.666677,-69.317641],[158.686778,-69.318617],[158.731456,-69.325453],[158.794444,-69.314874],[158.817149,-69.316339],[158.838634,-69.323175],[158.859141,-69.332615],[158.941173,-69.381768],[158.959972,-69.398126],[158.982921,-69.434991],[159.010509,-69.458185],[159.040701,-69.490655],[159.057872,-69.497654],[159.076915,-69.502048],[159.100108,-69.512872],[159.11964,-69.51629],[159.131521,-69.501642],[159.149425,-69.461358],[159.187999,-69.435317],[159.235362,-69.427911],[159.284679,-69.433038],[159.512218,-69.499119],[159.554454,-69.501723],[159.639334,-69.496759],[159.753591,-69.501886],[159.773285,-69.506524],[159.823009,-69.52752],[159.837657,-69.537205],[159.880707,-69.574477],[159.975108,-69.622654],[159.996104,-69.629164],[160.039236,-69.636163],[160.058767,-69.64365],[160.07545,-69.657973],[160.087657,-69.673517],[160.102306,-69.684991],[160.125824,-69.687921],[160.143809,-69.693129],[160.202322,-69.736912],[160.29127,-69.770278],[160.334483,-69.796075],[160.341075,-69.828383],[160.324229,-69.84881],[160.303071,-69.861586],[160.278331,-69.869317],[160.250499,-69.874119],[160.172862,-69.875177],[160.121349,-69.885919],[160.093028,-69.887628],[159.984711,-69.872247],[159.881114,-69.881524],[159.805512,-69.872735],[159.78004,-69.874607],[159.761241,-69.885186],[159.760997,-69.908949],[159.770356,-69.917657],[159.785004,-69.92018],[159.800141,-69.920994],[159.811046,-69.923598],[159.821625,-69.934015],[159.837657,-69.954278],[159.85963,-69.968845],[159.872813,-69.985772],[159.878266,-69.990411],[159.891612,-69.992364],[159.939464,-69.988539],[160.014822,-69.996026],[160.040701,-69.991795],[160.117198,-69.969171],[160.142833,-69.968845],[160.216807,-69.987726],[160.636485,-70.048761],[160.642426,-70.054295],[160.644867,-70.06406],[160.649425,-70.074314],[160.661388,-70.081638],[160.595958,-70.104669],[160.723318,-70.095798],[160.759776,-70.101983],[160.79363,-70.118259],[160.827159,-70.139744],[160.858653,-70.164972],[160.903331,-70.209568],[160.919281,-70.219903],[160.98585,-70.241306],[160.996267,-70.249607],[161.004161,-70.261407],[161.019705,-70.279474],[161.055349,-70.302179],[161.090505,-70.319024],[161.107595,-70.341404],[161.089366,-70.380304],[161.186778,-70.412042],[161.20281,-70.422784],[161.249034,-70.462172],[161.258311,-70.477634],[161.248057,-70.495701],[161.225841,-70.509454],[161.201671,-70.520766],[161.185395,-70.531996],[161.175059,-70.556329],[161.17921,-70.575291],[161.193858,-70.581476],[161.214203,-70.567966],[161.230317,-70.548517],[161.246837,-70.532892],[161.263845,-70.528253],[161.281749,-70.541762],[161.290701,-70.566664],[161.273936,-70.602227],[161.281505,-70.625665],[161.31422,-70.650079],[161.361095,-70.666599],[161.451671,-70.685968],[161.38087,-70.751642],[161.322276,-70.785252],[161.309825,-70.796075],[161.311046,-70.80755],[161.323497,-70.823419],[161.331716,-70.841974],[161.328624,-70.856703],[161.306814,-70.860447],[161.329438,-70.876072],[161.344412,-70.890232],[161.361176,-70.900974],[161.389496,-70.905694],[161.41627,-70.904474],[161.544932,-70.881117],[161.594005,-70.882013],[161.606781,-70.879327],[161.634125,-70.865004],[161.646332,-70.863458],[161.655528,-70.870782],[161.673025,-70.898614],[161.682465,-70.908949],[161.72755,-70.925551],[161.777192,-70.925877],[161.875336,-70.907647],[161.932953,-70.907322],[161.990082,-70.92254],[162.044607,-70.947442],[162.094086,-70.976821],[162.086762,-70.9874],[162.077973,-70.996759],[162.068044,-71.004978],[162.056977,-71.011489],[162.091075,-71.040785],[162.144542,-71.064142],[162.202159,-71.078302],[162.274587,-71.079034],[162.296886,-71.084568],[162.340831,-71.10947],[162.361583,-71.111423],[162.389985,-71.102797],[162.416677,-71.088067],[162.432465,-71.071059],[162.421397,-71.065525],[162.412608,-71.057061],[162.406098,-71.046563],[162.402354,-71.034356],[162.421886,-71.031508],[162.428477,-71.031671],[162.316661,-70.933689],[162.307628,-70.929864],[162.273611,-70.928969],[162.255707,-70.926365],[162.244802,-70.919529],[162.231944,-70.892755],[162.225922,-70.863539],[162.218598,-70.854669],[162.20338,-70.847833],[162.172862,-70.838962],[162.14503,-70.836114],[162.091075,-70.849379],[162.060395,-70.846612],[162.046641,-70.839451],[162.038097,-70.829522],[162.025564,-70.801365],[162.022309,-70.788344],[162.027192,-70.783787],[162.034841,-70.779962],[162.039399,-70.769708],[162.040701,-70.742608],[162.042817,-70.728936],[162.048025,-70.718683],[162.072032,-70.693292],[162.083018,-70.676935],[162.085623,-70.662286],[162.077403,-70.655206],[162.045584,-70.644464],[162.03533,-70.63836],[162.031016,-70.625665],[162.032888,-70.615167],[162.032481,-70.604669],[162.012218,-70.579197],[162.016124,-70.569106],[162.02475,-70.560805],[162.030284,-70.55283],[162.03004,-70.535252],[162.025076,-70.519138],[162.0171,-70.504083],[162.007335,-70.490167],[161.996104,-70.464288],[161.997895,-70.438409],[162.020274,-70.385186],[162.028982,-70.376235],[162.043468,-70.36891],[162.071951,-70.358331],[162.081798,-70.347345],[162.086436,-70.319594],[162.094412,-70.314142],[162.2046,-70.328058],[162.228282,-70.324151],[162.318858,-70.283949],[162.372813,-70.275811],[162.595225,-70.269138],[162.655772,-70.276462],[162.685069,-70.285252],[162.70753,-70.299737],[162.78004,-70.378351],[162.800792,-70.393813],[162.821462,-70.403985],[162.846934,-70.407159],[162.872081,-70.405532],[162.895518,-70.408868],[162.915538,-70.426528],[162.901378,-70.432061],[162.886485,-70.434259],[162.871593,-70.433526],[162.8567,-70.429946],[162.878184,-70.471856],[162.920177,-70.502537],[162.970876,-70.521905],[163.017914,-70.529962],[163.07252,-70.52988],[163.100271,-70.532973],[163.124522,-70.542739],[163.133474,-70.550551],[163.158539,-70.58115],[163.170258,-70.587579],[163.361583,-70.624282],[163.42213,-70.653578],[163.450043,-70.657485],[163.47877,-70.657647],[163.527192,-70.652602],[163.633311,-70.665134],[163.657074,-70.663263],[163.679698,-70.656915],[163.73113,-70.63242],[163.786957,-70.631524],[163.846446,-70.622735],[163.866547,-70.62656],[163.873709,-70.641778],[163.864268,-70.671075],[163.861827,-70.690037],[163.865245,-70.752699],[163.870616,-70.769464],[163.89503,-70.781996],[163.9192,-70.783868],[163.944998,-70.781834],[163.974376,-70.782892],[163.99936,-70.789646],[164.012055,-70.791111],[164.019216,-70.786554],[164.023611,-70.774998],[164.029796,-70.765558],[164.038341,-70.758233],[164.049815,-70.752862],[164.058116,-70.745701],[164.059744,-70.723891],[164.069102,-70.713067],[164.091482,-70.696873],[164.100352,-70.687677],[164.109548,-70.675958],[164.126313,-70.661554],[164.15089,-70.649998],[164.177419,-70.642022],[164.19988,-70.639337],[164.043142,-70.551853],[164.027599,-70.532322],[164.095714,-70.506768],[164.167328,-70.493829],[164.240408,-70.491143],[164.493907,-70.52044],[164.561778,-70.540134],[164.596202,-70.546075],[164.70045,-70.546563],[164.75766,-70.537856],[164.770518,-70.540623],[164.781423,-70.547296],[164.800792,-70.555759],[164.838145,-70.566827],[164.876475,-70.573826],[165.11199,-70.563572],[165.141124,-70.587009],[165.182302,-70.585382],[165.268891,-70.565362],[165.312266,-70.560317],[165.342133,-70.564711],[165.363943,-70.565118],[165.371104,-70.569594],[165.376964,-70.57464],[165.385265,-70.577081],[165.396658,-70.575453],[165.416677,-70.56756],[165.427013,-70.565037],[165.436778,-70.566176],[165.460785,-70.572931],[165.468516,-70.572686],[165.435395,-70.593032],[165.459972,-70.601739],[165.52589,-70.597426],[165.556163,-70.598728],[165.552013,-70.602309],[165.544281,-70.611098],[165.54005,-70.614841],[165.925792,-70.684259],[165.925059,-70.663751],[165.937511,-70.65309],[165.956879,-70.649184],[166.019379,-70.648858],[166.037771,-70.644464],[166.096934,-70.617283],[166.369477,-70.583917],[166.409841,-70.588962],[166.418142,-70.594171],[166.431814,-70.608819],[166.441417,-70.611261],[166.724457,-70.618259],[166.767751,-70.630466],[166.809418,-70.651056],[166.829926,-70.664809],[166.837413,-70.67669],[166.825043,-70.69256],[166.801768,-70.700942],[166.753184,-70.706231],[166.74643,-70.704685],[166.73585,-70.696059],[166.729747,-70.693617],[166.6963,-70.69964],[166.686209,-70.696873],[166.663259,-70.687595],[166.643321,-70.688246],[166.597504,-70.700779],[166.503591,-70.702244],[166.45753,-70.709161],[166.426443,-70.733087],[166.447113,-70.744236],[166.458507,-70.756768],[166.470714,-70.76629],[166.494151,-70.768976],[166.558604,-70.764825],[166.572032,-70.766534],[166.593923,-70.77809],[166.606456,-70.782973],[166.627615,-70.785333],[166.722016,-70.777032],[166.774587,-70.764825],[166.798676,-70.766534],[166.836925,-70.783624],[166.857188,-70.788832],[166.877452,-70.784845],[166.901622,-70.775486],[166.927908,-70.77044],[166.954438,-70.769708],[167.002615,-70.774184],[167.071625,-70.764418],[167.416189,-70.759047],[167.460216,-70.763442],[167.550466,-70.784438],[167.700857,-70.791274],[167.738943,-70.810317],[167.742361,-70.820245],[167.743826,-70.833266],[167.746349,-70.844415],[167.753754,-70.847833],[167.781016,-70.844415],[167.793468,-70.84531],[167.807872,-70.848565],[167.833018,-70.861423],[167.84547,-70.878676],[167.854666,-70.899835],[167.870128,-70.923923],[167.828787,-70.942641],[167.477712,-70.949395],[167.418793,-70.96266],[167.212901,-70.97975],[167.165212,-70.992852],[167.139985,-70.996352],[167.183279,-71.030938],[167.255544,-71.038344],[167.513031,-71.004164],[167.87794,-71.014337],[167.903656,-71.024591],[167.948985,-71.064223],[167.976817,-71.077407],[168.101329,-71.108494],[168.083344,-71.125909],[168.065196,-71.137628],[168.044281,-71.143731],[168.018565,-71.144627],[167.98585,-71.136814],[167.974946,-71.135512],[167.962657,-71.137465],[167.939464,-71.145603],[167.927908,-71.147556],[167.908865,-71.142999],[167.887869,-71.135024],[167.868337,-71.132257],[167.853526,-71.14365],[167.836436,-71.161716],[167.812999,-71.171563],[167.76002,-71.18377],[167.743337,-71.194513],[167.736176,-71.209649],[167.741059,-71.222833],[167.759939,-71.22796],[168.112315,-71.195489],[168.163341,-71.201593],[168.189301,-71.199802],[168.262869,-71.18434],[168.358572,-71.197198],[168.381114,-71.194594],[168.448009,-71.176528],[168.483897,-71.162205],[168.500255,-71.161065],[168.56186,-71.170668],[168.587169,-71.182794],[168.59547,-71.185235],[168.64503,-71.181248],[168.66977,-71.182794],[168.692149,-71.190525],[168.732677,-71.222914],[168.754242,-71.236912],[168.776215,-71.239923],[168.761485,-71.275567],[169.016612,-71.324884],[169.038748,-71.334568],[169.06072,-71.347101],[169.071625,-71.351658],[169.084321,-71.354669],[169.09669,-71.352472],[169.120616,-71.337498],[169.134532,-71.335382],[169.140961,-71.340265],[169.146739,-71.349705],[169.153819,-71.359308],[169.164806,-71.364679],[169.251475,-71.374444],[169.269216,-71.379978],[169.326182,-71.423598],[169.345063,-71.433526],[169.365733,-71.438084],[169.391775,-71.438084],[169.41863,-71.44256],[169.463715,-71.463556],[169.495291,-71.463474],[169.486013,-71.468683],[169.477794,-71.47503],[169.470551,-71.482517],[169.46461,-71.491143],[169.480479,-71.494724],[169.504242,-71.510349],[169.515961,-71.515069],[169.552013,-71.519708],[169.587901,-71.520115],[169.720551,-71.506117],[169.760265,-71.507908],[169.791515,-71.519464],[169.869477,-71.559747],[169.879242,-71.568292],[169.889496,-71.575128],[169.904796,-71.577569],[169.977387,-71.562921],[169.974946,-71.58115],[169.986176,-71.59531],[170.022634,-71.615492],[170.041026,-71.629002],[170.058279,-71.644301],[170.075857,-71.65602],[170.095388,-71.658787],[170.120128,-71.657647],[170.182791,-71.674412],[170.205089,-71.674005],[170.22877,-71.668878],[170.251475,-71.66074],[170.271739,-71.650811],[170.253591,-71.641697],[170.249034,-71.62656],[170.257009,-71.61297],[170.276541,-71.608982],[170.263194,-71.593357],[170.310802,-71.565525],[170.361827,-71.544041],[170.313813,-71.441664],[170.299083,-71.424005],[170.244884,-71.382745],[170.230642,-71.367364],[170.221528,-71.351658],[170.208669,-71.314223],[170.216075,-71.302911],[170.238617,-71.29461],[170.264659,-71.29225],[170.2824,-71.298761],[170.321788,-71.347426],[170.331065,-71.354181],[170.350434,-71.355727],[170.360118,-71.359633],[170.375499,-71.375095],[170.40268,-71.408868],[170.458507,-71.450372],[170.49171,-71.481622],[170.536388,-71.538507],[170.552257,-71.550877],[170.58961,-71.573175],[170.691173,-71.656996],[170.671235,-71.675388],[170.664236,-71.680597],[170.813731,-71.699802],[170.807302,-71.701918],[170.789236,-71.712091],[170.808767,-71.733657],[170.830903,-71.74684],[170.85613,-71.75449],[170.884776,-71.758966],[170.865408,-71.768243],[170.864513,-71.782485],[170.874522,-71.797784],[170.887543,-71.810317],[170.903575,-71.820001],[170.925466,-71.828871],[170.948009,-71.834649],[170.966075,-71.834649],[170.945811,-71.860772],[170.917003,-71.878351],[170.853282,-71.90545],[170.773611,-71.95086],[170.744395,-71.958591],[170.672537,-71.96087],[170.638927,-71.968194],[170.62086,-71.98797],[170.61378,-71.997979],[170.600597,-72.00449],[170.585297,-72.00742],[170.57252,-72.00628],[170.557384,-71.998305],[170.548513,-71.986098],[170.537608,-71.954197],[170.549653,-71.955173],[170.561209,-71.952732],[170.570974,-71.947035],[170.579112,-71.938084],[170.498057,-71.895929],[170.444835,-71.882501],[170.440115,-71.87363],[170.438975,-71.864516],[170.430512,-71.857843],[170.391775,-71.843357],[170.375499,-71.832208],[170.362478,-71.816176],[170.333995,-71.800877],[170.302419,-71.821059],[170.255707,-71.872166],[170.138438,-71.931899],[170.229666,-71.939386],[170.256358,-71.950779],[170.238292,-71.977146],[170.218516,-72.000095],[170.195811,-72.020196],[170.168712,-72.03753],[170.138438,-72.043715],[170.0796,-72.024184],[170.045746,-72.019952],[170.052013,-72.031671],[170.053233,-72.043064],[170.049571,-72.053399],[170.04005,-72.06227],[170.089203,-72.084405],[170.077159,-72.088962],[170.070974,-72.094985],[170.069347,-72.103285],[170.071137,-72.114353],[170.067638,-72.12363],[170.029307,-72.143813],[170.020844,-72.155206],[170.019705,-72.16367],[170.016368,-72.170831],[170.001801,-72.178806],[169.989513,-72.180841],[169.94988,-72.178318],[169.925548,-72.184666],[169.878917,-72.203302],[169.854991,-72.207452],[169.79713,-72.209568],[169.772634,-72.220147],[169.765391,-72.244806],[169.782725,-72.243341],[169.794932,-72.248142],[169.806163,-72.25506],[169.820323,-72.260186],[169.891775,-72.265313],[169.906423,-72.270929],[169.919932,-72.278009],[169.934093,-72.282485],[169.95045,-72.28045],[169.96461,-72.280369],[169.991547,-72.291192],[170.009939,-72.287774],[169.99171,-72.306899],[169.86671,-72.397068],[169.857677,-72.413263],[169.885265,-72.429946],[169.942882,-72.426202],[170.046397,-72.401951],[170.063487,-72.392999],[170.099376,-72.363946],[170.118175,-72.353285],[170.244477,-72.320489],[170.266287,-72.318617],[170.2824,-72.326349],[170.292166,-72.365004],[170.302094,-72.368341],[170.312999,-72.369399],[170.319184,-72.378106],[170.325938,-72.406427],[170.331554,-72.418064],[170.340505,-72.431248],[170.33961,-72.438897],[170.330903,-72.447931],[170.311371,-72.462498],[170.302257,-72.473565],[170.298513,-72.485528],[170.295258,-72.51393],[170.281993,-72.563897],[170.270518,-72.588962],[170.255382,-72.60296],[170.203949,-72.615411],[170.151703,-72.617771],[170.09962,-72.611993],[170.048025,-72.600193],[169.972341,-72.573175],[169.922618,-72.567804],[169.879649,-72.554295],[169.857432,-72.550877],[169.727306,-72.552016],[169.700206,-72.548272],[169.687266,-72.544529],[169.675059,-72.538507],[169.635509,-72.512791],[169.614513,-72.503595],[169.589122,-72.500177],[169.581798,-72.502862],[169.567149,-72.514255],[169.559906,-72.516778],[169.548595,-72.515069],[169.432465,-72.472833],[169.3921,-72.466892],[169.310557,-72.489028],[169.126475,-72.48504],[168.706716,-72.359063],[168.677908,-72.363051],[168.641612,-72.38242],[168.594249,-72.386814],[168.407888,-72.368829],[168.316173,-72.37363],[168.591767,-72.474786],[168.867361,-72.575942],[168.918793,-72.583266],[169.301768,-72.577325],[169.348643,-72.595473],[169.386404,-72.617852],[169.396251,-72.626723],[169.402354,-72.640069],[169.400401,-72.648126],[169.40211,-72.65488],[169.419444,-72.664158],[169.470225,-72.682306],[169.497244,-72.687188],[169.521739,-72.684828],[169.572765,-72.671645],[169.625662,-72.664646],[169.678884,-72.665623],[169.884044,-72.711684],[169.932465,-72.735935],[169.848806,-72.800226],[169.756847,-72.852716],[169.720876,-72.867446],[169.714041,-72.8742],[169.702159,-72.901544],[169.694347,-72.912286],[169.682302,-72.921157],[169.609874,-72.955499],[169.584483,-72.962172],[169.608165,-72.993341],[169.600352,-72.997247],[169.585134,-73.00742],[169.577322,-73.011163],[169.631196,-73.043715],[169.607188,-73.064548],[169.582286,-73.080499],[169.555024,-73.091241],[169.401215,-73.110284],[169.389415,-73.110284],[169.378673,-73.105727],[169.369314,-73.098403],[169.360525,-73.090265],[169.34669,-73.079848],[169.333751,-73.07643],[169.266449,-73.079197],[169.172211,-73.103123],[169.2199,-73.132501],[169.249522,-73.190688],[169.25115,-73.248468],[169.21461,-73.276462],[169.07309,-73.266534],[169.007823,-73.271091],[168.979747,-73.26393],[168.982758,-73.238865],[168.934581,-73.240981],[168.911632,-73.236505],[168.893891,-73.223403],[168.898285,-73.22031],[168.906586,-73.212498],[168.911306,-73.209405],[168.887706,-73.193943],[168.87908,-73.178399],[168.886892,-73.163181],[168.913259,-73.148207],[168.945079,-73.135512],[168.948009,-73.131606],[168.951834,-73.119236],[168.954845,-73.115411],[168.965831,-73.112726],[169.005707,-73.110447],[168.975108,-73.091485],[168.941173,-73.087986],[168.851085,-73.102716],[168.814708,-73.118748],[168.794607,-73.123305],[168.754649,-73.123956],[168.714529,-73.12005],[168.72462,-73.111098],[168.73585,-73.104181],[168.748546,-73.099542],[168.761729,-73.097426],[168.752615,-73.076918],[168.728201,-73.07171],[168.672699,-73.074477],[168.638927,-73.067804],[168.614268,-73.055922],[168.566254,-73.020685],[168.540538,-73.008559],[168.394054,-72.971938],[168.367442,-72.969008],[168.334972,-72.97031],[168.297618,-72.99033],[168.32488,-73.026544],[168.374278,-73.067804],[168.402517,-73.10296],[168.39796,-73.129002],[168.381114,-73.147882],[168.357921,-73.159926],[168.334158,-73.16546],[168.30421,-73.163995],[168.256114,-73.144627],[168.226899,-73.137791],[168.212087,-73.139093],[168.189301,-73.149998],[168.175955,-73.153578],[168.162934,-73.153009],[168.069835,-73.122979],[168.041515,-73.117446],[168.014171,-73.121189],[167.979991,-73.13242],[167.955333,-73.135512],[167.896495,-73.128351],[167.865896,-73.129327],[167.811371,-73.147556],[167.780772,-73.152927],[167.721934,-73.151788],[167.693696,-73.144789],[167.644786,-73.114679],[167.61671,-73.117934],[167.557953,-73.140395],[167.50408,-73.148614],[167.171397,-73.153009],[167.058442,-73.129083],[167.051036,-73.123305],[167.028331,-73.089776],[166.991222,-73.052504],[166.971202,-73.036554],[166.9463,-73.023858],[166.83546,-72.997328],[166.616466,-72.972914],[166.563975,-72.956476],[166.520518,-72.929783],[166.569102,-72.896661],[166.582856,-72.882013],[166.540212,-72.882013],[166.454845,-72.899998],[166.365408,-72.900486],[166.340831,-72.903904],[166.330821,-72.91367],[166.338878,-72.92962],[166.356212,-72.947686],[166.394216,-72.977634],[166.414073,-72.986749],[166.458507,-72.99505],[166.549164,-73.028497],[166.766775,-73.064874],[166.757823,-73.087009],[166.746349,-73.105401],[166.729747,-73.117771],[166.705577,-73.120864],[166.738455,-73.161879],[166.776378,-73.189142],[166.820649,-73.207452],[166.872081,-73.221368],[166.739513,-73.329197],[166.777599,-73.36533],[166.82252,-73.354262],[166.913097,-73.2999],[166.975108,-73.274998],[167.095225,-73.25213],[167.311534,-73.273614],[167.30714,-73.280694],[167.300304,-73.296563],[167.295909,-73.303643],[167.331391,-73.313653],[167.445974,-73.303888],[167.929373,-73.358657],[167.756847,-73.368422],[167.622895,-73.359145],[167.641124,-73.382094],[167.678559,-73.402602],[167.753184,-73.432061],[167.716482,-73.446873],[167.678966,-73.447198],[167.52003,-73.419692],[167.482677,-73.401462],[167.464692,-73.398045],[167.442393,-73.403985],[167.42628,-73.405369],[167.382823,-73.395196],[167.363129,-73.394301],[167.249685,-73.40545],[167.230479,-73.410903],[167.221934,-73.418145],[167.225841,-73.43434],[167.238536,-73.443536],[167.275401,-73.452732],[167.223643,-73.476983],[167.250011,-73.481622],[167.305349,-73.476821],[167.3296,-73.481866],[167.355235,-73.491632],[167.434744,-73.503188],[167.381847,-73.523045],[167.326996,-73.532485],[167.272797,-73.528009],[167.194591,-73.491957],[167.021739,-73.462335],[166.989268,-73.465102],[167.056651,-73.499119],[167.076915,-73.512628],[167.053071,-73.547052],[167.03297,-73.566095],[167.006684,-73.571547],[166.925304,-73.560154],[166.885427,-73.561293],[166.87672,-73.564223],[166.870128,-73.570082],[166.858409,-73.585138],[166.849132,-73.590509],[166.83839,-73.588637],[166.81544,-73.577732],[166.821625,-73.5735],[166.833181,-73.562677],[166.83961,-73.558364],[166.827322,-73.548272],[166.812999,-73.542087],[166.797699,-73.539321],[166.781749,-73.539483],[166.832774,-73.522068],[166.792166,-73.497328],[166.747325,-73.486423],[166.701915,-73.492364],[166.660167,-73.51865],[166.644542,-73.538995],[166.630544,-73.5617],[166.614268,-73.580824],[166.590343,-73.590427],[166.55893,-73.590753],[166.472179,-73.581231],[166.462169,-73.583917],[166.45753,-73.589125],[166.451427,-73.592706],[166.437673,-73.590427],[166.425059,-73.585382],[166.391368,-73.565362],[166.194835,-73.489841],[166.139822,-73.482029],[166.093435,-73.493422],[166.11964,-73.516209],[166.218516,-73.566176],[166.139415,-73.573826],[165.873709,-73.565851],[165.817068,-73.57822],[165.82545,-73.598321],[165.844737,-73.607192],[165.996349,-73.622735],[166.200857,-73.671808],[166.191173,-73.683364],[166.17921,-73.691583],[166.165212,-73.697198],[166.150645,-73.70086],[166.22755,-73.70322],[166.266449,-73.708917],[166.2942,-73.725763],[166.271332,-73.732843],[166.235362,-73.75921],[166.215343,-73.764907],[166.203868,-73.762628],[166.192149,-73.758966],[166.180919,-73.75742],[166.170177,-73.76214],[166.166515,-73.769301],[166.163585,-73.79046],[166.160492,-73.799005],[166.152192,-73.809177],[166.144379,-73.813409],[166.029959,-73.809177],[166.004893,-73.813897],[165.96461,-73.829767],[165.937755,-73.833429],[165.670258,-73.79697],[165.583018,-73.805108],[165.631602,-73.83408],[165.683116,-73.853448],[165.793142,-73.872491],[165.775076,-73.879164],[165.718435,-73.886977],[165.700043,-73.892022],[165.669281,-73.908868],[165.651866,-73.91367],[165.571137,-73.913263],[165.490977,-73.901544],[165.26059,-73.893324],[165.198985,-73.859063],[165.192149,-73.830173],[165.245372,-73.777927],[165.256033,-73.744073],[165.25172,-73.738214],[165.235199,-73.72796],[165.230642,-73.722263],[165.232921,-73.716404],[165.245372,-73.70379],[165.244965,-73.697442],[165.215994,-73.661065],[165.215099,-73.645685],[165.228282,-73.624607],[165.236664,-73.606622],[165.231212,-73.593032],[165.21697,-73.582778],[165.198416,-73.574802],[165.180186,-73.563735],[165.167491,-73.549249],[165.14796,-73.512302],[165.133556,-73.475681],[165.125011,-73.462172],[165.052582,-73.416681],[165.031993,-73.410903],[165.177501,-73.351007],[165.221853,-73.342462],[165.358165,-73.34002],[165.308849,-73.327813],[165.252208,-73.321384],[165.19516,-73.322198],[165.145518,-73.332615],[165.033051,-73.373793],[164.977224,-73.386326],[164.91391,-73.387872],[164.558849,-73.324395],[164.526134,-73.330173],[164.443207,-73.368748],[164.489513,-73.397882],[164.538748,-73.417169],[164.591156,-73.425714],[164.702403,-73.419041],[164.766612,-73.423761],[164.829112,-73.437758],[164.880138,-73.461602],[164.893809,-73.483494],[164.878103,-73.526951],[164.911957,-73.571954],[164.915375,-73.600763],[164.905935,-73.657159],[164.889985,-73.682712],[164.86199,-73.697686],[164.828461,-73.704685],[164.797211,-73.705987],[164.775564,-73.714614],[164.750499,-73.736017],[164.728282,-73.761326],[164.71461,-73.781671],[164.776215,-73.80934],[164.790782,-73.81406],[164.82488,-73.816013],[164.840994,-73.823907],[164.849864,-73.836684],[164.855317,-73.85117],[164.862804,-73.864028],[164.878184,-73.872491],[164.952485,-73.890883],[164.892914,-73.925063],[164.87086,-73.931573],[164.890391,-73.946873],[164.911388,-73.954197],[165.000011,-73.974867],[165.019786,-73.975681],[165.046641,-73.972589],[165.019379,-73.94378],[165.133474,-73.978936],[165.260265,-74.001153],[165.239106,-74.010024],[165.308849,-74.030369],[165.282481,-74.042657],[165.255219,-74.046075],[165.200369,-74.046808],[165.109874,-74.057875],[165.075531,-74.054783],[165.067719,-74.048028],[165.064138,-74.023696],[165.056814,-74.017999],[164.896007,-73.999607],[164.823741,-73.964776],[164.591482,-73.92669],[164.529552,-73.923923],[164.468272,-73.929132],[164.410818,-73.943292],[164.437022,-73.950453],[164.521251,-73.960138],[164.587738,-73.979669],[164.595551,-73.986749],[164.596039,-73.998712],[164.593272,-74.019464],[164.672537,-73.999607],[164.667491,-74.017185],[164.669688,-74.033298],[164.679047,-74.044366],[164.695486,-74.047459],[164.715831,-74.041192],[164.739431,-74.022231],[164.756521,-74.016534],[164.787934,-74.021742],[164.818207,-74.040216],[164.844574,-74.064711],[164.864431,-74.088637],[164.818126,-74.101983],[164.834483,-74.112726],[164.853526,-74.11712],[164.893809,-74.120375],[164.875824,-74.13242],[164.855724,-74.139581],[164.812755,-74.145929],[164.882335,-74.170831],[164.859874,-74.209161],[164.898936,-74.227472],[165.044688,-74.248793],[165.062755,-74.256606],[165.077403,-74.273126],[165.08074,-74.283461],[165.085216,-74.307794],[165.088634,-74.313165],[165.113943,-74.320082],[165.122813,-74.327407],[165.128184,-74.340916],[165.107432,-74.342869],[165.100597,-74.342462],[165.121918,-74.354669],[165.153819,-74.389825],[165.177013,-74.40252],[165.208263,-74.410089],[165.223643,-74.415785],[165.235118,-74.424737],[165.246593,-74.438735],[165.258149,-74.449965],[165.271658,-74.458754],[165.288097,-74.465265],[165.405121,-74.477797],[165.457774,-74.494399],[165.463552,-74.529962],[165.455821,-74.553481],[165.44809,-74.606866],[165.434744,-74.629002],[165.410981,-74.640313],[165.387218,-74.633966],[165.340587,-74.601658],[165.238536,-74.546645],[165.176931,-74.5263],[165.13087,-74.530043],[165.105805,-74.544854],[165.082693,-74.554295],[165.058279,-74.558282],[165.003103,-74.556736],[164.949229,-74.565606],[164.921723,-74.564548],[164.897472,-74.566827],[164.848399,-74.585219],[164.819184,-74.581476],[164.792247,-74.573175],[164.764903,-74.569594],[164.587413,-74.574884],[164.550548,-74.565606],[164.503917,-74.56878],[164.488536,-74.567315],[164.46461,-74.55934],[164.363129,-74.508233],[164.340831,-74.50213],[164.31837,-74.502618],[164.112966,-74.548517],[163.925059,-74.557712],[163.961681,-74.585138],[163.847341,-74.617608],[163.787283,-74.624444],[163.720225,-74.6124],[163.696462,-74.616469],[163.684744,-74.615655],[163.668468,-74.607029],[163.662852,-74.596612],[163.66212,-74.584242],[163.659434,-74.569757],[163.649913,-74.544529],[163.642833,-74.515802],[163.647146,-74.49033],[163.671886,-74.474379],[163.603852,-74.454034],[163.570649,-74.448175],[163.533376,-74.456476],[163.532725,-74.432061],[163.555349,-74.38421],[163.555512,-74.360447],[163.535411,-74.340753],[163.503673,-74.337009],[163.4699,-74.341974],[163.395274,-74.363051],[163.305837,-74.400567],[163.256602,-74.413018],[163.233165,-74.414158],[163.186371,-74.409275],[163.121349,-74.409356],[163.108409,-74.412693],[163.098643,-74.418878],[163.089692,-74.428318],[163.087576,-74.438084],[163.097504,-74.445082],[163.181977,-74.447035],[163.196788,-74.455743],[163.208344,-74.480645],[163.227224,-74.502618],[163.270763,-74.541762],[163.21518,-74.586602],[163.202159,-74.594415],[163.16684,-74.607354],[163.089122,-74.658298],[163.079275,-74.671075],[163.071056,-74.686293],[163.061046,-74.699884],[163.045258,-74.707778],[163.011892,-74.70143],[162.988536,-74.675551],[162.95338,-74.615411],[162.937755,-74.60475],[162.918956,-74.602146],[162.899181,-74.604262],[162.88087,-74.608657],[162.86378,-74.610284],[162.83074,-74.60475],[162.812999,-74.603774],[162.834239,-74.636163],[162.838715,-74.651056],[162.831065,-74.664809],[162.82252,-74.669854],[162.803233,-74.675958],[162.794607,-74.680841],[162.787771,-74.688572],[162.776622,-74.705987],[162.770518,-74.712823],[162.730805,-74.731378],[162.591482,-74.750177],[162.594412,-74.766046],[162.601329,-74.778985],[162.612315,-74.787774],[162.628184,-74.791111],[162.607188,-74.826349],[162.583344,-74.850193],[162.552582,-74.864435],[162.511485,-74.870782],[162.474783,-74.864679],[162.404552,-74.837823],[162.36378,-74.841567],[162.384776,-74.855076],[162.455089,-74.88242],[162.451996,-74.921157],[162.489594,-74.943617],[162.543142,-74.953709],[162.689464,-74.959405],[162.741954,-74.970473],[162.786143,-74.990004],[162.757498,-75.01629],[162.71046,-75.028253],[162.617849,-75.030938],[162.631847,-75.042413],[162.648611,-75.047296],[162.68572,-75.050714],[162.658051,-75.080987],[162.62379,-75.093032],[162.546235,-75.10117],[162.557872,-75.12184],[162.579112,-75.137465],[162.604177,-75.147882],[162.627778,-75.153497],[162.65561,-75.167413],[162.646007,-75.188897],[162.619151,-75.210382],[162.595225,-75.223728],[162.543468,-75.240167],[162.262543,-75.271173],[162.029552,-75.259861],[161.920258,-75.236261],[161.89796,-75.227146],[161.854015,-75.203058],[161.831391,-75.194431],[161.804454,-75.189874],[161.776378,-75.188897],[161.66684,-75.199965],[161.614268,-75.214288],[161.590587,-75.228936],[161.554698,-75.26393],[161.528656,-75.276137],[161.474864,-75.285577],[160.975922,-75.287205],[160.91033,-75.301446],[160.878429,-75.303969],[160.848481,-75.310235],[160.799571,-75.340427],[160.707774,-75.365492],[160.582367,-75.378351],[160.638682,-75.397638],[160.925304,-75.427992],[160.976736,-75.422052],[161.087087,-75.384373],[161.455089,-75.385512],[161.82309,-75.386651],[162.191091,-75.387791],[162.208751,-75.397719],[162.262218,-75.441664],[162.273448,-75.45672],[162.283539,-75.478204],[162.301117,-75.50506],[162.306651,-75.529392],[162.280772,-75.542657],[162.144542,-75.536554],[162.073578,-75.542739],[162.029552,-75.574151],[162.057791,-75.585219],[162.084483,-75.592055],[162.111827,-75.594985],[162.216482,-75.591974],[162.225841,-75.598403],[162.223155,-75.613051],[162.213145,-75.628676],[162.200531,-75.637872],[162.214529,-75.638442],[162.225352,-75.642673],[162.23406,-75.650079],[162.24171,-75.660577],[162.250336,-75.666925],[162.263438,-75.669041],[162.289561,-75.668715],[162.297699,-75.67254],[162.308116,-75.688897],[162.314952,-75.694431],[162.459483,-75.712986],[162.468923,-75.712579],[162.479177,-75.710626],[162.487804,-75.71087],[162.492849,-75.716567],[162.497813,-75.735284],[162.503103,-75.744887],[162.513194,-75.748793],[162.532481,-75.750665],[162.558442,-75.750258],[162.584646,-75.746759],[162.595225,-75.747654],[162.624278,-75.761407],[162.84311,-75.793064],[162.900076,-75.822931],[162.883311,-75.837335],[162.842784,-75.853123],[162.817149,-75.868341],[162.809906,-75.870375],[162.805024,-75.87363],[162.805512,-75.88006],[162.809906,-75.891046],[162.809418,-75.897149],[162.803884,-75.901544],[162.792735,-75.907159],[162.759532,-75.914809],[162.577322,-75.909275],[162.557872,-75.91253],[162.540538,-75.921808],[162.543956,-75.932061],[162.559906,-75.940037],[162.579926,-75.943048],[162.607188,-75.942966],[162.626801,-75.945489],[162.706879,-75.981052],[162.709239,-75.993341],[162.696056,-76.019789],[162.712169,-76.027439],[162.722992,-76.04046],[162.736095,-76.073907],[162.650076,-76.091078],[162.394216,-76.059828],[162.42449,-76.074314],[162.521821,-76.09824],[162.483409,-76.108982],[162.441091,-76.105727],[162.399181,-76.093845],[162.361827,-76.078058],[162.355724,-76.083103],[162.301117,-76.100518],[162.333507,-76.113946],[162.447602,-76.128188],[162.414073,-76.148126],[162.363048,-76.151625],[162.264659,-76.147231],[162.165782,-76.154962],[162.115571,-76.17018],[162.092296,-76.202244],[162.125499,-76.202081],[162.148611,-76.205011],[162.162283,-76.21852],[162.16627,-76.250258],[162.262543,-76.256443],[162.329438,-76.2763],[162.345876,-76.275649],[162.434906,-76.234308],[162.48227,-76.220636],[162.571544,-76.214776],[162.584727,-76.216729],[162.59547,-76.221449],[162.60255,-76.227472],[162.610362,-76.232517],[162.622813,-76.234308],[162.730805,-76.231541],[162.751475,-76.235121],[162.772797,-76.243748],[162.787283,-76.259454],[162.787283,-76.284845],[162.772472,-76.301853],[162.748057,-76.308526],[162.70045,-76.307712],[162.705903,-76.30934],[162.722341,-76.31756],[162.73878,-76.358575],[162.82252,-76.396661],[162.884288,-76.43906],[162.834483,-76.493341],[162.723888,-76.542657],[162.686209,-76.550063],[162.564301,-76.534601],[162.534434,-76.54697],[162.540538,-76.5499],[162.552501,-76.557712],[162.558767,-76.560317],[162.540212,-76.56463],[162.502452,-76.567315],[162.484548,-76.572442],[162.477794,-76.591485],[162.473318,-76.597914],[162.467784,-76.599054],[162.461599,-76.599216],[162.455089,-76.602472],[162.423188,-76.639255],[162.453868,-76.65016],[162.491954,-76.656834],[162.756196,-76.649347],[162.84311,-76.664727],[162.874197,-76.676365],[162.931407,-76.707452],[162.941661,-76.720636],[162.953624,-76.757257],[162.962657,-76.773614],[162.97462,-76.789727],[162.955089,-76.790948],[162.938487,-76.798923],[162.924815,-76.811456],[162.912771,-76.827244],[162.899587,-76.841078],[162.883962,-76.848077],[162.865977,-76.85003],[162.845876,-76.848565],[162.798595,-76.834242],[162.782888,-76.832452],[162.740408,-76.832615],[162.698578,-76.826593],[162.62615,-76.824884],[162.422537,-76.899184],[162.545421,-76.904392],[162.585623,-76.918064],[162.520193,-76.936944],[162.301768,-76.951349],[162.526703,-76.960219],[162.500662,-76.976495],[162.461681,-76.985121],[162.386974,-76.988458],[162.429373,-77.011651],[162.469005,-77.015313],[162.617442,-77.001397],[162.646332,-77.003676],[162.691661,-77.026137],[162.716156,-77.027602],[162.819998,-77.015883],[162.921641,-77.021173],[163.020763,-77.014093],[163.069509,-77.018731],[163.162852,-77.043634],[163.144867,-77.064874],[163.12436,-77.083917],[163.185069,-77.10768],[163.21046,-77.122166],[163.237153,-77.144708],[163.2671,-77.159112],[163.344086,-77.164972],[163.377289,-77.17669],[163.388438,-77.188084],[163.406423,-77.21502],[163.418142,-77.225681],[163.433849,-77.231541],[163.466156,-77.239435],[163.479503,-77.249444],[163.50115,-77.278578],[163.512706,-77.290134],[163.529552,-77.300714],[163.542979,-77.313165],[163.548106,-77.329767],[163.545421,-77.347426],[163.535655,-77.362563],[163.570649,-77.377862],[163.603526,-77.387953],[163.63738,-77.393324],[163.715831,-77.39658],[163.729503,-77.403985],[163.745128,-77.421075],[163.759776,-77.428643],[163.781912,-77.431085],[163.824067,-77.430841],[163.774262,-77.447849],[163.818207,-77.476658],[163.831309,-77.495782],[163.821788,-77.518324],[163.800548,-77.528009],[163.548188,-77.549005],[163.505138,-77.569431],[163.667491,-77.595147],[163.718761,-77.614923],[163.655772,-77.646661],[163.585704,-77.66131],[163.440115,-77.668552],[163.53419,-77.715509],[163.55714,-77.719985],[163.906505,-77.696384],[163.91505,-77.701104],[163.922374,-77.707696],[163.935313,-77.713311],[164.243337,-77.781915],[164.198985,-77.808038],[164.119965,-77.812188],[163.975352,-77.802504],[163.837576,-77.815851],[163.702647,-77.849786],[163.728526,-77.879164],[163.780772,-77.878839],[163.87908,-77.85947],[164.189911,-77.856703],[164.500743,-77.853936],[164.526541,-77.864923],[164.544119,-77.874933],[164.556651,-77.889581],[164.567393,-77.914321],[164.52711,-77.919122],[164.533702,-77.987074],[164.483572,-78.018976],[164.408458,-78.028578],[164.339529,-78.029962],[164.358084,-78.043145],[164.377452,-78.051853],[164.420258,-78.063084],[164.401134,-78.086033],[164.368663,-78.097914],[164.299815,-78.107517],[164.183116,-78.14365],[164.030772,-78.170831],[163.88266,-78.220961],[163.842052,-78.226983],[163.934337,-78.23089],[164.116547,-78.214288],[164.207856,-78.225763],[164.374034,-78.279067],[164.446137,-78.28338],[164.467459,-78.288507],[164.531749,-78.317153],[164.555431,-78.321384],[164.639659,-78.325616],[164.678722,-78.320245],[164.758556,-78.291436],[165.097179,-78.254002],[165.113943,-78.247247],[165.145763,-78.219903],[165.163341,-78.208266],[165.187511,-78.199151],[165.212657,-78.19378],[165.234548,-78.193455],[165.216156,-78.183201],[165.15561,-78.165623],[165.226817,-78.117608],[165.306,-78.087823],[165.416189,-78.025323],[165.444672,-78.018731],[165.494395,-78.01865],[165.542735,-78.026462],[165.56186,-78.03338],[165.585216,-78.044854],[165.60613,-78.05934],[165.618663,-78.075128],[165.61964,-78.102227],[165.60434,-78.122491],[165.580821,-78.136326],[165.337087,-78.198907],[165.362071,-78.211521],[165.45045,-78.227309],[165.507498,-78.244561],[165.566091,-78.254571],[165.656098,-78.255466],[165.685232,-78.260837],[165.708507,-78.271173],[165.737153,-78.289727],[165.75172,-78.309747],[165.732758,-78.324477],[165.740001,-78.326267],[165.753917,-78.332127],[165.761241,-78.33408],[165.745453,-78.346287],[165.726899,-78.353611],[165.688243,-78.364435],[165.730235,-78.399591],[165.786876,-78.420668],[166.12908,-78.469985],[166.345876,-78.472589],[166.565196,-78.507094],[167.001475,-78.501072],[167.058116,-78.509047],[167.106293,-78.52752],[167.215668,-78.600681],[167.235362,-78.62363],[167.243012,-78.648045],[167.227794,-78.669203],[167.202159,-78.68141],[167.146495,-78.695733],[167.068207,-78.70672],[166.807465,-78.709365],[166.546723,-78.712009],[166.41863,-78.685479],[166.372813,-78.658787],[166.198253,-78.587823],[166.08961,-78.566827],[165.766612,-78.56524],[165.443614,-78.563653],[165.451996,-78.572931],[165.462087,-78.579767],[165.473481,-78.584161],[165.48585,-78.585707],[165.309744,-78.605239],[164.859711,-78.604587],[164.409679,-78.603936],[164.071788,-78.687107],[163.986583,-78.685805],[164.072032,-78.70615],[164.043712,-78.712172],[163.986664,-78.706638],[163.960216,-78.708103],[163.944184,-78.714939],[163.917328,-78.732354],[163.89975,-78.736749],[163.851736,-78.737074],[163.641775,-78.716567],[163.577485,-78.720798],[163.58253,-78.724216],[163.591807,-78.732599],[163.596934,-78.736098],[163.583995,-78.741469],[163.570567,-78.744561],[163.556814,-78.745375],[163.542979,-78.743748],[163.547211,-78.749607],[163.55421,-78.763442],[163.558604,-78.769627],[163.484711,-78.781915],[163.470876,-78.77988],[163.444591,-78.742608],[163.434744,-78.733819],[163.426524,-78.734552],[163.417003,-78.739679],[163.403656,-78.74391],[163.355479,-78.744806],[163.258556,-78.733005],[163.211925,-78.732843],[163.13852,-78.745864],[163.117035,-78.744887],[163.087169,-78.738214],[163.064952,-78.736912],[163.044607,-78.743829],[163.019705,-78.761651],[162.986827,-78.791192],[162.969981,-78.801446],[162.947765,-78.808282],[162.909841,-78.811456],[162.901378,-78.814386],[162.897146,-78.823012],[162.897309,-78.834649],[162.894786,-78.846856],[162.882091,-78.857354],[162.903575,-78.876397],[162.911306,-78.881768],[162.881196,-78.888604],[162.805919,-78.926202],[162.749278,-78.940606],[162.691091,-78.946547],[162.621593,-78.945245],[162.591807,-78.934503],[162.567149,-78.910252],[162.543468,-78.895115],[162.479747,-78.892511],[162.45281,-78.878025],[162.46461,-78.865492],[162.462413,-78.851007],[162.456879,-78.837823],[162.458507,-78.829848],[162.524425,-78.796319],[162.481944,-78.778985],[162.433279,-78.78102],[162.336925,-78.795343],[162.125743,-78.759861],[162.104015,-78.7492],[162.062999,-78.718845],[161.971853,-78.677016],[161.952485,-78.673435],[161.90447,-78.670343],[161.852794,-78.655369],[161.760509,-78.610447],[161.781016,-78.599705],[161.82309,-78.55462],[161.864757,-78.535821],[161.875011,-78.522882],[161.863943,-78.500746],[161.823985,-78.481215],[161.781016,-78.492771],[161.737966,-78.513279],[161.698253,-78.521091],[161.602387,-78.506443],[161.552908,-78.505548],[161.507335,-78.51572],[161.49879,-78.522068],[161.484874,-78.539646],[161.474457,-78.545994],[161.361583,-78.578383],[161.335948,-78.581231],[161.372244,-78.590753],[161.390473,-78.613539],[161.405528,-78.641697],[161.431,-78.667413],[161.448416,-78.679295],[161.463145,-78.69199],[161.489431,-78.72324],[161.502452,-78.734308],[161.556,-78.749607],[161.541759,-78.775323],[161.5324,-78.786391],[161.520763,-78.795343],[161.546397,-78.805841],[161.635509,-78.803969],[161.668142,-78.807794],[161.697602,-78.814711],[161.755382,-78.839451],[161.729991,-78.85947],[161.698578,-78.866795],[161.632579,-78.871026],[161.791759,-78.909926],[161.805349,-78.917576],[161.817556,-78.928643],[161.826182,-78.940525],[161.836111,-78.949965],[161.875987,-78.962823],[161.916515,-78.997654],[162.06544,-79.068617],[161.777599,-79.069513],[161.493419,-79.019627],[161.495372,-78.990899],[161.46754,-78.972426],[161.430919,-78.957778],[161.384044,-78.921808],[161.348888,-78.914972],[161.279552,-78.915948],[161.263438,-78.91839],[161.251313,-78.9249],[161.239757,-78.932875],[161.225271,-78.939711],[161.206798,-78.942966],[161.003673,-78.933689],[161.19809,-78.962172],[161.167491,-78.979099],[161.155528,-78.989435],[161.146251,-79.004327],[161.130382,-79.049412],[161.098481,-79.059991],[161.061046,-79.063409],[160.695079,-79.03753],[160.747244,-79.074884],[160.710134,-79.097263],[160.386974,-79.168145],[160.495128,-79.199477],[160.492035,-79.205662],[160.488048,-79.219496],[160.484874,-79.225356],[160.519786,-79.240492],[160.510509,-79.257501],[160.477061,-79.271254],[160.438975,-79.276951],[160.460134,-79.302992],[160.496349,-79.311456],[160.577403,-79.310235],[160.654063,-79.320001],[160.72877,-79.34059],[160.706716,-79.357599],[160.680024,-79.367446],[160.624034,-79.378595],[160.637706,-79.393243],[160.661957,-79.405369],[160.710704,-79.419203],[160.962657,-79.427667],[161.027599,-79.442153],[161.03419,-79.474786],[161.012462,-79.483168],[160.75587,-79.467706],[160.687511,-79.450128],[160.623546,-79.449965],[160.50587,-79.465265],[160.48406,-79.476495],[160.464529,-79.497491],[160.445079,-79.513279],[160.417247,-79.523207],[160.245616,-79.539809],[160.216563,-79.548272],[160.167654,-79.571384],[160.140798,-79.578546],[160.077647,-79.579685],[159.63502,-79.525649],[159.646983,-79.538263],[159.662283,-79.545099],[159.695649,-79.551446],[159.718272,-79.561782],[159.720958,-79.575291],[159.717296,-79.589776],[159.719737,-79.602634],[159.737071,-79.617283],[159.756847,-79.625746],[159.801524,-79.635512],[159.861176,-79.659112],[159.875499,-79.662042],[160.358002,-79.640232],[160.840505,-79.618422],[160.761485,-79.650811],[160.423839,-79.71144],[160.086192,-79.772068],[159.788585,-79.77988],[159.668142,-79.80641],[159.496104,-79.819513],[159.538097,-79.825291],[159.624197,-79.825291],[159.664887,-79.834405],[159.635997,-79.853204],[159.598481,-79.863946],[159.523692,-79.874933],[159.670258,-79.909438],[159.821951,-79.925714],[159.974294,-79.922133],[160.328868,-79.861261],[160.370128,-79.861586],[160.45753,-79.89658],[160.627208,-79.912774],[160.793468,-79.955011],[160.850922,-79.957452],[161.32016,-79.877537],[161.470551,-79.901625],[161.447276,-79.911391],[161.406261,-79.936944],[161.383311,-79.947035],[160.949826,-79.999024],[160.516341,-80.051012],[160.082856,-80.103001],[159.64937,-80.154989],[159.215885,-80.206977],[158.7824,-80.258966],[158.786957,-80.299493],[158.733084,-80.32464],[158.470185,-80.365289],[158.207286,-80.405938],[158.173025,-80.419529],[158.191254,-80.444431],[158.256358,-80.453383],[158.531586,-80.457615],[158.545909,-80.461847],[158.574474,-80.474705],[158.587901,-80.476983],[159.020665,-80.457599],[159.453429,-80.438214],[159.886192,-80.418829],[160.318956,-80.399444],[160.75172,-80.38006],[160.774913,-80.383233],[160.812673,-80.394952],[160.840587,-80.409356],[160.851899,-80.418064],[160.866954,-80.438084],[160.874278,-80.443536],[160.893077,-80.448175],[160.93336,-80.445489],[160.952647,-80.448012],[160.975759,-80.458185],[161.04005,-80.497979],[160.989919,-80.522638],[160.932384,-80.523207],[160.624034,-80.470473],[160.556651,-80.47381],[160.607758,-80.508722],[160.635916,-80.523045],[160.664887,-80.529718],[160.612071,-80.546808],[160.356171,-80.568862],[160.100271,-80.590916],[160.037364,-80.585626],[159.961436,-80.552911],[159.933767,-80.549737],[159.817231,-80.568455],[159.754161,-80.570733],[159.823904,-80.606622],[159.855154,-80.642185],[159.877615,-80.65016],[160.260102,-80.678806],[160.558767,-80.644627],[160.857432,-80.610447],[160.963878,-80.619724],[161.099376,-80.647719],[161.123709,-80.645278],[161.15089,-80.638442],[161.179942,-80.637791],[161.200938,-80.648207],[161.203461,-80.674737],[161.195649,-80.683364],[161.182384,-80.684747],[161.167247,-80.684015],[161.154552,-80.686782],[161.146007,-80.696384],[161.1338,-80.722426],[161.125499,-80.732354],[161.101736,-80.741957],[161.009288,-80.758559],[161.346446,-80.784356],[161.240977,-80.802992],[160.880626,-80.795831],[160.520274,-80.78867],[160.159923,-80.781508],[160.04127,-80.796482],[159.74643,-80.792087],[159.578298,-80.767999],[159.529796,-80.780369],[159.54713,-80.787856],[159.56544,-80.792657],[159.602794,-80.79811],[159.576182,-80.806248],[159.525645,-80.833185],[159.497569,-80.843032],[159.531749,-80.853936],[159.749848,-80.829197],[160.17571,-80.849135],[160.601573,-80.869073],[160.598969,-80.874119],[160.595063,-80.885431],[160.59254,-80.890395],[160.87615,-80.914646],[160.716563,-80.946466],[160.697765,-80.943048],[160.66033,-80.932061],[160.640798,-80.934259],[160.665701,-80.953058],[160.701915,-80.958185],[160.858409,-80.947849],[160.876964,-80.95086],[160.93393,-80.972263],[160.907481,-80.992852],[160.547374,-81.006768],[160.605235,-81.025811],[160.622813,-81.038832],[160.616059,-81.040623],[160.603038,-81.045587],[160.596365,-81.047052],[160.649181,-81.067315],[160.824474,-81.09824],[160.77475,-81.125095],[160.541515,-81.119236],[160.759044,-81.15781],[160.794119,-81.172296],[160.814464,-81.189711],[160.76588,-81.199477],[160.608653,-81.193129],[160.87794,-81.224298],[161.082042,-81.219008],[161.142426,-81.244399],[160.919444,-81.270196],[160.525727,-81.236952],[160.132009,-81.203709],[160.156749,-81.222833],[160.191173,-81.234633],[160.260753,-81.249607],[160.287364,-81.260431],[160.335216,-81.286798],[160.363292,-81.293634],[160.613129,-81.31756],[160.626231,-81.316664],[160.591075,-81.324314],[160.402517,-81.325616],[160.364513,-81.336358],[160.361095,-81.360772],[160.307791,-81.379815],[160.349864,-81.392836],[160.401622,-81.392511],[160.499197,-81.376072],[160.886892,-81.357029],[161.072765,-81.384861],[160.990001,-81.416681],[160.958018,-81.422621],[160.842052,-81.428481],[160.882579,-81.439142],[160.851573,-81.459405],[160.889822,-81.47088],[160.931977,-81.466729],[161.015473,-81.448419],[161.454112,-81.423517],[161.519216,-81.452081],[161.494395,-81.476983],[161.471446,-81.489679],[161.011485,-81.548761],[161.302013,-81.560113],[161.59254,-81.571466],[161.571462,-81.577813],[161.50587,-81.584161],[161.563975,-81.604669],[161.997325,-81.618585],[161.955821,-81.628513],[161.913748,-81.633884],[161.980805,-81.647231],[162.230072,-81.668186],[162.47934,-81.689142],[162.477712,-81.694268],[162.475922,-81.705499],[162.474294,-81.710545],[162.530528,-81.719008],[162.445811,-81.727227],[162.467621,-81.731134],[162.506847,-81.746759],[162.574229,-81.748305],[162.620372,-81.754327],[162.390147,-81.798028],[162.469737,-81.80755],[162.35434,-81.822686],[162.237478,-81.824802],[162.269786,-81.837986],[162.298106,-81.846124],[162.327159,-81.849786],[162.636485,-81.836033],[162.767914,-81.848403],[162.764415,-81.844496],[162.758556,-81.835219],[162.755219,-81.83115],[162.791515,-81.812921],[162.84254,-81.804457],[162.893728,-81.807224],[162.946544,-81.82879],[163.010997,-81.837335],[163.057628,-81.852146],[163.102224,-81.873712],[163.040212,-81.88714],[162.977306,-81.893162],[162.726085,-81.887628],[162.697032,-81.890883],[162.610362,-81.912286],[162.660655,-81.922947],[162.844737,-81.914809],[162.898204,-81.919854],[162.949718,-81.934747],[163.034841,-81.940199],[163.004731,-81.95086],[162.969981,-81.953383],[162.902192,-81.950128],[163.073009,-81.999933],[163.248546,-82.023533],[163.22755,-82.029555],[163.207286,-82.038507],[163.597341,-82.090427],[163.565603,-82.099216],[163.466075,-82.102797],[163.541026,-82.122491],[163.776541,-82.128595],[163.74171,-82.142185],[163.622813,-82.147556],[163.916759,-82.190118],[163.883637,-82.216485],[163.838715,-82.231052],[163.381707,-82.258466],[162.924699,-82.285879],[162.467691,-82.313293],[162.010683,-82.340706],[161.553675,-82.36812],[161.096667,-82.395533],[160.639659,-82.422947],[160.688813,-82.450779],[160.744395,-82.474542],[160.802094,-82.491957],[160.857677,-82.500909],[161.253815,-82.499241],[161.649954,-82.497573],[162.046092,-82.495904],[162.442231,-82.494236],[162.49879,-82.479262],[162.528656,-82.476658],[162.768565,-82.486993],[162.934093,-82.530938],[163.081879,-82.544692],[163.09962,-82.541681],[163.121593,-82.521417],[163.145356,-82.514825],[163.439464,-82.54518],[163.403005,-82.512384],[163.318858,-82.483005],[163.164806,-82.449477],[163.28004,-82.426365],[163.744423,-82.397176],[164.208805,-82.367988],[164.673188,-82.3388],[164.730968,-82.355645],[164.882335,-82.380141],[165.230154,-82.392836],[165.351899,-82.434259],[165.408539,-82.466729],[165.438243,-82.476495],[165.559255,-82.493422],[165.537283,-82.507582],[165.478363,-82.515802],[165.464529,-82.525323],[165.44044,-82.557061],[165.395763,-82.573663],[165.345388,-82.579685],[165.304942,-82.579522],[165.373302,-82.606134],[165.741099,-82.629531],[166.108897,-82.652927],[166.187511,-82.642022],[166.226817,-82.64365],[166.529796,-82.702732],[166.456309,-82.741876],[166.430186,-82.750421],[166.446544,-82.750746],[166.464854,-82.756524],[166.497813,-82.771254],[166.51824,-82.777765],[166.538259,-82.781508],[166.580089,-82.782973],[166.905772,-82.757582],[167.306488,-82.817071],[167.343761,-82.829278],[167.350759,-82.843845],[167.333263,-82.858494],[167.199229,-82.897556],[167.166515,-82.900323],[167.408458,-82.924981],[167.365977,-82.945408],[167.344737,-82.952813],[167.062755,-82.95615],[167.106944,-82.969659],[167.458018,-82.981134],[167.458507,-82.997979],[167.451834,-83.010675],[167.439952,-83.019789],[167.424164,-83.026056],[167.538097,-83.040134],[167.615408,-83.058201],[167.656586,-83.0617],[167.738617,-83.055597],[167.890961,-83.024509],[168.044281,-82.971368],[168.118988,-82.961114],[168.592784,-82.998956],[168.623383,-83.006036],[168.615733,-83.007989],[168.605154,-83.014907],[168.594981,-83.023207],[168.589692,-83.029555],[168.600841,-83.055434],[168.645274,-83.072035],[168.771658,-83.093194],[168.805186,-83.107843],[168.868826,-83.145929],[168.86085,-83.148045],[168.826834,-83.171157],[168.796235,-83.18377],[168.763927,-83.191339],[168.420421,-83.187595],[168.076915,-83.183852],[168.180919,-83.222752],[168.53419,-83.233657],[168.503103,-83.248712],[168.415212,-83.26686],[168.151337,-83.250014],[167.887462,-83.233168],[167.865082,-83.235528],[167.800059,-83.251886],[167.74879,-83.255141],[167.49289,-83.223484],[167.23699,-83.191827],[166.99879,-83.199151],[167.024181,-83.21738],[167.058116,-83.225844],[167.546397,-83.266453],[168.034679,-83.307061],[167.955089,-83.328546],[167.987641,-83.350356],[168.031749,-83.359633],[168.161388,-83.368422],[168.284679,-83.353123],[168.338715,-83.364841],[168.359141,-83.365167],[168.474457,-83.35296],[168.523611,-83.358005],[168.567393,-83.367771],[168.617931,-83.390558],[168.631521,-83.394301],[168.660899,-83.397149],[169.022187,-83.366998],[169.383474,-83.336847],[169.396495,-83.339939],[169.403575,-83.346775],[169.40797,-83.35589],[169.414317,-83.364841],[169.427094,-83.370782],[169.41212,-83.384861],[169.378917,-83.407973],[169.364106,-83.422052],[169.399099,-83.433689],[169.466156,-83.447361],[169.543142,-83.450128],[169.560883,-83.446954],[169.576915,-83.436944],[169.588878,-83.425714],[169.599864,-83.418145],[169.612804,-83.414321],[169.630056,-83.414809],[169.584727,-83.398696],[169.599132,-83.392836],[169.618826,-83.373468],[169.629649,-83.369073],[170.10255,-83.404718],[170.059255,-83.413181],[170.069102,-83.421645],[170.080577,-83.427179],[170.092947,-83.429783],[170.105968,-83.429132],[170.100597,-83.433526],[170.091482,-83.444024],[170.086436,-83.4485],[170.127615,-83.463311],[170.223481,-83.483982],[170.403331,-83.491632],[170.412852,-83.489841],[170.421641,-83.483494],[170.437836,-83.466241],[170.447602,-83.462498],[170.734141,-83.451837],[170.744151,-83.448175],[170.746593,-83.439548],[170.747813,-83.430759],[170.75408,-83.426365],[170.812999,-83.423272],[171.193126,-83.445571],[171.260753,-83.463311],[171.384044,-83.470147],[171.47877,-83.489435],[171.552908,-83.494724],[171.576915,-83.500258],[171.501475,-83.518976],[171.42628,-83.528985],[171.175304,-83.53163],[170.924327,-83.534275],[170.947439,-83.542169],[170.971446,-83.545587],[171.020763,-83.546319],[170.978201,-83.561782],[171.003103,-83.56878],[171.331228,-83.555434],[171.702159,-83.58587],[171.731944,-83.591729],[171.789236,-83.610284],[171.959727,-83.620212],[171.939952,-83.633233],[171.915782,-83.63893],[171.866222,-83.644138],[172.046723,-83.658461],[172.014171,-83.670587],[171.982432,-83.678481],[171.914887,-83.687758],[172.00115,-83.716892],[172.097911,-83.718032],[172.3685,-83.677504],[172.820649,-83.667901],[173.230235,-83.712335],[173.319591,-83.732029],[173.316254,-83.736749],[173.311209,-83.747817],[173.307872,-83.752618],[173.410411,-83.761407],[173.618988,-83.749282],[173.721365,-83.763604],[173.680349,-83.791192],[173.29127,-83.856378],[173.409028,-83.878106],[173.834158,-83.87363],[173.868419,-83.862888],[173.882009,-83.861261],[173.91212,-83.863946],[173.925955,-83.867446],[173.950938,-83.879164],[173.962169,-83.881768],[174.299408,-83.864679],[174.636648,-83.847589],[174.973888,-83.830499],[175.122813,-83.869236],[175.443126,-83.903253],[175.377452,-83.927992],[175.161794,-83.957289],[175.189301,-83.957615],[175.26824,-83.980401],[175.301036,-83.98447],[175.677745,-83.961602],[176.1421,-83.985671],[176.606456,-84.009739],[177.070811,-84.033807],[177.535167,-84.057875],[177.616547,-84.073419],[177.558116,-84.080011],[177.613943,-84.09238],[177.871918,-84.104262],[178.129893,-84.116143],[178.1574,-84.122654],[178.198416,-84.142511],[178.217947,-84.144627],[178.405284,-84.117608],[178.527599,-84.121352],[178.406261,-84.15545],[178.480154,-84.179132],[178.567393,-84.18377],[178.78004,-84.171319],[178.868826,-84.183282],[179.354991,-84.197361],[179.750499,-84.26922],[179.787852,-84.283949],[179.695649,-84.303643],[179.601573,-84.311293],[179.698253,-84.331313],[180,-84.352796],[180,-84.353382],[180,-84.515235],[180,-85.01385],[180,-85.512465],[180,-86.01108],[180,-86.509695],[180,-87.00831],[180,-87.506925],[180,-88.00554],[180,-88.504155],[180,-89.00277],[180,-89.501385],[180,-90],[179.500693,-90],[179.001387,-90],[178.50208,-90],[178.002774,-90],[177.503467,-90],[177.004161,-90],[176.504854,-90],[176.005548,-90],[175.506241,-90],[175.006935,-90],[174.507628,-90],[174.008322,-90],[173.509015,-90],[173.009709,-90],[172.510402,-90],[172.011096,-90],[171.511789,-90],[171.012483,-90],[170.513176,-90],[170.01387,-90],[169.514563,-90],[169.015257,-90],[168.51595,-90],[168.016644,-90],[167.517337,-90],[167.018031,-90],[166.518724,-90],[166.019417,-90],[165.520111,-90],[165.020804,-90],[164.521498,-90],[164.022191,-90],[163.522885,-90],[163.023578,-90],[162.524272,-90],[162.024965,-90],[161.525659,-90],[161.026352,-90],[160.527046,-90],[160.027739,-90],[159.528433,-90],[159.029126,-90],[158.52982,-90],[158.030513,-90],[157.531207,-90],[157.0319,-90],[156.532594,-90],[156.033287,-90],[155.533981,-90],[155.034674,-90],[154.535368,-90],[154.036061,-90],[153.536755,-90],[153.037448,-90],[152.538141,-90],[152.038835,-90],[151.539528,-90],[151.040222,-90],[150.540915,-90],[150.041609,-90],[149.542302,-90],[149.042996,-90],[148.543689,-90],[148.044383,-90],[147.545076,-90],[147.04577,-90],[146.546463,-90],[146.047157,-90],[145.54785,-90],[145.048544,-90],[144.549237,-90],[144.049931,-90],[143.550624,-90],[143.051318,-90],[142.552011,-90],[142.052705,-90],[141.553398,-90],[141.054092,-90],[140.554785,-90],[140.055479,-90],[139.556172,-90],[139.056865,-90],[138.557559,-90],[138.058252,-90],[137.558946,-90],[137.059639,-90],[136.560333,-90],[136.061026,-90],[135.56172,-90],[135.062413,-90],[134.563107,-90],[134.0638,-90],[133.564494,-90],[133.065187,-90],[132.565881,-90],[132.066574,-90],[131.567268,-90],[131.067961,-90],[130.568655,-90],[130.069348,-90],[129.570042,-90],[129.070735,-90],[128.571429,-90],[128.072122,-90],[127.572816,-90],[127.073509,-90],[126.574202,-90],[126.074896,-90],[125.575589,-90],[125.076283,-90],[124.576976,-90],[124.07767,-90],[123.578363,-90],[123.079057,-90],[122.57975,-90],[122.080444,-90],[121.581137,-90],[121.081831,-90],[120.582524,-90],[120.083218,-90],[119.583911,-90],[119.084605,-90],[118.585298,-90],[118.085992,-90],[117.586685,-90],[117.087379,-90],[116.588072,-90],[116.088766,-90],[115.589459,-90],[115.090153,-90],[114.590846,-90],[114.09154,-90],[113.592233,-90],[113.092926,-90],[112.59362,-90],[112.094313,-90],[111.595007,-90],[111.0957,-90],[110.596394,-90],[110.097087,-90],[109.597781,-90],[109.098474,-90],[108.599168,-90],[108.099861,-90],[107.600555,-90],[107.101248,-90],[106.601942,-90],[106.102635,-90],[105.603329,-90],[105.104022,-90],[104.604716,-90],[104.105409,-90],[103.606103,-90],[103.106796,-90],[102.60749,-90],[102.108183,-90],[101.608877,-90],[101.10957,-90],[100.610264,-90],[100.110957,-90],[99.61165,-90],[99.112344,-90],[98.613037,-90],[98.113731,-90],[97.614424,-90],[97.115118,-90],[96.615811,-90],[96.116505,-90],[95.617198,-90],[95.117892,-90],[94.618585,-90],[94.119279,-90],[93.619972,-90],[93.120666,-90],[92.621359,-90],[92.122053,-90],[91.622746,-90],[91.12344,-90],[90.624133,-90],[90.124827,-90],[89.62552,-90],[89.126214,-90],[88.626907,-90],[88.127601,-90],[87.628294,-90],[87.128988,-90],[86.629681,-90],[86.130374,-90],[85.631068,-90],[85.131761,-90],[84.632455,-90],[84.133148,-90],[83.633842,-90],[83.134535,-90],[82.635229,-90],[82.135922,-90],[81.636616,-90],[81.137309,-90],[80.638003,-90],[80.138696,-90],[79.63939,-90],[79.140083,-90],[78.640777,-90],[78.14147,-90],[77.642164,-90],[77.142857,-90],[76.643551,-90],[76.144244,-90],[75.644938,-90],[75.145631,-90],[74.646325,-90],[74.147018,-90],[73.647712,-90],[73.148405,-90],[72.649098,-90],[72.149792,-90],[71.650485,-90],[71.151179,-90],[70.651872,-90],[70.152566,-90],[69.653259,-90],[69.153953,-90],[68.654646,-90],[68.15534,-90],[67.656033,-90],[67.156727,-90],[66.65742,-90],[66.158114,-90],[65.658807,-90],[65.159501,-90],[64.660194,-90],[64.160888,-90],[63.661581,-90],[63.162275,-90],[62.662968,-90],[62.163662,-90],[61.664355,-90],[61.651875,-90],[61.165049,-90],[60.665742,-90],[60.166436,-90],[59.667129,-90],[59.167822,-90],[58.668516,-90],[58.169209,-90],[57.669903,-90],[57.170596,-90],[56.67129,-90],[56.171983,-90],[55.672677,-90],[55.17337,-90],[54.674064,-90],[54.174757,-90],[53.675451,-90],[53.176144,-90],[52.676838,-90],[52.177531,-90],[51.678225,-90],[51.178918,-90],[50.679612,-90],[50.180305,-90],[49.680999,-90],[49.181692,-90],[48.682386,-90],[48.183079,-90],[47.683773,-90],[47.184466,-90],[46.68516,-90],[46.185853,-90],[45.686546,-90],[45.18724,-90],[44.687933,-90],[44.188627,-90],[43.68932,-90],[43.190014,-90],[42.690707,-90],[42.191401,-90],[41.692094,-90],[41.192788,-90],[40.693481,-90],[40.194175,-90],[39.694868,-90],[39.195562,-90],[38.696255,-90],[38.196949,-90],[37.697642,-90],[37.198336,-90],[36.699029,-90],[36.199723,-90],[35.700416,-90],[35.20111,-90],[34.701803,-90],[34.202497,-90],[33.70319,-90],[33.203883,-90],[32.704577,-90],[32.20527,-90],[31.705964,-90],[31.206657,-90],[30.707351,-90],[30.208044,-90],[29.708738,-90],[29.209431,-90],[28.710125,-90],[28.210818,-90],[27.711512,-90],[27.212205,-90],[26.712899,-90],[26.213592,-90],[25.714286,-90],[25.214979,-90],[24.715673,-90],[24.216366,-90],[23.71706,-90],[23.217753,-90],[22.718447,-90],[22.21914,-90],[21.719834,-90],[21.220527,-90],[20.721221,-90],[20.221914,-90],[19.722607,-90],[19.223301,-90],[18.723994,-90],[18.224688,-90],[17.725381,-90],[17.226075,-90],[16.726768,-90],[16.227462,-90],[15.728155,-90],[15.228849,-90],[14.729542,-90],[14.230236,-90],[13.730929,-90],[13.231623,-90],[12.732316,-90],[12.23301,-90],[11.733703,-90],[11.234397,-90],[10.73509,-90],[10.235784,-90],[9.736477,-90],[9.237171,-90],[8.737864,-90],[8.238558,-90],[7.739251,-90],[7.239945,-90],[6.740638,-90],[6.241331,-90],[5.742025,-90],[5.242718,-90],[4.743412,-90],[4.244105,-90],[3.744799,-90],[3.245492,-90],[2.746186,-90],[2.246879,-90],[1.747573,-90],[1.248266,-90],[0.74896,-90],[0.249653,-90],[-0.249653,-90],[-0.74896,-90],[-1.248266,-90],[-1.747573,-90],[-2.246879,-90],[-2.746186,-90],[-3.245492,-90],[-3.744799,-90],[-4.244105,-90],[-4.743412,-90],[-5.242718,-90],[-5.742025,-90],[-6.241331,-90],[-6.740638,-90],[-7.239945,-90],[-7.739251,-90],[-8.238558,-90],[-8.737864,-90],[-9.237171,-90],[-9.736477,-90],[-10.235784,-90],[-10.73509,-90],[-11.234397,-90],[-11.733703,-90],[-12.23301,-90],[-12.732316,-90],[-13.231623,-90],[-13.730929,-90],[-14.230236,-90],[-14.729542,-90],[-15.228849,-90],[-15.728155,-90],[-16.227462,-90],[-16.726768,-90],[-17.226075,-90],[-17.725381,-90],[-18.224688,-90],[-18.723994,-90],[-19.223301,-90],[-19.722607,-90],[-20.221914,-90],[-20.721221,-90],[-21.220527,-90],[-21.719834,-90],[-22.21914,-90],[-22.718447,-90],[-23.217753,-90],[-23.71706,-90],[-24.216366,-90],[-24.715673,-90],[-25.214979,-90],[-25.714286,-90],[-26.213592,-90],[-26.712899,-90],[-27.212205,-90],[-27.711512,-90],[-28.210818,-90],[-28.710125,-90],[-29.209431,-90],[-29.708738,-90],[-30.208044,-90],[-30.707351,-90],[-31.206657,-90],[-31.705964,-90],[-32.20527,-90],[-32.704577,-90],[-33.203883,-90],[-33.70319,-90],[-34.202497,-90],[-34.701803,-90],[-35.20111,-90],[-35.700416,-90],[-36.199723,-90],[-36.699029,-90],[-37.198336,-90],[-37.697642,-90],[-38.196949,-90],[-38.696255,-90],[-39.195562,-90],[-39.694868,-90],[-40.194175,-90],[-40.693481,-90],[-41.192788,-90],[-41.692094,-90],[-42.191401,-90],[-42.690707,-90],[-43.190014,-90],[-43.68932,-90],[-44.188627,-90],[-44.687933,-90],[-45.18724,-90],[-45.686546,-90],[-46.185853,-90],[-46.68516,-90],[-47.184466,-90],[-47.683773,-90],[-48.183079,-90],[-48.682386,-90],[-49.181692,-90],[-49.680999,-90],[-50.180305,-90],[-50.679612,-90],[-51.178918,-90],[-51.678225,-90],[-52.117718,-90],[-52.177531,-90],[-52.676838,-90],[-53.176144,-90],[-53.675451,-90],[-54.174757,-90],[-54.674064,-90],[-55.17337,-90],[-55.672677,-90],[-56.171983,-90],[-56.67129,-90],[-57.170596,-90],[-57.669903,-90],[-58.169209,-90],[-58.668516,-90],[-59.167822,-90],[-59.667129,-90],[-60.166436,-90],[-60.665742,-90],[-61.165049,-90],[-61.664355,-90],[-62.163662,-90],[-62.662968,-90],[-63.162275,-90],[-63.661581,-90],[-64.160888,-90],[-64.660194,-90],[-65.159501,-90],[-65.658807,-90],[-66.158114,-90],[-66.65742,-90],[-67.156727,-90],[-67.656033,-90],[-68.15534,-90],[-68.654646,-90],[-69.153953,-90],[-69.653259,-90],[-70.152566,-90],[-70.651872,-90],[-71.151179,-90],[-71.650485,-90],[-72.149792,-90],[-72.649098,-90],[-73.148405,-90],[-73.647712,-90],[-74.147018,-90],[-74.646325,-90],[-75.145631,-90],[-75.644938,-90],[-76.144244,-90],[-76.643551,-90],[-77.142857,-90],[-77.642164,-90],[-78.14147,-90],[-78.640777,-90],[-79.140083,-90],[-79.63939,-90],[-80.138696,-90],[-80.638003,-90],[-81.137309,-90],[-81.636616,-90],[-82.135922,-90],[-82.635229,-90],[-83.134535,-90],[-83.633842,-90],[-84.133148,-90],[-84.632455,-90],[-85.131761,-90],[-85.631068,-90],[-86.130374,-90],[-86.629681,-90],[-87.128988,-90],[-87.628294,-90],[-88.127601,-90],[-88.626907,-90],[-89.126214,-90],[-89.62552,-90],[-90.124827,-90],[-90.624133,-90],[-91.12344,-90],[-91.622746,-90],[-92.122053,-90],[-92.621359,-90],[-93.120666,-90],[-93.619972,-90],[-94.119279,-90],[-94.618585,-90],[-95.117892,-90],[-95.617198,-90],[-96.116505,-90],[-96.615811,-90],[-97.115118,-90],[-97.614424,-90],[-98.113731,-90],[-98.613037,-90],[-99.112344,-90],[-99.61165,-90],[-100.110957,-90],[-100.610264,-90],[-101.10957,-90],[-101.608877,-90],[-102.108183,-90],[-102.60749,-90],[-103.106796,-90],[-103.606103,-90],[-104.105409,-90],[-104.604716,-90],[-105.104022,-90],[-105.603329,-90],[-106.102635,-90],[-106.601942,-90],[-107.101248,-90],[-107.600555,-90],[-108.099861,-90],[-108.599168,-90],[-109.098474,-90],[-109.597781,-90],[-110.097087,-90],[-110.596394,-90],[-111.0957,-90],[-111.595007,-90],[-112.094313,-90],[-112.59362,-90],[-113.092926,-90],[-113.592233,-90],[-114.09154,-90],[-114.590846,-90],[-115.090153,-90],[-115.589459,-90],[-116.088766,-90],[-116.588072,-90],[-117.087379,-90],[-117.586685,-90],[-118.085992,-90],[-118.585298,-90],[-119.084605,-90],[-119.583911,-90],[-120.083218,-90],[-120.582524,-90],[-121.081831,-90],[-121.581137,-90],[-122.080444,-90],[-122.57975,-90],[-123.079057,-90],[-123.578363,-90],[-124.07767,-90],[-124.576976,-90],[-125.076283,-90],[-125.575589,-90],[-126.074896,-90],[-126.574202,-90],[-127.073509,-90],[-127.572816,-90],[-128.072122,-90],[-128.571429,-90],[-129.070735,-90],[-129.570042,-90],[-130.069348,-90],[-130.568655,-90],[-131.067961,-90],[-131.567268,-90],[-132.066574,-90],[-132.565881,-90],[-133.065187,-90],[-133.564494,-90],[-134.0638,-90],[-134.563107,-90],[-135.062413,-90],[-135.56172,-90],[-136.061026,-90],[-136.560333,-90],[-137.059639,-90],[-137.558946,-90],[-138.058252,-90],[-138.557559,-90],[-139.056865,-90],[-139.556172,-90],[-140.055479,-90],[-140.554785,-90],[-141.054092,-90],[-141.553398,-90],[-142.052705,-90],[-142.552011,-90],[-143.051318,-90],[-143.550624,-90],[-144.049931,-90],[-144.549237,-90],[-145.048544,-90],[-145.54785,-90],[-146.047157,-90],[-146.546463,-90],[-147.04577,-90],[-147.545076,-90],[-148.044383,-90],[-148.543689,-90],[-149.042996,-90],[-149.542302,-90],[-150.041609,-90],[-150.540915,-90],[-151.040222,-90],[-151.539528,-90],[-152.038835,-90],[-152.538141,-90],[-153.037448,-90],[-153.536755,-90],[-154.036061,-90],[-154.535368,-90],[-155.034674,-90],[-155.533981,-90],[-156.033287,-90],[-156.532594,-90],[-157.0319,-90],[-157.531207,-90],[-158.030513,-90],[-158.52982,-90],[-159.029126,-90],[-159.528433,-90],[-160.027739,-90],[-160.527046,-90],[-161.026352,-90],[-161.525659,-90],[-162.024965,-90],[-162.524272,-90],[-163.023578,-90],[-163.522885,-90],[-164.022191,-90],[-164.521498,-90],[-165.020804,-90],[-165.520111,-90],[-166.019417,-90],[-166.518724,-90],[-167.018031,-90],[-167.517337,-90],[-168.016644,-90],[-168.51595,-90],[-169.015257,-90],[-169.514563,-90],[-170.01387,-90],[-170.513176,-90],[-171.012483,-90],[-171.511789,-90],[-172.011096,-90],[-172.510402,-90],[-173.009709,-90],[-173.509015,-90],[-174.008322,-90],[-174.507628,-90],[-175.006935,-90],[-175.506241,-90],[-176.005548,-90],[-176.504854,-90],[-177.004161,-90],[-177.503467,-90],[-178.002774,-90],[-178.50208,-90],[-179.001387,-90],[-179.500693,-90],[-180,-90],[-180,-89.501385],[-180,-89.00277],[-180,-88.504155],[-180,-88.00554],[-180,-87.506925],[-180,-87.00831],[-180,-86.509695],[-180,-86.01108],[-180,-85.512465],[-180,-85.01385],[-180,-84.515235],[-180,-84.352796],[-180,-84.352796],[-179.999984,-84.352798],[-179.969106,-84.355401],[-179.551218,-84.343479],[-179.133331,-84.331557],[-178.715443,-84.319635],[-178.297556,-84.307712],[-178.181956,-84.321466],[-178.17158,-84.323826],[-178.18102,-84.330336],[-178.191396,-84.334161],[-178.202382,-84.335545],[-178.213857,-84.335138],[-178.03246,-84.356541],[-178.003041,-84.366632],[-177.997996,-84.386163],[-177.704701,-84.41839],[-177.53954,-84.40016],[-177.325022,-84.405532],[-177.106801,-84.383559],[-176.759307,-84.387682],[-176.411814,-84.391805],[-176.06432,-84.395929],[-176.116038,-84.40781],[-176.457712,-84.419854],[-176.51061,-84.435479],[-176.254669,-84.46144],[-175.998728,-84.4874],[-176.020212,-84.49212],[-176.042226,-84.493422],[-176.016428,-84.499119],[-175.963002,-84.517022],[-175.91218,-84.542576],[-175.881337,-84.547459],[-175.565114,-84.522475],[-175.248891,-84.497491],[-175.18989,-84.485121],[-175.142893,-84.452325],[-175.163279,-84.445001],[-175.183176,-84.441502],[-175.224802,-84.440199],[-175.207224,-84.420017],[-175.178049,-84.414809],[-174.683525,-84.43148],[-174.189001,-84.448151],[-173.694476,-84.464823],[-173.199952,-84.481494],[-172.705428,-84.498165],[-172.210904,-84.514837],[-171.716379,-84.531508],[-171.221855,-84.548179],[-170.727331,-84.564851],[-170.232807,-84.581522],[-169.738282,-84.598193],[-169.243758,-84.614865],[-168.749234,-84.631536],[-168.254709,-84.648207],[-168.20995,-84.656915],[-168.145985,-84.690037],[-168.123647,-84.695082],[-168.164866,-84.721856],[-168.056752,-84.770766],[-168.018625,-84.78102],[-167.763437,-84.796482],[-167.508249,-84.811944],[-167.480092,-84.836358],[-167.555002,-84.848403],[-167.441762,-84.867446],[-167.176483,-84.843845],[-166.911204,-84.820245],[-166.433909,-84.82955],[-165.956614,-84.838854],[-165.479319,-84.848158],[-165.002024,-84.857463],[-164.524729,-84.866767],[-164.047434,-84.876072],[-163.934641,-84.895196],[-163.464365,-84.904677],[-162.994089,-84.914158],[-162.957509,-84.909438],[-162.848948,-84.883071],[-162.35176,-84.90723],[-161.854573,-84.93139],[-161.357386,-84.95555],[-160.860199,-84.97971],[-160.363011,-85.003869],[-159.865824,-85.028029],[-159.368637,-85.052189],[-158.871449,-85.076349],[-158.673166,-85.132501],[-158.465769,-85.155206],[-158.484446,-85.13421],[-158.509958,-85.119724],[-158.565053,-85.099298],[-158.497426,-85.091241],[-158.42394,-85.092218],[-158.351511,-85.10296],[-158.196767,-85.159112],[-158.163319,-85.164727],[-157.732338,-85.17617],[-157.301357,-85.187612],[-156.870375,-85.199054],[-156.439394,-85.210496],[-156.008412,-85.221938],[-156.055491,-85.20379],[-156.491485,-85.199518],[-156.92748,-85.195245],[-156.459096,-85.190728],[-155.990712,-85.186212],[-155.94225,-85.179376],[-155.901112,-85.157647],[-155.944569,-85.143487],[-156.099721,-85.142348],[-156.069447,-85.134454],[-155.786712,-85.130263],[-155.503977,-85.126072],[-155.982262,-85.086385],[-156.460547,-85.046699],[-156.938832,-85.007013],[-156.95873,-85.000177],[-157.009145,-84.968927],[-157.04662,-84.957208],[-157.341908,-84.927219],[-157.637196,-84.897231],[-157.581044,-84.882989],[-157.132822,-84.888381],[-156.6846,-84.893772],[-156.236379,-84.899164],[-155.788157,-84.904555],[-155.756663,-84.900323],[-155.749623,-84.900323],[-155.790476,-84.891046],[-156.109731,-84.885349],[-155.70344,-84.879164],[-155.740305,-84.865981],[-155.867299,-84.86061],[-155.589223,-84.840509],[-155.642649,-84.827813],[-156.099477,-84.821384],[-156.556304,-84.814955],[-157.013132,-84.808526],[-157.46996,-84.802097],[-157.926788,-84.795668],[-158.383616,-84.789239],[-158.277292,-84.780938],[-158.249582,-84.767185],[-158.717356,-84.749078],[-159.185129,-84.730971],[-159.652903,-84.712864],[-160.120676,-84.694757],[-160.58845,-84.67665],[-161.056223,-84.658543],[-161.523997,-84.640435],[-161.99177,-84.622328],[-162.459543,-84.604221],[-162.927317,-84.586114],[-163.39509,-84.568007],[-163.862864,-84.5499],[-163.893178,-84.545343],[-163.91218,-84.53045],[-163.909495,-84.527765],[-163.904368,-84.520685],[-163.901723,-84.517999],[-163.910837,-84.513279],[-164.096628,-84.480564],[-163.68106,-84.486179],[-163.265492,-84.491795],[-163.317209,-84.476983],[-163.660227,-84.429132],[-164.15038,-84.426039],[-164.640533,-84.422947],[-165.130686,-84.419854],[-165.176584,-84.432712],[-165.194203,-84.434666],[-165.603953,-84.413208],[-166.013702,-84.391751],[-166.423451,-84.370294],[-165.96404,-84.384454],[-165.504628,-84.398614],[-165.514597,-84.381117],[-165.409739,-84.364516],[-164.928009,-84.364207],[-164.446278,-84.363897],[-163.964548,-84.363588],[-163.482818,-84.363279],[-163.001088,-84.36297],[-163.017405,-84.359796],[-163.043528,-84.346124],[-163.057973,-84.340509],[-163.424211,-84.324368],[-163.790449,-84.308228],[-164.156687,-84.292087],[-164.171213,-84.288995],[-164.182851,-84.282322],[-164.163808,-84.272068],[-164.115956,-84.271254],[-164.098337,-84.262628],[-164.110463,-84.264255],[-164.223378,-84.250177],[-164.272288,-84.238458],[-164.230824,-84.234552],[-164.190297,-84.225518],[-164.623362,-84.185317],[-164.740224,-84.156183],[-165.154408,-84.137953],[-165.128,-84.117934],[-165.091908,-84.112563],[-165.018544,-84.11891],[-165.060292,-84.101658],[-165.078928,-84.088962],[-165.093455,-84.072198],[-165.009714,-84.056736],[-164.574086,-84.054457],[-164.138458,-84.052179],[-163.70283,-84.0499],[-163.743113,-84.031915],[-164.039011,-83.990655],[-164.029978,-83.98919],[-163.997751,-83.977146],[-163.974314,-83.974216],[-163.918284,-83.973077],[-163.900502,-83.970473],[-163.890126,-83.963556],[-163.903676,-83.957289],[-163.948598,-83.952244],[-163.993886,-83.93906],[-164.452606,-83.881036],[-164.911326,-83.823012],[-164.961781,-83.801365],[-164.979604,-83.796482],[-165.420725,-83.766778],[-165.484242,-83.749607],[-165.514394,-83.745701],[-165.935374,-83.78574],[-165.954416,-83.789727],[-165.990427,-83.80283],[-166.068227,-83.817966],[-166.470967,-83.806004],[-166.873708,-83.794041],[-167.276448,-83.782078],[-167.679189,-83.770115],[-167.625356,-83.790297],[-167.253529,-83.81113],[-167.19518,-83.825453],[-167.29955,-83.837823],[-167.69107,-83.808689],[-168.08259,-83.779555],[-167.988515,-83.766778],[-168.053578,-83.753676],[-168.259511,-83.743585],[-167.968353,-83.74391],[-167.677195,-83.744236],[-167.733347,-83.722589],[-168.216379,-83.713149],[-168.337473,-83.692804],[-168.455271,-83.654474],[-168.609731,-83.622491],[-168.634348,-83.604587],[-168.558665,-83.578383],[-168.534169,-83.573012],[-168.547719,-83.542576],[-168.582631,-83.530369],[-169.01655,-83.515558],[-169.049916,-83.508071],[-169.075673,-83.48919],[-169.005727,-83.474542],[-168.779897,-83.475681],[-169.062672,-83.45908],[-169.345448,-83.442478],[-169.361033,-83.439142],[-169.41808,-83.413344],[-169.433054,-83.409438],[-169.894635,-83.372996],[-170.356215,-83.336554],[-170.817795,-83.300112],[-171.279376,-83.26367],[-171.740956,-83.227227],[-171.694447,-83.216892],[-171.325551,-83.239394],[-170.956654,-83.261895],[-171.395358,-83.21237],[-171.834061,-83.162844],[-172.272764,-83.113318],[-172.711467,-83.063793],[-173.150171,-83.014267],[-173.588874,-82.964741],[-174.027577,-82.915216],[-174.337473,-82.812107],[-174.369618,-82.778904],[-174.339833,-82.758884],[-174.268992,-82.755792],[-173.906334,-82.80934],[-173.543677,-82.862888],[-173.18102,-82.916436],[-172.74177,-82.91839],[-172.512441,-82.869887],[-172.144399,-82.897855],[-171.776357,-82.925822],[-171.408315,-82.95379],[-170.955393,-83.055271],[-170.929799,-83.064142],[-170.835072,-83.128188],[-170.793406,-83.168878],[-170.769154,-83.182875],[-170.719472,-83.196954],[-170.346208,-83.234796],[-169.972944,-83.272638],[-169.59968,-83.310479],[-169.535349,-83.301935],[-169.734568,-83.244399],[-169.322377,-83.247186],[-168.910186,-83.249973],[-168.497996,-83.252761],[-168.085805,-83.255548],[-168.063669,-83.24684],[-168.028147,-83.215102],[-168.009389,-83.208103],[-167.726226,-83.217299],[-167.443064,-83.226495],[-167.428334,-83.224216],[-167.358347,-83.20086],[-167.333201,-83.198012],[-166.883819,-83.198826],[-166.434438,-83.19964],[-165.985056,-83.200453],[-165.535675,-83.201267],[-165.086293,-83.202081],[-164.854115,-83.250258],[-164.873402,-83.265313],[-164.893666,-83.269627],[-164.915151,-83.270766],[-164.9381,-83.276137],[-164.943186,-83.278578],[-164.947703,-83.281345],[-164.951161,-83.284845],[-164.953359,-83.289483],[-164.953236,-83.294203],[-164.948842,-83.300551],[-164.947947,-83.304783],[-164.955556,-83.317966],[-164.983225,-83.340265],[-164.985829,-83.35589],[-164.95283,-83.355076],[-164.822255,-83.37713],[-164.779612,-83.390883],[-164.702504,-83.438572],[-164.676137,-83.447361],[-164.66808,-83.452081],[-164.674672,-83.456964],[-164.690378,-83.4638],[-164.696523,-83.468194],[-164.691029,-83.48504],[-164.657338,-83.498142],[-164.617258,-83.506931],[-164.177317,-83.527114],[-164.113962,-83.506443],[-164.159739,-83.480401],[-164.173166,-83.469985],[-164.19518,-83.446547],[-164.203236,-83.431736],[-164.203481,-83.416925],[-164.189768,-83.403578],[-164.166249,-83.396091],[-163.881805,-83.38185],[-163.597361,-83.367608],[-163.465077,-83.337091],[-163.284128,-83.338556],[-163.133982,-83.315525],[-162.869944,-83.321466],[-162.827992,-83.333266],[-162.8037,-83.366143],[-162.809641,-83.367364],[-162.821238,-83.37184],[-162.827016,-83.372817],[-162.803578,-83.39186],[-162.768788,-83.398614],[-162.370107,-83.424005],[-162.260081,-83.449884],[-162.308298,-83.462579],[-162.457265,-83.47381],[-162.406443,-83.495375],[-162.169057,-83.524672],[-161.749249,-83.515574],[-161.329441,-83.506476],[-160.909633,-83.497377],[-160.489825,-83.488279],[-160.070017,-83.479181],[-159.77713,-83.512384],[-159.484242,-83.545587],[-159.19343,-83.544366],[-159.101674,-83.53338],[-159.091298,-83.526951],[-159.069569,-83.49977],[-159.044667,-83.476007],[-158.999867,-83.457127],[-158.518341,-83.434828],[-158.036814,-83.41253],[-157.555287,-83.390232],[-157.529652,-83.38421],[-157.483144,-83.353285],[-157.452707,-83.341729],[-157.18519,-83.285943],[-156.917673,-83.230157],[-157.024485,-83.205824],[-157.504153,-83.192939],[-157.983822,-83.180054],[-158.46349,-83.167169],[-158.521921,-83.15838],[-158.557932,-83.132745],[-158.497182,-83.117934],[-158.013024,-83.105957],[-157.528866,-83.093981],[-157.044708,-83.082004],[-156.56055,-83.070028],[-156.076392,-83.058052],[-155.592234,-83.046075],[-155.436391,-83.007745],[-155.496775,-82.955499],[-155.134511,-82.877537],[-155.109975,-82.86297],[-155.082143,-82.817153],[-155.058787,-82.801935],[-154.639475,-82.75963],[-154.220164,-82.717326],[-153.800852,-82.675022],[-153.38154,-82.632718],[-152.962229,-82.590414],[-152.542917,-82.54811],[-152.555409,-82.526544],[-152.579701,-82.512872],[-152.631663,-82.496352],[-152.654734,-82.48447],[-152.698191,-82.455255],[-152.721181,-82.443048],[-152.813669,-82.413181],[-152.896799,-82.374119],[-153.336144,-82.291301],[-153.775489,-82.208483],[-154.214833,-82.125665],[-154.255605,-82.101495],[-154.11144,-82.071547],[-154.457733,-82.018772],[-154.804026,-81.965997],[-154.838938,-81.944757],[-154.774973,-81.922947],[-154.532053,-81.879083],[-154.423818,-81.838474],[-154.351918,-81.8235],[-154.09085,-81.807875],[-153.829783,-81.79225],[-153.758046,-81.776625],[-153.692372,-81.747003],[-153.718699,-81.736261],[-153.790354,-81.691013],[-153.816396,-81.681248],[-153.844838,-81.677911],[-153.983225,-81.676935],[-154.005808,-81.668715],[-154.034617,-81.653578],[-154.064809,-81.643243],[-154.298451,-81.608819],[-154.313425,-81.601332],[-154.342152,-81.582452],[-154.357859,-81.574884],[-154.410024,-81.562107],[-154.819203,-81.533624],[-154.996571,-81.48919],[-155.408599,-81.461619],[-155.820627,-81.434047],[-156.232655,-81.406476],[-156.644683,-81.378904],[-157.056711,-81.351332],[-157.145863,-81.319024],[-157.1433,-81.308689],[-157.138254,-81.300063],[-157.122914,-81.284356],[-157.095815,-81.266371],[-157.063914,-81.255792],[-156.757029,-81.202244],[-156.450144,-81.148696],[-155.960025,-81.136],[-155.469906,-81.123305],[-154.979787,-81.11061],[-154.489668,-81.097914],[-153.999549,-81.085219],[-153.509429,-81.072524],[-153.01931,-81.059828],[-152.529191,-81.047133],[-152.039072,-81.034438],[-151.548953,-81.021742],[-151.058834,-81.009047],[-150.568715,-80.996352],[-150.078596,-80.983657],[-149.588477,-80.970961],[-149.098358,-80.958266],[-148.608239,-80.945571],[-148.11812,-80.932875],[-147.628,-80.92018],[-147.584788,-80.907403],[-147.548329,-80.886895],[-147.582753,-80.86061],[-147.625559,-80.847263],[-147.938791,-80.834893],[-148.252024,-80.822524],[-148.298777,-80.813084],[-148.090932,-80.807061],[-148.180165,-80.791925],[-148.451527,-80.782159],[-148.430002,-80.776056],[-148.408762,-80.772882],[-148.364817,-80.770929],[-148.406606,-80.746026],[-148.75829,-80.737074],[-149.109975,-80.728123],[-149.461659,-80.719171],[-149.173431,-80.709893],[-148.885203,-80.700616],[-149.165354,-80.691908],[-149.445505,-80.683201],[-149.422475,-80.682224],[-149.378977,-80.667657],[-149.354929,-80.663263],[-149.035593,-80.661228],[-149.248362,-80.642836],[-149.190256,-80.62656],[-148.723968,-80.631443],[-148.25768,-80.636326],[-148.343332,-80.624933],[-148.616058,-80.623061],[-148.888783,-80.621189],[-148.990468,-80.594496],[-149.018748,-80.591485],[-149.349619,-80.590753],[-149.680491,-80.59002],[-149.72704,-80.582452],[-149.502675,-80.56878],[-149.574656,-80.55755],[-149.794545,-80.553806],[-149.62267,-80.537042],[-149.665151,-80.527032],[-149.950531,-80.52752],[-150.235911,-80.528009],[-150.322133,-80.514825],[-150.271677,-80.495864],[-150.08491,-80.49627],[-150.448679,-80.45615],[-150.435048,-80.446384],[-150.419871,-80.440118],[-150.403635,-80.437188],[-150.38683,-80.437107],[-150.422231,-80.42962],[-150.716908,-80.429539],[-151.011586,-80.429457],[-150.945017,-80.411228],[-150.723256,-80.412774],[-150.890818,-80.398045],[-150.429534,-80.395888],[-149.968251,-80.393731],[-150.016428,-80.379083],[-150.212148,-80.355076],[-150.30134,-80.330662],[-150.395457,-80.316339],[-150.725779,-80.320408],[-150.571889,-80.305841],[-150.60912,-80.269708],[-150.674672,-80.253676],[-150.803212,-80.245538],[-150.726267,-80.216485],[-150.644724,-80.211602],[-150.477284,-80.221938],[-150.133738,-80.185724],[-150.155873,-80.16253],[-150.180165,-80.144138],[-150.207631,-80.130548],[-150.311594,-80.108657],[-150.347279,-80.095961],[-150.3697,-80.07464],[-149.985799,-80.0888],[-149.601898,-80.10296],[-149.217997,-80.11712],[-148.834096,-80.13128],[-148.828725,-80.129002],[-148.824574,-80.1242],[-148.818227,-80.112888],[-148.811594,-80.106703],[-148.802927,-80.104099],[-148.663035,-80.09352],[-148.546213,-80.071547],[-148.050486,-80.061375],[-147.554758,-80.051202],[-147.609527,-80.040297],[-148.032297,-80.03224],[-148.455068,-80.024184],[-148.511708,-80.007989],[-148.195363,-80.005507],[-147.879018,-80.003025],[-147.934967,-79.985447],[-148.273278,-79.981161],[-148.611589,-79.976875],[-148.9499,-79.972589],[-148.905588,-79.963067],[-148.549936,-79.967177],[-148.194285,-79.971287],[-148.249379,-79.962823],[-148.646962,-79.954034],[-148.580271,-79.94964],[-148.514882,-79.93613],[-148.536814,-79.928806],[-148.608998,-79.923272],[-148.582346,-79.916274],[-148.499867,-79.912856],[-148.847768,-79.900567],[-148.831248,-79.894627],[-148.814036,-79.892267],[-148.778798,-79.89186],[-148.880605,-79.873305],[-148.971547,-79.870212],[-148.999745,-79.860772],[-148.704091,-79.863946],[-148.518625,-79.886814],[-148.043772,-79.890232],[-148.078806,-79.905857],[-148.207509,-79.906834],[-148.156931,-79.917576],[-147.994049,-79.91725],[-148.028757,-79.929132],[-147.976918,-79.937677],[-147.56609,-79.941786],[-147.155263,-79.945896],[-147.181793,-79.917413],[-147.067128,-79.908624],[-147.116078,-79.899998],[-147.168568,-79.896661],[-147.270904,-79.901625],[-147.341379,-79.921482],[-147.368031,-79.924981],[-147.392445,-79.925388],[-147.570139,-79.899998],[-147.89745,-79.901137],[-147.863759,-79.889907],[-147.585194,-79.874607],[-148.059031,-79.835056],[-148.141184,-79.810805],[-148.014638,-79.814386],[-147.982737,-79.811619],[-147.919789,-79.798923],[-147.888824,-79.80047],[-147.945668,-79.786554],[-147.773101,-79.779474],[-148.182512,-79.748386],[-148.591922,-79.717299],[-149.001332,-79.686212],[-149.072499,-79.666111],[-149.039744,-79.649102],[-149.092397,-79.630304],[-149.543894,-79.606595],[-149.995391,-79.582886],[-150.446889,-79.559177],[-150.534413,-79.534112],[-151.0242,-79.470229],[-151.513987,-79.406345],[-152.003774,-79.342462],[-151.866567,-79.313409],[-151.757883,-79.277927],[-151.736033,-79.274509],[-151.695261,-79.27337],[-151.654897,-79.267673],[-151.697987,-79.251642],[-151.748158,-79.246759],[-152.214223,-79.310154],[-152.264882,-79.309177],[-152.316151,-79.298761],[-152.414174,-79.26393],[-152.31196,-79.236423],[-151.989573,-79.204034],[-152.107004,-79.20143],[-151.975087,-79.170343],[-151.982045,-79.165948],[-151.995107,-79.155369],[-152.002065,-79.150974],[-151.720082,-79.083754],[-151.785512,-79.080987],[-152.074778,-79.107192],[-152.106191,-79.105727],[-152.222117,-79.074802],[-152.256825,-79.077081],[-152.232004,-79.098565],[-152.234242,-79.110935],[-152.337514,-79.142673],[-152.564443,-79.175063],[-152.591624,-79.172459],[-152.614125,-79.15602],[-152.704661,-79.113865],[-152.935007,-79.170099],[-153.038523,-79.151544],[-153.079335,-79.139418],[-153.551951,-79.113254],[-154.024566,-79.087091],[-154.497182,-79.060927],[-154.969797,-79.034763],[-155.008005,-79.020685],[-155.040639,-78.99977],[-155.052724,-78.994073],[-155.42161,-78.911472],[-155.790496,-78.828871],[-156.159383,-78.74627],[-156.528269,-78.66367],[-156.546742,-78.650811],[-156.549998,-78.62363],[-156.52953,-78.605239],[-156.499257,-78.594334],[-156.087595,-78.557306],[-156.039377,-78.542087],[-156.054921,-78.526544],[-156.073679,-78.51686],[-156.116038,-78.507582],[-156.052846,-78.494073],[-155.706451,-78.485718],[-155.360056,-78.477363],[-155.013661,-78.469008],[-154.978261,-78.456964],[-155.050282,-78.425877],[-154.890859,-78.423923],[-154.796498,-78.448663],[-154.730336,-78.454685],[-154.522898,-78.434015],[-154.582143,-78.416925],[-154.509755,-78.406183],[-154.361399,-78.405369],[-154.290842,-78.38893],[-154.332631,-78.374119],[-154.303538,-78.352227],[-154.181101,-78.335219],[-154.209706,-78.309666],[-154.2353,-78.28102],[-154.136586,-78.248305],[-153.917958,-78.249444],[-153.815053,-78.233168],[-154.209706,-78.221775],[-154.221059,-78.219008],[-154.236521,-78.211358],[-154.244456,-78.20322],[-154.251169,-78.194024],[-154.263132,-78.184177],[-154.277781,-78.177179],[-154.319569,-78.169203],[-154.332753,-78.162856],[-154.357249,-78.146091],[-154.369374,-78.140069],[-154.396189,-78.135919],[-154.567942,-78.134373],[-154.717722,-78.153985],[-154.650502,-78.175226],[-154.667226,-78.184503],[-154.752146,-78.208917],[-154.759511,-78.214125],[-154.767079,-78.22975],[-154.774119,-78.23447],[-155.119985,-78.257013],[-155.21406,-78.246352],[-155.251576,-78.205011],[-155.09199,-78.193536],[-154.977651,-78.20672],[-154.996042,-78.191827],[-155.026438,-78.160333],[-155.042673,-78.153985],[-155.18163,-78.16253],[-155.27363,-78.192315],[-155.322743,-78.199884],[-155.346669,-78.195896],[-155.396108,-78.176853],[-155.421498,-78.170831],[-155.448191,-78.17254],[-155.494252,-78.189223],[-155.519154,-78.194106],[-155.746897,-78.203871],[-155.933217,-78.188735],[-156.02717,-78.199151],[-156.348012,-78.199884],[-156.37328,-78.194513],[-156.445261,-78.168145],[-156.452382,-78.160903],[-156.452952,-78.145685],[-156.569692,-78.151137],[-156.625234,-78.142836],[-156.648549,-78.14544],[-156.679758,-78.15838],[-156.672922,-78.160089],[-156.659495,-78.166436],[-156.652699,-78.168552],[-156.681833,-78.193943],[-156.740915,-78.213311],[-156.967397,-78.253351],[-157.199574,-78.252699],[-157.257192,-78.241143],[-157.353831,-78.195896],[-157.668731,-78.124404],[-157.983632,-78.052911],[-158.007802,-78.042576],[-158.057973,-78.014337],[-158.088816,-78.005304],[-158.180043,-78.006117],[-158.253285,-77.981703],[-158.311106,-77.980645],[-158.343861,-77.974379],[-158.375071,-77.963149],[-158.401845,-77.9485],[-158.422678,-77.930108],[-158.437367,-77.912856],[-158.455027,-77.899347],[-158.637074,-77.864516],[-158.639963,-77.848565],[-158.624623,-77.829767],[-158.533437,-77.764907],[-158.511057,-77.756931],[-158.453806,-77.746026],[-158.426951,-77.736261],[-158.400828,-77.722263],[-158.381174,-77.704278],[-158.345652,-77.656915],[-158.3249,-77.636489],[-158.274363,-77.615818],[-158.157338,-77.590102],[-158.118113,-77.555841],[-158.286326,-77.51393],[-158.253367,-77.483982],[-158.218699,-77.462823],[-158.140207,-77.427911],[-158.181508,-77.400486],[-158.291819,-77.375584],[-158.329457,-77.342869],[-158.325388,-77.296075],[-158.280832,-77.257582],[-158.17748,-77.205824],[-158.208445,-77.182794],[-158.224355,-77.174737],[-158.282175,-77.153904],[-158.301625,-77.14365],[-158.311716,-77.13242],[-158.300893,-77.105645],[-158.264475,-77.086196],[-158.220204,-77.073663],[-157.925404,-77.056329],[-157.843088,-77.074965],[-157.693308,-77.142755],[-157.627878,-77.152032],[-157.609364,-77.158298],[-157.594309,-77.169203],[-157.584543,-77.179295],[-157.573069,-77.187107],[-157.511667,-77.201837],[-157.394032,-77.250746],[-157.250722,-77.273045],[-157.263539,-77.278253],[-157.277089,-77.281508],[-157.291005,-77.28281],[-157.304921,-77.281996],[-157.256337,-77.302179],[-157.083079,-77.351251],[-157.02184,-77.358657],[-157.005238,-77.355564],[-156.980824,-77.342462],[-156.92988,-77.353936],[-156.90331,-77.348403],[-156.896962,-77.337823],[-156.899241,-77.327081],[-156.896067,-77.319268],[-156.821278,-77.319106],[-156.467112,-77.260675],[-156.511667,-77.247735],[-156.69636,-77.234959],[-156.736684,-77.225518],[-156.810984,-77.191502],[-156.833567,-77.187677],[-156.782338,-77.165785],[-156.655141,-77.157159],[-156.590281,-77.1124],[-156.51061,-77.105239],[-156.414662,-77.077895],[-156.323842,-77.066095],[-155.865549,-77.059747],[-155.695017,-77.08172],[-155.58259,-77.113214],[-155.499989,-77.16131],[-155.475046,-77.167901],[-155.356882,-77.164972],[-155.329945,-77.169854],[-155.315785,-77.17018],[-155.308827,-77.163832],[-155.308705,-77.150323],[-155.305857,-77.136489],[-155.290517,-77.128839],[-154.894399,-77.103692],[-154.839101,-77.1124],[-154.816355,-77.122491],[-154.774973,-77.147638],[-154.750315,-77.153497],[-154.405222,-77.152927],[-154.195627,-77.175877],[-154.16865,-77.184259],[-154.12446,-77.207452],[-154.096791,-77.2138],[-153.815419,-77.233982],[-153.534047,-77.254164],[-153.317209,-77.338149],[-153.379018,-77.380792],[-153.455393,-77.39837],[-153.9051,-77.405206],[-153.941843,-77.415948],[-153.907053,-77.434991],[-153.862416,-77.44256],[-153.555226,-77.444513],[-153.248036,-77.446466],[-153.080637,-77.473077],[-152.996327,-77.472426],[-152.934641,-77.480157],[-152.915476,-77.47796],[-152.872426,-77.467869],[-152.851674,-77.466078],[-152.828562,-77.467869],[-152.808827,-77.472345],[-152.771962,-77.485772],[-152.752634,-77.49033],[-152.575429,-77.502048],[-152.579579,-77.482843],[-152.588979,-77.466974],[-152.614939,-77.438572],[-152.580556,-77.426039],[-152.476389,-77.407892],[-152.50239,-77.387465],[-152.467885,-77.342055],[-152.485463,-77.319106],[-152.418568,-77.304376],[-152.350697,-77.302667],[-152.216868,-77.324477],[-152.185658,-77.333185],[-152.175649,-77.339288],[-152.133534,-77.375746],[-152.119252,-77.383559],[-152.096547,-77.391046],[-152.060862,-77.395278],[-151.98762,-77.387953],[-151.514597,-77.416436],[-151.371165,-77.450616],[-151.416737,-77.474705],[-151.440623,-77.483494],[-151.466135,-77.486505],[-151.420888,-77.508966],[-151.001088,-77.558526],[-150.911814,-77.590753],[-150.45405,-77.680597],[-150.425282,-77.689874],[-150.374257,-77.71795],[-150.318349,-77.736017],[-150.272898,-77.765802],[-150.24767,-77.773126],[-150.09907,-77.779229],[-150.052113,-77.791599],[-150.003611,-77.810968],[-149.974965,-77.816176],[-149.856801,-77.820082],[-149.61559,-77.802423],[-149.502431,-77.772556],[-149.24531,-77.757501],[-149.262074,-77.752618],[-149.303538,-77.727716],[-149.322865,-77.722752],[-149.383127,-77.719334],[-149.401194,-77.713637],[-149.434031,-77.696873],[-149.450917,-77.691013],[-149.508372,-77.677179],[-149.526194,-77.669041],[-149.59081,-77.649347],[-149.81428,-77.647882],[-149.802439,-77.644708],[-149.790151,-77.642755],[-149.777903,-77.642348],[-149.765574,-77.643243],[-149.770863,-77.639093],[-149.785471,-77.624607],[-149.643056,-77.608494],[-149.498525,-77.60947],[-149.22763,-77.658461],[-148.956736,-77.707452],[-148.884511,-77.707208],[-148.673695,-77.6749],[-148.801503,-77.583754],[-148.781606,-77.579848],[-148.790028,-77.575779],[-148.806223,-77.565606],[-148.814687,-77.561456],[-148.752146,-77.552016],[-148.559397,-77.559991],[-148.289032,-77.527887],[-148.018666,-77.495782],[-147.871734,-77.498956],[-147.79308,-77.49033],[-147.758209,-77.461684],[-148.179094,-77.420397],[-148.599979,-77.37911],[-149.020863,-77.337823],[-149.041005,-77.333103],[-149.055531,-77.320245],[-149.062082,-77.293878],[-149.05012,-77.275649],[-149.027455,-77.26393],[-149.001902,-77.257257],[-148.802724,-77.234308],[-148.971181,-77.227472],[-148.956288,-77.213637],[-148.913523,-77.186456],[-148.86738,-77.137384],[-148.851186,-77.125746],[-148.811838,-77.112074],[-148.769724,-77.10475],[-148.513051,-77.107599],[-148.179941,-77.185683],[-147.846832,-77.263767],[-147.769928,-77.311782],[-147.777943,-77.369724],[-147.701161,-77.409438],[-147.661448,-77.423028],[-147.621327,-77.417413],[-147.693227,-77.372979],[-147.714263,-77.355564],[-147.68692,-77.349054],[-147.660024,-77.356703],[-147.606516,-77.384047],[-147.579579,-77.385349],[-147.490549,-77.353692],[-147.391713,-77.340997],[-147.296702,-77.316176],[-147.266469,-77.313084],[-147.233022,-77.313735],[-147.263824,-77.286716],[-147.275217,-77.269301],[-147.26415,-77.259535],[-146.976186,-77.235935],[-146.889801,-77.255792],[-146.468984,-77.439874],[-146.396596,-77.495212],[-146.375111,-77.503106],[-146.353505,-77.504002],[-146.309885,-77.499933],[-146.025502,-77.51922],[-145.932607,-77.500095],[-145.968739,-77.496515],[-145.985341,-77.491306],[-145.999664,-77.480076],[-145.786977,-77.478123],[-145.498402,-77.52516],[-145.462799,-77.523207],[-145.42984,-77.506606],[-145.437327,-77.504164],[-145.451894,-77.497166],[-145.459381,-77.494806],[-145.447255,-77.48797],[-145.434193,-77.483005],[-145.420562,-77.480076],[-145.406646,-77.479262],[-145.558176,-77.451267],[-145.568959,-77.445896],[-145.568593,-77.439874],[-145.565663,-77.433364],[-145.569,-77.427016],[-145.665354,-77.385675],[-145.734731,-77.368748],[-145.955068,-77.363377],[-145.937367,-77.36004],[-145.902455,-77.34824],[-145.88565,-77.345961],[-145.809804,-77.347914],[-145.830881,-77.33766],[-145.853505,-77.332615],[-145.90038,-77.32879],[-145.894928,-77.325616],[-145.884674,-77.317641],[-145.879303,-77.314386],[-145.938954,-77.27988],[-145.964467,-77.25449],[-145.95344,-77.233087],[-145.920033,-77.227309],[-145.885732,-77.233982],[-145.851226,-77.244806],[-145.817209,-77.25156],[-145.709096,-77.243422],[-145.564076,-77.25156],[-145.555979,-77.250258],[-145.550201,-77.247003],[-145.540517,-77.238702],[-145.534576,-77.23561],[-145.52538,-77.234552],[-145.427235,-77.247003],[-145.245961,-77.232354],[-145.275014,-77.221124],[-145.605946,-77.143731],[-145.936879,-77.066339],[-145.973256,-77.063409],[-146.049631,-77.066339],[-146.162913,-77.058526],[-146.309071,-77.030206],[-146.381418,-77.003106],[-146.319244,-76.990492],[-145.927622,-77.0228],[-145.536,-77.055108],[-145.531117,-77.059177],[-145.527333,-77.073337],[-145.524078,-77.077244],[-145.506947,-77.079522],[-145.345367,-77.057061],[-145.309967,-77.058689],[-145.328277,-77.040134],[-145.361684,-77.028416],[-145.569325,-76.982599],[-145.545237,-76.969985],[-145.546702,-76.947849],[-145.565175,-76.926528],[-145.592519,-76.916762],[-145.810374,-76.919854],[-145.882436,-76.908298],[-145.914866,-76.897556],[-145.947743,-76.880141],[-145.963612,-76.857517],[-145.945058,-76.830255],[-145.913564,-76.817966],[-145.878245,-76.816827],[-145.809682,-76.827244],[-145.739491,-76.82822],[-145.524403,-76.798923],[-145.511057,-76.795343],[-145.487904,-76.781508],[-145.475738,-76.778497],[-145.398346,-76.779474],[-145.462636,-76.751642],[-145.53425,-76.73797],[-145.822113,-76.723565],[-146.109975,-76.709161],[-146.125478,-76.704767],[-146.137522,-76.699314],[-146.185129,-76.66253],[-146.310902,-76.63006],[-146.344635,-76.626723],[-146.416615,-76.627374],[-146.450307,-76.617852],[-146.470123,-76.592706],[-146.432688,-76.570245],[-146.412831,-76.561944],[-146.391225,-76.558689],[-146.446441,-76.547784],[-146.618072,-76.532403],[-147.081695,-76.432794],[-147.560618,-76.440647],[-148.03954,-76.4485],[-148.11498,-76.463637],[-148.195424,-76.465509],[-148.45283,-76.506036],[-148.848473,-76.480673],[-149.244116,-76.455309],[-149.63976,-76.429946],[-149.687693,-76.416436],[-149.71406,-76.397719],[-149.708974,-76.376723],[-149.686269,-76.356052],[-149.659779,-76.338149],[-149.606313,-76.313897],[-149.545766,-76.300388],[-149.483347,-76.293227],[-149.033274,-76.301935],[-148.874094,-76.26572],[-148.539662,-76.228285],[-148.645823,-76.20908],[-148.690297,-76.191502],[-148.68928,-76.161065],[-148.648671,-76.134698],[-148.59142,-76.116876],[-148.425404,-76.089451],[-148.197092,-76.087091],[-147.852881,-76.135458],[-147.50867,-76.183825],[-147.164459,-76.232192],[-147.17691,-76.237726],[-147.189768,-76.241143],[-147.202952,-76.242283],[-147.216298,-76.240899],[-147.167307,-76.257582],[-146.956654,-76.298923],[-146.760976,-76.31227],[-146.597564,-76.359633],[-146.571604,-76.355239],[-146.546783,-76.340265],[-146.521108,-76.329197],[-146.494456,-76.326755],[-146.466461,-76.338067],[-146.418365,-76.375665],[-146.393056,-76.390232],[-146.250722,-76.423761],[-146.222239,-76.421319],[-146.169179,-76.408624],[-146.005442,-76.416762],[-145.934071,-76.442804],[-145.718373,-76.464939],[-145.354644,-76.434503],[-145.381744,-76.409763],[-145.479075,-76.353936],[-145.504628,-76.330255],[-145.517974,-76.321954],[-145.538645,-76.315525],[-145.909088,-76.25921],[-146.204355,-76.17311],[-146.499623,-76.087009],[-146.469553,-76.063084],[-146.437652,-76.050063],[-146.363393,-76.037856],[-146.367421,-76.032403],[-146.373647,-76.019708],[-146.377594,-76.014337],[-146.290517,-75.994806],[-146.29426,-75.98797],[-146.29955,-75.972345],[-146.303456,-75.965509],[-146.209218,-75.91546],[-145.950836,-75.882582],[-145.565582,-75.894871],[-145.180328,-75.907159],[-145.213612,-75.893487],[-145.185211,-75.883233],[-145.057281,-75.875177],[-144.891225,-75.840916],[-144.590403,-75.843357],[-144.387929,-75.812677],[-144.320465,-75.814223],[-144.271108,-75.823907],[-144.221303,-75.821222],[-144.204701,-75.817641],[-144.177317,-75.803969],[-144.16039,-75.803969],[-144.204701,-75.749444],[-144.21052,-75.734633],[-144.202504,-75.71852],[-144.187815,-75.712823],[-143.971832,-75.696059],[-143.995595,-75.6749],[-144.047353,-75.666436],[-144.199045,-75.661228],[-144.307607,-75.642348],[-144.357249,-75.623956],[-144.30606,-75.614516],[-144.088979,-75.61419],[-143.740407,-75.576226],[-143.391835,-75.538263],[-143.035634,-75.550022],[-142.679433,-75.561782],[-142.654937,-75.558689],[-142.639963,-75.552423],[-142.628245,-75.545587],[-142.616078,-75.540216],[-142.59968,-75.538018],[-142.557444,-75.542087],[-142.544911,-75.54046],[-142.53718,-75.536798],[-142.528635,-75.53102],[-142.514027,-75.518813],[-142.533803,-75.504653],[-142.549631,-75.488458],[-142.578236,-75.451267],[-142.526357,-75.437595],[-142.46703,-75.431736],[-142.130198,-75.46087],[-142.031239,-75.495538],[-141.911855,-75.503595],[-141.861399,-75.521173],[-141.736318,-75.626397],[-141.690541,-75.653741],[-141.674062,-75.670343],[-141.661733,-75.695245],[-141.64745,-75.706801],[-141.591664,-75.730727],[-141.554026,-75.761651],[-141.52717,-75.767511],[-141.427805,-75.765883],[-141.416249,-75.764093],[-141.398549,-75.753676],[-141.389556,-75.744399],[-141.379506,-75.739516],[-141.301747,-75.750746],[-140.912953,-75.762384],[-140.897369,-75.767022],[-140.858754,-75.792413],[-140.842519,-75.797784],[-140.82608,-75.801039],[-140.646474,-75.807224],[-140.776479,-75.74391],[-140.753733,-75.741143],[-140.684885,-75.746026],[-140.837229,-75.682875],[-141.238433,-75.598728],[-141.298166,-75.566176],[-141.326527,-75.526788],[-141.298818,-75.501642],[-141.230458,-75.492364],[-140.92748,-75.511489],[-140.869374,-75.525567],[-140.819651,-75.530938],[-140.548329,-75.481744],[-140.277008,-75.43255],[-140.217356,-75.410252],[-140.198557,-75.392511],[-140.218821,-75.375177],[-140.18932,-75.355157],[-140.157053,-75.34059],[-139.849721,-75.240655],[-139.814849,-75.235447],[-139.767405,-75.236261],[-139.756947,-75.234063],[-139.736643,-75.227146],[-139.674184,-75.21852],[-139.676991,-75.196384],[-139.659413,-75.176365],[-139.633534,-75.16131],[-139.611236,-75.153497],[-139.56664,-75.148045],[-139.35143,-75.147719],[-139.204254,-75.124933],[-139.03425,-75.14072],[-138.657596,-75.129002],[-138.280941,-75.117283],[-137.904286,-75.105564],[-137.848704,-75.09588],[-137.785959,-75.069594],[-137.763336,-75.062921],[-137.74234,-75.060642],[-137.477447,-75.088149],[-137.094879,-75.179864],[-137.071645,-75.177911],[-137.055084,-75.167657],[-137.039215,-75.155206],[-137.018381,-75.146091],[-136.995229,-75.144789],[-136.918935,-75.156183],[-136.632476,-75.167006],[-136.346018,-75.17783],[-136.362416,-75.157892],[-136.381988,-75.146091],[-136.430084,-75.133884],[-136.406606,-75.128106],[-136.335032,-75.125421],[-136.374379,-75.108087],[-136.625986,-75.073134],[-136.877594,-75.038181],[-136.964752,-75.013604],[-137.009877,-75.009861],[-136.997629,-75.007257],[-136.958567,-74.993097],[-136.88561,-74.981378],[-136.872548,-74.975274],[-136.864329,-74.964614],[-136.863108,-74.947931],[-136.868967,-74.930922],[-136.887196,-74.899835],[-136.891225,-74.880304],[-136.889394,-74.869887],[-136.885406,-74.862563],[-136.882436,-74.85475],[-136.884877,-74.828302],[-136.881703,-74.816664],[-136.866811,-74.792576],[-136.834299,-74.760431],[-136.794301,-74.749933],[-136.565297,-74.758559],[-136.417795,-74.73919],[-136.349273,-74.717706],[-136.224843,-74.70143],[-136.122955,-74.701104],[-135.936147,-74.723565],[-135.874745,-74.746189],[-135.856068,-74.74977],[-135.716054,-74.7492],[-135.701812,-74.747328],[-135.691518,-74.741876],[-135.681508,-74.734552],[-135.668202,-74.727797],[-135.647817,-74.713474],[-135.656646,-74.699477],[-135.700103,-74.677992],[-135.633778,-74.640558],[-135.495473,-74.581231],[-135.419993,-74.565118],[-135.342397,-74.560154],[-134.930511,-74.601699],[-134.518625,-74.643243],[-134.488922,-74.657485],[-134.501373,-74.676853],[-134.523305,-74.693455],[-134.570872,-74.717055],[-134.586252,-74.736261],[-134.568105,-74.756117],[-134.537465,-74.772393],[-134.515248,-74.780857],[-134.392242,-74.801528],[-134.373036,-74.8117],[-134.377553,-74.829197],[-134.39509,-74.847345],[-134.414703,-74.858982],[-134.355621,-74.870375],[-134.238149,-74.855645],[-134.176137,-74.854913],[-134.090403,-74.881036],[-134.05899,-74.884942],[-133.929189,-74.88421],[-133.943227,-74.887791],[-133.953725,-74.895766],[-133.956614,-74.907159],[-133.94811,-74.920343],[-133.938222,-74.924005],[-133.865549,-74.928318],[-133.591888,-74.881606],[-133.318227,-74.834893],[-133.199818,-74.840265],[-132.791168,-74.76865],[-132.76122,-74.768487],[-132.739003,-74.776788],[-132.715647,-74.792576],[-132.690012,-74.803481],[-132.635732,-74.818943],[-132.578725,-74.825779],[-132.093129,-74.763279],[-131.778798,-74.780938],[-131.574086,-74.84352],[-131.555409,-74.845961],[-131.284108,-74.831231],[-131.012807,-74.816502],[-130.974843,-74.828302],[-130.954661,-74.83115],[-130.815826,-74.815688],[-130.770416,-74.823337],[-130.741933,-74.835626],[-130.731923,-74.838637],[-130.353505,-74.87595],[-129.975087,-74.913263],[-129.624867,-74.877008],[-129.274648,-74.840753],[-129.263254,-74.837823],[-129.239125,-74.823907],[-129.22761,-74.820571],[-129.186838,-74.82643],[-128.711497,-74.822524],[-128.650217,-74.812921],[-128.532704,-74.773045],[-128.473012,-74.763442],[-128.005035,-74.741306],[-127.992991,-74.737074],[-127.971262,-74.721449],[-127.959137,-74.717706],[-127.902089,-74.718438],[-127.850494,-74.726332],[-127.839182,-74.723565],[-127.810862,-74.708429],[-127.795969,-74.703871],[-127.740468,-74.70436],[-127.629872,-74.719822],[-127.352366,-74.706801],[-127.324086,-74.701267],[-127.270823,-74.684015],[-127.24474,-74.680108],[-127.125803,-74.689711],[-126.939076,-74.67669],[-126.878041,-74.682387],[-126.797109,-74.70436],[-126.676137,-74.719985],[-126.594635,-74.742446],[-126.113433,-74.761489],[-126.05606,-74.748224],[-126.025299,-74.747166],[-125.961415,-74.753188],[-125.933583,-74.752537],[-125.821401,-74.728123],[-125.768463,-74.707778],[-125.740061,-74.704767],[-125.338002,-74.709934],[-124.935943,-74.715102],[-124.85436,-74.733168],[-124.826324,-74.736017],[-124.47643,-74.713637],[-124.436106,-74.721124],[-124.423004,-74.721449],[-124.408518,-74.718357],[-124.380605,-74.70908],[-124.365631,-74.706964],[-124.307362,-74.712335],[-124.199859,-74.747328],[-124.076283,-74.807061],[-124.05134,-74.81113],[-123.758738,-74.796482],[-123.466135,-74.781834],[-123.344146,-74.756443],[-123.217844,-74.755629],[-123.224436,-74.774835],[-123.169545,-74.788995],[-123.118235,-74.796319],[-123.009877,-74.796482],[-122.836252,-74.76572],[-122.723378,-74.776056],[-122.454823,-74.753351],[-122.423573,-74.755141],[-122.333119,-74.776625],[-122.305531,-74.7763],[-122.227935,-74.75628],[-122.200022,-74.753839],[-122.003896,-74.77516],[-121.912831,-74.765558],[-121.829416,-74.784112],[-121.802073,-74.786554],[-121.772532,-74.786065],[-121.765045,-74.781996],[-121.754628,-74.764255],[-121.743479,-74.757094],[-121.715688,-74.751072],[-121.701405,-74.750258],[-121.635894,-74.759047],[-121.474924,-74.755792],[-121.460561,-74.752699],[-121.443227,-74.738051],[-121.433827,-74.73504],[-121.254628,-74.724705],[-121.26887,-74.733982],[-121.284413,-74.740818],[-121.300852,-74.745212],[-121.317698,-74.747735],[-121.262115,-74.756524],[-121.203114,-74.755955],[-121.145497,-74.74505],[-121.094106,-74.72324],[-121.071645,-74.716404],[-121.043365,-74.716078],[-121.016469,-74.721856],[-120.975657,-74.746352],[-120.946645,-74.747817],[-120.829335,-74.739841],[-120.71703,-74.713311],[-120.435496,-74.6867],[-120.153961,-74.660089],[-120.042714,-74.677423],[-119.897328,-74.681899],[-119.543772,-74.642267],[-119.421051,-74.657647],[-119.401438,-74.654962],[-119.380849,-74.646254],[-119.34081,-74.622735],[-119.321156,-74.616632],[-119.134999,-74.598077],[-119.054514,-74.605157],[-118.982289,-74.59531],[-118.910471,-74.602716],[-118.867055,-74.602472],[-118.679596,-74.563735],[-118.62914,-74.54518],[-118.616526,-74.522231],[-118.647084,-74.509454],[-119.138254,-74.503351],[-119.069651,-74.43963],[-118.975494,-74.404229],[-118.549692,-74.358494],[-118.123891,-74.312758],[-118.037262,-74.283136],[-117.993642,-74.262872],[-117.970815,-74.258071],[-117.946929,-74.261],[-117.92276,-74.272149],[-117.849192,-74.316339],[-117.841135,-74.33766],[-117.883616,-74.362888],[-117.978139,-74.399835],[-117.91393,-74.41961],[-117.89151,-74.420099],[-117.835927,-74.411879],[-117.809193,-74.414727],[-117.792836,-74.43141],[-117.882721,-74.469822],[-117.843984,-74.510024],[-117.785756,-74.517511],[-117.662343,-74.503351],[-117.604075,-74.509373],[-117.48998,-74.534763],[-117.341217,-74.546808],[-117.142445,-74.534845],[-116.693471,-74.557875],[-116.51887,-74.517673],[-116.46288,-74.511163],[-116.296051,-74.51922],[-116.211903,-74.494561],[-116.186757,-74.49627],[-116.151845,-74.504164],[-116.050201,-74.497328],[-116.084869,-74.479669],[-116.097524,-74.466892],[-116.100982,-74.447686],[-116.095367,-74.430108],[-116.084137,-74.419122],[-116.069244,-74.412042],[-116.052398,-74.406508],[-115.980295,-74.391778],[-115.906728,-74.385431],[-115.918446,-74.398207],[-115.927154,-74.410252],[-115.928212,-74.422459],[-115.917104,-74.435968],[-115.888295,-74.455987],[-115.793568,-74.501153],[-115.726674,-74.521742],[-115.649322,-74.530938],[-115.41686,-74.511163],[-115.237172,-74.515069],[-115.023915,-74.482517],[-114.874338,-74.481622],[-114.83849,-74.471449],[-114.853668,-74.463637],[-114.869985,-74.451349],[-114.883656,-74.436619],[-114.891103,-74.421157],[-114.891103,-74.398207],[-114.880605,-74.387872],[-114.863149,-74.385024],[-114.842397,-74.385024],[-114.853749,-74.377862],[-114.865549,-74.373712],[-114.891184,-74.369236],[-114.902821,-74.364435],[-114.923085,-74.348077],[-114.934722,-74.34352],[-114.969716,-74.336358],[-114.994496,-74.32464],[-115.067983,-74.256443],[-115.075673,-74.244724],[-115.091461,-74.205824],[-115.123769,-74.173028],[-115.126088,-74.151056],[-115.110951,-74.131036],[-115.082672,-74.11297],[-115.124867,-74.094903],[-115.022206,-74.046645],[-114.912913,-74.01686],[-114.944976,-73.994399],[-114.813344,-73.963637],[-114.796864,-73.938897],[-114.733998,-73.926853],[-114.50536,-73.920017],[-114.45108,-73.90781],[-114.374379,-73.881524],[-114.210032,-73.863458],[-114.18224,-73.866957],[-114.101715,-73.892022],[-113.951772,-73.914646],[-113.977447,-73.948337],[-114.011301,-73.968357],[-114.286,-74.059177],[-114.24234,-74.078302],[-114.18814,-74.077081],[-113.892486,-74.022719],[-113.611195,-74.02516],[-113.583404,-74.028497],[-113.562001,-74.035252],[-113.439605,-74.099705],[-113.426137,-74.119887],[-113.445546,-74.126642],[-113.447011,-74.142755],[-113.437001,-74.16131],[-113.422027,-74.1749],[-113.883209,-74.237074],[-113.947825,-74.256443],[-113.919423,-74.265395],[-113.804555,-74.276625],[-113.749908,-74.273207],[-113.733795,-74.275974],[-113.702382,-74.292087],[-113.68517,-74.296563],[-113.78954,-74.333266],[-113.805328,-74.342706],[-113.809193,-74.355401],[-113.802235,-74.392755],[-113.794911,-74.400567],[-113.779449,-74.405532],[-113.748362,-74.41131],[-113.801259,-74.451837],[-113.731068,-74.469822],[-113.65746,-74.466404],[-113.512441,-74.431248],[-113.225087,-74.402114],[-113.26301,-74.45086],[-113.310943,-74.480727],[-113.563629,-74.554132],[-113.621938,-74.58115],[-113.649281,-74.587986],[-114.059234,-74.628351],[-114.124664,-74.655206],[-114.146108,-74.660414],[-114.325795,-74.681899],[-114.357004,-74.695896],[-114.303822,-74.711358],[-114.265736,-74.716078],[-114.152984,-74.715265],[-113.970855,-74.68255],[-113.915354,-74.679946],[-113.861806,-74.68906],[-113.839752,-74.699151],[-113.826731,-74.712986],[-113.826283,-74.72975],[-113.842397,-74.748712],[-113.860585,-74.759373],[-113.919545,-74.782892],[-113.935618,-74.802016],[-113.954213,-74.859633],[-113.969635,-74.884861],[-114.019032,-74.912205],[-114.142079,-74.935805],[-114.269683,-75.003839],[-114.278066,-75.019708],[-114.262847,-75.042657],[-114.238637,-75.053399],[-114.105784,-75.068943],[-114.080963,-75.066664],[-113.964426,-75.037774],[-113.888295,-75.035903],[-113.863271,-75.0263],[-113.789662,-74.977472],[-113.763417,-74.965916],[-113.734934,-74.960382],[-113.654897,-74.965509],[-113.50121,-74.948012],[-113.443918,-74.948989],[-113.180857,-74.911065],[-112.917795,-74.873142],[-112.867177,-74.875909],[-112.725982,-74.899347],[-112.675771,-74.898045],[-112.656646,-74.889825],[-112.643544,-74.87477],[-112.633697,-74.859959],[-112.624338,-74.852146],[-112.57018,-74.846368],[-112.245758,-74.862563],[-112.229807,-74.853936],[-112.213735,-74.837172],[-112.190338,-74.831313],[-112.139027,-74.826593],[-112.096262,-74.812921],[-112.075754,-74.808852],[-111.809193,-74.80519],[-111.542633,-74.801528],[-111.560211,-74.781345],[-111.557607,-74.762302],[-111.540598,-74.747654],[-111.514963,-74.739923],[-111.55012,-74.722833],[-111.66686,-74.736261],[-111.710439,-74.721449],[-111.754058,-74.684177],[-111.806304,-74.656427],[-111.916819,-74.618422],[-111.911692,-74.602309],[-111.916127,-74.587009],[-111.923248,-74.570571],[-111.926137,-74.551202],[-111.917958,-74.535089],[-111.900461,-74.521905],[-111.862538,-74.503676],[-111.818186,-74.490899],[-111.485219,-74.501072],[-111.41983,-74.485935],[-111.325551,-74.475518],[-111.357533,-74.459242],[-111.478505,-74.455336],[-111.697092,-74.422947],[-111.740793,-74.409763],[-111.782297,-74.390802],[-111.887115,-74.315362],[-111.904775,-74.282403],[-111.877065,-74.252537],[-111.884429,-74.250584],[-111.898915,-74.24391],[-111.906321,-74.241957],[-111.887034,-74.228611],[-111.863759,-74.224867],[-111.815175,-74.222752],[-111.64981,-74.1749],[-111.592641,-74.172459],[-111.453114,-74.185968],[-111.401723,-74.181736],[-111.376291,-74.183852],[-111.346588,-74.189711],[-111.230784,-74.19671],[-111.152455,-74.221287],[-111.046376,-74.239435],[-111.036,-74.244724],[-111.017201,-74.258559],[-111.006256,-74.263442],[-110.945668,-74.269301],[-110.888295,-74.281996],[-110.861806,-74.294366],[-110.84496,-74.312758],[-110.827463,-74.3235],[-110.79662,-74.326755],[-110.764027,-74.32464],[-110.741363,-74.320245],[-110.722646,-74.304132],[-110.689768,-74.252862],[-110.668813,-74.240492],[-110.554921,-74.244073],[-110.448598,-74.271254],[-110.248199,-74.372247],[-110.398915,-74.395196],[-110.445546,-74.409356],[-110.429799,-74.418715],[-110.409535,-74.427179],[-110.370351,-74.438246],[-110.351796,-74.440199],[-110.226633,-74.427179],[-110.19286,-74.432306],[-110.131174,-74.468438],[-110.122182,-74.478285],[-110.123687,-74.482029],[-110.133656,-74.493097],[-110.135325,-74.49684],[-110.130686,-74.503676],[-110.110992,-74.522882],[-110.103139,-74.548598],[-110.11441,-74.577244],[-110.136708,-74.600193],[-110.161733,-74.609552],[-110.218902,-74.606541],[-110.24356,-74.611423],[-110.317047,-74.65545],[-110.320709,-74.666274],[-110.292795,-74.681736],[-110.265981,-74.692804],[-110.248402,-74.704685],[-110.241607,-74.722833],[-110.247222,-74.752537],[-110.263661,-74.768324],[-110.294423,-74.781915],[-110.47232,-74.821873],[-110.593658,-74.831313],[-110.647369,-74.827895],[-110.675445,-74.82936],[-110.697133,-74.8388],[-110.723134,-74.858005],[-110.850209,-74.931085],[-110.934234,-74.955824],[-110.989125,-74.981052],[-111.017893,-74.989028],[-111.256663,-75.019952],[-111.300852,-75.033461],[-111.382721,-75.0735],[-111.526845,-75.108005],[-111.578359,-75.128839],[-111.600738,-75.155206],[-111.518219,-75.153578],[-111.490834,-75.157647],[-111.519928,-75.173435],[-111.618723,-75.197361],[-111.561106,-75.200372],[-111.481068,-75.195733],[-111.462514,-75.200942],[-111.424062,-75.217869],[-111.364125,-75.234308],[-111.304189,-75.240899],[-111.273915,-75.238377],[-111.18932,-75.209893],[-111.129872,-75.202081],[-110.787892,-75.197524],[-110.445912,-75.192966],[-110.418284,-75.19964],[-110.363026,-75.221612],[-110.33788,-75.226658],[-110.172841,-75.23919],[-109.994252,-75.22031],[-109.900217,-75.23211],[-109.867177,-75.230645],[-109.838775,-75.223403],[-109.815663,-75.213149],[-109.718251,-75.155938],[-109.69286,-75.146091],[-109.662343,-75.147149],[-109.632721,-75.15252],[-109.250457,-75.178521],[-108.868194,-75.204522],[-108.485931,-75.230523],[-108.103668,-75.256524],[-108.064687,-75.266371],[-108.027333,-75.283787],[-107.866078,-75.3235],[-107.387685,-75.312921],[-107.362904,-75.318617],[-107.316274,-75.336847],[-107.290761,-75.340997],[-107.192942,-75.343032],[-107.164052,-75.336684],[-107.15095,-75.329522],[-107.129058,-75.313653],[-107.114329,-75.308852],[-106.904897,-75.309991],[-106.815175,-75.330499],[-106.714508,-75.333591],[-106.655385,-75.370375],[-106.591298,-75.378595],[-106.525217,-75.372817],[-106.481028,-75.355239],[-106.457875,-75.321547],[-106.449127,-75.316827],[-106.083038,-75.284234],[-105.716949,-75.251642],[-105.70226,-75.244806],[-105.675404,-75.226821],[-105.661692,-75.22031],[-105.401723,-75.20082],[-105.141754,-75.181329],[-105.120473,-75.176365],[-105.104156,-75.167087],[-105.09911,-75.160577],[-105.099721,-75.156996],[-105.103017,-75.153416],[-105.106313,-75.146417],[-105.096303,-75.124119],[-105.064076,-75.112481],[-105.026479,-75.107843],[-104.836252,-75.106622],[-104.816151,-75.111098],[-104.811269,-75.113865],[-104.798736,-75.12477],[-104.780629,-75.134861],[-104.760854,-75.14129],[-104.632639,-75.159926],[-104.550649,-75.16074],[-104.334828,-75.12477],[-104.101389,-75.120782],[-103.931142,-75.153904],[-103.812164,-75.153009],[-103.554067,-75.119195],[-103.295969,-75.085382],[-102.946258,-75.107192],[-102.596547,-75.129002],[-102.438873,-75.109145],[-102.340728,-75.130466],[-102.172231,-75.122817],[-102.077504,-75.129571],[-101.859283,-75.105645],[-101.784901,-75.08408],[-101.760732,-75.08294],[-101.654286,-75.100356],[-101.598622,-75.118829],[-101.564198,-75.146742],[-101.553049,-75.174981],[-101.554433,-75.19671],[-101.567454,-75.215916],[-101.591054,-75.237074],[-101.622304,-75.255548],[-101.631418,-75.262791],[-101.638254,-75.272393],[-101.649322,-75.295099],[-101.65685,-75.305352],[-101.534413,-75.348321],[-101.14859,-75.371759],[-101.160024,-75.393813],[-101.154775,-75.41367],[-101.137522,-75.427504],[-101.112701,-75.432061],[-101.024892,-75.420505],[-100.939849,-75.422052],[-100.62857,-75.391697],[-100.546702,-75.366388],[-100.435699,-75.350518],[-100.323883,-75.35003],[-100.222279,-75.360121],[-100.137441,-75.384454],[-100.109934,-75.386407],[-100.095855,-75.383396],[-100.052073,-75.366957],[-100.040151,-75.365818],[-100.015981,-75.36712],[-100.004547,-75.364679],[-99.976186,-75.355401],[-99.831614,-75.329848],[-99.431386,-75.303399],[-99.014312,-75.339532],[-99.001047,-75.336684],[-98.960317,-75.320489],[-98.945668,-75.317071],[-98.772043,-75.320977],[-98.641957,-75.309503],[-98.626536,-75.30283],[-98.596262,-75.281996],[-98.579335,-75.273614],[-98.562734,-75.269627],[-98.481191,-75.258884],[-98.402211,-75.236423],[-98.42984,-75.217869],[-98.478586,-75.21559],[-98.571401,-75.225844],[-98.744211,-75.224542],[-98.434316,-75.133396],[-98.547719,-75.123468],[-98.899078,-75.174981],[-98.926625,-75.17254],[-99.040028,-75.146173],[-99.379709,-75.112726],[-99.35261,-75.093845],[-99.335439,-75.076349],[-99.32787,-75.054132],[-99.328969,-75.007013],[-99.32311,-74.974379],[-99.323964,-74.962579],[-99.334096,-74.951593],[-99.383412,-74.92669],[-99.438466,-74.913263],[-99.60204,-74.946547],[-99.630483,-74.945977],[-99.741282,-74.9249],[-99.884429,-74.92197],[-100.105092,-74.943129],[-100.341054,-74.926528],[-100.522288,-74.890883],[-100.536366,-74.884373],[-100.543813,-74.873712],[-100.536936,-74.858005],[-100.528635,-74.855239],[-100.363108,-74.840427],[-100.307444,-74.843032],[-100.203847,-74.860121],[-100.149159,-74.859145],[-100.083363,-74.846124],[-100.056996,-74.831964],[-100.031972,-74.806817],[-100.012318,-74.795668],[-99.919301,-74.769789],[-99.965321,-74.744806],[-100.01061,-74.731866],[-100.110178,-74.716241],[-100.107086,-74.711114],[-100.077138,-74.691176],[-100.051259,-74.678399],[-100.039418,-74.669203],[-100.017893,-74.64365],[-100.040191,-74.637384],[-100.113433,-74.631036],[-100.085072,-74.610772],[-100.052805,-74.601739],[-99.876617,-74.577325],[-99.815785,-74.537856],[-99.800852,-74.536716],[-99.816721,-74.526056],[-99.83316,-74.522231],[-99.850494,-74.522882],[-99.868967,-74.525974],[-99.881947,-74.524591],[-99.913197,-74.511895],[-99.928131,-74.507745],[-100.006215,-74.511163],[-100.031972,-74.508396],[-100.047719,-74.502618],[-100.0926,-74.479669],[-100.111724,-74.474867],[-100.130727,-74.473403],[-100.246409,-74.489679],[-100.330474,-74.480645],[-100.39981,-74.48268],[-100.422475,-74.477227],[-100.43578,-74.475681],[-100.465321,-74.48211],[-100.479726,-74.483331],[-100.541005,-74.480564],[-100.599517,-74.484552],[-100.927317,-74.550551],[-101.395904,-74.502699],[-101.462636,-74.476251],[-101.417104,-74.455255],[-101.395904,-74.442315],[-101.377187,-74.425551],[-101.403554,-74.421645],[-101.424224,-74.412774],[-101.434316,-74.397231],[-101.4287,-74.374282],[-101.411936,-74.35589],[-101.389475,-74.343927],[-101.342275,-74.327081],[-101.30663,-74.306573],[-101.298329,-74.297296],[-101.293528,-74.284763],[-101.295033,-74.274835],[-101.305653,-74.272882],[-101.365549,-74.281183],[-101.426381,-74.279962],[-101.406117,-74.268324],[-101.380483,-74.258071],[-101.359934,-74.245294],[-101.35497,-74.225763],[-101.365468,-74.198907],[-101.382192,-74.175958],[-101.405019,-74.160089],[-101.433705,-74.154474],[-101.427113,-74.129002],[-101.439198,-74.116469],[-101.487131,-74.102797],[-101.514312,-74.089451],[-101.535146,-74.073175],[-101.549428,-74.051935],[-101.556793,-74.023045],[-101.589223,-74.000177],[-101.658355,-73.995294],[-101.785959,-74.003513],[-101.901438,-73.997247],[-102.06371,-73.957452],[-102.2294,-73.962498],[-102.393666,-73.931817],[-102.733266,-73.937188],[-102.848622,-73.921563],[-102.896392,-73.902114],[-102.923329,-73.857517],[-102.882721,-73.816583],[-102.822174,-73.780043],[-102.788971,-73.748793],[-102.803944,-73.716974],[-102.846099,-73.701104],[-102.961903,-73.686293],[-102.978261,-73.682224],[-102.986887,-73.674981],[-102.987131,-73.655043],[-102.982249,-73.636651],[-102.982655,-73.621026],[-102.998647,-73.609633],[-102.950999,-73.589125],[-102.88976,-73.585545],[-102.400868,-73.610976],[-101.911977,-73.636407],[-101.800526,-73.663263],[-101.385365,-73.667169],[-101.360341,-73.67018],[-101.273427,-73.695571],[-101.263743,-73.700779],[-101.259185,-73.709161],[-101.260976,-73.722589],[-101.260854,-73.738539],[-101.2506,-73.748305],[-101.234527,-73.754571],[-101.16393,-73.770685],[-100.898,-73.776422],[-100.632069,-73.782159],[-100.620595,-73.778985],[-100.61205,-73.772393],[-100.59675,-73.753676],[-100.587229,-73.747491],[-100.574208,-73.745864],[-100.533559,-73.751886],[-100.518178,-73.749119],[-100.498891,-73.736017],[-100.485748,-73.730239],[-100.458608,-73.72617],[-100.163014,-73.729628],[-99.867421,-73.733087],[-99.668609,-73.702407],[-99.584543,-73.706964],[-99.555735,-73.701104],[-99.5006,-73.682061],[-99.472076,-73.675551],[-99.498647,-73.661554],[-99.585927,-73.634861],[-99.497304,-73.618585],[-99.210113,-73.64422],[-98.814361,-73.632257],[-98.850087,-73.604181],[-98.867747,-73.593927],[-98.891225,-73.588474],[-99.188242,-73.567966],[-99.48526,-73.547459],[-99.587717,-73.522638],[-99.551584,-73.49977],[-99.502349,-73.489353],[-99.405588,-73.486586],[-99.60025,-73.448175],[-99.63622,-73.447849],[-99.671742,-73.454197],[-99.699941,-73.465427],[-99.714915,-73.467706],[-99.727528,-73.462009],[-99.730458,-73.448419],[-99.71349,-73.415297],[-99.711334,-73.398858],[-99.720041,-73.383396],[-99.73412,-73.372979],[-99.751047,-73.366957],[-99.768056,-73.36419],[-100.218821,-73.352634],[-100.669586,-73.341078],[-101.120351,-73.329522],[-101.212636,-73.315362],[-101.694203,-73.33587],[-101.856597,-73.304457],[-102.229604,-73.3176],[-102.60261,-73.330743],[-102.873647,-73.308201],[-102.885894,-73.303643],[-102.893422,-73.29697],[-102.900217,-73.289158],[-102.910146,-73.28102],[-102.986887,-73.23797],[-103.044057,-73.224542],[-103.117502,-73.185968],[-103.147776,-73.177341],[-103.246938,-73.170831],[-103.266428,-73.16725],[-103.288319,-73.159356],[-103.306711,-73.147149],[-103.315907,-73.130955],[-103.307485,-73.116306],[-103.285064,-73.101007],[-103.239573,-73.077813],[-103.249989,-73.068048],[-103.261627,-73.059666],[-103.274403,-73.052911],[-103.287831,-73.047784],[-103.282948,-73.036554],[-103.276845,-73.025811],[-103.261342,-73.006606],[-103.312001,-72.978774],[-103.333852,-72.961521],[-103.354604,-72.939711],[-103.38565,-72.887302],[-103.403798,-72.863539],[-103.429921,-72.849379],[-103.33434,-72.774591],[-103.298573,-72.757582],[-103.041412,-72.707615],[-102.685007,-72.722833],[-102.328603,-72.738051],[-102.269928,-72.754653],[-102.093984,-72.771742],[-102.1162,-72.782892],[-102.149648,-72.794692],[-102.168813,-72.809828],[-102.148305,-72.830499],[-102.158559,-72.841078],[-102.170481,-72.849786],[-102.183583,-72.856378],[-102.197662,-72.86061],[-102.161204,-72.880304],[-102.188629,-72.894464],[-102.259836,-72.901625],[-102.29186,-72.908949],[-102.307362,-72.917657],[-102.320424,-72.926935],[-102.333892,-72.934666],[-102.351145,-72.938409],[-102.427561,-72.940362],[-102.439931,-72.943129],[-102.469797,-72.957696],[-102.484853,-72.962091],[-102.55427,-72.963474],[-102.716908,-72.997735],[-102.676747,-73.005304],[-102.376698,-72.991876],[-102.07665,-72.978448],[-101.983998,-72.986993],[-101.99706,-73.039727],[-101.960317,-73.055597],[-101.678761,-73.034519],[-101.397206,-73.013442],[-101.31017,-72.990818],[-101.038055,-72.983412],[-100.76594,-72.976007],[-100.658681,-73.010512],[-100.376861,-73.065851],[-100.318267,-73.06878],[-100.262278,-73.060642],[-100.141957,-73.022638],[-100.112782,-73.018976],[-100.023264,-73.024021],[-99.853586,-72.995538],[-99.68224,-73.017267],[-99.19104,-73.019281],[-98.699839,-73.021295],[-98.208638,-73.023309],[-97.717437,-73.025323],[-97.802235,-73.091892],[-97.835439,-73.110447],[-97.981191,-73.169366],[-97.928822,-73.188409],[-97.87328,-73.199151],[-97.81664,-73.201267],[-97.761138,-73.194106],[-97.60261,-73.136163],[-97.450185,-73.123712],[-97.418853,-73.124933],[-97.335072,-73.149347],[-97.308258,-73.150079],[-97.283925,-73.147638],[-97.254384,-73.148126],[-97.225738,-73.15309],[-97.180653,-73.180271],[-97.156565,-73.185968],[-96.992096,-73.19199],[-96.963206,-73.201349],[-96.912099,-73.229181],[-96.705068,-73.267348],[-96.588287,-73.276056],[-96.474965,-73.299493],[-96.158823,-73.315484],[-95.842681,-73.331476],[-95.831288,-73.324965],[-95.821197,-73.312107],[-95.805247,-73.284438],[-95.794586,-73.275649],[-95.746571,-73.25506],[-95.688588,-73.244399],[-95.511342,-73.244806],[-95.39623,-73.223728],[-95.338612,-73.220147],[-95.27831,-73.227146],[-95.267893,-73.22617],[-95.245473,-73.214939],[-95.233795,-73.211033],[-95.193756,-73.20908],[-95.003163,-73.244073],[-94.577992,-73.235528],[-94.531158,-73.246026],[-94.387034,-73.30934],[-94.335805,-73.321547],[-94.131012,-73.312595],[-93.935902,-73.279474],[-93.798818,-73.222752],[-93.774322,-73.216241],[-93.748606,-73.212579],[-93.697011,-73.212335],[-93.655507,-73.221938],[-93.634267,-73.22381],[-93.616282,-73.216567],[-93.610707,-73.208754],[-93.604644,-73.190688],[-93.599029,-73.183038],[-93.587026,-73.177423],[-93.571645,-73.175226],[-93.29717,-73.184177],[-93.022694,-73.193129],[-92.969716,-73.17962],[-92.917226,-73.173028],[-92.864084,-73.155206],[-92.801381,-73.142755],[-92.789296,-73.143243],[-92.769846,-73.149102],[-92.76183,-73.157403],[-92.755727,-73.167413],[-92.742299,-73.178318],[-92.718332,-73.18377],[-92.539866,-73.166111],[-92.246856,-73.175307],[-91.953847,-73.184503],[-91.933665,-73.191176],[-91.924916,-73.202569],[-91.923085,-73.214044],[-91.919301,-73.224216],[-91.856353,-73.25213],[-91.843617,-73.25506],[-91.662994,-73.245212],[-91.388926,-73.272963],[-91.114858,-73.300714],[-91.103505,-73.303481],[-91.097076,-73.311212],[-91.09435,-73.327244],[-91.089019,-73.334649],[-91.077382,-73.336602],[-90.759918,-73.308201],[-90.648915,-73.277602],[-90.623199,-73.275811],[-90.55956,-73.283787],[-90.534291,-73.280206],[-90.360422,-73.222752],[-90.295056,-73.191747],[-90.206695,-73.149835],[-90.186838,-73.143243],[-90.160797,-73.139744],[-90.070302,-73.142999],[-89.946848,-73.127211],[-89.900746,-73.127618],[-89.799672,-73.143731],[-89.745595,-73.142267],[-89.536733,-73.104262],[-89.512034,-73.105401],[-89.443186,-73.120864],[-89.283803,-73.106622],[-89.230295,-73.111261],[-89.260813,-73.088067],[-89.281728,-73.062595],[-89.280019,-73.037693],[-89.242584,-73.016778],[-89.087961,-72.960056],[-89.076487,-72.953302],[-89.061757,-72.941339],[-89.054067,-72.929132],[-89.063588,-72.921563],[-89.106313,-72.913344],[-89.119252,-72.90252],[-89.118398,-72.882094],[-89.106801,-72.826349],[-89.099517,-72.808364],[-89.110504,-72.764337],[-89.171376,-72.730564],[-89.358266,-72.677016],[-89.424713,-72.643487],[-89.3485,-72.634535],[-88.9735,-72.660469],[-88.5985,-72.686402],[-88.2235,-72.712335],[-88.173492,-72.73211],[-88.138905,-72.76214],[-88.131215,-72.783298],[-88.128529,-72.805271],[-88.123525,-72.825942],[-88.108754,-72.843357],[-88.195709,-72.876642],[-88.286122,-72.899591],[-88.364858,-72.908868],[-88.406321,-72.91839],[-88.433583,-72.935968],[-88.441233,-72.95615],[-88.432769,-72.969415],[-88.393666,-72.990492],[-88.419301,-73.021091],[-88.455393,-73.038263],[-88.714019,-73.119806],[-88.704213,-73.127048],[-88.610666,-73.149184],[-88.566396,-73.165297],[-88.535634,-73.187107],[-88.478342,-73.242934],[-88.443837,-73.263604],[-88.40689,-73.270603],[-88.36913,-73.265883],[-88.263051,-73.220392],[-88.229726,-73.212823],[-88.186838,-73.208917],[-88.152333,-73.209893],[-88.118072,-73.214532],[-88.102528,-73.22031],[-88.074615,-73.238539],[-88.057769,-73.243422],[-87.921498,-73.252699],[-87.88561,-73.246515],[-87.824778,-73.221124],[-87.648793,-73.194513],[-87.504954,-73.201104],[-87.470448,-73.196059],[-87.367543,-73.169529],[-87.349517,-73.16961],[-87.332102,-73.174005],[-87.323557,-73.184259],[-87.332346,-73.202081],[-87.345611,-73.212823],[-87.360341,-73.219008],[-87.393666,-73.226251],[-87.358306,-73.256117],[-87.31843,-73.26865],[-87.181711,-73.27752],[-87.134511,-73.287205],[-87.110748,-73.309747],[-87.133453,-73.352472],[-87.089996,-73.36712],[-87.041331,-73.377211],[-86.946523,-73.383559],[-86.666615,-73.372003],[-86.594594,-73.34881],[-86.460357,-73.337335],[-86.433705,-73.327732],[-86.413889,-73.311944],[-86.385487,-73.274591],[-86.367747,-73.262791],[-86.343495,-73.257989],[-86.317006,-73.257989],[-86.291412,-73.263116],[-86.270131,-73.273614],[-86.249257,-73.27988],[-86.222279,-73.277602],[-86.071197,-73.247328],[-85.986073,-73.201837],[-85.88683,-73.176935],[-85.782582,-73.169122],[-85.678619,-73.177504],[-85.580393,-73.200453],[-85.643951,-73.213556],[-85.658599,-73.222101],[-85.668568,-73.241143],[-85.664906,-73.25506],[-85.652577,-73.264581],[-85.610422,-73.276625],[-85.594716,-73.283461],[-85.584584,-73.296319],[-85.575307,-73.320733],[-85.564076,-73.334893],[-85.545318,-73.34295],[-85.503733,-73.35296],[-85.542877,-73.37184],[-85.531606,-73.385349],[-85.516672,-73.387872],[-85.499827,-73.387628],[-85.482981,-73.392673],[-85.459137,-73.405694],[-85.439849,-73.410089],[-85.419993,-73.406834],[-85.394195,-73.396905],[-85.367177,-73.392022],[-85.339508,-73.396254],[-85.2294,-73.440688],[-85.169301,-73.456638],[-85.101471,-73.487074],[-85.054026,-73.491632],[-85.009429,-73.502699],[-84.919179,-73.513279],[-84.850331,-73.532322],[-84.466908,-73.569431],[-84.17748,-73.557224],[-84.133534,-73.549981],[-84.113026,-73.549574],[-84.041005,-73.567966],[-84.019114,-73.565037],[-83.972646,-73.5499],[-83.948964,-73.545994],[-83.927724,-73.549005],[-83.885854,-73.562758],[-83.864613,-73.565362],[-83.751698,-73.560235],[-83.752024,-73.612563],[-83.759755,-73.634942],[-83.785268,-73.642022],[-83.811838,-73.641209],[-83.83609,-73.644952],[-83.859039,-73.653416],[-83.881581,-73.666681],[-83.866607,-73.679132],[-83.827138,-73.685642],[-83.808746,-73.69378],[-83.81314,-73.697035],[-83.817698,-73.708917],[-83.820383,-73.722833],[-83.819203,-73.732843],[-83.809316,-73.741306],[-83.796702,-73.743585],[-83.691029,-73.726658],[-83.665761,-73.728448],[-83.657338,-73.733982],[-83.640614,-73.750746],[-83.631663,-73.752211],[-83.578359,-73.734633],[-83.553456,-73.730645],[-83.543202,-73.732517],[-83.530263,-73.738377],[-83.519195,-73.737074],[-83.50768,-73.726739],[-83.488637,-73.701918],[-83.450103,-73.685235],[-83.396148,-73.687595],[-83.295766,-73.70615],[-82.933705,-73.710382],[-82.714263,-73.744236],[-82.67398,-73.770115],[-82.649485,-73.771661],[-82.601186,-73.768731],[-82.348297,-73.826349],[-82.274892,-73.859633],[-82.209218,-73.88006],[-82.137074,-73.889744],[-82.064768,-73.886977],[-81.998402,-73.870375],[-81.915151,-73.826267],[-81.89269,-73.818292],[-81.873036,-73.817804],[-81.788401,-73.827569],[-81.707183,-73.826837],[-81.233998,-73.730239],[-81.184682,-73.704197],[-81.14684,-73.665948],[-81.1256,-73.621352],[-81.111643,-73.604425],[-81.086252,-73.594496],[-81.115468,-73.569513],[-81.155019,-73.555108],[-81.236318,-73.536391],[-81.272572,-73.521742],[-81.306264,-73.50213],[-81.328236,-73.480076],[-81.33552,-73.457289],[-81.332102,-73.433201],[-81.310943,-73.377374],[-81.309478,-73.353611],[-81.322662,-73.335626],[-81.355458,-73.323826],[-81.311187,-73.273045],[-81.23469,-73.247979],[-81.149281,-73.239923],[-80.81017,-73.263116],[-80.774566,-73.275974],[-80.760569,-73.285577],[-80.739573,-73.307306],[-80.727406,-73.31699],[-80.709299,-73.324395],[-80.611969,-73.333754],[-80.393788,-73.414239],[-80.271392,-73.42254],[-80.232533,-73.417657],[-80.196848,-73.401951],[-80.225453,-73.399591],[-80.324696,-73.362563],[-80.351796,-73.345473],[-80.356923,-73.334161],[-80.35733,-73.323826],[-80.356679,-73.313084],[-80.358144,-73.300958],[-80.36384,-73.286391],[-80.417877,-73.20794],[-80.436757,-73.188165],[-80.464263,-73.173761],[-80.506947,-73.160333],[-80.519399,-73.153253],[-80.552154,-73.116306],[-80.564198,-73.109796],[-80.623769,-73.09824],[-80.65099,-73.084405],[-80.658803,-73.061944],[-80.658599,-73.045994],[-80.662668,-73.034275],[-80.664377,-73.022882],[-80.657094,-73.008071],[-80.646474,-72.996759],[-80.634185,-72.987481],[-80.620717,-72.980076],[-80.606313,-72.974786],[-80.492543,-72.953302],[-80.377675,-72.949965],[-80.012563,-72.994317],[-79.64745,-73.03867],[-79.6256,-73.048517],[-79.58141,-73.079522],[-79.232533,-73.195571],[-79.142568,-73.247247],[-79.092275,-73.265313],[-78.992014,-73.286798],[-78.934926,-73.289483],[-78.918609,-73.292739],[-78.881337,-73.310805],[-78.78189,-73.337986],[-78.744049,-73.364923],[-78.742502,-73.413344],[-78.763743,-73.445489],[-78.79308,-73.466974],[-78.824615,-73.485121],[-78.85261,-73.507501],[-78.860504,-73.519627],[-78.860829,-73.527927],[-78.858388,-73.534438],[-78.858144,-73.541599],[-78.871816,-73.583185],[-78.867421,-73.599298],[-78.84496,-73.608819],[-78.782704,-73.611749],[-78.584625,-73.582127],[-78.52892,-73.560642],[-78.501373,-73.556573],[-78.201243,-73.556329],[-77.973256,-73.523533],[-77.851877,-73.522556],[-77.531158,-73.467462],[-77.500844,-73.466567],[-77.441965,-73.472345],[-77.360463,-73.503595],[-77.331207,-73.508396],[-77.244049,-73.512628],[-77.214589,-73.50921],[-77.160878,-73.492771],[-77.11026,-73.470636],[-77.079213,-73.462498],[-76.87975,-73.458591],[-76.846669,-73.464939],[-76.7801,-73.489028],[-76.718251,-73.523533],[-76.69872,-73.54754],[-76.705474,-73.571547],[-76.728179,-73.591729],[-76.940907,-73.667901],[-76.95523,-73.677667],[-76.981842,-73.700453],[-76.994781,-73.708673],[-77.242421,-73.812433],[-77.205881,-73.834242],[-77.122426,-73.870782],[-77.0808,-73.879327],[-77.048492,-73.878351],[-77.019765,-73.870701],[-76.931304,-73.832696],[-76.77831,-73.790297],[-76.603871,-73.787367],[-76.578603,-73.790216],[-76.534535,-73.810805],[-76.509836,-73.815851],[-76.302846,-73.823419],[-76.277211,-73.820896],[-76.263539,-73.814142],[-76.238108,-73.793634],[-76.224599,-73.785903],[-76.211741,-73.78281],[-75.966054,-73.751642],[-75.952748,-73.745782],[-75.940826,-73.738458],[-75.92394,-73.731215],[-75.897817,-73.727146],[-75.81607,-73.730645],[-75.707265,-73.712091],[-75.6787,-73.710545],[-75.593373,-73.715916],[-75.560699,-73.7138],[-75.532948,-73.708103],[-75.356679,-73.635512],[-75.312734,-73.624933],[-75.268137,-73.621189],[-74.907623,-73.642348],[-74.781728,-73.669203],[-74.738026,-73.688165],[-74.701527,-73.714776],[-74.662831,-73.735284],[-74.612294,-73.736098],[-74.512807,-73.716892],[-74.491851,-73.707696],[-74.453725,-73.684991],[-74.433339,-73.675877],[-74.41161,-73.671563],[-74.341135,-73.673517],[-74.27717,-73.662693],[-74.257802,-73.66546],[-74.105133,-73.716078],[-74.025299,-73.723891],[-73.949127,-73.709649],[-73.863515,-73.666599],[-73.802642,-73.658624],[-73.769439,-73.648696],[-73.738637,-73.634047],[-73.686513,-73.589044],[-73.657297,-73.583266],[-73.626698,-73.592706],[-73.59203,-73.611098],[-73.599192,-73.628025],[-73.589467,-73.640313],[-73.572865,-73.645196],[-73.559071,-73.640558],[-73.515207,-73.593927],[-73.497467,-73.581964],[-73.450429,-73.565037],[-73.405181,-73.562595],[-73.310292,-73.569594],[-73.228505,-73.559747],[-73.207143,-73.548435],[-73.158193,-73.484063],[-73.139068,-73.468927],[-73.118764,-73.457696],[-73.096832,-73.449802],[-73.07311,-73.444431],[-72.828928,-73.44378],[-72.643422,-73.469659],[-72.513539,-73.46087],[-72.429067,-73.469985],[-72.384511,-73.469822],[-72.355784,-73.454034],[-72.417348,-73.43613],[-72.239247,-73.388849],[-72.001617,-73.373305],[-71.863637,-73.378839],[-71.749338,-73.351658],[-71.542388,-73.361261],[-71.422963,-73.353774],[-71.062001,-73.266371],[-70.882924,-73.256036],[-70.507721,-73.275486],[-70.45287,-73.268731],[-70.426422,-73.26922],[-70.34675,-73.29046],[-70.31843,-73.294854],[-70.292958,-73.29339],[-69.918853,-73.21852],[-69.627919,-73.199314],[-69.336985,-73.180108],[-68.916737,-73.103611],[-68.841542,-73.112237],[-68.779693,-73.108005],[-68.667348,-73.088149],[-68.644887,-73.079767],[-68.620839,-73.065199],[-68.59675,-73.057387],[-68.537506,-73.053806],[-68.466868,-73.01572],[-68.204681,-72.971938],[-67.942494,-72.928155],[-67.913075,-72.918064],[-67.836903,-72.869561],[-67.78893,-72.853692],[-67.764027,-72.850681],[-67.738759,-72.852146],[-67.713287,-72.860121],[-67.68814,-72.871189],[-67.662709,-72.877862],[-67.63622,-72.872735],[-67.609527,-72.860772],[-67.586822,-72.853285],[-67.535553,-72.845147],[-67.511098,-72.83408],[-67.515207,-72.814548],[-67.528961,-72.790948],[-67.533803,-72.768162],[-67.529408,-72.765558],[-67.507232,-72.740981],[-67.504058,-72.736423],[-67.492787,-72.730239],[-67.452952,-72.714125],[-67.375315,-72.664646],[-67.266428,-72.621026],[-67.221913,-72.593683],[-67.220611,-72.587335],[-67.218414,-72.553969],[-67.21996,-72.51865],[-67.218414,-72.500258],[-67.208811,-72.48268],[-67.189565,-72.461196],[-67.151275,-72.428888],[-67.13858,-72.423272],[-67.095367,-72.412774],[-67.083811,-72.406915],[-67.052846,-72.380792],[-66.99942,-72.362481],[-66.978261,-72.349542],[-66.972524,-72.308282],[-66.957387,-72.299005],[-66.939198,-72.291436],[-66.928049,-72.27752],[-66.927724,-72.261407],[-66.930247,-72.248305],[-66.929514,-72.236261],[-66.919423,-72.22381],[-66.90274,-72.213311],[-66.812245,-72.171645],[-66.790517,-72.157403],[-66.771718,-72.139255],[-66.750844,-72.113051],[-66.747955,-72.092055],[-66.761138,-72.06992],[-66.778147,-72.047133],[-66.786488,-72.025323],[-66.779042,-71.985447],[-66.781646,-71.974379],[-66.792144,-71.960626],[-66.80016,-71.955499],[-66.809682,-71.953383],[-66.825063,-71.948012],[-66.838938,-71.945408],[-66.848704,-71.94671],[-66.855702,-71.944594],[-66.861155,-71.931573],[-66.865468,-71.914727],[-66.869293,-71.907485],[-66.890045,-71.898126],[-66.916575,-71.890313],[-66.970693,-71.886],[-66.995025,-71.87713],[-67.181264,-71.76686],[-67.162221,-71.761326],[-67.102895,-71.753025],[-67.142161,-71.722589],[-67.424143,-71.620538],[-67.481313,-71.587091],[-67.501088,-71.540297],[-67.524729,-71.507582],[-67.578481,-71.474379],[-67.622629,-71.433364],[-67.617421,-71.377211],[-67.601145,-71.353204],[-67.591868,-71.343438],[-67.567006,-71.325616],[-67.536244,-71.296157],[-67.499094,-71.280857],[-67.490468,-71.272393],[-67.481923,-71.258071],[-67.472971,-71.248305],[-67.46109,-71.242283],[-67.443959,-71.238946],[-67.458323,-71.222263],[-67.48648,-71.213067],[-67.544586,-71.207452],[-67.523061,-71.198826],[-67.45816,-71.189874],[-67.467275,-71.16725],[-67.506663,-71.131443],[-67.514027,-71.111261],[-67.498402,-71.090753],[-67.465728,-71.078546],[-67.401438,-71.070489],[-67.420888,-71.055352],[-67.425282,-71.036228],[-67.420033,-71.014825],[-67.411122,-70.992852],[-67.512196,-70.95322],[-67.524892,-70.941339],[-67.551259,-70.908868],[-67.569895,-70.896742],[-67.613108,-70.88006],[-67.631215,-70.868748],[-67.64269,-70.85475],[-67.659983,-70.822442],[-67.6704,-70.807306],[-67.691396,-70.787367],[-67.701243,-70.775323],[-67.704579,-70.76336],[-67.694895,-70.748305],[-67.678131,-70.734796],[-67.667592,-70.719985],[-67.68399,-70.687595],[-67.680084,-70.674086],[-67.673818,-70.658949],[-67.674469,-70.639825],[-67.683583,-70.626153],[-67.759267,-70.553969],[-67.79247,-70.531915],[-67.846344,-70.510349],[-67.855865,-70.500909],[-67.884104,-70.44378],[-67.900502,-70.390395],[-67.921539,-70.348891],[-67.949371,-70.311782],[-67.980377,-70.287693],[-67.987294,-70.28631],[-68.012766,-70.286228],[-68.024159,-70.282403],[-68.041331,-70.267755],[-68.051381,-70.261326],[-68.068593,-70.255548],[-68.190663,-70.234959],[-68.206288,-70.224867],[-68.235422,-70.190199],[-68.251861,-70.176365],[-68.271596,-70.163995],[-68.285797,-70.152032],[-68.305776,-70.122491],[-68.32311,-70.109145],[-68.343414,-70.100844],[-68.427968,-70.086521],[-68.450551,-70.077732],[-68.471303,-70.065851],[-68.483754,-70.052667],[-68.48644,-70.03281],[-68.483225,-70.006117],[-68.474965,-69.982354],[-68.462636,-69.970636],[-68.477203,-69.951755],[-68.487294,-69.934828],[-68.487294,-69.917901],[-68.471913,-69.898614],[-68.453847,-69.88893],[-68.432362,-69.88421],[-68.389516,-69.880141],[-68.380116,-69.869317],[-68.379018,-69.846938],[-68.392974,-69.773533],[-68.390614,-69.761651],[-68.362416,-69.716974],[-68.357411,-69.70086],[-68.361887,-69.683364],[-68.376047,-69.669203],[-68.396718,-69.659112],[-68.483144,-69.63836],[-68.49828,-69.628351],[-68.506093,-69.607843],[-68.515126,-69.599054],[-68.572011,-69.586358],[-68.585805,-69.572849],[-68.604482,-69.538832],[-68.621938,-69.523533],[-68.638336,-69.51629],[-68.67809,-69.504327],[-68.731801,-69.481134],[-68.745025,-69.471938],[-68.757436,-69.454767],[-68.768788,-69.446222],[-68.824859,-69.431329],[-68.813954,-69.411065],[-68.806956,-69.403985],[-68.653798,-69.382094],[-68.466664,-69.383396],[-68.367909,-69.403985],[-68.334625,-69.406834],[-68.308827,-69.403985],[-68.295562,-69.399835],[-68.289174,-69.393162],[-68.284657,-69.364353],[-68.285878,-69.349867],[-68.293446,-69.340916],[-68.325266,-69.32171],[-68.332387,-69.303806],[-68.316396,-69.289321],[-68.278879,-69.281345],[-68.244537,-69.285903],[-68.182037,-69.313653],[-68.151967,-69.318617],[-68.116119,-69.317804],[-68.099599,-69.321222],[-68.083485,-69.329197],[-68.068023,-69.333266],[-68.008778,-69.327081],[-68.001536,-69.365981],[-67.953277,-69.374607],[-67.855784,-69.363539],[-67.806874,-69.368748],[-67.527496,-69.433689],[-67.493276,-69.45379],[-67.458811,-69.486098],[-67.438466,-69.499607],[-67.417877,-69.505955],[-67.392323,-69.502699],[-67.353261,-69.481134],[-67.308217,-69.467869],[-67.284291,-69.456964],[-67.274403,-69.44378],[-67.293691,-69.430922],[-67.317942,-69.422052],[-67.335032,-69.410333],[-67.339182,-69.394789],[-67.324371,-69.374688],[-67.315012,-69.370701],[-67.304311,-69.369399],[-67.294993,-69.36712],[-67.289784,-69.359959],[-67.279368,-69.309666],[-67.269643,-69.287856],[-67.253041,-69.273045],[-67.232045,-69.263849],[-67.209096,-69.259047],[-67.009592,-69.262465],[-66.894032,-69.232354],[-66.874623,-69.22088],[-66.859853,-69.202407],[-66.844553,-69.17547],[-66.87328,-69.163507],[-66.927561,-69.133071],[-66.95637,-69.122491],[-66.935211,-69.109796],[-66.910512,-69.100356],[-66.833974,-69.089288],[-66.78425,-69.072035],[-66.759145,-69.071222],[-66.789296,-69.036065],[-66.84203,-69.035089],[-66.89977,-69.04697],[-66.944976,-69.050388],[-66.920725,-69.030043],[-66.890736,-69.01393],[-66.85851,-69.002862],[-66.827056,-68.997491],[-66.84496,-68.972914],[-66.878163,-68.964451],[-67.273264,-68.943292],[-67.350006,-68.916274],[-67.455637,-68.865818],[-67.471995,-68.85475],[-67.480702,-68.841892],[-67.477691,-68.823907],[-67.462758,-68.814548],[-67.384185,-68.79339],[-67.056549,-68.785821],[-67.037994,-68.78753],[-67.016184,-68.78574],[-66.996409,-68.775974],[-66.959218,-68.748142],[-66.977447,-68.734633],[-66.983957,-68.719659],[-66.988149,-68.70379],[-66.999501,-68.688084],[-67.005727,-68.671645],[-67.003489,-68.628839],[-67.014638,-68.614679],[-67.103017,-68.581801],[-67.148183,-68.557306],[-67.174713,-68.525323],[-67.163157,-68.489841],[-67.112945,-68.476739],[-66.989125,-68.477797],[-66.967681,-68.472101],[-66.95165,-68.460707],[-66.940785,-68.425063],[-66.921498,-68.418064],[-66.874257,-68.418145],[-66.927846,-68.40016],[-66.953847,-68.386163],[-66.959137,-68.367446],[-66.941314,-68.358168],[-66.911122,-68.358819],[-66.860666,-68.367608],[-66.904449,-68.351821],[-67.060658,-68.338637],[-67.125844,-68.341974],[-67.152252,-68.331801],[-67.161366,-68.317071],[-67.157094,-68.302179],[-67.144399,-68.289646],[-67.128082,-68.281427],[-67.108225,-68.27809],[-66.765614,-68.313572],[-66.731068,-68.302992],[-66.720041,-68.294203],[-66.703969,-68.274998],[-66.690541,-68.267836],[-66.625071,-68.246677],[-66.675933,-68.198175],[-66.689443,-68.190118],[-66.752512,-68.188897],[-66.796742,-68.197035],[-66.839833,-68.213474],[-66.86026,-68.225193],[-66.878977,-68.230076],[-66.945872,-68.222833],[-66.946889,-68.200779],[-66.980133,-68.176202],[-67.10912,-68.118259],[-67.139882,-68.089939],[-67.161733,-68.082289],[-67.210561,-68.075128],[-67.193959,-68.063897],[-67.176747,-68.062188],[-67.139516,-68.070001],[-67.118764,-68.070245],[-67.10025,-68.06406],[-67.065012,-68.041436],[-67.154693,-68.025567],[-67.180287,-68.016209],[-67.190175,-68.005141],[-67.189687,-67.99505],[-67.193105,-67.987481],[-67.242543,-67.979587],[-67.268707,-67.968683],[-67.015452,-67.925063],[-66.873769,-67.918064],[-66.850575,-67.91367],[-66.838857,-67.906183],[-66.833974,-67.892673],[-66.831532,-67.869887],[-66.891225,-67.829034],[-66.857574,-67.813897],[-66.826527,-67.80877],[-66.796742,-67.80047],[-66.767079,-67.77516],[-66.802724,-67.778497],[-66.910878,-67.768976],[-67.080312,-67.77988],[-67.031077,-67.746677],[-67.016021,-67.741143],[-66.77953,-67.722101],[-66.737904,-67.730645],[-66.780263,-67.696222],[-66.914418,-67.705743],[-66.967641,-67.693129],[-66.923207,-67.661554],[-66.819203,-67.604587],[-66.767242,-67.5888],[-66.707102,-67.586358],[-66.592356,-67.606622],[-66.533762,-67.609145],[-66.543324,-67.584242],[-66.542226,-67.574395],[-66.53303,-67.567153],[-66.518178,-67.550388],[-66.510243,-67.527927],[-66.517486,-67.513604],[-66.535146,-67.50742],[-66.558176,-67.508722],[-66.572174,-67.514907],[-66.597808,-67.535252],[-66.613108,-67.542087],[-66.632069,-67.543552],[-66.733144,-67.52809],[-66.800893,-67.500584],[-66.838206,-67.494399],[-66.861195,-67.493585],[-66.974233,-67.469008],[-66.992747,-67.468683],[-67.472157,-67.549005],[-67.592681,-67.550877],[-67.610748,-67.54697],[-67.566884,-67.521661],[-67.544749,-67.513604],[-67.51887,-67.507257],[-67.553538,-67.491143],[-67.58727,-67.48268],[-67.622222,-67.480564],[-67.660797,-67.482843],[-67.535878,-67.358087],[-67.483306,-67.328871],[-67.54601,-67.310479],[-67.562489,-67.293227],[-67.554799,-67.264255],[-67.532948,-67.239923],[-67.504709,-67.220392],[-67.443837,-67.189386],[-67.483957,-67.181736],[-67.571401,-67.190688],[-67.607737,-67.178318],[-67.5926,-67.165948],[-67.540395,-67.138767],[-67.504994,-67.111993],[-67.474965,-67.07936],[-67.471791,-67.068292],[-67.475657,-67.060317],[-67.476186,-67.054132],[-67.463043,-67.04811],[-67.454416,-67.046808],[-67.444732,-67.047052],[-67.43578,-67.049493],[-67.429189,-67.054457],[-67.411285,-67.072524],[-67.393422,-67.080824],[-67.30309,-67.099298],[-67.289703,-67.093357],[-67.244985,-67.057306],[-67.232533,-67.041762],[-67.227203,-67.022719],[-67.225494,-66.992608],[-67.216542,-66.973403],[-67.197133,-66.975518],[-67.175445,-66.988051],[-67.159739,-67.000909],[-67.139068,-67.014255],[-67.118967,-67.016778],[-67.097768,-67.011163],[-67.073964,-67.000665],[-67.10733,-66.971287],[-67.120188,-66.954278],[-67.119049,-66.93613],[-67.103993,-66.92783],[-67.077301,-66.922784],[-67.049713,-66.920831],[-67.03189,-66.921645],[-66.950673,-66.938897],[-66.917307,-66.956801],[-66.927846,-66.982843],[-66.925893,-66.991143],[-66.90746,-67.037774],[-66.910308,-67.053643],[-66.917633,-67.067641],[-66.939198,-67.091729],[-66.942209,-67.102634],[-66.93932,-67.118259],[-66.929921,-67.146661],[-66.923899,-67.157892],[-66.914133,-67.163263],[-66.887522,-67.168145],[-66.939036,-67.203871],[-66.950266,-67.214939],[-66.958811,-67.238214],[-66.968495,-67.250665],[-66.980865,-67.2763],[-66.949778,-67.284275],[-66.87682,-67.284763],[-66.816396,-67.31113],[-66.785634,-67.311456],[-66.764475,-67.28867],[-66.763539,-67.281427],[-66.765736,-67.267999],[-66.764516,-67.261407],[-66.755605,-67.250095],[-66.72997,-67.232599],[-66.720204,-67.221775],[-66.715403,-67.207289],[-66.713775,-67.196059],[-66.708852,-67.190525],[-66.694203,-67.193617],[-66.647572,-67.220636],[-66.606679,-67.238539],[-66.595815,-67.245212],[-66.564361,-67.277114],[-66.557851,-67.287774],[-66.54247,-67.327569],[-66.535756,-67.34002],[-66.523305,-67.345147],[-66.497426,-67.346775],[-66.462799,-67.336602],[-66.451039,-67.308526],[-66.453521,-67.21559],[-66.456532,-67.198826],[-66.474355,-67.161391],[-66.485341,-67.147719],[-66.513905,-67.126723],[-66.526845,-67.113946],[-66.444163,-67.085382],[-66.46581,-67.077407],[-66.521718,-67.048923],[-66.544911,-67.044529],[-66.59081,-67.043552],[-66.614166,-67.038018],[-66.598988,-67.013116],[-66.58316,-66.994399],[-66.494944,-66.91839],[-66.485341,-66.916111],[-66.474965,-66.915704],[-66.461537,-66.913507],[-66.438832,-66.901462],[-66.420318,-66.881931],[-66.417226,-66.861098],[-66.440582,-66.845636],[-66.55191,-66.810642],[-66.53307,-66.775567],[-66.527984,-66.744806],[-66.534983,-66.714044],[-66.552073,-66.679295],[-66.547922,-66.65016],[-66.512074,-66.630141],[-66.292144,-66.58587],[-66.256825,-66.583185],[-66.091908,-66.591404],[-66.076039,-66.596368],[-66.070546,-66.602716],[-66.062652,-66.620782],[-66.057037,-66.626723],[-66.048451,-66.629164],[-66.01891,-66.630955],[-66.000478,-66.636],[-65.988596,-66.642185],[-65.961415,-66.663263],[-65.944,-66.67311],[-65.931304,-66.675714],[-65.895497,-66.675714],[-65.839508,-66.688246],[-65.828481,-66.693048],[-65.813954,-66.708754],[-65.800364,-66.715753],[-65.78482,-66.715509],[-65.764882,-66.709161],[-65.749867,-66.700372],[-65.738149,-66.690525],[-65.725453,-66.683526],[-65.689361,-66.683689],[-65.674631,-66.676935],[-65.646148,-66.653009],[-65.762074,-66.609633],[-65.766713,-66.601821],[-65.751698,-66.594415],[-65.734609,-66.593927],[-65.717193,-66.596612],[-65.70108,-66.595961],[-65.687978,-66.586033],[-65.691884,-66.581638],[-65.720693,-66.564386],[-65.722401,-66.554376],[-65.718821,-66.546075],[-65.705434,-66.52809],[-65.689361,-66.496189],[-65.664703,-66.462498],[-65.660756,-66.449884],[-65.662709,-66.434015],[-65.63622,-66.422784],[-65.578033,-66.409845],[-65.550364,-66.40016],[-65.601552,-66.378513],[-65.611887,-66.376886],[-65.63561,-66.378513],[-65.642934,-66.37713],[-65.657623,-66.360284],[-65.66218,-66.343927],[-65.66926,-66.330011],[-65.69164,-66.320489],[-65.740142,-66.318536],[-65.78482,-66.323337],[-65.828114,-66.321222],[-65.872426,-66.298923],[-65.785715,-66.274021],[-65.765126,-66.271661],[-65.745432,-66.272068],[-65.725901,-66.270115],[-65.640533,-66.214776],[-65.633697,-66.200616],[-65.64684,-66.181736],[-65.663564,-66.170505],[-65.705474,-66.149998],[-65.612945,-66.125665],[-65.608469,-66.120294],[-65.600331,-66.102634],[-65.595815,-66.098403],[-65.582672,-66.100763],[-65.54483,-66.121515],[-65.530385,-66.123468],[-65.501454,-66.121352],[-65.486969,-66.122817],[-65.435618,-66.144952],[-65.414418,-66.147556],[-65.319976,-66.147068],[-65.187408,-66.17254],[-65.138661,-66.169854],[-65.090932,-66.150079],[-65.249867,-66.066583],[-65.300526,-66.049981],[-65.319163,-66.038263],[-65.332021,-66.021173],[-65.335927,-66.001235],[-65.327748,-65.981134],[-65.314076,-65.970147],[-65.296254,-65.963311],[-65.259755,-65.957452],[-65.052154,-65.96266],[-65.039784,-65.960219],[-65.014027,-65.944757],[-65.000844,-65.939386],[-64.916575,-65.926935],[-64.886627,-65.928399],[-64.823354,-65.940362],[-64.81786,-65.946384],[-64.809397,-65.971124],[-64.799713,-65.980564],[-64.786936,-65.984552],[-64.773997,-65.986912],[-64.762441,-65.990899],[-64.740793,-66.012384],[-64.712636,-66.017185],[-64.703521,-66.032973],[-64.686513,-66.038344],[-64.584096,-66.033461],[-64.572011,-66.029555],[-64.538075,-66.005548],[-64.508372,-65.990981],[-64.496002,-65.98089],[-64.487701,-65.96559],[-64.487701,-65.950453],[-64.495839,-65.939386],[-64.52123,-65.922621],[-64.556386,-65.888767],[-64.55606,-65.882094],[-64.595041,-65.883396],[-64.630238,-65.878839],[-64.662709,-65.865492],[-64.693674,-65.840509],[-64.671986,-65.81406],[-64.671376,-65.752618],[-64.657948,-65.737237],[-64.6256,-65.738539],[-64.5631,-65.764255],[-64.396392,-65.80934],[-64.376698,-65.805352],[-64.369008,-65.797784],[-64.368276,-65.764744],[-64.370432,-65.757013],[-64.374745,-65.748956],[-64.377187,-65.741795],[-64.373525,-65.736423],[-64.335276,-65.716567],[-64.444203,-65.657322],[-64.478668,-65.631443],[-64.305002,-65.631931],[-64.250966,-65.642185],[-64.225942,-65.656427],[-64.209096,-65.673435],[-64.190582,-65.684666],[-64.134429,-65.680352],[-64.074818,-65.693048],[-64.045074,-65.693129],[-64.066274,-65.669692],[-64.122222,-65.643162],[-64.145131,-65.623956],[-64.123199,-65.614679],[-64.116607,-65.610528],[-64.14037,-65.586684],[-64.16454,-65.568048],[-64.192291,-65.55641],[-64.226877,-65.553318],[-64.081899,-65.514825],[-64.003733,-65.515395],[-63.974477,-65.555922],[-63.973459,-65.570082],[-63.966176,-65.574965],[-63.938832,-65.57936],[-63.880483,-65.599054],[-63.806304,-65.608005],[-63.795155,-65.605727],[-63.792307,-65.591241],[-63.802561,-65.575372],[-63.828684,-65.54754],[-63.795481,-65.531345],[-63.682281,-65.523858],[-63.701161,-65.504653],[-63.754384,-65.496189],[-63.762318,-65.471612],[-63.829986,-65.484145],[-63.827301,-65.478774],[-63.823883,-65.466892],[-63.821401,-65.461521],[-63.922027,-65.46852],[-64.059722,-65.429376],[-64.089955,-65.413344],[-64.062978,-65.409438],[-64.034291,-65.399347],[-64.007151,-65.385349],[-63.984486,-65.369887],[-63.997467,-65.353774],[-64.013295,-65.343032],[-64.04955,-65.326755],[-64.103668,-65.276544],[-64.109853,-65.267755],[-64.079091,-65.270115],[-64.064198,-65.269464],[-64.054921,-65.262465],[-64.056223,-65.241388],[-64.082143,-65.193617],[-64.079701,-65.165297],[-64.055898,-65.144301],[-63.994456,-65.147393],[-63.969594,-65.133559],[-63.969146,-65.12949],[-63.974233,-65.120538],[-63.974355,-65.116795],[-63.970326,-65.112563],[-63.964996,-65.109633],[-63.944488,-65.101821],[-63.921457,-65.096368],[-63.913075,-65.091485],[-63.905995,-65.08172],[-63.896596,-65.062758],[-63.887685,-65.053888],[-63.873891,-65.045994],[-63.826975,-65.030206],[-63.806223,-65.026462],[-63.790639,-65.028741],[-63.758697,-65.041599],[-63.739329,-65.043878],[-63.722279,-65.041192],[-63.706288,-65.040623],[-63.690175,-65.048272],[-63.672963,-65.066827],[-63.663319,-65.072035],[-63.653391,-65.075291],[-63.589955,-65.083754],[-63.556711,-65.083103],[-63.536733,-65.079685],[-63.526601,-65.079767],[-63.499989,-65.092869],[-63.451731,-65.093194],[-63.427358,-65.096124],[-63.382436,-65.110935],[-63.359731,-65.111423],[-63.316151,-65.091485],[-63.288157,-65.082696],[-63.261301,-65.080336],[-63.246409,-65.090753],[-63.237172,-65.117364],[-63.224192,-65.136651],[-63.204823,-65.146254],[-63.150746,-65.142836],[-63.1079,-65.163832],[-63.083608,-65.166111],[-63.060414,-65.157485],[-63.018056,-65.132745],[-62.992014,-65.125421],[-63.02302,-65.085219],[-62.999745,-65.074884],[-62.991811,-65.072361],[-62.998769,-65.068536],[-63.01183,-65.058526],[-63.01887,-65.054783],[-63.003326,-65.043634],[-63.005442,-65.035414],[-63.017161,-65.030369],[-63.030873,-65.027765],[-63.04894,-65.028578],[-63.085805,-65.036798],[-63.103993,-65.037286],[-63.138743,-65.027765],[-63.173695,-65.010186],[-63.233754,-64.965265],[-63.208811,-64.949395],[-63.098622,-64.934015],[-63.088368,-64.930352],[-63.079661,-64.92254],[-63.067128,-64.906834],[-63.056508,-64.904392],[-63.039784,-64.908787],[-63.011627,-64.920668],[-62.997222,-64.923598],[-62.985992,-64.921157],[-62.974721,-64.917169],[-62.95995,-64.914972],[-62.943349,-64.917576],[-62.914662,-64.928888],[-62.897857,-64.931085],[-62.867909,-64.920994],[-62.822092,-64.877699],[-62.788808,-64.866632],[-62.824778,-64.85475],[-62.839833,-64.845636],[-62.854319,-64.831638],[-62.794097,-64.812677],[-62.740102,-64.823012],[-62.59553,-64.906427],[-62.583974,-64.91074],[-62.564809,-64.909275],[-62.552968,-64.900974],[-62.542307,-64.890313],[-62.526031,-64.881931],[-62.498199,-64.878839],[-62.437408,-64.881524],[-62.407216,-64.876642],[-62.673818,-64.777276],[-62.653147,-64.763116],[-62.630727,-64.75921],[-62.581614,-64.760024],[-62.559193,-64.753351],[-62.518056,-64.731866],[-62.497182,-64.731866],[-62.540883,-64.701755],[-62.5572,-64.685724],[-62.574086,-64.656671],[-62.572011,-64.649591],[-62.56314,-64.642348],[-62.551869,-64.63714],[-62.542795,-64.636326],[-62.522694,-64.641046],[-62.507314,-64.641697],[-62.492055,-64.63836],[-62.472483,-64.631117],[-62.483225,-64.622328],[-62.494944,-64.616143],[-62.507639,-64.612481],[-62.521148,-64.612237],[-62.495513,-64.598565],[-62.470204,-64.593357],[-62.444163,-64.594822],[-62.416493,-64.601251],[-62.423451,-64.606622],[-62.436025,-64.619236],[-62.442983,-64.624607],[-62.391591,-64.659845],[-62.366322,-64.669122],[-62.365387,-64.645603],[-62.342763,-64.647393],[-62.320465,-64.651625],[-62.310943,-64.656508],[-62.304189,-64.664646],[-62.303822,-64.672947],[-62.312856,-64.677992],[-62.337961,-64.687107],[-62.353627,-64.702569],[-62.362782,-64.723565],[-62.369008,-64.749119],[-62.141835,-64.784845],[-62.15982,-64.770685],[-62.200836,-64.753025],[-62.220082,-64.738051],[-62.196116,-64.734633],[-62.174224,-64.735935],[-62.128896,-64.746026],[-62.134185,-64.73089],[-62.137034,-64.715265],[-62.13683,-64.683282],[-62.054921,-64.717869],[-62.04483,-64.714532],[-62.028228,-64.701267],[-62.015207,-64.695733],[-61.984527,-64.695082],[-61.970855,-64.690362],[-61.9558,-64.678643],[-61.943349,-64.666599],[-61.920725,-64.637791],[-61.966786,-64.612237],[-61.945709,-64.599786],[-61.931549,-64.585545],[-61.915679,-64.574884],[-61.890248,-64.573663],[-61.878896,-64.576837],[-61.844635,-64.593032],[-61.834869,-64.593032],[-61.795033,-64.582778],[-61.812571,-64.572849],[-61.829457,-64.535821],[-61.843739,-64.518243],[-61.830393,-64.513849],[-61.814076,-64.497166],[-61.805735,-64.492852],[-61.784901,-64.492934],[-61.779652,-64.497166],[-61.777984,-64.505304],[-61.768788,-64.518243],[-61.721588,-64.562921],[-61.712392,-64.581231],[-61.709055,-64.596938],[-61.703277,-64.609145],[-61.686513,-64.61712],[-61.672109,-64.620538],[-61.661244,-64.625095],[-61.655873,-64.632908],[-61.657338,-64.645766],[-61.653147,-64.653985],[-61.638783,-64.660577],[-61.608306,-64.667576],[-61.578847,-64.662042],[-61.491038,-64.614516],[-61.569,-64.584242],[-61.604319,-64.560724],[-61.605784,-64.532159],[-61.574208,-64.522231],[-61.520497,-64.524998],[-61.466176,-64.534601],[-61.432281,-64.545587],[-61.445424,-64.531915],[-61.446929,-64.510919],[-61.444203,-64.487237],[-61.444692,-64.465102],[-61.52481,-64.484063],[-61.559316,-64.47796],[-61.582875,-64.442641],[-61.566884,-64.438084],[-61.541615,-64.420587],[-61.527659,-64.415704],[-61.496165,-64.412286],[-61.485463,-64.407892],[-61.471669,-64.397882],[-61.461252,-64.383233],[-61.460764,-64.373142],[-61.456125,-64.368341],[-61.415598,-64.37127],[-61.398549,-64.369236],[-61.365061,-64.358982],[-61.371693,-64.376153],[-61.38622,-64.384454],[-61.423411,-64.392755],[-61.416575,-64.407647],[-61.402577,-64.409356],[-61.384755,-64.405694],[-61.366689,-64.404474],[-61.349843,-64.409601],[-61.295318,-64.432387],[-61.295237,-64.405206],[-61.271311,-64.394708],[-61.149973,-64.393976],[-61.090688,-64.386326],[-61.113189,-64.381443],[-61.124745,-64.370701],[-61.130442,-64.354425],[-61.135162,-64.333103],[-61.11734,-64.333429],[-61.110504,-64.324802],[-61.106191,-64.312921],[-61.095815,-64.302911],[-61.08023,-64.298028],[-61.064443,-64.295831],[-61.002187,-64.298761],[-60.968658,-64.295668],[-60.941721,-64.281915],[-60.930816,-64.251397],[-60.953847,-64.247817],[-60.975982,-64.240899],[-60.967437,-64.221938],[-60.955963,-64.213067],[-60.940663,-64.210219],[-60.920481,-64.210056],[-60.96288,-64.156345],[-60.870188,-64.166925],[-60.84081,-64.164239],[-60.847524,-64.153985],[-60.85554,-64.147393],[-60.865061,-64.143487],[-60.876373,-64.141371],[-60.887278,-64.136651],[-60.904449,-64.117771],[-60.91454,-64.110447],[-61.019439,-64.082452],[-60.985666,-64.064548],[-60.924672,-64.056085],[-60.89037,-64.047052],[-60.877187,-64.047459],[-60.86148,-64.05462],[-60.833119,-64.072524],[-60.818674,-64.075453],[-60.800404,-64.073337],[-60.767161,-64.064711],[-60.772857,-64.085056],[-60.746409,-64.079197],[-60.727366,-64.062188],[-60.720204,-64.038263],[-60.729319,-64.011489],[-60.528472,-63.986017],[-60.306467,-63.91546],[-60.252309,-63.920099],[-60.201487,-63.913751],[-60.174224,-63.916111],[-59.995188,-63.958673],[-59.982004,-63.959731],[-59.96996,-63.958103],[-59.956207,-63.951918],[-59.953847,-63.94671],[-59.95637,-63.940362],[-59.957102,-63.930841],[-59.952301,-63.921808],[-59.937001,-63.907159],[-59.933339,-63.89837],[-59.935374,-63.892673],[-59.94518,-63.883396],[-59.947092,-63.876886],[-59.94286,-63.865655],[-59.933909,-63.857029],[-59.922353,-63.85117],[-59.910878,-63.847914],[-59.88622,-63.849867],[-59.864898,-63.857354],[-59.844472,-63.85947],[-59.822499,-63.845473],[-59.839019,-63.831313],[-59.848459,-63.818943],[-59.848378,-63.805271],[-59.836334,-63.787042],[-59.822499,-63.775974],[-59.807444,-63.771661],[-59.791615,-63.774102],[-59.775624,-63.782159],[-59.760732,-63.799574],[-59.767812,-63.811782],[-59.782582,-63.822361],[-59.790639,-63.834731],[-59.784901,-63.852716],[-59.770172,-63.859959],[-59.713287,-63.861017],[-59.662953,-63.873468],[-59.607411,-63.873793],[-59.566477,-63.888279],[-59.548736,-63.89129],[-59.530873,-63.889093],[-59.509999,-63.881524],[-59.489003,-63.879083],[-59.467519,-63.886407],[-59.429107,-63.909926],[-59.401194,-63.861993],[-59.413889,-63.858087],[-59.424957,-63.851251],[-59.434071,-63.841974],[-59.440582,-63.830255],[-59.345204,-63.792413],[-59.339752,-63.785333],[-59.338124,-63.773614],[-59.344106,-63.761895],[-59.366851,-63.733494],[-59.368886,-63.72324],[-59.352284,-63.708591],[-59.328359,-63.698337],[-59.253814,-63.681817],[-59.231272,-63.680597],[-59.209218,-63.683038],[-59.186431,-63.690037],[-59.141225,-63.710545],[-59.115468,-63.718438],[-59.096303,-63.716241],[-59.012034,-63.671563],[-58.98766,-63.667657],[-58.96052,-63.670994],[-58.936147,-63.669203],[-58.920766,-63.650974],[-58.922597,-63.631036],[-58.941762,-63.585626],[-58.940338,-63.564386],[-58.923899,-63.548923],[-58.898549,-63.540216],[-58.577524,-63.497206],[-58.2565,-63.454197],[-58.165191,-63.462986],[-58.144846,-63.458591],[-58.131703,-63.444431],[-58.126536,-63.416111],[-58.142893,-63.416762],[-58.16511,-63.415216],[-58.182851,-63.407892],[-58.186147,-63.391534],[-58.169911,-63.37656],[-58.144765,-63.379327],[-58.119618,-63.391209],[-58.103424,-63.402602],[-58.089182,-63.410333],[-58.069692,-63.414727],[-58.049428,-63.415704],[-58.032948,-63.413181],[-58.022572,-63.407322],[-58.003896,-63.391534],[-57.992787,-63.387628],[-57.968088,-63.385186],[-57.958567,-63.381117],[-57.880279,-63.314711],[-57.862782,-63.306573],[-57.797109,-63.307224],[-57.491811,-63.25156],[-57.411733,-63.22503],[-57.368723,-63.217869],[-57.28661,-63.214776],[-57.105865,-63.241388],[-57.029408,-63.28102]]],[[[-56.615346,-63.215427],[-56.646718,-63.219496],[-56.677235,-63.217543],[-56.698557,-63.206231],[-56.70287,-63.189223],[-56.691721,-63.17547],[-56.673085,-63.165297],[-56.654856,-63.158298],[-56.632232,-63.152114],[-56.609853,-63.150567],[-56.587636,-63.154067],[-56.565989,-63.162856],[-56.58495,-63.201267],[-56.591868,-63.208591],[-56.615346,-63.215427]]],[[[-55.575673,-63.129083],[-55.506703,-63.148696],[-55.477854,-63.15252],[-55.492991,-63.154474],[-55.50886,-63.16074],[-55.523427,-63.169529],[-55.534983,-63.179132],[-55.44343,-63.207778],[-55.42984,-63.207452],[-55.420237,-63.202895],[-55.411448,-63.196547],[-55.400706,-63.190688],[-55.384185,-63.18727],[-55.159373,-63.203871],[-55.159332,-63.203871],[-55.126617,-63.208673],[-55.085764,-63.221612],[-55.05248,-63.245375],[-55.042836,-63.282973],[-55.063954,-63.319268],[-55.10912,-63.343683],[-55.172719,-63.357599],[-55.248687,-63.362074],[-55.31192,-63.356866],[-55.424184,-63.332778],[-55.485911,-63.326918],[-55.583241,-63.337823],[-55.625234,-63.334161],[-55.7919,-63.285577],[-55.778391,-63.302179],[-55.775543,-63.309828],[-55.780344,-63.319594],[-55.791737,-63.324965],[-55.808217,-63.325453],[-55.824941,-63.323337],[-55.83731,-63.320001],[-55.849721,-63.313246],[-55.860666,-63.304946],[-55.872141,-63.298028],[-55.886627,-63.295017],[-55.901357,-63.296645],[-55.906565,-63.301446],[-55.908355,-63.308282],[-55.913075,-63.316583],[-55.922353,-63.324884],[-55.946401,-63.341241],[-55.996409,-63.333917],[-56.022369,-63.346612],[-56.047475,-63.368422],[-56.094879,-63.388767],[-56.242014,-63.406671],[-56.288442,-63.417413],[-56.336171,-63.436782],[-56.355133,-63.439711],[-56.39269,-63.438735],[-56.450266,-63.429295],[-56.459096,-63.425877],[-56.467926,-63.420099],[-56.474355,-63.412774],[-56.484731,-63.396742],[-56.493235,-63.390395],[-56.508656,-63.385431],[-56.52477,-63.382013],[-56.540191,-63.377048],[-56.553782,-63.367283],[-56.547515,-63.346368],[-56.504547,-63.330336],[-56.425649,-63.31463],[-56.470855,-63.298028],[-56.477406,-63.294041],[-56.431793,-63.25628],[-56.369537,-63.228123],[-56.245269,-63.192071],[-55.974517,-63.146905],[-55.723053,-63.147556],[-55.631581,-63.130304],[-55.575673,-63.129083]]],[[[-56.468739,-62.976332],[-56.313873,-63.004327],[-56.104237,-63.004164],[-56.047719,-63.017022],[-56.035024,-63.05755],[-56.068349,-63.086847],[-56.21581,-63.161065],[-56.273508,-63.178481],[-56.336049,-63.174574],[-56.408437,-63.155532],[-56.545969,-63.099298],[-56.603586,-63.070245],[-56.618031,-63.051446],[-56.602651,-63.030532],[-56.577626,-63.01922],[-56.524281,-63.003188],[-56.49942,-62.991632],[-56.493153,-62.986505],[-56.489858,-62.982599],[-56.485666,-62.979262],[-56.476796,-62.976658],[-56.468739,-62.976332]]],[[[-60.619252,-62.896661],[-60.547841,-62.925958],[-60.497874,-62.964288],[-60.52599,-62.981052],[-60.56432,-62.977716],[-60.595448,-62.959893],[-60.60204,-62.933689],[-60.624094,-62.926365],[-60.644683,-62.922621],[-60.664703,-62.922621],[-60.685292,-62.926202],[-60.686594,-62.930352],[-60.697621,-62.949314],[-60.700307,-62.952732],[-60.700185,-62.959405],[-60.697987,-62.963637],[-60.693512,-62.966892],[-60.673899,-62.976495],[-60.557485,-63.007582],[-60.582509,-63.017185],[-60.618804,-63.016534],[-60.683665,-63.003351],[-60.706044,-62.994806],[-60.726552,-62.981866],[-60.741567,-62.964044],[-60.746978,-62.940606],[-60.692209,-62.895196],[-60.619252,-62.896661]]],[[[-62.65685,-63.084649],[-62.68578,-63.090427],[-62.71231,-63.089288],[-62.686757,-63.078302],[-62.680409,-63.072686],[-62.677561,-63.066664],[-62.676015,-63.05641],[-62.671702,-63.050958],[-62.660471,-63.045668],[-62.634185,-63.039646],[-62.624867,-63.030532],[-62.615834,-63.014825],[-62.605092,-63.000258],[-62.592763,-62.987074],[-62.578847,-62.975681],[-62.550445,-62.962009],[-62.543324,-62.956313],[-62.539703,-62.949314],[-62.538971,-62.934666],[-62.537017,-62.926935],[-62.519276,-62.91253],[-62.48941,-62.903253],[-62.390126,-62.89129],[-62.380198,-62.887953],[-62.361318,-62.878595],[-62.351145,-62.875421],[-62.306264,-62.875177],[-62.35676,-62.933364],[-62.429799,-62.985772],[-62.601226,-63.065606],[-62.601267,-63.065606],[-62.65685,-63.084649]]],[[[-61.40925,-62.823337],[-61.465077,-62.823989],[-61.496978,-62.81756],[-61.507314,-62.813572],[-61.513336,-62.809991],[-61.518178,-62.805597],[-61.521881,-62.800226],[-61.523915,-62.793634],[-61.52359,-62.783787],[-61.520172,-62.774509],[-61.514638,-62.766209],[-61.507721,-62.75921],[-61.486073,-62.745701],[-61.460683,-62.737237],[-61.408803,-62.729425],[-61.198883,-62.727716],[-61.228017,-62.733819],[-61.24706,-62.742364],[-61.255483,-62.753839],[-61.252838,-62.768731],[-61.40925,-62.823337]]],[[[-60.062896,-62.550958],[-60.079579,-62.563653],[-60.070709,-62.579767],[-60.045766,-62.61533],[-60.024526,-62.627048],[-59.98941,-62.630141],[-59.802968,-62.611261],[-60.127553,-62.716485],[-60.146067,-62.727227],[-60.245961,-62.752862],[-60.290598,-62.757582],[-60.31432,-62.741388],[-60.320302,-62.740167],[-60.326283,-62.740167],[-60.332143,-62.739353],[-60.337473,-62.736098],[-60.298166,-62.691339],[-60.298248,-62.681899],[-60.332387,-62.678155],[-60.366811,-62.689386],[-60.40095,-62.705499],[-60.433665,-62.716241],[-60.411204,-62.676935],[-60.400746,-62.66725],[-60.393056,-62.664239],[-60.375803,-62.660821],[-60.367787,-62.657485],[-60.336537,-62.634698],[-60.323598,-62.628513],[-60.379221,-62.610121],[-60.599599,-62.640395],[-60.679799,-62.616469],[-60.710317,-62.614028],[-60.7447,-62.62184],[-60.758209,-62.633884],[-60.763092,-62.646905],[-60.771555,-62.657403],[-60.811757,-62.67197],[-61.056223,-62.682875],[-61.110422,-62.678318],[-61.16039,-62.663344],[-61.137441,-62.63893],[-61.141754,-62.619073],[-61.163889,-62.603692],[-61.194488,-62.593683],[-61.150868,-62.584649],[-61.017079,-62.608005],[-60.96231,-62.611586],[-60.901845,-62.600844],[-60.843007,-62.583673],[-60.823801,-62.575779],[-60.814565,-62.569513],[-60.810129,-62.561456],[-60.815256,-62.55169],[-60.827504,-62.542087],[-60.84024,-62.535089],[-60.846669,-62.533136],[-60.815826,-62.504327],[-60.802073,-62.486423],[-60.801829,-62.468927],[-60.79662,-62.468927],[-60.710317,-62.49977],[-60.706451,-62.50213],[-60.703521,-62.505955],[-60.702789,-62.510186],[-60.70287,-62.516697],[-60.703684,-62.522068],[-60.705149,-62.523207],[-60.674794,-62.548598],[-60.641754,-62.564223],[-60.604848,-62.572524],[-60.491078,-62.577081],[-60.451812,-62.569106],[-60.432118,-62.549249],[-60.381174,-62.552667],[-60.329701,-62.549981],[-60.278798,-62.541274],[-60.22997,-62.526462],[-60.192006,-62.509535],[-60.174062,-62.498468],[-60.158437,-62.485284],[-60.138905,-62.461521],[-60.129465,-62.460056],[-60.103627,-62.475844],[-60.080678,-62.493748],[-60.073394,-62.497328],[-60.035756,-62.511895],[-60.010854,-62.525649],[-60.062896,-62.550958]]],[[[-59.726552,-62.503676],[-59.711822,-62.504815],[-59.700917,-62.503188],[-59.642323,-62.482599],[-59.610585,-62.480076],[-59.579823,-62.48561],[-59.5537,-62.501235],[-59.564565,-62.507257],[-59.589996,-62.510186],[-59.601959,-62.51393],[-59.599192,-62.534356],[-59.618235,-62.544692],[-59.670237,-62.549574],[-59.724965,-62.544529],[-59.745676,-62.545017],[-59.750478,-62.544692],[-59.755279,-62.544041],[-59.760121,-62.542576],[-59.764719,-62.540134],[-59.770823,-62.534763],[-59.778391,-62.521742],[-59.783681,-62.51629],[-59.799062,-62.509535],[-59.9322,-62.489435],[-59.996083,-62.452569],[-59.932281,-62.440118],[-59.722483,-62.451918],[-59.765207,-62.472914],[-59.776967,-62.48089],[-59.769114,-62.487237],[-59.760121,-62.492771],[-59.7506,-62.497166],[-59.726552,-62.503676]]],[[[-59.382314,-62.372735],[-59.347401,-62.406508],[-59.351877,-62.409275],[-59.37149,-62.435968],[-59.376617,-62.441176],[-59.381337,-62.444594],[-59.386871,-62.446873],[-59.394928,-62.448419],[-59.448964,-62.448175],[-59.498199,-62.457208],[-59.508778,-62.456964],[-59.557444,-62.445001],[-59.575307,-62.443536],[-59.591868,-62.428969],[-59.625722,-62.408136],[-59.615549,-62.400567],[-59.610666,-62.393731],[-59.607411,-62.387384],[-59.602162,-62.381524],[-59.612945,-62.384535],[-59.663889,-62.388767],[-59.671498,-62.388116],[-59.680002,-62.386326],[-59.6881,-62.382989],[-59.694163,-62.378513],[-59.695953,-62.375746],[-59.696848,-62.372735],[-59.696645,-62.369317],[-59.695058,-62.365655],[-59.689198,-62.361098],[-59.679677,-62.358005],[-59.603871,-62.347345],[-59.436757,-62.355076],[-59.382314,-62.372735]]],[[[-58.983144,-62.265395],[-58.973622,-62.26922],[-58.926991,-62.261977],[-58.899159,-62.263116],[-58.871897,-62.270929],[-58.849029,-62.286065],[-58.83434,-62.30934],[-59.029856,-62.348077],[-59.069407,-62.349054],[-59.088735,-62.346449],[-59.104319,-62.341404],[-59.142934,-62.323337],[-59.157379,-62.319513],[-59.164215,-62.31699],[-59.202952,-62.29697],[-59.217763,-62.292087],[-59.188791,-62.272393],[-59.156606,-62.260186],[-59.032948,-62.233494],[-59.004547,-62.233168],[-58.978586,-62.241143],[-58.982574,-62.24977],[-58.984527,-62.256606],[-58.98469,-62.261814],[-58.983144,-62.265395]]],[[[-57.890248,-61.938409],[-57.835805,-61.94199],[-57.705474,-61.915704],[-57.669911,-61.913507],[-57.656321,-61.917087],[-57.647532,-61.926202],[-57.64566,-61.937595],[-57.649566,-61.948907],[-57.657704,-61.958185],[-57.6704,-61.964451],[-57.680776,-61.967462],[-57.684967,-61.971449],[-57.678578,-61.98089],[-57.660715,-61.995538],[-57.637196,-62.009373],[-57.612294,-62.019789],[-57.589833,-62.025486],[-57.765777,-62.007094],[-57.788442,-62.008722],[-57.812652,-62.013849],[-57.848378,-62.028578],[-57.91804,-62.066583],[-57.95401,-62.078058],[-57.989084,-62.079848],[-58.139963,-62.056248],[-58.155263,-62.058526],[-58.16804,-62.063897],[-58.171457,-62.070245],[-58.170969,-62.078871],[-58.172597,-62.091241],[-58.177398,-62.099786],[-58.183013,-62.10589],[-58.185862,-62.111912],[-58.182118,-62.119887],[-58.169993,-62.128351],[-58.123158,-62.140069],[-58.138254,-62.156915],[-58.163075,-62.167576],[-58.242828,-62.181573],[-58.272776,-62.180922],[-58.2919,-62.175388],[-58.308461,-62.165216],[-58.338857,-62.140313],[-58.367909,-62.123956],[-58.375315,-62.116876],[-58.379018,-62.106052],[-58.372222,-62.101821],[-58.329416,-62.103611],[-58.313344,-62.100356],[-58.279205,-62.082615],[-58.306549,-62.07464],[-58.335601,-62.075291],[-58.391469,-62.084893],[-58.404408,-62.084405],[-58.441884,-62.072198],[-58.458648,-62.069757],[-58.476186,-62.070408],[-58.493398,-62.074151],[-58.508901,-62.080987],[-58.474965,-62.09238],[-58.467763,-62.098403],[-58.468129,-62.11419],[-58.481842,-62.127374],[-58.5006,-62.137384],[-58.621246,-62.171075],[-58.633941,-62.177911],[-58.61384,-62.182875],[-58.592397,-62.184503],[-58.55016,-62.181736],[-58.466908,-62.160414],[-58.446116,-62.188653],[-58.447377,-62.204767],[-58.467519,-62.215509],[-58.584625,-62.248956],[-58.622548,-62.247979],[-58.633372,-62.227146],[-58.676096,-62.223728],[-58.745717,-62.236912],[-58.783111,-62.22503],[-58.760813,-62.219985],[-58.750071,-62.215753],[-58.740875,-62.210056],[-58.754547,-62.204522],[-58.798004,-62.197849],[-58.795888,-62.195489],[-58.794342,-62.18963],[-58.793772,-62.183038],[-58.794057,-62.178888],[-58.797515,-62.173598],[-58.802073,-62.171157],[-58.807362,-62.17018],[-58.825185,-62.169366],[-58.942006,-62.193129],[-58.955719,-62.200291],[-58.959869,-62.210626],[-58.949127,-62.225681],[-58.96345,-62.227472],[-58.980051,-62.226251],[-59.010732,-62.219659],[-58.982818,-62.184503],[-58.946034,-62.158787],[-58.712799,-62.052667],[-58.701324,-62.04046],[-58.70165,-62.034845],[-58.704457,-62.03045],[-58.706776,-62.025567],[-58.705556,-62.019138],[-58.699086,-62.012384],[-58.689076,-62.007582],[-58.678212,-62.004002],[-58.465321,-61.966485],[-58.455881,-61.961602],[-58.449534,-61.955824],[-58.439809,-61.942153],[-58.434478,-61.93727],[-58.414052,-61.933282],[-58.387603,-61.936619],[-58.339915,-61.947931],[-58.224436,-61.960219],[-58.175771,-61.951267],[-58.052805,-61.91253],[-58.007883,-61.904474],[-57.890248,-61.938409]]],[[[-54.075307,-61.303969],[-54.098012,-61.312107],[-54.121246,-61.308689],[-54.20287,-61.284112],[-54.227406,-61.270115],[-54.207183,-61.252537],[-54.086903,-61.180352],[-54.074086,-61.167657],[-54.069447,-61.159438],[-54.057769,-61.132908],[-54.057362,-61.127048],[-54.023427,-61.130548],[-54.00886,-61.137628],[-54.006459,-61.152114],[-54.016916,-61.163751],[-54.032786,-61.168878],[-54.048207,-61.175714],[-54.057485,-61.19256],[-54.0572,-61.202407],[-54.052968,-61.207289],[-54.046295,-61.21087],[-54.038889,-61.217055],[-54.03425,-61.223728],[-54.032948,-61.229181],[-54.036041,-61.245701],[-54.043813,-61.268731],[-54.057037,-61.288832],[-54.075307,-61.303969]]],[[[-55.077952,-61.093194],[-54.9735,-61.10711],[-54.651519,-61.106541],[-54.667714,-61.111423],[-54.696523,-61.13836],[-54.710561,-61.148045],[-54.729563,-61.152276],[-55.034576,-61.156427],[-55.0537,-61.159763],[-55.067616,-61.167576],[-55.071645,-61.174737],[-55.07315,-61.188572],[-55.077301,-61.195896],[-55.085927,-61.202244],[-55.095774,-61.204685],[-55.131663,-61.206964],[-55.139719,-61.211114],[-55.152333,-61.229669],[-55.178944,-61.255466],[-55.211415,-61.267267],[-55.246693,-61.267022],[-55.281484,-61.256931],[-55.343739,-61.227472],[-55.369862,-61.207208],[-55.391225,-61.178481],[-55.358957,-61.159763],[-55.345448,-61.155369],[-55.346344,-61.15488],[-55.346669,-61.154392],[-55.346059,-61.153985],[-55.344838,-61.153741],[-55.373402,-61.140395],[-55.430491,-61.1242],[-55.449045,-61.115004],[-55.414052,-61.083591],[-55.378041,-61.070489],[-55.077952,-61.093194]]],[[[-44.505238,-60.675551],[-44.45165,-60.703302],[-44.508656,-60.713637],[-44.518544,-60.718438],[-44.535227,-60.736505],[-44.566274,-60.74505],[-44.641265,-60.74863],[-44.697581,-60.744399],[-44.719716,-60.750421],[-44.717844,-60.772719],[-44.736155,-60.764418],[-44.819936,-60.740004],[-44.827748,-60.735772],[-44.832834,-60.731215],[-44.843088,-60.719008],[-44.84732,-60.715509],[-44.805247,-60.730157],[-44.78303,-60.733819],[-44.760976,-60.733331],[-44.722808,-60.725681],[-44.703847,-60.724705],[-44.694569,-60.722752],[-44.686513,-60.718357],[-44.680776,-60.708591],[-44.682118,-60.698012],[-44.690256,-60.676202],[-44.676584,-60.684747],[-44.609283,-60.708917],[-44.603017,-60.709161],[-44.5985,-60.706638],[-44.591542,-60.698663],[-44.58731,-60.695733],[-44.582753,-60.69492],[-44.573964,-60.696059],[-44.569651,-60.695733],[-44.552724,-60.688084],[-44.539215,-60.679946],[-44.52481,-60.674737],[-44.505238,-60.675551]]],[[[-45.010813,-60.708591],[-45.025624,-60.710219],[-45.041086,-60.707778],[-45.053944,-60.703058],[-45.078114,-60.686212],[-45.083363,-60.684666],[-45.073638,-60.672296],[-45.069,-60.660252],[-45.067128,-60.631117],[-45.061879,-60.635512],[-45.029612,-60.656834],[-45.028554,-60.661798],[-45.027699,-60.671319],[-45.025746,-60.681817],[-45.020416,-60.690362],[-45.015696,-60.693455],[-45.005035,-60.698012],[-45.000234,-60.70086],[-45.010813,-60.708591]]],[[[-45.665761,-60.524102],[-45.567535,-60.553643],[-45.545725,-60.554864],[-45.48705,-60.544692],[-45.477162,-60.545587],[-45.447418,-60.553806],[-45.390981,-60.579278],[-45.372385,-60.597263],[-45.389516,-60.612237],[-45.381703,-60.613702],[-45.349436,-60.628595],[-45.329213,-60.63242],[-45.27184,-60.626723],[-45.190663,-60.632908],[-45.211659,-60.65252],[-45.217844,-60.654555],[-45.17809,-60.666681],[-45.154042,-60.682387],[-45.146799,-60.685805],[-45.165028,-60.682387],[-45.175771,-60.682061],[-45.182932,-60.683852],[-45.187327,-60.698907],[-45.174672,-60.714288],[-45.141021,-60.736098],[-45.162424,-60.737481],[-45.184641,-60.733331],[-45.225942,-60.716892],[-45.261871,-60.692966],[-45.283803,-60.683364],[-45.307485,-60.678888],[-45.355295,-60.675714],[-45.353586,-60.673517],[-45.356557,-60.66839],[-45.363108,-60.660414],[-45.366811,-60.658868],[-45.408518,-60.648045],[-45.421457,-60.64658],[-45.46581,-60.6513],[-45.497914,-60.649347],[-45.544016,-60.641697],[-45.590566,-60.639255],[-45.680531,-60.649102],[-45.718861,-60.645603],[-45.742584,-60.626235],[-45.752349,-60.614353],[-45.759104,-60.611098],[-45.760121,-60.608087],[-45.752594,-60.596368],[-45.789296,-60.58408],[-45.824696,-60.586114],[-45.932932,-60.622817],[-45.95226,-60.625584],[-45.972076,-60.625421],[-45.993642,-60.621759],[-46.00178,-60.618259],[-46.006988,-60.612726],[-46.008697,-60.608087],[-46.008901,-60.602634],[-46.007476,-60.595798],[-46.004058,-60.587579],[-45.999989,-60.580662],[-45.994618,-60.573989],[-45.988149,-60.568536],[-45.980946,-60.56463],[-45.971791,-60.562921],[-45.957143,-60.566013],[-45.948313,-60.566339],[-45.957102,-60.534112],[-45.955068,-60.527765],[-45.935129,-60.524672],[-45.916737,-60.526137],[-45.851959,-60.547296],[-45.842844,-60.548435],[-45.833974,-60.546645],[-45.808095,-60.535821],[-45.79304,-60.534356],[-45.76122,-60.535577],[-45.746978,-60.532322],[-45.746653,-60.530857],[-45.744374,-60.526788],[-45.741119,-60.522231],[-45.737294,-60.518976],[-45.729726,-60.516778],[-45.72057,-60.516209],[-45.703359,-60.517348],[-45.665761,-60.524102]]]]},"properties":{"cartodb_id":9,"year":2012,"country":"Antarctica","num_occurrences":147,"ru_name":"Антарктика","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.134532,4.90884],[115.145844,4.908515],[115.146169,4.908515],[115.146801,4.88562],[115.155999,4.876293],[115.169332,4.869988],[115.182251,4.861229],[115.207365,4.825598],[115.272684,4.636772],[115.277025,4.613053],[115.275475,4.595741],[115.267413,4.556209],[115.266897,4.516857],[115.272478,4.474663],[115.285603,4.435363],[115.308651,4.404694],[115.343791,4.371672],[115.358261,4.350278],[115.360741,4.329556],[115.346272,4.313769],[115.324361,4.314596],[115.30121,4.324698],[115.283123,4.336765],[115.274338,4.34002],[115.255114,4.339245],[115.244676,4.343664],[115.229069,4.356764],[115.220698,4.359761],[115.190829,4.356764],[115.169952,4.361259],[115.113004,4.382369],[115.099775,4.391232],[115.091817,4.405417],[115.079828,4.503964],[115.068149,4.543367],[115.03549,4.621244],[115.026808,4.660027],[115.022777,4.741365],[115.029778,4.820642],[115.029796,4.820624],[115.048106,4.801825],[115.066417,4.813544],[115.086192,4.835639],[115.108572,4.84748],[115.130219,4.852037],[115.13087,4.863715],[115.122325,4.879381],[115.116466,4.896064],[115.118663,4.903754],[115.125173,4.90766],[115.134532,4.90884]]],[[[114.948363,4.818932],[114.932447,4.809139],[114.914877,4.808726],[114.89648,4.811826],[114.878186,4.812808],[114.855759,4.806659],[114.837672,4.795316],[114.805426,4.764568],[114.788476,4.753897],[114.751786,4.738523],[114.743192,4.730585],[114.741967,4.729454],[114.741347,4.712943],[114.748789,4.694392],[114.768116,4.657495],[114.773903,4.636824],[114.777314,4.614655],[114.782172,4.497789],[114.788166,4.461202],[114.806046,4.433322],[114.825683,4.426191],[114.840463,4.42862],[114.847904,4.423736],[114.84563,4.395108],[114.836432,4.357229],[114.828991,4.340486],[114.818242,4.323458],[114.794163,4.30024],[114.787856,4.294158],[114.781965,4.284933],[114.782585,4.264418],[114.813798,4.277104],[114.817208,4.259664],[114.809974,4.241293],[114.787133,4.207212],[114.780105,4.187756],[114.774524,4.146466],[114.766875,4.131816],[114.674891,4.04407],[114.627762,4.016681],[114.586628,4.021435],[114.581667,4.029342],[114.574226,4.054146],[114.569368,4.064404],[114.56141,4.072026],[114.540223,4.086935],[114.477384,4.144968],[114.463121,4.16414],[114.453303,4.183699],[114.432529,4.246925],[114.41992,4.260129],[114.40142,4.261214],[114.360492,4.253876],[114.316774,4.262506],[114.282667,4.264909],[114.278016,4.274055],[114.276259,4.289016],[114.279463,4.294881],[114.293416,4.307051],[114.296723,4.316663],[114.289902,4.361311],[114.276259,4.381853],[114.276259,4.409732],[114.268508,4.437741],[114.262617,4.448722],[114.252075,4.460349],[114.248768,4.466886],[114.247837,4.474767],[114.245564,4.481433],[114.238329,4.484224],[114.222929,4.484637],[114.216728,4.48766],[114.20908,4.50815],[114.197298,4.515824],[114.1727,4.525229],[114.14004,4.550654],[114.118956,4.561635],[114.064179,4.570032],[113.99879,4.601142],[114.25172,4.592678],[114.326671,4.606879],[114.395763,4.645738],[114.494477,4.68126],[114.529307,4.693793],[114.550304,4.714423],[114.565684,4.743354],[114.601817,4.779975],[114.722667,4.876044],[114.760183,4.898749],[114.928396,5.000556],[115.057791,5.054104],[115.082856,5.057196],[115.101736,5.049872],[115.103201,5.036851],[115.088634,5.026597],[115.057384,5.012641],[115.049083,4.999172],[115.032481,4.959418],[115.029552,4.947455],[115.022797,4.933743],[114.99171,4.904975],[114.9817,4.889065],[114.958905,4.866293],[114.955701,4.850919],[114.954874,4.834202],[114.948363,4.818932]]]]},"properties":{"cartodb_id":35,"year":2012,"country":"Brunei","num_occurrences":46,"ru_name":"Бруней","cartodb_georef_status":true}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-48.542592,-27.816664],[-48.551869,-27.819431],[-48.559804,-27.818455],[-48.563791,-27.817315],[-48.565094,-27.813653],[-48.563547,-27.739841],[-48.55724,-27.70794],[-48.544423,-27.681573],[-48.559071,-27.674493],[-48.55016,-27.658298],[-48.523915,-27.633722],[-48.52599,-27.611423],[-48.540151,-27.591485],[-48.547109,-27.577244],[-48.527659,-27.57171],[-48.515777,-27.570001],[-48.508168,-27.564874],[-48.504262,-27.55641],[-48.503407,-27.545017],[-48.506703,-27.539972],[-48.513783,-27.535414],[-48.523915,-27.530694],[-48.524159,-27.523533],[-48.521637,-27.517836],[-48.518625,-27.512872],[-48.517079,-27.507094],[-48.520416,-27.495782],[-48.534901,-27.484145],[-48.537506,-27.47617],[-48.530832,-27.463067],[-48.519399,-27.454522],[-48.512074,-27.444757],[-48.517079,-27.428318],[-48.49942,-27.426446],[-48.44579,-27.412367],[-48.43456,-27.404718],[-48.426584,-27.38893],[-48.408762,-27.399591],[-48.390207,-27.420505],[-48.379872,-27.435724],[-48.377309,-27.458185],[-48.385243,-27.477309],[-48.395741,-27.493585],[-48.403066,-27.512384],[-48.407541,-27.517267],[-48.411977,-27.523696],[-48.414052,-27.534112],[-48.412506,-27.546075],[-48.406972,-27.568617],[-48.407216,-27.579197],[-48.41454,-27.595147],[-48.427561,-27.613051],[-48.441558,-27.627699],[-48.451975,-27.633722],[-48.496571,-27.702732],[-48.497467,-27.723891],[-48.482167,-27.759454],[-48.486073,-27.774347],[-48.49352,-27.779067],[-48.512563,-27.783949],[-48.520497,-27.788344],[-48.534657,-27.807875],[-48.542592,-27.816664]]],[[[-48.578521,-26.420994],[-48.583241,-26.421075],[-48.586293,-26.41961],[-48.592193,-26.414158],[-48.611318,-26.412774],[-48.628041,-26.387953],[-48.643137,-26.359063],[-48.657338,-26.34531],[-48.699696,-26.316664],[-48.703277,-26.311944],[-48.701161,-26.307224],[-48.684153,-26.281345],[-48.675282,-26.273858],[-48.664174,-26.270766],[-48.646474,-26.268324],[-48.63976,-26.261651],[-48.636708,-26.251886],[-48.630035,-26.239679],[-48.607249,-26.227309],[-48.577626,-26.218438],[-48.558095,-26.205499],[-48.565541,-26.181329],[-48.547597,-26.16725],[-48.531158,-26.170343],[-48.516347,-26.184015],[-48.493398,-26.218927],[-48.490142,-26.227797],[-48.489125,-26.236017],[-48.492828,-26.243829],[-48.507558,-26.256606],[-48.516103,-26.281345],[-48.539174,-26.318943],[-48.544423,-26.341892],[-48.547922,-26.351821],[-48.575429,-26.376235],[-48.579091,-26.385431],[-48.579823,-26.397556],[-48.578521,-26.420994]]],[[[-48.269522,-25.475912],[-48.291107,-25.489117],[-48.309227,-25.48598],[-48.323867,-25.467522],[-48.319268,-25.454253],[-48.321475,-25.441978],[-48.339525,-25.425535],[-48.338304,-25.408171],[-48.322324,-25.383708],[-48.298471,-25.366432],[-48.268961,-25.348155],[-48.255379,-25.348212],[-48.250917,-25.364587],[-48.256674,-25.389097],[-48.268162,-25.426864],[-48.26712,-25.446285],[-48.255883,-25.465745],[-48.269522,-25.475912]]],[[[-47.448313,-24.693536],[-47.495188,-24.723891],[-47.530263,-24.732517],[-47.550038,-24.742364],[-47.78539,-24.923761],[-47.822743,-24.941664],[-47.838043,-24.958266],[-47.85912,-24.989028],[-47.877431,-25.027114],[-47.888295,-25.041192],[-47.900136,-25.036798],[-47.89977,-25.01572],[-47.883778,-24.98211],[-47.879628,-24.964776],[-47.872426,-24.958591],[-47.831858,-24.913263],[-47.717397,-24.830336],[-47.673573,-24.811456],[-47.612945,-24.75449],[-47.561676,-24.736017],[-47.535308,-24.710056],[-47.517161,-24.700942],[-47.506703,-24.699802],[-47.483022,-24.700942],[-47.473256,-24.697686],[-47.459055,-24.690199],[-47.448313,-24.6867],[-47.448313,-24.693536]]],[[[-46.381459,-23.920343],[-46.348378,-23.926446],[-46.327952,-23.926446],[-46.319488,-23.927667],[-46.318674,-23.930841],[-46.319895,-23.935317],[-46.317372,-23.940606],[-46.302561,-23.958429],[-46.291615,-23.979181],[-46.29186,-23.990899],[-46.341379,-23.969903],[-46.355377,-23.970636],[-46.365793,-23.981622],[-46.374501,-23.97796],[-46.391591,-23.977309],[-46.399892,-23.974786],[-46.404652,-23.970473],[-46.4204,-23.947442],[-46.40689,-23.941827],[-46.401967,-23.942804],[-46.393666,-23.947442],[-46.390045,-23.940851],[-46.388336,-23.935724],[-46.389394,-23.929457],[-46.393666,-23.92018],[-46.381459,-23.920343]]],[[[-45.228098,-23.772393],[-45.234853,-23.844415],[-45.265736,-23.839288],[-45.271108,-23.86891],[-45.254994,-23.898207],[-45.221262,-23.892267],[-45.21642,-23.899102],[-45.215077,-23.902032],[-45.213735,-23.906508],[-45.226471,-23.909275],[-45.226918,-23.916762],[-45.222646,-23.927667],[-45.221262,-23.940606],[-45.217844,-23.94492],[-45.218251,-23.949477],[-45.224599,-23.957696],[-45.228912,-23.961114],[-45.241689,-23.96795],[-45.24649,-23.963474],[-45.251047,-23.962091],[-45.256012,-23.962091],[-45.262196,-23.961114],[-45.27184,-23.946222],[-45.280507,-23.925226],[-45.290435,-23.911879],[-45.303782,-23.92018],[-45.309967,-23.912693],[-45.346059,-23.928155],[-45.385732,-23.938084],[-45.421864,-23.935235],[-45.447133,-23.912693],[-45.452952,-23.891371],[-45.447377,-23.877211],[-45.434804,-23.867283],[-45.41983,-23.858087],[-45.355377,-23.800063],[-45.344716,-23.782403],[-45.337717,-23.75213],[-45.333852,-23.745212],[-45.328603,-23.737481],[-45.327056,-23.73089],[-45.324696,-23.725274],[-45.316803,-23.72088],[-45.308461,-23.721368],[-45.297109,-23.724298],[-45.287017,-23.728204],[-45.236562,-23.761814],[-45.228098,-23.772393]]],[[[-44.207021,-23.104587],[-44.186513,-23.117608],[-44.170766,-23.110121],[-44.162587,-23.115899],[-44.155141,-23.125909],[-44.141835,-23.13128],[-44.135325,-23.128106],[-44.130238,-23.121026],[-44.126698,-23.113946],[-44.12442,-23.110772],[-44.113026,-23.114679],[-44.112864,-23.120701],[-44.116933,-23.126723],[-44.118276,-23.13128],[-44.110585,-23.140313],[-44.100901,-23.149021],[-44.085439,-23.161798],[-44.082265,-23.169529],[-44.097768,-23.173923],[-44.103668,-23.178643],[-44.107737,-23.17962],[-44.11266,-23.177423],[-44.116282,-23.17254],[-44.118072,-23.167657],[-44.118276,-23.16546],[-44.128041,-23.164972],[-44.135365,-23.16546],[-44.140981,-23.167739],[-44.145579,-23.172784],[-44.15925,-23.165785],[-44.168202,-23.171563],[-44.176869,-23.181329],[-44.189687,-23.186619],[-44.230824,-23.193536],[-44.2412,-23.193455],[-44.255971,-23.187677],[-44.265859,-23.180841],[-44.276235,-23.175226],[-44.292633,-23.172784],[-44.301666,-23.178318],[-44.311147,-23.191339],[-44.318918,-23.207208],[-44.32311,-23.220636],[-44.327707,-23.221287],[-44.328969,-23.219659],[-44.32901,-23.217055],[-44.329945,-23.2138],[-44.337961,-23.206638],[-44.341705,-23.198663],[-44.341542,-23.18963],[-44.337392,-23.17962],[-44.354482,-23.180352],[-44.360707,-23.178155],[-44.364654,-23.172784],[-44.367096,-23.165216],[-44.365468,-23.163995],[-44.360015,-23.163832],[-44.32311,-23.145603],[-44.296376,-23.117608],[-44.284169,-23.123224],[-44.270863,-23.115167],[-44.248036,-23.090997],[-44.244862,-23.086033],[-44.2412,-23.069757],[-44.235097,-23.06878],[-44.230458,-23.071466],[-44.227773,-23.074884],[-44.227528,-23.076755],[-44.219106,-23.077732],[-44.20816,-23.080743],[-44.196685,-23.085219],[-44.186513,-23.090997],[-44.186513,-23.097101],[-44.193227,-23.098077],[-44.197743,-23.10003],[-44.201772,-23.102309],[-44.207021,-23.104587]]],[[[-29.332875,-20.579685],[-29.338246,-20.584161],[-29.348256,-20.561293],[-29.344309,-20.550958],[-29.332021,-20.553318],[-29.316884,-20.56878],[-29.323964,-20.571466],[-29.328603,-20.575291],[-29.332875,-20.579685]]],[[[-28.881256,-20.51686],[-28.88329,-20.518731],[-28.881907,-20.515395],[-28.881418,-20.512384],[-28.880483,-20.510837],[-28.877065,-20.511651],[-28.877838,-20.514255],[-28.879262,-20.51572],[-28.881256,-20.51686]]],[[[-38.906239,-13.388849],[-38.896352,-13.453546],[-38.899403,-13.471368],[-38.916331,-13.483982],[-38.909535,-13.495212],[-38.91454,-13.508559],[-38.923818,-13.523126],[-38.929921,-13.537856],[-38.934397,-13.556248],[-38.931962,-13.568333],[-38.917391,-13.580966],[-38.914729,-13.592517],[-38.905044,-13.599892],[-38.906679,-13.606185],[-38.90672,-13.621403],[-38.895952,-13.630358],[-38.893275,-13.639286],[-38.902013,-13.671812],[-38.912814,-13.671781],[-38.918744,-13.667043],[-38.920336,-13.655495],[-38.937596,-13.655954],[-38.949489,-13.658024],[-38.957522,-13.632291],[-38.979056,-13.599695],[-38.985453,-13.573429],[-38.98378,-13.558212],[-38.98054,-13.547296],[-38.978342,-13.517348],[-38.973215,-13.508477],[-38.967885,-13.503351],[-38.967844,-13.498305],[-38.978342,-13.490167],[-39.026763,-13.472345],[-39.045888,-13.458185],[-39.033599,-13.442315],[-39.042551,-13.423923],[-39.0419,-13.405938],[-39.032582,-13.392511],[-39.015533,-13.38714],[-38.999582,-13.389825],[-38.983469,-13.394789],[-38.965647,-13.397882],[-38.944203,-13.394627],[-38.915639,-13.383477],[-38.906239,-13.388849]]],[[[-38.614613,-12.924981],[-38.592885,-12.964614],[-38.587473,-12.986912],[-38.60497,-12.996677],[-38.624989,-13.001642],[-38.642445,-13.013767],[-38.676666,-13.044529],[-38.718495,-13.072849],[-38.737375,-13.089939],[-38.752431,-13.112726],[-38.762685,-13.116795],[-38.770497,-13.121026],[-38.775868,-13.12656],[-38.779124,-13.133884],[-38.786529,-13.133884],[-38.786285,-13.118422],[-38.793365,-13.075128],[-38.791249,-13.058364],[-38.784901,-13.049737],[-38.759267,-13.037042],[-38.731923,-13.017755],[-38.66926,-12.961847],[-38.66926,-12.955011],[-38.678782,-12.953058],[-38.683339,-12.949965],[-38.682769,-12.944513],[-38.676666,-12.935235],[-38.674469,-12.937921],[-38.674306,-12.93906],[-38.673411,-12.940037],[-38.66926,-12.942071],[-38.670644,-12.924981],[-38.678944,-12.910089],[-38.689443,-12.895766],[-38.697133,-12.880548],[-38.683461,-12.873224],[-38.640777,-12.892755],[-38.622304,-12.905369],[-38.614613,-12.924981]]],[[[-34.838015,-7.810799],[-34.845373,-7.813504],[-34.858181,-7.81316],[-34.873722,-7.809367],[-34.884229,-7.804026],[-34.884259,-7.788237],[-34.882774,-7.765537],[-34.880504,-7.75362],[-34.87084,-7.742435],[-34.860004,-7.727775],[-34.857737,-7.714701],[-34.856608,-7.704314],[-34.85275,-7.697379],[-34.846146,-7.695815],[-34.836052,-7.696933],[-34.830196,-7.703828],[-34.832092,-7.711901],[-34.827812,-7.724203],[-34.822331,-7.738797],[-34.822297,-7.749181],[-34.82688,-7.765328],[-34.833813,-7.778418],[-34.836877,-7.795757],[-34.838015,-7.810799]]],[[[-32.441518,-3.880792],[-32.454254,-3.883071],[-32.462799,-3.878351],[-32.457143,-3.870864],[-32.446767,-3.863539],[-32.441274,-3.858575],[-32.43692,-3.849867],[-32.426625,-3.845798],[-32.414174,-3.842706],[-32.403391,-3.837823],[-32.392161,-3.834161],[-32.386586,-3.841241],[-32.38858,-3.852797],[-32.399729,-3.861993],[-32.414377,-3.865492],[-32.441518,-3.880792]]],[[[-44.51594,-2.823337],[-44.514882,-2.834161],[-44.507192,-2.822524],[-44.480784,-2.793145],[-44.488149,-2.872003],[-44.49234,-2.890802],[-44.500478,-2.903578],[-44.505686,-2.915134],[-44.497304,-2.949314],[-44.515207,-2.959731],[-44.538197,-2.969985],[-44.557281,-3.002862],[-44.585357,-3.035577],[-44.583811,-3.046482],[-44.588531,-3.052667],[-44.589955,-3.055434],[-44.590647,-3.060154],[-44.598012,-3.060154],[-44.5985,-3.05169],[-44.600697,-3.045017],[-44.603139,-3.039727],[-44.604237,-3.035903],[-44.604115,-3.025974],[-44.603424,-3.022149],[-44.590891,-2.999607],[-44.583852,-2.990411],[-44.578481,-2.981052],[-44.57429,-2.956964],[-44.565338,-2.932387],[-44.563303,-2.919854],[-44.565663,-2.902602],[-44.583811,-2.862074],[-44.585683,-2.84588],[-44.584096,-2.829522],[-44.576324,-2.799981],[-44.547678,-2.744073],[-44.526601,-2.727797],[-44.480784,-2.70436],[-44.483957,-2.761163],[-44.497792,-2.806817],[-44.507802,-2.808852],[-44.513743,-2.81463],[-44.51594,-2.823337]]],[[[-42.105776,-2.772749],[-42.131697,-2.773726],[-42.170099,-2.768002],[-42.189307,-2.7546],[-42.215222,-2.74408],[-42.249767,-2.736441],[-42.258415,-2.720161],[-42.258436,-2.69621],[-42.250775,-2.681833],[-42.239265,-2.680865],[-42.228703,-2.693311],[-42.217183,-2.701924],[-42.198939,-2.720112],[-42.16631,-2.725834],[-42.149024,-2.735403],[-42.126924,-2.754553],[-42.10963,-2.763166],[-42.105776,-2.772749]]],[[[-42.059316,-2.695245],[-42.048248,-2.710626],[-42.044545,-2.70794],[-42.043528,-2.706964],[-42.041412,-2.70436],[-42.035268,-2.70436],[-42.035959,-2.715427],[-42.034779,-2.725844],[-42.031972,-2.735935],[-42.027821,-2.744806],[-42.035308,-2.74977],[-42.043528,-2.754002],[-42.052358,-2.757094],[-42.073964,-2.760512],[-42.085194,-2.758722],[-42.09496,-2.753513],[-42.102895,-2.744806],[-42.088938,-2.739028],[-42.082387,-2.738539],[-42.082387,-2.731134],[-42.095693,-2.729181],[-42.105336,-2.724298],[-42.108754,-2.716078],[-42.102895,-2.70436],[-42.123687,-2.707289],[-42.144154,-2.70086],[-42.186025,-2.676446],[-42.170888,-2.672947],[-42.091379,-2.678399],[-42.073476,-2.684503],[-42.059316,-2.695245]]],[[[-43.813622,-2.454573],[-43.803252,-2.456546],[-43.800782,-2.455066],[-43.790907,-2.441748],[-43.78992,-2.439775],[-43.775106,-2.428925],[-43.764243,-2.428925],[-43.756834,-2.447669],[-43.761276,-2.460985],[-43.766706,-2.476275],[-43.770658,-2.496004],[-43.781524,-2.505378],[-43.809175,-2.512778],[-43.825973,-2.513769],[-43.838326,-2.507358],[-43.842772,-2.493545],[-43.842772,-2.492558],[-43.844254,-2.480225],[-43.837833,-2.463451],[-43.832879,-2.454079],[-43.833879,-2.442238],[-43.840306,-2.432369],[-43.848708,-2.42398],[-43.841783,-2.416583],[-43.840301,-2.415597],[-43.823499,-2.40771],[-43.813122,-2.409194],[-43.808182,-2.421034],[-43.812135,-2.435336],[-43.813622,-2.454079],[-43.813622,-2.454573]]],[[[-43.560809,-2.418036],[-43.573656,-2.423468],[-43.585514,-2.415086],[-43.601815,-2.411639],[-43.607248,-2.396841],[-43.611692,-2.385001],[-43.607746,-2.373163],[-43.591936,-2.368711],[-43.579586,-2.364756],[-43.564764,-2.361293],[-43.545983,-2.360292],[-43.542039,-2.371153],[-43.545002,-2.389905],[-43.555873,-2.403727],[-43.560809,-2.417049],[-43.560809,-2.418036]]],[[[-43.634805,-2.399895],[-43.639246,-2.404334],[-43.655908,-2.400266],[-43.675527,-2.400267],[-43.686632,-2.401008],[-43.692923,-2.408775],[-43.701066,-2.411365],[-43.704397,-2.415433],[-43.707728,-2.425051],[-43.71254,-2.42653],[-43.724755,-2.422092],[-43.7329,-2.419875],[-43.742524,-2.411738],[-43.743263,-2.402861],[-43.7366,-2.395094],[-43.730306,-2.374755],[-43.734012,-2.354415],[-43.736608,-2.334071],[-43.727162,-2.318048],[-43.715403,-2.289239],[-43.701568,-2.274672],[-43.684478,-2.26336],[-43.668853,-2.258722],[-43.656077,-2.257745],[-43.638824,-2.253025],[-43.627309,-2.252048],[-43.607021,-2.256329],[-43.604061,-2.265954],[-43.599993,-2.283722],[-43.609627,-2.301492],[-43.626299,-2.316304],[-43.629633,-2.332952],[-43.630745,-2.359582],[-43.632595,-2.376224],[-43.641108,-2.382882],[-43.635918,-2.392868],[-43.634805,-2.399895]]],[[[-49.359527,-1.883966],[-49.367421,-1.895115],[-49.385487,-1.887791],[-49.426259,-1.877618],[-49.442494,-1.867771],[-49.452992,-1.850193],[-49.447621,-1.837091],[-49.422027,-1.813165],[-49.418853,-1.80462],[-49.415679,-1.783868],[-49.411488,-1.775567],[-49.401926,-1.767348],[-49.373647,-1.751642],[-49.352162,-1.722426],[-49.338124,-1.71266],[-49.319,-1.717462],[-49.316314,-1.731134],[-49.309804,-1.744399],[-49.30012,-1.75449],[-49.287953,-1.758477],[-49.277008,-1.767022],[-49.28189,-1.785821],[-49.293324,-1.80462],[-49.301625,-1.813165],[-49.310211,-1.818455],[-49.332631,-1.854099],[-49.359527,-1.883966]]],[[[-49.464769,-1.654266],[-49.436434,-1.664523],[-49.422844,-1.674181],[-49.421728,-1.684382],[-49.424018,-1.696843],[-49.431978,-1.70873],[-49.444459,-1.712677],[-49.468287,-1.719436],[-49.480218,-1.730751],[-49.496124,-1.742626],[-49.508609,-1.744872],[-49.522774,-1.73521],[-49.529545,-1.717057],[-49.527816,-1.704023],[-49.527775,-1.684186],[-49.525482,-1.672855],[-49.513556,-1.663241],[-49.501638,-1.658162],[-49.492,-1.662151],[-49.479514,-1.655372],[-49.464769,-1.654266]]],[[[-44.892242,-1.271905],[-44.878651,-1.285089],[-44.876454,-1.296157],[-44.885365,-1.32643],[-44.892242,-1.32643],[-44.896352,-1.320001],[-44.902699,-1.314142],[-44.910715,-1.309259],[-44.919545,-1.305922],[-44.91808,-1.31463],[-44.914052,-1.32171],[-44.90746,-1.327732],[-44.898508,-1.332696],[-44.90689,-1.338067],[-44.914662,-1.345147],[-44.921254,-1.353123],[-44.926381,-1.36061],[-44.934682,-1.366632],[-44.943227,-1.370864],[-44.952016,-1.371677],[-44.961171,-1.367446],[-44.963857,-1.390558],[-44.980336,-1.396091],[-45.001698,-1.389825],[-45.01891,-1.377699],[-45.026967,-1.360528],[-45.026926,-1.340916],[-45.021962,-1.323419],[-45.015736,-1.312188],[-45.003285,-1.317478],[-44.996246,-1.326349],[-44.993886,-1.338556],[-44.995269,-1.353774],[-44.980336,-1.320489],[-44.977935,-1.300958],[-44.991851,-1.292413],[-44.98998,-1.284763],[-44.984609,-1.269952],[-44.974355,-1.260349],[-44.947418,-1.272882],[-44.939198,-1.26865],[-44.931386,-1.261326],[-44.922963,-1.257582],[-44.915679,-1.258966],[-44.907582,-1.262384],[-44.892242,-1.271905]]],[[[-48.319081,-1.189386],[-48.334096,-1.205011],[-48.348744,-1.208673],[-48.363759,-1.209731],[-48.379872,-1.217218],[-48.388092,-1.211602],[-48.392445,-1.204767],[-48.39391,-1.197198],[-48.393544,-1.189386],[-48.402333,-1.202895],[-48.414296,-1.198012],[-48.43456,-1.176365],[-48.450266,-1.168552],[-48.462066,-1.164483],[-48.465443,-1.157647],[-48.455678,-1.141534],[-48.431956,-1.12363],[-48.428334,-1.117283],[-48.421498,-1.079522],[-48.405019,-1.06878],[-48.383453,-1.065362],[-48.338979,-1.066502],[-48.324208,-1.07586],[-48.310618,-1.112481],[-48.297353,-1.128513],[-48.315338,-1.155206],[-48.319447,-1.159438],[-48.318105,-1.181248],[-48.319081,-1.189386]]],[[[-48.22289,-1.024835],[-48.237701,-1.027927],[-48.287709,-1.024835],[-48.307118,-1.020685],[-48.316274,-1.009535],[-48.319,-0.993341],[-48.319081,-0.973728],[-48.312652,-0.953302],[-48.284535,-0.921482],[-48.273793,-0.895278],[-48.254547,-0.863051],[-48.250152,-0.850193],[-48.24356,-0.841729],[-48.194936,-0.819431],[-48.16275,-0.850193],[-48.155873,-0.866306],[-48.181264,-0.86712],[-48.181264,-0.874607],[-48.156728,-0.887791],[-48.162465,-0.920831],[-48.194936,-0.983819],[-48.201894,-1.011489],[-48.207387,-1.017836],[-48.22289,-1.024835]]],[[[-47.950795,-0.635837],[-47.948557,-0.64129],[-47.935292,-0.636651],[-47.914622,-0.641697],[-47.895619,-0.653497],[-47.887074,-0.669122],[-47.895579,-0.691095],[-47.916371,-0.708591],[-47.962148,-0.730645],[-47.964101,-0.715102],[-47.977773,-0.691664],[-47.982655,-0.676039],[-47.978627,-0.67311],[-47.971059,-0.665785],[-47.966868,-0.658298],[-47.977935,-0.651788],[-47.97643,-0.644708],[-47.972076,-0.637465],[-47.969065,-0.633884],[-47.961497,-0.632582],[-47.95523,-0.633071],[-47.950795,-0.635837]]],[[[-50.828765,-0.583429],[-50.819203,-0.620212],[-50.812896,-0.655043],[-50.813059,-0.669122],[-50.822255,-0.699884],[-50.843129,-0.715997],[-50.87206,-0.722263],[-50.905507,-0.72324],[-50.934316,-0.731703],[-50.976186,-0.769789],[-51.001088,-0.778416],[-51.026723,-0.783787],[-51.054026,-0.796563],[-51.078033,-0.81227],[-51.094146,-0.826267],[-51.100413,-0.826267],[-51.109731,-0.806736],[-51.111684,-0.782322],[-51.108022,-0.755955],[-51.100413,-0.730645],[-51.081776,-0.701104],[-51.076772,-0.695896],[-51.073476,-0.692966],[-51.068593,-0.679783],[-51.066274,-0.676039],[-51.058827,-0.675063],[-51.045562,-0.681329],[-51.03893,-0.681573],[-51.016469,-0.667901],[-50.980133,-0.626153],[-50.95641,-0.60711],[-50.909535,-0.583266],[-50.860829,-0.565606],[-50.87914,-0.600274],[-50.881337,-0.613946],[-50.87442,-0.613946],[-50.840932,-0.558689],[-50.836741,-0.561782],[-50.835032,-0.565037],[-50.833485,-0.572931],[-50.828765,-0.583429]]],[[[-47.703752,-0.577714],[-47.687648,-0.584553],[-47.660512,-0.579197],[-47.649159,-0.591567],[-47.640777,-0.608494],[-47.638987,-0.627862],[-47.646881,-0.648126],[-47.642812,-0.657973],[-47.641835,-0.67547],[-47.643422,-0.692966],[-47.646881,-0.702732],[-47.658315,-0.707696],[-47.685658,-0.706801],[-47.701527,-0.709568],[-47.698964,-0.693943],[-47.704213,-0.6749],[-47.71562,-0.636555],[-47.751536,-0.62225],[-47.750894,-0.606763],[-47.761379,-0.575771],[-47.755788,-0.566485],[-47.745248,-0.562783],[-47.743365,-0.547294],[-47.734682,-0.54173],[-47.715479,-0.547333],[-47.706822,-0.559739],[-47.703752,-0.577714]]],[[[-51.223256,-0.557875],[-51.203277,-0.604669],[-51.186025,-0.613946],[-51.162913,-0.620538],[-51.151601,-0.63714],[-51.149973,-0.658949],[-51.155629,-0.681573],[-51.217641,-0.801853],[-51.230702,-0.839288],[-51.252309,-0.961847],[-51.271148,-1.017673],[-51.275624,-1.02516],[-51.285959,-1.031671],[-51.310292,-1.00213],[-51.331451,-1.009942],[-51.410024,-1.15309],[-51.434804,-1.1867],[-51.556264,-1.28867],[-51.597564,-1.312188],[-51.610219,-1.315606],[-51.618886,-1.323663],[-51.62621,-1.33294],[-51.634836,-1.340102],[-51.662709,-1.349867],[-51.669545,-1.353774],[-51.671254,-1.357599],[-51.674143,-1.370375],[-51.675771,-1.374282],[-51.68102,-1.37713],[-51.695139,-1.381117],[-51.700551,-1.384454],[-51.740834,-1.420017],[-51.785634,-1.449965],[-51.806711,-1.457289],[-51.851959,-1.464044],[-51.892486,-1.483657],[-51.912709,-1.481378],[-51.930287,-1.470798],[-51.943918,-1.456231],[-51.954091,-1.422459],[-51.941884,-1.391371],[-51.902943,-1.340102],[-51.897369,-1.325128],[-51.893056,-1.305597],[-51.889272,-1.268162],[-51.884267,-1.25628],[-51.872467,-1.243259],[-51.805653,-1.193943],[-51.796498,-1.189386],[-51.795318,-1.184177],[-51.787465,-1.162286],[-51.785634,-1.158868],[-51.781606,-1.153904],[-51.772043,-1.151462],[-51.751454,-1.14837],[-51.717885,-1.129653],[-51.683949,-1.096938],[-51.668365,-1.05755],[-51.690053,-1.01865],[-51.686106,-0.884373],[-51.675771,-0.846775],[-51.623606,-0.790216],[-51.582143,-0.698663],[-51.559804,-0.664972],[-51.534047,-0.634698],[-51.505116,-0.60711],[-51.454661,-0.57464],[-51.439931,-0.562188],[-51.424794,-0.553806],[-51.370432,-0.534275],[-51.354848,-0.531996],[-51.347401,-0.531996],[-51.356679,-0.544041],[-51.363026,-0.56227],[-51.366689,-0.581638],[-51.367909,-0.596287],[-51.366933,-0.601658],[-51.365387,-0.605564],[-51.365102,-0.61061],[-51.367909,-0.620212],[-51.373036,-0.629327],[-51.384755,-0.644789],[-51.388417,-0.65488],[-51.381581,-0.65488],[-51.37385,-0.644708],[-51.3544,-0.626235],[-51.347401,-0.613946],[-51.34789,-0.600763],[-51.353139,-0.589451],[-51.353668,-0.580173],[-51.340647,-0.572931],[-51.340647,-0.592869],[-51.333119,-0.592869],[-51.333119,-0.572931],[-51.325836,-0.580499],[-51.317983,-0.586358],[-51.309316,-0.590427],[-51.299631,-0.592869],[-51.321645,-0.562595],[-51.326975,-0.551853],[-51.329213,-0.53867],[-51.326527,-0.532485],[-51.322336,-0.528497],[-51.320139,-0.521417],[-51.308339,-0.518731],[-51.253774,-0.531508],[-51.237538,-0.538263],[-51.223256,-0.557875]]],[[[-51.3756,-0.460545],[-51.393788,-0.466485],[-51.4051,-0.459649],[-51.402008,-0.435724],[-51.391469,-0.424412],[-51.3756,-0.416925],[-51.361195,-0.407485],[-51.354848,-0.391209],[-51.351471,-0.385919],[-51.336537,-0.375584],[-51.330434,-0.366143],[-51.264272,-0.219496],[-51.243235,-0.198663],[-51.232655,-0.179457],[-51.22704,-0.175063],[-51.197825,-0.170831],[-51.189768,-0.168227],[-51.183583,-0.163181],[-51.166168,-0.144464],[-51.165273,-0.140313],[-51.120839,-0.140313],[-51.120269,-0.14544],[-51.121938,-0.146742],[-51.124745,-0.146742],[-51.128285,-0.147719],[-51.133941,-0.160821],[-51.135854,-0.179376],[-51.134877,-0.195896],[-51.131703,-0.203058],[-51.144195,-0.211358],[-51.148671,-0.230564],[-51.148834,-0.263849],[-51.166737,-0.305597],[-51.201283,-0.343683],[-51.278554,-0.401056],[-51.342193,-0.43377],[-51.3756,-0.460545]]],[[[-50.095774,-0.132257],[-50.038442,-0.154555],[-50.008127,-0.153009],[-49.794545,-0.198826],[-49.653472,-0.241143],[-49.519846,-0.23561],[-49.481313,-0.225844],[-49.459584,-0.223403],[-49.44933,-0.224705],[-49.42516,-0.230401],[-49.417958,-0.234552],[-49.398508,-0.253513],[-49.387318,-0.257582],[-49.38683,-0.25156],[-49.398101,-0.236505],[-49.408437,-0.217462],[-49.405019,-0.199314],[-49.38683,-0.184747],[-49.326487,-0.154555],[-49.318267,-0.160089],[-49.312856,-0.160089],[-49.30724,-0.157322],[-49.298573,-0.154555],[-49.283681,-0.155206],[-49.274648,-0.154474],[-49.261627,-0.149021],[-49.23644,-0.147719],[-49.215403,-0.141209],[-49.206044,-0.140313],[-49.194814,-0.141534],[-49.181711,-0.149347],[-49.168202,-0.154555],[-49.157623,-0.154067],[-49.144765,-0.1513],[-49.131581,-0.152032],[-49.120351,-0.162042],[-49.091379,-0.153904],[-49.025624,-0.160089],[-49.010607,-0.159889],[-48.992719,-0.171848],[-48.979605,-0.186191],[-48.960501,-0.182637],[-48.947359,-0.173105],[-48.927049,-0.158809],[-48.893612,-0.152886],[-48.880489,-0.163647],[-48.881711,-0.191104],[-48.892471,-0.205416],[-48.891957,-0.215916],[-48.859731,-0.209242],[-48.816518,-0.207615],[-48.702016,-0.237237],[-48.684234,-0.236505],[-48.646311,-0.226251],[-48.623525,-0.223403],[-48.60143,-0.22617],[-48.544423,-0.244073],[-48.427235,-0.259942],[-48.40099,-0.271254],[-48.393544,-0.271254],[-48.384389,-0.281427],[-48.375559,-0.288507],[-48.368886,-0.297947],[-48.366282,-0.315362],[-48.369781,-0.36061],[-48.373118,-0.373712],[-48.378896,-0.384047],[-48.388417,-0.395603],[-48.399729,-0.404718],[-48.410634,-0.408461],[-48.420644,-0.414972],[-48.431508,-0.447198],[-48.454701,-0.48561],[-48.461578,-0.515558],[-48.462514,-0.576104],[-48.465321,-0.590427],[-48.4829,-0.627618],[-48.484364,-0.653578],[-48.487172,-0.664727],[-48.496571,-0.676039],[-48.485829,-0.684747],[-48.488026,-0.701837],[-48.494456,-0.722833],[-48.496571,-0.743748],[-48.51769,-0.734796],[-48.537506,-0.718927],[-48.572336,-0.681573],[-48.560862,-0.713962],[-48.537913,-0.744806],[-48.523549,-0.77337],[-48.537506,-0.798923],[-48.526235,-0.820245],[-48.523427,-0.846368],[-48.527659,-0.872654],[-48.537506,-0.894464],[-48.560129,-0.914321],[-48.612945,-0.932875],[-48.633168,-0.949151],[-48.627675,-0.958754],[-48.630727,-0.968927],[-48.64745,-0.990655],[-48.657541,-0.9992],[-48.664784,-1.001235],[-48.66511,-1.003106],[-48.654286,-1.011163],[-48.645334,-1.011895],[-48.635854,-1.008396],[-48.628774,-1.009698],[-48.626943,-1.024835],[-48.630686,-1.029067],[-48.654286,-1.045343],[-48.654286,-1.05283],[-48.628285,-1.047784],[-48.628774,-1.063165],[-48.642812,-1.083591],[-48.657338,-1.093683],[-48.672434,-1.10117],[-48.717681,-1.134047],[-48.739898,-1.141534],[-48.75829,-1.150649],[-48.796132,-1.192071],[-48.818715,-1.202895],[-48.849599,-1.198012],[-48.875885,-1.181248],[-48.897694,-1.158136],[-48.914947,-1.134698],[-48.921132,-1.141534],[-48.911285,-1.161228],[-48.894846,-1.181248],[-48.875315,-1.19671],[-48.856313,-1.202895],[-48.84203,-1.213311],[-48.837148,-1.233982],[-48.844553,-1.249282],[-48.867177,-1.24391],[-48.867177,-1.251397],[-48.853871,-1.254327],[-48.824818,-1.254653],[-48.811879,-1.257582],[-48.796254,-1.268487],[-48.79308,-1.279718],[-48.802358,-1.339776],[-48.832997,-1.415785],[-48.839223,-1.415785],[-48.858388,-1.399184],[-48.942209,-1.295831],[-48.963775,-1.282973],[-48.990061,-1.292413],[-48.957387,-1.295505],[-48.946034,-1.309015],[-48.954986,-1.324151],[-48.983266,-1.332696],[-48.983266,-1.340102],[-48.977203,-1.347263],[-48.976633,-1.356134],[-48.980946,-1.365655],[-48.990061,-1.374282],[-48.976918,-1.369073],[-48.953114,-1.350356],[-48.945058,-1.346368],[-48.934967,-1.351495],[-48.92984,-1.363539],[-48.92634,-1.377537],[-48.921132,-1.387872],[-48.898834,-1.39365],[-48.897572,-1.394708],[-48.892405,-1.398045],[-48.887196,-1.412693],[-48.883901,-1.415785],[-48.874013,-1.419366],[-48.839223,-1.44256],[-48.839223,-1.449965],[-48.855377,-1.453546],[-48.871938,-1.458917],[-48.887563,-1.466729],[-48.901275,-1.476739],[-48.904612,-1.483494],[-48.90689,-1.492771],[-48.910634,-1.501072],[-48.91808,-1.504571],[-48.935292,-1.493341],[-48.944447,-1.490981],[-48.948476,-1.501153],[-48.956166,-1.508722],[-48.973866,-1.514093],[-49.024892,-1.52158],[-49.036529,-1.528253],[-49.048085,-1.533298],[-49.065785,-1.531915],[-49.072174,-1.526951],[-49.072418,-1.520115],[-49.073476,-1.51393],[-49.082509,-1.511407],[-49.09081,-1.511163],[-49.096913,-1.510186],[-49.101877,-1.507989],[-49.10676,-1.504571],[-49.112782,-1.495294],[-49.124989,-1.463311],[-49.127268,-1.453058],[-49.149526,-1.409275],[-49.151438,-1.401625],[-49.181874,-1.401625],[-49.187245,-1.397638],[-49.191518,-1.39129],[-49.197743,-1.38836],[-49.209096,-1.394708],[-49.19164,-1.408624],[-49.184397,-1.429376],[-49.184397,-1.453383],[-49.204091,-1.529067],[-49.201527,-1.553155],[-49.181874,-1.566095],[-49.19164,-1.571954],[-49.195465,-1.5735],[-49.196441,-1.56878],[-49.197621,-1.566013],[-49.202992,-1.559828],[-49.207916,-1.565525],[-49.21345,-1.569106],[-49.220286,-1.571547],[-49.229604,-1.5735],[-49.222035,-1.583266],[-49.211537,-1.584242],[-49.201568,-1.586602],[-49.195465,-1.600844],[-49.188954,-1.59352],[-49.182973,-1.590102],[-49.168202,-1.586602],[-49.187734,-1.607599],[-49.222768,-1.621189],[-49.256256,-1.62005],[-49.274572,-1.621593],[-49.293729,-1.617531],[-49.313878,-1.604394],[-49.332003,-1.588234],[-49.353179,-1.5735],[-49.389027,-1.538832],[-49.394114,-1.528904],[-49.391469,-1.514744],[-49.386464,-1.503839],[-49.383534,-1.494236],[-49.387318,-1.484145],[-49.393544,-1.496189],[-49.406522,-1.517516],[-49.414631,-1.541702],[-49.409622,-1.563897],[-49.375365,-1.586142],[-49.354233,-1.614408],[-49.358306,-1.637587],[-49.372439,-1.646635],[-49.406714,-1.637503],[-49.424862,-1.63243],[-49.443025,-1.635422],[-49.468228,-1.623278],[-49.483332,-1.602074],[-49.484527,-1.568048],[-49.490305,-1.556085],[-49.496571,-1.497735],[-49.504872,-1.501397],[-49.513254,-1.502374],[-49.521962,-1.501153],[-49.531321,-1.497735],[-49.524892,-1.505629],[-49.515736,-1.51336],[-49.507558,-1.522638],[-49.503977,-1.535333],[-49.503977,-1.586602],[-49.509267,-1.582452],[-49.513987,-1.581638],[-49.518788,-1.58172],[-49.524403,-1.580336],[-49.513905,-1.592218],[-49.514068,-1.608087],[-49.521962,-1.622166],[-49.534413,-1.628106],[-49.551259,-1.633071],[-49.556549,-1.64544],[-49.553456,-1.660903],[-49.544911,-1.675958],[-49.559193,-1.675958],[-49.559193,-1.682794],[-49.5454,-1.6867],[-49.54426,-1.698337],[-49.551747,-1.72088],[-49.558705,-1.724216],[-49.603261,-1.717462],[-49.623606,-1.724867],[-49.654164,-1.760024],[-49.669057,-1.772149],[-49.688344,-1.769301],[-49.705922,-1.750584],[-49.718739,-1.722833],[-49.727528,-1.677667],[-49.745351,-1.652765],[-49.751047,-1.641778],[-49.750111,-1.624933],[-49.73998,-1.595147],[-49.744211,-1.580336],[-49.748036,-1.597914],[-49.761138,-1.63006],[-49.764027,-1.645196],[-49.759755,-1.669366],[-49.729888,-1.730564],[-49.728505,-1.741795],[-49.729644,-1.752618],[-49.732655,-1.762872],[-49.736724,-1.772149],[-49.743764,-1.780043],[-49.776438,-1.807224],[-49.800282,-1.817315],[-49.809071,-1.819268],[-49.823557,-1.816583],[-49.833079,-1.809828],[-49.841664,-1.801202],[-49.853424,-1.792657],[-49.863393,-1.789483],[-49.884389,-1.788263],[-49.894399,-1.785821],[-49.905995,-1.77809],[-49.915354,-1.769138],[-49.925404,-1.761651],[-49.94811,-1.75628],[-49.968129,-1.747003],[-49.980051,-1.744806],[-50.002309,-1.745538],[-50.007395,-1.741469],[-50.028472,-1.720473],[-50.032338,-1.71559],[-50.032338,-1.709731],[-50.02595,-1.66074],[-50.028188,-1.65545],[-50.050282,-1.657403],[-50.054799,-1.664727],[-50.051991,-1.679376],[-50.052073,-1.703871],[-50.059885,-1.717869],[-50.087066,-1.73919],[-50.093007,-1.748224],[-50.155019,-1.778985],[-50.170033,-1.77044],[-50.177724,-1.758966],[-50.187001,-1.749119],[-50.224517,-1.739028],[-50.233795,-1.724379],[-50.237172,-1.705336],[-50.234609,-1.633966],[-50.23766,-1.62127],[-50.248362,-1.615411],[-50.261871,-1.61419],[-50.27359,-1.610528],[-50.278554,-1.597426],[-50.276235,-1.588474],[-50.270416,-1.58587],[-50.263661,-1.584893],[-50.258168,-1.580336],[-50.249623,-1.563084],[-50.249908,-1.55934],[-50.253814,-1.54339],[-50.262196,-1.527114],[-50.264963,-1.518243],[-50.264475,-1.510919],[-50.259429,-1.493341],[-50.258168,-1.484145],[-50.27595,-1.497003],[-50.276845,-1.514581],[-50.26301,-1.550714],[-50.260081,-1.552667],[-50.257883,-1.554864],[-50.258168,-1.559828],[-50.261098,-1.564874],[-50.264719,-1.564874],[-50.268422,-1.56406],[-50.271799,-1.566095],[-50.278554,-1.574477],[-50.285227,-1.580743],[-50.290273,-1.587335],[-50.292226,-1.597426],[-50.281239,-1.613051],[-50.259267,-1.627048],[-50.242584,-1.641534],[-50.247629,-1.658868],[-50.254994,-1.675226],[-50.260243,-1.725274],[-50.264963,-1.744806],[-50.271799,-1.744806],[-50.274729,-1.724705],[-50.299062,-1.65545],[-50.306508,-1.65545],[-50.287221,-1.73089],[-50.284779,-1.75506],[-50.294179,-1.772719],[-50.316558,-1.778497],[-50.343577,-1.776951],[-50.366689,-1.772149],[-50.342885,-1.784926],[-50.312123,-1.793715],[-50.296986,-1.803481],[-50.319569,-1.819268],[-50.348744,-1.828709],[-50.37678,-1.832208],[-50.405181,-1.830987],[-50.559722,-1.799493],[-50.573394,-1.793634],[-50.596425,-1.775811],[-50.603871,-1.772149],[-50.606679,-1.764825],[-50.600087,-1.749282],[-50.586008,-1.734633],[-50.566558,-1.730564],[-50.58788,-1.684503],[-50.74234,-1.531183],[-50.757924,-1.508477],[-50.764556,-1.487563],[-50.768625,-1.478448],[-50.795969,-1.446222],[-50.803212,-1.434991],[-50.804189,-1.424981],[-50.799387,-1.401625],[-50.797434,-1.401544],[-50.787953,-1.394708],[-50.785715,-1.394708],[-50.787953,-1.38836],[-50.792388,-1.384942],[-50.796946,-1.382908],[-50.799387,-1.381117],[-50.811635,-1.349867],[-50.813059,-1.336358],[-50.810862,-1.314711],[-50.779612,-1.193943],[-50.778228,-1.17254],[-50.785634,-1.152114],[-50.799224,-1.12656],[-50.805816,-1.102309],[-50.792551,-1.086196],[-50.780141,-1.088311],[-50.737294,-1.113539],[-50.675852,-1.141534],[-50.629303,-1.15016],[-50.613759,-1.155206],[-50.559722,-1.183201],[-50.571848,-1.158624],[-50.616689,-1.119887],[-50.589833,-1.111505],[-50.576527,-1.102634],[-50.569692,-1.100518],[-50.542307,-1.105727],[-50.539296,-1.107354],[-50.522084,-1.096449],[-50.522206,-1.086602],[-50.534169,-1.078546],[-50.552358,-1.073337],[-50.544342,-1.052179],[-50.545522,-1.05283],[-50.530019,-1.038751],[-50.51537,-1.036716],[-50.498647,-1.039321],[-50.476633,-1.039158],[-50.494985,-1.029229],[-50.512441,-1.023858],[-50.528472,-1.025323],[-50.542388,-1.035333],[-50.558461,-1.051202],[-50.576772,-1.063165],[-50.596588,-1.070571],[-50.617502,-1.073337],[-50.626129,-1.076104],[-50.64566,-1.089451],[-50.654693,-1.093683],[-50.663808,-1.094903],[-50.735178,-1.089532],[-50.755767,-1.082208],[-50.764556,-1.06992],[-50.7683,-1.06113],[-50.786122,-1.03338],[-50.792551,-1.01865],[-50.798004,-0.984308],[-50.798166,-0.91131],[-50.792551,-0.874607],[-50.786488,-0.857354],[-50.778635,-0.842543],[-50.774159,-0.829848],[-50.778228,-0.819431],[-50.769276,-0.807306],[-50.757639,-0.806817],[-50.746002,-0.814223],[-50.737294,-0.826267],[-50.74059,-0.802016],[-50.753774,-0.792413],[-50.770741,-0.78574],[-50.785715,-0.770929],[-50.787343,-0.763279],[-50.785715,-0.733657],[-50.783559,-0.728774],[-50.774241,-0.720636],[-50.772043,-0.716404],[-50.774159,-0.71087],[-50.783518,-0.707289],[-50.785715,-0.702732],[-50.779897,-0.660577],[-50.737294,-0.551853],[-50.72468,-0.563653],[-50.711293,-0.586521],[-50.700592,-0.611749],[-50.69636,-0.630629],[-50.684071,-0.639825],[-50.607533,-0.676039],[-50.587961,-0.681329],[-50.577382,-0.682224],[-50.551991,-0.67962],[-50.548451,-0.67783],[-50.550404,-0.673761],[-50.552358,-0.66546],[-50.560374,-0.659275],[-50.613759,-0.64129],[-50.673492,-0.631036],[-50.682688,-0.623793],[-50.685048,-0.607843],[-50.690745,-0.587091],[-50.716461,-0.521742],[-50.721547,-0.503351],[-50.723622,-0.479913],[-50.721059,-0.46502],[-50.703196,-0.408461],[-50.699941,-0.371515],[-50.69636,-0.36004],[-50.691762,-0.354181],[-50.678578,-0.341078],[-50.675852,-0.33587],[-50.673695,-0.319268],[-50.668324,-0.298761],[-50.654693,-0.263849],[-50.646474,-0.255629],[-50.613596,-0.229181],[-50.603871,-0.223403],[-50.598948,-0.219334],[-50.583363,-0.192153],[-50.574452,-0.188084],[-50.562571,-0.188084],[-50.550038,-0.189223],[-50.539296,-0.188735],[-50.521962,-0.180352],[-50.507802,-0.168878],[-50.491282,-0.158868],[-50.466664,-0.154555],[-50.443715,-0.157973],[-50.426584,-0.163507],[-50.411488,-0.164483],[-50.394643,-0.154555],[-50.384633,-0.13893],[-50.377797,-0.120701],[-50.368153,-0.105645],[-50.349965,-0.099379],[-50.327382,-0.100925],[-50.271799,-0.113702],[-50.095774,-0.132257]]],[[[-50.894887,-0.306248],[-50.923411,-0.330499],[-50.932037,-0.328302],[-50.941151,-0.322035],[-50.964955,-0.314223],[-50.968984,-0.304864],[-50.970367,-0.295505],[-50.973744,-0.291192],[-51.012807,-0.273614],[-51.037953,-0.235935],[-51.038686,-0.200291],[-51.00475,-0.188735],[-51.00475,-0.18255],[-51.012522,-0.180108],[-51.032786,-0.168227],[-50.982574,-0.085545],[-50.972406,-0.042814],[-50.947266,-0.011974],[-50.925146,-0.006149],[-50.889768,0.001109],[-50.817535,0.034742],[-50.766004,0.046367],[-50.73955,0.034525],[-50.724906,0.008007],[-50.702301,-0.002496],[-50.675852,-0.010675],[-50.66454,-0.015476],[-50.655263,-0.023777],[-50.647694,-0.034031],[-50.641713,-0.044732],[-50.640859,-0.049574],[-50.642323,-0.060479],[-50.641713,-0.06524],[-50.629628,-0.081598],[-50.627431,-0.085707],[-50.628896,-0.104099],[-50.638783,-0.121026],[-50.675852,-0.154555],[-50.69518,-0.167413],[-50.758412,-0.195571],[-50.781239,-0.210056],[-50.837229,-0.267673],[-50.855946,-0.282485],[-50.894887,-0.306248]]],[[[-49.485707,0.069241],[-49.4829,0.063788],[-49.469797,0.069973],[-49.456044,0.074612],[-49.442047,0.07567],[-49.428212,0.071275],[-49.391265,0.051093],[-49.381093,0.043931],[-49.369862,0.028225],[-49.369252,0.016099],[-49.371978,0.006985],[-49.370513,-0.000339],[-49.35912,-0.008355],[-49.351674,-0.008477],[-49.347524,-0.009698],[-49.346303,-0.020847],[-49.348988,-0.030857],[-49.354482,-0.037164],[-49.359283,-0.044732],[-49.359975,-0.058445],[-49.364735,-0.056573],[-49.376332,-0.054132],[-49.381093,-0.052179],[-49.385854,-0.069635],[-49.419993,-0.09531],[-49.428212,-0.110203],[-49.43871,-0.120538],[-49.463368,-0.128025],[-49.492014,-0.132582],[-49.686879,-0.135431],[-49.716217,-0.147719],[-49.832346,-0.103123],[-49.823476,-0.070367],[-49.801015,-0.045953],[-49.740468,-0.000339],[-49.676096,0.028062],[-49.628082,0.057603],[-49.524526,0.073879],[-49.496571,0.085598],[-49.493764,0.07982],[-49.485707,0.069241]]],[[[-50.437729,-0.000033],[-50.447499,-0.015151],[-50.487457,-0.017429],[-50.495717,-0.016615],[-50.505727,-0.014337],[-50.514068,-0.011082],[-50.517568,-0.007257],[-50.523061,-0.003839],[-50.559722,-0.003839],[-50.572174,0.001654],[-50.588124,0.012112],[-50.601715,0.023993],[-50.607533,0.033759],[-50.609731,0.053412],[-50.615468,0.058824],[-50.623891,0.061225],[-50.634267,0.071275],[-50.637685,0.080552],[-50.636627,0.088202],[-50.634429,0.096096],[-50.634267,0.106106],[-50.637563,0.117662],[-50.646718,0.138902],[-50.648549,0.150458],[-50.636871,0.165269],[-50.610585,0.183417],[-50.583001,0.184032],[-50.561086,0.176257],[-50.544329,0.17107],[-50.514694,0.165851],[-50.490224,0.159362],[-50.469641,0.145177],[-50.446497,0.125851],[-50.443955,0.109147],[-50.444007,0.080891],[-50.440179,0.061618],[-50.432508,0.035917],[-50.432547,0.016654],[-50.437729,-0.000033]]],[[[-50.165648,0.261734],[-50.220461,0.246212],[-50.217152,0.263088],[-50.199371,0.28852],[-50.138539,0.326565],[-50.113324,0.338182],[-50.093321,0.339013],[-50.086404,0.320727],[-50.090784,0.305945],[-50.107334,0.292931],[-50.165648,0.261734]]],[[[-49.52895,0.300815],[-49.601603,0.265985],[-49.642474,0.232699],[-49.692372,0.205024],[-49.764027,0.133368],[-49.787343,0.092353],[-49.806142,0.048651],[-49.829701,0.011298],[-49.867055,-0.010675],[-49.933909,-0.028741],[-49.963124,-0.032769],[-49.975006,-0.036879],[-49.986155,-0.042535],[-49.994008,-0.048435],[-50.004506,-0.052789],[-50.012929,-0.045343],[-50.02477,-0.024265],[-50.045074,-0.002862],[-50.069447,0.016588],[-50.097279,0.030911],[-50.127797,0.037177],[-50.174672,0.029283],[-50.182362,0.033759],[-50.190094,0.041327],[-50.206695,0.039293],[-50.222279,0.033596],[-50.226796,0.030341],[-50.24885,0.024644],[-50.272694,0.014879],[-50.297597,0.01203],[-50.322621,0.026923],[-50.345123,0.047431],[-50.351552,0.058905],[-50.353098,0.078111],[-50.34203,0.115424],[-50.340077,0.133368],[-50.350331,0.126695],[-50.357411,0.116523],[-50.366689,0.091783],[-50.379994,0.110745],[-50.383656,0.129869],[-50.380971,0.194648],[-50.377797,0.208319],[-50.366811,0.214504],[-50.304903,0.216843],[-50.279646,0.228089],[-50.254416,0.229771],[-50.232684,0.224505],[-50.199637,0.222687],[-50.128041,0.221584],[-50.107289,0.222154],[-50.06219,0.262392],[-50.036888,0.299741],[-50.003812,0.310123],[-49.959451,0.308303],[-49.921622,0.292786],[-49.859554,0.301224],[-49.82576,0.322207],[-49.745915,0.353473],[-49.650227,0.386373],[-49.560157,0.385757],[-49.530356,0.35378],[-49.52895,0.300815]]],[[[-50.346059,0.527533],[-50.355051,0.412543],[-50.353098,0.400214],[-50.348866,0.390082],[-50.335927,0.368476],[-50.32315,0.340644],[-50.31697,0.308751],[-50.323285,0.28696],[-50.338934,0.271411],[-50.349919,0.252736],[-50.363972,0.248084],[-50.378021,0.24499],[-50.395198,0.240341],[-50.413975,0.226343],[-50.420309,0.202973],[-50.418802,0.188943],[-50.415134,0.176579],[-50.41902,0.167944],[-50.426259,0.168402],[-50.450185,0.178656],[-50.459828,0.181098],[-50.482655,0.182359],[-50.493153,0.185492],[-50.501454,0.191718],[-50.516754,0.208645],[-50.518056,0.214911],[-50.516347,0.243354],[-50.512929,0.256496],[-50.505971,0.266181],[-50.494537,0.269924],[-50.48526,0.268459],[-50.48058,0.266018],[-50.476877,0.265448],[-50.470367,0.269924],[-50.46996,0.274319],[-50.439198,0.39765],[-50.432525,0.413967],[-50.431508,0.415595],[-50.422515,0.419013],[-50.412424,0.421576],[-50.408315,0.420722],[-50.407094,0.43065],[-50.410878,0.436916],[-50.41686,0.441962],[-50.421986,0.448676],[-50.42809,0.465481],[-50.430084,0.478583],[-50.429433,0.506659],[-50.432485,0.534329],[-50.430776,0.548],[-50.421986,0.564765],[-50.37975,0.611802],[-50.366689,0.61994],[-50.366689,0.61518],[-50.365061,0.612454],[-50.36266,0.609931],[-50.360504,0.60635],[-50.34732,0.571275],[-50.346059,0.527533]]],[[[-50.031361,0.584866],[-50.031565,0.561672],[-50.030507,0.556789],[-50.025746,0.547268],[-50.02477,0.541164],[-50.026845,0.535305],[-50.036285,0.525946],[-50.042714,0.510321],[-50.166077,0.413848],[-50.199484,0.392716],[-50.229843,0.377638],[-50.249595,0.361016],[-50.281446,0.356552],[-50.300689,0.375474],[-50.312123,0.413967],[-50.31725,0.457994],[-50.315053,0.49726],[-50.302887,0.530992],[-50.278554,0.558539],[-50.256459,0.569729],[-50.251576,0.575832],[-50.258168,0.585191],[-50.242096,0.592963],[-50.18692,0.592231],[-50.174916,0.595445],[-50.167592,0.605414],[-50.150624,0.597113],[-50.120351,0.571601],[-50.115102,0.586249],[-50.134755,0.597561],[-50.134023,0.612494],[-50.12206,0.626776],[-50.102895,0.639838],[-50.082183,0.647895],[-50.065663,0.647284],[-50.038442,0.60635],[-50.033274,0.593573],[-50.031361,0.584866]]],[[[-29.369374,0.833564],[-29.390126,0.831732],[-29.410268,0.834866],[-29.421213,0.844713],[-29.426381,0.858547],[-29.423411,0.871568],[-29.40803,0.884833],[-29.381459,0.891343],[-29.356191,0.882758],[-29.345326,0.866645],[-29.349029,0.852607],[-29.357737,0.841132],[-29.369374,0.833564]]],[[[-50.086114,0.916156],[-50.058572,0.901799],[-50.026916,0.903756],[-50.015723,0.892493],[-50.022935,0.873105],[-50.036284,0.852705],[-50.049673,0.821063],[-50.068118,0.807812],[-50.076329,0.798628],[-50.083565,0.779207],[-50.103383,0.755683],[-50.111928,0.752346],[-50.122182,0.751207],[-50.151219,0.74963],[-50.202416,0.749692],[-50.241399,0.744597],[-50.275274,0.745622],[-50.283364,0.769186],[-50.274952,0.809114],[-50.225476,0.8592],[-50.158806,0.88669],[-50.132123,0.914214],[-50.111666,0.918253],[-50.086114,0.916156]]],[[[-50.031565,0.934638],[-50.062585,0.923252],[-50.071763,0.931437],[-50.099347,0.938643],[-50.100317,0.959063],[-50.073692,0.977375],[-50.049184,0.985582],[-50.038442,1.006741],[-50.03189,1.01496],[-50.016672,1.025214],[-49.998443,1.034003],[-49.96703,1.043118],[-49.946817,1.062771],[-49.92638,1.069857],[-49.916208,1.056563],[-49.936676,1.023424],[-49.944081,1.008246],[-49.952504,0.996649],[-49.956451,0.986518],[-49.964019,0.973822],[-49.997304,0.95246],[-50.004872,0.945217],[-50.00829,0.940985],[-50.025258,0.936998],[-50.031565,0.934638]]],[[[-50.399578,2.115108],[-50.386839,2.097153],[-50.366364,2.069679],[-50.356934,2.05944],[-50.353198,2.034324],[-50.338854,2.009692],[-50.325028,1.991759],[-50.314027,1.968266],[-50.312496,1.947065],[-50.320939,1.935414],[-50.338951,1.912668],[-50.376578,1.878332],[-50.394496,1.870635],[-50.419119,1.862978],[-50.440852,1.86981],[-50.458608,1.881008],[-50.476633,1.942694],[-50.49551,1.967248],[-50.497632,1.98456],[-50.508188,1.995235],[-50.523813,2.001482],[-50.520812,2.031656],[-50.511697,2.056156],[-50.511342,2.07982],[-50.50423,2.095692],[-50.488544,2.098922],[-50.470094,2.097663],[-50.454358,2.110941],[-50.441517,2.108049],[-50.426428,2.110742],[-50.409641,2.112945],[-50.399578,2.115108]]],[[[-50.513631,2.187286],[-50.492401,2.186581],[-50.463348,2.186938],[-50.448335,2.176235],[-50.43054,2.164958],[-50.417832,2.144795],[-50.415158,2.126931],[-50.424692,2.119745],[-50.441445,2.118183],[-50.457621,2.12052],[-50.466586,2.116118],[-50.473344,2.107796],[-50.486179,2.110111],[-50.497932,2.107398],[-50.509653,2.109706],[-50.520237,2.115353],[-50.525685,2.137707],[-50.535706,2.14447],[-50.543521,2.146197],[-50.552995,2.151283],[-50.553523,2.156309],[-50.541705,2.167948],[-50.513631,2.187286]]],[[[-60.190947,5.23994],[-60.176555,5.22715],[-60.131725,5.243402],[-60.123018,5.231852],[-60.091237,5.158239],[-60.088704,5.155394],[-60.075734,5.140824],[-60.055115,5.125089],[-60.011009,5.100026],[-59.983104,5.085944],[-59.981502,5.057419],[-59.999279,4.99688],[-60.000209,4.958329],[-60.003594,4.939829],[-60.011009,4.921716],[-60.01796,4.892235],[-60.020466,4.83229],[-60.034522,4.787797],[-60.030078,4.744363],[-60.032455,4.725423],[-60.038475,4.708008],[-60.047054,4.691756],[-60.075631,4.650286],[-60.080669,4.638323],[-60.083201,4.627083],[-60.084286,4.616929],[-60.087697,4.607523],[-60.097076,4.598558],[-60.106146,4.595354],[-60.126222,4.594992],[-60.134826,4.593545],[-60.161543,4.565201],[-60.16485,4.546209],[-60.159992,4.527787],[-60.148779,4.513007],[-60.132862,4.504868],[-60.120925,4.502362],[-60.112011,4.502155],[-60.106197,4.506599],[-60.103846,4.517994],[-60.098601,4.526004],[-60.087775,4.525539],[-60.076871,4.519958],[-60.071548,4.512542],[-60.066251,4.494326],[-60.055606,4.491587],[-60.040181,4.495928],[-60.020699,4.498874],[-59.996979,4.490761],[-59.984551,4.488797],[-59.978892,4.495411],[-59.974552,4.503706],[-59.964681,4.506496],[-59.953132,4.505876],[-59.943313,4.503912],[-59.934296,4.498254],[-59.91993,4.479211],[-59.914555,4.474353],[-59.905279,4.475284],[-59.885823,4.48474],[-59.87293,4.484689],[-59.868847,4.480916],[-59.87169,4.46823],[-59.867633,4.461977],[-59.863241,4.460659],[-59.852363,4.460762],[-59.847634,4.460246],[-59.82624,4.454613],[-59.817688,4.456835],[-59.809626,4.465749],[-59.796268,4.448205],[-59.737951,4.415571],[-59.729915,4.407536],[-59.722345,4.397717],[-59.713508,4.389371],[-59.701958,4.385651],[-59.69046,4.384462],[-59.68674,4.381181],[-59.687115,4.371466],[-59.687386,4.364463],[-59.693613,4.340692],[-59.727797,4.305294],[-59.738468,4.286587],[-59.736685,4.282091],[-59.726556,4.270697],[-59.724489,4.264056],[-59.726608,4.2577],[-59.735522,4.24584],[-59.737951,4.240001],[-59.740535,4.222327],[-59.740431,4.213646],[-59.738468,4.202768],[-59.726737,4.176465],[-59.71033,4.16445],[-59.667361,4.150575],[-59.646174,4.134038],[-59.64899,4.119801],[-59.6601,4.103187],[-59.663253,4.079726],[-59.653693,4.064197],[-59.619819,4.032727],[-59.605737,4.007147],[-59.599717,4.002263],[-59.595376,3.996372],[-59.59628,3.970637],[-59.590001,3.96671],[-59.58039,3.967123],[-59.548686,3.96193],[-59.536826,3.957692],[-59.529592,3.94945],[-59.527654,3.939528],[-59.52923,3.931906],[-59.534708,3.9271],[-59.544578,3.925705],[-59.563155,3.918186],[-59.581785,3.899195],[-59.596332,3.875889],[-59.602507,3.855683],[-59.599717,3.833126],[-59.595402,3.816538],[-59.598606,3.802405],[-59.618294,3.787186],[-59.659119,3.768918],[-59.671805,3.756232],[-59.680151,3.731117],[-59.680771,3.719154],[-59.679557,3.710343],[-59.680125,3.701687],[-59.686223,3.690215],[-59.69506,3.683058],[-59.717642,3.673214],[-59.755547,3.638125],[-59.837661,3.60929],[-59.862879,3.58172],[-59.863034,3.552368],[-59.847634,3.530457],[-59.829547,3.509761],[-59.821357,3.484388],[-59.838539,3.443021],[-59.841356,3.425399],[-59.824044,3.431678],[-59.828488,3.383412],[-59.827093,3.376694],[-59.820995,3.363491],[-59.82177,3.356592],[-59.826809,3.351941],[-59.833682,3.350288],[-59.839986,3.349874],[-59.84319,3.349022],[-59.853732,3.31538],[-59.879622,3.272566],[-59.884014,3.262541],[-59.897631,3.217376],[-59.904246,3.208229],[-59.911506,3.201873],[-59.916674,3.194173],[-59.916855,3.181151],[-59.913935,3.174639],[-59.905434,3.165234],[-59.903212,3.158671],[-59.905719,3.154796],[-59.918379,3.152832],[-59.921557,3.150093],[-59.920188,3.143995],[-59.912695,3.133402],[-59.91161,3.126425],[-59.914865,3.119966],[-59.920756,3.116762],[-59.927371,3.114333],[-59.932668,3.110044],[-59.959385,3.066481],[-59.969229,3.042709],[-59.973983,3.017646],[-59.970417,2.960441],[-59.972975,2.939305],[-59.993724,2.857294],[-60.00008,2.694049],[-59.996462,2.674773],[-59.965043,2.613433],[-59.965327,2.608059],[-59.970262,2.59576],[-59.970986,2.592556],[-59.966025,2.58868],[-59.953132,2.583926],[-59.949023,2.579844],[-59.940729,2.562997],[-59.939231,2.555452],[-59.939515,2.542998],[-59.935846,2.523878],[-59.906778,2.458766],[-59.905073,2.447862],[-59.904039,2.42621],[-59.901817,2.415616],[-59.901507,2.404506],[-59.911816,2.387814],[-59.913444,2.378719],[-59.903135,2.359599],[-59.884066,2.346008],[-59.844249,2.325441],[-59.813631,2.299189],[-59.801203,2.292729],[-59.79185,2.290869],[-59.772264,2.290352],[-59.763247,2.287975],[-59.741698,2.263791],[-59.740225,2.229477],[-59.745754,2.190823],[-59.744979,2.153513],[-59.735858,2.123722],[-59.735393,2.113516],[-59.738571,2.103619],[-59.749837,2.085972],[-59.752963,2.075456],[-59.751464,2.062253],[-59.740406,2.041401],[-59.737098,2.03042],[-59.737796,2.022229],[-59.743532,2.005667],[-59.745341,1.997166],[-59.742809,1.970966],[-59.743816,1.961845],[-59.748364,1.951252],[-59.76087,1.931925],[-59.764539,1.92053],[-59.765133,1.904639],[-59.763557,1.882574],[-59.758751,1.862136],[-59.749682,1.851309],[-59.737512,1.850793],[-59.717229,1.858053],[-59.705576,1.857407],[-59.667981,1.842705],[-59.655475,1.839708],[-59.649119,1.841362],[-59.646458,1.839966],[-59.645476,1.827693],[-59.666483,1.787101],[-59.682476,1.765604],[-59.680849,1.757387],[-59.658964,1.734081],[-59.649817,1.727002],[-59.639662,1.721756],[-59.628164,1.718811],[-59.607933,1.719999],[-59.59057,1.724909],[-59.572716,1.727157],[-59.551477,1.720516],[-59.530729,1.703075],[-59.502823,1.657652],[-59.486003,1.636077],[-59.454764,1.611324],[-59.445514,1.601015],[-59.425877,1.565952],[-59.416834,1.555281],[-59.412105,1.553265],[-59.399729,1.552025],[-59.394639,1.549441],[-59.39097,1.543654],[-59.383864,1.527892],[-59.380169,1.523345],[-59.368025,1.520399],[-59.347691,1.526032],[-59.33857,1.524637],[-59.326943,1.509521],[-59.32472,1.490763],[-59.320328,1.473529],[-59.302189,1.462961],[-59.293818,1.452109],[-59.272424,1.404153],[-59.259918,1.387436],[-59.242141,1.377798],[-59.177959,1.357128],[-59.011096,1.327569],[-58.972025,1.312311],[-58.966499,1.310154],[-58.945984,1.298992],[-58.927484,1.284212],[-58.911722,1.260234],[-58.906451,1.23853],[-58.897873,1.217808],[-58.872138,1.197241],[-58.852036,1.188714],[-58.834001,1.18582],[-58.815966,1.187267],[-58.795967,1.191815],[-58.771938,1.201271],[-58.752817,1.214966],[-58.736901,1.232329],[-58.709202,1.272275],[-58.69773,1.28106],[-58.682589,1.282455],[-58.580528,1.27274],[-58.574172,1.275375],[-58.561408,1.285142],[-58.556964,1.286899],[-58.552313,1.284626],[-58.546732,1.28044],[-58.542753,1.276357],[-58.543063,1.274394],[-58.535053,1.271551],[-58.527146,1.266849],[-58.51893,1.267262],[-58.487614,1.316458],[-58.481103,1.333873],[-58.481723,1.358058],[-58.488079,1.378883],[-58.506993,1.418183],[-58.513659,1.43888],[-58.501754,1.453781],[-58.498879,1.45738],[-58.42643,1.469805],[-58.413458,1.47203],[-58.38638,1.490194],[-58.385915,1.499729],[-58.391702,1.520839],[-58.390255,1.53076],[-58.383124,1.53722],[-58.360283,1.547374],[-58.351395,1.553317],[-58.344263,1.565487],[-58.338734,1.580189],[-58.331913,1.593392],[-58.320492,1.601221],[-58.316151,1.598896],[-58.306333,1.582773],[-58.299202,1.575176],[-58.281993,1.566572],[-58.260548,1.560319],[-58.238585,1.556702],[-58.219672,1.556056],[-58.206959,1.559958],[-58.197761,1.5659],[-58.18727,1.567606],[-58.170631,1.558821],[-58.162879,1.549183],[-58.155541,1.527376],[-58.148616,1.519082],[-58.116422,1.510555],[-58.069138,1.509005],[-58.027229,1.516859],[-58.011157,1.536186],[-57.993587,1.568484],[-57.986973,1.586829],[-57.983924,1.604115],[-57.989763,1.634604],[-57.991003,1.650417],[-57.985009,1.657704],[-57.969144,1.655481],[-57.939017,1.643312],[-57.922222,1.642485],[-57.905376,1.648557],[-57.871476,1.669253],[-57.790757,1.704936],[-57.758821,1.713462],[-57.723113,1.711654],[-57.63857,1.696177],[-57.607874,1.697107],[-57.561159,1.708967],[-57.53129,1.731549],[-57.464782,1.81573],[-57.454292,1.833817],[-57.429487,1.900299],[-57.419514,1.909187],[-57.405561,1.914277],[-57.384529,1.925207],[-57.368767,1.93965],[-57.356158,1.955282],[-57.341482,1.968847],[-57.319416,1.977141],[-57.294818,1.974842],[-57.258645,1.952233],[-57.238439,1.948539],[-57.152915,2.002204],[-57.104494,2.021454],[-57.074057,1.997166],[-57.067804,1.968692],[-57.05597,1.948073],[-57.03747,1.93239],[-57.011167,1.918566],[-56.993235,1.914845],[-56.976853,1.914587],[-56.943522,1.918256],[-56.921921,1.918101],[-56.913446,1.91283],[-56.906832,1.903244],[-56.890709,1.890196],[-56.877635,1.885648],[-56.806476,1.873582],[-56.79273,1.87353],[-56.780638,1.87906],[-56.737643,1.912985],[-56.724156,1.916137],[-56.704105,1.91283],[-56.683951,1.912107],[-56.669663,1.919858],[-56.656408,1.930064],[-56.639561,1.93686],[-56.620234,1.93456],[-56.604421,1.924586],[-56.590107,1.912985],[-56.574862,1.905466],[-56.55892,1.906655],[-56.528509,1.924018],[-56.481819,1.941614],[-56.429807,1.9227],[-56.415182,1.919703],[-56.396527,1.921667],[-56.367175,1.928876],[-56.347951,1.926602],[-56.328624,1.918463],[-56.292709,1.895467],[-56.273796,1.887509],[-56.257931,1.885648],[-56.209768,1.888542],[-56.145276,1.871773],[-56.082644,1.846555],[-56.019651,1.833507],[-55.953815,1.853273],[-55.922034,1.886217],[-55.916763,1.922235],[-55.922344,1.962155],[-55.923584,2.006597],[-55.92038,2.019387],[-55.916763,2.028508],[-55.915135,2.037655],[-55.918262,2.050393],[-55.925806,2.061684],[-55.959965,2.090985],[-55.995776,2.13739],[-56.004406,2.144986],[-56.03133,2.163487],[-56.044843,2.184726],[-56.054016,2.224051],[-56.072929,2.241518],[-56.091455,2.245911],[-56.135251,2.248546],[-56.146775,2.256194],[-56.143881,2.274746],[-56.131995,2.304357],[-56.116803,2.333089],[-56.10378,2.349057],[-56.091455,2.351899],[-56.082283,2.347713],[-56.07342,2.34239],[-56.062155,2.341564],[-56.050243,2.347041],[-56.042569,2.355103],[-56.013346,2.398821],[-56.008179,2.416288],[-56.007507,2.460678],[-55.996913,2.503259],[-55.989239,2.520829],[-55.983012,2.526462],[-55.971023,2.530338],[-55.9472,2.528167],[-55.925031,2.515662],[-55.870668,2.47091],[-55.853769,2.462642],[-55.783128,2.445175],[-55.773568,2.440059],[-55.766126,2.431274],[-55.754602,2.409415],[-55.744112,2.401043],[-55.724294,2.396909],[-55.645384,2.416649],[-55.608306,2.433961],[-55.587326,2.433858],[-55.568206,2.431274],[-55.51131,2.43639],[-55.474309,2.435821],[-55.435552,2.43086],[-55.399585,2.430189],[-55.37106,2.442539],[-55.362766,2.457939],[-55.360079,2.476232],[-55.354523,2.494888],[-55.337754,2.511269],[-55.32052,2.518297],[-55.302795,2.519692],[-55.286982,2.513905],[-55.275252,2.499332],[-55.25192,2.497885],[-55.171951,2.559328],[-55.137793,2.56217],[-55.13309,2.552869],[-55.136604,2.5338],[-55.128852,2.525687],[-55.120894,2.524808],[-55.112471,2.527805],[-55.076298,2.54522],[-55.037747,2.577932],[-55.017748,2.590592],[-54.976872,2.606922],[-54.959095,2.608989],[-54.953669,2.599067],[-54.960232,2.585683],[-54.979559,2.566098],[-54.982815,2.552352],[-54.978577,2.54305],[-54.880289,2.447345],[-54.841919,2.433496],[-54.792491,2.448172],[-54.775494,2.457335],[-54.759805,2.465794],[-54.743036,2.466517],[-54.721177,2.457991],[-54.707664,2.450343],[-54.703194,2.445847],[-54.702548,2.425745],[-54.701101,2.419905],[-54.696838,2.409105],[-54.695597,2.403524],[-54.697251,2.397322],[-54.702031,2.395721],[-54.707276,2.395876],[-54.709963,2.39479],[-54.715699,2.375928],[-54.706734,2.353191],[-54.705442,2.342545],[-54.706553,2.332882],[-54.704124,2.32482],[-54.692497,2.318981],[-54.67286,2.315984],[-54.653378,2.316501],[-54.634128,2.320118],[-54.615292,2.326267],[-54.588162,2.324355],[-54.564649,2.314847],[-54.544289,2.300222],[-54.526409,2.282652],[-54.549146,2.279449],[-54.545787,2.268596],[-54.511422,2.24343],[-54.492664,2.222708],[-54.476644,2.21413],[-54.43396,2.209324],[-54.427087,2.207153],[-54.41148,2.199712],[-54.40254,2.197128],[-54.387812,2.196301],[-54.380526,2.197696],[-54.373911,2.196508],[-54.360941,2.188188],[-54.335051,2.1639],[-54.322855,2.157337],[-54.314019,2.154857],[-54.263789,2.14819],[-54.246477,2.151601],[-54.229786,2.157234],[-54.210046,2.161575],[-54.194491,2.163073],[-54.188548,2.161316],[-54.157387,2.121655],[-54.148137,2.114394],[-54.134908,2.110673],[-54.111527,2.11427],[-54.111395,2.114291],[-54.098424,2.127959],[-54.084213,2.169326],[-54.076669,2.183692],[-54.069279,2.188343],[-54.048453,2.188808],[-54.043337,2.187723],[-54.03326,2.180333],[-54.027989,2.178576],[-54.021375,2.180592],[-54.011711,2.190565],[-54.005975,2.194337],[-53.963911,2.209324],[-53.946134,2.221984],[-53.938744,2.240123],[-53.937762,2.264617],[-53.932905,2.26963],[-53.921639,2.265961],[-53.901227,2.264514],[-53.888463,2.273816],[-53.879368,2.290611],[-53.866811,2.304925],[-53.843453,2.30663],[-53.830896,2.310144],[-53.821077,2.323632],[-53.811827,2.340427],[-53.800975,2.353811],[-53.783457,2.364095],[-53.764801,2.368694],[-53.748265,2.364663],[-53.737361,2.349057],[-53.738033,2.338825],[-53.748162,2.319343],[-53.74873,2.312676],[-53.742167,2.308542],[-53.713177,2.307354],[-53.645997,2.278467],[-53.629461,2.275314],[-53.595303,2.273867],[-53.579025,2.270405],[-53.547347,2.25175],[-53.531792,2.247047],[-53.511535,2.252267],[-53.473243,2.254127],[-53.462133,2.258985],[-53.425442,2.286011],[-53.390406,2.299034],[-53.37852,2.307561],[-53.35108,2.341719],[-53.348806,2.347661],[-53.344104,2.349625],[-53.330926,2.345698],[-53.322554,2.338566],[-53.29744,2.303685],[-53.234188,2.250975],[-53.234653,2.24126],[-53.254342,2.23418],[-53.272222,2.219969],[-53.279715,2.204983],[-53.268501,2.195733],[-53.252843,2.196508],[-53.132282,2.219297],[-53.113368,2.219349],[-53.092233,2.211907],[-53.061227,2.186276],[-53.01911,2.181987],[-52.980922,2.173253],[-52.959683,2.175217],[-52.953223,2.179041],[-52.944386,2.190978],[-52.939064,2.195733],[-52.934103,2.196405],[-52.923147,2.193666],[-52.917153,2.195733],[-52.906714,2.204983],[-52.900306,2.21413],[-52.8924,2.236867],[-52.880153,2.26038],[-52.862738,2.274229],[-52.819691,2.291541],[-52.707708,2.358927],[-52.690603,2.372983],[-52.677219,2.390398],[-52.656084,2.430912],[-52.619187,2.463468],[-52.590403,2.504706],[-52.56906,2.550388],[-52.563686,2.559328],[-52.55795,2.565633],[-52.553454,2.573384],[-52.551904,2.586562],[-52.55578,2.598137],[-52.572058,2.622993],[-52.575778,2.633742],[-52.571593,2.6386],[-52.551025,2.645989],[-52.542964,2.651519],[-52.539605,2.659425],[-52.5333,2.689863],[-52.455269,2.865046],[-52.448448,2.874348],[-52.441626,2.881324],[-52.433461,2.886595],[-52.422351,2.890522],[-52.409277,2.897344],[-52.410672,2.90556],[-52.417855,2.915482],[-52.422196,2.927471],[-52.416563,2.942509],[-52.353208,3.058419],[-52.351554,3.065964],[-52.361114,3.10932],[-52.361838,3.131955],[-52.355327,3.151592],[-52.31936,3.177637],[-52.299103,3.225334],[-52.279466,3.242491],[-52.267012,3.244919],[-52.25926,3.243317],[-52.251199,3.243059],[-52.238073,3.249725],[-52.227918,3.260112],[-52.092759,3.481391],[-52.092035,3.490202],[-52.093792,3.4994],[-52.093586,3.506867],[-52.074181,3.516634],[-52.06599,3.528855],[-52.054492,3.556709],[-52.012764,3.619108],[-52.0031,3.642311],[-51.995375,3.685332],[-51.988424,3.704555],[-51.972844,3.721686],[-51.963309,3.725458],[-51.955816,3.724425],[-51.948711,3.725097],[-51.940081,3.733959],[-51.938195,3.742512],[-51.940985,3.76357],[-51.93866,3.773569],[-51.930934,3.781398],[-51.899721,3.796669],[-51.83541,3.867543],[-51.818615,3.891081],[-51.806239,3.917514],[-51.797531,3.949967],[-51.783191,3.980947],[-51.757947,4.002522],[-51.683217,4.039374],[-51.651601,4.047675],[-51.631744,4.067816],[-51.595815,4.157864],[-51.596906,4.215504],[-51.585347,4.233818],[-51.571604,4.235419],[-51.559682,4.2237],[-51.552154,4.20718],[-51.539215,4.149237],[-51.511871,4.080308],[-51.450999,3.970526],[-51.436838,3.929511],[-51.428212,3.95775],[-51.435414,3.985907],[-51.46349,4.031928],[-51.498158,4.105414],[-51.546702,4.255032],[-51.561025,4.357123],[-51.560048,4.369371],[-51.547683,4.421785],[-51.537843,4.432061],[-51.516498,4.441122],[-51.490674,4.427744],[-51.453425,4.402281],[-51.38923,4.358902],[-51.298288,4.258537],[-51.224435,4.165043],[-51.18693,4.078849],[-51.179433,4.025214],[-51.179439,3.924937],[-51.180231,3.804444],[-51.197487,3.699521],[-51.176137,3.648342],[-51.173451,3.671332],[-51.155629,3.737738],[-51.148834,3.827094],[-51.136383,3.867743],[-51.116363,3.906195],[-51.093152,3.907229],[-51.079905,3.88227],[-51.090003,3.724951],[-51.08444,3.592072],[-51.079385,3.492087],[-51.096477,3.449021],[-51.092742,3.376329],[-51.036004,3.229214],[-51.027816,3.181613],[-51.040627,3.150937],[-51.033709,3.127104],[-51.018396,3.092005],[-51.013983,3.072386],[-51.019215,3.056995],[-51.016779,3.035572],[-51.004019,3.022652],[-50.997279,3.005491],[-50.988876,2.980623],[-50.986451,2.958362],[-50.97973,2.93865],[-50.964471,2.916327],[-50.951808,2.889753],[-50.944201,2.875178],[-50.94599,2.863223],[-50.949511,2.847861],[-50.948726,2.836749],[-50.94454,2.822201],[-50.934327,2.814448],[-50.922922,2.808905],[-50.917348,2.800727],[-50.902803,2.793755],[-50.898623,2.779204],[-50.893599,2.762942],[-50.882565,2.748352],[-50.874985,2.728656],[-50.873414,2.703868],[-50.865833,2.684165],[-50.852247,2.666133],[-50.846367,2.647293],[-50.843918,2.626762],[-50.834694,2.593356],[-50.818959,2.552395],[-50.821929,2.528388],[-50.830068,2.518012],[-50.836822,2.514594],[-50.84024,2.506537],[-50.839467,2.497463],[-50.833485,2.490709],[-50.823638,2.489691],[-50.81786,2.495307],[-50.812856,2.502102],[-50.805531,2.504381],[-50.791615,2.494574],[-50.774229,2.465337],[-50.76299,2.443562],[-50.761068,2.418755],[-50.751899,2.397005],[-50.742421,2.378485],[-50.74413,2.367255],[-50.739573,2.351467],[-50.733819,2.313278],[-50.720527,2.292556],[-50.717643,2.258496],[-50.712618,2.236803],[-50.697268,2.216079],[-50.68603,2.198477],[-50.67927,2.171698],[-50.695546,2.147284],[-50.703196,2.141303],[-50.713246,2.138495],[-50.72997,2.139635],[-50.737294,2.134467],[-50.765859,2.143256],[-50.778228,2.14997],[-50.785715,2.161811],[-50.792551,2.161811],[-50.792551,2.154975],[-50.791127,2.150539],[-50.785715,2.141303],[-50.780426,2.136379],[-50.773427,2.133857],[-50.767242,2.130683],[-50.764556,2.123969],[-50.765736,2.117621],[-50.770863,2.10814],[-50.778066,2.083157],[-50.779693,2.07095],[-50.771962,2.06094],[-50.767893,2.051418],[-50.761545,2.04385],[-50.751576,2.045111],[-50.745961,2.053046],[-50.745025,2.064032],[-50.745473,2.075751],[-50.74413,2.086005],[-50.734731,2.103827],[-50.720611,2.119371],[-50.702056,2.130316],[-50.67927,2.134467],[-50.659983,2.130683],[-50.619555,2.105238],[-50.600141,2.075202],[-50.594106,2.028713],[-50.589915,2.017157],[-50.559722,1.963121],[-50.533437,1.930365],[-50.522206,1.912502],[-50.515248,1.87287],[-50.509185,1.857164],[-50.500722,1.84394],[-50.490875,1.832831],[-50.466542,1.815416],[-50.432607,1.802476],[-50.393381,1.797797],[-50.353098,1.804877],[-50.330556,1.818061],[-50.305042,1.813551],[-50.290761,1.811957],[-50.268381,1.811713],[-50.257883,1.807807],[-50.222417,1.813983],[-50.206931,1.813871],[-50.183156,1.818863],[-50.164598,1.815634],[-50.137875,1.798935],[-50.091553,1.782098],[-50.004051,1.751601],[-49.950597,1.721326],[-49.92296,1.690189],[-49.910159,1.664263],[-49.900789,1.611651],[-49.899989,1.577606],[-49.899083,1.557999],[-49.895128,1.531145],[-49.887563,1.469143],[-49.876339,1.433439],[-49.873551,1.392304],[-49.873046,1.35985],[-49.883026,1.307714],[-49.895241,1.289777],[-49.912919,1.272327],[-49.940428,1.258669],[-49.975328,1.245033],[-50.025021,1.23038],[-50.067296,1.225213],[-50.102193,1.214744],[-50.118045,1.215843],[-50.130717,1.220102],[-50.141273,1.225412],[-50.149741,1.221209],[-50.14767,1.205357],[-50.138189,1.193712],[-50.120239,1.185215],[-50.098017,1.194664],[-50.067396,1.18719],[-50.026165,1.197641],[-49.998693,1.199679],[-49.975457,1.197504],[-49.944763,1.218545],[-49.921522,1.218481],[-49.904856,1.206773],[-49.890736,1.186021],[-49.887563,1.174872],[-49.890045,1.165229],[-49.90807,1.133287],[-49.938873,1.097235],[-49.978831,1.072211],[-50.014272,1.070868],[-50.031565,1.105943],[-50.041168,1.087958],[-50.046742,1.052924],[-50.060902,1.018866],[-50.096425,1.003607],[-50.106109,0.995307],[-50.141428,0.941474],[-50.155832,0.927314],[-50.1704,0.91649],[-50.248647,0.880072],[-50.261586,0.869818],[-50.302805,0.825426],[-50.312489,0.817206],[-50.34557,0.736274],[-50.353424,0.726711],[-50.366689,0.715562],[-50.433217,0.678656],[-50.453359,0.664049],[-50.465891,0.64643],[-50.499664,0.555976],[-50.560658,0.447984],[-50.608957,0.373928],[-50.693959,0.286444],[-50.790639,0.169501],[-50.801666,0.169013],[-50.819203,0.173651],[-50.853993,0.173651],[-50.928944,0.155422],[-50.979848,0.120429],[-51.017405,0.071438],[-51.069163,-0.019342],[-51.08141,-0.032525],[-51.097279,-0.037896],[-51.160146,-0.039321],[-51.201568,-0.049086],[-51.207875,-0.053155],[-51.210276,-0.061822],[-51.215199,-0.068658],[-51.239329,-0.072564],[-51.265452,-0.083429],[-51.308949,-0.076755],[-51.326975,-0.079522],[-51.326975,-0.085707],[-51.317698,-0.090671],[-51.293935,-0.095798],[-51.282216,-0.103123],[-51.275746,-0.113214],[-51.272532,-0.12184],[-51.266347,-0.12713],[-51.25121,-0.127374],[-51.322499,-0.215265],[-51.337554,-0.261],[-51.356679,-0.29046],[-51.36384,-0.326104],[-51.370717,-0.34295],[-51.388417,-0.373712],[-51.40099,-0.389581],[-51.430776,-0.414321],[-51.443023,-0.428399],[-51.445546,-0.440362],[-51.444447,-0.455336],[-51.44518,-0.471449],[-51.453603,-0.486749],[-51.486236,-0.517185],[-51.506093,-0.531915],[-51.52184,-0.538263],[-51.536529,-0.535577],[-51.562489,-0.525486],[-51.58019,-0.52516],[-51.58019,-0.531996],[-51.57079,-0.531671],[-51.56432,-0.53338],[-51.552846,-0.538263],[-51.552846,-0.545587],[-51.569081,-0.550063],[-51.587636,-0.551853],[-51.587636,-0.558689],[-51.573598,-0.559747],[-51.561106,-0.558689],[-51.551625,-0.554376],[-51.546702,-0.545587],[-51.532379,-0.551853],[-51.57901,-0.604262],[-51.62857,-0.676039],[-51.63565,-0.682224],[-51.64981,-0.690525],[-51.656484,-0.695896],[-51.697499,-0.747166],[-51.70051,-0.759698],[-51.713735,-0.793227],[-51.724192,-0.877699],[-51.710846,-0.978611],[-51.711171,-1.011163],[-51.71288,-1.02044],[-51.715484,-1.02752],[-51.719106,-1.03338],[-51.724192,-1.039158],[-51.732737,-1.045587],[-51.75178,-1.055271],[-51.78482,-1.083591],[-51.800649,-1.092706],[-51.822092,-1.12363],[-51.834096,-1.134698],[-51.908315,-1.157973],[-51.929351,-1.178318],[-51.930247,-1.223403],[-51.916005,-1.309177],[-51.921457,-1.325779],[-51.93456,-1.339532],[-51.964426,-1.36061],[-51.995351,-1.396417],[-52.008453,-1.401625],[-52.065785,-1.405043],[-52.08727,-1.401625],[-52.151357,-1.380955],[-52.166127,-1.370864],[-52.179433,-1.356866],[-52.195383,-1.344985],[-52.214589,-1.34002],[-52.238108,-1.346368],[-52.249176,-1.353774],[-52.27599,-1.384454],[-52.285471,-1.390069],[-52.308339,-1.39365],[-52.333241,-1.40781],[-52.401967,-1.422052],[-52.421986,-1.430352],[-52.442209,-1.443129],[-52.457834,-1.458266],[-52.464019,-1.473565],[-52.475087,-1.484063],[-52.558095,-1.518731],[-52.575347,-1.523126],[-52.618276,-1.525649],[-52.682118,-1.544854],[-52.697418,-1.552423],[-52.706044,-1.560642],[-52.710032,-1.567804],[-52.71109,-1.576837],[-52.711049,-1.590265],[-52.708119,-1.60003],[-52.700551,-1.600274],[-52.6905,-1.596449],[-52.680043,-1.594008],[-52.658274,-1.591485],[-52.595041,-1.5735],[-52.423085,-1.566095],[-52.343902,-1.552423],[-52.326772,-1.547052],[-52.291249,-1.523614],[-52.279124,-1.518243],[-52.263499,-1.525486],[-52.250396,-1.54225],[-52.241444,-1.5617],[-52.236562,-1.585382],[-52.233388,-1.593438],[-52.231068,-1.602716],[-52.231923,-1.614435],[-52.236806,-1.625584],[-52.252309,-1.644952],[-52.258616,-1.65545],[-52.263336,-1.676853],[-52.260243,-1.695245],[-52.248769,-1.703058],[-52.22232,-1.691176],[-52.208892,-1.691827],[-52.203969,-1.690199],[-52.200347,-1.684747],[-52.198964,-1.673923],[-52.197133,-1.669692],[-52.162994,-1.634942],[-52.141957,-1.622735],[-52.123769,-1.619073],[-52.077382,-1.62127],[-52.072499,-1.619561],[-52.05663,-1.610935],[-52.046295,-1.607599],[-52.03661,-1.607192],[-52.015777,-1.608657],[-52.00475,-1.607599],[-51.958648,-1.593357],[-51.914622,-1.570977],[-51.669545,-1.401625],[-51.595041,-1.386895],[-51.576772,-1.377699],[-51.557973,-1.365411],[-51.483998,-1.340102],[-51.462026,-1.32936],[-51.437489,-1.312677],[-51.417714,-1.291681],[-51.409495,-1.268162],[-51.399648,-1.251072],[-51.376332,-1.240004],[-51.326975,-1.23089],[-51.326975,-1.237074],[-51.334828,-1.240655],[-51.339915,-1.244887],[-51.343577,-1.250258],[-51.347401,-1.257582],[-51.328481,-1.253839],[-51.305328,-1.243829],[-51.283437,-1.231378],[-51.2683,-1.220392],[-51.252187,-1.201918],[-51.227854,-1.162693],[-51.213694,-1.144952],[-51.187489,-1.121677],[-51.161488,-1.103611],[-51.032948,-1.038018],[-51.003407,-1.013767],[-50.991119,-0.987237],[-50.996571,-0.970798],[-51.006093,-0.952813],[-51.009755,-0.935968],[-50.997304,-0.922459],[-50.976674,-0.92018],[-50.957428,-0.949884],[-50.935902,-0.956638],[-50.935902,-0.949151],[-50.947377,-0.942478],[-50.953277,-0.931329],[-50.952219,-0.919122],[-50.942738,-0.908787],[-50.928619,-0.905694],[-50.881337,-0.914972],[-50.854237,-0.911391],[-50.839589,-0.912774],[-50.82665,-0.922459],[-50.821685,-0.935317],[-50.821929,-0.950616],[-50.82665,-0.983819],[-50.824452,-1.030938],[-50.82665,-1.045343],[-50.833892,-1.058689],[-50.843861,-1.065851],[-50.855458,-1.071466],[-50.867665,-1.079522],[-50.892405,-1.112237],[-50.901763,-1.121026],[-50.912343,-1.125584],[-50.925282,-1.127699],[-50.95641,-1.128513],[-50.847483,-1.197849],[-50.830068,-1.2138],[-50.819936,-1.231703],[-50.818593,-1.252374],[-50.829254,-1.312107],[-50.82665,-1.370864],[-50.823476,-1.376397],[-50.816558,-1.382257],[-50.809316,-1.390232],[-50.805531,-1.401625],[-50.813344,-1.413751],[-50.818105,-1.4249],[-50.819203,-1.436293],[-50.809682,-1.457696],[-50.778676,-1.49863],[-50.766713,-1.540785],[-50.753326,-1.557061],[-50.68928,-1.612074],[-50.679555,-1.629002],[-50.670481,-1.696466],[-50.663808,-1.719415],[-50.654693,-1.73797],[-50.67394,-1.764744],[-50.691029,-1.765395],[-50.737294,-1.73797],[-50.72643,-1.761163],[-50.717977,-1.768764],[-50.709508,-1.790948],[-50.717283,-1.822473],[-50.739507,-1.832651],[-50.758328,-1.845397],[-50.766936,-1.863289],[-50.767009,-1.882057],[-50.787567,-1.89737],[-50.814905,-1.896456],[-50.836214,-1.882755],[-50.858428,-1.865648],[-50.879803,-1.851951],[-50.888415,-1.868147],[-50.892734,-1.879235],[-50.879887,-1.882672],[-50.870516,-1.901463],[-50.853422,-1.908323],[-50.854385,-1.93308],[-50.844215,-1.955301],[-50.83142,-1.963011],[-50.818607,-1.969007],[-50.821947,-1.945952],[-50.82616,-1.930576],[-50.818441,-1.924616],[-50.791955,-1.927231],[-50.737207,-1.921348],[-50.713258,-1.914566],[-50.702144,-1.909472],[-50.69782,-1.888166],[-50.700341,-1.871962],[-50.698588,-1.854062],[-50.690021,-1.842998],[-50.676329,-1.830243],[-50.667739,-1.8081],[-50.660044,-1.803004],[-50.633608,-1.811591],[-50.610581,-1.814203],[-50.591705,-1.843194],[-50.565338,-1.89072],[-50.547231,-1.906915],[-50.52481,-1.921482],[-50.504506,-1.929132],[-50.489613,-1.928481],[-50.476226,-1.926039],[-50.466664,-1.92783],[-50.462961,-1.939711],[-50.465932,-1.947198],[-50.47997,-1.967055],[-50.484039,-1.977634],[-50.470082,-1.969903],[-50.456654,-1.943943],[-50.443023,-1.935968],[-50.441884,-1.946954],[-50.443227,-1.956638],[-50.447092,-1.965509],[-50.453359,-1.973891],[-50.457509,-1.983819],[-50.454254,-1.993585],[-50.443023,-2.011651],[-50.435902,-2.045099],[-50.428578,-2.062921],[-50.415761,-2.073175],[-50.409779,-2.047459],[-50.403879,-2.035821],[-50.394643,-2.025486],[-50.382476,-2.017185],[-50.378756,-2.005425],[-50.377907,-1.998752],[-50.373703,-1.987077],[-50.372841,-1.973728],[-50.364456,-1.961228],[-50.341008,-1.936245],[-50.312539,-1.908774],[-50.28077,-1.893829],[-50.251332,-1.901788],[-50.231557,-1.895766],[-50.207346,-1.897149],[-50.182729,-1.904229],[-50.161936,-1.915623],[-50.154775,-1.882745],[-50.136586,-1.861993],[-50.110422,-1.849216],[-50.024892,-1.826104],[-50.0006,-1.823663],[-49.976918,-1.826104],[-49.952707,-1.833429],[-49.93224,-1.84295],[-49.875356,-1.879571],[-49.869293,-1.888767],[-49.867055,-1.905532],[-49.870473,-1.919041],[-49.894399,-1.963311],[-49.874827,-1.942966],[-49.86026,-1.922459],[-49.854237,-1.942966],[-49.850657,-1.962579],[-49.850168,-1.98268],[-49.853424,-2.004978],[-49.861195,-2.026544],[-49.881947,-2.066583],[-49.887563,-2.087498],[-49.880727,-2.087498],[-49.86026,-2.045831],[-49.853424,-2.045831],[-49.847971,-2.062433],[-49.837514,-2.08115],[-49.824941,-2.097752],[-49.812489,-2.108005],[-49.828928,-2.057794],[-49.839182,-2.004978],[-49.83788,-1.92669],[-49.846588,-1.909356],[-49.846588,-1.901788],[-49.834706,-1.905938],[-49.830881,-1.918064],[-49.832346,-1.94964],[-49.823354,-1.928155],[-49.819814,-1.911798],[-49.810455,-1.900567],[-49.784535,-1.895115],[-49.760487,-1.896742],[-49.747182,-1.904718],[-49.737416,-1.916274],[-49.723704,-1.929132],[-49.727895,-1.910821],[-49.721303,-1.904067],[-49.710683,-1.908298],[-49.702626,-1.922459],[-49.694,-1.907322],[-49.676096,-1.908624],[-49.654205,-1.92018],[-49.619456,-1.950291],[-49.604644,-1.967869],[-49.59435,-1.988377],[-49.592763,-2.011651],[-49.579416,-1.994317],[-49.592926,-1.964044],[-49.634348,-1.909356],[-49.647369,-1.915623],[-49.649281,-1.907973],[-49.654775,-1.895115],[-49.631703,-1.867852],[-49.598012,-1.842706],[-49.563344,-1.835219],[-49.537465,-1.860935],[-49.522369,-1.795994],[-49.510813,-1.778985],[-49.485219,-1.76393],[-49.466461,-1.764337],[-49.457997,-1.778741],[-49.463002,-1.805759],[-49.45287,-1.799981],[-49.435902,-1.784926],[-49.422027,-1.778985],[-49.428212,-1.798761],[-49.451161,-1.82464],[-49.456166,-1.836684],[-49.454213,-1.856134],[-49.447581,-1.869887],[-49.434804,-1.879978],[-49.414662,-1.888279],[-49.379221,-1.896417],[-49.370432,-1.905043],[-49.367421,-1.925714],[-49.36974,-1.940199],[-49.375803,-1.957208],[-49.384348,-1.972833],[-49.394114,-1.983819],[-49.394114,-1.991306],[-49.381093,-1.991306],[-49.389068,-2.005629],[-49.412913,-2.027439],[-49.422027,-2.038995],[-49.425526,-2.050877],[-49.428212,-2.131524],[-49.430491,-2.141209],[-49.440297,-2.160903],[-49.445546,-2.18377],[-49.452992,-2.190851],[-49.461985,-2.196466],[-49.469838,-2.203546],[-49.495839,-2.246677],[-49.500111,-2.252211],[-49.503,-2.258396],[-49.503977,-2.310235],[-49.506459,-2.319594],[-49.512278,-2.326755],[-49.519032,-2.333591],[-49.524403,-2.341241],[-49.527211,-2.350844],[-49.52892,-2.370782],[-49.531321,-2.380466],[-49.54894,-2.40309],[-49.551747,-2.412774],[-49.550689,-2.423761],[-49.54601,-2.44256],[-49.542104,-2.497166],[-49.545766,-2.516534],[-49.607818,-2.604913],[-49.617258,-2.615004],[-49.640533,-2.619724],[-49.660634,-2.631768],[-49.67691,-2.649102],[-49.688954,-2.669041],[-49.663686,-2.677667],[-49.619862,-2.67018],[-49.544911,-2.642348],[-49.527415,-2.628351],[-49.523549,-2.615655],[-49.523793,-2.600763],[-49.5183,-2.580255],[-49.511952,-2.5735],[-49.492014,-2.562433],[-49.486562,-2.560317],[-49.482533,-2.556817],[-49.4794,-2.538832],[-49.477284,-2.532485],[-49.452748,-2.507501],[-49.442616,-2.492364],[-49.435699,-2.470392],[-49.434438,-2.451837],[-49.436757,-2.413995],[-49.435699,-2.395278],[-49.426829,-2.367283],[-49.331614,-2.204767],[-49.313954,-2.160414],[-49.30602,-2.124444],[-49.304758,-2.104587],[-49.300526,-2.090916],[-49.232004,-1.948175],[-49.204091,-1.907322],[-49.175649,-1.881443],[-49.168324,-1.878106],[-49.160024,-1.875746],[-49.145569,-1.856758],[-49.142764,-1.839946],[-49.128665,-1.800707],[-49.123006,-1.768008],[-49.08673,-1.748894],[-49.049648,-1.721792],[-49.008864,-1.681124],[-48.991543,-1.635484],[-48.965589,-1.599719],[-48.926079,-1.593599],[-48.903117,-1.58423],[-48.877874,-1.571169],[-48.86478,-1.559961],[-48.856369,-1.559031],[-48.857317,-1.566525],[-48.875084,-1.586137],[-48.892851,-1.598252],[-48.895678,-1.622543],[-48.903166,-1.638422],[-48.911607,-1.67298],[-48.930303,-1.686041],[-48.936849,-1.693507],[-48.943394,-1.700038],[-48.946201,-1.704705],[-48.942477,-1.719652],[-48.943432,-1.742997],[-48.955599,-1.766329],[-48.968704,-1.785925],[-48.995815,-1.793368],[-49.011721,-1.80736],[-49.018289,-1.827901],[-49.032325,-1.839096],[-49.033269,-1.846568],[-49.017323,-1.847263],[-49.002418,-1.84286],[-48.992124,-1.832596],[-48.982755,-1.813926],[-48.956577,-1.803679],[-48.929465,-1.787832],[-48.917292,-1.762634],[-48.910733,-1.742097],[-48.900258,-1.734552],[-48.893056,-1.722833],[-48.883901,-1.717462],[-48.881418,-1.713474],[-48.890248,-1.69378],[-48.890736,-1.686456],[-48.882395,-1.67962],[-48.864003,-1.671563],[-48.856313,-1.665948],[-48.853586,-1.661879],[-48.847768,-1.649672],[-48.846669,-1.645196],[-48.845082,-1.641371],[-48.841298,-1.641697],[-48.836781,-1.642755],[-48.829661,-1.640558],[-48.819692,-1.640395],[-48.815338,-1.63836],[-48.812815,-1.634047],[-48.813222,-1.625421],[-48.811879,-1.62127],[-48.736806,-1.511407],[-48.735422,-1.50742],[-48.735829,-1.503106],[-48.735829,-1.498793],[-48.733062,-1.494317],[-48.728993,-1.492608],[-48.718658,-1.491957],[-48.715688,-1.490981],[-48.703969,-1.478936],[-48.69933,-1.472914],[-48.695221,-1.463637],[-48.676371,-1.417571],[-48.656946,-1.38338],[-48.642121,-1.385675],[-48.630733,-1.406211],[-48.618205,-1.427891],[-48.606435,-1.456231],[-48.575917,-1.512628],[-48.561757,-1.528904],[-48.552317,-1.544366],[-48.543853,-1.565606],[-48.535024,-1.581476],[-48.523915,-1.580336],[-48.502309,-1.612074],[-48.490224,-1.619073],[-48.465932,-1.62127],[-48.452626,-1.625665],[-48.442047,-1.636407],[-48.43399,-1.649672],[-48.428334,-1.662286],[-48.421457,-1.645115],[-48.424469,-1.626153],[-48.430979,-1.607192],[-48.43456,-1.590265],[-48.443023,-1.570001],[-48.478383,-1.535089],[-48.4829,-1.511407],[-48.464833,-1.522068],[-48.447906,-1.525974],[-48.428049,-1.524184],[-48.375803,-1.510512],[-48.355824,-1.500421],[-48.339589,-1.487237],[-48.325307,-1.470473],[-48.334137,-1.468683],[-48.366282,-1.470473],[-48.377553,-1.469171],[-48.388092,-1.466078],[-48.397939,-1.461847],[-48.407216,-1.456231],[-48.417633,-1.465102],[-48.434926,-1.470961],[-48.455556,-1.472914],[-48.476145,-1.470473],[-48.496571,-1.461358],[-48.503285,-1.4485],[-48.501576,-1.431248],[-48.496571,-1.40838],[-48.489817,-1.326918],[-48.482753,-1.2813],[-48.454007,-1.24416],[-48.435903,-1.218688],[-48.423173,-1.232516],[-48.428534,-1.26544],[-48.425387,-1.297312],[-48.40982,-1.30283],[-48.339711,-1.316013],[-48.334584,-1.313653],[-48.331614,-1.294203],[-48.326487,-1.279474],[-48.320058,-1.229587],[-48.305043,-1.188246],[-48.281361,-1.167087],[-48.250152,-1.189386],[-48.257314,-1.173517],[-48.269399,-1.161716],[-48.277008,-1.149998],[-48.27066,-1.134698],[-48.278147,-1.128513],[-48.27066,-1.121026],[-48.258941,-1.126153],[-48.248158,-1.122817],[-48.236684,-1.116876],[-48.22289,-1.113539],[-48.234609,-1.108819],[-48.247141,-1.109308],[-48.274403,-1.113539],[-48.277821,-1.108494],[-48.291127,-1.079522],[-48.29601,-1.055597],[-48.291737,-1.043634],[-48.277699,-1.039646],[-48.230946,-1.038751],[-48.212514,-1.036554],[-48.19811,-1.03045],[-48.187489,-1.01865],[-48.185536,-1.009942],[-48.184682,-0.998224],[-48.182932,-0.988214],[-48.177846,-0.983819],[-48.176178,-0.97975],[-48.163808,-0.962823],[-48.160797,-0.960056],[-48.158681,-0.936456],[-48.153961,-0.914972],[-48.15217,-0.914239],[-48.147817,-0.910577],[-48.143056,-0.905857],[-48.140289,-0.9013],[-48.145741,-0.886163],[-48.146555,-0.880792],[-48.141103,-0.85475],[-48.140289,-0.84295],[-48.143544,-0.833266],[-48.150543,-0.826755],[-48.157582,-0.821384],[-48.160797,-0.816013],[-48.159169,-0.796645],[-48.154042,-0.781834],[-48.111562,-0.724542],[-48.037913,-0.661716],[-48.025258,-0.675714],[-48.021108,-0.683526],[-48.017445,-0.695896],[-48.017812,-0.702732],[-48.023549,-0.715427],[-48.02359,-0.72324],[-48.021352,-0.72503],[-48.012074,-0.731052],[-48.009999,-0.733657],[-48.002553,-0.746515],[-47.969635,-0.779474],[-47.962148,-0.781834],[-47.946116,-0.740492],[-47.877919,-0.696873],[-47.866238,-0.673505],[-47.850087,-0.670994],[-47.821278,-0.679783],[-47.802444,-0.690334],[-47.80738,-0.67731],[-47.82223,-0.664893],[-47.825286,-0.639483],[-47.824616,-0.606652],[-47.815918,-0.5887],[-47.8128,-0.573836],[-47.809071,-0.565167],[-47.789889,-0.582544],[-47.775045,-0.599292],[-47.7695,-0.619744],[-47.770253,-0.63714],[-47.746816,-0.633884],[-47.725168,-0.644138],[-47.71642,-0.667739],[-47.715728,-0.712986],[-47.722401,-0.724379],[-47.735219,-0.735447],[-47.743398,-0.74627],[-47.736318,-0.757257],[-47.728668,-0.756524],[-47.652821,-0.723891],[-47.626617,-0.707208],[-47.610585,-0.693943],[-47.597279,-0.677341],[-47.588287,-0.641697],[-47.5781,-0.635407],[-47.587163,-0.613964],[-47.584514,-0.578247],[-47.573476,-0.582809],[-47.559196,-0.591271],[-47.53844,-0.61078],[-47.543009,-0.627007],[-47.534495,-0.637302],[-47.529408,-0.646091],[-47.527415,-0.657485],[-47.523997,-0.669122],[-47.519439,-0.676039],[-47.509145,-0.68727],[-47.493276,-0.712091],[-47.487375,-0.728285],[-47.48766,-0.745701],[-47.496693,-0.764744],[-47.424062,-0.764744],[-47.408599,-0.771091],[-47.406361,-0.801446],[-47.393056,-0.812595],[-47.393056,-0.800714],[-47.390859,-0.789727],[-47.386342,-0.779962],[-47.379384,-0.770929],[-47.384918,-0.767185],[-47.389272,-0.762628],[-47.391998,-0.75628],[-47.393056,-0.747166],[-47.414133,-0.736912],[-47.438791,-0.703302],[-47.448313,-0.695896],[-47.451039,-0.707127],[-47.454701,-0.716567],[-47.460194,-0.724542],[-47.468739,-0.730645],[-47.470041,-0.62184],[-47.464426,-0.609063],[-47.448313,-0.60711],[-47.461903,-0.592869],[-47.446401,-0.585138],[-47.430165,-0.580011],[-47.414377,-0.581231],[-47.39981,-0.592869],[-47.40453,-0.599786],[-47.409657,-0.609796],[-47.414133,-0.613946],[-47.410024,-0.628351],[-47.414703,-0.66131],[-47.407338,-0.681573],[-47.408803,-0.670099],[-47.407297,-0.660252],[-47.40217,-0.65252],[-47.393056,-0.648126],[-47.390289,-0.661554],[-47.385732,-0.672784],[-47.378041,-0.679864],[-47.365712,-0.681573],[-47.365712,-0.676039],[-47.374013,-0.670343],[-47.380238,-0.658868],[-47.381093,-0.64544],[-47.373158,-0.633884],[-47.359446,-0.630955],[-47.346425,-0.637302],[-47.324696,-0.65488],[-47.326283,-0.639093],[-47.332672,-0.629164],[-47.340199,-0.620212],[-47.345204,-0.60711],[-47.328847,-0.613458],[-47.31664,-0.607599],[-47.305898,-0.597914],[-47.294016,-0.592869],[-47.279124,-0.599216],[-47.277089,-0.61419],[-47.279042,-0.632501],[-47.276357,-0.648126],[-47.269521,-0.648126],[-47.257883,-0.640883],[-47.250803,-0.647068],[-47.249582,-0.660577],[-47.255849,-0.676039],[-47.238759,-0.664727],[-47.234486,-0.651056],[-47.23766,-0.635837],[-47.242787,-0.620212],[-47.19811,-0.651544],[-47.194569,-0.663832],[-47.199941,-0.676935],[-47.208608,-0.681817],[-47.215484,-0.669122],[-47.22232,-0.669122],[-47.225331,-0.67962],[-47.230621,-0.68727],[-47.238515,-0.692641],[-47.249013,-0.695896],[-47.249013,-0.702732],[-47.235951,-0.716404],[-47.229115,-0.716404],[-47.222239,-0.702325],[-47.208241,-0.699151],[-47.190907,-0.702813],[-47.17394,-0.709568],[-47.174062,-0.698826],[-47.171986,-0.692153],[-47.167633,-0.687188],[-47.160878,-0.681573],[-47.154897,-0.697524],[-47.154205,-0.713311],[-47.158437,-0.728774],[-47.167104,-0.743748],[-47.173655,-0.748468],[-47.190907,-0.75628],[-47.194407,-0.761],[-47.190826,-0.770196],[-47.182729,-0.769708],[-47.173573,-0.764093],[-47.167104,-0.757257],[-47.155751,-0.764093],[-47.14802,-0.774102],[-47.143056,-0.786065],[-47.13976,-0.798923],[-47.134674,-0.780532],[-47.138539,-0.759698],[-47.139556,-0.741388],[-47.126088,-0.730645],[-47.124745,-0.73797],[-47.120758,-0.74505],[-47.119293,-0.750584],[-47.115224,-0.741876],[-47.115712,-0.736505],[-47.117909,-0.730645],[-47.119293,-0.719822],[-47.117828,-0.713149],[-47.109934,-0.702813],[-47.105621,-0.695896],[-47.102895,-0.674981],[-47.098988,-0.665623],[-47.088246,-0.661716],[-47.077545,-0.665704],[-47.073069,-0.675226],[-47.073598,-0.686456],[-47.078359,-0.695896],[-47.07551,-0.697686],[-47.07372,-0.697361],[-47.072581,-0.697931],[-47.071523,-0.702732],[-47.079701,-0.709649],[-47.079661,-0.735935],[-47.084543,-0.750584],[-47.078359,-0.757257],[-47.071523,-0.743748],[-47.065989,-0.759698],[-47.064687,-0.777032],[-47.059885,-0.789646],[-47.043568,-0.791436],[-47.05427,-0.80283],[-47.073476,-0.815362],[-47.078359,-0.826267],[-47.076568,-0.836602],[-47.062611,-0.85589],[-47.0572,-0.86712],[-47.054189,-0.856541],[-47.051015,-0.819431],[-47.04776,-0.810724],[-47.042348,-0.800714],[-47.036,-0.791681],[-47.029897,-0.785252],[-47.026112,-0.787693],[-47.016225,-0.791436],[-47.016591,-0.770115],[-47.015248,-0.760024],[-47.008412,-0.757257],[-46.992665,-0.757257],[-46.984609,-0.7492],[-46.977366,-0.730564],[-46.969106,-0.695896],[-46.956858,-0.710138],[-46.957021,-0.735447],[-46.969106,-0.785252],[-46.961659,-0.785252],[-46.954823,-0.770929],[-46.946278,-0.776056],[-46.942494,-0.782403],[-46.94286,-0.790134],[-46.947377,-0.798923],[-46.92809,-0.798923],[-46.931508,-0.804946],[-46.937856,-0.820408],[-46.941151,-0.826267],[-46.933095,-0.823012],[-46.931304,-0.821954],[-46.92809,-0.819431],[-46.922231,-0.834568],[-46.930328,-0.842869],[-46.943959,-0.847833],[-46.954823,-0.853611],[-46.963002,-0.865004],[-46.968373,-0.879653],[-46.964996,-0.893324],[-46.947377,-0.9013],[-46.948638,-0.884698],[-46.95165,-0.871677],[-46.949127,-0.861505],[-46.934316,-0.853611],[-46.911773,-0.86004],[-46.900787,-0.857354],[-46.900217,-0.839288],[-46.89273,-0.846775],[-46.891347,-0.834161],[-46.89273,-0.785252],[-46.884023,-0.789972],[-46.877675,-0.795668],[-46.873931,-0.802911],[-46.872874,-0.812595],[-46.865387,-0.812595],[-46.861684,-0.806085],[-46.858998,-0.802504],[-46.854644,-0.800551],[-46.84557,-0.798923],[-46.849843,-0.791274],[-46.855946,-0.785577],[-46.863637,-0.781345],[-46.872874,-0.778416],[-46.858632,-0.76572],[-46.832916,-0.730076],[-46.818227,-0.72324],[-46.818227,-0.716404],[-46.831288,-0.709568],[-46.819203,-0.711684],[-46.809193,-0.717218],[-46.801503,-0.725763],[-46.796539,-0.736912],[-46.808095,-0.740004],[-46.810862,-0.746677],[-46.806386,-0.755466],[-46.796539,-0.764744],[-46.811431,-0.770685],[-46.818227,-0.770929],[-46.818227,-0.778416],[-46.81192,-0.784845],[-46.813344,-0.790785],[-46.820465,-0.795668],[-46.831288,-0.798923],[-46.831288,-0.805108],[-46.821278,-0.807794],[-46.81786,-0.814142],[-46.819447,-0.822931],[-46.824452,-0.833103],[-46.812978,-0.829848],[-46.804433,-0.825128],[-46.79894,-0.817153],[-46.796539,-0.805108],[-46.790354,-0.805108],[-46.797597,-0.860528],[-46.799306,-0.862481],[-46.799672,-0.865167],[-46.796539,-0.874607],[-46.785553,-0.893976],[-46.782867,-0.9013],[-46.778635,-0.885837],[-46.783355,-0.874444],[-46.786366,-0.862726],[-46.776682,-0.846775],[-46.769887,-0.846775],[-46.769887,-0.86712],[-46.759633,-0.861505],[-46.755605,-0.850193],[-46.755523,-0.819431],[-46.745107,-0.829278],[-46.719635,-0.864841],[-46.714589,-0.877699],[-46.718739,-0.894627],[-46.749379,-0.942966],[-46.733266,-0.930922],[-46.709299,-0.889825],[-46.697865,-0.880792],[-46.699045,-0.868422],[-46.697621,-0.843845],[-46.68871,-0.825779],[-46.667388,-0.833103],[-46.660634,-0.844903],[-46.659901,-0.85589],[-46.656972,-0.863946],[-46.643219,-0.86712],[-46.63268,-0.863214],[-46.635162,-0.853285],[-46.656733,-0.813973],[-46.655913,-0.80182],[-46.638087,-0.801853],[-46.613796,-0.813236],[-46.598541,-0.86712],[-46.622467,-0.898045],[-46.626454,-0.908787],[-46.619008,-0.908787],[-46.611399,-0.903904],[-46.608754,-0.911065],[-46.611318,-0.924005],[-46.619008,-0.935479],[-46.632639,-0.943455],[-46.64623,-0.945408],[-46.656565,-0.939142],[-46.660024,-0.922459],[-46.667388,-0.922459],[-46.673085,-0.936619],[-46.682281,-0.94671],[-46.723541,-0.972833],[-46.737457,-0.984308],[-46.74706,-0.999119],[-46.749379,-1.01865],[-46.738149,-1.00156],[-46.720693,-0.983982],[-46.700429,-0.969903],[-46.68106,-0.963474],[-46.677235,-0.96559],[-46.653664,-0.967025],[-46.626117,-0.962203],[-46.605055,-0.956564],[-46.581591,-0.970356],[-46.564562,-0.95095],[-46.561295,-0.92829],[-46.545893,-0.91374],[-46.518352,-0.900824],[-46.502948,-0.883844],[-46.487558,-0.879006],[-46.475422,-0.883877],[-46.465696,-0.876602],[-46.447068,-0.872576],[-46.427629,-0.86855],[-46.416309,-0.880708],[-46.421187,-0.894466],[-46.438202,-0.902542],[-46.460878,-0.906562],[-46.480327,-0.919491],[-46.473063,-0.936499],[-46.477133,-0.952682],[-46.489292,-0.964807],[-46.488497,-0.976139],[-46.471507,-0.985876],[-46.475581,-1.006917],[-46.480092,-1.022231],[-46.466786,-1.023126],[-46.462717,-1.031671],[-46.475006,-1.045343],[-46.464589,-1.045831],[-46.453196,-1.043552],[-46.444081,-1.037774],[-46.440297,-1.028253],[-46.435658,-1.023858],[-46.42512,-1.028741],[-46.413726,-1.036065],[-46.406728,-1.039158],[-46.39269,-1.027114],[-46.384511,-1.009861],[-46.364898,-1.008396],[-46.367055,-1.025486],[-46.365793,-1.045343],[-46.361195,-1.067315],[-46.356516,-1.075291],[-46.352935,-1.069106],[-46.351471,-1.049005],[-46.346181,-1.033949],[-46.334462,-1.022149],[-46.322662,-1.020278],[-46.317372,-1.035333],[-46.317372,-1.073337],[-46.319,-1.081476],[-46.32433,-1.097345],[-46.324818,-1.107354],[-46.30956,-1.09588],[-46.301259,-1.079197],[-46.297678,-1.057712],[-46.296864,-1.031671],[-46.290028,-1.031671],[-46.280629,-1.048923],[-46.256256,-1.077081],[-46.248443,-1.093683],[-46.254018,-1.077407],[-46.271108,-1.053643],[-46.276357,-1.039158],[-46.279042,-1.036554],[-46.283315,-1.029392],[-46.283315,-1.022068],[-46.26415,-1.016697],[-46.274651,-1.005539],[-46.281479,-0.997449],[-46.278979,-0.986261],[-46.267769,-0.971354],[-46.262147,-0.95022],[-46.250308,-0.930955],[-46.234242,-0.917087],[-46.200307,-0.907647],[-46.171783,-0.920994],[-46.17394,-0.956638],[-46.180165,-0.956638],[-46.190012,-0.959161],[-46.203481,-0.976332],[-46.215566,-0.997328],[-46.221181,-1.011163],[-46.205719,-1.006606],[-46.198598,-1.010512],[-46.201243,-1.018243],[-46.214955,-1.024835],[-46.213287,-1.028578],[-46.21231,-1.031834],[-46.210805,-1.035089],[-46.207509,-1.039158],[-46.211781,-1.044203],[-46.21703,-1.053888],[-46.221181,-1.059015],[-46.211497,-1.074802],[-46.262115,-1.183201],[-46.23054,-1.147719],[-46.221181,-1.141534],[-46.208852,-1.143162],[-46.196034,-1.149347],[-46.182118,-1.153253],[-46.166493,-1.14837],[-46.155426,-1.126153],[-46.147084,-1.11419],[-46.139231,-1.113539],[-46.136301,-1.126072],[-46.144521,-1.161391],[-46.146067,-1.176365],[-46.132802,-1.163995],[-46.12682,-1.146091],[-46.1256,-1.103936],[-46.122629,-1.09531],[-46.115712,-1.085056],[-46.107737,-1.076755],[-46.101674,-1.073337],[-46.093902,-1.07586],[-46.090484,-1.082452],[-46.088368,-1.091241],[-46.084584,-1.100518],[-46.068471,-1.130466],[-46.064687,-1.147638],[-46.074086,-1.155206],[-46.085561,-1.162042],[-46.094106,-1.178318],[-46.095326,-1.196547],[-46.084584,-1.210382],[-46.072377,-1.201593],[-46.063588,-1.18963],[-46.050445,-1.162693],[-46.040598,-1.175226],[-46.039703,-1.187107],[-46.04426,-1.1985],[-46.050445,-1.210382],[-46.032216,-1.200779],[-46.0301,-1.184666],[-46.034535,-1.165785],[-46.036204,-1.14837],[-46.031321,-1.138442],[-46.023305,-1.127537],[-46.016672,-1.113214],[-46.015736,-1.093683],[-46.008901,-1.093683],[-46.00886,-1.09824],[-46.007395,-1.10117],[-46.005116,-1.103774],[-46.002675,-1.107354],[-45.990834,-1.104262],[-45.993134,-1.07909],[-45.992583,-1.067618],[-45.979454,-1.055084],[-45.96415,-1.063861],[-45.964701,-1.072599],[-45.96109,-1.086196],[-45.969627,-1.08679],[-45.974436,-1.091241],[-45.96109,-1.107354],[-45.971913,-1.111098],[-45.976715,-1.119399],[-45.981597,-1.141534],[-45.971913,-1.136977],[-45.962758,-1.135431],[-45.954701,-1.136895],[-45.948069,-1.141534],[-45.960805,-1.146091],[-45.998891,-1.151788],[-46.002675,-1.192804],[-45.997955,-1.20143],[-45.986643,-1.204034],[-45.972971,-1.205255],[-45.96109,-1.210382],[-45.955719,-1.219985],[-45.955963,-1.240411],[-45.948069,-1.251397],[-45.939036,-1.24627],[-45.934478,-1.240004],[-45.934926,-1.232517],[-45.940663,-1.223403],[-45.936106,-1.222752],[-45.933013,-1.221124],[-45.930247,-1.219008],[-45.926381,-1.217218],[-45.930531,-1.200942],[-45.923329,-1.173028],[-45.910125,-1.140942],[-45.88989,-1.090745],[-45.867487,-1.063471],[-45.853842,-1.06786],[-45.853869,-1.101172],[-45.885243,-1.140883],[-45.890004,-1.154392],[-45.900217,-1.167576],[-45.905873,-1.17254],[-45.907216,-1.197524],[-45.905873,-1.210382],[-45.89802,-1.183038],[-45.891835,-1.172052],[-45.879221,-1.162693],[-45.882802,-1.178806],[-45.885365,-1.183201],[-45.872792,-1.202244],[-45.880605,-1.219415],[-45.894276,-1.237074],[-45.899648,-1.257582],[-45.87385,-1.235447],[-45.864858,-1.23089],[-45.864858,-1.237074],[-45.868479,-1.244236],[-45.864858,-1.251397],[-45.864858,-1.257582],[-45.87092,-1.26336],[-45.881459,-1.277602],[-45.885365,-1.284845],[-45.862538,-1.273126],[-45.846669,-1.257013],[-45.838368,-1.234308],[-45.838206,-1.202895],[-45.827382,-1.21852],[-45.820953,-1.241795],[-45.820546,-1.262791],[-45.827626,-1.271905],[-45.840566,-1.279555],[-45.834584,-1.297133],[-45.820953,-1.315688],[-45.810902,-1.32643],[-45.819488,-1.296157],[-45.809804,-1.275079],[-45.793691,-1.267673],[-45.782948,-1.278009],[-45.774322,-1.264255],[-45.768422,-1.228774],[-45.762441,-1.210382],[-45.747914,-1.204034],[-45.721588,-1.134942],[-45.701039,-1.134698],[-45.696034,-1.160577],[-45.727366,-1.225681],[-45.734527,-1.251397],[-45.728342,-1.251397],[-45.726918,-1.247003],[-45.721506,-1.237074],[-45.702952,-1.222356],[-45.688568,-1.202189],[-45.67965,-1.209955],[-45.675405,-1.229359],[-45.672698,-1.244101],[-45.675048,-1.25923],[-45.664589,-1.268551],[-45.654118,-1.27438],[-45.659571,-1.292992],[-45.651809,-1.299986],[-45.651054,-1.317441],[-45.656106,-1.333348],[-45.663484,-1.34654],[-45.670086,-1.35391],[-45.675535,-1.366316],[-45.640736,-1.370538],[-45.632314,-1.367364],[-45.621571,-1.357192],[-45.616363,-1.348321],[-45.611724,-1.334568],[-45.610463,-1.320082],[-45.615102,-1.309177],[-45.622955,-1.295994],[-45.619985,-1.284275],[-45.61026,-1.275649],[-45.598012,-1.271905],[-45.583241,-1.274347],[-45.579213,-1.281508],[-45.584625,-1.289158],[-45.598012,-1.292413],[-45.594106,-1.294122],[-45.591298,-1.295994],[-45.588246,-1.29754],[-45.58373,-1.298517],[-45.588002,-1.307061],[-45.589467,-1.314223],[-45.588124,-1.320733],[-45.58373,-1.32643],[-45.559804,-1.283136],[-45.543853,-1.270278],[-45.529693,-1.284845],[-45.542144,-1.284763],[-45.549387,-1.289727],[-45.551869,-1.299412],[-45.550201,-1.312188],[-45.545155,-1.309991],[-45.535512,-1.308282],[-45.529693,-1.305922],[-45.536733,-1.318617],[-45.545155,-1.327407],[-45.551015,-1.337498],[-45.550201,-1.353774],[-45.546376,-1.35117],[-45.536529,-1.346368],[-45.535715,-1.336847],[-45.525217,-1.324884],[-45.522857,-1.312188],[-45.515452,-1.312188],[-45.51179,-1.353692],[-45.512318,-1.36061],[-45.523427,-1.385675],[-45.529286,-1.404474],[-45.529693,-1.415785],[-45.513987,-1.403497],[-45.471344,-1.350193],[-45.468984,-1.343194],[-45.468495,-1.333673],[-45.466786,-1.323012],[-45.460805,-1.312188],[-45.453277,-1.307061],[-45.41983,-1.292413],[-45.447133,-1.292413],[-45.428375,-1.286798],[-45.415679,-1.287693],[-45.408518,-1.296808],[-45.406158,-1.316013],[-45.407216,-1.325372],[-45.411977,-1.342706],[-45.412994,-1.350193],[-45.417307,-1.354181],[-45.436025,-1.353285],[-45.440297,-1.357192],[-45.463043,-1.364923],[-45.468251,-1.367446],[-45.473053,-1.375665],[-45.473948,-1.383722],[-45.4735,-1.392185],[-45.474477,-1.401625],[-45.484527,-1.430108],[-45.486724,-1.447198],[-45.481313,-1.463637],[-45.504221,-1.458673],[-45.5183,-1.464532],[-45.542714,-1.490981],[-45.531077,-1.489679],[-45.522206,-1.484145],[-45.516835,-1.475274],[-45.515452,-1.463637],[-45.50178,-1.469985],[-45.496165,-1.48089],[-45.498647,-1.493341],[-45.509267,-1.504571],[-45.498402,-1.505141],[-45.491322,-1.503351],[-45.486195,-1.498712],[-45.481313,-1.490981],[-45.464508,-1.500584],[-45.461415,-1.51629],[-45.463124,-1.533136],[-45.460805,-1.546157],[-45.449127,-1.52809],[-45.448232,-1.50506],[-45.454579,-1.460056],[-45.451039,-1.453709],[-45.442494,-1.443129],[-45.432118,-1.433282],[-45.423329,-1.428888],[-45.41808,-1.433852],[-45.420318,-1.445001],[-45.426422,-1.456801],[-45.432932,-1.463637],[-45.423492,-1.45908],[-45.408518,-1.445489],[-45.40274,-1.44256],[-45.401275,-1.437921],[-45.385732,-1.412205],[-45.379547,-1.393731],[-45.35558,-1.349542],[-45.354644,-1.336358],[-45.360219,-1.320245],[-45.346832,-1.3117],[-45.326161,-1.312921],[-45.309967,-1.32643],[-45.307281,-1.336033],[-45.296295,-1.415785],[-45.306142,-1.411391],[-45.309967,-1.40838],[-45.322377,-1.436782],[-45.341868,-1.453058],[-45.365875,-1.465916],[-45.391957,-1.484145],[-45.385732,-1.490981],[-45.377838,-1.479425],[-45.369252,-1.472833],[-45.360178,-1.471775],[-45.350942,-1.476739],[-45.35851,-1.489353],[-45.365102,-1.503839],[-45.3697,-1.519627],[-45.371449,-1.535333],[-45.378733,-1.540785],[-45.392568,-1.548028],[-45.40095,-1.560154],[-45.391957,-1.580336],[-45.38622,-1.564386],[-45.384999,-1.555841],[-45.385732,-1.546157],[-45.351064,-1.559991],[-45.340199,-1.583185],[-45.343373,-1.611586],[-45.355377,-1.654229],[-45.361399,-1.668227],[-45.36559,-1.684747],[-45.364613,-1.703871],[-45.358876,-1.719415],[-45.350168,-1.730076],[-45.338368,-1.737888],[-45.323638,-1.744806],[-45.284413,-1.732192],[-45.27123,-1.721612],[-45.276479,-1.703871],[-45.262074,-1.695896],[-45.227895,-1.683038],[-45.221262,-1.672784],[-45.226308,-1.656508],[-45.24942,-1.624688],[-45.25536,-1.607599],[-45.247467,-1.579278],[-45.227284,-1.547459],[-45.204172,-1.52516],[-45.179677,-1.525649],[-45.175852,-1.500421],[-45.163197,-1.482843],[-45.148671,-1.481541],[-45.138661,-1.504571],[-45.131825,-1.504571],[-45.127675,-1.486993],[-45.115834,-1.477797],[-45.103424,-1.472589],[-45.097727,-1.467055],[-45.091379,-1.464125],[-45.08141,-1.471612],[-45.081207,-1.481134],[-45.104563,-1.484145],[-45.078928,-1.483575],[-45.071848,-1.470392],[-45.070668,-1.450291],[-45.062978,-1.428888],[-45.061513,-1.466404],[-45.056752,-1.476739],[-45.049713,-1.482192],[-45.038686,-1.487563],[-45.027211,-1.490167],[-45.01891,-1.487563],[-45.006744,-1.490655],[-44.996449,-1.508722],[-44.998036,-1.524021],[-45.021962,-1.518243],[-45.009674,-1.533298],[-44.995229,-1.535414],[-44.980458,-1.536065],[-44.967356,-1.546157],[-44.967356,-1.552423],[-44.984975,-1.561212],[-45.00536,-1.56756],[-45.020375,-1.578709],[-45.021962,-1.600844],[-45.015736,-1.600844],[-45.008941,-1.582696],[-44.995839,-1.581964],[-44.967356,-1.594008],[-44.97175,-1.57936],[-44.967275,-1.56463],[-44.959462,-1.549086],[-44.953725,-1.531915],[-44.953847,-1.501723],[-44.947133,-1.492771],[-44.926381,-1.490981],[-44.926381,-1.484145],[-44.933827,-1.484145],[-44.933827,-1.476739],[-44.915639,-1.468683],[-44.89509,-1.456231],[-44.878245,-1.441176],[-44.871205,-1.42547],[-44.868031,-1.421319],[-44.861195,-1.426935],[-44.85436,-1.437107],[-44.851308,-1.446222],[-44.849517,-1.476251],[-44.851308,-1.484145],[-44.856679,-1.489353],[-44.875722,-1.498468],[-44.885365,-1.504571],[-44.891469,-1.51214],[-44.897043,-1.528009],[-44.913075,-1.547947],[-44.919504,-1.562758],[-44.919789,-1.580336],[-44.912099,-1.600844],[-44.926259,-1.60117],[-44.943918,-1.597345],[-44.953725,-1.600844],[-44.93932,-1.611017],[-44.921742,-1.629571],[-44.915273,-1.647231],[-44.933827,-1.65545],[-44.918121,-1.657485],[-44.911936,-1.653578],[-44.903066,-1.624688],[-44.903717,-1.61712],[-44.900299,-1.609796],[-44.885365,-1.600844],[-44.873158,-1.612888],[-44.861155,-1.630141],[-44.847401,-1.64129],[-44.83019,-1.634942],[-44.847401,-1.629002],[-44.850697,-1.616143],[-44.845448,-1.600681],[-44.837026,-1.586602],[-44.844472,-1.586602],[-44.842397,-1.581476],[-44.840077,-1.577407],[-44.838043,-1.572849],[-44.837026,-1.566095],[-44.822906,-1.57586],[-44.814076,-1.591241],[-44.809967,-1.60947],[-44.810374,-1.628106],[-44.803619,-1.609308],[-44.802887,-1.600844],[-44.791819,-1.618422],[-44.795725,-1.63006],[-44.805084,-1.639744],[-44.810374,-1.652032],[-44.806386,-1.659438],[-44.787953,-1.673028],[-44.782379,-1.682794],[-44.78539,-1.684177],[-44.802887,-1.703871],[-44.795522,-1.710138],[-44.777496,-1.720636],[-44.773183,-1.724298],[-44.786366,-1.737726],[-44.794993,-1.742771],[-44.802887,-1.751642],[-44.807688,-1.748468],[-44.81078,-1.747735],[-44.824045,-1.751642],[-44.82315,-1.75628],[-44.821929,-1.75921],[-44.816518,-1.765313],[-44.773997,-1.740655],[-44.767812,-1.726983],[-44.775543,-1.703871],[-44.742055,-1.719496],[-44.724965,-1.723403],[-44.707875,-1.717462],[-44.720611,-1.749607],[-44.750844,-1.773126],[-44.810374,-1.805759],[-44.810374,-1.813165],[-44.795155,-1.80755],[-44.756825,-1.801853],[-44.744496,-1.796075],[-44.730458,-1.785821],[-44.723053,-1.791274],[-44.717356,-1.803481],[-44.707875,-1.813165],[-44.679351,-1.81113],[-44.662587,-1.785414],[-44.654652,-1.74977],[-44.652699,-1.717462],[-44.598012,-1.744806],[-44.614247,-1.753676],[-44.625234,-1.76336],[-44.632883,-1.775649],[-44.639027,-1.792657],[-44.640736,-1.808201],[-44.640614,-1.821873],[-44.644765,-1.83115],[-44.659535,-1.833591],[-44.659535,-1.839776],[-44.648997,-1.837009],[-44.63268,-1.828058],[-44.621002,-1.826104],[-44.612375,-1.829767],[-44.606801,-1.837498],[-44.602651,-1.844822],[-44.598012,-1.847263],[-44.591868,-1.840427],[-44.589223,-1.828871],[-44.584828,-1.817966],[-44.573232,-1.813165],[-44.565012,-1.818455],[-44.564443,-1.830743],[-44.569,-1.844415],[-44.576324,-1.854099],[-44.570139,-1.860935],[-44.562367,-1.850681],[-44.553822,-1.844415],[-44.546539,-1.837823],[-44.542836,-1.826104],[-44.535756,-1.82936],[-44.530181,-1.833754],[-44.525706,-1.839776],[-44.521718,-1.847263],[-44.537668,-1.864923],[-44.578236,-1.886814],[-44.590647,-1.901788],[-44.571156,-1.900567],[-44.53661,-1.89186],[-44.521718,-1.895115],[-44.513092,-1.904555],[-44.506663,-1.920099],[-44.502594,-1.937595],[-44.50121,-1.953383],[-44.499135,-1.961521],[-44.490224,-1.97796],[-44.488149,-1.987481],[-44.490224,-1.995375],[-44.4947,-2.000095],[-44.499135,-2.003839],[-44.50121,-2.008396],[-44.509592,-2.015558],[-44.528554,-2.017755],[-44.549387,-2.016046],[-44.563303,-2.011651],[-44.574574,-2.024021],[-44.588124,-2.030694],[-44.617299,-2.038995],[-44.61144,-2.039809],[-44.606801,-2.039809],[-44.602651,-2.041192],[-44.598012,-2.045831],[-44.580963,-2.034763],[-44.56135,-2.029555],[-44.541005,-2.029229],[-44.521718,-2.032322],[-44.504506,-2.031996],[-44.496246,-2.035577],[-44.494374,-2.045831],[-44.500559,-2.054457],[-44.53539,-2.080011],[-44.554067,-2.087172],[-44.578847,-2.122328],[-44.6079,-2.153741],[-44.639027,-2.148858],[-44.645253,-2.155694],[-44.632192,-2.159763],[-44.616444,-2.159356],[-44.603383,-2.157159],[-44.598012,-2.155694],[-44.588612,-2.16546],[-44.594309,-2.174249],[-44.617299,-2.189874],[-44.655426,-2.231134],[-44.676259,-2.239841],[-44.707875,-2.237563],[-44.701039,-2.244399],[-44.697499,-2.250421],[-44.693593,-2.265558],[-44.733266,-2.253351],[-44.751373,-2.252048],[-44.769683,-2.259698],[-44.784739,-2.27516],[-44.801178,-2.28574],[-44.824045,-2.279229],[-44.804311,-2.291436],[-44.759429,-2.274835],[-44.717844,-2.265558],[-44.707875,-2.299737],[-44.70051,-2.299737],[-44.693227,-2.285414],[-44.67927,-2.273858],[-44.665639,-2.270929],[-44.659535,-2.282647],[-44.661855,-2.296482],[-44.66747,-2.305271],[-44.674184,-2.312188],[-44.680002,-2.320896],[-44.6881,-2.343438],[-44.692128,-2.348077],[-44.704213,-2.358087],[-44.710846,-2.368341],[-44.715199,-2.392836],[-44.720937,-2.402114],[-44.714101,-2.408949],[-44.711293,-2.396905],[-44.707183,-2.388442],[-44.701405,-2.381768],[-44.674306,-2.360121],[-44.663971,-2.356703],[-44.659535,-2.364353],[-44.664703,-2.403985],[-44.663482,-2.420587],[-44.652699,-2.429457],[-44.655588,-2.42018],[-44.656239,-2.407485],[-44.654164,-2.394464],[-44.644032,-2.37477],[-44.645985,-2.366469],[-44.650258,-2.358819],[-44.652699,-2.351251],[-44.652252,-2.327895],[-44.64977,-2.30877],[-44.643544,-2.290785],[-44.631581,-2.271742],[-44.584828,-2.230157],[-44.573232,-2.224054],[-44.562245,-2.221775],[-44.554026,-2.216404],[-44.542836,-2.203546],[-44.545155,-2.204034],[-44.542836,-2.189874],[-44.539784,-2.185724],[-44.533274,-2.181085],[-44.529164,-2.176202],[-44.497304,-2.147882],[-44.461659,-2.144627],[-44.427113,-2.162367],[-44.398793,-2.197361],[-44.38976,-2.218357],[-44.38561,-2.23797],[-44.384511,-2.275567],[-44.381825,-2.277602],[-44.368967,-2.292739],[-44.364654,-2.299737],[-44.362457,-2.310317],[-44.363596,-2.333917],[-44.373402,-2.377374],[-44.382314,-2.394789],[-44.395375,-2.402114],[-44.430735,-2.406915],[-44.45344,-2.407485],[-44.473948,-2.402114],[-44.480214,-2.39658],[-44.490712,-2.383071],[-44.497792,-2.380466],[-44.500111,-2.379164],[-44.503814,-2.376397],[-44.507192,-2.373224],[-44.508656,-2.371189],[-44.51065,-2.36712],[-44.515452,-2.368829],[-44.520985,-2.372735],[-44.538075,-2.379653],[-44.551422,-2.391046],[-44.562978,-2.404718],[-44.570139,-2.416436],[-44.523346,-2.38714],[-44.507436,-2.389825],[-44.50121,-2.419529],[-44.510854,-2.469985],[-44.521596,-2.500095],[-44.53539,-2.518243],[-44.547109,-2.521417],[-44.556264,-2.519952],[-44.565175,-2.521173],[-44.576324,-2.532485],[-44.588043,-2.562188],[-44.59435,-2.566583],[-44.612945,-2.570245],[-44.637074,-2.579848],[-44.655995,-2.593194],[-44.659535,-2.608168],[-44.644765,-2.593032],[-44.599029,-2.573907],[-44.580068,-2.563572],[-44.571278,-2.552341],[-44.567454,-2.54225],[-44.561431,-2.535252],[-44.546254,-2.532485],[-44.540395,-2.538263],[-44.545033,-2.550551],[-44.552846,-2.562433],[-44.556508,-2.566583],[-44.607533,-2.669692],[-44.631581,-2.696954],[-44.625234,-2.706638],[-44.626943,-2.718845],[-44.639027,-2.744806],[-44.64623,-2.768243],[-44.647694,-2.787286],[-44.645253,-2.830743],[-44.650136,-2.854669],[-44.686147,-2.916681],[-44.687327,-2.924412],[-44.686147,-2.953871],[-44.687367,-2.965427],[-44.692494,-2.984633],[-44.693593,-2.994887],[-44.684316,-3.012628],[-44.662953,-3.017673],[-44.63976,-3.018976],[-44.624745,-3.025974],[-44.622222,-3.051039],[-44.63976,-3.069024],[-44.661733,-3.083266],[-44.672515,-3.097914],[-44.676747,-3.111749],[-44.686838,-3.120782],[-44.698476,-3.127862],[-44.707875,-3.135837],[-44.711822,-3.145115],[-44.717152,-3.168878],[-44.720937,-3.176853],[-44.74059,-3.186944],[-44.763051,-3.190688],[-44.781565,-3.196954],[-44.789215,-3.214614],[-44.787099,-3.233331],[-44.781158,-3.251723],[-44.772328,-3.269464],[-44.761301,-3.286065],[-44.79601,-3.300226],[-44.761586,-3.305597],[-44.753733,-3.289809],[-44.761301,-3.238214],[-44.755198,-3.220147],[-44.742787,-3.207452],[-44.725413,-3.199802],[-44.679555,-3.194024],[-44.659983,-3.184666],[-44.644358,-3.169692],[-44.631581,-3.149509],[-44.613596,-3.111993],[-44.600087,-3.104099],[-44.573232,-3.101658],[-44.529164,-3.032159],[-44.481923,-3.00742],[-44.473948,-3.001723],[-44.468617,-2.986586],[-44.432973,-2.950291],[-44.424184,-2.934503],[-44.415435,-2.913995],[-44.408844,-2.892185],[-44.406239,-2.872003],[-44.40807,-2.826349],[-44.404286,-2.804864],[-44.391957,-2.793145],[-44.395334,-2.789158],[-44.397084,-2.785333],[-44.399973,-2.781915],[-44.406239,-2.778904],[-44.370961,-2.667576],[-44.364654,-2.628676],[-44.361073,-2.636814],[-44.358551,-2.644627],[-44.35733,-2.652765],[-44.357818,-2.662774],[-44.350982,-2.662774],[-44.368072,-2.549574],[-44.357493,-2.536554],[-44.352651,-2.529067],[-44.345204,-2.525811],[-44.326487,-2.525079],[-44.312245,-2.531915],[-44.301869,-2.548028],[-44.28893,-2.580255],[-44.288238,-2.551446],[-44.291982,-2.539809],[-44.302602,-2.532485],[-44.299794,-2.521254],[-44.301096,-2.508477],[-44.300649,-2.494806],[-44.292633,-2.481052],[-44.278961,-2.475518],[-44.220082,-2.470392],[-44.11148,-2.415785],[-44.082875,-2.416436],[-44.072987,-2.399509],[-44.053049,-2.399998],[-44.034413,-2.415216],[-44.02892,-2.443048],[-44.046376,-2.438653],[-44.071401,-2.438084],[-44.092152,-2.443455],[-44.097157,-2.45672],[-44.069732,-2.46087],[-44.063629,-2.462986],[-44.060618,-2.471612],[-44.060129,-2.494887],[-44.056223,-2.505141],[-44.055653,-2.494317],[-44.054351,-2.486586],[-44.049387,-2.470392],[-44.0419,-2.470392],[-44.034332,-2.493341],[-44.032704,-2.513279],[-44.037465,-2.532403],[-44.049387,-2.552911],[-44.065541,-2.551365],[-44.082875,-2.560317],[-44.097157,-2.580255],[-44.103342,-2.583429],[-44.11026,-2.584731],[-44.117584,-2.587498],[-44.12442,-2.594496],[-44.106557,-2.602309],[-44.111073,-2.622003],[-44.137196,-2.67018],[-44.151031,-2.680108],[-44.167144,-2.68727],[-44.179677,-2.690118],[-44.19107,-2.688897],[-44.197825,-2.685154],[-44.213857,-2.669041],[-44.210317,-2.686456],[-44.206695,-2.692315],[-44.200185,-2.696954],[-44.212229,-2.707696],[-44.239858,-2.714532],[-44.251698,-2.721124],[-44.279937,-2.748305],[-44.285512,-2.752211],[-44.3131,-2.76214],[-44.33849,-2.784926],[-44.3485,-2.810235],[-44.329945,-2.827325],[-44.328359,-2.804132],[-44.322743,-2.785089],[-44.312489,-2.778741],[-44.296376,-2.793145],[-44.305531,-2.810235],[-44.310048,-2.814223],[-44.310048,-2.820489],[-44.296376,-2.834161],[-44.28893,-2.806817],[-44.284047,-2.805597],[-44.27717,-2.806899],[-44.271067,-2.807306],[-44.268463,-2.803399],[-44.267812,-2.790216],[-44.265492,-2.780532],[-44.261464,-2.772638],[-44.255442,-2.765313],[-44.246165,-2.774021],[-44.220082,-2.793145],[-44.226145,-2.776951],[-44.218373,-2.767755],[-44.186513,-2.759047],[-44.188547,-2.77809],[-44.174713,-2.807061],[-44.183095,-2.823907],[-44.191151,-2.829685],[-44.207021,-2.83587],[-44.213857,-2.840997],[-44.218861,-2.84824],[-44.218495,-2.851739],[-44.214101,-2.851739],[-44.207021,-2.848403],[-44.204945,-2.853448],[-44.202463,-2.857517],[-44.200551,-2.862074],[-44.200185,-2.86891],[-44.166656,-2.838067],[-44.15925,-2.827325],[-44.155873,-2.829522],[-44.154775,-2.829767],[-44.153961,-2.830499],[-44.151763,-2.834161],[-44.141469,-2.820408],[-44.132721,-2.803643],[-44.126698,-2.785903],[-44.12442,-2.768976],[-44.118072,-2.757745],[-44.106028,-2.749607],[-44.098134,-2.748712],[-44.104604,-2.759047],[-44.104604,-2.765313],[-44.092641,-2.761651],[-44.088979,-2.759047],[-44.082875,-2.752211],[-44.07665,-2.759047],[-44.079457,-2.76629],[-44.079661,-2.769301],[-44.078359,-2.772149],[-44.07665,-2.778904],[-44.074208,-2.772068],[-44.072621,-2.768976],[-44.069814,-2.765313],[-44.068674,-2.779067],[-44.071929,-2.789483],[-44.082875,-2.806817],[-44.068105,-2.79518],[-44.062856,-2.777032],[-44.063629,-2.734796],[-44.060374,-2.717706],[-44.05248,-2.701918],[-44.035715,-2.676446],[-44.022939,-2.648858],[-44.01415,-2.634698],[-43.983998,-2.615492],[-43.980458,-2.611586],[-43.975901,-2.610284],[-43.94636,-2.628676],[-43.94636,-2.62127],[-43.957753,-2.6124],[-43.958363,-2.600681],[-43.94636,-2.573989],[-43.932607,-2.555841],[-43.923248,-2.546808],[-43.919057,-2.549574],[-43.891754,-2.600518],[-43.878041,-2.634942],[-43.874379,-2.622817],[-43.877268,-2.611261],[-43.882232,-2.598565],[-43.884877,-2.583673],[-43.879465,-2.571222],[-43.853261,-2.55934],[-43.846316,-2.556338],[-43.838531,-2.556248],[-43.834055,-2.554946],[-43.827618,-2.551053],[-43.821384,-2.551054],[-43.815745,-2.551528],[-43.804921,-2.549249],[-43.78185,-2.532485],[-43.766957,-2.5263],[-43.752797,-2.524021],[-43.746409,-2.529229],[-43.738564,-2.517207],[-43.740102,-2.486912],[-43.72411,-2.477227],[-43.712514,-2.488539],[-43.706532,-2.513849],[-43.708567,-2.539727],[-43.721059,-2.552911],[-43.721059,-2.560317],[-43.713612,-2.560317],[-43.713612,-2.552911],[-43.706695,-2.552911],[-43.706695,-2.560317],[-43.69929,-2.560317],[-43.699127,-2.553643],[-43.697621,-2.549005],[-43.693105,-2.539321],[-43.684641,-2.54339],[-43.676747,-2.545587],[-43.658315,-2.546157],[-43.680979,-2.529555],[-43.682444,-2.504653],[-43.668446,-2.483331],[-43.644643,-2.477227],[-43.651967,-2.485447],[-43.657338,-2.49391],[-43.665761,-2.511977],[-43.652415,-2.501642],[-43.635732,-2.498305],[-43.621978,-2.505304],[-43.61734,-2.525079],[-43.597483,-2.516209],[-43.558176,-2.530857],[-43.542226,-2.525079],[-43.548451,-2.518243],[-43.560455,-2.519301],[-43.563059,-2.509535],[-43.558258,-2.495782],[-43.548451,-2.484633],[-43.548451,-2.505141],[-43.539133,-2.491143],[-43.536733,-2.478204],[-43.542104,-2.466567],[-43.555898,-2.45672],[-43.537343,-2.435968],[-43.523671,-2.442641],[-43.517486,-2.464939],[-43.52184,-2.491469],[-43.508412,-2.491632],[-43.499827,-2.524835],[-43.48705,-2.532485],[-43.494496,-2.546157],[-43.484202,-2.543715],[-43.476959,-2.537693],[-43.471547,-2.528904],[-43.466542,-2.518243],[-43.458363,-2.535089],[-43.45287,-2.552911],[-43.445627,-2.544854],[-43.444203,-2.530857],[-43.448069,-2.514825],[-43.465403,-2.486017],[-43.452504,-2.483819],[-43.418772,-2.491469],[-43.418772,-2.484633],[-43.435048,-2.482599],[-43.447255,-2.471612],[-43.455474,-2.456801],[-43.459788,-2.443048],[-43.45287,-2.443048],[-43.44811,-2.451918],[-43.438629,-2.45672],[-43.426096,-2.458185],[-43.411936,-2.45672],[-43.42809,-2.441664],[-43.474029,-2.417739],[-43.48705,-2.395278],[-43.482737,-2.379083],[-43.475292,-2.365923],[-43.467369,-2.353686],[-43.467373,-2.345767],[-43.454401,-2.341449],[-43.441429,-2.33929],[-43.426298,-2.33785],[-43.407565,-2.33713],[-43.385233,-2.340006],[-43.363621,-2.342883],[-43.340573,-2.345038],[-43.311766,-2.346467],[-43.251264,-2.367306],[-43.199395,-2.379511],[-43.118659,-2.416889],[-43.014027,-2.457208],[-42.943106,-2.481628],[-42.916305,-2.492437],[-42.882845,-2.510329],[-42.857908,-2.522172],[-42.823842,-2.543227],[-42.819163,-2.546157],[-42.810658,-2.548028],[-42.775054,-2.560317],[-42.765981,-2.561293],[-42.70995,-2.560317],[-42.700022,-2.563572],[-42.693105,-2.570408],[-42.687815,-2.577244],[-42.682281,-2.580255],[-42.672841,-2.589125],[-42.630483,-2.642348],[-42.580881,-2.672052],[-42.565582,-2.676446],[-42.555572,-2.677911],[-42.539296,-2.683282],[-42.527455,-2.683282],[-42.516347,-2.681085],[-42.487131,-2.669041],[-42.486236,-2.686782],[-42.489491,-2.69964],[-42.49828,-2.704197],[-42.514394,-2.696954],[-42.507639,-2.721856],[-42.49352,-2.731215],[-42.474436,-2.7374],[-42.452992,-2.752211],[-42.446034,-2.747003],[-42.427398,-2.738051],[-42.418121,-2.731134],[-42.411977,-2.738539],[-42.407338,-2.750177],[-42.378407,-2.75628],[-42.264272,-2.759047],[-42.254506,-2.766534],[-42.253977,-2.783461],[-42.259348,-2.802016],[-42.267405,-2.814223],[-42.238637,-2.804783],[-42.234202,-2.810724],[-42.23941,-2.834161],[-42.233266,-2.834161],[-42.22936,-2.822198],[-42.222239,-2.812433],[-42.213694,-2.804946],[-42.205922,-2.799981],[-42.193105,-2.809177],[-42.176137,-2.811782],[-42.159535,-2.809503],[-42.147572,-2.803399],[-42.082387,-2.799981],[-42.084462,-2.803969],[-42.08552,-2.80462],[-42.086822,-2.80462],[-42.089833,-2.806817],[-42.08373,-2.820977],[-42.082387,-2.827325],[-42.067738,-2.820001],[-42.04719,-2.821466],[-42.028879,-2.824965],[-42.020904,-2.823907],[-42.01594,-2.811293],[-42.004018,-2.812595],[-41.968984,-2.833673],[-41.955434,-2.839044],[-41.943918,-2.83766],[-41.939036,-2.823907],[-41.936757,-2.788018],[-41.940419,-2.773696],[-41.952707,-2.778904],[-41.958892,-2.778904],[-41.970611,-2.768243],[-42.001617,-2.74977],[-42.015314,-2.741134],[-42.010404,-2.727189],[-41.995623,-2.721435],[-41.900274,-2.725441],[-41.838565,-2.72948],[-41.821265,-2.733567],[-41.842844,-2.765313],[-41.842681,-2.765232],[-41.832102,-2.762465],[-41.823964,-2.75742],[-41.808705,-2.744806],[-41.778676,-2.782159],[-41.694056,-2.832882],[-41.665061,-2.855907],[-41.657826,-2.86891],[-41.663726,-2.865411],[-41.679311,-2.858168],[-41.68517,-2.854669],[-41.682851,-2.858005],[-41.678334,-2.86891],[-41.688344,-2.864923],[-41.698842,-2.862074],[-41.698842,-2.86891],[-41.686147,-2.875909],[-41.675038,-2.879571],[-41.66393,-2.877862],[-41.65099,-2.86891],[-41.639882,-2.884942],[-41.62328,-2.895603],[-41.601552,-2.9013],[-41.516957,-2.906996],[-41.489613,-2.903578],[-41.465443,-2.888767],[-41.454945,-2.897149],[-41.448557,-2.905938],[-41.448883,-2.916436],[-41.458608,-2.929783],[-41.4558,-2.930271],[-41.445546,-2.929783],[-41.447621,-2.933526],[-41.449452,-2.93613],[-41.450917,-2.938897],[-41.451772,-2.943455],[-41.444692,-2.943048],[-41.440053,-2.941664],[-41.431874,-2.936619],[-41.440053,-2.914239],[-41.422109,-2.908787],[-41.343088,-2.920343],[-41.335683,-2.922947],[-41.32901,-2.932224],[-41.32787,-2.941013],[-41.332102,-2.947442],[-41.341908,-2.950291],[-41.337514,-2.954522],[-41.327545,-2.961114],[-41.322011,-2.9638],[-41.316477,-2.96087],[-41.310658,-2.963474],[-41.305287,-2.969496],[-41.300933,-2.977634],[-41.294749,-2.977634],[-41.294749,-2.9638],[-41.273915,-2.980076],[-41.256459,-3.004815],[-41.248118,-3.012058],[-41.244537,-3.015232],[-41.240102,-2.988051],[-41.243276,-2.972752],[-41.256907,-2.949802],[-41.264027,-2.928399],[-41.282379,-2.915704],[-41.287262,-2.903009],[-41.296295,-2.907159],[-41.302887,-2.907892],[-41.308583,-2.906345],[-41.315256,-2.903009],[-41.299713,-2.896742],[-41.273427,-2.878839],[-41.256907,-2.875177],[-41.198557,-2.875177],[-41.167958,-2.878839],[-41.137766,-2.885837],[-41.110707,-2.897719],[-41.089263,-2.916681],[-41.082509,-2.916681],[-41.084625,-2.905206],[-41.089955,-2.894464],[-41.103017,-2.875177],[-41.089263,-2.882501],[-41.082509,-2.882501],[-40.938466,-2.86891],[-40.928131,-2.869806],[-40.908559,-2.8742],[-40.900014,-2.875177],[-40.891957,-2.873142],[-40.887929,-2.864028],[-40.879506,-2.862074],[-40.848988,-2.859308],[-40.841379,-2.864679],[-40.835439,-2.882501],[-40.828603,-2.882501],[-40.818349,-2.871677],[-40.769195,-2.846775],[-40.752919,-2.840997],[-40.581614,-2.827325],[-40.527415,-2.803399],[-40.509877,-2.799981],[-40.506744,-2.797947],[-40.499623,-2.78631],[-40.493153,-2.786716],[-40.488108,-2.788995],[-40.483713,-2.791681],[-40.479115,-2.793145],[-40.403066,-2.805922],[-40.273752,-2.806817],[-40.188059,-2.820489],[-40.175038,-2.82464],[-40.154775,-2.84352],[-40.143422,-2.848403],[-40.132436,-2.844008],[-40.126861,-2.834568],[-40.12092,-2.828383],[-40.108632,-2.834161],[-40.096344,-2.830743],[-40.082183,-2.836358],[-40.066762,-2.844415],[-40.050608,-2.848403],[-40.001047,-2.845636],[-39.985707,-2.848403],[-39.903066,-2.901788],[-39.872426,-2.909845],[-39.860911,-2.915704],[-39.807485,-2.967543],[-39.795888,-2.974705],[-39.783355,-2.977634],[-39.767323,-2.98561],[-39.743031,-3.003676],[-39.725942,-3.022393],[-39.731842,-3.032159],[-39.725494,-3.035333],[-39.719106,-3.03753],[-39.712229,-3.038995],[-39.704579,-3.039646],[-39.712026,-3.025974],[-39.697906,-3.017185],[-39.681549,-3.02044],[-39.643137,-3.039646],[-39.637685,-3.040623],[-39.618886,-3.039646],[-39.614898,-3.04225],[-39.610748,-3.055271],[-39.608306,-3.060154],[-39.571116,-3.090916],[-39.497141,-3.131117],[-39.485463,-3.145766],[-39.396718,-3.183526],[-39.383941,-3.186293],[-39.375396,-3.18613],[-39.367828,-3.184503],[-39.358266,-3.183526],[-39.352773,-3.186782],[-39.347524,-3.19378],[-39.340891,-3.20086],[-39.320465,-3.207615],[-39.286855,-3.232029],[-39.277943,-3.230401],[-39.272572,-3.232029],[-39.267405,-3.236423],[-39.264068,-3.241957],[-39.261586,-3.247654],[-39.258901,-3.251886],[-39.193715,-3.296808],[-39.165273,-3.322849],[-39.156484,-3.327569],[-39.14566,-3.329767],[-39.125803,-3.330499],[-39.115549,-3.334405],[-39.101308,-3.348565],[-39.092437,-3.36419],[-39.080556,-3.377048],[-39.0572,-3.382257],[-39.015492,-3.384047],[-38.999664,-3.388279],[-38.985178,-3.395929],[-38.960357,-3.418145],[-38.942738,-3.444594],[-38.916331,-3.50506],[-38.897206,-3.500258],[-38.88329,-3.507582],[-38.870595,-3.520685],[-38.855458,-3.532973],[-38.807485,-3.547296],[-38.78954,-3.573826],[-38.763051,-3.59824],[-38.732004,-3.619887],[-38.707102,-3.629164],[-38.694407,-3.636651],[-38.671132,-3.669041],[-38.659657,-3.676446],[-38.594716,-3.690688],[-38.526194,-3.718032],[-38.494374,-3.721287],[-38.477406,-3.697442],[-38.466542,-3.705499],[-38.457346,-3.718438],[-38.435943,-3.758396],[-38.409779,-3.793145],[-38.40331,-3.80934],[-38.395823,-3.84059],[-38.389272,-3.855157],[-38.378041,-3.869724],[-38.32079,-3.922784],[-38.310211,-3.92962],[-38.263499,-3.951593],[-38.251332,-3.961847],[-38.188547,-4.052016],[-38.106679,-4.157892],[-38.029612,-4.2374],[-37.93456,-4.307794],[-37.919423,-4.314548],[-37.854237,-4.375909],[-37.835072,-4.384942],[-37.81371,-4.39129],[-37.791249,-4.395196],[-37.768625,-4.396417],[-37.710805,-4.515395],[-37.683746,-4.548435],[-37.649403,-4.57879],[-37.607249,-4.608087],[-37.564361,-4.62949],[-37.537343,-4.638116],[-37.525299,-4.632582],[-37.513824,-4.623793],[-37.488026,-4.629978],[-37.427113,-4.661065],[-37.324818,-4.696466],[-37.292551,-4.71795],[-37.274403,-4.742364],[-37.231109,-4.842055],[-37.182932,-4.910903],[-37.134918,-4.93141],[-37.115142,-4.92197],[-37.098134,-4.920587],[-37.082428,-4.924493],[-37.049387,-4.937921],[-37.037465,-4.938735],[-37.011383,-4.93141],[-36.982981,-4.929783],[-36.898752,-4.938246],[-36.881012,-4.9485],[-36.847646,-4.985935],[-36.843495,-4.992852],[-36.833119,-4.997328],[-36.820709,-5.007745],[-36.810292,-5.020115],[-36.805979,-5.030043],[-36.790883,-5.051202],[-36.756581,-5.066827],[-36.719553,-5.075372],[-36.696116,-5.075453],[-36.695709,-5.089614],[-36.68224,-5.092218],[-36.641469,-5.089044],[-36.606923,-5.096368],[-36.589996,-5.10296],[-36.561147,-5.123224],[-36.544423,-5.127618],[-36.530914,-5.122735],[-36.52538,-5.105564],[-36.533681,-5.101007],[-36.570546,-5.091729],[-36.579986,-5.080987],[-36.545074,-5.089614],[-36.422353,-5.080987],[-36.339752,-5.089044],[-36.300038,-5.10117],[-36.281361,-5.104587],[-36.257232,-5.102146],[-36.257232,-5.09588],[-36.291982,-5.09588],[-36.291982,-5.089044],[-36.131215,-5.09588],[-36.113596,-5.091567],[-36.079091,-5.072361],[-36.042836,-5.064874],[-36.015981,-5.051039],[-35.997182,-5.04754],[-35.917592,-5.058282],[-35.768422,-5.086847],[-35.659413,-5.111261],[-35.581939,-5.11891],[-35.548818,-5.128351],[-35.510569,-5.143731],[-35.492909,-5.157403],[-35.454905,-5.196954],[-35.438588,-5.205173],[-35.420522,-5.211521],[-35.403798,-5.226495],[-35.390045,-5.244561],[-35.371205,-5.279067],[-35.362416,-5.300877],[-35.356028,-5.3235],[-35.353505,-5.345798],[-35.348622,-5.355645],[-35.318756,-5.383233],[-35.262278,-5.483331],[-35.253896,-5.524102],[-35.245269,-5.546157],[-35.23412,-5.566583],[-35.223134,-5.582615],[-35.230621,-5.5888],[-35.226064,-5.598565],[-35.206776,-5.668145],[-35.2058,-5.678806],[-35.195668,-5.689548],[-35.195221,-5.760024],[-35.187734,-5.773533],[-35.1787,-5.783461],[-35.171132,-5.796319],[-35.167958,-5.818455],[-35.171213,-5.833917],[-35.171539,-5.844334],[-35.167958,-5.856215],[-35.150136,-5.87477],[-35.14745,-5.876723],[-35.145823,-5.886814],[-35.14745,-5.921075],[-35.145334,-5.932061],[-35.135976,-5.945733],[-35.133778,-5.955255],[-35.129994,-5.959649],[-35.112213,-5.976658],[-35.106516,-5.986017],[-35.105051,-5.995538],[-35.106516,-6.027602],[-35.111684,-6.048517],[-35.111195,-6.057794],[-35.102773,-6.0617],[-35.099355,-6.066583],[-35.092844,-6.185805],[-35.120717,-6.164727],[-35.124989,-6.182794],[-35.14977,-6.206801],[-35.150868,-6.215997],[-35.134267,-6.224298],[-35.120107,-6.214614],[-35.107574,-6.199884],[-35.095937,-6.192071],[-35.087066,-6.197442],[-35.07787,-6.22088],[-35.068959,-6.22617],[-35.04894,-6.227227],[-35.041249,-6.230239],[-35.038197,-6.236505],[-35.036,-6.258559],[-35.026194,-6.298923],[-35.023915,-6.318048],[-35.02595,-6.333917],[-35.024241,-6.342869],[-35.017079,-6.35589],[-35.01061,-6.362888],[-34.996327,-6.371026],[-34.989166,-6.377618],[-34.982289,-6.391371],[-34.972279,-6.433364],[-34.958974,-6.536879],[-34.958485,-6.582615],[-34.96996,-6.617283],[-34.960805,-6.638849],[-34.957143,-6.6513],[-34.953277,-6.674737],[-34.947743,-6.684828],[-34.940989,-6.694431],[-34.93517,-6.705987],[-34.934926,-6.724216],[-34.940053,-6.744561],[-34.942738,-6.766209],[-34.93517,-6.787856],[-34.93517,-6.781671],[-34.916737,-6.86419],[-34.904164,-6.887302],[-34.893625,-6.894301],[-34.865712,-6.907159],[-34.860097,-6.914646],[-34.860097,-6.96266],[-34.862864,-6.976007],[-34.869252,-6.98268],[-34.87621,-6.986993],[-34.880605,-6.993341],[-34.881093,-7.004571],[-34.878163,-7.028009],[-34.880605,-7.041192],[-34.896352,-7.081313],[-34.894195,-7.082778],[-34.901845,-7.09059],[-34.907582,-7.093194],[-34.913482,-7.090509],[-34.921498,-7.082778],[-34.912221,-7.092706],[-34.907826,-7.104181],[-34.908518,-7.116876],[-34.914662,-7.130548],[-34.896067,-7.117446],[-34.87564,-7.095636],[-34.859364,-7.071466],[-34.852651,-7.05169],[-34.848785,-7.030206],[-34.836171,-6.991795],[-34.839589,-6.972914],[-34.825795,-6.98447],[-34.824208,-7.003351],[-34.832753,-7.041192],[-34.832753,-7.099786],[-34.827952,-7.13006],[-34.825307,-7.137384],[-34.818756,-7.14422],[-34.802113,-7.154067],[-34.797353,-7.158461],[-34.793609,-7.176202],[-34.796742,-7.192966],[-34.802073,-7.208754],[-34.804799,-7.223321],[-34.804799,-7.370782],[-34.814443,-7.444513],[-34.814605,-7.483819],[-34.804799,-7.514093],[-34.8155,-7.542576],[-34.819163,-7.548272],[-34.82429,-7.548517],[-34.833974,-7.543064],[-34.841624,-7.541762],[-34.880605,-7.541599],[-34.893381,-7.542901],[-34.897328,-7.543227],[-34.912668,-7.547784],[-34.928944,-7.555759],[-34.865468,-7.553399],[-34.835386,-7.562727],[-34.8314,-7.582438],[-34.820489,-7.599687],[-34.808949,-7.613702],[-34.805304,-7.622716],[-34.813004,-7.638518],[-34.819931,-7.653545],[-34.830304,-7.680888],[-34.837295,-7.679757],[-34.83727,-7.667087],[-34.839589,-7.655938],[-34.839589,-7.643813],[-34.843739,-7.650567],[-34.845448,-7.656996],[-34.845815,-7.671808],[-34.867828,-7.63242],[-34.873769,-7.617771],[-34.876047,-7.637302],[-34.86017,-7.685987],[-34.864368,-7.70523],[-34.876797,-7.702964],[-34.887257,-7.708382],[-34.899998,-7.718045],[-34.907216,-7.733819],[-34.887929,-7.723565],[-34.877531,-7.714503],[-34.86938,-7.714476],[-34.865876,-7.71754],[-34.869333,-7.72755],[-34.875899,-7.736417],[-34.884403,-7.74529],[-34.892096,-7.762618],[-34.893525,-7.804927],[-34.884944,-7.815663],[-34.848038,-7.822838],[-34.847227,-7.834376],[-34.84408,-7.848216],[-34.845815,-7.884698],[-34.832753,-7.857354],[-34.826487,-7.869236],[-34.817779,-7.893813],[-34.811635,-7.905857],[-34.817006,-7.913344],[-34.818837,-7.919041],[-34.816965,-7.924737],[-34.811635,-7.93255],[-34.821441,-7.952244],[-34.845774,-8.041681],[-34.845815,-8.059177],[-34.851186,-8.068617],[-34.863678,-8.070408],[-34.880605,-8.062758],[-34.900868,-8.042657],[-34.912668,-8.035414],[-34.928944,-8.034926],[-34.913442,-8.045505],[-34.90685,-8.052667],[-34.901031,-8.062758],[-34.897694,-8.074965],[-34.897572,-8.084893],[-34.895741,-8.093845],[-34.887359,-8.103774],[-34.883534,-8.096938],[-34.880605,-8.089532],[-34.881337,-8.105401],[-34.894195,-8.141371],[-34.90038,-8.17962],[-34.904164,-8.189386],[-34.920766,-8.214451],[-34.932118,-8.24212],[-34.938873,-8.272068],[-34.942616,-8.310235],[-34.94225,-8.337335],[-34.938588,-8.347101],[-34.939931,-8.350763],[-34.945912,-8.356703],[-34.952504,-8.364679],[-34.955678,-8.374444],[-34.957346,-8.382501],[-35.026235,-8.57586],[-35.069692,-8.662367],[-35.068959,-8.672296],[-35.08023,-8.681085],[-35.084218,-8.701267],[-35.086008,-8.740655],[-35.096506,-8.761489],[-35.127349,-8.806248],[-35.133778,-8.826918],[-35.138051,-8.871352],[-35.14745,-8.911879],[-35.188873,-8.990655],[-35.232249,-9.047784],[-35.260487,-9.114028],[-35.289418,-9.153578],[-35.305084,-9.193048],[-35.392161,-9.305759],[-35.414947,-9.323419],[-35.414947,-9.316583],[-35.437815,-9.328383],[-35.46231,-9.346612],[-35.482045,-9.367852],[-35.490102,-9.38893],[-35.493235,-9.404067],[-35.573638,-9.522719],[-35.58259,-9.532892],[-35.63036,-9.563653],[-35.657541,-9.577081],[-35.67512,-9.608657],[-35.696156,-9.672947],[-35.70934,-9.674574],[-35.719106,-9.67783],[-35.743316,-9.679783],[-35.752309,-9.682712],[-35.760854,-9.687107],[-35.778066,-9.700128],[-35.763051,-9.675714],[-35.749094,-9.659845],[-35.746246,-9.641778],[-35.765045,-9.610772],[-35.773427,-9.600356],[-35.786041,-9.588556],[-35.799916,-9.584731],[-35.812164,-9.597833],[-35.809885,-9.604587],[-35.795237,-9.629164],[-35.791737,-9.642185],[-35.791737,-9.669122],[-35.794911,-9.679132],[-35.801991,-9.684259],[-35.80899,-9.686944],[-35.853179,-9.731215],[-35.858144,-9.734552],[-35.868398,-9.718032],[-35.877105,-9.696954],[-35.877349,-9.686619],[-35.908437,-9.638767],[-35.905426,-9.62477],[-35.919586,-9.608087],[-35.941884,-9.599786],[-35.963043,-9.610772],[-35.951568,-9.627618],[-35.923207,-9.645766],[-35.908437,-9.659275],[-35.90217,-9.671157],[-35.878977,-9.7492],[-35.873647,-9.755466],[-35.860911,-9.760024],[-35.857411,-9.755304],[-35.856923,-9.747003],[-35.853179,-9.741143],[-35.819569,-9.735528],[-35.805572,-9.731052],[-35.798573,-9.720636],[-35.810618,-9.744806],[-35.86205,-9.794041],[-35.88268,-9.855645],[-35.90392,-9.878188],[-35.949371,-9.913181],[-35.973297,-9.965753],[-35.980377,-9.974542],[-35.992014,-9.980727],[-36.002187,-9.995538],[-36.036285,-10.064142],[-36.05012,-10.078546],[-36.090321,-10.093438],[-36.141184,-10.159438],[-36.251047,-10.248224],[-36.280507,-10.279962],[-36.288971,-10.297052],[-36.291982,-10.320245],[-36.290924,-10.332289],[-36.289174,-10.338962],[-36.288808,-10.344008],[-36.291982,-10.351983],[-36.40807,-10.50213],[-36.420766,-10.508722],[-36.457916,-10.52044],[-36.486073,-10.52337],[-36.504994,-10.527765],[-36.520131,-10.533787],[-36.538442,-10.543634],[-36.576568,-10.55047],[-36.581939,-10.553806],[-36.591786,-10.567804],[-36.59675,-10.570977],[-36.610911,-10.575128],[-36.768381,-10.672621],[-36.903066,-10.772882],[-36.952707,-10.836358],[-36.963368,-10.865411],[-36.978871,-10.886489],[-37.029368,-10.935642],[-37.039662,-10.949151],[-37.044423,-10.964451],[-37.045522,-10.985284],[-37.050445,-10.999607],[-37.124013,-11.11533],[-37.138295,-11.125909],[-37.147613,-11.121759],[-37.147043,-11.111993],[-37.142812,-11.100681],[-37.141713,-11.091729],[-37.146637,-11.085219],[-37.15217,-11.083673],[-37.157582,-11.080987],[-37.162221,-11.071384],[-37.169667,-11.071384],[-37.175689,-11.085707],[-37.185211,-11.074151],[-37.200063,-11.04339],[-37.206858,-11.039158],[-37.248525,-11.021661],[-37.258412,-11.019789],[-37.261545,-11.015232],[-37.268381,-11.016371],[-37.275136,-11.022719],[-37.278228,-11.03338],[-37.276112,-11.041762],[-37.270863,-11.053318],[-37.264312,-11.064386],[-37.258412,-11.071384],[-37.251576,-11.073012],[-37.244618,-11.070896],[-37.236887,-11.069594],[-37.227406,-11.074802],[-37.219309,-11.08115],[-37.211293,-11.08587],[-37.19636,-11.091729],[-37.19636,-11.098565],[-37.214223,-11.091729],[-37.220693,-11.096775],[-37.216786,-11.106134],[-37.203765,-11.112237],[-37.194447,-11.110528],[-37.190338,-11.10475],[-37.187815,-11.099542],[-37.182688,-11.098565],[-37.172678,-11.103123],[-37.165639,-11.108819],[-37.16393,-11.116388],[-37.169667,-11.125909],[-37.163319,-11.136163],[-37.164052,-11.170343],[-37.155385,-11.187433],[-37.155385,-11.181248],[-37.149159,-11.187433],[-37.172475,-11.203546],[-37.199452,-11.215265],[-37.221791,-11.229587],[-37.231109,-11.252862],[-37.235422,-11.260837],[-37.245351,-11.267022],[-37.256581,-11.272231],[-37.264638,-11.277439],[-37.269765,-11.284845],[-37.285756,-11.317071],[-37.316029,-11.406427],[-37.330068,-11.420668],[-37.374867,-11.429864],[-37.388092,-11.426935],[-37.389882,-11.419041],[-37.384429,-11.409438],[-37.384429,-11.401951],[-37.402455,-11.399672],[-37.374379,-11.3624],[-37.368276,-11.351251],[-37.362172,-11.324802],[-37.358306,-11.315851],[-37.347157,-11.303399],[-37.305572,-11.269952],[-37.294993,-11.258233],[-37.290517,-11.254327],[-37.272084,-11.249444],[-37.285878,-11.236993],[-37.288442,-11.208185],[-37.299387,-11.194757],[-37.303334,-11.219822],[-37.30309,-11.231215],[-37.299387,-11.242608],[-37.305572,-11.242608],[-37.324127,-11.208591],[-37.336781,-11.190525],[-37.344106,-11.184259],[-37.34789,-11.204197],[-37.319976,-11.24977],[-37.319203,-11.269952],[-37.325592,-11.263116],[-37.347157,-11.249444],[-37.346181,-11.261],[-37.341298,-11.267673],[-37.336049,-11.272882],[-37.333485,-11.28045],[-37.336293,-11.290134],[-37.343129,-11.292739],[-37.35204,-11.29339],[-37.360829,-11.296563],[-37.371449,-11.306329],[-37.37975,-11.317153],[-37.395579,-11.344985],[-37.408193,-11.395685],[-37.415395,-11.406427],[-37.429555,-11.405043],[-37.436269,-11.388767],[-37.443349,-11.351251],[-37.445668,-11.364435],[-37.451772,-11.370538],[-37.460439,-11.36891],[-37.470082,-11.358657],[-37.460357,-11.391778],[-37.453725,-11.403578],[-37.443349,-11.413263],[-37.401723,-11.428888],[-37.395579,-11.437433],[-37.405995,-11.470473],[-37.431386,-11.492852],[-37.462961,-11.50742],[-37.491851,-11.51629],[-37.474843,-11.520115],[-37.453847,-11.517673],[-37.432769,-11.511163],[-37.415395,-11.503188],[-37.401967,-11.490981],[-37.38976,-11.474379],[-37.37678,-11.460219],[-37.360829,-11.454848],[-37.368235,-11.47381],[-37.434722,-11.569268],[-37.509185,-11.72381],[-37.513417,-11.760675],[-37.522817,-11.776137],[-37.545766,-11.804376],[-37.604237,-11.949965],[-37.631744,-11.995294],[-37.654652,-12.049737],[-37.717641,-12.136407],[-37.78671,-12.264634],[-37.871175,-12.382263],[-37.93339,-12.475376],[-37.998525,-12.562188],[-38.050893,-12.641046],[-38.063466,-12.647231],[-38.073964,-12.653904],[-38.145497,-12.73504],[-38.213246,-12.820001],[-38.291371,-12.894952],[-38.320424,-12.935235],[-38.339996,-12.950291],[-38.361399,-12.961847],[-38.371938,-12.965265],[-38.394276,-12.968438],[-38.406117,-12.968845],[-38.416249,-12.973077],[-38.437001,-12.992364],[-38.464955,-13.002374],[-38.48644,-13.013767],[-38.509674,-13.021417],[-38.532704,-13.016534],[-38.538319,-13.004002],[-38.518381,-12.966892],[-38.507924,-12.931817],[-38.497792,-12.91839],[-38.486195,-12.915948],[-38.477406,-12.935235],[-38.479075,-12.915948],[-38.48705,-12.898858],[-38.4912,-12.882013],[-38.475657,-12.851658],[-38.480092,-12.842218],[-38.48766,-12.834731],[-38.49177,-12.82936],[-38.492299,-12.822442],[-38.49413,-12.817641],[-38.502268,-12.808282],[-38.504058,-12.804132],[-38.502268,-12.800551],[-38.499745,-12.796563],[-38.499135,-12.791192],[-38.508901,-12.722914],[-38.526967,-12.723077],[-38.542388,-12.721612],[-38.557485,-12.715509],[-38.57429,-12.701837],[-38.605946,-12.713637],[-38.62621,-12.702407],[-38.637603,-12.680759],[-38.64859,-12.63836],[-38.656158,-12.633722],[-38.667144,-12.634047],[-38.683461,-12.626723],[-38.694569,-12.614028],[-38.69518,-12.602797],[-38.691803,-12.589776],[-38.690989,-12.571466],[-38.697133,-12.571466],[-38.71581,-12.605076],[-38.722076,-12.622491],[-38.724477,-12.643487],[-38.724477,-12.671075],[-38.726308,-12.678888],[-38.730336,-12.682387],[-38.734975,-12.684503],[-38.738149,-12.687595],[-38.750966,-12.712823],[-38.750396,-12.724542],[-38.738149,-12.736586],[-38.777211,-12.80755],[-38.789947,-12.818536],[-38.795481,-12.821466],[-38.80663,-12.835138],[-38.813832,-12.839044],[-38.824452,-12.838149],[-38.835561,-12.828383],[-38.844879,-12.825942],[-38.855824,-12.816827],[-38.864003,-12.795099],[-38.882721,-12.722101],[-38.881174,-12.705336],[-38.869862,-12.692071],[-38.848012,-12.674493],[-38.861684,-12.654067],[-38.868479,-12.654067],[-38.863393,-12.669854],[-38.869862,-12.67783],[-38.882436,-12.684177],[-38.895823,-12.695001],[-38.903188,-12.709405],[-38.905832,-12.721775],[-38.910512,-12.731052],[-38.923695,-12.736586],[-38.914662,-12.748468],[-38.903676,-12.772393],[-38.895823,-12.784356],[-38.88801,-12.79046],[-38.8815,-12.791681],[-38.875356,-12.794529],[-38.868479,-12.804864],[-38.869211,-12.809015],[-38.86913,-12.820571],[-38.867014,-12.834649],[-38.861684,-12.84588],[-38.853993,-12.851251],[-38.834299,-12.86061],[-38.827504,-12.866957],[-38.812123,-12.853692],[-38.803619,-12.848728],[-38.797109,-12.849298],[-38.792795,-12.856703],[-38.788808,-12.866632],[-38.783681,-12.872979],[-38.77599,-12.87005],[-38.765452,-12.864679],[-38.752309,-12.864435],[-38.738026,-12.867934],[-38.724477,-12.873224],[-38.733713,-12.879571],[-38.736318,-12.882745],[-38.742177,-12.897149],[-38.746938,-12.904555],[-38.750803,-12.912774],[-38.752431,-12.924981],[-38.751332,-12.946384],[-38.752105,-12.957289],[-38.755849,-12.965427],[-38.767445,-12.979181],[-38.786855,-13.008071],[-38.800893,-13.024021],[-38.815541,-13.036716],[-38.835113,-13.050063],[-38.857086,-13.060642],[-38.879018,-13.064874],[-38.889272,-13.069757],[-38.895009,-13.080987],[-38.896881,-13.094659],[-38.895823,-13.106541],[-38.893381,-13.113458],[-38.88976,-13.118422],[-38.884145,-13.122328],[-38.875356,-13.126397],[-38.806996,-13.143813],[-38.810658,-13.153497],[-38.819569,-13.156671],[-38.830922,-13.15781],[-38.841786,-13.161228],[-38.851796,-13.168878],[-38.875356,-13.195408],[-38.931752,-13.233005],[-38.947621,-13.246759],[-38.957509,-13.264825],[-38.96349,-13.305841],[-38.970855,-13.325616],[-38.956858,-13.356622],[-38.954579,-13.372491],[-38.964711,-13.380304],[-38.989613,-13.363946],[-38.99885,-13.360447],[-39.009592,-13.360284],[-39.039784,-13.366632],[-39.037668,-13.357843],[-39.036977,-13.350193],[-39.037709,-13.341974],[-39.039784,-13.332452],[-39.062489,-13.399998],[-39.068227,-13.440606],[-39.060292,-13.47031],[-39.071034,-13.480076],[-39.079945,-13.495294],[-39.086008,-13.514093],[-39.088206,-13.534275],[-39.084218,-13.57879],[-39.09142,-13.593683],[-39.115549,-13.599379],[-39.115549,-13.606134],[-39.086659,-13.603936],[-39.077382,-13.59002],[-39.0808,-13.541111],[-39.075022,-13.517267],[-39.059682,-13.494806],[-39.037668,-13.484552],[-39.01183,-13.497003],[-39.007069,-13.504815],[-39.003163,-13.522556],[-38.995432,-13.534275],[-38.992991,-13.541111],[-38.996938,-13.547052],[-39.002675,-13.553481],[-39.005686,-13.561782],[-39.001943,-13.588067],[-38.992787,-13.60768],[-38.981435,-13.625746],[-38.970855,-13.647719],[-38.967844,-13.674005],[-38.975738,-13.69256],[-38.986562,-13.710219],[-38.992014,-13.733087],[-38.994211,-13.79461],[-38.992014,-13.81227],[-38.981842,-13.827569],[-38.97997,-13.83587],[-38.988596,-13.839532],[-39.001698,-13.83766],[-39.01122,-13.832452],[-39.029897,-13.815362],[-39.037343,-13.805352],[-39.040761,-13.794041],[-39.042877,-13.782322],[-39.04662,-13.771254],[-39.053578,-13.760919],[-39.06017,-13.755141],[-39.066965,-13.750421],[-39.074534,-13.743341],[-39.079579,-13.740981],[-39.083974,-13.741957],[-39.087026,-13.741143],[-39.091624,-13.71266],[-39.09968,-13.708917],[-39.110951,-13.708185],[-39.132558,-13.709242],[-39.141103,-13.719171],[-39.148752,-13.736912],[-39.144032,-13.744317],[-39.115549,-13.723565],[-39.110015,-13.731703],[-39.108266,-13.740411],[-39.110097,-13.749119],[-39.115549,-13.757582],[-39.071604,-13.779555],[-39.060292,-13.791762],[-39.043202,-13.826349],[-39.032135,-13.84059],[-38.997711,-13.851739],[-38.994456,-13.863458],[-38.999989,-13.875177],[-39.008778,-13.880548],[-39.034901,-13.879653],[-39.04894,-13.875909],[-39.067128,-13.867446],[-39.074534,-13.89422],[-39.071156,-13.90309],[-39.06371,-13.935805],[-39.057485,-13.937921],[-39.041249,-13.947198],[-39.021596,-13.955662],[-39.007395,-13.969659],[-38.996693,-13.98561],[-38.992014,-13.997247],[-38.992828,-14.009047],[-38.995595,-14.019138],[-38.995676,-14.029229],[-38.982818,-14.050714],[-38.979563,-14.06113],[-38.980824,-14.069513],[-38.988596,-14.072931],[-39.027903,-14.078302],[-39.039866,-14.075128],[-39.054067,-14.059259],[-39.071034,-14.076349],[-39.072865,-14.08587],[-39.060292,-14.099705],[-39.066803,-14.105645],[-39.072906,-14.115167],[-39.076243,-14.127374],[-39.074534,-14.140558],[-39.066721,-14.150079],[-39.055898,-14.155043],[-39.045644,-14.161391],[-39.039784,-14.175388],[-39.033599,-14.175388],[-39.057037,-14.133559],[-39.063385,-14.109959],[-39.043202,-14.099705],[-39.024281,-14.096856],[-39.002838,-14.089532],[-38.957265,-14.066095],[-38.959096,-14.057306],[-38.958363,-14.045994],[-38.959706,-14.036228],[-38.967844,-14.031915],[-38.972279,-14.026625],[-38.970693,-14.014825],[-38.964711,-13.997247],[-38.965321,-13.991957],[-38.969106,-13.98919],[-38.971425,-13.986261],[-38.967844,-13.980564],[-38.963043,-13.978285],[-38.952952,-13.976983],[-38.951039,-13.973565],[-38.95287,-13.962579],[-38.958079,-13.955987],[-38.966664,-13.952081],[-38.978342,-13.949395],[-38.975657,-13.945733],[-38.970855,-13.935805],[-38.987538,-13.939874],[-38.98998,-13.930841],[-38.983754,-13.916274],[-38.974599,-13.904474],[-38.963857,-13.897068],[-38.948883,-13.890313],[-38.935658,-13.88893],[-38.929921,-13.897638],[-38.929067,-13.983168],[-38.923695,-14.004083],[-38.946685,-14.102309],[-38.959299,-14.122166],[-38.964711,-14.133722],[-38.966868,-14.145929],[-38.968373,-14.170017],[-38.970855,-14.181573],[-38.989247,-14.212335],[-38.992014,-14.226658],[-38.992014,-14.267836],[-38.984202,-14.299412],[-38.985178,-14.312595],[-38.992096,-14.324965],[-39.000722,-14.335707],[-39.004994,-14.346856],[-38.99885,-14.360284],[-39.006947,-14.370294],[-39.007639,-14.383233],[-39.005605,-14.398207],[-39.005686,-14.414972],[-39.026112,-14.463311],[-39.033599,-14.539158],[-39.051422,-14.591974],[-39.056264,-14.622247],[-39.065582,-14.65488],[-39.067128,-14.674981],[-39.054067,-14.754083],[-39.050852,-14.765802],[-39.036733,-14.779474],[-39.033599,-14.79225],[-39.045644,-14.796075],[-39.052968,-14.801365],[-39.054067,-14.812188],[-39.048248,-14.818617],[-39.039215,-14.81756],[-39.029693,-14.81463],[-39.022694,-14.815851],[-39.026112,-14.857192],[-39.022939,-14.900323],[-39.008901,-14.97088],[-39.00182,-15.232029],[-38.979644,-15.323663],[-38.973256,-15.409356],[-38.943267,-15.565362],[-38.923899,-15.71559],[-38.904897,-15.757501],[-38.892405,-15.774998],[-38.88858,-15.782892],[-38.882721,-15.812677],[-38.877919,-15.822361],[-38.864369,-15.843357],[-38.861684,-15.854262],[-38.867014,-15.869724],[-38.890492,-15.904392],[-38.895823,-15.918878],[-38.898752,-15.940037],[-38.923695,-16.005141],[-38.924184,-16.023614],[-38.929555,-16.038344],[-38.944203,-16.066583],[-38.947865,-16.081476],[-38.952748,-16.167087],[-38.957265,-16.183282],[-38.998036,-16.252862],[-39.00536,-16.275079],[-39.00768,-16.299249],[-39.005686,-16.326593],[-39.006907,-16.359308],[-39.018381,-16.383071],[-39.054067,-16.436456],[-39.049631,-16.447035],[-39.050649,-16.45672],[-39.060292,-16.478123],[-39.092275,-16.65781],[-39.135976,-16.800226],[-39.135976,-16.844659],[-39.133778,-16.855727],[-39.121693,-16.878513],[-39.121571,-16.892022],[-39.123606,-16.897882],[-39.149648,-16.950453],[-39.168813,-17.075942],[-39.183746,-17.114923],[-39.202056,-17.14422],[-39.208608,-17.162205],[-39.217356,-17.295099],[-39.209055,-17.382094],[-39.190012,-17.430271],[-39.186269,-17.452081],[-39.188385,-17.578383],[-39.183746,-17.600844],[-39.166737,-17.633966],[-39.146962,-17.657159],[-39.137115,-17.67962],[-39.149648,-17.710707],[-39.258901,-17.820733],[-39.268219,-17.836521],[-39.271352,-17.846287],[-39.272572,-17.858575],[-39.275054,-17.866876],[-39.281361,-17.871026],[-39.289296,-17.874119],[-39.314198,-17.890313],[-39.382395,-17.903253],[-39.417836,-17.920994],[-39.450185,-17.948012],[-39.499094,-18.005629],[-39.624989,-18.192641],[-39.659413,-18.273614],[-39.672597,-18.323175],[-39.72468,-18.518731],[-39.744862,-18.681736],[-39.741078,-18.902114],[-39.719228,-19.090509],[-39.698069,-19.239923],[-39.701405,-19.376153],[-39.709788,-19.416111],[-39.786204,-19.601983],[-39.806996,-19.636163],[-39.834869,-19.657159],[-39.950999,-19.705173],[-40.009429,-19.747003],[-40.026845,-19.764418],[-40.083648,-19.89544],[-40.088124,-19.914483],[-40.097401,-19.930597],[-40.141672,-19.945571],[-40.157053,-19.958917],[-40.134429,-19.958917],[-40.131988,-19.971856],[-40.146474,-20.023045],[-40.153879,-20.027602],[-40.162668,-20.029555],[-40.170033,-20.033949],[-40.178619,-20.04339],[-40.17748,-20.058526],[-40.175404,-20.067315],[-40.166086,-20.086521],[-40.163889,-20.096124],[-40.165924,-20.10589],[-40.175404,-20.125258],[-40.190989,-20.189874],[-40.194895,-20.1985],[-40.202545,-20.207696],[-40.222768,-20.25156],[-40.232777,-20.266778],[-40.241526,-20.275567],[-40.244374,-20.27752],[-40.247222,-20.273533],[-40.256093,-20.263767],[-40.266184,-20.260512],[-40.273549,-20.267511],[-40.279937,-20.276951],[-40.286733,-20.28102],[-40.298085,-20.273696],[-40.293202,-20.24505],[-40.300404,-20.23268],[-40.316396,-20.22796],[-40.336049,-20.227634],[-40.369293,-20.23268],[-40.356191,-20.243341],[-40.350901,-20.256524],[-40.356557,-20.266371],[-40.376129,-20.266778],[-40.376129,-20.274184],[-40.371734,-20.275567],[-40.368723,-20.276951],[-40.361887,-20.28102],[-40.370473,-20.301039],[-40.365971,-20.323231],[-40.347878,-20.326206],[-40.323948,-20.324838],[-40.325392,-20.337532],[-40.3147,-20.334268],[-40.300649,-20.319431],[-40.28246,-20.314223],[-40.259511,-20.321466],[-40.275054,-20.333917],[-40.290639,-20.350681],[-40.30248,-20.370864],[-40.312652,-20.41725],[-40.336537,-20.455662],[-40.348744,-20.500095],[-40.396596,-20.569024],[-40.418324,-20.61533],[-40.433217,-20.628676],[-40.451283,-20.616876],[-40.475331,-20.637791],[-40.483632,-20.648207],[-40.524485,-20.715753],[-40.534413,-20.726739],[-40.55606,-20.743585],[-40.565175,-20.753025],[-40.583424,-20.801972],[-40.609399,-20.807289],[-40.619565,-20.833901],[-40.628438,-20.839218],[-40.633901,-20.829522],[-40.63683,-20.818943],[-40.641591,-20.808201],[-40.652089,-20.808038],[-40.662465,-20.812595],[-40.667226,-20.815525],[-40.701378,-20.835956],[-40.731725,-20.843838],[-40.746304,-20.852882],[-40.758463,-20.864194],[-40.760933,-20.882329],[-40.773085,-20.889108],[-40.779187,-20.9027],[-40.788931,-20.916285],[-40.801109,-20.930996],[-40.80848,-20.962725],[-40.807363,-20.997875],[-40.811382,-21.018848],[-40.814613,-21.036612],[-40.830678,-21.049249],[-40.839589,-21.068292],[-40.841664,-21.079278],[-40.846547,-21.094496],[-40.922349,-21.190464],[-40.95181,-21.238104],[-40.965118,-21.274021],[-40.965199,-21.274835],[-40.960072,-21.287367],[-40.959218,-21.303399],[-40.961293,-21.320245],[-40.965199,-21.335626],[-40.963503,-21.364503],[-40.983252,-21.391307],[-41.018164,-21.441724],[-41.04955,-21.469334],[-41.05724,-21.483819],[-41.071868,-21.523339],[-41.059346,-21.561045],[-41.018544,-21.608087],[-41.013539,-21.651544],[-41.024729,-21.71919],[-41.006744,-21.823419],[-40.967275,-21.947524],[-40.972646,-21.986749],[-40.995269,-22.014255],[-41.141265,-22.096775],[-41.243695,-22.145213],[-41.345693,-22.172052],[-41.465728,-22.202569],[-41.555165,-22.232354],[-41.666493,-22.281834],[-41.741363,-22.329034],[-41.770823,-22.354181],[-41.77595,-22.362563],[-41.778961,-22.380304],[-41.784495,-22.388604],[-41.802602,-22.402032],[-41.834828,-22.419529],[-41.84968,-22.433038],[-41.868479,-22.46852],[-41.873525,-22.473891],[-41.882558,-22.475844],[-41.89269,-22.480239],[-41.900868,-22.485772],[-41.904286,-22.490655],[-41.911977,-22.507989],[-41.930043,-22.519708],[-41.966298,-22.535414],[-41.986073,-22.564874],[-41.996205,-22.609308],[-41.998118,-22.657892],[-41.993031,-22.699884],[-41.9829,-22.716241],[-41.946889,-22.753595],[-41.939036,-22.765069],[-41.93456,-22.768731],[-41.924916,-22.761814],[-41.911041,-22.747166],[-41.901601,-22.743585],[-41.880035,-22.738865],[-41.870107,-22.734063],[-41.869781,-22.75213],[-41.876576,-22.762384],[-41.885325,-22.770603],[-41.890614,-22.782403],[-41.909576,-22.776625],[-41.922271,-22.78338],[-41.945221,-22.809747],[-41.97525,-22.821873],[-41.983062,-22.823419],[-41.989613,-22.826349],[-41.9912,-22.833673],[-41.991322,-22.842869],[-41.994781,-22.859796],[-41.995025,-22.868422],[-41.996897,-22.875258],[-42.00357,-22.878025],[-42.01415,-22.878839],[-42.019928,-22.88128],[-42.023671,-22.885675],[-42.027821,-22.892267],[-42.03307,-22.91253],[-42.030263,-22.93377],[-42.022694,-22.944513],[-42.013539,-22.933282],[-42.007314,-22.933282],[-42.002919,-22.947686],[-42.003733,-22.959161],[-42.013539,-22.981703],[-42.02717,-22.976251],[-42.04601,-22.957778],[-42.058217,-22.95379],[-42.174143,-22.950779],[-42.376129,-22.937433],[-42.531728,-22.934177],[-42.624257,-22.939548],[-42.656239,-22.945977],[-42.668609,-22.946954],[-42.67455,-22.949965],[-42.687082,-22.963637],[-42.695668,-22.966892],[-42.769358,-22.96852],[-42.862701,-22.977227],[-42.93224,-22.972101],[-43.031402,-22.974298],[-43.056508,-22.953302],[-43.073964,-22.94492],[-43.089752,-22.95379],[-43.101633,-22.942966],[-43.121449,-22.929946],[-43.130767,-22.91961],[-43.116363,-22.921157],[-43.110585,-22.922784],[-43.103424,-22.926446],[-43.091908,-22.917087],[-43.091298,-22.908298],[-43.099355,-22.901625],[-43.113637,-22.899102],[-43.129465,-22.894138],[-43.126536,-22.88242],[-43.11026,-22.86061],[-43.101715,-22.836521],[-43.081207,-22.814142],[-43.034535,-22.775567],[-43.052968,-22.777765],[-43.061147,-22.773858],[-43.061431,-22.765802],[-43.056264,-22.755141],[-43.034901,-22.74627],[-43.028391,-22.741469],[-43.025136,-22.735528],[-43.021474,-22.713556],[-43.02123,-22.704197],[-43.025136,-22.678969],[-43.028391,-22.67254],[-43.040924,-22.669366],[-43.065785,-22.671645],[-43.075551,-22.665704],[-43.083567,-22.671808],[-43.094797,-22.68727],[-43.103424,-22.693617],[-43.114858,-22.697686],[-43.122182,-22.697198],[-43.129547,-22.695001],[-43.141347,-22.693617],[-43.151845,-22.695977],[-43.176096,-22.707778],[-43.216705,-22.734063],[-43.236195,-22.734063],[-43.255605,-22.737074],[-43.270172,-22.747003],[-43.27538,-22.768162],[-43.271067,-22.788995],[-43.24059,-22.843927],[-43.233795,-22.843927],[-43.230621,-22.838556],[-43.22704,-22.835219],[-43.223459,-22.832696],[-43.220123,-22.829685],[-43.219228,-22.839532],[-43.215443,-22.846938],[-43.208852,-22.852716],[-43.199615,-22.857029],[-43.204457,-22.857599],[-43.207143,-22.859308],[-43.209462,-22.861749],[-43.213287,-22.864435],[-43.173329,-22.886977],[-43.162099,-22.895685],[-43.160634,-22.908624],[-43.163197,-22.927423],[-43.162465,-22.939711],[-43.151235,-22.933282],[-43.152211,-22.951104],[-43.170766,-22.969822],[-43.196767,-22.985935],[-43.220123,-22.995294],[-43.447581,-23.018162],[-43.496002,-23.03102],[-43.542226,-23.049412],[-43.548329,-23.054783],[-43.554351,-23.062188],[-43.560374,-23.067478],[-43.566518,-23.066339],[-43.577219,-23.051365],[-43.580068,-23.049412],[-43.620758,-23.042576],[-43.871897,-23.069757],[-43.914052,-23.069757],[-43.934722,-23.072686],[-43.950063,-23.080173],[-43.968984,-23.092706],[-43.988759,-23.097426],[-44.003733,-23.091078],[-44.008412,-23.069757],[-44.001454,-23.049249],[-43.987131,-23.041681],[-43.950063,-23.042576],[-43.940012,-23.045587],[-43.916331,-23.05641],[-43.905385,-23.055597],[-43.900461,-23.050063],[-43.891713,-23.021417],[-43.869008,-23.039646],[-43.832021,-23.047621],[-43.751129,-23.049412],[-43.669301,-23.037205],[-43.625478,-23.024021],[-43.603749,-23.007745],[-43.623606,-23.005629],[-43.646067,-22.99863],[-43.664418,-22.988458],[-43.671986,-22.97796],[-43.676666,-22.979669],[-43.687489,-22.978774],[-43.699127,-22.976658],[-43.706695,-22.974298],[-43.716379,-22.965753],[-43.728831,-22.945896],[-43.734039,-22.939548],[-43.748891,-22.93434],[-43.793528,-22.928155],[-43.802968,-22.929864],[-43.80899,-22.909763],[-43.824127,-22.907647],[-43.844106,-22.910577],[-43.864369,-22.905938],[-43.850168,-22.899102],[-43.850168,-22.892267],[-43.864369,-22.896173],[-43.89273,-22.909356],[-43.901967,-22.912205],[-43.953765,-22.91961],[-43.96642,-22.923435],[-43.995839,-22.9367],[-44.004709,-22.939548],[-44.012441,-22.945733],[-44.019765,-22.959161],[-44.030751,-22.971368],[-44.049387,-22.974298],[-44.042877,-22.958754],[-44.039174,-22.944106],[-44.042307,-22.935805],[-44.056223,-22.939548],[-44.062327,-22.948419],[-44.079742,-22.987237],[-44.089101,-22.993829],[-44.115102,-23.022393],[-44.127919,-23.028904],[-44.151763,-23.028904],[-44.157297,-23.031834],[-44.172922,-23.042576],[-44.180043,-23.045099],[-44.186391,-23.049005],[-44.190989,-23.048761],[-44.192738,-23.039158],[-44.196929,-23.033624],[-44.20637,-23.037856],[-44.220082,-23.049412],[-44.237294,-23.04697],[-44.242991,-23.042576],[-44.240468,-23.008966],[-44.241811,-22.999933],[-44.250478,-22.996189],[-44.271555,-22.995294],[-44.289622,-23.010919],[-44.298736,-23.012872],[-44.302602,-22.995294],[-44.317128,-23.002862],[-44.323842,-23.007908],[-44.329945,-23.015232],[-44.352651,-22.999282],[-44.354482,-22.986423],[-44.341542,-22.977472],[-44.319976,-22.974298],[-44.311838,-22.970147],[-44.311635,-22.961114],[-44.316884,-22.946954],[-44.320953,-22.94378],[-44.327626,-22.940118],[-44.328969,-22.934828],[-44.316884,-22.926446],[-44.325917,-22.921645],[-44.335927,-22.919366],[-44.346588,-22.918715],[-44.357818,-22.91961],[-44.351552,-22.935317],[-44.355702,-22.944431],[-44.364329,-22.95143],[-44.37149,-22.961196],[-44.375111,-22.955255],[-44.382192,-22.945977],[-44.384511,-22.939548],[-44.391754,-22.94199],[-44.394887,-22.943455],[-44.398793,-22.946954],[-44.411366,-22.937433],[-44.423248,-22.947931],[-44.439768,-22.981703],[-44.435658,-22.996759],[-44.457387,-23.009454],[-44.486643,-23.018243],[-44.534047,-23.025323],[-44.604237,-23.055597],[-44.602528,-23.05047],[-44.600575,-23.041111],[-44.598012,-23.03574],[-44.63036,-23.035089],[-44.6551,-23.043145],[-44.673207,-23.05934],[-44.70051,-23.10768],[-44.698476,-23.114516],[-44.694895,-23.120782],[-44.693186,-23.127374],[-44.702463,-23.144627],[-44.712148,-23.174981],[-44.714101,-23.186619],[-44.707997,-23.214614],[-44.68932,-23.211033],[-44.665761,-23.195245],[-44.645253,-23.186619],[-44.62678,-23.195245],[-44.673207,-23.229587],[-44.680002,-23.24863],[-44.670155,-23.238539],[-44.655995,-23.230401],[-44.640004,-23.227797],[-44.624745,-23.234959],[-44.639882,-23.250421],[-44.648752,-23.26214],[-44.652699,-23.272149],[-44.651357,-23.284763],[-44.647043,-23.28281],[-44.628163,-23.258233],[-44.613637,-23.243829],[-44.600575,-23.234308],[-44.583363,-23.229181],[-44.556508,-23.227472],[-44.564036,-23.239679],[-44.568471,-23.244399],[-44.576324,-23.24863],[-44.558258,-23.26336],[-44.53303,-23.267022],[-44.510569,-23.27337],[-44.50121,-23.296482],[-44.523793,-23.290704],[-44.541412,-23.303155],[-44.563303,-23.337335],[-44.583811,-23.353204],[-44.600982,-23.350193],[-44.616444,-23.342462],[-44.631581,-23.344822],[-44.647043,-23.338637],[-44.674428,-23.338067],[-44.704254,-23.342462],[-44.727162,-23.351007],[-44.727569,-23.352065],[-44.7329,-23.365818],[-44.747792,-23.370864],[-44.766184,-23.372979],[-44.782379,-23.379002],[-44.799794,-23.37127],[-44.813303,-23.37713],[-44.826975,-23.385431],[-44.844472,-23.385186],[-44.850453,-23.379002],[-44.853993,-23.369806],[-44.858551,-23.361505],[-44.868031,-23.357843],[-44.877431,-23.358168],[-44.884348,-23.35947],[-44.898508,-23.364679],[-44.891998,-23.340997],[-44.919301,-23.34881],[-44.952626,-23.368097],[-44.964223,-23.379002],[-44.969228,-23.381443],[-44.975697,-23.39422],[-44.981028,-23.399347],[-44.988149,-23.402032],[-45.001536,-23.403741],[-45.008372,-23.405532],[-45.02831,-23.416111],[-45.036244,-23.415623],[-45.04308,-23.405532],[-45.050771,-23.428155],[-45.039662,-23.438653],[-45.021637,-23.446466],[-45.008372,-23.46087],[-45.034739,-23.462091],[-45.05016,-23.473321],[-45.070424,-23.515395],[-45.08019,-23.497654],[-45.091786,-23.491876],[-45.097646,-23.497817],[-45.09024,-23.515395],[-45.101918,-23.512791],[-45.113393,-23.507745],[-45.124582,-23.500665],[-45.135243,-23.491876],[-45.147776,-23.4874],[-45.15217,-23.498793],[-45.150624,-23.516046],[-45.145497,-23.529067],[-45.164215,-23.533136],[-45.183217,-23.525974],[-45.200347,-23.523696],[-45.213735,-23.542739],[-45.203236,-23.561212],[-45.200673,-23.572035],[-45.210683,-23.576918],[-45.22289,-23.579197],[-45.251943,-23.59059],[-45.26415,-23.587498],[-45.278798,-23.573663],[-45.28954,-23.570082],[-45.301747,-23.574151],[-45.312408,-23.583754],[-45.321116,-23.59352],[-45.327056,-23.598077],[-45.348378,-23.604425],[-45.367787,-23.616632],[-45.388295,-23.624444],[-45.412994,-23.617852],[-45.417063,-23.629083],[-45.428456,-23.64186],[-45.432932,-23.652602],[-45.433502,-23.664727],[-45.428212,-23.68613],[-45.426666,-23.697035],[-45.423085,-23.710626],[-45.414906,-23.714776],[-45.405751,-23.715916],[-45.399403,-23.72088],[-45.398305,-23.734145],[-45.406117,-23.756117],[-45.40274,-23.765313],[-45.393056,-23.783461],[-45.394846,-23.803155],[-45.406606,-23.820408],[-45.426666,-23.830743],[-45.438873,-23.83172],[-45.448069,-23.829034],[-45.455963,-23.825616],[-45.464508,-23.823907],[-45.478505,-23.826349],[-45.498769,-23.836358],[-45.509267,-23.837579],[-45.528879,-23.829522],[-45.551991,-23.802423],[-45.574086,-23.796645],[-45.608022,-23.803155],[-45.618479,-23.802911],[-45.623036,-23.800388],[-45.627105,-23.792576],[-45.632151,-23.789809],[-45.651357,-23.789158],[-45.652659,-23.789809],[-45.717519,-23.770766],[-45.782948,-23.768731],[-45.79426,-23.765883],[-45.815541,-23.757257],[-45.823883,-23.75506],[-45.864369,-23.756443],[-45.955637,-23.777114],[-45.989003,-23.789809],[-46.007639,-23.800958],[-46.017974,-23.810235],[-46.026926,-23.828546],[-46.037465,-23.829034],[-46.060658,-23.823907],[-46.079742,-23.827813],[-46.098948,-23.837091],[-46.136301,-23.851739],[-46.137807,-23.849542],[-46.139231,-23.844415],[-46.146067,-23.844415],[-46.159535,-23.870538],[-46.179596,-23.890313],[-46.20523,-23.904474],[-46.235422,-23.912693],[-46.235422,-23.92018],[-46.213531,-23.919366],[-46.197377,-23.915704],[-46.183013,-23.907159],[-46.145497,-23.870782],[-46.131907,-23.864923],[-46.111928,-23.864923],[-46.149973,-23.905532],[-46.159739,-23.92018],[-46.164459,-23.935154],[-46.168324,-23.954685],[-46.169545,-23.972345],[-46.166493,-23.981622],[-46.175038,-23.990899],[-46.186635,-23.995375],[-46.196889,-23.99391],[-46.201283,-23.98504],[-46.207509,-23.979913],[-46.221099,-23.981703],[-46.23412,-23.986017],[-46.253041,-23.995864],[-46.26773,-24.010512],[-46.287668,-24.021173],[-46.317372,-24.016371],[-46.309926,-24.00156],[-46.28482,-23.992852],[-46.276357,-23.981622],[-46.277252,-23.967543],[-46.284576,-23.955987],[-46.292958,-23.946059],[-46.296864,-23.937188],[-46.299469,-23.925063],[-46.306996,-23.915297],[-46.318837,-23.908868],[-46.346181,-23.904962],[-46.357777,-23.900811],[-46.363759,-23.89422],[-46.358306,-23.886],[-46.358306,-23.878595],[-46.385406,-23.873468],[-46.389272,-23.886407],[-46.387359,-23.903985],[-46.396799,-23.912693],[-46.409291,-23.915948],[-46.41039,-23.923272],[-46.40803,-23.930597],[-46.40982,-23.933852],[-46.432688,-23.931736],[-46.453928,-23.926446],[-46.449574,-23.938409],[-46.440419,-23.94492],[-46.431304,-23.948175],[-46.427235,-23.95086],[-46.425608,-23.95672],[-46.416982,-23.97617],[-46.412953,-23.981622],[-46.401926,-23.984145],[-46.388295,-23.983982],[-46.37682,-23.985121],[-46.371938,-23.99212],[-46.37206,-24.015802],[-46.376047,-24.024509],[-46.386301,-24.030043],[-46.388092,-24.02158],[-46.391754,-24.016209],[-46.397817,-24.012465],[-46.406728,-24.008966],[-46.468984,-24.039972],[-46.593414,-24.089532],[-46.743072,-24.176853],[-46.85497,-24.228448],[-46.936635,-24.27337],[-46.966461,-24.299086],[-46.988922,-24.33115],[-46.999908,-24.366795],[-47.006337,-24.372003],[-47.009999,-24.376886],[-46.999501,-24.400567],[-46.999501,-24.409845],[-47.01537,-24.422947],[-47.035024,-24.431085],[-47.049794,-24.42783],[-47.051015,-24.406183],[-47.072092,-24.4485],[-47.08141,-24.453871],[-47.096913,-24.459405],[-47.122711,-24.483331],[-47.136342,-24.488702],[-47.181386,-24.53338],[-47.442047,-24.680434],[-47.454823,-24.67669],[-47.469065,-24.680922],[-47.496693,-24.693536],[-47.518463,-24.688084],[-47.531321,-24.688165],[-47.540761,-24.703383],[-47.559926,-24.71266],[-47.584706,-24.731622],[-47.63386,-24.755629],[-47.825551,-24.894138],[-47.841786,-24.909845],[-47.866607,-24.940606],[-47.873402,-24.945408],[-47.879872,-24.948663],[-47.886301,-24.953058],[-47.8933,-24.961114],[-47.933746,-25.033461],[-47.960561,-25.0499],[-48.009999,-25.044203],[-48.001698,-25.027927],[-47.988108,-25.025811],[-47.9735,-25.027602],[-47.962148,-25.023126],[-47.961171,-25.013116],[-47.972727,-25.009373],[-48.016916,-25.010837],[-48.02359,-25.015069],[-48.024403,-25.022393],[-48.02359,-25.033624],[-48.027008,-25.04518],[-48.034901,-25.048761],[-48.044179,-25.045505],[-48.051584,-25.036798],[-48.051625,-25.05283],[-48.03246,-25.063246],[-48.006459,-25.069106],[-47.986073,-25.070977],[-47.963002,-25.07822],[-47.949696,-25.080011],[-47.938303,-25.07464],[-47.927724,-25.065606],[-47.915354,-25.059503],[-47.901682,-25.056573],[-47.887074,-25.057306],[-47.921986,-25.158624],[-47.951772,-25.201349],[-48.003163,-25.214288],[-48.020009,-25.226332],[-48.068349,-25.280043],[-48.076283,-25.293227],[-48.082102,-25.307306],[-48.083363,-25.310317],[-48.091542,-25.325291],[-48.168284,-25.369236],[-48.173451,-25.381036],[-48.196523,-25.416925],[-48.209055,-25.457615],[-48.225087,-25.459731],[-48.241607,-25.448175],[-48.250152,-25.42783],[-48.247304,-25.410903],[-48.22289,-25.352146],[-48.221995,-25.343357],[-48.222157,-25.339125],[-48.219228,-25.334568],[-48.209218,-25.324151],[-48.201527,-25.318292],[-48.181264,-25.306817],[-48.137115,-25.289646],[-48.127309,-25.279962],[-48.140289,-25.269627],[-48.152577,-25.281996],[-48.174224,-25.290623],[-48.19872,-25.295343],[-48.219146,-25.296808],[-48.229604,-25.300388],[-48.242543,-25.315362],[-48.250152,-25.318048],[-48.259429,-25.313653],[-48.274322,-25.296563],[-48.284332,-25.289972],[-48.28307,-25.30641],[-48.283681,-25.316013],[-48.286285,-25.322849],[-48.297434,-25.341241],[-48.306752,-25.351007],[-48.318715,-25.35768],[-48.332753,-25.358331],[-48.319081,-25.324151],[-48.325307,-25.324151],[-48.33373,-25.329685],[-48.33552,-25.318617],[-48.33137,-25.270196],[-48.325754,-25.243829],[-48.325307,-25.228611],[-48.338002,-25.236749],[-48.351226,-25.250665],[-48.360992,-25.263767],[-48.363149,-25.269627],[-48.372629,-25.27158],[-48.37267,-25.276137],[-48.366282,-25.283868],[-48.364084,-25.283461],[-48.359364,-25.285577],[-48.354726,-25.289239],[-48.35261,-25.29339],[-48.353749,-25.29697],[-48.358876,-25.296808],[-48.360097,-25.300226],[-48.367421,-25.304783],[-48.383697,-25.29811],[-48.407216,-25.283868],[-48.414133,-25.273533],[-48.42394,-25.252211],[-48.43456,-25.242283],[-48.43456,-25.262791],[-48.442006,-25.262791],[-48.445058,-25.256606],[-48.447987,-25.253676],[-48.451283,-25.251723],[-48.455678,-25.248468],[-48.451975,-25.264744],[-48.428334,-25.324151],[-48.446604,-25.324477],[-48.478912,-25.331638],[-48.496571,-25.331638],[-48.496571,-25.338474],[-48.462636,-25.342869],[-48.445668,-25.347426],[-48.43456,-25.358331],[-48.452219,-25.368259],[-48.457428,-25.379653],[-48.451283,-25.385675],[-48.43456,-25.37949],[-48.430287,-25.389418],[-48.41686,-25.404392],[-48.414052,-25.410089],[-48.417836,-25.428318],[-48.42691,-25.432306],[-48.43814,-25.431248],[-48.44815,-25.434015],[-48.454254,-25.445896],[-48.456166,-25.459568],[-48.460194,-25.47088],[-48.472727,-25.475681],[-48.488149,-25.473891],[-48.497914,-25.468683],[-48.517079,-25.447035],[-48.526845,-25.45322],[-48.537424,-25.454522],[-48.548085,-25.452244],[-48.558013,-25.447035],[-48.562734,-25.459568],[-48.575063,-25.462009],[-48.623647,-25.44964],[-48.635365,-25.444594],[-48.683827,-25.412774],[-48.691396,-25.405694],[-48.730946,-25.359633],[-48.743031,-25.352146],[-48.740224,-25.367446],[-48.723134,-25.406671],[-48.718821,-25.422621],[-48.715688,-25.42783],[-48.710113,-25.433038],[-48.698964,-25.438165],[-48.695221,-25.440851],[-48.683583,-25.46266],[-48.68871,-25.473321],[-48.705556,-25.474379],[-48.72936,-25.468194],[-48.710846,-25.496352],[-48.683339,-25.498712],[-48.651438,-25.492771],[-48.620107,-25.496189],[-48.622385,-25.503106],[-48.624135,-25.506036],[-48.626943,-25.509698],[-48.63565,-25.503025],[-48.643056,-25.502374],[-48.649281,-25.507013],[-48.654286,-25.516534],[-48.642242,-25.521742],[-48.628285,-25.524509],[-48.615387,-25.529962],[-48.606435,-25.543878],[-48.595448,-25.527765],[-48.578196,-25.526056],[-48.558665,-25.527276],[-48.524037,-25.514825],[-48.505035,-25.523207],[-48.486073,-25.535903],[-48.469309,-25.543878],[-48.47936,-25.555108],[-48.4829,-25.558201],[-48.476145,-25.550714],[-48.490346,-25.56406],[-48.496938,-25.568536],[-48.503407,-25.571873],[-48.482493,-25.579848],[-48.471344,-25.572931],[-48.464345,-25.559991],[-48.455678,-25.550714],[-48.440419,-25.550063],[-48.424062,-25.554295],[-48.406321,-25.555108],[-48.386708,-25.543878],[-48.361195,-25.570977],[-48.388905,-25.595473],[-48.432729,-25.622491],[-48.517568,-25.770196],[-48.517079,-25.797133],[-48.535024,-25.839451],[-48.541005,-25.845473],[-48.558502,-25.840997],[-48.572418,-25.821547],[-48.586008,-25.81756],[-48.580678,-25.801853],[-48.578521,-25.797133],[-48.591786,-25.799005],[-48.603505,-25.802179],[-48.613149,-25.808038],[-48.620107,-25.81756],[-48.608266,-25.818617],[-48.599355,-25.822849],[-48.592193,-25.829278],[-48.586008,-25.838067],[-48.579905,-25.85117],[-48.583241,-25.854669],[-48.651235,-25.844496],[-48.743031,-25.851739],[-48.753041,-25.855076],[-48.762685,-25.859796],[-48.769439,-25.867364],[-48.770334,-25.879653],[-48.765777,-25.886651],[-48.758656,-25.883884],[-48.750478,-25.877211],[-48.743031,-25.872817],[-48.578521,-25.872817],[-48.571156,-25.869073],[-48.567006,-25.864435],[-48.563466,-25.865818],[-48.558013,-25.879653],[-48.556508,-25.891209],[-48.558583,-25.901788],[-48.578521,-25.961602],[-48.586008,-25.995782],[-48.604563,-26.02337],[-48.61266,-26.040623],[-48.609853,-26.054376],[-48.600087,-26.071222],[-48.582631,-26.157159],[-48.582916,-26.172621],[-48.592519,-26.183852],[-48.616689,-26.188165],[-48.634918,-26.194513],[-48.646148,-26.20908],[-48.655426,-26.225274],[-48.667877,-26.236017],[-48.687164,-26.237726],[-48.712229,-26.233575],[-48.733795,-26.224705],[-48.743031,-26.212091],[-48.745229,-26.189142],[-48.75064,-26.173598],[-48.76415,-26.147149],[-48.769032,-26.129815],[-48.770334,-26.109308],[-48.772532,-26.100681],[-48.78185,-26.090997],[-48.788645,-26.063409],[-48.796457,-26.068455],[-48.798004,-26.088067],[-48.784006,-26.113051],[-48.790517,-26.12477],[-48.791127,-26.135349],[-48.788197,-26.145115],[-48.784006,-26.153985],[-48.780019,-26.156915],[-48.773305,-26.159845],[-48.766957,-26.163995],[-48.76415,-26.171075],[-48.764394,-26.182061],[-48.763499,-26.187188],[-48.76065,-26.191583],[-48.756093,-26.203546],[-48.76415,-26.228204],[-48.76065,-26.239679],[-48.756215,-26.249444],[-48.759755,-26.257094],[-48.767934,-26.261977],[-48.77774,-26.263279],[-48.757314,-26.291192],[-48.770375,-26.289727],[-48.782094,-26.290948],[-48.791615,-26.295587],[-48.798248,-26.304864],[-48.757314,-26.311456],[-48.737701,-26.319106],[-48.72936,-26.335219],[-48.721791,-26.344822],[-48.659779,-26.370701],[-48.650787,-26.37656],[-48.643625,-26.384861],[-48.640614,-26.396742],[-48.639556,-26.408624],[-48.635854,-26.418552],[-48.62857,-26.425226],[-48.616689,-26.42783],[-48.6079,-26.4367],[-48.614247,-26.456801],[-48.664459,-26.556085],[-48.675445,-26.594659],[-48.683339,-26.662367],[-48.6822,-26.719171],[-48.678944,-26.731052],[-48.671132,-26.739435],[-48.626943,-26.770929],[-48.614898,-26.77044],[-48.592152,-26.76393],[-48.582265,-26.767511],[-48.577952,-26.776544],[-48.579213,-26.786554],[-48.58373,-26.794854],[-48.597727,-26.804457],[-48.609486,-26.819431],[-48.620473,-26.837172],[-48.626943,-26.852309],[-48.628774,-26.864841],[-48.626943,-26.897068],[-48.624827,-26.902765],[-48.615387,-26.912042],[-48.613271,-26.917739],[-48.614369,-26.923923],[-48.619049,-26.933038],[-48.620107,-26.937921],[-48.621327,-26.974379],[-48.620107,-26.982599],[-48.611195,-26.99391],[-48.601959,-26.997735],[-48.594838,-26.997328],[-48.592193,-26.99627],[-48.575185,-27.016209],[-48.577138,-27.032973],[-48.586537,-27.049574],[-48.596303,-27.086114],[-48.603749,-27.094415],[-48.607167,-27.104425],[-48.588043,-27.150649],[-48.579498,-27.158461],[-48.565175,-27.161391],[-48.551381,-27.158136],[-48.544749,-27.15016],[-48.540598,-27.140069],[-48.534413,-27.130466],[-48.516225,-27.120782],[-48.506907,-27.132501],[-48.496816,-27.149102],[-48.476145,-27.153985],[-48.483876,-27.165948],[-48.488881,-27.170668],[-48.496571,-27.175063],[-48.486969,-27.1985],[-48.485911,-27.210707],[-48.492909,-27.215997],[-48.50536,-27.218683],[-48.515981,-27.222345],[-48.524566,-27.221287],[-48.531361,-27.209161],[-48.516225,-27.206313],[-48.512603,-27.198175],[-48.5183,-27.188735],[-48.531361,-27.181899],[-48.54186,-27.182387],[-48.560374,-27.192966],[-48.568918,-27.195489],[-48.573354,-27.19964],[-48.606435,-27.223403],[-48.61441,-27.232029],[-48.618479,-27.238458],[-48.619985,-27.246677],[-48.620107,-27.260675],[-48.612904,-27.299493],[-48.609853,-27.305352],[-48.606597,-27.306329],[-48.572336,-27.312188],[-48.560943,-27.324965],[-48.55484,-27.342462],[-48.551869,-27.387302],[-48.562611,-27.372817],[-48.565541,-27.367446],[-48.571441,-27.376642],[-48.57551,-27.384942],[-48.577789,-27.393813],[-48.578521,-27.404718],[-48.581939,-27.416681],[-48.590484,-27.421645],[-48.601796,-27.424005],[-48.613271,-27.428318],[-48.626129,-27.436782],[-48.636952,-27.446954],[-48.644602,-27.460626],[-48.64745,-27.479587],[-48.609853,-27.558689],[-48.590159,-27.563653],[-48.579091,-27.576349],[-48.577504,-27.594008],[-48.586008,-27.613214],[-48.594553,-27.60117],[-48.614247,-27.6124],[-48.635121,-27.632582],[-48.64745,-27.647393],[-48.638051,-27.66131],[-48.631703,-27.679783],[-48.628082,-27.700128],[-48.626943,-27.719659],[-48.623891,-27.725274],[-48.610097,-27.741143],[-48.606435,-27.750421],[-48.611969,-27.752699],[-48.622467,-27.759942],[-48.629221,-27.767511],[-48.623525,-27.770929],[-48.618031,-27.778009],[-48.581939,-27.812758],[-48.572336,-27.825453],[-48.574086,-27.833429],[-48.581125,-27.836847],[-48.588694,-27.839044],[-48.592193,-27.84295],[-48.588246,-27.853611],[-48.579498,-27.856703],[-48.570424,-27.857517],[-48.565541,-27.860284],[-48.569692,-27.878025],[-48.599355,-27.916762],[-48.606435,-27.932306],[-48.616567,-27.990818],[-48.613271,-28.011163],[-48.609527,-28.017022],[-48.604807,-28.02158],[-48.600738,-28.028416],[-48.598988,-28.041599],[-48.602284,-28.050958],[-48.609527,-28.057712],[-48.616811,-28.062921],[-48.620107,-28.068536],[-48.621693,-28.076918],[-48.633168,-28.106703],[-48.640614,-28.147638],[-48.653717,-28.190199],[-48.655263,-28.212823],[-48.635894,-28.230157],[-48.651723,-28.247166],[-48.688385,-28.278009],[-48.691558,-28.28753],[-48.694895,-28.31227],[-48.695139,-28.336033],[-48.696401,-28.342055],[-48.724477,-28.371352],[-48.731068,-28.384454],[-48.743031,-28.422052],[-48.757395,-28.444594],[-48.763051,-28.456964],[-48.76065,-28.467055],[-48.756663,-28.477634],[-48.76122,-28.4874],[-48.770619,-28.491957],[-48.780873,-28.487481],[-48.794057,-28.470798],[-48.803456,-28.452325],[-48.807525,-28.431736],[-48.805043,-28.40838],[-48.794667,-28.392673],[-48.790883,-28.381524],[-48.79483,-28.370538],[-48.822133,-28.346287],[-48.835276,-28.33766],[-48.850575,-28.323663],[-48.864613,-28.320896],[-48.874013,-28.346287],[-48.87267,-28.358657],[-48.862294,-28.380466],[-48.859731,-28.39129],[-48.861928,-28.400567],[-48.871734,-28.409763],[-48.874013,-28.418878],[-48.869252,-28.42669],[-48.85851,-28.427341],[-48.846832,-28.426039],[-48.839223,-28.428888],[-48.83845,-28.437188],[-48.843007,-28.445733],[-48.84911,-28.454522],[-48.852895,-28.463637],[-48.854563,-28.471287],[-48.854888,-28.475274],[-48.851796,-28.479262],[-48.843007,-28.487481],[-48.808461,-28.504571],[-48.798695,-28.514337],[-48.789174,-28.521417],[-48.77774,-28.525079],[-48.769276,-28.517673],[-48.760894,-28.512791],[-48.749867,-28.511407],[-48.756093,-28.528416],[-48.765289,-28.543634],[-48.795969,-28.579522],[-48.807118,-28.600193],[-48.815338,-28.610447],[-48.825917,-28.615004],[-48.870513,-28.62005],[-48.884104,-28.623224],[-48.912465,-28.637872],[-48.940582,-28.64544],[-48.955393,-28.655694],[-48.976389,-28.675226],[-49.057037,-28.71852],[-49.342763,-28.923517],[-49.552317,-29.127374],[-49.713531,-29.324477],[-49.810658,-29.443129],[-49.86026,-29.528578],[-49.933583,-29.634373],[-49.997426,-29.764581],[-50.045318,-29.814548],[-50.206899,-30.201104],[-50.251373,-30.322849],[-50.315663,-30.461521],[-50.587636,-30.851007],[-50.593332,-30.871515],[-50.599517,-30.881443],[-50.721425,-31.044529],[-50.82844,-31.142673],[-50.883656,-31.219903],[-51.034576,-31.378025],[-51.151845,-31.481541],[-51.323964,-31.603936],[-51.563344,-31.777439],[-51.863515,-31.931736],[-51.889272,-31.95379],[-52.032623,-32.108982],[-52.068593,-32.162367],[-52.077382,-32.16725],[-52.084462,-32.146905],[-52.076894,-32.123793],[-52.053131,-32.087823],[-52.046702,-32.074314],[-52.03893,-32.051853],[-52.035756,-32.027927],[-52.042877,-32.009535],[-52.05663,-31.988377],[-52.045033,-31.976821],[-52.024729,-31.966974],[-52.012196,-31.950616],[-52.025868,-31.919692],[-52.087961,-31.858575],[-52.08727,-31.827813],[-52.048451,-31.808282],[-52.00182,-31.821547],[-51.92276,-31.868748],[-51.879994,-31.87127],[-51.836334,-31.854913],[-51.81371,-31.828383],[-51.834096,-31.80047],[-51.786041,-31.792087],[-51.743723,-31.794854],[-51.704498,-31.792739],[-51.666168,-31.769708],[-51.560211,-31.667576],[-51.5454,-31.639744],[-51.512563,-31.615981],[-51.505116,-31.598077],[-51.498687,-31.574884],[-51.48412,-31.58294],[-51.457265,-31.615492],[-51.447621,-31.612726],[-51.450999,-31.59531],[-51.46349,-31.557224],[-51.459096,-31.539321],[-51.448354,-31.51686],[-51.434967,-31.496515],[-51.422515,-31.485121],[-51.413482,-31.517836],[-51.377797,-31.526951],[-51.334543,-31.51922],[-51.303049,-31.502211],[-51.287831,-31.490004],[-51.256703,-31.472589],[-51.244985,-31.464044],[-51.210276,-31.416192],[-51.179596,-31.358982],[-51.158559,-31.286391],[-51.154775,-31.212091],[-51.176137,-31.149347],[-51.170155,-31.135349],[-51.162831,-31.09295],[-51.161855,-31.077732],[-51.153391,-31.067153],[-51.133901,-31.069594],[-51.097279,-31.080987],[-51.077992,-31.077895],[-51.047841,-31.06406],[-51.032786,-31.060642],[-51.013987,-31.062758],[-51.006418,-31.070489],[-51.005767,-31.1242],[-51.003163,-31.132908],[-50.994252,-31.136326],[-50.98351,-31.135024],[-50.975942,-31.130955],[-50.971506,-31.123305],[-50.970041,-31.111749],[-50.96467,-31.101251],[-50.95287,-31.095473],[-50.94107,-31.091892],[-50.935902,-31.087823],[-50.939931,-31.07643],[-50.94872,-31.074802],[-50.959584,-31.076267],[-50.970041,-31.074314],[-50.98766,-31.045587],[-50.977447,-31.008966],[-50.960113,-30.966974],[-50.95641,-30.922784],[-50.971832,-30.904067],[-50.978424,-30.893324],[-50.973744,-30.888604],[-50.963043,-30.889825],[-50.950063,-30.894952],[-50.93932,-30.896091],[-50.913889,-30.893324],[-50.895416,-30.885837],[-50.819569,-30.831313],[-50.779693,-30.823826],[-50.760121,-30.815118],[-50.743886,-30.803888],[-50.731068,-30.792413],[-50.692616,-30.726495],[-50.679433,-30.641697],[-50.689524,-30.464044],[-50.694692,-30.446059],[-50.713368,-30.40838],[-50.721099,-30.379083],[-50.726633,-30.370375],[-50.725657,-30.363051],[-50.70995,-30.354181],[-50.697174,-30.350763],[-50.689931,-30.353204],[-50.675852,-30.367852],[-50.645131,-30.392185],[-50.642649,-30.39837],[-50.646311,-30.404555],[-50.651845,-30.411391],[-50.654693,-30.419366],[-50.649892,-30.438572],[-50.638051,-30.457208],[-50.622629,-30.473728],[-50.607533,-30.485121],[-50.572174,-30.461114],[-50.565012,-30.450128],[-50.566721,-30.434259],[-50.572825,-30.409438],[-50.568674,-30.397638],[-50.555165,-30.378839],[-50.537262,-30.320408],[-50.536773,-30.294041],[-50.539866,-30.267511],[-50.545522,-30.251153],[-50.583363,-30.232029],[-50.587717,-30.226821],[-50.598378,-30.202407],[-50.603871,-30.19378],[-50.614817,-30.186212],[-50.6256,-30.183364],[-50.636627,-30.184991],[-50.648549,-30.190362],[-50.672475,-30.217055],[-50.675852,-30.217706],[-50.678293,-30.228204],[-50.676178,-30.231622],[-50.669586,-30.233982],[-50.658437,-30.241469],[-50.653432,-30.25156],[-50.655263,-30.261651],[-50.66218,-30.275486],[-50.671986,-30.288995],[-50.69518,-30.294366],[-50.761057,-30.291436],[-50.779124,-30.293227],[-50.793528,-30.302504],[-50.799387,-30.3235],[-50.857167,-30.317071],[-50.87442,-30.320082],[-50.897532,-30.310479],[-50.912994,-30.316664],[-50.922922,-30.333185],[-50.929067,-30.354181],[-50.932851,-30.380629],[-50.930287,-30.398614],[-50.915395,-30.436212],[-50.936391,-30.431573],[-50.984364,-30.395196],[-51.003896,-30.388116],[-51.021474,-30.383722],[-51.034088,-30.375665],[-51.03893,-30.357599],[-51.040273,-30.34352],[-51.038686,-30.338962],[-51.032786,-30.326918],[-51.026275,-30.317804],[-51.019399,-30.311293],[-51.013905,-30.304946],[-51.011627,-30.296157],[-51.014801,-30.278578],[-51.023101,-30.263767],[-51.034169,-30.25742],[-51.045766,-30.265395],[-51.052602,-30.265395],[-51.057607,-30.241876],[-51.079457,-30.237888],[-51.103383,-30.243259],[-51.114654,-30.248142],[-51.122548,-30.256036],[-51.140777,-30.247491],[-51.176137,-30.224542],[-51.171457,-30.209405],[-51.180491,-30.200372],[-51.210276,-30.190362],[-51.219228,-30.188897],[-51.226877,-30.190199],[-51.233022,-30.189874],[-51.237538,-30.183526],[-51.235585,-30.178155],[-51.221262,-30.164972],[-51.217112,-30.156345],[-51.220367,-30.136407],[-51.231597,-30.12477],[-51.244049,-30.116876],[-51.25121,-30.107843],[-51.250478,-30.091567],[-51.238881,-30.058526],[-51.237538,-30.039646],[-51.259348,-30.046808],[-51.262807,-30.032973],[-51.262074,-30.013767],[-51.271718,-30.004815],[-51.283518,-30.00742],[-51.285268,-30.012628],[-51.283803,-30.020766],[-51.285959,-30.032159],[-51.303619,-30.063409],[-51.306467,-30.070245],[-51.30427,-30.076267],[-51.299306,-30.078871],[-51.294342,-30.080743],[-51.292144,-30.083917],[-51.293324,-30.090102],[-51.298451,-30.099705],[-51.299631,-30.104669],[-51.300038,-30.127048],[-51.30309,-30.136326],[-51.31017,-30.145685],[-51.313954,-30.154555],[-51.312164,-30.165134],[-51.308502,-30.176202],[-51.306467,-30.186944],[-51.308909,-30.197361],[-51.326975,-30.224542],[-51.316518,-30.223321],[-51.298655,-30.218845],[-51.289052,-30.217706],[-51.28246,-30.221368],[-51.264882,-30.244887],[-51.292144,-30.271661],[-51.280629,-30.287367],[-51.247182,-30.29754],[-51.237538,-30.313246],[-51.228139,-30.307061],[-51.208648,-30.288751],[-51.204091,-30.285333],[-51.197174,-30.294692],[-51.195302,-30.309015],[-51.196604,-30.337172],[-51.187734,-30.360121],[-51.166127,-30.36297],[-51.114654,-30.347345],[-51.093414,-30.344985],[-51.090647,-30.351983],[-51.096303,-30.366143],[-51.100413,-30.385349],[-51.104726,-30.393243],[-51.114817,-30.401056],[-51.126373,-30.406996],[-51.135121,-30.409438],[-51.141103,-30.40781],[-51.15331,-30.398614],[-51.161855,-30.395196],[-51.200429,-30.399835],[-51.229482,-30.425877],[-51.250478,-30.462335],[-51.277943,-30.540134],[-51.286977,-30.581638],[-51.290191,-30.624444],[-51.285959,-30.66961],[-51.267568,-30.734959],[-51.264882,-30.755548],[-51.269683,-30.781834],[-51.281728,-30.796563],[-51.297678,-30.795343],[-51.313954,-30.773207],[-51.289459,-30.767348],[-51.291168,-30.739923],[-51.313954,-30.68377],[-51.322499,-30.642185],[-51.332834,-30.636407],[-51.357981,-30.635431],[-51.377105,-30.642267],[-51.38329,-30.658868],[-51.381581,-30.7763],[-51.378774,-30.794122],[-51.365468,-30.832289],[-51.361073,-30.854587],[-51.361887,-30.879164],[-51.370717,-30.886489],[-51.412587,-30.882501],[-51.437123,-30.883884],[-51.455434,-30.889418],[-51.468617,-30.901625],[-51.477773,-30.922784],[-51.485707,-30.967055],[-51.484202,-31.012953],[-51.470815,-31.053318],[-51.443023,-31.080987],[-51.569692,-31.119561],[-51.590688,-31.122003],[-51.623606,-31.135349],[-51.642974,-31.167087],[-51.650868,-31.205499],[-51.649037,-31.238702],[-51.637603,-31.250258],[-51.637522,-31.256524],[-51.652821,-31.25921],[-51.663401,-31.257257],[-51.674306,-31.253676],[-51.684722,-31.25213],[-51.693756,-31.255792],[-51.712554,-31.265883],[-51.735015,-31.269138],[-51.779408,-31.266046],[-51.795888,-31.267022],[-51.818959,-31.272231],[-51.839467,-31.282159],[-51.856923,-31.311212],[-51.877553,-31.311212],[-51.902089,-31.306736],[-51.92276,-31.306899],[-51.92748,-31.311456],[-51.9322,-31.318536],[-51.940012,-31.325128],[-51.953847,-31.328058],[-51.963531,-31.332289],[-51.963694,-31.341729],[-51.957265,-31.35117],[-51.947336,-31.355401],[-51.94286,-31.359308],[-51.951405,-31.368097],[-51.98766,-31.392511],[-51.99352,-31.398207],[-51.998525,-31.409356],[-52.001617,-31.429132],[-51.998525,-31.495375],[-51.999827,-31.507013],[-52.00475,-31.527927],[-52.00475,-31.539727],[-52.000803,-31.551202],[-51.988393,-31.565362],[-51.984853,-31.573907],[-52.001536,-31.624282],[-52.00475,-31.639744],[-52.007924,-31.646173],[-52.014882,-31.637465],[-52.025868,-31.615492],[-52.030181,-31.589125],[-52.032623,-31.581313],[-52.040151,-31.570245],[-52.045969,-31.566339],[-52.052724,-31.56406],[-52.0631,-31.557224],[-52.073232,-31.554295],[-52.083323,-31.558689],[-52.091054,-31.56756],[-52.094106,-31.577569],[-52.089955,-31.606134],[-52.079091,-31.61004],[-52.063791,-31.605239],[-52.046295,-31.608087],[-52.041249,-31.622654],[-52.049143,-31.643976],[-52.063344,-31.66546],[-52.077382,-31.680597],[-52.095774,-31.691095],[-52.203725,-31.727309],[-52.218617,-31.740655],[-52.224477,-31.762465],[-52.222239,-31.774347],[-52.212392,-31.794122],[-52.210194,-31.80047],[-52.213043,-31.809259],[-52.219065,-31.817966],[-52.224192,-31.82822],[-52.224477,-31.841404],[-52.245595,-31.840997],[-52.248443,-31.861993],[-52.235707,-31.879653],[-52.210194,-31.868748],[-52.186676,-31.894789],[-52.183502,-31.900079],[-52.178863,-31.902765],[-52.156809,-31.906915],[-52.149322,-31.909763],[-52.142445,-31.91546],[-52.136098,-31.92254],[-52.13386,-31.930841],[-52.139068,-31.940525],[-52.146962,-31.941827],[-52.169789,-31.936456],[-52.180043,-31.940525],[-52.197255,-31.949965],[-52.218984,-31.957208],[-52.23766,-31.966404],[-52.245595,-31.982029],[-52.248118,-32.019138],[-52.252065,-32.038181],[-52.258616,-32.053643],[-52.229237,-32.050714],[-52.211171,-32.056736],[-52.211659,-32.067966],[-52.238108,-32.080987],[-52.213979,-32.086114],[-52.182118,-32.079034],[-52.154408,-32.065118],[-52.142486,-32.050226],[-52.137115,-32.037774],[-52.124094,-32.029474],[-52.108225,-32.025567],[-52.094106,-32.026462],[-52.08141,-32.031996],[-52.081451,-32.037693],[-52.097808,-32.050226],[-52.14745,-32.077895],[-52.168935,-32.100681],[-52.156158,-32.122654],[-52.139719,-32.119073],[-52.102854,-32.079685],[-52.08727,-32.067315],[-52.100575,-32.106215],[-52.101552,-32.122654],[-52.091176,-32.153904],[-52.091176,-32.166111],[-52.127431,-32.177504],[-52.228627,-32.251072],[-52.253407,-32.282485],[-52.375315,-32.498712],[-52.443186,-32.685968],[-52.470855,-32.800958],[-52.621693,-33.101983],[-52.644887,-33.136977],[-52.744049,-33.2492],[-52.819488,-33.322524],[-52.920888,-33.403009],[-53.091664,-33.527276],[-53.194407,-33.619724],[-53.266347,-33.67669],[-53.378814,-33.740492],[-53.379058,-33.740655],[-53.379095,-33.740676],[-53.411283,-33.74228],[-53.423634,-33.731015],[-53.430817,-33.713445],[-53.440428,-33.697115],[-53.456707,-33.687503],[-53.473191,-33.6874],[-53.491071,-33.690294],[-53.511535,-33.690294],[-53.539647,-33.649263],[-53.536805,-33.559863],[-53.514016,-33.394911],[-53.536133,-33.244636],[-53.536857,-33.170842],[-53.520662,-33.124979],[-53.511639,-33.099426],[-53.511587,-33.099322],[-53.511535,-33.099219],[-53.48332,-33.067283],[-53.44911,-33.042065],[-53.327309,-32.973645],[-53.316302,-32.96269],[-53.309584,-32.944396],[-53.307,-32.907189],[-53.298835,-32.889102],[-53.270826,-32.863781],[-53.203854,-32.82244],[-53.182836,-32.799904],[-53.163081,-32.778722],[-53.126856,-32.754847],[-53.11404,-32.740584],[-53.110836,-32.722394],[-53.119776,-32.707408],[-53.186129,-32.64674],[-53.201477,-32.637232],[-53.233723,-32.624622],[-53.266899,-32.607363],[-53.299093,-32.607156],[-53.316043,-32.602712],[-53.35909,-32.580284],[-53.415624,-32.564161],[-53.474638,-32.508247],[-53.537632,-32.470213],[-53.5613,-32.449543],[-53.58197,-32.425772],[-53.59892,-32.399933],[-53.609307,-32.387841],[-53.634783,-32.368721],[-53.643879,-32.355595],[-53.648684,-32.338645],[-53.651837,-32.288312],[-53.658555,-32.254309],[-53.670595,-32.226404],[-53.721445,-32.162428],[-53.750022,-32.104034],[-53.751366,-32.068791],[-53.757308,-32.055045],[-53.771829,-32.047087],[-53.83043,-32.036441],[-53.858077,-32.021197],[-53.8711,-32.011482],[-53.881435,-32.00125],[-53.887275,-31.990501],[-53.889755,-31.980372],[-53.894148,-31.97014],[-53.905826,-31.959288],[-53.934352,-31.942545],[-53.948769,-31.936964],[-53.965978,-31.93252],[-53.998896,-31.92973],[-54.008714,-31.926526],[-54.017706,-31.919601],[-54.026646,-31.904821],[-54.03264,-31.898104],[-54.049745,-31.887148],[-54.068814,-31.879913],[-54.088451,-31.878156],[-54.107313,-31.883944],[-54.125503,-31.898517],[-54.135063,-31.908956],[-54.146277,-31.909886],[-54.169583,-31.895933],[-54.218779,-31.856659],[-54.274228,-31.823379],[-54.342957,-31.769326],[-54.373498,-31.73894],[-54.403677,-31.714652],[-54.436492,-31.694292],[-54.463725,-31.671864],[-54.467221,-31.664237],[-54.477368,-31.642098],[-54.47897,-31.601481],[-54.483155,-31.583911],[-54.495041,-31.565617],[-54.509665,-31.552285],[-54.562375,-31.515905],[-54.573848,-31.502469],[-54.591521,-31.471049],[-54.604543,-31.459784],[-54.619685,-31.45565],[-54.654127,-31.455753],[-54.819776,-31.435289],[-54.849903,-31.425057],[-54.863365,-31.417616],[-54.876155,-31.406351],[-54.887808,-31.393225],[-54.900288,-31.382063],[-54.940802,-31.36563],[-54.969637,-31.340825],[-54.995346,-31.311783],[-55.011495,-31.287805],[-55.029375,-31.268788],[-55.042346,-31.272612],[-55.061105,-31.304858],[-55.074256,-31.320568],[-55.087253,-31.326769],[-55.102446,-31.324288],[-55.122238,-31.31354],[-55.169625,-31.276436],[-55.18828,-31.266514],[-55.227554,-31.253492],[-55.244349,-31.244603],[-55.259981,-31.228687],[-55.268741,-31.2106],[-55.282228,-31.169052],[-55.2937,-31.153653],[-55.326928,-31.134946],[-55.338039,-31.125644],[-55.344963,-31.108488],[-55.348426,-31.072728],[-55.353852,-31.056294],[-55.368579,-31.037381],[-55.44258,-30.965551],[-55.489089,-30.929687],[-55.51131,-30.906123],[-55.527484,-30.894547],[-55.563865,-30.87646],[-55.591873,-30.848348],[-55.612906,-30.843388],[-55.634041,-30.847625],[-55.649673,-30.860958],[-55.654583,-30.878734],[-55.651069,-30.919972],[-55.652748,-30.938989],[-55.665822,-30.949324],[-55.688302,-30.947774],[-55.712745,-30.943433],[-55.731891,-30.945397],[-55.744887,-30.958626],[-55.755507,-30.992939],[-55.763594,-31.008442],[-55.778141,-31.020431],[-55.832479,-31.051747],[-55.838396,-31.058155],[-55.842142,-31.063943],[-55.846586,-31.069317],[-55.854596,-31.074588],[-55.86426,-31.076758],[-55.888186,-31.076965],[-55.919347,-31.082443],[-55.985157,-31.078825],[-56.009874,-31.081945],[-56.011357,-31.082133],[-56.017018,-31.074296],[-56.022183,-31.067147],[-56.02239,-31.045546],[-56.016344,-30.999864],[-56.015517,-30.934338],[-56.011357,-30.912634],[-55.993864,-30.885452],[-55.988955,-30.85579],[-55.995311,-30.825818],[-56.011357,-30.798222],[-56.076857,-30.752334],[-56.091894,-30.736107],[-56.125045,-30.680297],[-56.131685,-30.671925],[-56.140315,-30.664794],[-56.159642,-30.653942],[-56.170804,-30.645777],[-56.175171,-30.636062],[-56.177832,-30.62552],[-56.183517,-30.614564],[-56.215091,-30.581905],[-56.23509,-30.565368],[-56.267956,-30.551106],[-56.326531,-30.508318],[-56.372601,-30.48589],[-56.385985,-30.475761],[-56.400454,-30.458915],[-56.424639,-30.423568],[-56.441279,-30.408789],[-56.494557,-30.379333],[-56.5113,-30.366001],[-56.523754,-30.357319],[-56.560781,-30.320525],[-56.569617,-30.30802],[-56.575017,-30.302439],[-56.585818,-30.296548],[-56.595611,-30.295411],[-56.605196,-30.295617],[-56.615403,-30.293344],[-56.631345,-30.284662],[-56.63243,-30.278151],[-56.629278,-30.267712],[-56.632585,-30.247455],[-56.641783,-30.233916],[-56.656821,-30.221307],[-56.673745,-30.211281],[-56.704777,-30.198362],[-56.766995,-30.161362],[-56.776607,-30.150923],[-56.795159,-30.123845],[-56.831281,-30.102037],[-56.869211,-30.102968],[-56.906367,-30.108549],[-56.954529,-30.09687],[-56.97458,-30.09749],[-57.01127,-30.103484],[-57.018298,-30.105758],[-57.037883,-30.114647],[-57.048529,-30.114543],[-57.067235,-30.106792],[-57.077106,-30.106068],[-57.102272,-30.121158],[-57.129557,-30.149993],[-57.150848,-30.182343],[-57.158341,-30.207871],[-57.163819,-30.23929],[-57.183714,-30.267505],[-57.212601,-30.287349],[-57.245054,-30.293344],[-57.250067,-30.29045],[-57.262469,-30.278668],[-57.270376,-30.275154],[-57.276215,-30.277737],[-57.288617,-30.29076],[-57.296472,-30.293344],[-57.310993,-30.288279],[-57.321742,-30.279804],[-57.334299,-30.272673],[-57.353833,-30.27195],[-57.366597,-30.277221],[-57.389386,-30.294894],[-57.399257,-30.299131],[-57.414811,-30.295721],[-57.429797,-30.275464],[-57.44313,-30.269469],[-57.467211,-30.269883],[-57.510981,-30.276704],[-57.535992,-30.27443],[-57.567463,-30.256343],[-57.586842,-30.204047],[-57.611698,-30.182963],[-57.568652,-30.176555],[-57.548601,-30.170044],[-57.506175,-30.144309],[-57.411452,-30.039612],[-57.325153,-29.981011],[-57.318745,-29.965508],[-57.308513,-29.848513],[-57.291511,-29.81513],[-57.262572,-29.792599],[-57.219629,-29.778336],[-57.177461,-29.772859],[-57.133381,-29.772135],[-57.112866,-29.766037],[-57.094159,-29.751981],[-57.020933,-29.683355],[-57.013595,-29.673123],[-57.008841,-29.662581],[-56.979386,-29.634986],[-56.965795,-29.600879],[-56.951635,-29.586307],[-56.912413,-29.558401],[-56.904351,-29.549616],[-56.897272,-29.535664],[-56.819034,-29.474996],[-56.814951,-29.467037],[-56.812936,-29.457116],[-56.807561,-29.444713],[-56.799836,-29.433965],[-56.783429,-29.4258],[-56.782033,-29.416601],[-56.78255,-29.405439],[-56.780819,-29.395311],[-56.77578,-29.386422],[-56.769941,-29.379084],[-56.762706,-29.372883],[-56.75356,-29.367405],[-56.718135,-29.351489],[-56.7055,-29.343737],[-56.688654,-29.329578],[-56.677027,-29.313352],[-56.660645,-29.270874],[-56.650465,-29.25134],[-56.657286,-29.237904],[-56.656304,-29.223435],[-56.650672,-29.209069],[-56.64367,-29.19615],[-56.617289,-29.160906],[-56.584216,-29.132278],[-56.548301,-29.109953],[-56.513316,-29.093727],[-56.444276,-29.078121],[-56.427972,-29.069852],[-56.415751,-29.051352],[-56.411927,-29.031819],[-56.410919,-28.991304],[-56.391618,-28.952237],[-56.323069,-28.916477],[-56.301003,-28.88144],[-56.294828,-28.795761],[-56.286146,-28.780154],[-56.265476,-28.771989],[-56.21845,-28.764135],[-56.184705,-28.744188],[-56.103005,-28.648069],[-56.040812,-28.609002],[-56.021899,-28.585748],[-56.020503,-28.546267],[-56.022958,-28.528283],[-56.021434,-28.510403],[-56.011589,-28.496554],[-55.979137,-28.489216],[-55.951593,-28.47671],[-55.919089,-28.473403],[-55.910665,-28.470509],[-55.902035,-28.465135],[-55.898056,-28.460691],[-55.896919,-28.453456],[-55.896661,-28.406844],[-55.900382,-28.398472],[-55.905601,-28.378008],[-55.887359,-28.363332],[-55.842349,-28.346382],[-55.812532,-28.353204],[-55.771191,-28.357544],[-55.734604,-28.365916],[-55.718842,-28.38452],[-55.714967,-28.404467],[-55.705691,-28.407671],[-55.694244,-28.400126],[-55.684064,-28.388034],[-55.677372,-28.373874],[-55.6636,-28.326539],[-55.677217,-28.301837],[-55.687216,-28.290055],[-55.701453,-28.284991],[-55.714708,-28.28189],[-55.754602,-28.265664],[-55.766591,-28.257602],[-55.772534,-28.231971],[-55.747936,-28.215744],[-55.684064,-28.196211],[-55.641999,-28.160347],[-55.632543,-28.154663],[-55.623835,-28.146188],[-55.623042,-28.14435],[-55.616652,-28.129548],[-55.604741,-28.116939],[-55.581641,-28.121073],[-55.578541,-28.127481],[-55.579316,-28.136369],[-55.577094,-28.144327],[-55.564872,-28.147738],[-55.553478,-28.145568],[-55.549731,-28.139883],[-55.548284,-28.132235],[-55.543763,-28.124174],[-55.537871,-28.119316],[-55.524797,-28.110634],[-55.520224,-28.10681],[-55.509915,-28.083969],[-55.505935,-28.078905],[-55.492965,-28.073944],[-55.486531,-28.077148],[-55.482319,-28.083143],[-55.475498,-28.086347],[-55.464853,-28.085106],[-55.440746,-28.078905],[-55.435087,-28.07074],[-55.389844,-28.024231],[-55.383385,-28.014206],[-55.381421,-28.008729],[-55.382429,-27.987334],[-55.38093,-27.978239],[-55.376434,-27.973175],[-55.369096,-27.970798],[-55.358864,-27.970281],[-55.33791,-27.96315],[-55.333026,-27.946613],[-55.329874,-27.928113],[-55.314113,-27.914987],[-55.301762,-27.913954],[-55.280781,-27.920569],[-55.270084,-27.922429],[-55.26024,-27.919225],[-55.22404,-27.8938],[-55.21231,-27.87716],[-55.197737,-27.860624],[-55.177558,-27.853596],[-55.16146,-27.858247],[-55.139705,-27.876747],[-55.119241,-27.880881],[-55.111386,-27.852976],[-55.108699,-27.846775],[-55.09994,-27.843777],[-55.0779,-27.843364],[-55.067719,-27.839333],[-55.045808,-27.850702],[-55.029634,-27.850702],[-55.02581,-27.84016],[-55.040434,-27.819489],[-55.071259,-27.794375],[-55.081155,-27.778252],[-55.064309,-27.771017],[-55.044646,-27.775048],[-55.027593,-27.783006],[-55.009118,-27.78838],[-54.985192,-27.78528],[-54.932999,-27.743835],[-54.913207,-27.736911],[-54.906902,-27.727092],[-54.90158,-27.704458],[-54.896464,-27.661153],[-54.898272,-27.623636],[-54.889797,-27.620639],[-54.865406,-27.620845],[-54.845097,-27.611854],[-54.83701,-27.590459],[-54.833677,-27.565345],[-54.827527,-27.545088],[-54.818897,-27.536199],[-54.805048,-27.526381],[-54.792232,-27.523177],[-54.786548,-27.534236],[-54.788537,-27.538576],[-54.792129,-27.544261],[-54.793731,-27.549222],[-54.79001,-27.551289],[-54.788021,-27.552839],[-54.78169,-27.560074],[-54.780347,-27.562141],[-54.773939,-27.563794],[-54.7319,-27.551289],[-54.721952,-27.550979],[-54.69968,-27.553046],[-54.690326,-27.551289],[-54.681128,-27.546431],[-54.6772,-27.54178],[-54.676451,-27.534236],[-54.676684,-27.520593],[-54.67348,-27.509741],[-54.666452,-27.50385],[-54.659475,-27.502816],[-54.656194,-27.50726],[-54.651233,-27.525864],[-54.639528,-27.526794],[-54.625912,-27.515322],[-54.61524,-27.496718],[-54.609814,-27.478528],[-54.605319,-27.467986],[-54.598497,-27.459098],[-54.589454,-27.452587],[-54.583821,-27.45207],[-54.57855,-27.45424],[-54.57054,-27.455687],[-54.567233,-27.459615],[-54.557621,-27.477805],[-54.553797,-27.482973],[-54.543255,-27.487003],[-54.53354,-27.487417],[-54.468583,-27.47026],[-54.448377,-27.458891],[-54.447654,-27.445765],[-54.464552,-27.423338],[-54.460831,-27.412589],[-54.444553,-27.408972],[-54.404246,-27.407422],[-54.388898,-27.411142],[-54.378717,-27.422718],[-54.374997,-27.445765],[-54.371586,-27.454447],[-54.363473,-27.453517],[-54.354326,-27.446282],[-54.347712,-27.435844],[-54.34611,-27.426542],[-54.347712,-27.394296],[-54.334017,-27.406078],[-54.321512,-27.419514],[-54.306939,-27.428919],[-54.286888,-27.428402],[-54.281927,-27.424371],[-54.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment