// ==UserScript==
// @name WME MapRaid MX-AGS-ZAC Overlay
// @author Tom 'Glodenox' Puttemans
// @namespace http://tomputtemans.com
// @description Creates polygons for Regions
// @include /^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor.*$/
// @version 1.4
// @grant none
// @copyright 2017 Glodenox, based on work by 2015 rickzabel, based on work by 2014 davielde
// ==/UserScript==
setTimeout(initMapRaidOverlay, 1000);
var mapLayer,
displayedArea = false;
function convertPoints(list) {
return list.map(function(point) {
return new OL.Geometry.Point(point[0], point[1]).transform(new OL.Projection("EPSG:4326"), W.map.getProjectionObject());
});
}
function addRaidPolygon(raidLayer, groupPoints, color, name) {
var style = {
strokeColor: "Pink",
strokeOpacity: 0.8,
strokeWidth: 3,
fillColor: '#FFFFFF', // Doesn't matter, opacity is set to 0
fillOpacity: 0,
label: name,
labelOutlineColor: "Black",
labelOutlineWidth: 3,
fontSize: 14,
fontColor: "Pink",
fontOpacity: 0.85,
fontWeight: "bold"
};
var ring = new OL.Geometry.LinearRing(convertPoints(groupPoints));
var polygon = new OL.Geometry.Polygon([ ring ]);
var feature = new OL.Feature.Vector(polygon, { name: name }, style);
raidLayer.addFeatures([ feature ]);
}
function createLayerToggler(parentGroup, checked, name, toggleCallback) {
var normalizedName = name.toLowerCase().replace(/\s/g, '');
var group = document.createElement('li');
var groupToggler = document.createElement('div');
groupToggler.className = 'controls-container toggler';
var groupSwitch = document.createElement('input');
groupSwitch.id = 'layer-switcher-group_' + normalizedName;
groupSwitch.className = 'layer-switcher-group_' + normalizedName + ' toggle';
groupSwitch.type = 'checkbox';
groupSwitch.checked = checked;
groupSwitch.addEventListener('click', function() { toggleCallback(groupSwitch.checked); });
groupToggler.appendChild(groupSwitch);
var groupLabel = document.createElement('label');
groupLabel.htmlFor = groupSwitch.id;
groupLabel.style.display = 'block';
var groupLabelText = document.createElement('div');
groupLabelText.className = 'label-text';
groupLabelText.style.textOverflow = 'ellipsis';
groupLabelText.style.overflowX = 'hidden';
groupLabelText.appendChild(document.createTextNode(name));
groupLabel.appendChild(groupLabelText);
groupToggler.appendChild(groupLabel);
group.appendChild(groupToggler);
if (parentGroup !== null) {
parentGroup.querySelector('input.toggle').addEventListener('click', function(e) {
groupSwitch.disabled = !e.target.checked;
if (toggleCallback) {
toggleCallback(groupSwitch.checked && e.target.checked);
}
});
parentGroup.querySelector('ul.children').appendChild(group);
} else {
group.className = 'group';
groupToggler.classList.add('main');
var groupChildren = document.createElement('ul');
groupChildren.className = 'children';
group.appendChild(groupChildren);
document.querySelector('.list-unstyled.togglers').appendChild(group);
}
return group;
}
function displayCurrentRaidLocation() {
var raidMapCenter = W.map.getCenter();
var raidCenterPoint = new OL.Geometry.Point(raidMapCenter.lon, raidMapCenter.lat);
var locationDiv = document.querySelector('#topbar-container > div > div > div.location-info-region > div');
var mapRaidDiv = locationDiv.querySelector('strong');
if (mapRaidDiv === null) {
mapRaidDiv = document.createElement('strong');
mapRaidDiv.style.marginLeft = '5px';
locationDiv.appendChild(mapRaidDiv);
}
for (i = 0; i < mapLayer.features.length; i++) {
if (mapLayer.features[i].geometry.components[0].containsPoint(raidCenterPoint)) {
mapRaidDiv.textContent = '[MapRaid AGS-ZAC: ' + mapLayer.features[i].attributes.name + ']';
displayedArea = true;
return;
}
}
if (displayedArea) {
mapRaidDiv.textContent = '';
displayedArea = false;
}
}
function initMapRaidOverlay() {
if (typeof Waze === 'undefined' || typeof W.map === 'undefined' || typeof W.loginManager === 'undefined' || !document.querySelector('#topbar-container > div > div > div.location-info-region > div') || !document.getElementById('layer-switcher-group_display')) {
setTimeout(initMapRaidOverlay, 800);
return;
}
if (!W.loginManager.user) {
W.loginManager.events.register("login", null, initMapRaidOverlay);
W.loginManager.events.register("loginStatus", null, initMapRaidOverlay);
if (!W.loginManager.user) {
return;
}
}
if (localStorage.MapRaidChinaVisible === undefined) {
localStorage.MapRaidChinaVisible = true;
}
createLayerToggler(document.getElementById('layer-switcher-group_display').parentNode.parentNode, localStorage.MapRaidChinaVisible == "true", 'Map Raid: AGS-ZAC', function(checked) {
localStorage.MapRaidChinaVisible = checked;
mapLayer.setVisibility(checked);
});
mapLayer = new OL.Layer.Vector("MapRaid AGS-ZAC Equipos", {
uniqueName: "__AGSZACMapRaid"
});
addRaidPolygon(mapLayer, [
[-101.84881,25.017624],[-101.923134,25.034597],[-101.992199,25.050334],[-102.008081,25.053948],[-102.009038,25.054166],[-102.069378,25.067879],[-102.081806,25.070701],[-102.14509,25.090122],[-102.146179,25.090456],[-102.237622,25.118462],[-102.266549,25.121828],[-102.295477,25.125189],[-102.295513,25.125236],[-102.356956,25.121846],[-102.398878,25.119518],[-102.463325,25.115916],[-102.453678,25.048138],[-102.446763,24.999515],[-102.485252,25.011134],[-102.485374,25.011171],[-102.489088,25.012289],[-102.558635,25.033216],[-102.583319,25.040628],[-102.611698,25.049145],[-102.611703,25.049147],[-102.628549,25.054214],[-102.669694,25.066636],[-102.668313,25.06392],[-102.665621,25.060901],[-102.664382,25.059409],[-102.662261,25.05691],[-102.660391,25.05469],[-102.657445,25.051166],[-102.65636,25.049877],[-102.654085,25.047171],[-102.653108,25.046021],[-102.652831,25.045825],[-102.652709,25.045516],[-102.652422,25.045229],[-102.652198,25.044788],[-102.652197,25.044606],[-102.652375,25.044326],[-102.652638,25.044172],[-102.65287,25.04395],[-102.653216,25.043564],[-102.653331,25.043311],[-102.65315,25.042937],[-102.652989,25.042553],[-102.652987,25.04215],[-102.653144,25.041842],[-102.653207,25.041615],[-102.653386,25.041451],[-102.653383,25.040942],[-102.653444,25.040683],[-102.653251,25.040007],[-102.653101,25.039557],[-102.652836,25.039241],[-102.652663,25.038934],[-102.652568,25.038548],[-102.652566,25.038067],[-102.652363,25.037626],[-102.65213,25.037464],[-102.652129,25.037253],[-102.651864,25.037119],[-102.651863,25.036841],[-102.651968,25.036725],[-102.651851,25.036466],[-102.651607,25.036361],[-102.651437,25.036112],[-102.651368,25.035483],[-102.651316,25.035166],[-102.651157,25.034975],[-102.651153,25.034145],[-102.651024,25.0338],[-102.651023,25.033617],[-102.650864,25.033455],[-102.650934,25.033125],[-102.65104,25.032778],[-102.651038,25.032336],[-102.650793,25.031905],[-102.650863,25.031783],[-102.650733,25.03144],[-102.650615,25.031126],[-102.650408,25.030891],[-102.65013,25.030127],[-102.649916,25.029647],[-102.649915,25.029452],[-102.649797,25.029068],[-102.649796,25.028892],[-102.649746,25.028637],[-102.649677,25.028456],[-102.649546,25.028158],[-102.649545,25.027956],[-102.649386,25.027869],[-102.649269,25.027778],[-102.649144,25.027767],[-102.643002,25.027813],[-102.628885,25.008322],[-102.635543,25.004169],[-102.633828,24.999554],[-102.6342,24.998701],[-102.642956,24.978648],[-102.64676,24.978671],[-102.650421,24.978691],[-102.663138,24.978763],[-102.667426,24.978787],[-102.672984,24.978818],[-102.67299,24.976238],[-102.673003,24.970328],[-102.673012,24.965938],[-102.673024,24.960607],[-102.673036,24.954845],[-102.673062,24.942752],[-102.636724,24.928976],[-102.566236,24.902221],[-102.565373,24.866355],[-102.564282,24.863903],[-102.549182,24.829936],[-102.534119,24.78065],[-102.520441,24.735862],[-102.51544,24.71948],[-102.512182,24.709721],[-102.494641,24.612555],[-102.492683,24.596406],[-102.492616,24.595854],[-102.492209,24.59251],[-102.491587,24.587392],[-102.483668,24.522237],[-102.483655,24.522131],[-102.479807,24.490448],[-102.48693,24.444655],[-102.486996,24.444228],[-102.484186,24.444251],[-102.479319,24.444486],[-102.479186,24.443763],[-102.473127,24.445215],[-102.473098,24.444237],[-102.473014,24.443239],[-102.47305,24.442527],[-102.472697,24.43968],[-102.475103,24.4389],[-102.475677,24.437924],[-102.476749,24.435115],[-102.477051,24.434649],[-102.477417,24.434176],[-102.477917,24.43322],[-102.477934,24.433188],[-102.478099,24.432871],[-102.478098,24.432522],[-102.478401,24.431929],[-102.478645,24.431237],[-102.478644,24.430745],[-102.479101,24.430097],[-102.479318,24.429786],[-102.479487,24.429108],[-102.479719,24.428668],[-102.479718,24.428558],[-102.479951,24.428487],[-102.480035,24.428241],[-102.480267,24.428014],[-102.480542,24.42789],[-102.481199,24.427759],[-102.481714,24.427441],[-102.482374,24.427571],[-102.482642,24.427475],[-102.482967,24.427395],[-102.483362,24.427187],[-102.483721,24.427037],[-102.484002,24.427034],[-102.484271,24.427075],[-102.487446,24.426559],[-102.490375,24.42618],[-102.490947,24.426017],[-102.491674,24.425698],[-102.492149,24.425581],[-102.492256,24.42558],[-102.492249,24.425835],[-102.498088,24.425168],[-102.500838,24.424696],[-102.500861,24.424789],[-102.508255,24.424647],[-102.508211,24.424241],[-102.520146,24.423932],[-102.520224,24.422872],[-102.520621,24.420607],[-102.522305,24.418397],[-102.522792,24.415247],[-102.526702,24.416227],[-102.528584,24.413667],[-102.533886,24.408613],[-102.533931,24.407722],[-102.565813,24.408809],[-102.577819,24.410158],[-102.577836,24.410159],[-102.578083,24.410168],[-102.578672,24.410191],[-102.57929,24.410213],[-102.580253,24.410248],[-102.581122,24.410279],[-102.581998,24.410312],[-102.582864,24.410341],[-102.58473,24.410409],[-102.586531,24.410473],[-102.594666,24.41075],[-102.600204,24.410943],[-102.606555,24.411167],[-102.606593,24.411169],[-102.607299,24.405399],[-102.607359,24.405328],[-102.607699,24.404922],[-102.609146,24.403295],[-102.611497,24.400353],[-102.611814,24.399955],[-102.61474,24.397979],[-102.618564,24.396378],[-102.621773,24.395295],[-102.624262,24.3944],[-102.626702,24.393744],[-102.628883,24.393176],[-102.633788,24.392452],[-102.638202,24.392044],[-102.641769,24.392012],[-102.644695,24.391402],[-102.649058,24.389706],[-102.65137,24.3894],[-102.653453,24.388032],[-102.655063,24.388604],[-102.657541,24.386416],[-102.658764,24.386312],[-102.659669,24.385905],[-102.660572,24.38499],[-102.661522,24.383804],[-102.661939,24.382003],[-102.662359,24.381577],[-102.665229,24.381198],[-102.666389,24.381114],[-102.668433,24.38077],[-102.668725,24.380921],[-102.670811,24.380673],[-102.671811,24.380551],[-102.67273,24.380433],[-102.673555,24.380202],[-102.677622,24.380075],[-102.679204,24.379956],[-102.680695,24.37943],[-102.680939,24.379385],[-102.685499,24.378525],[-102.685568,24.378452],[-102.68588,24.378439],[-102.686587,24.378218],[-102.686638,24.377098],[-102.699043,24.376248],[-102.699084,24.374338],[-102.699904,24.373972],[-102.703987,24.374133],[-102.708813,24.377838],[-102.714373,24.378217],[-102.722027,24.375363],[-102.722321,24.375407],[-102.722363,24.376013],[-102.724109,24.375673],[-102.724194,24.375686],[-102.730715,24.376067],[-102.738013,24.377453],[-102.7516,24.375827],[-102.752426,24.376657],[-102.753714,24.376613],[-102.754735,24.376514],[-102.755476,24.376689],[-102.756654,24.376983],[-102.756986,24.37733],[-102.757206,24.378083],[-102.758519,24.379056],[-102.758962,24.380035],[-102.7591,24.380644],[-102.759621,24.380609],[-102.760118,24.380897],[-102.760372,24.381012],[-102.760725,24.380428],[-102.761069,24.380718],[-102.761267,24.38095],[-102.761455,24.3806],[-102.761684,24.380854],[-102.762154,24.381067],[-102.76256,24.381385],[-102.762693,24.381521],[-102.762833,24.381718],[-102.763101,24.382057],[-102.76338,24.382346],[-102.763631,24.382618],[-102.76376,24.382887],[-102.763919,24.383511],[-102.764273,24.384077],[-102.764883,24.384475],[-102.765077,24.384706],[-102.765086,24.384987],[-102.764829,24.385271],[-102.764322,24.385471],[-102.764001,24.385814],[-102.763854,24.386079],[-102.763912,24.386428],[-102.764201,24.386725],[-102.764445,24.387022],[-102.764867,24.387208],[-102.765243,24.387318],[-102.765876,24.387714],[-102.766598,24.387842],[-102.766926,24.387894],[-102.767119,24.388141],[-102.767229,24.388414],[-102.767529,24.388596],[-102.767841,24.388501],[-102.768186,24.388314],[-102.768698,24.389017],[-102.769219,24.389199],[-102.769372,24.38951],[-102.7694,24.389665],[-102.770285,24.390138],[-102.770584,24.390276],[-102.770753,24.390357],[-102.770891,24.390408],[-102.771051,24.390502],[-102.771328,24.390591],[-102.77246,24.390605],[-102.772596,24.390855],[-102.772721,24.391163],[-102.772835,24.391442],[-102.77297,24.39174],[-102.773129,24.391883],[-102.773356,24.391994],[-102.773698,24.392091],[-102.774008,24.392601],[-102.774287,24.392799],[-102.774491,24.392835],[-102.774697,24.392799],[-102.774833,24.392659],[-102.775025,24.39259],[-102.775145,24.392625],[-102.775235,24.392729],[-102.77524,24.392854],[-102.775281,24.393041],[-102.775491,24.393058],[-102.7757,24.393203],[-102.775783,24.39334],[-102.775893,24.393484],[-102.77662,24.393901],[-102.776989,24.394145],[-102.777209,24.394344],[-102.777405,24.394593],[-102.777862,24.394935],[-102.778128,24.395112],[-102.778488,24.39526],[-102.779021,24.395528],[-102.779352,24.395802],[-102.779455,24.39605],[-102.779618,24.396288],[-102.779442,24.396521],[-102.779648,24.397055],[-102.779759,24.397323],[-102.779831,24.397579],[-102.779953,24.397707],[-102.779764,24.397879],[-102.77977,24.398086],[-102.779878,24.398379],[-102.779743,24.398969],[-102.779232,24.399528],[-102.779165,24.400145],[-102.779627,24.400483],[-102.781078,24.402732],[-102.783422,24.404077],[-102.788852,24.406248],[-102.789553,24.406154],[-102.789907,24.406191],[-102.791339,24.40573],[-102.791991,24.405402],[-102.793507,24.403659],[-102.794419,24.40224],[-102.796095,24.400215],[-102.797577,24.398723],[-102.799113,24.39865],[-102.800356,24.398571],[-102.801097,24.398461],[-102.801959,24.397571],[-102.803708,24.396285],[-102.805783,24.395115],[-102.808454,24.3936],[-102.812416,24.389494],[-102.816788,24.389916],[-102.818696,24.388711],[-102.820569,24.387224],[-102.822176,24.386568],[-102.824869,24.386099],[-102.827911,24.385798],[-102.830597,24.385277],[-102.830762,24.385245],[-102.831736,24.384692],[-102.834045,24.390109],[-102.840736,24.394608],[-102.845903,24.398083],[-102.852603,24.419343],[-102.853892,24.424359],[-102.855146,24.423611],[-102.856371,24.424599],[-102.858583,24.422927],[-102.860162,24.424248],[-102.860472,24.425145],[-102.861926,24.426424],[-102.86286,24.427398],[-102.863199,24.428067],[-102.863838,24.428762],[-102.865013,24.430312],[-102.864516,24.430562],[-102.863326,24.430277],[-102.862341,24.43019],[-102.861818,24.430115],[-102.861587,24.43065],[-102.861088,24.430919],[-102.860565,24.431437],[-102.860388,24.433152],[-102.861119,24.433408],[-102.86099,24.433912],[-102.860621,24.434492],[-102.86159,24.435093],[-102.862492,24.43552],[-102.863405,24.436184],[-102.864096,24.436437],[-102.864575,24.437079],[-102.865031,24.437889],[-102.865405,24.438754],[-102.865785,24.439446],[-102.866536,24.440005],[-102.867329,24.441342],[-102.867819,24.442089],[-102.868548,24.442883],[-102.868957,24.443486],[-102.869508,24.444302],[-102.870114,24.445086],[-102.87056,24.445632],[-102.870788,24.44633],[-102.871059,24.446846],[-102.8721,24.447231],[-102.87277,24.447752],[-102.873239,24.448381],[-102.873545,24.449189],[-102.873773,24.45],[-102.874913,24.450962],[-102.876382,24.449001],[-102.876926,24.449126],[-102.877588,24.4494],[-102.878017,24.449833],[-102.877974,24.450627],[-102.878314,24.451082],[-102.878646,24.451397],[-102.879135,24.451629],[-102.879722,24.451914],[-102.881708,24.45354],[-102.882262,24.45392],[-102.885584,24.456927],[-102.891479,24.460844],[-102.891891,24.461118],[-102.892181,24.460859],[-102.892378,24.460574],[-102.892897,24.459892],[-102.893139,24.459528],[-102.893345,24.45929],[-102.893567,24.459093],[-102.893895,24.458842],[-102.894292,24.458687],[-102.894251,24.458384],[-102.89415,24.458001],[-102.894074,24.457764],[-102.893999,24.457597],[-102.893775,24.457292],[-102.89355,24.456868],[-102.893424,24.45652],[-102.893372,24.456114],[-102.893283,24.455798],[-102.893146,24.455538],[-102.893166,24.455343],[-102.89306,24.455095],[-102.892758,24.454804],[-102.892546,24.4545],[-102.892507,24.454186],[-102.892369,24.453837],[-102.892084,24.453729],[-102.891675,24.453461],[-102.89118,24.45326],[-102.890796,24.452981],[-102.89046,24.452466],[-102.890369,24.451942],[-102.890427,24.451474],[-102.890694,24.451061],[-102.89095,24.450913],[-102.891286,24.450821],[-102.891598,24.450774],[-102.892181,24.450813],[-102.892873,24.450899],[-102.893668,24.450872],[-102.894277,24.450767],[-102.89474,24.450527],[-102.894876,24.450351],[-102.894911,24.450104],[-102.894958,24.449741],[-102.895082,24.449374],[-102.895016,24.448998],[-102.895063,24.448696],[-102.895012,24.448387],[-102.89492,24.44773],[-102.895101,24.447136],[-102.89521,24.446796],[-102.895306,24.44649],[-102.895303,24.446025],[-102.895325,24.445661],[-102.8952,24.445357],[-102.895148,24.444947],[-102.895107,24.444337],[-102.895215,24.443783],[-102.895124,24.443214],[-102.894936,24.44274],[-102.894909,24.442423],[-102.894894,24.442037],[-102.895079,24.441342],[-102.895228,24.44104],[-102.895417,24.440814],[-102.895812,24.440581],[-102.896623,24.440385],[-102.897114,24.440218],[-102.897534,24.4401],[-102.897797,24.439834],[-102.898059,24.439635],[-102.898199,24.43936],[-102.898525,24.438966],[-102.898725,24.438744],[-102.899108,24.438626],[-102.89969,24.438398],[-102.900115,24.437955],[-102.900502,24.437512],[-102.900679,24.437232],[-102.900959,24.436939],[-102.901076,24.436581],[-102.901364,24.436247],[-102.901634,24.436015],[-102.901792,24.435714],[-102.901801,24.435152],[-102.901785,24.434744],[-102.90156,24.434393],[-102.901447,24.434136],[-102.901431,24.433567],[-102.901466,24.433226],[-102.901487,24.432745],[-102.901484,24.432213],[-102.90142,24.431889],[-102.901357,24.431674],[-102.901403,24.431345],[-102.901118,24.431065],[-102.900843,24.430622],[-102.900709,24.429996],[-102.900336,24.429574],[-102.900282,24.428971],[-102.900107,24.4285],[-102.901358,24.428597],[-102.96744,24.457704],[-102.967445,24.457635],[-102.967781,24.457434],[-102.983573,24.433257],[-102.991897,24.437715],[-102.994632,24.439182],[-102.998477,24.441238],[-103.00248,24.443383],[-103.017003,24.451038],[-103.017623,24.451405],[-103.029226,24.458267],[-103.029957,24.4587],[-103.040631,24.465012],[-103.040664,24.465031],[-103.04315,24.466501],[-103.044424,24.464675],[-103.046358,24.461864],[-103.04744,24.460302],[-103.04857,24.458658],[-103.049982,24.45662],[-103.051261,24.45478],[-103.052364,24.453183],[-103.054418,24.45039],[-103.055407,24.449027],[-103.057558,24.446087],[-103.058278,24.445096],[-103.060507,24.442066],[-103.065323,24.435536],[-103.065352,24.435497],[-103.066121,24.434459],[-103.068083,24.431806],[-103.068627,24.431071],[-103.071016,24.427861],[-103.072398,24.426013],[-103.075081,24.422625],[-103.087515,24.436027],[-103.098527,24.401627],[-103.118383,24.415268],[-103.123236,24.419502],[-103.127438,24.422471],[-103.131178,24.42437],[-103.131709,24.424677],[-103.136998,24.427228],[-103.139509,24.428471],[-103.139826,24.428321],[-103.140232,24.427966],[-103.140388,24.427711],[-103.140834,24.427986],[-103.141249,24.428231],[-103.141568,24.428406],[-103.142102,24.428488],[-103.143442,24.428056],[-103.143597,24.428099],[-103.14523,24.427649],[-103.146061,24.427395],[-103.145186,24.426732],[-103.14831,24.427898],[-103.151538,24.427502],[-103.15295,24.427232],[-103.157388,24.427756],[-103.157726,24.427841],[-103.161667,24.430928],[-103.162123,24.431492],[-103.162569,24.431841],[-103.162877,24.432353],[-103.163352,24.433131],[-103.163547,24.4335],[-103.163534,24.433904],[-103.163223,24.434561],[-103.16375,24.434733],[-103.164588,24.435075],[-103.165259,24.435198],[-103.165982,24.435278],[-103.167809,24.43494],[-103.169134,24.434692],[-103.170213,24.434557],[-103.171509,24.434503],[-103.172261,24.434561],[-103.173202,24.434023],[-103.175457,24.433261],[-103.175539,24.432569],[-103.176914,24.43153],[-103.177059,24.431597],[-103.179386,24.428206],[-103.180328,24.426416],[-103.181855,24.424166],[-103.18193,24.422971],[-103.181953,24.419897],[-103.187285,24.423288],[-103.187351,24.423135],[-103.188514,24.423241],[-103.189557,24.423334],[-103.202092,24.424469],[-103.202411,24.421375],[-103.202492,24.421352],[-103.207372,24.42112],[-103.212328,24.420998],[-103.217332,24.420811],[-103.217888,24.41721],[-103.222834,24.417103],[-103.222246,24.420594],[-103.227248,24.420389],[-103.226826,24.423811],[-103.231176,24.423578],[-103.233777,24.423501],[-103.233656,24.427163],[-103.236636,24.427057],[-103.236933,24.430591],[-103.233629,24.43073],[-103.23363,24.430807],[-103.233933,24.434276],[-103.23394,24.434324],[-103.23398,24.435838],[-103.237987,24.43555],[-103.238249,24.435719],[-103.238465,24.43592],[-103.238864,24.436359],[-103.239437,24.436993],[-103.239739,24.437219],[-103.239999,24.437334],[-103.240489,24.437387],[-103.240767,24.437545],[-103.241003,24.437774],[-103.24113,24.438003],[-103.241273,24.438326],[-103.241399,24.438617],[-103.241573,24.438998],[-103.241637,24.439204],[-103.241814,24.439375],[-103.242155,24.439464],[-103.242457,24.439687],[-103.242878,24.439935],[-103.242988,24.440291],[-103.242901,24.440478],[-103.242757,24.440813],[-103.242796,24.441159],[-103.242987,24.441422],[-103.243345,24.441672],[-103.243815,24.442614],[-103.244134,24.443091],[-103.244351,24.443473],[-103.244677,24.44381],[-103.245223,24.444318],[-103.245326,24.444523],[-103.245277,24.44499],[-103.245599,24.445198],[-103.245835,24.445105],[-103.246291,24.44502],[-103.246862,24.445366],[-103.247332,24.445614],[-103.247768,24.445982],[-103.248294,24.446238],[-103.249345,24.446686],[-103.249807,24.446147],[-103.25005,24.446253],[-103.25034,24.446423],[-103.250842,24.446634],[-103.251936,24.447034],[-103.25239,24.446798],[-103.253532,24.447254],[-103.255443,24.445534],[-103.256028,24.444677],[-103.257385,24.444365],[-103.257644,24.44342],[-103.258553,24.442781],[-103.260082,24.442092],[-103.260556,24.441213],[-103.260814,24.441258],[-103.261765,24.440546],[-103.262051,24.440065],[-103.262301,24.439543],[-103.262073,24.439199],[-103.261884,24.438591],[-103.26216,24.438057],[-103.262396,24.4377],[-103.262566,24.437482],[-103.262837,24.437432],[-103.263188,24.437648],[-103.263404,24.437523],[-103.263431,24.437238],[-103.263322,24.436797],[-103.263048,24.436399],[-103.263052,24.436328],[-103.26314,24.436154],[-103.263287,24.43611],[-103.263429,24.436104],[-103.26353,24.436183],[-103.263602,24.436325],[-103.263791,24.436376],[-103.263943,24.436243],[-103.264052,24.435911],[-103.263918,24.435424],[-103.263997,24.435124],[-103.264234,24.434836],[-103.264519,24.434581],[-103.264929,24.434374],[-103.2652,24.434398],[-103.265647,24.43447],[-103.26605,24.43457],[-103.266287,24.434383],[-103.266561,24.434122],[-103.266688,24.433835],[-103.266954,24.433756],[-103.267378,24.433839],[-103.268005,24.434002],[-103.26837,24.433937],[-103.268517,24.433717],[-103.268973,24.433352],[-103.269183,24.433086],[-103.269363,24.432937],[-103.269795,24.432906],[-103.270201,24.433082],[-103.270663,24.433261],[-103.271211,24.433383],[-103.271493,24.433325],[-103.271603,24.433076],[-103.271569,24.432502],[-103.271808,24.432177],[-103.27212,24.432121],[-103.272288,24.431845],[-103.272272,24.431383],[-103.272316,24.431099],[-103.272456,24.430909],[-103.272608,24.430789],[-103.272821,24.430681],[-103.273012,24.430696],[-103.273275,24.430697],[-103.27349,24.431019],[-103.273655,24.4316],[-103.273816,24.431716],[-103.274049,24.431631],[-103.274592,24.431478],[-103.274896,24.431235],[-103.27474,24.430885],[-103.274856,24.430666],[-103.27505,24.430589],[-103.275391,24.430495],[-103.275836,24.430209],[-103.27621,24.43009],[-103.276408,24.430176],[-103.276428,24.430454],[-103.276962,24.43031],[-103.27735,24.430307],[-103.277985,24.430167],[-103.278703,24.4305],[-103.278967,24.43028],[-103.279058,24.429981],[-103.279174,24.42979],[-103.279572,24.42974],[-103.279974,24.42983],[-103.280295,24.429731],[-103.280475,24.430026],[-103.280526,24.430404],[-103.280523,24.4307],[-103.280731,24.430814],[-103.281036,24.430653],[-103.281233,24.430301],[-103.281172,24.430095],[-103.28107,24.429942],[-103.280979,24.429695],[-103.280966,24.42952],[-103.281095,24.429449],[-103.281266,24.429346],[-103.281572,24.429248],[-103.281984,24.429295],[-103.282155,24.429307],[-103.282264,24.4292],[-103.28229,24.429045],[-103.282384,24.428908],[-103.282645,24.428837],[-103.282902,24.429019],[-103.283075,24.429204],[-103.283214,24.429346],[-103.283408,24.429339],[-103.283648,24.429183],[-103.283936,24.429153],[-103.284065,24.429451],[-103.284284,24.429487],[-103.284402,24.429356],[-103.284501,24.429118],[-103.284572,24.428922],[-103.284641,24.428796],[-103.284783,24.428726],[-103.284957,24.429023],[-103.285111,24.429305],[-103.285329,24.429494],[-103.285727,24.429489],[-103.286438,24.429512],[-103.286791,24.429723],[-103.287148,24.429828],[-103.287524,24.429625],[-103.28801,24.429429],[-103.288365,24.429238],[-103.288799,24.429272],[-103.289226,24.429431],[-103.289575,24.429651],[-103.289768,24.430053],[-103.289894,24.430428],[-103.290001,24.430925],[-103.290077,24.431368],[-103.290363,24.431605],[-103.290428,24.431645],[-103.290458,24.431664],[-103.290968,24.431769],[-103.291218,24.431744],[-103.291615,24.431546],[-103.291995,24.431436],[-103.292413,24.431479],[-103.292781,24.431498],[-103.293242,24.431538],[-103.293638,24.431489],[-103.293847,24.43132],[-103.294001,24.431049],[-103.293897,24.430787],[-103.29399,24.430479],[-103.294137,24.43027],[-103.294475,24.430107],[-103.295951,24.43012],[-103.297699,24.430068],[-103.298363,24.430184],[-103.298909,24.430585],[-103.299253,24.431319],[-103.29942,24.431639],[-103.299672,24.431461],[-103.299848,24.431262],[-103.300119,24.43102],[-103.300583,24.430833],[-103.301158,24.430913],[-103.301656,24.431091],[-103.302083,24.431387],[-103.302303,24.431781],[-103.302306,24.432053],[-103.302511,24.432494],[-103.303003,24.432513],[-103.303887,24.432288],[-103.30438,24.432508],[-103.304671,24.43278],[-103.305065,24.433114],[-103.305183,24.43373],[-103.305168,24.434192],[-103.305395,24.434456],[-103.30564,24.434424],[-103.305886,24.433934],[-103.305943,24.433071],[-103.306089,24.432687],[-103.306426,24.432629],[-103.306665,24.432707],[-103.307231,24.433523],[-103.307423,24.434093],[-103.307404,24.434441],[-103.307393,24.434781],[-103.30747,24.43496],[-103.30779,24.434916],[-103.307988,24.434588],[-103.308051,24.434188],[-103.308135,24.433741],[-103.308163,24.433544],[-103.308356,24.433452],[-103.308622,24.433575],[-103.308843,24.433761],[-103.308989,24.434209],[-103.309119,24.434575],[-103.309266,24.434939],[-103.309432,24.435247],[-103.309916,24.435566],[-103.31025,24.435658],[-103.310043,24.435142],[-103.309955,24.434725],[-103.310214,24.434346],[-103.310403,24.433932],[-103.311202,24.433387],[-103.311473,24.432959],[-103.311792,24.432602],[-103.313191,24.432215],[-103.313895,24.43185],[-103.314463,24.43142],[-103.31564,24.430204],[-103.316503,24.428994],[-103.317192,24.428611],[-103.318221,24.428325],[-103.319727,24.428201],[-103.320596,24.428164],[-103.322026,24.428381],[-103.321731,24.427851],[-103.322041,24.427165],[-103.32265,24.42695],[-103.323929,24.426506],[-103.325496,24.426649],[-103.330042,24.42816],[-103.333509,24.427866],[-103.337477,24.427492],[-103.360744,24.425332],[-103.386205,24.422965],[-103.387605,24.427462],[-103.388284,24.428103],[-103.388884,24.428671],[-103.394056,24.432099],[-103.399749,24.432779],[-103.398413,24.430316],[-103.398319,24.429759],[-103.399195,24.428832],[-103.400516,24.428213],[-103.401457,24.42812],[-103.402144,24.428587],[-103.402723,24.429222],[-103.403949,24.428738],[-103.404637,24.429829],[-103.405929,24.429605],[-103.40645,24.428872],[-103.406249,24.427792],[-103.407578,24.428212],[-103.409927,24.428547],[-103.410688,24.427781],[-103.410466,24.427134],[-103.409458,24.427029],[-103.409383,24.426727],[-103.409531,24.426397],[-103.409814,24.426282],[-103.410127,24.42628],[-103.410403,24.426322],[-103.410933,24.426417],[-103.411455,24.426688],[-103.411989,24.427138],[-103.41237,24.42763],[-103.412714,24.428576],[-103.412914,24.428836],[-103.413255,24.429002],[-103.413439,24.429001],[-103.413643,24.428917],[-103.413909,24.428785],[-103.414189,24.428714],[-103.414437,24.428684],[-103.414658,24.428687],[-103.414887,24.428697],[-103.415061,24.428638],[-103.41515,24.428583],[-103.415244,24.42843],[-103.415242,24.428186],[-103.415348,24.428111],[-103.415514,24.428066],[-103.415973,24.428405],[-103.416155,24.428689],[-103.416355,24.428932],[-103.416459,24.429147],[-103.416602,24.42935],[-103.41688,24.429496],[-103.417069,24.429642],[-103.417566,24.429921],[-103.417797,24.430018],[-103.418098,24.43012],[-103.418521,24.430309],[-103.418604,24.430308],[-103.418873,24.430492],[-103.419332,24.430488],[-103.419542,24.430393],[-103.419579,24.430346],[-103.419712,24.429567],[-103.41971,24.429381],[-103.419687,24.429153],[-103.419822,24.428907],[-103.41986,24.428458],[-103.419858,24.428266],[-103.419996,24.428107],[-103.420327,24.427878],[-103.420322,24.427429],[-103.420205,24.42729],[-103.420275,24.42722],[-103.420274,24.42715],[-103.420165,24.427066],[-103.420241,24.426595],[-103.419819,24.426245],[-103.419838,24.426036],[-103.419889,24.425479],[-103.420157,24.425582],[-103.420552,24.425734],[-103.420708,24.425634],[-103.420916,24.4255],[-103.420932,24.425455],[-103.421198,24.424697],[-103.421772,24.424501],[-103.421927,24.424213],[-103.421921,24.423711],[-103.421375,24.423352],[-103.421132,24.423354],[-103.420914,24.423205],[-103.42078,24.423005],[-103.420477,24.422847],[-103.420212,24.422581],[-103.420023,24.422134],[-103.420021,24.422035],[-103.419952,24.421893],[-103.420158,24.421394],[-103.420569,24.421391],[-103.420976,24.421264],[-103.421537,24.421259],[-103.421937,24.42111],[-103.422209,24.420921],[-103.4222,24.420089],[-103.422104,24.419915],[-103.421968,24.419706],[-103.421864,24.419535],[-103.421998,24.418682],[-103.422143,24.41824],[-103.422348,24.41772],[-103.422002,24.417331],[-103.421832,24.41717],[-103.421619,24.416588],[-103.421901,24.416161],[-103.422263,24.415965],[-103.42269,24.415791],[-103.422964,24.415723],[-103.423382,24.415655],[-103.423642,24.415693],[-103.424376,24.415596],[-103.424658,24.415552],[-103.425338,24.415297],[-103.425401,24.415223],[-103.425509,24.414831],[-103.425497,24.413665],[-103.425675,24.413079],[-103.425674,24.412976],[-103.426634,24.412222],[-103.427325,24.411963],[-103.427896,24.411972],[-103.428558,24.411831],[-103.428933,24.411678],[-103.429236,24.411396],[-103.429233,24.411107],[-103.429125,24.410734],[-103.428936,24.410428],[-103.428864,24.410177],[-103.428986,24.409952],[-103.429565,24.409512],[-103.430108,24.409199],[-103.430237,24.408909],[-103.430149,24.408667],[-103.429609,24.408099],[-103.429389,24.407895],[-103.429073,24.407553],[-103.428826,24.407341],[-103.428723,24.407165],[-103.428566,24.406877],[-103.428562,24.406541],[-103.4287,24.406064],[-103.428898,24.405525],[-103.428881,24.40394],[-103.428778,24.403711],[-103.428606,24.403551],[-103.428353,24.40309],[-103.428408,24.402527],[-103.429327,24.401895],[-103.430359,24.401357],[-103.43003,24.399108],[-103.42834,24.397179],[-103.427814,24.395124],[-103.427832,24.393515],[-103.428082,24.392147],[-103.426385,24.390254],[-103.426073,24.389528],[-103.425881,24.389372],[-103.42587,24.38928],[-103.425779,24.388512],[-103.425149,24.387856],[-103.42562,24.387417],[-103.426393,24.387403],[-103.427758,24.386866],[-103.428027,24.386559],[-103.427928,24.385909],[-103.427517,24.384924],[-103.427698,24.384267],[-103.426057,24.382735],[-103.425487,24.382418],[-103.425462,24.382189],[-103.425693,24.380786],[-103.425429,24.380323],[-103.425377,24.379393],[-103.426802,24.378328],[-103.427958,24.377047],[-103.428554,24.375972],[-103.428473,24.375005],[-103.429777,24.374377],[-103.429551,24.373991],[-103.42938,24.373659],[-103.429231,24.373408],[-103.429016,24.372986],[-103.428778,24.372813],[-103.428496,24.37271],[-103.428236,24.372538],[-103.428065,24.372267],[-103.428013,24.372181],[-103.427951,24.371899],[-103.428017,24.371747],[-103.428124,24.371629],[-103.428387,24.371569],[-103.428595,24.371382],[-103.428599,24.371118],[-103.428372,24.370627],[-103.428272,24.370308],[-103.42815,24.369901],[-103.428947,24.369452],[-103.429126,24.36857],[-103.429427,24.368113],[-103.429625,24.367527],[-103.429711,24.366789],[-103.429696,24.366077],[-103.429944,24.365698],[-103.430036,24.365255],[-103.429815,24.364903],[-103.429699,24.364489],[-103.42983,24.364307],[-103.430401,24.364096],[-103.430734,24.363798],[-103.430792,24.363322],[-103.430762,24.362973],[-103.430645,24.362403],[-103.431176,24.361992],[-103.431182,24.36158],[-103.430845,24.360909],[-103.430482,24.360564],[-103.430523,24.360146],[-103.430772,24.359875],[-103.431669,24.359852],[-103.432502,24.35933],[-103.432932,24.35865],[-103.433144,24.358419],[-103.434463,24.356986],[-103.435411,24.355421],[-103.435736,24.355035],[-103.435989,24.353731],[-103.436124,24.352526],[-103.436039,24.351772],[-103.436878,24.351318],[-103.43744,24.350792],[-103.437756,24.350005],[-103.437864,24.349382],[-103.437731,24.349174],[-103.437344,24.348568],[-103.436721,24.347443],[-103.43681,24.34705],[-103.437237,24.346467],[-103.437591,24.34606],[-103.438185,24.345974],[-103.441331,24.341279],[-103.442368,24.342069],[-103.443148,24.341005],[-103.44893,24.338616],[-103.447474,24.337104],[-103.447268,24.336531],[-103.447311,24.335731],[-103.447482,24.334633],[-103.44771,24.333617],[-103.44834,24.3326],[-103.449031,24.33211],[-103.449951,24.332078],[-103.450504,24.33205],[-103.451211,24.331701],[-103.451841,24.330956],[-103.452595,24.330768],[-103.453686,24.330484],[-103.454323,24.330265],[-103.45465,24.330046],[-103.455046,24.3298],[-103.455302,24.329608],[-103.455635,24.329231],[-103.456074,24.328752],[-103.456412,24.328459],[-103.456952,24.328262],[-103.45703,24.328146],[-103.457424,24.327559],[-103.458276,24.32734],[-103.45877,24.326334],[-103.458972,24.325658],[-103.45923,24.32525],[-103.459841,24.324635],[-103.460444,24.323838],[-103.460328,24.323498],[-103.460902,24.323036],[-103.46142,24.322886],[-103.461982,24.322132],[-103.462123,24.321372],[-103.461993,24.321213],[-103.46204,24.321123],[-103.462401,24.320644],[-103.462697,24.320469],[-103.463008,24.320377],[-103.463346,24.320252],[-103.463899,24.320258],[-103.464204,24.320251],[-103.464465,24.320086],[-103.464705,24.319926],[-103.464938,24.319804],[-103.465198,24.31975],[-103.465381,24.319777],[-103.465543,24.319941],[-103.465821,24.320031],[-103.466401,24.320099],[-103.466885,24.320079],[-103.467293,24.320095],[-103.467499,24.319979],[-103.467685,24.319813],[-103.467883,24.319796],[-103.468109,24.319879],[-103.468926,24.320418],[-103.469361,24.320653],[-103.469627,24.320718],[-103.470057,24.320641],[-103.470307,24.320781],[-103.470617,24.321077],[-103.471034,24.321295],[-103.471354,24.321534],[-103.471687,24.321574],[-103.47218,24.321336],[-103.472491,24.321133],[-103.472671,24.320885],[-103.472911,24.320707],[-103.473215,24.320529],[-103.473647,24.320263],[-103.474134,24.320146],[-103.474555,24.320011],[-103.475207,24.319869],[-103.475843,24.319849],[-103.476293,24.31994],[-103.47685,24.320408],[-103.4772,24.320613],[-103.477476,24.32058],[-103.477773,24.320453],[-103.478283,24.320177],[-103.478774,24.319807],[-103.47918,24.319305],[-103.479573,24.319117],[-103.479994,24.318929],[-103.480957,24.318895],[-103.481464,24.318917],[-103.481838,24.318711],[-103.482173,24.318645],[-103.482622,24.318501],[-103.482976,24.318382],[-103.483302,24.318229],[-103.483577,24.318301],[-103.483815,24.318365],[-103.484063,24.318341],[-103.484208,24.318116],[-103.484243,24.31738],[-103.48444,24.316528],[-103.484551,24.316139],[-103.484813,24.315758],[-103.485171,24.315389],[-103.485557,24.315162],[-103.485672,24.315036],[-103.485702,24.314685],[-103.485657,24.31427],[-103.485644,24.313712],[-103.485636,24.313417],[-103.485655,24.313233],[-103.48572,24.313026],[-103.486102,24.312636],[-103.486313,24.312447],[-103.48634,24.312185],[-103.486166,24.311874],[-103.485931,24.311551],[-103.485886,24.311383],[-103.486189,24.31115],[-103.486652,24.310931],[-103.486851,24.310753],[-103.486858,24.310679],[-103.486393,24.309919],[-103.485942,24.309724],[-103.485411,24.309473],[-103.485228,24.309322],[-103.485066,24.308993],[-103.484929,24.308676],[-103.48527,24.30826],[-103.485549,24.307598],[-103.485601,24.306858],[-103.485668,24.306312],[-103.48577,24.305667],[-103.486018,24.304943],[-103.485987,24.30432],[-103.485822,24.30373],[-103.485364,24.303067],[-103.484982,24.302331],[-103.484813,24.301901],[-103.484837,24.301538],[-103.485002,24.30093],[-103.485404,24.300617],[-103.485793,24.300268],[-103.486065,24.300059],[-103.487022,24.299807],[-103.487883,24.299734],[-103.489196,24.299527],[-103.490187,24.299301],[-103.49058,24.298987],[-103.491102,24.298857],[-103.491452,24.298702],[-103.491635,24.298572],[-103.491992,24.298547],[-103.492249,24.298413],[-103.49259,24.298102],[-103.492847,24.29799],[-103.493072,24.297975],[-103.493428,24.298001],[-103.493673,24.297861],[-103.494004,24.297847],[-103.494211,24.298015],[-103.494458,24.298132],[-103.495027,24.298105],[-103.495666,24.298172],[-103.496057,24.29819],[-103.496414,24.298351],[-103.496851,24.29837],[-103.49715,24.298201],[-103.497658,24.297917],[-103.498035,24.297706],[-103.498447,24.297238],[-103.498951,24.296871],[-103.49958,24.296548],[-103.500199,24.296325],[-103.501161,24.296275],[-103.501765,24.296313],[-103.502523,24.296362],[-103.503148,24.296296],[-103.503511,24.296207],[-103.504079,24.296046],[-103.504547,24.295769],[-103.504708,24.295533],[-103.504689,24.295242],[-103.504454,24.295022],[-103.504162,24.294695],[-103.504057,24.293979],[-103.504109,24.293461],[-103.504337,24.292805],[-103.504291,24.292202],[-103.504398,24.291958],[-103.504705,24.291867],[-103.505011,24.291839],[-103.505081,24.291612],[-103.505198,24.291364],[-103.50537,24.291169],[-103.505688,24.291038],[-103.505993,24.291072],[-103.506389,24.291086],[-103.506651,24.290966],[-103.5067,24.290738],[-103.506646,24.290594],[-103.506721,24.290443],[-103.506835,24.290208],[-103.507052,24.289746],[-103.507322,24.28953],[-103.5075,24.289227],[-103.507222,24.288981],[-103.507025,24.2888],[-103.506873,24.288745],[-103.506755,24.287964],[-103.508065,24.287722],[-103.509474,24.288526],[-103.510535,24.288179],[-103.511867,24.288345],[-103.512833,24.288966],[-103.512814,24.288227],[-103.514444,24.286791],[-103.516714,24.287577],[-103.518508,24.288689],[-103.519741,24.2887],[-103.521087,24.28899],[-103.522608,24.289134],[-103.523205,24.289043],[-103.523375,24.289018],[-103.523758,24.288959],[-103.525014,24.289629],[-103.527249,24.291774],[-103.528538,24.291984],[-103.52956,24.292214],[-103.530098,24.292309],[-103.530864,24.293745],[-103.531243,24.293909],[-103.531736,24.293868],[-103.531987,24.29374],[-103.532134,24.293408],[-103.532376,24.293309],[-103.533024,24.293145],[-103.534156,24.292719],[-103.534586,24.291837],[-103.534711,24.291702],[-103.535197,24.291379],[-103.535326,24.291457],[-103.535482,24.291368],[-103.536051,24.291631],[-103.536192,24.291559],[-103.536936,24.291175],[-103.537816,24.290359],[-103.541356,24.290114],[-103.547697,24.291456],[-103.555024,24.289473],[-103.556686,24.288211],[-103.557124,24.288069],[-103.558859,24.287508],[-103.56835,24.286371],[-103.568357,24.281941],[-103.56742,24.276862],[-103.567839,24.275473],[-103.568092,24.274633],[-103.56845,24.273445],[-103.5686,24.272689],[-103.568706,24.271647],[-103.568796,24.270764],[-103.568662,24.270363],[-103.567444,24.270267],[-103.567518,24.269364],[-103.567585,24.268546],[-103.567544,24.267962],[-103.567335,24.267598],[-103.567233,24.267419],[-103.567325,24.266617],[-103.567381,24.26613],[-103.566588,24.264458],[-103.565612,24.2624],[-103.566418,24.261107],[-103.565826,24.26038],[-103.56475,24.260121],[-103.565376,24.258549],[-103.564662,24.257301],[-103.563999,24.257559],[-103.563152,24.257164],[-103.563003,24.257314],[-103.562891,24.256823],[-103.563363,24.256276],[-103.563515,24.255129],[-103.56338,24.254521],[-103.562824,24.254137],[-103.561988,24.252937],[-103.561636,24.253053],[-103.561486,24.252707],[-103.561473,24.252125],[-103.561398,24.251706],[-103.561124,24.25134],[-103.56081,24.251119],[-103.560912,24.25083],[-103.561074,24.250504],[-103.561295,24.25027],[-103.561586,24.249959],[-103.561167,24.249482],[-103.560583,24.249468],[-103.559961,24.249175],[-103.559692,24.248627],[-103.559639,24.248078],[-103.559839,24.247585],[-103.559802,24.247316],[-103.559869,24.247082],[-103.559798,24.246793],[-103.559515,24.246159],[-103.559458,24.245611],[-103.559098,24.244897],[-103.558585,24.243837],[-103.557667,24.242971],[-103.557108,24.242553],[-103.556493,24.242004],[-103.556489,24.241685],[-103.55666,24.241313],[-103.556866,24.241176],[-103.557437,24.240973],[-103.557871,24.240769],[-103.558012,24.240333],[-103.558156,24.239709],[-103.558366,24.23919],[-103.559222,24.23823],[-103.559684,24.237312],[-103.560083,24.236632],[-103.560437,24.235629],[-103.560644,24.234778],[-103.56073,24.233994],[-103.561401,24.233489],[-103.562029,24.232266],[-103.562578,24.231107],[-103.562597,24.230336],[-103.562576,24.229677],[-103.56294,24.228952],[-103.563158,24.22797],[-103.562715,24.2271],[-103.562182,24.226622],[-103.562065,24.225752],[-103.561936,24.22517],[-103.561756,24.224721],[-103.561888,24.224436],[-103.562086,24.223992],[-103.562314,24.22376],[-103.562119,24.223225],[-103.561912,24.222939],[-103.562103,24.222462],[-103.562854,24.222502],[-103.563052,24.222053],[-103.563247,24.221421],[-103.563303,24.220426],[-103.563388,24.219504],[-103.563598,24.218971],[-103.563888,24.218312],[-103.563829,24.217879],[-103.563847,24.217426],[-103.564136,24.216774],[-103.564157,24.21628],[-103.563937,24.215772],[-103.563745,24.215505],[-103.563662,24.215183],[-103.563996,24.21497],[-103.564593,24.215075],[-103.56491,24.214438],[-103.564862,24.21376],[-103.564384,24.213352],[-103.564404,24.212832],[-103.564484,24.212732],[-103.564551,24.212644],[-103.564697,24.21242],[-103.564883,24.212133],[-103.565109,24.211817],[-103.565523,24.211407],[-103.565519,24.211055],[-103.565298,24.210603],[-103.564795,24.210373],[-103.565004,24.209734],[-103.565133,24.209275],[-103.565169,24.208865],[-103.565375,24.207997],[-103.564634,24.207924],[-103.56419,24.207557],[-103.563958,24.207151],[-103.563617,24.206854],[-103.563099,24.206525],[-103.562837,24.206131],[-103.562871,24.205508],[-103.563159,24.204626],[-103.563106,24.203607],[-103.562566,24.202619],[-103.562073,24.202104],[-103.561754,24.201426],[-103.56145,24.200835],[-103.560654,24.20054],[-103.560246,24.200358],[-103.560243,24.200098],[-103.560456,24.199811],[-103.560776,24.199449],[-103.560355,24.199255],[-103.559863,24.198839],[-103.559258,24.198411],[-103.559123,24.197967],[-103.559213,24.19754],[-103.559182,24.197194],[-103.559204,24.19676],[-103.559726,24.196194],[-103.559813,24.1955],[-103.559956,24.195065],[-103.55979,24.194703],[-103.559666,24.194456],[-103.55954,24.194111],[-103.559536,24.193789],[-103.559602,24.193588],[-103.559734,24.193316],[-103.560356,24.193348],[-103.560479,24.192355],[-103.560748,24.192204],[-103.561164,24.191881],[-103.561367,24.191837],[-103.561553,24.191596],[-103.561834,24.19137],[-103.562253,24.191349],[-103.56276,24.190846],[-103.562931,24.190369],[-103.563088,24.189962],[-103.563078,24.189694],[-103.564065,24.189065],[-103.563839,24.188185],[-103.566064,24.185224],[-103.569366,24.183528],[-103.571118,24.182733],[-103.574252,24.181712],[-103.57631,24.180989],[-103.580972,24.179583],[-103.579558,24.178458],[-103.605766,24.151154],[-103.606548,24.149531],[-102.535944,22.751848],[-102.220445,21.674258],[-102.219304,21.67587],[-102.218601,21.676801],[-102.218585,21.676848],[-102.218008,21.677686],[-102.21833,21.678139],[-102.218768,21.678473],[-102.218727,21.678826],[-102.218614,21.679726],[-102.218542,21.683426],[-102.216389,21.684925],[-102.214232,21.686604],[-102.214267,21.694819],[-102.208241,21.693739],[-102.194246,21.691231],[-102.193245,21.691044],[-102.191711,21.690754],[-102.187412,21.689942],[-102.177886,21.688155],[-102.175934,21.69417],[-102.173772,21.700994],[-102.171433,21.707001],[-102.16643,21.706013],[-102.166595,21.702495],[-102.159001,21.70101],[-102.154857,21.700038],[-102.151606,21.703412],[-102.149356,21.704728],[-102.148189,21.705159],[-102.147308,21.705776],[-102.145587,21.704442],[-102.145302,21.704657],[-102.143892,21.705605],[-102.143639,21.706249],[-102.1421,21.705374],[-102.138762,21.713031],[-102.136346,21.720493],[-102.134351,21.722023],[-102.130265,21.723192],[-102.129412,21.72482],[-102.128288,21.72668],[-102.126049,21.725902],[-102.125598,21.725723],[-102.125529,21.725816],[-102.120893,21.736447],[-102.11957,21.735625],[-102.116213,21.736526],[-102.115579,21.736038],[-102.114776,21.738701],[-102.114719,21.738828],[-102.113864,21.740761],[-102.115959,21.742332],[-102.116427,21.743062],[-102.115912,21.744678],[-102.11466,21.744475],[-102.113388,21.745265],[-102.112991,21.7458],[-102.111741,21.745508],[-102.11113,21.747031],[-102.109343,21.749437],[-102.106608,21.750924],[-102.104288,21.750974],[-102.104663,21.751522],[-102.104657,21.751851],[-102.104625,21.753417],[-102.104141,21.753498],[-102.103563,21.753398],[-102.102495,21.75365],[-102.1022,21.753916],[-102.102389,21.7541],[-102.102282,21.754639],[-102.102083,21.754907],[-102.102076,21.755267],[-102.102355,21.755814],[-102.102818,21.756815],[-102.103188,21.757634],[-102.103367,21.758359],[-102.102866,21.759253],[-102.102456,21.760419],[-102.102057,21.761044],[-102.101563,21.761577],[-102.1002,21.762095],[-102.099137,21.762076],[-102.098559,21.761976],[-102.098375,21.761521],[-102.098253,21.762783],[-102.092795,21.765124],[-102.092521,21.765258],[-102.088696,21.767128],[-102.086181,21.767264],[-102.087311,21.768728],[-102.089108,21.770655],[-102.090331,21.772301],[-102.091742,21.774222],[-102.093251,21.776054],[-102.094571,21.777702],[-102.093096,21.778939],[-102.090044,21.781415],[-102.083136,21.787017],[-102.083074,21.787067],[-102.075448,21.783603],[-102.073977,21.782934],[-102.07385,21.782906],[-102.07372,21.783197],[-102.071963,21.782655],[-102.06896,21.788063],[-102.068041,21.789716],[-102.065975,21.793437],[-102.065934,21.793434],[-102.065835,21.793621],[-102.064508,21.796205],[-102.063721,21.797736],[-102.061666,21.798963],[-102.059316,21.800456],[-102.05798,21.80187],[-102.057573,21.80489],[-102.057012,21.806074],[-102.05697,21.806517],[-102.056824,21.806472],[-102.056722,21.806681],[-102.056659,21.80682],[-102.056754,21.806848],[-102.056483,21.80719],[-102.055447,21.809374],[-102.054578,21.811868],[-102.054146,21.81183],[-102.053867,21.81335],[-102.052966,21.813255],[-102.05295,21.813215],[-102.052867,21.813338],[-102.053761,21.815183],[-102.053918,21.815223],[-102.054658,21.815683],[-102.054941,21.815902],[-102.055124,21.816357],[-102.049596,21.819783],[-102.045921,21.822059],[-102.044756,21.822309],[-102.043891,21.822023],[-102.042723,21.822544],[-102.041743,21.823068],[-102.042063,21.826322],[-102.041349,21.828205],[-102.041216,21.829105],[-102.041203,21.829748],[-102.041078,21.835827],[-102.038621,21.835624],[-102.038534,21.839074],[-102.03832,21.847585],[-102.038279,21.849196],[-102.038246,21.850505],[-102.038418,21.853198],[-102.038165,21.853169],[-102.023336,21.851461],[-102.020794,21.851168],[-102.019954,21.862536],[-102.019852,21.862574],[-101.998934,21.869756],[-101.998909,21.869765],[-101.996616,21.870549],[-101.98842,21.873363],[-101.983086,21.875196],[-101.971682,21.879111],[-101.970969,21.879356],[-101.969644,21.879811],[-101.959877,21.883163],[-101.956906,21.884183],[-101.953313,21.885397],[-101.952574,21.885647],[-101.950757,21.886263],[-101.947363,21.887413],[-101.944625,21.888341],[-101.94331,21.888786],[-101.941499,21.8894],[-101.941243,21.889486],[-101.938093,21.890554],[-101.935177,21.891542],[-101.931079,21.89293],[-101.926266,21.89456],[-101.92024,21.896601],[-101.917603,21.897494],[-101.915561,21.898185],[-101.910072,21.900043],[-101.907078,21.901057],[-101.904156,21.902047],[-101.901297,21.903014],[-101.897615,21.904261],[-101.880213,21.91015],[-101.847263,21.907961],[-101.838003,21.907344],[-101.835995,21.93282],[-101.835289,21.941771],[-101.845122,21.944168],[-101.84519,21.944024],[-101.846833,21.943576],[-101.848656,21.944067],[-101.848875,21.944092],[-101.850596,21.943709],[-101.8513,21.943485],[-101.854194,21.94329],[-101.855237,21.943498],[-101.856603,21.943148],[-101.856755,21.943585],[-101.857824,21.944074],[-101.859098,21.945042],[-101.863596,21.946214],[-101.864364,21.947083],[-101.865306,21.947511],[-101.866015,21.945779],[-101.866231,21.945605],[-101.866522,21.945558],[-101.867551,21.945144],[-101.868214,21.94556],[-101.872281,21.946503],[-101.872671,21.946514],[-101.874954,21.946096],[-101.878123,21.944299],[-101.878211,21.94428],[-101.878313,21.944204],[-101.878997,21.943972],[-101.879655,21.943895],[-101.883512,21.939575],[-101.883851,21.939355],[-101.884591,21.939222],[-101.884847,21.938892],[-101.881762,21.938132],[-101.8858,21.932612],[-101.890375,21.95095],[-101.89778,21.958388],[-101.896613,21.960961],[-101.896528,21.961207],[-101.896417,21.961442],[-101.896413,21.961552],[-101.896359,21.961759],[-101.896155,21.962839],[-101.895988,21.963154],[-101.895866,21.963263],[-101.895831,21.963332],[-101.896022,21.968211],[-101.896029,21.968337],[-101.89619,21.968898],[-101.89627,21.969093],[-101.896316,21.969606],[-101.896563,21.970111],[-101.896616,21.970419],[-101.896631,21.970645],[-101.896652,21.970728],[-101.896905,21.971206],[-101.89701,21.971621],[-101.897232,21.972352],[-101.897496,21.973361],[-101.897362,21.976939],[-101.897525,21.977246],[-101.898249,21.978222],[-101.898826,21.982467],[-101.898227,21.983263],[-101.898833,21.983646],[-101.898799,21.983737],[-101.898658,21.984112],[-101.899715,21.986068],[-101.90007,21.986724],[-101.90372,21.985826],[-101.909446,21.989024],[-101.910862,21.992389],[-101.911549,21.994508],[-101.912598,21.997486],[-101.911565,21.995566],[-101.910226,21.994199],[-101.908922,21.993088],[-101.906835,21.992006],[-101.90349,21.990988],[-101.898833,21.989967],[-101.89831,21.989927],[-101.898201,21.990401],[-101.897681,21.990253],[-101.897763,21.989886],[-101.894734,21.989656],[-101.895271,21.987921],[-101.895115,21.98449],[-101.894695,21.983444],[-101.89334,21.982336],[-101.892785,21.980331],[-101.891253,21.976592],[-101.888822,21.977685],[-101.879747,21.982532],[-101.873663,21.985793],[-101.871078,21.986994],[-101.871045,21.986865],[-101.869109,21.986964],[-101.869367,21.987789],[-101.869077,21.987924],[-101.868223,21.988336],[-101.867555,21.988649],[-101.865139,21.989742],[-101.864731,21.98997],[-101.863799,21.990016],[-101.863598,21.991439],[-101.86258,21.991356],[-101.86342,21.992931],[-101.863217,21.993036],[-101.862765,21.994214],[-101.862821,21.994239],[-101.862627,21.994768],[-101.86243,21.995203],[-101.862225,21.995302],[-101.86213,21.995593],[-101.862142,21.996215],[-101.862102,21.996839],[-101.861923,21.997224],[-101.861928,21.9979],[-101.861733,21.99874],[-101.861136,21.998697],[-101.861038,21.998746],[-101.861304,21.999768],[-101.861527,22.001342],[-101.861637,22.001784],[-101.861625,22.001989],[-101.861664,22.002011],[-101.861498,22.003456],[-101.861541,22.003674],[-101.861594,22.003844],[-101.861626,22.003936],[-101.861859,22.004263],[-101.861931,22.005669],[-101.862251,22.006151],[-101.862227,22.006163],[-101.861237,22.005817],[-101.860777,22.007162],[-101.860796,22.0072],[-101.860543,22.007694],[-101.860372,22.007885],[-101.862078,22.008728],[-101.862156,22.008777],[-101.861686,22.010914],[-101.861024,22.010682],[-101.861042,22.011632],[-101.861074,22.01278],[-101.861168,22.012802],[-101.862171,22.014685],[-101.861192,22.014586],[-101.861308,22.014686],[-101.861334,22.014799],[-101.860657,22.01687],[-101.860582,22.016921],[-101.86055,22.01701],[-101.860432,22.017034],[-101.860387,22.017382],[-101.86073,22.017288],[-101.860831,22.017289],[-101.860833,22.018438],[-101.861274,22.018583],[-101.861232,22.019162],[-101.86121,22.019501],[-101.861174,22.020249],[-101.861163,22.020796],[-101.861146,22.02105],[-101.861144,22.021106],[-101.861107,22.021096],[-101.858328,22.020898],[-101.858325,22.021032],[-101.858973,22.021475],[-101.859742,22.021706],[-101.859815,22.02176],[-101.860288,22.021716],[-101.861066,22.02209],[-101.860884,22.02356],[-101.860927,22.023693],[-101.860963,22.023815],[-101.86097,22.023866],[-101.86091,22.024465],[-101.860882,22.02496],[-101.86083,22.025637],[-101.860794,22.02587],[-101.860814,22.02595],[-101.860777,22.026246],[-101.860586,22.027977],[-101.862065,22.028216],[-101.861854,22.028694],[-101.86167,22.028884],[-101.861382,22.028781],[-101.859021,22.027985],[-101.847342,22.027336],[-101.84059,22.026635],[-101.836857,22.024197],[-101.832919,22.023228],[-101.831394,22.02237],[-101.830497,22.021535],[-101.82801,22.021779],[-101.827268,22.021598],[-101.82658,22.021114],[-101.825798,22.020958],[-101.825453,22.020979],[-101.824659,22.021258],[-101.82201,22.021231],[-101.821454,22.021297],[-101.820993,22.021181],[-101.820498,22.021156],[-101.8189,22.020802],[-101.815673,22.019983],[-101.815689,22.020152],[-101.815494,22.020361],[-101.814976,22.020714],[-101.814182,22.021082],[-101.814164,22.021266],[-101.81403,22.021371],[-101.813122,22.021733],[-101.811936,22.022271],[-101.810567,22.022402],[-101.809385,22.022922],[-101.808945,22.02289],[-101.807499,22.023202],[-101.807632,22.02457],[-101.80324,22.029715],[-101.802643,22.030384],[-101.801944,22.030676],[-101.801436,22.030996],[-101.801244,22.030273],[-101.800974,22.03022],[-101.801122,22.029833],[-101.800662,22.029599],[-101.80068,22.029348],[-101.801096,22.02915],[-101.801166,22.028749],[-101.801168,22.028348],[-101.802003,22.02819],[-101.801886,22.027818],[-101.803498,22.026867],[-101.803425,22.026478],[-101.80359,22.0259],[-101.804137,22.025706],[-101.804263,22.025253],[-101.794547,22.023527],[-101.793414,22.023261],[-101.78443,22.024098],[-101.784759,22.022748],[-101.783136,22.021241],[-101.78302,22.021182],[-101.78294,22.021141],[-101.782701,22.020917],[-101.780009,22.017816],[-101.7789,22.0176],[-101.778822,22.015288],[-101.777229,22.015345],[-101.777255,22.014629],[-101.777272,22.013294],[-101.777423,22.011412],[-101.777637,22.008322],[-101.777633,22.007302],[-101.775654,22.007409],[-101.775574,22.007415],[-101.774294,22.007482],[-101.771716,22.007705],[-101.759655,22.009043],[-101.755027,22.01209],[-101.753289,22.013199],[-101.751004,22.014645],[-101.74663,22.012065],[-101.743622,22.010198],[-101.740503,22.008298],[-101.73777,22.006699],[-101.735902,22.005625],[-101.733363,22.004101],[-101.73295,22.003847],[-101.730141,22.002184],[-101.729975,22.002138],[-101.730049,22.001924],[-101.731245,21.998449],[-101.731499,21.99775],[-101.731822,21.996744],[-101.731991,21.996169],[-101.732082,21.995884],[-101.732321,21.995069],[-101.729984,21.993554],[-101.72514,21.990686],[-101.723332,21.989683],[-101.720236,21.987712],[-101.717343,21.986013],[-101.714424,21.98427],[-101.714783,21.98361],[-101.715228,21.982755],[-101.71348,21.981941],[-101.712109,21.981252],[-101.711248,21.980885],[-101.709694,21.980096],[-101.709115,21.979926],[-101.709642,21.978856],[-101.710334,21.977556],[-101.709061,21.976944],[-101.709863,21.97536],[-101.710658,21.973935],[-101.707972,21.972782],[-101.706418,21.972048],[-101.70571,21.971701],[-101.70541,21.972252],[-101.704945,21.972004],[-101.703666,21.971292],[-101.703291,21.971073],[-101.701721,21.970794],[-101.70058,21.970569],[-101.700133,21.970526],[-101.697459,21.969343],[-101.694672,21.968056],[-101.688651,21.965259],[-101.684851,21.963589],[-101.682914,21.962885],[-101.682386,21.962239],[-101.681328,21.960675],[-101.68104,21.96025],[-101.6768,21.955079],[-101.672484,21.948933],[-101.669114,21.945765],[-101.668566,21.945811],[-101.667653,21.945787],[-101.667658,21.945552],[-101.66708,21.945094],[-101.666582,21.944826],[-101.666133,21.944557],[-101.664987,21.943933],[-101.664239,21.943485],[-101.663492,21.943083],[-101.662481,21.942728],[-101.661181,21.942304],[-101.660507,21.942112],[-101.659141,21.941595],[-101.659164,21.941544],[-101.659665,21.940619],[-101.657102,21.939255],[-101.658256,21.937222],[-101.658973,21.936005],[-101.657232,21.934404],[-101.657246,21.93435],[-101.6564,21.933571],[-101.657328,21.930945],[-101.657868,21.92983],[-101.657869,21.92979],[-101.655165,21.930455],[-101.654562,21.930605],[-101.654462,21.929842],[-101.652366,21.927848],[-101.652327,21.927781],[-101.654141,21.92737],[-101.654128,21.927288],[-101.653868,21.925864],[-101.653217,21.925893],[-101.652486,21.924466],[-101.65248,21.924416],[-101.65321,21.924295],[-101.653988,21.92416],[-101.653644,21.923838],[-101.653559,21.923758],[-101.651994,21.922424],[-101.649577,21.920292],[-101.649993,21.915442],[-101.650418,21.910638],[-101.650696,21.907675],[-101.650117,21.90741],[-101.64888,21.90702],[-101.648306,21.907182],[-101.64727,21.907834],[-101.646641,21.907953],[-101.646034,21.908368],[-101.645706,21.908836],[-101.64542,21.909061],[-101.645155,21.909501],[-101.64471,21.909799],[-101.644281,21.909617],[-101.643715,21.909366],[-101.643323,21.909212],[-101.643011,21.909101],[-101.642814,21.90898],[-101.642405,21.908817],[-101.641822,21.908703],[-101.641342,21.908532],[-101.639347,21.908116],[-101.638509,21.908129],[-101.637813,21.907819],[-101.637417,21.907733],[-101.636776,21.907743],[-101.636104,21.908129],[-101.635654,21.908536],[-101.635319,21.908771],[-101.634329,21.908989],[-101.631732,21.909617],[-101.631342,21.909853],[-101.630836,21.910079],[-101.630168,21.910378],[-101.629481,21.910572],[-101.628945,21.910903],[-101.62715,21.913199],[-101.626936,21.913526],[-101.626238,21.914593],[-101.625166,21.915299],[-101.624343,21.915024],[-101.623159,21.916893],[-101.621939,21.916776],[-101.620919,21.91762],[-101.620395,21.918639],[-101.620072,21.91984],[-101.619893,21.920854],[-101.619866,21.92205],[-101.619541,21.923158],[-101.619022,21.924453],[-101.618399,21.925429],[-101.617639,21.927004],[-101.617224,21.928147],[-101.616884,21.928855],[-101.61674,21.929387],[-101.616712,21.929448],[-101.6159,21.928942],[-101.615787,21.928703],[-101.615376,21.92779],[-101.614867,21.926925],[-101.614462,21.926334],[-101.614299,21.925509],[-101.614044,21.925053],[-101.613729,21.924001],[-101.613168,21.922999],[-101.612602,21.921674],[-101.612144,21.9209],[-101.61214,21.920716],[-101.611679,21.919758],[-101.611452,21.919231],[-101.610852,21.918827],[-101.610304,21.918514],[-101.609759,21.918385],[-101.609063,21.918074],[-101.608121,21.917767],[-101.607474,21.917456],[-101.606925,21.917097],[-101.605976,21.916422],[-101.604834,21.91598],[-101.603687,21.915263],[-101.602988,21.914815],[-101.601989,21.914095],[-101.60129,21.913646],[-101.600685,21.912874],[-101.600577,21.91237],[-101.600373,21.912006],[-101.599807,21.911264],[-101.598685,21.910884],[-101.598386,21.910776],[-101.597628,21.910485],[-101.597282,21.910369],[-101.596807,21.910342],[-101.596446,21.910275],[-101.595849,21.909963],[-101.595552,21.909921],[-101.594465,21.909755],[-101.593672,21.909583],[-101.59244,21.909603],[-101.592293,21.909651],[-101.59228,21.909644],[-101.592185,21.910747],[-101.592173,21.91079],[-101.591982,21.913068],[-101.591967,21.913203],[-101.591803,21.915046],[-101.591796,21.915094],[-101.591212,21.915265],[-101.590858,21.915434],[-101.588669,21.915171],[-101.587441,21.915009],[-101.58707,21.914959],[-101.586107,21.914835],[-101.585234,21.914713],[-101.584737,21.914639],[-101.583855,21.914532],[-101.583392,21.914495],[-101.58351,21.914864],[-101.583661,21.91509],[-101.583667,21.915522],[-101.583606,21.915576],[-101.583313,21.915705],[-101.582845,21.915841],[-101.58091,21.916332],[-101.578398,21.91709],[-101.578407,21.916931],[-101.578491,21.915993],[-101.577928,21.915869],[-101.577916,21.915848],[-101.577231,21.91585],[-101.576144,21.915862],[-101.574037,21.915887],[-101.57326,21.91589],[-101.572731,21.91588],[-101.572119,21.917451],[-101.571988,21.917432],[-101.571139,21.917289],[-101.570117,21.917118],[-101.569806,21.917081],[-101.569434,21.905878],[-101.569353,21.903344],[-101.569139,21.894731],[-101.568683,21.891384],[-101.567896,21.886645],[-101.567369,21.883096],[-101.566871,21.879438],[-101.566424,21.876369],[-101.565182,21.876446],[-101.564394,21.87234],[-101.564438,21.870702],[-101.56458,21.869234],[-101.564565,21.866752],[-101.5646,21.866269],[-101.564604,21.865939],[-101.564684,21.865792],[-101.564693,21.864161],[-101.564073,21.861906],[-101.563209,21.857861],[-101.563224,21.85749],[-101.562755,21.855387],[-101.562838,21.854124],[-101.56335,21.852151],[-101.563813,21.85024],[-101.564386,21.848833],[-101.564544,21.848174],[-101.564971,21.846236],[-101.565175,21.845288],[-101.565298,21.844562],[-101.565548,21.842966],[-101.565748,21.842489],[-101.565964,21.842033],[-101.565874,21.84196],[-101.565326,21.841528],[-101.563781,21.840845],[-101.563643,21.840748],[-101.562074,21.840055],[-101.56197,21.840012],[-101.561946,21.839751],[-101.561911,21.839234],[-101.56191,21.839179],[-101.561419,21.836114],[-101.561421,21.836051],[-101.552237,21.834683],[-101.54823,21.834086],[-101.547301,21.832034],[-101.545713,21.828632],[-101.544086,21.825267],[-101.544005,21.825097],[-101.543995,21.82505],[-101.543914,21.824884],[-101.543839,21.824721],[-101.54376,21.824554],[-101.543666,21.824392],[-101.543574,21.824229],[-101.543516,21.824053],[-101.543434,21.823894],[-101.543347,21.82373],[-101.543266,21.823538],[-101.543146,21.823312],[-101.543066,21.823149],[-101.542949,21.822893],[-101.542923,21.822841],[-101.542878,21.822729],[-101.542792,21.822553],[-101.542712,21.822388],[-101.541542,21.819965],[-101.540712,21.818266],[-101.538999,21.814612],[-101.53711,21.810624],[-101.537012,21.810462],[-101.536376,21.810194],[-101.535695,21.80989],[-101.534815,21.809775],[-101.534317,21.809688],[-101.5333,21.809554],[-101.527824,21.809178],[-101.527579,21.809652],[-101.527353,21.809906],[-101.529764,21.813108],[-101.522044,21.818023],[-101.51976,21.812979],[-101.518835,21.813637],[-101.51782,21.814756],[-101.516433,21.811947],[-101.51474,21.808111],[-101.514077,21.806834],[-101.510542,21.799058],[-101.510126,21.799384],[-101.508265,21.800863],[-101.508241,21.800813],[-101.496331,21.80994],[-101.496346,21.809987],[-101.498766,21.816717],[-101.500851,21.822662],[-101.502618,21.827515],[-101.503515,21.830124],[-101.495053,21.835704],[-101.491951,21.837818],[-101.490073,21.839113],[-101.489269,21.839608],[-101.487957,21.840627],[-101.486091,21.841887],[-101.486339,21.843166],[-101.486398,21.84444],[-101.486621,21.845611],[-101.486619,21.846682],[-101.486732,21.847943],[-101.487045,21.849003],[-101.48751,21.850785],[-101.487907,21.852398],[-101.488183,21.853428],[-101.483649,21.856453],[-101.483898,21.857212],[-101.484173,21.858145],[-101.480411,21.859258],[-101.481173,21.861332],[-101.48109,21.861356],[-101.483191,21.867583],[-101.483196,21.867681],[-101.480997,21.868168],[-101.479119,21.868588],[-101.476426,21.869194],[-101.474706,21.869673],[-101.472723,21.870101],[-101.470835,21.870587],[-101.470704,21.870622],[-101.470393,21.870703],[-101.46986,21.870815],[-101.468906,21.87107],[-101.468816,21.870241],[-101.468084,21.870266],[-101.468256,21.872819],[-101.468362,21.874021],[-101.468382,21.874321],[-101.468121,21.874336],[-101.468342,21.877117],[-101.467897,21.877131],[-101.467992,21.877988],[-101.466838,21.878142],[-101.466849,21.878639],[-101.466595,21.878645],[-101.466554,21.879119],[-101.466504,21.87978],[-101.466458,21.880225],[-101.466185,21.880349],[-101.465801,21.880406],[-101.46276,21.881554],[-101.459942,21.882509],[-101.457493,21.883449],[-101.456474,21.883734],[-101.456196,21.883776],[-101.454801,21.8843],[-101.453352,21.884825],[-101.452709,21.885086],[-101.452203,21.885386],[-101.450197,21.886713],[-101.449384,21.887218],[-101.44781,21.888263],[-101.446641,21.889109],[-101.445335,21.889978],[-101.445955,21.892052],[-101.444666,21.892231],[-101.443713,21.892349],[-101.443279,21.892402],[-101.442989,21.892432],[-101.442739,21.892465],[-101.440675,21.892716],[-101.440763,21.892896],[-101.442014,21.895521],[-101.442949,21.897739],[-101.44414,21.900674],[-101.444977,21.902637],[-101.446069,21.905318],[-101.446394,21.906256],[-101.445944,21.906507],[-101.445546,21.906823],[-101.445128,21.907118],[-101.444906,21.907274],[-101.444163,21.907807],[-101.443123,21.908443],[-101.441803,21.909338],[-101.440112,21.910265],[-101.439738,21.909332],[-101.438902,21.907112],[-101.437453,21.903972],[-101.436156,21.900969],[-101.435527,21.899249],[-101.434596,21.897065],[-101.434034,21.897457],[-101.433578,21.897774],[-101.432565,21.898481],[-101.431997,21.8988],[-101.431703,21.898964],[-101.430536,21.899664],[-101.42949,21.900248],[-101.428269,21.901113],[-101.427552,21.901624],[-101.427346,21.901771],[-101.42565,21.90244],[-101.423311,21.903497],[-101.41802,21.905394],[-101.415315,21.906381],[-101.41354,21.907165],[-101.410358,21.908643],[-101.410228,21.908694],[-101.410806,21.910137],[-101.412032,21.913339],[-101.412307,21.914057],[-101.412679,21.915031],[-101.412731,21.916154],[-101.412584,21.917128],[-101.412274,21.918014],[-101.411991,21.918656],[-101.413245,21.919579],[-101.41532,21.920944],[-101.417867,21.922774],[-101.420118,21.924544],[-101.421947,21.925924],[-101.424564,21.927921],[-101.427084,21.929849],[-101.428167,21.930651],[-101.428401,21.930797],[-101.430384,21.932299],[-101.430088,21.932827],[-101.42974,21.933302],[-101.429173,21.934361],[-101.428278,21.93471],[-101.426888,21.935109],[-101.425822,21.935965],[-101.424889,21.936777],[-101.424227,21.937543],[-101.423567,21.938519],[-101.422903,21.939159],[-101.422412,21.939461],[-101.42115,21.939577],[-101.42051,21.939009],[-101.419647,21.938966],[-101.419125,21.939486],[-101.418295,21.939976],[-101.4171,21.940332],[-101.416396,21.940862],[-101.41628,21.941625],[-101.415867,21.941894],[-101.415262,21.941778],[-101.414658,21.942128],[-101.414097,21.942629],[-101.413909,21.943571],[-101.413514,21.944156],[-101.412982,21.944545],[-101.412115,21.945117],[-101.411281,21.94561],[-101.410545,21.946036],[-101.409473,21.946586],[-101.409381,21.946632],[-101.40931,21.946619],[-101.408084,21.947218],[-101.407619,21.947369],[-101.406367,21.947891],[-101.405161,21.948492],[-101.404623,21.950478],[-101.404205,21.951862],[-101.404343,21.952634],[-101.404343,21.952698],[-101.403975,21.953533],[-101.403044,21.955075],[-101.403009,21.955969],[-101.403028,21.955973],[-101.402367,21.956404],[-101.40154,21.956775],[-101.400763,21.957352],[-101.400601,21.958037],[-101.400498,21.958587],[-101.400413,21.959438],[-101.40065,21.960149],[-101.400818,21.960624],[-101.40018,21.96159],[-101.399293,21.962348],[-101.399619,21.963147],[-101.399669,21.963708],[-101.398589,21.965155],[-101.39798,21.965526],[-101.397168,21.965803],[-101.397186,21.967046],[-101.397185,21.967344],[-101.39715,21.967762],[-101.397077,21.967774],[-101.396403,21.967797],[-101.396384,21.967951],[-101.395937,21.96806],[-101.395754,21.968055],[-101.395666,21.967874],[-101.395223,21.96789],[-101.395108,21.967868],[-101.393701,21.967892],[-101.393558,21.96809],[-101.393575,21.968093],[-101.392733,21.968771],[-101.391625,21.969823],[-101.391547,21.969919],[-101.391066,21.970098],[-101.390867,21.970436],[-101.390489,21.971149],[-101.38862,21.97136],[-101.388315,21.972931],[-101.388086,21.973847],[-101.386851,21.973865],[-101.385871,21.973903],[-101.383912,21.973991],[-101.383918,21.97412],[-101.383896,21.974121],[-101.38395,21.974803],[-101.384009,21.976041],[-101.384136,21.97709],[-101.384189,21.978115],[-101.384273,21.979646],[-101.384436,21.982296],[-101.37659,21.981184],[-101.376511,21.981485],[-101.376063,21.982008],[-101.375749,21.982711],[-101.375442,21.98384],[-101.375188,21.984238],[-101.374932,21.984546],[-101.374907,21.984972],[-101.375017,21.985729],[-101.375029,21.986428],[-101.374946,21.98734],[-101.374637,21.988317],[-101.374419,21.988897],[-101.374006,21.989572],[-101.373815,21.989818],[-101.373366,21.990249],[-101.37235,21.990795],[-101.372248,21.99085],[-101.371748,21.991229],[-101.370847,21.991478],[-101.370303,21.991452],[-101.369454,21.991295],[-101.368508,21.990642],[-101.367701,21.990089],[-101.366892,21.990353],[-101.365187,21.990783],[-101.364083,21.991184],[-101.363927,21.99124],[-101.363764,21.99128],[-101.36412,21.990201],[-101.36219,21.99029],[-101.36054,21.995241],[-101.358824,21.99533],[-101.355417,21.995558],[-101.354316,21.995549],[-101.353794,21.995574],[-101.352062,21.995658],[-101.349729,21.995805],[-101.349226,21.995789],[-101.348724,21.995773],[-101.345408,21.99603],[-101.34201,21.996058],[-101.338158,21.996363],[-101.334924,21.99653],[-101.333549,21.996608],[-101.332326,21.996638],[-101.331082,21.996809],[-101.32948,21.996965],[-101.327485,21.997026],[-101.327694,21.998918],[-101.327697,21.999698],[-101.32651,21.999728],[-101.326618,22.000825],[-101.32672,22.002621],[-101.326796,22.005079],[-101.329815,22.004819],[-101.329397,22.007169],[-101.33321,22.007015],[-101.335422,22.007116],[-101.335449,22.006764],[-101.337535,22.006797],[-101.337491,22.006171],[-101.338668,22.006186],[-101.338632,22.00603],[-101.339113,22.006012],[-101.342624,22.005962],[-101.345298,22.00588],[-101.345027,22.009972],[-101.344743,22.014142],[-101.345817,22.014],[-101.346556,22.013897],[-101.347588,22.013752],[-101.352439,22.013082],[-101.3518,22.015669],[-101.351395,22.017241],[-101.351139,22.018238],[-101.350481,22.020766],[-101.349831,22.023243],[-101.348572,22.028071],[-101.346019,22.027066],[-101.34271,22.025769],[-101.339329,22.024433],[-101.337765,22.025133],[-101.337783,22.024991],[-101.338321,22.021839],[-101.339209,22.015541],[-101.339235,22.014986],[-101.337839,22.015185],[-101.335773,22.015496],[-101.333662,22.015735],[-101.332731,22.015842],[-101.331562,22.015972],[-101.32939,22.016248],[-101.327942,22.016468],[-101.327416,22.019771],[-101.327208,22.021498],[-101.327851,22.021906],[-101.328641,22.022469],[-101.329282,22.022849],[-101.330435,22.023474],[-101.332467,22.024611],[-101.332452,22.024742],[-101.332135,22.027727],[-101.332036,22.027772],[-101.331948,22.028361],[-101.331468,22.031469],[-101.330901,22.035315],[-101.351675,22.043789],[-101.354621,22.030413],[-101.362393,22.033509],[-101.362667,22.032297],[-101.363899,22.026848],[-101.364004,22.02638],[-101.364967,22.022066],[-101.365692,22.018548],[-101.365785,22.018561],[-101.369097,22.018989],[-101.377087,22.019994],[-101.379598,22.020327],[-101.382755,22.020738],[-101.381855,22.024202],[-101.380691,22.028759],[-101.378375,22.028648],[-101.377169,22.028573],[-101.375669,22.02841],[-101.374655,22.028296],[-101.373283,22.028075],[-101.371293,22.027716],[-101.369738,22.027517],[-101.369529,22.028829],[-101.369001,22.030964],[-101.368573,22.033031],[-101.370616,22.033242],[-101.373283,22.033605],[-101.374192,22.033711],[-101.375898,22.033885],[-101.375727,22.034686],[-101.375538,22.035387],[-101.375028,22.037632],[-101.374464,22.041365],[-101.377609,22.042127],[-101.377078,22.044962],[-101.374784,22.044418],[-101.374198,22.04428],[-101.3723,22.043872],[-101.370026,22.04329],[-101.367356,22.042607],[-101.365968,22.042245],[-101.364203,22.041786],[-101.361012,22.041001],[-101.360614,22.042704],[-101.36,22.044759],[-101.358643,22.044172],[-101.356791,22.043488],[-101.356455,22.043555],[-101.355202,22.045141],[-101.354176,22.044704],[-101.354069,22.044827],[-101.353099,22.048307],[-101.352415,22.048088],[-101.35167,22.051613],[-101.351629,22.051599],[-101.347852,22.050188],[-101.347456,22.050033],[-101.346587,22.04969],[-101.345885,22.053606],[-101.346734,22.053866],[-101.347668,22.05416],[-101.348559,22.054426],[-101.349562,22.054745],[-101.350528,22.05504],[-101.351512,22.055351],[-101.352455,22.055652],[-101.353359,22.055925],[-101.35329,22.05657],[-101.353145,22.057461],[-101.352843,22.05916],[-101.352708,22.059954],[-101.352554,22.060799],[-101.352387,22.061671],[-101.352078,22.063209],[-101.351892,22.064101],[-101.351678,22.065009],[-101.351563,22.065567],[-101.351176,22.067554],[-101.352438,22.068085],[-101.354751,22.068914],[-101.35424,22.071735],[-101.352632,22.079167],[-101.350859,22.08732],[-101.350763,22.087759],[-101.349621,22.090063],[-101.348635,22.092466],[-101.347468,22.095064],[-101.346321,22.097545],[-101.345279,22.099963],[-101.344092,22.10262],[-101.343025,22.10515],[-101.342441,22.106382],[-101.338925,22.114246],[-101.338308,22.115619],[-101.329382,22.135605],[-101.327745,22.144112],[-101.337693,22.143523],[-101.341257,22.152133],[-101.351306,22.17676],[-101.34692,22.182319],[-101.332731,22.200059],[-101.324253,22.209893],[-101.33234,22.212042],[-101.332363,22.212215],[-101.332636,22.212788],[-101.333508,22.213795],[-101.334066,22.214396],[-101.336386,22.217351],[-101.336469,22.217462],[-101.338724,22.220164],[-101.340524,22.220524],[-101.345204,22.224304],[-101.348695,22.226046],[-101.352854,22.229204],[-101.356147,22.232512],[-101.358002,22.234632],[-101.361671,22.238484],[-101.364449,22.244416],[-101.36328,22.248141],[-101.363103,22.248738],[-101.363121,22.248777],[-101.362911,22.249492],[-101.363426,22.249441],[-101.363453,22.2495],[-101.363829,22.249838],[-101.364265,22.250362],[-101.364645,22.250966],[-101.365164,22.251303],[-101.365398,22.251723],[-101.365628,22.251826],[-101.366284,22.251896],[-101.366345,22.252107],[-101.366496,22.252661],[-101.367045,22.253103],[-101.367501,22.25315],[-101.367984,22.253038],[-101.368262,22.252715],[-101.368691,22.252814],[-101.368921,22.25328],[-101.369465,22.253211],[-101.36949,22.25326],[-101.370011,22.253276],[-101.370603,22.253294],[-101.371232,22.253564],[-101.371266,22.253594],[-101.371307,22.254239],[-101.371469,22.25431],[-101.371729,22.254807],[-101.371559,22.255354],[-101.371956,22.255563],[-101.372653,22.255342],[-101.372855,22.255575],[-101.373318,22.256019],[-101.373669,22.25657],[-101.37405,22.257227],[-101.37423,22.25778],[-101.374415,22.258573],[-101.374902,22.258777],[-101.375565,22.259271],[-101.375941,22.25961],[-101.376181,22.26047],[-101.376356,22.261289],[-101.376804,22.261656],[-101.377242,22.261425],[-101.377404,22.261125],[-101.379,22.261037],[-101.379269,22.261098],[-101.380407,22.261002],[-101.381061,22.260939],[-101.381687,22.260956],[-101.382019,22.261018],[-101.382057,22.26114],[-101.383183,22.261625],[-101.384014,22.262167],[-101.384577,22.263431],[-101.384667,22.263694],[-101.384989,22.26422],[-101.385354,22.265093],[-101.385675,22.265127],[-101.386884,22.265233],[-101.387363,22.265268],[-101.387535,22.265254],[-101.387991,22.265312],[-101.390906,22.265434],[-101.391222,22.265447],[-101.392143,22.265585],[-101.396054,22.265859],[-101.39666,22.265921],[-101.396936,22.265945],[-101.397136,22.265961],[-101.407314,22.26669],[-101.413444,22.267152],[-101.416259,22.267346],[-101.415478,22.268315],[-101.414929,22.268841],[-101.414439,22.269471],[-101.413945,22.269945],[-101.413061,22.270372],[-101.412351,22.271161],[-101.412079,22.271579],[-101.411648,22.272415],[-101.411504,22.273765],[-101.411291,22.274338],[-101.41085,22.274656],[-101.410133,22.275081],[-101.410087,22.2756],[-101.410209,22.27622],[-101.410225,22.277205],[-101.410018,22.278089],[-101.409864,22.278869],[-101.409539,22.279392],[-101.409214,22.279967],[-101.408999,22.280437],[-101.408558,22.280702],[-101.408059,22.280865],[-101.407614,22.280872],[-101.407332,22.280669],[-101.406428,22.279956],[-101.405919,22.279498],[-101.405689,22.279138],[-101.405406,22.278831],[-101.404902,22.278683],[-101.404179,22.278798],[-101.403794,22.279063],[-101.402741,22.279389],[-101.402023,22.279763],[-101.40136,22.280135],[-101.400368,22.280772],[-101.399426,22.281097],[-101.39815,22.281427],[-101.397934,22.281793],[-101.398,22.282414],[-101.398344,22.282979],[-101.399083,22.283849],[-101.399877,22.284667],[-101.400449,22.285488],[-101.400753,22.286986],[-101.400383,22.288184],[-101.399619,22.289128],[-101.399132,22.289965],[-101.399178,22.290831],[-101.399204,22.292329],[-101.3989,22.2934],[-101.398549,22.293891],[-101.397874,22.294521],[-101.397069,22.295171],[-101.396393,22.295758],[-101.395779,22.296101],[-101.395521,22.296318],[-101.395365,22.296745],[-101.394974,22.296812],[-101.394034,22.297221],[-101.39355,22.297562],[-101.392903,22.297875],[-101.392029,22.298374],[-101.391435,22.299902],[-101.392648,22.300188],[-101.393796,22.300475],[-101.394422,22.300799],[-101.395048,22.301094],[-101.396067,22.301535],[-101.397321,22.302275],[-101.39805,22.302872],[-101.398745,22.303439],[-101.39921,22.303857],[-101.399504,22.303914],[-101.400025,22.303815],[-101.400579,22.303746],[-101.400966,22.303467],[-101.401944,22.303331],[-101.402695,22.30332],[-101.403252,22.303463],[-101.40394,22.303575],[-101.404624,22.303473],[-101.405516,22.303458],[-101.405942,22.304136],[-101.406177,22.304433],[-101.406507,22.304856],[-101.407529,22.305397],[-101.408413,22.305984],[-101.408378,22.306584],[-101.408299,22.307355],[-101.408404,22.308125],[-101.408648,22.308934],[-101.408891,22.309659],[-101.409498,22.310163],[-101.409822,22.310287],[-101.410384,22.310835],[-101.410574,22.311175],[-101.41076,22.311301],[-101.411405,22.311334],[-101.411734,22.311714],[-101.412383,22.312004],[-101.413021,22.312123],[-101.413575,22.312244],[-101.414272,22.312618],[-101.414787,22.312778],[-101.414812,22.312696],[-101.415233,22.312544],[-101.416854,22.313222],[-101.418389,22.314171],[-101.419732,22.315042],[-101.419694,22.315291],[-101.418996,22.315726],[-101.418837,22.315719],[-101.418428,22.316067],[-101.418435,22.316453],[-101.418718,22.316834],[-101.4196,22.317249],[-101.420344,22.317708],[-101.420907,22.318334],[-101.421755,22.319167],[-101.421891,22.319304],[-101.422501,22.31998],[-101.42298,22.321086],[-101.423551,22.322105],[-101.423899,22.323598],[-101.424126,22.323423],[-101.424448,22.323419],[-101.424407,22.323719],[-101.424414,22.324104],[-101.425104,22.324094],[-101.425477,22.324388],[-101.425397,22.325031],[-101.42587,22.325795],[-101.426201,22.326304],[-101.426265,22.32733],[-101.42624,22.328572],[-101.427623,22.328637],[-101.428367,22.331752],[-101.428934,22.332557],[-101.429078,22.332897],[-101.429776,22.333357],[-101.430799,22.333899],[-101.431966,22.334823],[-101.432666,22.335412],[-101.433611,22.336768],[-101.43441,22.33774],[-101.434839,22.338641],[-101.435125,22.341534],[-101.434721,22.345622],[-101.432972,22.363277],[-101.381911,22.357485],[-101.378429,22.394622],[-101.37765,22.401064],[-101.377595,22.401395],[-101.376622,22.408839],[-101.375589,22.416737],[-101.374796,22.42579],[-101.373588,22.439553],[-101.373918,22.444029],[-101.373948,22.444507],[-101.374786,22.456458],[-101.313726,22.45349],[-101.315383,22.469649],[-101.285726,22.507856],[-101.286276,22.509032],[-101.286413,22.51017],[-101.286206,22.512766],[-101.286279,22.513938],[-101.286612,22.514958],[-101.286909,22.515571],[-101.294061,22.52699],[-101.294889,22.528202],[-101.295111,22.52845],[-101.294282,22.529063],[-101.294598,22.529359],[-101.294515,22.529496],[-101.294415,22.529757],[-101.294553,22.53131],[-101.294912,22.532756],[-101.295713,22.534073],[-101.296324,22.535478],[-101.295389,22.536136],[-101.294608,22.536423],[-101.294428,22.537221],[-101.294251,22.538378],[-101.294139,22.539473],[-101.294085,22.540173],[-101.29358,22.541334],[-101.293167,22.542069],[-101.292276,22.54357],[-101.291901,22.544484],[-101.291637,22.545018],[-101.291533,22.545666],[-101.291543,22.545681],[-101.291435,22.546298],[-101.290666,22.549286],[-101.290142,22.551208],[-101.289305,22.554014],[-101.289087,22.556669],[-101.289077,22.558036],[-101.289086,22.558614],[-101.288011,22.558872],[-101.287629,22.559749],[-101.287519,22.559811],[-101.287697,22.560328],[-101.28777,22.560539],[-101.288338,22.56219],[-101.288848,22.564359],[-101.29359,22.584514],[-101.295205,22.584372],[-101.295102,22.583737],[-101.29681,22.583539],[-101.296784,22.584024],[-101.297162,22.585082],[-101.297656,22.58626],[-101.298058,22.586867],[-101.298583,22.587358],[-101.298854,22.587526],[-101.299216,22.588546],[-101.299152,22.58944],[-101.298219,22.590852],[-101.297503,22.591509],[-101.297806,22.592333],[-101.297953,22.593206],[-101.298613,22.593863],[-101.299116,22.594565],[-101.299499,22.595268],[-101.299939,22.596729],[-101.300481,22.596989],[-101.300867,22.597832],[-101.301795,22.599702],[-101.30225,22.60065],[-101.303461,22.601735],[-101.303622,22.60193],[-101.304067,22.60378],[-101.303947,22.604494],[-101.304226,22.60518],[-101.304312,22.605837],[-101.305009,22.606841],[-101.304996,22.606975],[-101.305031,22.60824],[-101.305503,22.609187],[-101.305709,22.60993],[-101.305894,22.609973],[-101.305988,22.610162],[-101.306502,22.610198],[-101.306728,22.610726],[-101.307097,22.611309],[-101.307424,22.611504],[-101.30767,22.611636],[-101.307945,22.611651],[-101.308526,22.611688],[-101.309109,22.612214],[-101.309984,22.613055],[-101.310571,22.613493],[-101.311218,22.613669],[-101.31198,22.613646],[-101.312067,22.613673],[-101.313702,22.615062],[-101.313984,22.615496],[-101.314446,22.615743],[-101.314787,22.616097],[-101.314918,22.616609],[-101.314997,22.617035],[-101.315191,22.61717],[-101.315475,22.617251],[-101.315862,22.617377],[-101.316219,22.617524],[-101.316531,22.617822],[-101.316737,22.618224],[-101.316746,22.618944],[-101.316889,22.619138],[-101.317218,22.619302],[-101.317664,22.619546],[-101.317966,22.620163],[-101.318246,22.62068],[-101.31843,22.620961],[-101.318549,22.62132],[-101.318465,22.621623],[-101.318441,22.622084],[-101.31846,22.622605],[-101.318739,22.622967],[-101.319119,22.623166],[-101.320048,22.623644],[-101.320362,22.624099],[-101.320587,22.624467],[-101.321043,22.625322],[-101.321583,22.626311],[-101.321642,22.626798],[-101.322063,22.62758],[-101.322103,22.628281],[-101.323409,22.628256],[-101.324542,22.62848],[-101.324759,22.629093],[-101.325784,22.62975],[-101.325829,22.629847],[-101.326134,22.630663],[-101.32612,22.631736],[-101.326281,22.633382],[-101.326029,22.6347],[-101.32527,22.635802],[-101.325456,22.636726],[-101.325486,22.636885],[-101.325735,22.637694],[-101.326402,22.638331],[-101.326743,22.638687],[-101.326885,22.638897],[-101.326989,22.638943],[-101.327201,22.639164],[-101.327798,22.639611],[-101.328468,22.640482],[-101.329232,22.641139],[-101.330185,22.641369],[-101.330412,22.641529],[-101.32965,22.642481],[-101.331721,22.642148],[-101.332033,22.642253],[-101.332494,22.64239],[-101.333114,22.642204],[-101.333874,22.642113],[-101.333968,22.642577],[-101.334122,22.643506],[-101.334371,22.644916],[-101.334402,22.646067],[-101.334559,22.646773],[-101.334667,22.647444],[-101.33458,22.648029],[-101.33473,22.648589],[-101.334552,22.649153],[-101.334634,22.649705],[-101.334609,22.649732],[-101.334569,22.650181],[-101.334722,22.650672],[-101.334883,22.651656],[-101.334844,22.652195],[-101.334954,22.652956],[-101.335362,22.654205],[-101.336005,22.656089],[-101.336124,22.656436],[-101.336286,22.65742],[-101.336937,22.658756],[-101.340877,22.657936],[-101.342035,22.657874],[-101.342759,22.657774],[-101.343477,22.65736],[-101.343908,22.657174],[-101.344445,22.657436],[-101.344793,22.658013],[-101.347009,22.657622],[-101.347191,22.656947],[-101.34766,22.65619],[-101.349125,22.655888],[-101.350806,22.655543],[-101.351472,22.655378],[-101.352011,22.655244],[-101.354769,22.654683],[-101.356492,22.654188],[-101.356533,22.654176],[-101.359376,22.653533],[-101.360664,22.65491],[-101.36224,22.656636],[-101.364107,22.65889],[-101.365126,22.660278],[-101.36627,22.661464],[-101.367544,22.662607],[-101.368951,22.663989],[-101.370053,22.665175],[-101.370666,22.665647],[-101.371251,22.666313],[-101.372437,22.667776],[-101.373316,22.668345],[-101.374548,22.669672],[-101.375582,22.670823],[-101.376765,22.67215],[-101.378644,22.674544],[-101.380018,22.675835],[-101.378968,22.677026],[-101.377024,22.679225],[-101.375277,22.681199],[-101.373756,22.682924],[-101.371346,22.685653],[-101.367043,22.690525],[-101.36572,22.69202],[-101.361958,22.696268],[-101.361897,22.696365],[-101.361557,22.696905],[-101.349234,22.711779],[-101.359497,22.71467],[-101.359699,22.714487],[-101.360058,22.714337],[-101.392798,22.738131],[-101.411077,22.747681],[-101.440622,22.745909],[-101.441915,22.745831],[-101.490965,22.742877],[-101.491175,22.741924],[-101.497004,22.701541],[-101.499976,22.699649],[-101.49999,22.699641],[-101.503069,22.697668],[-101.533926,22.678059],[-101.558871,22.662205],[-101.567398,22.656776],[-101.567411,22.656537],[-101.567531,22.656112],[-101.56773,22.655874],[-101.567879,22.655707],[-101.568102,22.655375],[-101.568353,22.655183],[-101.568549,22.65478],[-101.568647,22.654614],[-101.568795,22.654353],[-101.568893,22.65414],[-101.56904,22.653832],[-101.569139,22.653666],[-101.569212,22.653453],[-101.569306,22.653051],[-101.569375,22.65258],[-101.569467,22.652014],[-101.569747,22.650527],[-101.569864,22.649937],[-101.569907,22.649489],[-101.569998,22.648853],[-101.570067,22.648381],[-101.570136,22.64798],[-101.570307,22.647601],[-101.570401,22.647129],[-101.570444,22.646634],[-101.570439,22.646328],[-101.570512,22.64594],[-101.570829,22.644118],[-101.571208,22.642676],[-101.571488,22.641423],[-101.571792,22.640053],[-101.572448,22.63717],[-101.572928,22.635702],[-101.573294,22.634943],[-101.573715,22.634394],[-101.57388,22.633732],[-101.573795,22.633263],[-101.573608,22.632748],[-101.573367,22.632116],[-101.572898,22.631441],[-101.572797,22.630124],[-101.573174,22.628588],[-101.573412,22.62776],[-101.573476,22.6271],[-101.573603,22.625803],[-101.573674,22.624177],[-101.573666,22.621046],[-101.573585,22.61808],[-101.573486,22.615539],[-101.57348,22.614634],[-101.573568,22.614031],[-101.573636,22.613536],[-101.573778,22.612898],[-101.573821,22.612816],[-101.587325,22.621132],[-101.587732,22.626612],[-101.588007,22.626414],[-101.588427,22.626271],[-101.588795,22.626119],[-101.588934,22.625986],[-101.589211,22.625858],[-101.589628,22.625631],[-101.589879,22.625529],[-101.589944,22.625473],[-101.590381,22.625261],[-101.590581,22.625199],[-101.590739,22.625155],[-101.590966,22.625115],[-101.591325,22.625116],[-101.591629,22.625116],[-101.592025,22.625148],[-101.592286,22.625106],[-101.592487,22.625083],[-101.59274,22.624986],[-101.592943,22.624889],[-101.593171,22.624764],[-101.593444,22.624524],[-101.593481,22.624429],[-101.593501,22.624315],[-101.593844,22.623971],[-101.594136,22.624089],[-101.594477,22.624544],[-101.594542,22.62457],[-101.594654,22.624567],[-101.59481,22.62453],[-101.594928,22.624499],[-101.595287,22.624072],[-101.595313,22.623935],[-101.59039,22.591082],[-101.590083,22.589036],[-101.655994,22.513814],[-101.656477,22.513262],[-101.656399,22.513198],[-101.656304,22.513128],[-101.656197,22.513073],[-101.656134,22.512966],[-101.65609,22.51287],[-101.65615,22.512733],[-101.656206,22.512604],[-101.656123,22.512416],[-101.656215,22.512335],[-101.656307,22.51217],[-101.656272,22.511866],[-101.656456,22.511659],[-101.656626,22.511413],[-101.656422,22.511133],[-101.656531,22.510898],[-101.65664,22.510652],[-101.656508,22.510439],[-101.656786,22.510137],[-101.657051,22.510093],[-101.657111,22.509541],[-101.657329,22.509441],[-101.657487,22.509261],[-101.657415,22.50889],[-101.657743,22.508632],[-101.658125,22.507909],[-101.658988,22.507527],[-101.659613,22.507002],[-101.659938,22.506601],[-101.659542,22.5062],[-101.659526,22.505736],[-101.659906,22.50532],[-101.661079,22.505051],[-101.662479,22.505101],[-101.663897,22.505382],[-101.664904,22.505567],[-101.665809,22.505727],[-101.666851,22.506134],[-101.667713,22.506303],[-101.668439,22.506423],[-101.668827,22.506404],[-101.669269,22.506314],[-101.669536,22.506231],[-101.670023,22.506159],[-101.670348,22.506256],[-101.670627,22.506257],[-101.670802,22.506312],[-101.67112,22.50653],[-101.67129,22.506554],[-101.671799,22.506543],[-101.672158,22.506562],[-101.672446,22.506453],[-101.67283,22.506503],[-101.672987,22.506667],[-101.673326,22.506692],[-101.673502,22.506686],[-101.673737,22.506523],[-101.674409,22.506472],[-101.67475,22.50654],[-101.674959,22.506772],[-101.675089,22.507015],[-101.675201,22.507052],[-101.675365,22.506906],[-101.675555,22.507022],[-101.675757,22.507199],[-101.675777,22.50712],[-101.676085,22.507212],[-101.676228,22.507502],[-101.676385,22.507839],[-101.676812,22.508121],[-101.67718,22.508293],[-101.677239,22.508507],[-101.677463,22.508562],[-101.677864,22.508673],[-101.677903,22.508863],[-101.678087,22.509071],[-101.678258,22.508986],[-101.678344,22.508802],[-101.678588,22.508827],[-101.678745,22.509084],[-101.678906,22.509167],[-101.679131,22.509107],[-101.679457,22.508943],[-101.6798,22.508971],[-101.679978,22.509212],[-101.680178,22.509375],[-101.680225,22.509522],[-101.680319,22.509969],[-101.680525,22.510343],[-101.680757,22.510387],[-101.680847,22.510334],[-101.681017,22.510049],[-101.681134,22.51001],[-101.681366,22.510089],[-101.68176,22.510499],[-101.682294,22.510681],[-101.682701,22.510895],[-101.683965,22.511189],[-101.68495,22.511364],[-101.685467,22.511649],[-101.686094,22.51221],[-101.686347,22.512865],[-101.686559,22.513071],[-101.686873,22.513111],[-101.687211,22.513523],[-101.687502,22.514258],[-101.687436,22.514431],[-101.68716,22.514597],[-101.687105,22.514903],[-101.6875,22.515154],[-101.687726,22.515457],[-101.687931,22.515738],[-101.687941,22.515903],[-101.687969,22.515992],[-101.6883,22.51601],[-101.688751,22.515911],[-101.689157,22.515726],[-101.689562,22.515716],[-101.689886,22.515817],[-101.689908,22.515893],[-101.689756,22.515948],[-101.689702,22.516113],[-101.689701,22.516234],[-101.690047,22.516536],[-101.690413,22.516711],[-101.691045,22.516883],[-101.691481,22.516775],[-101.691688,22.516652],[-101.691861,22.516668],[-101.692157,22.516801],[-101.692391,22.517021],[-101.692625,22.517224],[-101.692859,22.517361],[-101.693088,22.517362],[-101.693333,22.517286],[-101.693699,22.517206],[-101.693841,22.517226],[-101.693884,22.517388],[-101.693995,22.517534],[-101.694171,22.517968],[-101.694266,22.518189],[-101.694439,22.518161],[-101.694512,22.518073],[-101.694547,22.517836],[-101.694716,22.517704],[-101.694902,22.517769],[-101.695061,22.517994],[-101.695251,22.518388],[-101.69535,22.5187],[-101.695337,22.519728],[-101.695513,22.5199],[-101.695849,22.52006],[-101.696018,22.520422],[-101.741245,22.509847],[-101.746175,22.508693],[-101.742682,22.499496],[-101.735361,22.480215],[-101.737547,22.480715],[-101.738679,22.480915],[-101.740671,22.481278],[-101.742759,22.481676],[-101.742945,22.481711],[-101.747064,22.482544],[-101.75405,22.483912],[-101.757285,22.484548],[-101.760883,22.485593],[-101.766017,22.486794],[-101.771535,22.488163],[-101.778495,22.484868],[-101.779471,22.480851],[-101.779802,22.479184],[-101.780005,22.478385],[-101.780552,22.476139],[-101.781291,22.473815],[-101.781795,22.471495],[-101.78239,22.469262],[-101.78294,22.466932],[-101.783361,22.465034],[-101.793663,22.468728],[-101.797708,22.470064],[-101.797792,22.47009],[-101.799138,22.470516],[-101.799276,22.470559],[-101.837141,22.499692],[-101.830438,22.512013],[-101.830043,22.513512],[-101.827872,22.521752],[-101.826927,22.527217],[-101.825655,22.534004],[-101.824326,22.538503],[-101.823667,22.540591],[-101.823117,22.541248],[-101.822118,22.544482],[-101.820691,22.548913],[-101.819892,22.551295],[-101.826283,22.552265],[-101.830169,22.553041],[-101.83459,22.55399],[-101.838036,22.554848],[-101.838233,22.554897],[-101.847332,22.557507],[-101.853836,22.55892],[-101.872779,22.563034],[-101.872958,22.563073],[-101.869996,22.576853],[-101.867391,22.588972],[-101.866581,22.593102],[-101.865343,22.598938],[-101.864072,22.605115],[-101.863214,22.608752],[-101.862192,22.61395],[-101.859474,22.625697],[-101.858159,22.631215],[-101.857406,22.636117],[-101.85664,22.639992],[-101.853284,22.656025],[-101.858031,22.65553],[-101.862494,22.655003],[-101.86755,22.654652],[-101.939756,22.645725],[-101.946065,22.65041],[-101.948214,22.652006],[-102.03496,22.716354],[-102.039569,22.71977],[-102.043463,22.722655],[-102.04502,22.723809],[-102.045102,22.723869],[-102.054109,22.730543],[-102.054141,22.730567],[-102.063071,22.737183],[-102.063152,22.737242],[-102.088596,22.756086],[-102.090472,22.757474],[-102.101823,22.765877],[-102.109811,22.77179],[-102.110766,22.772496],[-102.111934,22.773361],[-102.112604,22.773856],[-102.113431,22.774468],[-102.124897,22.782952],[-102.131527,22.790343],[-102.138035,22.797596],[-102.139095,22.798778],[-102.139113,22.798798],[-102.140668,22.800531],[-102.144486,22.805138],[-102.150754,22.812774],[-102.158629,22.822524],[-102.164042,22.829053],[-102.16565,22.831177],[-102.166091,22.831767],[-102.167657,22.833179],[-102.172648,22.839107],[-102.176131,22.843023],[-102.192132,22.864902],[-102.196982,22.882643],[-102.210536,22.932189],[-102.228152,22.996523],[-102.233524,23.024937],[-102.233801,23.026402],[-102.234314,23.028187],[-102.235551,23.032843],[-102.236276,23.036876],[-102.236814,23.040096],[-102.237203,23.042571],[-102.238082,23.047644],[-102.250606,23.046739],[-102.252279,23.046618],[-102.260051,23.045916],[-102.259927,23.046674],[-102.259852,23.046902],[-102.259831,23.046966],[-102.259624,23.047309],[-102.259537,23.047455],[-102.259211,23.048363],[-102.259198,23.048399],[-102.259169,23.048738],[-102.259147,23.048978],[-102.25909,23.049627],[-102.259048,23.05054],[-102.258941,23.051618],[-102.258871,23.051969],[-102.258853,23.052062],[-102.258355,23.052878],[-102.257834,23.053733],[-102.257632,23.054065],[-102.257315,23.054584],[-102.25645,23.056105],[-102.256326,23.056509],[-102.256205,23.056904],[-102.256112,23.057495],[-102.256041,23.057595],[-102.255763,23.057985],[-102.255618,23.058172],[-102.255319,23.058557],[-102.255306,23.058585],[-102.254994,23.059283],[-102.25453,23.060311],[-102.254394,23.060768],[-102.254354,23.060907],[-102.254272,23.061183],[-102.254143,23.061511],[-102.253684,23.06313],[-102.253612,23.0633],[-102.253238,23.064184],[-102.2528,23.065238],[-102.25249,23.066123],[-102.252538,23.066555],[-102.252368,23.067209],[-102.251975,23.068224],[-102.251836,23.068834],[-102.251531,23.07042],[-102.251319,23.071592],[-102.250801,23.0731],[-102.250793,23.073123],[-102.250198,23.074346],[-102.249914,23.075022],[-102.249874,23.075119],[-102.249731,23.075458],[-102.249479,23.075744],[-102.249033,23.076251],[-102.248873,23.076411],[-102.248731,23.076552],[-102.248428,23.077073],[-102.248004,23.077708],[-102.247821,23.078381],[-102.241539,23.086335],[-102.237472,23.095274],[-102.235108,23.099213],[-102.231059,23.105436],[-102.230807,23.106207],[-102.23076,23.106298],[-102.230635,23.106538],[-102.230221,23.107747],[-102.229915,23.108165],[-102.22959,23.108527],[-102.229192,23.109137],[-102.22882,23.109603],[-102.228476,23.110097],[-102.227793,23.110913],[-102.227477,23.111624],[-102.227231,23.112231],[-102.22718,23.112765],[-102.226805,23.11346],[-102.226503,23.114307],[-102.226113,23.114866],[-102.225676,23.115701],[-102.225087,23.1167],[-102.224733,23.117291],[-102.224352,23.117887],[-102.224554,23.118103],[-102.223731,23.119418],[-102.223347,23.119742],[-102.222897,23.12008],[-102.22258,23.120333],[-102.22231,23.120716],[-102.222053,23.121016],[-102.222031,23.121282],[-102.222066,23.121517],[-102.222047,23.121956],[-102.221859,23.122283],[-102.221496,23.12275],[-102.221061,23.123265],[-102.220884,23.123417],[-102.220462,23.124019],[-102.219883,23.124765],[-102.218992,23.125757],[-102.217951,23.1268],[-102.217263,23.127365],[-102.216714,23.127865],[-102.216164,23.128498],[-102.215604,23.128981],[-102.215213,23.129404],[-102.214944,23.129641],[-102.214668,23.130117],[-102.214274,23.130742],[-102.214155,23.13132],[-102.215835,23.133518],[-102.217779,23.136061],[-102.218303,23.136809],[-102.21965,23.138629],[-102.222288,23.14196],[-102.225525,23.146166],[-102.229925,23.151884],[-102.240974,23.16938],[-102.240965,23.173109],[-102.240597,23.179171],[-102.239417,23.208691],[-102.239458,23.209493],[-102.244227,23.211581],[-102.259875,23.218598],[-102.260872,23.219038],[-102.264711,23.220731],[-102.272075,23.22402],[-102.289369,23.231691],[-102.289146,23.234519],[-102.288964,23.236623],[-102.288826,23.238487],[-102.288598,23.240323],[-102.288497,23.241475],[-102.288357,23.243452],[-102.288137,23.246212],[-102.28801,23.247717],[-102.287873,23.249492],[-102.287374,23.255068],[-102.28705,23.258948],[-102.286887,23.260888],[-102.286758,23.262717],[-102.286738,23.262998],[-102.286487,23.26579],[-102.28623,23.268694],[-102.285845,23.27292],[-102.285825,23.27332],[-102.283687,23.273177],[-102.281891,23.273055],[-102.273221,23.272476],[-102.263101,23.271819],[-102.256996,23.271485],[-102.252796,23.271235],[-102.248022,23.27449],[-102.244672,23.276769],[-102.244392,23.277711],[-102.243663,23.28008],[-102.243303,23.280963],[-102.243008,23.281881],[-102.242326,23.28402],[-102.241705,23.285781],[-102.240469,23.289338],[-102.239788,23.291491],[-102.239084,23.293452],[-102.236552,23.300975],[-102.235993,23.302609],[-102.233503,23.309832],[-102.232679,23.312119],[-102.231597,23.315116],[-102.23182,23.315185],[-102.231957,23.315235],[-102.23228,23.315341],[-102.233183,23.314184],[-102.233244,23.314132],[-102.233349,23.314105],[-102.233617,23.31409],[-102.234019,23.314117],[-102.234854,23.31422],[-102.235438,23.314299],[-102.236195,23.314368],[-102.236738,23.314436],[-102.237248,23.314576],[-102.237674,23.314654],[-102.238104,23.314682],[-102.238391,23.314644],[-102.238731,23.314739],[-102.239058,23.314735],[-102.239278,23.314779],[-102.239546,23.314845],[-102.239752,23.314858],[-102.240023,23.314857],[-102.240267,23.314844],[-102.24048,23.314901],[-102.240765,23.314926],[-102.241069,23.314982],[-102.24125,23.314484],[-102.24116,23.314336],[-102.241163,23.313681],[-102.24113,23.313338],[-102.241189,23.313196],[-102.241357,23.312934],[-102.241413,23.312773],[-102.241541,23.312198],[-102.241589,23.311726],[-102.241765,23.311413],[-102.24179,23.311061],[-102.241894,23.310412],[-102.241998,23.309702],[-102.242108,23.309118],[-102.242247,23.308691],[-102.242463,23.308147],[-102.242847,23.307197],[-102.242935,23.306807],[-102.243072,23.306204],[-102.243097,23.306107],[-102.243194,23.305832],[-102.243225,23.305588],[-102.243366,23.305205],[-102.243565,23.304526],[-102.24372,23.303963],[-102.243856,23.303581],[-102.244373,23.302102],[-102.244607,23.300939],[-102.244811,23.30041],[-102.244976,23.299742],[-102.245214,23.298986],[-102.245412,23.298459],[-102.245806,23.297525],[-102.245948,23.297283],[-102.246017,23.296525],[-102.246061,23.296309],[-102.24617,23.295968],[-102.246206,23.295682],[-102.246296,23.295031],[-102.246352,23.294796],[-102.246481,23.294397],[-102.246566,23.294017],[-102.246724,23.293534],[-102.246756,23.293323],[-102.246878,23.293061],[-102.247074,23.292661],[-102.247171,23.292409],[-102.249853,23.291018],[-102.250126,23.290429],[-102.250309,23.290085],[-102.250856,23.288971],[-102.251387,23.287897],[-102.25193,23.286706],[-102.251956,23.286549],[-102.252164,23.286094],[-102.252636,23.28506],[-102.253098,23.284175],[-102.253412,23.283555],[-102.253733,23.282911],[-102.253979,23.282438],[-102.254087,23.282189],[-102.254488,23.281381],[-102.2547,23.280834],[-102.256392,23.28242],[-102.257804,23.280079],[-102.258406,23.280099],[-102.259572,23.280133],[-102.260405,23.280174],[-102.261001,23.280186],[-102.261828,23.280211],[-102.26221,23.2802],[-102.262628,23.280192],[-102.263326,23.280139],[-102.263743,23.280089],[-102.264474,23.280036],[-102.265172,23.279969],[-102.265831,23.279907],[-102.266435,23.279851],[-102.267048,23.279813],[-102.267691,23.279811],[-102.268447,23.27985],[-102.268986,23.27988],[-102.269534,23.279913],[-102.269041,23.280924],[-102.267209,23.28469],[-102.266268,23.286624],[-102.265209,23.288798],[-102.264579,23.290093],[-102.265093,23.290574],[-102.268001,23.293376],[-102.270045,23.29535],[-102.272163,23.297387],[-102.272236,23.297444],[-102.276377,23.30144],[-102.283553,23.308366],[-102.294085,23.318481],[-102.294255,23.318622],[-102.294356,23.318719],[-102.294479,23.318789],[-102.296038,23.320501],[-102.292897,23.323262],[-102.28833,23.327275],[-102.288095,23.327341],[-102.287866,23.327406],[-102.287649,23.327468],[-102.286331,23.32807],[-102.283514,23.330287],[-102.278468,23.334257],[-102.274429,23.337436],[-102.273927,23.33783],[-102.269898,23.341],[-102.268262,23.342278],[-102.263277,23.350121],[-102.258343,23.357657],[-102.256275,23.360847],[-102.255226,23.362466],[-102.253611,23.364956],[-102.252732,23.369009],[-102.250719,23.37829],[-102.250678,23.378475],[-102.250484,23.378986],[-102.250385,23.379246],[-102.250112,23.379961],[-102.246035,23.40389],[-102.246018,23.403983],[-102.246004,23.404056],[-102.245998,23.404088],[-102.245982,23.404199],[-102.24478,23.412624],[-102.2422,23.427284],[-102.241206,23.432098],[-102.239569,23.440029],[-102.23861,23.444673],[-102.23815,23.446901],[-102.231098,23.447013],[-102.206964,23.447391],[-102.204227,23.447434],[-102.193615,23.447599],[-102.193998,23.444051],[-102.19403,23.443753],[-102.194036,23.443683],[-102.194045,23.443604],[-102.194061,23.443461],[-102.194573,23.438935],[-102.195143,23.433893],[-102.19616,23.424894],[-102.19609,23.424559],[-102.195582,23.422118],[-102.194915,23.418782],[-102.194026,23.414464],[-102.193527,23.41183],[-102.193417,23.411306],[-102.19305,23.409548],[-102.191342,23.401388],[-102.174542,23.399554],[-102.168615,23.398908],[-102.168725,23.376429],[-102.168746,23.371863],[-102.168799,23.361026],[-102.162726,23.360086],[-102.159269,23.359552],[-102.157524,23.359281],[-102.143597,23.357125],[-102.139586,23.356504],[-102.137443,23.356171],[-102.135571,23.355882],[-102.13256,23.355403],[-102.130378,23.355069],[-102.125343,23.354298],[-102.124518,23.35417],[-102.122877,23.353914],[-102.122532,23.35386],[-102.105552,23.357212],[-102.100663,23.358176],[-102.070974,23.363006],[-102.043333,23.367577],[-102.037622,23.368519],[-102.014007,23.372411],[-102.011944,23.372749],[-101.953284,23.391338],[-101.895606,23.409589],[-101.839663,23.427266],[-101.827398,23.431139],[-101.817646,23.434217],[-101.800639,23.439583],[-101.775122,23.447629],[-101.722351,23.489721],[-101.717409,23.493684],[-101.7121,23.49794],[-101.710365,23.499384],[-101.706454,23.502499],[-101.6994,23.508149],[-101.695184,23.51159],[-101.690711,23.515107],[-101.677963,23.525381],[-101.670369,23.531248],[-101.667056,23.534015],[-101.66171,23.538316],[-101.659393,23.540214],[-101.654053,23.54449],[-101.644389,23.552224],[-101.642066,23.554085],[-101.639298,23.556309],[-101.633915,23.560559],[-101.630916,23.562944],[-101.628117,23.565192],[-101.626089,23.566794],[-101.622062,23.570057],[-101.609872,23.579815],[-101.602223,23.585884],[-101.598948,23.588538],[-101.595095,23.591588],[-101.588608,23.596839],[-101.582351,23.601658],[-101.572211,23.609887],[-101.560995,23.618986],[-101.540529,23.635327],[-101.517982,23.653156],[-101.509116,23.660164],[-101.466716,23.693662],[-101.452073,23.705224],[-101.444994,23.710812],[-101.437115,23.717031],[-101.426962,23.725471],[-101.417141,23.733569],[-101.408592,23.740614],[-101.406333,23.74249],[-101.404616,23.743942],[-101.401449,23.74655],[-101.399652,23.74804],[-101.397623,23.74968],[-101.395622,23.751362],[-101.393655,23.753028],[-101.390944,23.755236],[-101.389565,23.756375],[-101.381009,23.763449],[-101.372996,23.770054],[-101.366668,23.775233],[-101.361232,23.779684],[-101.359087,23.781419],[-101.356498,23.783551],[-101.352536,23.786888],[-101.345072,23.793006],[-101.342059,23.795734],[-101.340992,23.796487],[-101.340595,23.796845],[-101.340386,23.797117],[-101.340355,23.797153],[-101.326993,23.812669],[-101.312605,23.824422],[-101.297806,23.836452],[-101.295958,23.837954],[-101.294878,23.838832],[-101.288945,23.843618],[-101.285351,23.846535],[-101.276262,23.853914],[-101.267903,23.860691],[-101.262567,23.864884],[-101.256469,23.869704],[-101.250952,23.874182],[-101.248805,23.875902],[-101.248132,23.876434],[-101.241687,23.881424],[-101.237587,23.884592],[-101.229371,23.890863],[-101.227041,23.892561],[-101.222796,23.895789],[-101.220041,23.897924],[-101.215584,23.901334],[-101.21316,23.903169],[-101.211906,23.904191],[-101.209238,23.906123],[-101.20662,23.908037],[-101.204064,23.909985],[-101.202441,23.91121],[-101.200513,23.912694],[-101.199751,23.913291],[-101.198994,23.913839],[-101.198293,23.914273],[-101.198021,23.914408],[-101.197771,23.914664],[-101.196646,23.915557],[-101.194178,23.917417],[-101.19327,23.918161],[-101.19257,23.918564],[-101.192505,23.918559],[-101.195892,23.952153],[-101.199687,23.98978],[-101.201833,24.01104],[-101.205432,24.047143],[-101.205922,24.052046],[-101.205929,24.052113],[-101.205938,24.052203],[-101.205944,24.052261],[-101.206949,24.062315],[-101.209427,24.086865],[-101.212849,24.120764],[-101.213212,24.124452],[-101.216746,24.159732],[-101.173232,24.164137],[-101.165091,24.167378],[-101.085672,24.198968],[-101.070435,24.205021],[-101.065402,24.207021],[-101.047906,24.268236],[-101.042119,24.288344],[-101.040255,24.294986],[-101.03445,24.315195],[-101.032382,24.322392],[-101.029758,24.331442],[-101.027292,24.340125],[-101.026904,24.341484],[-101.024081,24.351315],[-101.012689,24.390819],[-101.011648,24.39253],[-101.010184,24.394939],[-101.009975,24.395282],[-101.007026,24.400133],[-101.006997,24.400181],[-100.998718,24.413794],[-100.996065,24.418155],[-100.987327,24.432519],[-100.987111,24.432217],[-100.986924,24.431976],[-100.986844,24.431718],[-100.986705,24.431495],[-100.986441,24.431378],[-100.98626,24.43121],[-100.985811,24.430752],[-100.985686,24.430588],[-100.985552,24.430305],[-100.985532,24.430058],[-100.985446,24.429835],[-100.985425,24.429704],[-100.985349,24.429512],[-100.985279,24.42931],[-100.985281,24.429057],[-100.98536,24.428841],[-100.985284,24.428537],[-100.985286,24.428257],[-100.985258,24.427863],[-100.985172,24.427683],[-100.98492,24.427442],[-100.984841,24.427268],[-100.984874,24.426809],[-100.985192,24.426131],[-100.985428,24.4257],[-100.985452,24.425367],[-100.985689,24.425099],[-100.986123,24.424694],[-100.986107,24.424466],[-100.985927,24.424254],[-100.986177,24.424063],[-100.986303,24.423675],[-100.986533,24.422988],[-100.986624,24.422534],[-100.986539,24.422506],[-100.986639,24.422256],[-100.986914,24.42099],[-100.987075,24.420009],[-100.987918,24.417793],[-100.989703,24.417994],[-100.9901,24.417976],[-100.9898,24.415596],[-100.989307,24.414306],[-100.988492,24.413404],[-100.987796,24.412842],[-100.98761,24.412542],[-100.988216,24.411979],[-100.988235,24.409552],[-100.99306,24.411349],[-100.993147,24.410767],[-100.993356,24.410355],[-100.993633,24.40983],[-100.993863,24.409355],[-100.993255,24.409176],[-100.994009,24.408218],[-100.994631,24.407368],[-100.99496,24.407393],[-100.997665,24.407304],[-100.997788,24.406568],[-100.997875,24.405995],[-100.997838,24.405478],[-100.99778,24.404936],[-100.997686,24.404168],[-100.998877,24.403916],[-100.999669,24.403871],[-100.999666,24.403631],[-100.999687,24.403222],[-100.999519,24.402662],[-100.999634,24.402392],[-100.999636,24.402217],[-100.99959,24.401974],[-100.999491,24.401754],[-100.999436,24.401551],[-100.999398,24.401451],[-100.999295,24.401228],[-100.999258,24.401055],[-100.999251,24.400804],[-100.999326,24.400609],[-100.999454,24.400415],[-100.999477,24.400276],[-100.99948,24.399912],[-100.999529,24.399713],[-100.999596,24.399435],[-100.999697,24.399376],[-100.999951,24.399095],[-101.000009,24.398892],[-101.00006,24.398574],[-101.000022,24.398442],[-101.000697,24.398266],[-101.001384,24.398079],[-101.002073,24.397819],[-101.00295,24.397543],[-101.001557,24.396593],[-101.001439,24.394768],[-101.004434,24.391213],[-101.004911,24.390852],[-101.005064,24.390547],[-101.005132,24.390431],[-101.005304,24.390368],[-101.005434,24.390277],[-101.005492,24.390134],[-101.005516,24.390051],[-101.005607,24.389453],[-101.006178,24.388949],[-101.006161,24.388714],[-101.008496,24.387574],[-101.007983,24.386872],[-101.007404,24.386362],[-101.007372,24.385868],[-101.007391,24.385114],[-101.007822,24.385158],[-101.00853,24.385242],[-101.009868,24.385117],[-101.009681,24.384479],[-101.009506,24.384181],[-101.009483,24.383875],[-101.009122,24.383508],[-101.008972,24.382952],[-101.008687,24.382535],[-101.008113,24.381984],[-101.007509,24.381377],[-101.006389,24.38051],[-101.007584,24.380585],[-101.007548,24.380187],[-101.007326,24.380121],[-101.007334,24.379551],[-101.00742,24.378848],[-101.007431,24.378306],[-101.007429,24.377616],[-101.007033,24.377583],[-101.006262,24.37752],[-101.005808,24.377496],[-101.005358,24.377509],[-101.004985,24.377522],[-101.004757,24.377502],[-101.004966,24.377114],[-101.005568,24.376338],[-101.006105,24.37562],[-101.006432,24.374807],[-101.006742,24.374107],[-101.006718,24.373588],[-101.00655,24.373287],[-101.006395,24.373065],[-101.006108,24.37257],[-101.005814,24.372068],[-101.005685,24.371821],[-101.005577,24.371537],[-101.005514,24.371166],[-101.005524,24.370909],[-101.005519,24.370452],[-101.005374,24.370277],[-101.005306,24.369943],[-101.005261,24.36954],[-101.005276,24.369095],[-101.00537,24.368806],[-101.005435,24.368571],[-101.005323,24.36855],[-101.005074,24.368622],[-101.004759,24.368847],[-101.004381,24.369116],[-101.00406,24.369209],[-101.003699,24.369169],[-101.0037,24.369066],[-101.003686,24.368824],[-101.003616,24.368589],[-101.00341,24.36825],[-101.003282,24.36801],[-101.003297,24.367702],[-101.003464,24.367454],[-101.003523,24.367234],[-101.003657,24.367078],[-101.003703,24.36688],[-101.003889,24.366717],[-101.004049,24.366498],[-101.004114,24.366271],[-101.004243,24.365982],[-101.004194,24.365802],[-101.004222,24.365448],[-101.004247,24.364993],[-101.004571,24.364631],[-101.004689,24.364325],[-101.004691,24.363996],[-101.004834,24.36382],[-101.004862,24.363538],[-101.005082,24.363281],[-101.005213,24.36294],[-101.00537,24.362588],[-101.005527,24.362201],[-101.005519,24.361566],[-101.005677,24.361049],[-101.005449,24.360612],[-101.005492,24.359737],[-101.00564,24.35956],[-101.005886,24.359176],[-101.006194,24.358597],[-101.006343,24.358598],[-101.006646,24.358556],[-101.006909,24.358337],[-101.007216,24.358177],[-101.007605,24.358138],[-101.007947,24.358196],[-101.00835,24.358152],[-101.008925,24.358018],[-101.009439,24.357873],[-101.009842,24.357784],[-101.010416,24.357787],[-101.010938,24.357938],[-101.011297,24.357959],[-101.010627,24.35682],[-101.010552,24.355566],[-101.010533,24.354361],[-101.010669,24.352501],[-101.010129,24.351822],[-101.010327,24.34963],[-101.009855,24.348427],[-101.008206,24.346722],[-101.006865,24.345522],[-101.006695,24.34435],[-101.006716,24.342623],[-101.006416,24.34149],[-101.00679,24.340243],[-101.005482,24.339185],[-101.006075,24.33752],[-101.006675,24.335835],[-100.945286,24.281196],[-100.935767,24.287704],[-100.93419,24.288782],[-100.931521,24.290524],[-100.926351,24.293893],[-100.92597,24.294142],[-100.925029,24.294755],[-100.92479,24.294912],[-100.924509,24.295095],[-100.922916,24.296134],[-100.922712,24.296267],[-100.92117,24.297274],[-100.918728,24.298866],[-100.917823,24.299457],[-100.907124,24.306436],[-100.906118,24.307092],[-100.901716,24.309962],[-100.895104,24.314278],[-100.893535,24.315302],[-100.881617,24.323079],[-100.879494,24.324464],[-100.877788,24.325577],[-100.877494,24.325769],[-100.870087,24.3306],[-100.851163,24.34289],[-100.850675,24.343397],[-100.850383,24.343539],[-100.818508,24.37787],[-100.811036,24.384405],[-100.809274,24.385929],[-100.807715,24.387328],[-100.809948,24.386963],[-100.772747,24.426863],[-100.764993,24.435445],[-100.743201,24.459559],[-100.742435,24.46033],[-100.742324,24.460435],[-100.755395,24.480533],[-100.756329,24.481969],[-100.764778,24.496357],[-100.779501,24.521422],[-100.792129,24.54291],[-100.796462,24.550281],[-100.799934,24.556186],[-100.801911,24.55532],[-100.805105,24.553921],[-100.810416,24.551594],[-100.810546,24.551602],[-100.810605,24.551606],[-100.821885,24.55232],[-100.822756,24.552005],[-100.833022,24.553486],[-100.834783,24.55374],[-100.835825,24.553891],[-100.847806,24.555619],[-100.858964,24.560752],[-100.859266,24.56089],[-100.8603,24.56136],[-100.862135,24.562193],[-100.864312,24.563182],[-100.86777,24.564751],[-100.872213,24.566768],[-100.872742,24.567009],[-100.872806,24.567038],[-100.880265,24.570473],[-100.880515,24.570577],[-100.880528,24.570583],[-100.880541,24.570588],[-100.880547,24.570591],[-100.880554,24.570593],[-100.880659,24.570637],[-100.882221,24.571346],[-100.882814,24.571615],[-100.882892,24.571678],[-100.882945,24.571721],[-100.8832,24.571928],[-100.88815,24.575044],[-100.889415,24.57584],[-100.900575,24.582862],[-100.902234,24.583918],[-100.903806,24.582732],[-100.908394,24.57927],[-100.912814,24.575948],[-100.914788,24.574464],[-100.915765,24.57373],[-100.919779,24.570713],[-100.934341,24.559821],[-100.934665,24.559579],[-100.958793,24.542684],[-101.062589,24.584033],[-101.080495,24.591185],[-101.106877,24.609202],[-101.12762,24.623362],[-101.147745,24.653986],[-101.161566,24.676536],[-101.164646,24.681559],[-101.179035,24.732957],[-101.181772,24.738941],[-101.181803,24.739015],[-101.181863,24.739107],[-101.181863,24.739108],[-101.181968,24.739267],[-101.188438,24.749353],[-101.201726,24.765488],[-101.215039,24.775168],[-101.236089,24.777879],[-101.313123,24.801411],[-101.342142,24.813353],[-101.354972,24.807983],[-101.388287,24.794033],[-101.402157,24.788222],[-101.405048,24.78377],[-101.412655,24.772055],[-101.441392,24.751352],[-101.448557,24.746187],[-101.461639,24.736757],[-101.485343,24.742198],[-101.491705,24.743776],[-101.506613,24.745226],[-101.506617,24.745226],[-101.519416,24.74647],[-101.540579,24.745581],[-101.59776,24.754007],[-101.600407,24.754397],[-101.62227,24.758983],[-101.624183,24.763343],[-101.624233,24.76344],[-101.624266,24.763511],[-101.624556,24.764165],[-101.624852,24.764833],[-101.625142,24.765486],[-101.62532,24.765887],[-101.640767,24.800704],[-101.609012,24.789664],[-101.607459,24.798863],[-101.604344,24.817309],[-101.604262,24.817794],[-101.604163,24.818379],[-101.604005,24.819317],[-101.603764,24.820739],[-101.603756,24.820787],[-101.601261,24.835563],[-101.606715,24.838063],[-101.656332,24.860793],[-101.685149,24.840013],[-101.698051,24.845205],[-101.722923,24.855208],[-101.726751,24.856747],[-101.730361,24.858199],[-101.733861,24.859611],[-101.744911,24.864067],[-101.773463,24.875535],[-101.793253,24.907656],[-101.799451,24.918008],[-101.809996,24.935617],[-101.82702,24.964032],[-101.831898,24.972173],[-101.841312,24.997476],[-101.84881,25.017624]
], '#000000', 'Equipo 1');
addRaidPolygon(mapLayer, [
[-103.606548,24.149531],[-103.622007,24.117465],[-103.63597,24.110293],[-103.654387,24.139557],[-103.660362,24.149326],[-103.685435,24.135694],[-103.69523,24.130292],[-103.710696,24.117417],[-103.76003,24.077246],[-103.797611,24.049461],[-103.79977,24.050564],[-103.810282,24.040092],[-103.813274,24.021974],[-103.832225,24.02398],[-103.843129,24.026967],[-103.847826,24.003236],[-103.872387,24.007022],[-103.850276,23.988837],[-103.838349,23.965483],[-103.838799,23.964824],[-103.837549,23.964081],[-103.833947,23.969642],[-103.81836,23.964909],[-103.822594,23.952826],[-103.823292,23.953004],[-103.823274,23.951341],[-103.830796,23.907799],[-103.853112,23.874616],[-103.849754,23.862566],[-103.832622,23.84893],[-103.831455,23.828381],[-103.831186,23.824662],[-103.818092,23.810678],[-103.816067,23.80765],[-103.817387,23.806698],[-103.819946,23.802357],[-103.822248,23.800763],[-103.821231,23.796908],[-103.820587,23.795678],[-103.820273,23.79188],[-103.823578,23.788913],[-103.825408,23.78811],[-103.827021,23.788549],[-103.831644,23.786124],[-103.833201,23.784769],[-103.835095,23.785089],[-103.835391,23.782591],[-103.836556,23.782289],[-103.836896,23.781081],[-103.840754,23.778039],[-103.841191,23.776772],[-103.84304,23.775558],[-103.844151,23.774193],[-103.843663,23.773198],[-103.847606,23.770838],[-103.850286,23.770685],[-103.851221,23.766702],[-103.855089,23.761866],[-103.855759,23.761555],[-103.857383,23.758874],[-103.860381,23.755504],[-103.862362,23.752638],[-103.85449,23.727922],[-103.841027,23.701268],[-103.841512,23.69854],[-103.844414,23.685277],[-103.844298,23.684573],[-103.849747,23.68157],[-103.851081,23.679599],[-103.785104,23.676565],[-103.787898,23.662317],[-103.793542,23.630855],[-103.794909,23.629155],[-103.797796,23.627404],[-103.799488,23.624251],[-103.802342,23.622662],[-103.804451,23.619207],[-103.811302,23.613649],[-103.819162,23.616668],[-103.837008,23.630376],[-103.849179,23.640082],[-103.863531,23.634228],[-103.877429,23.62897],[-103.873449,23.620468],[-103.877805,23.618705],[-103.882522,23.592271],[-103.899007,23.603972],[-103.902578,23.605045],[-103.902668,23.60253],[-103.904917,23.603099],[-103.906867,23.601871],[-103.903525,23.598935],[-103.904851,23.597106],[-103.897469,23.590894],[-103.896141,23.58847],[-103.894386,23.587399],[-103.892685,23.58488],[-103.889854,23.584928],[-103.891071,23.581206],[-103.890546,23.579733],[-103.911934,23.576083],[-103.914049,23.583268],[-103.912277,23.588122],[-103.920945,23.589058],[-103.921967,23.588377],[-103.92151,23.585125],[-103.920651,23.583784],[-103.91997,23.579577],[-103.919945,23.575779],[-103.918303,23.574687],[-103.916644,23.571226],[-103.916282,23.568926],[-103.916271,23.565725],[-103.918098,23.565235],[-103.919827,23.562685],[-103.921715,23.562046],[-103.923958,23.558456],[-103.926258,23.556196],[-103.928742,23.554729],[-103.930886,23.552641],[-103.934034,23.552166],[-103.935275,23.550721],[-103.939987,23.547322],[-103.942608,23.547188],[-103.944433,23.545729],[-103.944487,23.544682],[-103.946445,23.543806],[-103.948102,23.541511],[-103.948569,23.540078],[-103.950301,23.538518],[-103.952537,23.539373],[-103.954274,23.538833],[-103.954404,23.537825],[-103.956722,23.538456],[-103.957572,23.535791],[-103.959096,23.533536],[-103.960307,23.533514],[-103.962765,23.529894],[-103.966822,23.528896],[-103.967382,23.527608],[-103.96812,23.528054],[-103.969855,23.526533],[-103.971007,23.527253],[-103.972523,23.527171],[-103.974037,23.525774],[-103.975547,23.525391],[-103.975897,23.523916],[-103.977454,23.524308],[-103.977942,23.522777],[-103.982946,23.522023],[-103.982879,23.521132],[-103.984139,23.520738],[-103.984513,23.519102],[-103.986243,23.519563],[-103.987429,23.518657],[-103.990194,23.515592],[-103.9916,23.516155],[-103.993323,23.514795],[-103.996439,23.514671],[-103.996524,23.513479],[-103.997913,23.513353],[-103.998936,23.51179],[-104.002268,23.509438],[-104.003513,23.509362],[-104.003871,23.507839],[-104.024235,23.494512],[-104.052003,23.473286],[-104.065126,23.463536],[-104.065977,23.463493],[-104.064931,23.460757],[-104.080959,23.421346],[-104.086268,23.398628],[-104.099436,23.378585],[-104.101168,23.366737],[-104.106773,23.355139],[-104.109696,23.355127],[-104.111215,23.351205],[-104.115192,23.328505],[-104.113933,23.327494],[-104.11286,23.325565],[-104.112758,23.323444],[-104.113517,23.321257],[-104.113184,23.319852],[-104.11367,23.317873],[-104.114929,23.316189],[-104.115173,23.314177],[-104.114259,23.31102],[-104.113723,23.307775],[-104.114546,23.30299],[-104.115975,23.301663],[-104.116681,23.298356],[-104.116392,23.295398],[-104.117917,23.293627],[-104.119976,23.288222],[-104.119798,23.285676],[-104.120913,23.279799],[-104.120772,23.275309],[-104.12232,23.255163],[-104.123127,23.249953],[-104.126021,23.225306],[-104.127498,23.205947],[-104.129023,23.182214],[-104.154322,23.1508],[-104.166011,23.136007],[-104.172132,23.128408],[-104.172203,23.103079],[-104.173084,23.031349],[-104.173614,22.982445],[-104.172542,22.980949],[-104.16898,22.979788],[-104.167172,22.978559],[-104.166789,22.97707],[-104.164536,22.975349],[-104.162847,22.975302],[-104.162648,22.9738],[-104.163734,22.973127],[-104.165131,22.970491],[-104.166366,22.969488],[-104.167283,22.965755],[-104.168223,22.963568],[-104.167138,22.960913],[-104.16786,22.95898],[-104.166985,22.954458],[-104.16548,22.952701],[-104.164271,22.949311],[-104.164537,22.948158],[-104.166593,22.945221],[-104.16566,22.944348],[-104.16601,22.943192],[-104.165297,22.941752],[-104.162974,22.941137],[-104.158389,22.94119],[-104.155989,22.93967],[-104.155132,22.937926],[-104.154096,22.937838],[-104.15376,22.936518],[-104.155438,22.932916],[-104.155289,22.928434],[-104.154631,22.92674],[-104.151122,22.922137],[-104.147942,22.921262],[-104.144745,22.921735],[-104.14414,22.922444],[-104.142198,22.921182],[-104.141951,22.92196],[-104.140527,22.92143],[-104.138701,22.91886],[-104.137656,22.91989],[-104.136558,22.918123],[-104.135034,22.916884],[-104.134795,22.915673],[-104.137101,22.912304],[-104.136103,22.910442],[-104.134342,22.910555],[-104.133447,22.905715],[-104.131176,22.904258],[-104.12922,22.904833],[-104.126897,22.904699],[-104.122922,22.903433],[-104.120526,22.906234],[-104.119146,22.907074],[-104.116755,22.90767],[-104.114358,22.906426],[-104.112584,22.904837],[-104.113208,22.903908],[-104.114632,22.90373],[-104.116138,22.902626],[-104.117731,22.89823],[-104.117578,22.89678],[-104.11634,22.895116],[-104.114172,22.893541],[-104.111924,22.888362],[-104.108705,22.886646],[-104.10779,22.885482],[-104.107196,22.882152],[-104.109521,22.878353],[-104.108939,22.876718],[-104.107709,22.875556],[-104.10713,22.871924],[-104.108436,22.870458],[-104.107938,22.868653],[-104.10819,22.865373],[-104.10711,22.861896],[-104.106304,22.856888],[-104.107148,22.855023],[-104.109769,22.854688],[-104.113257,22.855887],[-104.11593,22.855345],[-104.116828,22.850952],[-104.115727,22.848416],[-104.11262,22.845571],[-104.110902,22.843595],[-104.108914,22.842574],[-104.107784,22.840312],[-104.107063,22.836483],[-104.106352,22.834596],[-104.104384,22.834139],[-104.10443,22.83246],[-104.105709,22.830189],[-104.106919,22.829536],[-104.110144,22.822955],[-104.109935,22.820272],[-104.108473,22.817401],[-104.106836,22.81532],[-104.106201,22.8135],[-104.111325,22.810972],[-104.111103,22.80965],[-104.109062,22.809251],[-104.107492,22.808089],[-104.105734,22.80863],[-104.104083,22.80806],[-104.102874,22.806752],[-104.10023,22.805554],[-104.098668,22.805472],[-104.095953,22.806211],[-104.095227,22.805839],[-104.094111,22.802766],[-104.094685,22.800215],[-104.097271,22.7987],[-104.09932,22.798132],[-104.10017,22.796917],[-104.100224,22.794825],[-104.099097,22.793159],[-104.09773,22.792564],[-104.09792,22.79176],[-104.096596,22.787974],[-104.095357,22.789587],[-104.094334,22.789924],[-104.092526,22.789019],[-104.091267,22.785189],[-104.091015,22.782904],[-104.093876,22.779961],[-104.094069,22.779299],[-104.090666,22.775304],[-104.087264,22.77519],[-104.085492,22.775581],[-104.082375,22.773647],[-104.080072,22.769909],[-104.080475,22.766617],[-104.082093,22.764502],[-104.085673,22.763079],[-104.08968,22.76261],[-104.090889,22.762102],[-104.09129,22.760611],[-104.09409,22.759984],[-104.095285,22.759244],[-104.096465,22.759819],[-104.097876,22.761572],[-104.098767,22.761326],[-104.10015,22.763473],[-104.102244,22.764895],[-104.102393,22.766169],[-104.103614,22.7665],[-104.103956,22.767721],[-104.107203,22.768601],[-104.109958,22.767626],[-104.111587,22.766618],[-104.113136,22.764264],[-104.116561,22.763384],[-104.119381,22.762256],[-104.121781,22.762534],[-104.122935,22.763548],[-104.125498,22.763366],[-104.128146,22.76406],[-104.13033,22.763755],[-104.132141,22.764515],[-104.134171,22.766191],[-104.135577,22.766025],[-104.137716,22.768127],[-104.139258,22.768421],[-104.142612,22.767727],[-104.143726,22.765341],[-104.145662,22.76376],[-104.147332,22.764066],[-104.149844,22.762294],[-104.154674,22.760863],[-104.157379,22.75968],[-104.164417,22.75873],[-104.170296,22.759484],[-104.171346,22.759985],[-104.174785,22.759482],[-104.177325,22.758483],[-104.178711,22.758927],[-104.181309,22.758853],[-104.182181,22.758268],[-104.184189,22.760075],[-104.186066,22.76014],[-104.187261,22.761553],[-104.186614,22.763577],[-104.188337,22.764603],[-104.188469,22.765506],[-104.190734,22.768114],[-104.191391,22.770724],[-104.193695,22.771476],[-104.194777,22.77132],[-104.197481,22.77322],[-104.199614,22.776478],[-104.203996,22.777692],[-104.204592,22.777415],[-104.209704,22.779743],[-104.211466,22.7778],[-104.213413,22.777261],[-104.215298,22.77805],[-104.215905,22.778936],[-104.217443,22.778599],[-104.218648,22.779246],[-104.220306,22.778841],[-104.221039,22.77942],[-104.225744,22.778315],[-104.227417,22.77663],[-104.227793,22.774867],[-104.224498,22.771826],[-104.224589,22.76669],[-104.226137,22.765732],[-104.226836,22.764107],[-104.226402,22.762413],[-104.227746,22.761303],[-104.229429,22.758906],[-104.231903,22.757773],[-104.231629,22.755413],[-104.232458,22.754929],[-104.232075,22.753104],[-104.235624,22.751909],[-104.23735,22.749783],[-104.240352,22.750293],[-104.24411,22.750073],[-104.246379,22.748424],[-104.248475,22.74862],[-104.250779,22.747999],[-104.254767,22.743921],[-104.258368,22.738926],[-104.260207,22.738342],[-104.261999,22.738454],[-104.266344,22.736539],[-104.26761,22.73155],[-104.268698,22.725078],[-104.269356,22.72303],[-104.269152,22.720865],[-104.268009,22.717782],[-104.266285,22.718207],[-104.263646,22.71769],[-104.263697,22.716796],[-104.267439,22.712022],[-104.270206,22.711483],[-104.271212,22.710561],[-104.271008,22.707716],[-104.273553,22.706601],[-104.275787,22.703653],[-104.27763,22.702407],[-104.278651,22.699407],[-104.278873,22.697146],[-104.279663,22.695863],[-104.278331,22.690223],[-104.276777,22.687176],[-104.274382,22.684921],[-104.275401,22.680195],[-104.277439,22.677176],[-104.278758,22.676208],[-104.279572,22.673872],[-104.278774,22.671699],[-104.279825,22.670525],[-104.282473,22.669311],[-104.286615,22.668107],[-104.287804,22.666631],[-104.288327,22.663526],[-104.287047,22.660939],[-104.284852,22.659341],[-104.282171,22.656757],[-104.280647,22.654324],[-104.281559,22.651303],[-104.283122,22.650749],[-104.287223,22.650337],[-104.289589,22.648775],[-104.289966,22.64561],[-104.289624,22.64446],[-104.286399,22.644633],[-104.283358,22.646118],[-104.28044,22.645064],[-104.280005,22.643784],[-104.277864,22.641731],[-104.274567,22.640557],[-104.272806,22.639554],[-104.27177,22.638122],[-104.269275,22.635821],[-104.271134,22.632825],[-104.273009,22.631412],[-104.273642,22.630282],[-104.273305,22.628061],[-104.274031,22.626827],[-104.276697,22.625476],[-104.278747,22.624962],[-104.282486,22.622597],[-104.283288,22.621703],[-104.281516,22.617069],[-104.280464,22.61722],[-104.278336,22.615997],[-104.276065,22.615703],[-104.27623,22.612905],[-104.27449,22.610075],[-104.273691,22.606389],[-104.272545,22.604976],[-104.271246,22.604969],[-104.267459,22.60313],[-104.264954,22.60128],[-104.26187,22.598041],[-104.260258,22.595214],[-104.260684,22.592165],[-104.261547,22.588897],[-104.261407,22.586203],[-104.264056,22.586405],[-104.266411,22.588007],[-104.26843,22.588076],[-104.270588,22.588955],[-104.273602,22.58795],[-104.274944,22.586636],[-104.276205,22.584284],[-104.278173,22.583071],[-104.278809,22.580811],[-104.277773,22.579354],[-104.278867,22.576604],[-104.283778,22.570995],[-104.283994,22.566971],[-104.288855,22.560943],[-104.289574,22.558763],[-104.28885,22.552965],[-104.291981,22.554062],[-104.297053,22.555116],[-104.299164,22.556042],[-104.302409,22.55805],[-104.305689,22.557889],[-104.311183,22.55401],[-104.312719,22.550345],[-104.313184,22.547228],[-104.310055,22.546137],[-104.310524,22.544536],[-104.313456,22.542671],[-104.314089,22.540727],[-104.315512,22.541166],[-104.321063,22.535516],[-104.323115,22.537112],[-104.323939,22.536432],[-104.325824,22.537397],[-104.322705,22.533027],[-104.32158,22.532305],[-104.319748,22.532529],[-104.318914,22.531377],[-104.32093,22.526546],[-104.319499,22.517663],[-104.314363,22.507095],[-104.302831,22.492017],[-104.296126,22.472989],[-104.299025,22.461702],[-104.303538,22.457288],[-104.31105,22.450572],[-104.310818,22.449828],[-104.312676,22.448725],[-104.313211,22.449338],[-104.31477,22.44876],[-104.315761,22.447183],[-104.31527,22.446571],[-104.315782,22.444695],[-104.315073,22.444321],[-104.316124,22.441303],[-104.318242,22.440745],[-104.317511,22.438279],[-104.319105,22.438103],[-104.319412,22.435811],[-104.322205,22.435252],[-104.320188,22.430094],[-104.323009,22.428014],[-104.323827,22.428633],[-104.325331,22.4281],[-104.327484,22.429327],[-104.329334,22.428283],[-104.329332,22.43224],[-104.330603,22.43223],[-104.330133,22.43091],[-104.331142,22.430127],[-104.329448,22.426765],[-104.330944,22.424195],[-104.331525,22.424533],[-104.33416,22.421663],[-104.336978,22.424037],[-104.338213,22.42218],[-104.335718,22.420293],[-104.340817,22.419604],[-104.340663,22.418619],[-104.342785,22.418814],[-104.343701,22.416668],[-104.344747,22.415868],[-104.344459,22.417571],[-104.348843,22.409717],[-104.351771,22.407758],[-104.353533,22.401315],[-104.351661,22.389193],[-104.350041,22.386405],[-104.328041,22.381162],[-104.325316,22.380749],[-104.293128,22.365131],[-104.293076,22.362999],[-104.291807,22.360468],[-104.289152,22.35763],[-104.286869,22.357362],[-104.28574,22.356366],[-104.288087,22.353831],[-104.289259,22.35178],[-104.288847,22.349132],[-104.292694,22.345338],[-104.292079,22.343957],[-104.287628,22.344425],[-104.285603,22.345659],[-104.280849,22.344959],[-104.279276,22.343724],[-104.274773,22.342795],[-104.266595,22.343248],[-104.265759,22.343599],[-104.265295,22.346589],[-104.262657,22.345635],[-104.261462,22.346917],[-104.258925,22.347935],[-104.257913,22.34775],[-104.255955,22.349175],[-104.254743,22.348789],[-104.254269,22.349605],[-104.255457,22.350632],[-104.254541,22.351325],[-104.254865,22.355018],[-104.255669,22.355626],[-104.255183,22.357744],[-104.256668,22.359332],[-104.255775,22.36294],[-104.25662,22.364345],[-104.255977,22.366662],[-104.255857,22.36954],[-104.255231,22.370584],[-104.255089,22.373284],[-104.257435,22.375425],[-104.25823,22.377649],[-104.259131,22.377566],[-104.258845,22.382506],[-104.257641,22.385911],[-104.256333,22.386237],[-104.254779,22.385568],[-104.253197,22.386323],[-104.254442,22.392476],[-104.251738,22.39399],[-104.253039,22.394975],[-104.240979,22.412773],[-104.238658,22.412062],[-104.235839,22.413415],[-104.233572,22.415089],[-104.230939,22.414287],[-104.227499,22.417048],[-104.225724,22.419338],[-104.222295,22.420145],[-104.221436,22.420855],[-104.218877,22.421494],[-104.216521,22.421083],[-104.21495,22.422766],[-104.213641,22.421793],[-104.208784,22.422484],[-104.205778,22.420547],[-104.203775,22.417389],[-104.201603,22.416277],[-104.199986,22.41087],[-104.199188,22.407303],[-104.197752,22.405177],[-104.195204,22.404118],[-104.194682,22.402074],[-104.193044,22.399123],[-104.190599,22.399262],[-104.185543,22.395897],[-104.184366,22.394668],[-104.18128,22.392431],[-104.17969,22.392197],[-104.177701,22.389635],[-104.1755,22.389623],[-104.174568,22.388324],[-104.171507,22.387608],[-104.167386,22.387356],[-104.166485,22.388365],[-104.166152,22.390305],[-104.164636,22.392399],[-104.166212,22.393512],[-104.16645,22.39499],[-104.165481,22.397102],[-104.166052,22.399182],[-104.168053,22.402906],[-104.168252,22.404885],[-104.170485,22.405644],[-104.173711,22.408262],[-104.172271,22.41008],[-104.173636,22.414307],[-104.174422,22.420836],[-104.175256,22.420761],[-104.176503,22.422723],[-104.177472,22.42327],[-104.177748,22.42553],[-104.178856,22.427432],[-104.175926,22.427372],[-104.176382,22.428857],[-104.173782,22.429699],[-104.176052,22.431608],[-104.173749,22.434389],[-104.173562,22.437653],[-104.171745,22.43809],[-104.172253,22.440425],[-104.169974,22.440906],[-104.169847,22.442956],[-104.167512,22.444702],[-104.169432,22.444414],[-104.171641,22.443085],[-104.175062,22.442485],[-104.175066,22.44678],[-104.178472,22.448695],[-104.17956,22.450054],[-104.181511,22.448011],[-104.18488,22.448383],[-104.19078,22.446007],[-104.192215,22.446204],[-104.1951,22.447631],[-104.196659,22.449055],[-104.197554,22.451285],[-104.196927,22.452142],[-104.198911,22.453403],[-104.199874,22.456307],[-104.198211,22.456301],[-104.198405,22.458958],[-104.1979,22.460621],[-104.195743,22.462204],[-104.192715,22.462799],[-104.188425,22.46449],[-104.184981,22.464622],[-104.184972,22.466062],[-104.186797,22.466262],[-104.187647,22.468226],[-104.18573,22.471413],[-104.188188,22.468933],[-104.188333,22.470099],[-104.190779,22.470385],[-104.191693,22.471537],[-104.193245,22.475436],[-104.195213,22.472943],[-104.197297,22.477122],[-104.199355,22.474543],[-104.199565,22.473617],[-104.204917,22.471908],[-104.202645,22.475719],[-104.201862,22.47572],[-104.198871,22.479515],[-104.198874,22.480457],[-104.201186,22.483018],[-104.207357,22.481414],[-104.206677,22.482473],[-104.210049,22.482543],[-104.211294,22.481414],[-104.212397,22.482557],[-104.214947,22.483913],[-104.208792,22.483375],[-104.207527,22.485459],[-104.203196,22.486218],[-104.2017,22.486959],[-104.202327,22.488718],[-104.200392,22.491351],[-104.198961,22.49495],[-104.19639,22.497131],[-104.195184,22.497399],[-104.193665,22.499834],[-104.195376,22.502674],[-104.19468,22.50396],[-104.19265,22.503791],[-104.190774,22.506893],[-104.189519,22.507786],[-104.188972,22.507041],[-104.187719,22.507924],[-104.185721,22.507865],[-104.18534,22.506688],[-104.182418,22.507668],[-104.180678,22.505851],[-104.178055,22.505296],[-104.174834,22.507539],[-104.1724,22.508158],[-104.170562,22.507232],[-104.169012,22.509949],[-104.166907,22.511056],[-104.166858,22.512288],[-104.165312,22.512355],[-104.165333,22.513447],[-104.163766,22.514382],[-104.162314,22.514268],[-104.161158,22.512209],[-104.158648,22.51018],[-104.158353,22.509325],[-104.156945,22.510101],[-104.1571,22.511365],[-104.156476,22.513972],[-104.156612,22.515213],[-104.155666,22.515449],[-104.151998,22.514651],[-104.150407,22.516276],[-104.149821,22.509744],[-104.147689,22.509068],[-104.1469,22.50783],[-104.145678,22.507528],[-104.143091,22.504651],[-104.139826,22.503326],[-104.137422,22.50397],[-104.132398,22.503114],[-104.129667,22.503741],[-104.127901,22.502991],[-104.1235,22.502158],[-104.121347,22.496676],[-104.120734,22.49698],[-104.113509,22.49661],[-104.115254,22.498549],[-104.115219,22.499586],[-104.112977,22.503297],[-104.11154,22.503505],[-104.113269,22.507067],[-104.112569,22.508593],[-104.113196,22.510569],[-104.115471,22.512161],[-104.11701,22.512565],[-104.120767,22.515627],[-104.120796,22.517049],[-104.119653,22.517809],[-104.118535,22.517437],[-104.114981,22.517876],[-104.113504,22.519486],[-104.113502,22.520491],[-104.11117,22.521128],[-104.109986,22.522821],[-104.108527,22.52365],[-104.106581,22.523253],[-104.105302,22.525504],[-104.104307,22.529022],[-104.104787,22.530018],[-104.102707,22.531447],[-104.100409,22.53181],[-104.097782,22.531473],[-104.09485,22.532852],[-104.092811,22.531879],[-104.090091,22.531832],[-104.08931,22.532641],[-104.088144,22.532273],[-104.088022,22.533369],[-104.083863,22.532881],[-104.08188,22.533556],[-104.079872,22.53322],[-104.07716,22.531782],[-104.076644,22.529678],[-104.075156,22.528813],[-104.072627,22.524956],[-104.068795,22.522],[-104.071979,22.518542],[-104.074155,22.515662],[-104.074179,22.513318],[-104.071608,22.511913],[-104.069381,22.509017],[-104.071569,22.506014],[-104.071935,22.503936],[-104.071153,22.502433],[-104.066963,22.499245],[-104.064596,22.497163],[-104.061637,22.495124],[-104.057067,22.493198],[-104.054791,22.489445],[-104.054608,22.487727],[-104.055886,22.485567],[-104.055675,22.483479],[-104.054646,22.481055],[-104.053513,22.479662],[-104.052463,22.474706],[-104.051906,22.473172],[-104.051933,22.469919],[-104.051575,22.466748],[-104.052435,22.464499],[-104.054684,22.462254],[-104.05616,22.459643],[-104.056861,22.456666],[-104.058429,22.454598],[-104.061005,22.452892],[-104.062241,22.451277],[-104.062014,22.450377],[-104.060696,22.450185],[-104.058178,22.448634],[-104.057673,22.447572],[-104.058588,22.446203],[-104.058601,22.443487],[-104.060748,22.442235],[-104.063277,22.441708],[-104.063201,22.438817],[-104.062345,22.435922],[-104.063033,22.434932],[-104.063436,22.432585],[-104.061134,22.429596],[-104.061637,22.4258],[-104.063219,22.425004],[-104.066482,22.426888],[-104.067743,22.425836],[-104.067987,22.424531],[-104.071279,22.422243],[-104.072847,22.420265],[-104.073147,22.418821],[-104.072783,22.415787],[-104.073467,22.413244],[-104.075075,22.410731],[-104.076742,22.406851],[-104.077237,22.402856],[-104.076088,22.400139],[-104.076194,22.398784],[-104.078266,22.394009],[-104.080716,22.390861],[-104.080441,22.388421],[-104.077536,22.386868],[-104.075391,22.383131],[-104.076647,22.381806],[-104.07693,22.379645],[-104.078779,22.376906],[-104.082852,22.376059],[-104.084413,22.374451],[-104.087527,22.374278],[-104.087985,22.378437],[-104.089535,22.378897],[-104.092163,22.378369],[-104.094895,22.376306],[-104.095841,22.373513],[-104.097194,22.371452],[-104.097129,22.368653],[-104.096096,22.367624],[-104.095581,22.365847],[-104.096078,22.364575],[-104.095959,22.360876],[-104.097345,22.357824],[-104.094643,22.355078],[-104.09141,22.355719],[-104.087536,22.357838],[-104.086479,22.357359],[-104.083686,22.357829],[-104.081248,22.359698],[-104.077691,22.363383],[-104.07531,22.36439],[-104.074334,22.363296],[-104.072769,22.362916],[-104.071571,22.361801],[-104.067475,22.361407],[-104.066429,22.362504],[-104.066711,22.364133],[-104.064673,22.364211],[-104.063022,22.365133],[-104.061134,22.367177],[-104.060551,22.368579],[-104.058565,22.369881],[-104.056789,22.37209],[-104.055509,22.372369],[-104.053758,22.37157],[-104.05122,22.374876],[-104.049252,22.375322],[-104.048753,22.376445],[-104.046843,22.37565],[-104.045652,22.375933],[-104.042889,22.375306],[-104.04195,22.375837],[-104.039449,22.37409],[-104.03779,22.374128],[-104.035014,22.371354],[-104.033647,22.37159],[-104.033234,22.370806],[-104.031652,22.371256],[-104.028715,22.370603],[-104.027171,22.368151],[-104.026179,22.368124],[-104.025146,22.365863],[-104.023179,22.364493],[-104.022137,22.365134],[-104.020404,22.364855],[-104.018734,22.365603],[-104.017272,22.364834],[-104.015134,22.364813],[-104.014252,22.36608],[-104.015013,22.368433],[-104.013935,22.369781],[-104.012063,22.370804],[-104.012751,22.372836],[-104.012356,22.377079],[-104.012683,22.37855],[-104.010877,22.379491],[-104.010947,22.380242],[-104.00878,22.382387],[-104.003251,22.38993],[-104.004078,22.391216],[-104.003937,22.396278],[-104.004218,22.397634],[-104.005567,22.399359],[-104.005839,22.402161],[-104.00632,22.402797],[-104.005795,22.4051],[-104.005906,22.408684],[-104.00435,22.409152],[-104.003254,22.410275],[-103.997627,22.409427],[-103.995135,22.409824],[-103.991822,22.411078],[-103.991301,22.412379],[-103.989089,22.412961],[-103.987877,22.414334],[-103.986392,22.414833],[-103.985044,22.417906],[-103.985015,22.420098],[-103.985886,22.420825],[-103.984463,22.423671],[-103.982759,22.423681],[-103.982702,22.424761],[-103.981526,22.426106],[-103.980888,22.425119],[-103.977073,22.426194],[-103.976469,22.427257],[-103.976509,22.430399],[-103.974829,22.430518],[-103.974622,22.433199],[-103.975303,22.434773],[-103.976525,22.435424],[-103.975565,22.436192],[-103.969651,22.434274],[-103.967381,22.433113],[-103.967121,22.433479],[-103.96057,22.433179],[-103.959966,22.43442],[-103.960226,22.436981],[-103.959771,22.438044],[-103.960674,22.439733],[-103.960716,22.441091],[-103.959669,22.443647],[-103.96029,22.444648],[-103.958979,22.445402],[-103.957956,22.448145],[-103.95866,22.451085],[-103.956436,22.452416],[-103.95606,22.454054],[-103.953401,22.455099],[-103.952405,22.458138],[-103.951183,22.460402],[-103.949328,22.461792],[-103.945742,22.461861],[-103.942287,22.461423],[-103.937953,22.462755],[-103.937422,22.464753],[-103.937971,22.466256],[-103.936811,22.466396],[-103.938507,22.46915],[-103.93804,22.470184],[-103.935113,22.470096],[-103.933443,22.4712],[-103.934629,22.473191],[-103.937161,22.47294],[-103.938162,22.473286],[-103.937791,22.475203],[-103.934664,22.47663],[-103.933874,22.476249],[-103.932619,22.474105],[-103.931476,22.4736],[-103.929442,22.475124],[-103.929393,22.476099],[-103.931206,22.476749],[-103.934932,22.482638],[-103.936148,22.485059],[-103.939664,22.488615],[-103.939243,22.490056],[-103.93505,22.48805],[-103.933082,22.489093],[-103.934987,22.49144],[-103.93647,22.492455],[-103.938075,22.495416],[-103.937089,22.497599],[-103.934509,22.499104],[-103.935144,22.500495],[-103.938129,22.500065],[-103.94011,22.499265],[-103.941495,22.500477],[-103.941728,22.502187],[-103.945582,22.504099],[-103.947185,22.503122],[-103.949941,22.502871],[-103.950855,22.503729],[-103.951132,22.505303],[-103.950009,22.506688],[-103.950041,22.508887],[-103.952414,22.508543],[-103.953548,22.505497],[-103.956363,22.504554],[-103.958288,22.507693],[-103.961818,22.509098],[-103.963411,22.50804],[-103.964303,22.509637],[-103.963174,22.511804],[-103.963144,22.515019],[-103.963525,22.515689],[-103.966197,22.517226],[-103.967545,22.517457],[-103.971544,22.515948],[-103.974326,22.516238],[-103.975159,22.513469],[-103.976326,22.513321],[-103.977263,22.516488],[-103.978537,22.516426],[-103.979288,22.515347],[-103.980649,22.515103],[-103.981134,22.517239],[-103.980288,22.519038],[-103.983341,22.519728],[-103.984833,22.519138],[-103.988153,22.523545],[-103.991256,22.523267],[-103.991177,22.52433],[-103.989976,22.525886],[-103.987615,22.526738],[-103.986847,22.52831],[-103.98804,22.5293],[-103.98905,22.529187],[-103.990381,22.527713],[-103.993774,22.529905],[-103.999763,22.530757],[-104.001451,22.532206],[-104.002778,22.535254],[-104.005571,22.5366],[-104.004988,22.538263],[-104.003412,22.539779],[-104.003147,22.541273],[-104.001198,22.542645],[-103.998881,22.543604],[-103.996297,22.543356],[-103.994715,22.542688],[-103.987069,22.542832],[-103.984875,22.542375],[-103.984499,22.541493],[-103.980095,22.540617],[-103.976667,22.542603],[-103.973024,22.543122],[-103.972332,22.545114],[-103.975945,22.546207],[-103.978504,22.548663],[-103.979299,22.548422],[-103.982335,22.549816],[-103.981808,22.55062],[-103.983104,22.551947],[-103.98387,22.554054],[-103.985313,22.553449],[-103.986925,22.555897],[-103.988511,22.556693],[-103.990667,22.556951],[-103.990404,22.557986],[-103.993631,22.560985],[-103.993766,22.564259],[-103.996024,22.564266],[-103.996992,22.564791],[-103.998683,22.564259],[-103.999932,22.56453],[-103.999369,22.565798],[-104.000627,22.566253],[-104.00075,22.567556],[-103.997072,22.568498],[-103.996081,22.569924],[-103.993098,22.57028],[-103.991087,22.571767],[-103.990174,22.573042],[-103.99061,22.578656],[-103.989986,22.582486],[-103.986785,22.584729],[-103.984907,22.585494],[-103.983286,22.585472],[-103.984579,22.587259],[-103.986222,22.590902],[-103.988884,22.592474],[-103.995272,22.591738],[-103.996434,22.590799],[-103.997287,22.591441],[-104.000983,22.592036],[-104.00222,22.592579],[-104.003978,22.594494],[-104.004909,22.594402],[-104.006867,22.595657],[-104.009737,22.594948],[-104.012035,22.596092],[-104.012632,22.595653],[-104.013882,22.59661],[-104.015832,22.595945],[-104.018066,22.596989],[-104.020044,22.599255],[-104.019834,22.600687],[-104.022027,22.601831],[-104.023404,22.603538],[-104.023494,22.606558],[-104.02435,22.608494],[-104.024117,22.609344],[-104.026266,22.611535],[-104.026184,22.612976],[-104.027006,22.613178],[-104.025719,22.614239],[-104.024893,22.617216],[-104.026633,22.616504],[-104.026913,22.618586],[-104.025707,22.621598],[-104.026361,22.622186],[-104.025948,22.624226],[-104.027843,22.625269],[-104.029181,22.62705],[-104.030138,22.627378],[-104.031169,22.629045],[-104.031627,22.631389],[-104.033205,22.632234],[-104.033141,22.634765],[-104.032385,22.636008],[-104.027696,22.639525],[-104.027458,22.640558],[-104.028233,22.644551],[-104.02694,22.64751],[-104.027467,22.648416],[-104.025164,22.652013],[-104.019507,22.652649],[-104.019461,22.655351],[-104.016379,22.664349],[-104.015509,22.668911],[-104.018415,22.670255],[-104.026143,22.67432],[-104.029669,22.676794],[-104.030126,22.678515],[-104.031368,22.678857],[-104.032812,22.676342],[-104.033171,22.674548],[-104.032973,22.671727],[-104.03424,22.670518],[-104.043267,22.671893],[-104.045979,22.676409],[-104.046937,22.677138],[-104.05029,22.676787],[-104.05481,22.678421],[-104.051063,22.679116],[-104.048524,22.680185],[-104.046888,22.681808],[-104.046606,22.684249],[-104.048092,22.686325],[-104.050999,22.688421],[-104.052652,22.6887],[-104.05804,22.688158],[-104.059475,22.687477],[-104.061903,22.688213],[-104.066364,22.690768],[-104.069192,22.690062],[-104.070453,22.690611],[-104.072968,22.693246],[-104.073623,22.696953],[-104.071984,22.699296],[-104.072144,22.701354],[-104.069031,22.701246],[-104.064105,22.695345],[-104.063146,22.693443],[-104.061016,22.691443],[-104.059164,22.692064],[-104.05749,22.694854],[-104.057963,22.696664],[-104.060095,22.698032],[-104.061538,22.70093],[-104.06196,22.703786],[-104.064328,22.705644],[-104.064151,22.706963],[-104.060706,22.708514],[-104.056111,22.709026],[-104.052436,22.707742],[-104.049705,22.708358],[-104.048131,22.710787],[-104.048013,22.713497],[-104.049753,22.715404],[-104.054209,22.718773],[-104.055466,22.720135],[-104.055912,22.723978],[-104.053303,22.724882],[-104.05264,22.72629],[-104.050347,22.726625],[-104.048683,22.72788],[-104.046145,22.728678],[-104.045225,22.728032],[-104.042886,22.729143],[-104.040809,22.728063],[-104.036983,22.729617],[-104.036101,22.730604],[-104.035979,22.734036],[-104.032368,22.735369],[-104.029328,22.738332],[-104.027667,22.739045],[-104.027777,22.741743],[-104.025691,22.743278],[-104.020524,22.743879],[-104.018683,22.745062],[-104.016524,22.744938],[-104.014864,22.74565],[-104.012999,22.747626],[-104.011927,22.747928],[-104.009517,22.747416],[-104.009424,22.745589],[-104.007765,22.744252],[-104.005611,22.744978],[-104.002993,22.746895],[-103.99967,22.746253],[-103.998031,22.747533],[-103.995935,22.747226],[-103.993444,22.747401],[-103.991927,22.748002],[-103.988915,22.746489],[-103.989969,22.744186],[-103.990162,22.74231],[-103.988974,22.74187],[-103.987664,22.742869],[-103.985269,22.742901],[-103.981815,22.745499],[-103.977117,22.747155],[-103.974638,22.747025],[-103.975095,22.744942],[-103.973773,22.742658],[-103.97155,22.741764],[-103.971004,22.742569],[-103.970987,22.745063],[-103.96941,22.746692],[-103.967253,22.74687],[-103.965158,22.746093],[-103.961472,22.747053],[-103.959304,22.745447],[-103.956272,22.745612],[-103.952158,22.74659],[-103.950972,22.747319],[-103.949579,22.74691],[-103.948422,22.74563],[-103.945382,22.746202],[-103.941195,22.749845],[-103.93994,22.750159],[-103.937122,22.747466],[-103.93374,22.746047],[-103.932911,22.745338],[-103.930836,22.745267],[-103.928005,22.74725],[-103.926231,22.747733],[-103.92477,22.747041],[-103.923269,22.748522],[-103.920323,22.748079],[-103.916523,22.74983],[-103.915175,22.74982],[-103.913155,22.748954],[-103.910018,22.750144],[-103.908855,22.749976],[-103.908426,22.748677],[-103.909211,22.74776],[-103.906601,22.746287],[-103.905627,22.74398],[-103.904135,22.742171],[-103.904147,22.740929],[-103.902461,22.738351],[-103.901573,22.734948],[-103.90313,22.730859],[-103.901567,22.729535],[-103.900021,22.729802],[-103.898328,22.728277],[-103.895236,22.730611],[-103.893107,22.732998],[-103.890221,22.735325],[-103.888172,22.734782],[-103.88598,22.734764],[-103.884595,22.735292],[-103.881398,22.734544],[-103.879034,22.735506],[-103.877557,22.735288],[-103.875114,22.737158],[-103.874667,22.735641],[-103.873671,22.735169],[-103.871952,22.735883],[-103.870309,22.73547],[-103.867753,22.7324],[-103.866078,22.733344],[-103.866157,22.734981],[-103.865169,22.735434],[-103.862623,22.733731],[-103.858,22.733346],[-103.855689,22.731472],[-103.855591,22.730015],[-103.854104,22.729763],[-103.852793,22.730947],[-103.85061,22.730346],[-103.848741,22.731596],[-103.847361,22.730817],[-103.844885,22.731836],[-103.841505,22.731377],[-103.840095,22.732098],[-103.838537,22.731828],[-103.836965,22.730692],[-103.837327,22.728928],[-103.835899,22.728242],[-103.835068,22.730386],[-103.832722,22.733568],[-103.830493,22.733441],[-103.829492,22.732586],[-103.829253,22.73104],[-103.827117,22.734652],[-103.824423,22.734681],[-103.821633,22.73404],[-103.821234,22.730986],[-103.819787,22.728478],[-103.81882,22.728354],[-103.818873,22.730242],[-103.816755,22.728462],[-103.815499,22.728788],[-103.813729,22.730319],[-103.812053,22.729218],[-103.810141,22.730317],[-103.80589,22.731497],[-103.805208,22.730131],[-103.803882,22.730171],[-103.802735,22.731093],[-103.800649,22.731305],[-103.799916,22.730036],[-103.79529,22.730381],[-103.794387,22.729115],[-103.792765,22.729416],[-103.792004,22.730448],[-103.789638,22.73064],[-103.788367,22.729735],[-103.786795,22.729915],[-103.785906,22.731067],[-103.784459,22.731636],[-103.783503,22.730505],[-103.781385,22.729817],[-103.780315,22.730199],[-103.778924,22.732029],[-103.775759,22.732687],[-103.774674,22.733869],[-103.771539,22.733214],[-103.771251,22.730908],[-103.769227,22.727259],[-103.769738,22.725315],[-103.768852,22.722478],[-103.769074,22.720392],[-103.762645,22.719895],[-103.760002,22.719433],[-103.754806,22.719548],[-103.755903,22.716259],[-103.755444,22.714884],[-103.752416,22.712546],[-103.751956,22.710491],[-103.752502,22.709019],[-103.753613,22.70829],[-103.752836,22.706546],[-103.751889,22.705881],[-103.751611,22.70323],[-103.753163,22.700768],[-103.753353,22.6985],[-103.752718,22.696223],[-103.751311,22.695047],[-103.753277,22.69333],[-103.754415,22.691227],[-103.75603,22.690292],[-103.758164,22.686304],[-103.759568,22.684646],[-103.759513,22.681976],[-103.760999,22.681521],[-103.761407,22.679461],[-103.763198,22.677018],[-103.761941,22.675487],[-103.762853,22.674865],[-103.763623,22.672779],[-103.762795,22.669521],[-103.761612,22.668404],[-103.762909,22.665953],[-103.76348,22.662393],[-103.759871,22.660822],[-103.758669,22.658421],[-103.760219,22.656603],[-103.760198,22.655318],[-103.762081,22.649948],[-103.764118,22.650738],[-103.765166,22.650487],[-103.767297,22.648257],[-103.76846,22.643329],[-103.767112,22.640826],[-103.767867,22.638787],[-103.767666,22.635806],[-103.765992,22.633412],[-103.765196,22.629511],[-103.764391,22.628487],[-103.761744,22.627074],[-103.760859,22.625802],[-103.762102,22.625286],[-103.765883,22.62228],[-103.767027,22.619081],[-103.76921,22.617767],[-103.769539,22.616637],[-103.772741,22.614494],[-103.773451,22.611495],[-103.778576,22.609904],[-103.797158,22.603171],[-103.813804,22.597489],[-103.8196,22.595579],[-103.820059,22.59449],[-103.822629,22.593542],[-103.823929,22.591854],[-103.824081,22.590123],[-103.825206,22.587971],[-103.826362,22.58859],[-103.828925,22.587784],[-103.832065,22.585427],[-103.833106,22.585903],[-103.834505,22.58449],[-103.834498,22.583445],[-103.836097,22.583227],[-103.837062,22.582115],[-103.838981,22.581956],[-103.841626,22.580613],[-103.841876,22.579739],[-103.843552,22.578977],[-103.845197,22.579598],[-103.84567,22.578589],[-103.84836,22.579292],[-103.849315,22.578356],[-103.85239,22.577618],[-103.855334,22.574952],[-103.855766,22.573362],[-103.855365,22.571836],[-103.857434,22.571237],[-103.85604,22.570545],[-103.856489,22.569222],[-103.857909,22.568041],[-103.857911,22.566513],[-103.860721,22.567619],[-103.860738,22.565089],[-103.858897,22.564062],[-103.857331,22.562579],[-103.852231,22.556268],[-103.851647,22.555061],[-103.85194,22.553262],[-103.853563,22.552039],[-103.853797,22.549785],[-103.854961,22.549973],[-103.85587,22.548709],[-103.858117,22.547587],[-103.859537,22.547942],[-103.861639,22.54765],[-103.864909,22.546276],[-103.866883,22.544696],[-103.868058,22.542396],[-103.864683,22.539447],[-103.866656,22.538549],[-103.869307,22.539609],[-103.870476,22.539422],[-103.87151,22.538171],[-103.871643,22.535895],[-103.873364,22.53194],[-103.872982,22.527115],[-103.874759,22.524201],[-103.875186,22.521576],[-103.87243,22.518436],[-103.870427,22.517498],[-103.868851,22.518145],[-103.868318,22.516567],[-103.865576,22.515154],[-103.864254,22.512998],[-103.865695,22.512967],[-103.865373,22.511375],[-103.863558,22.509933],[-103.86509,22.509842],[-103.864363,22.509124],[-103.864863,22.507504],[-103.863459,22.507396],[-103.864435,22.503897],[-103.863009,22.503434],[-103.863234,22.502145],[-103.862316,22.501892],[-103.862976,22.497913],[-103.863934,22.496947],[-103.863466,22.494344],[-103.863985,22.491443],[-103.865366,22.488737],[-103.865019,22.487762],[-103.867319,22.483841],[-103.867939,22.482028],[-103.867767,22.478418],[-103.869349,22.475206],[-103.8697,22.473738],[-103.87107,22.472475],[-103.873326,22.471769],[-103.876127,22.471981],[-103.877284,22.473569],[-103.881186,22.47472],[-103.882085,22.477173],[-103.885369,22.473525],[-103.884777,22.468975],[-103.881842,22.468827],[-103.881686,22.466097],[-103.882855,22.458017],[-103.882421,22.453336],[-103.879174,22.452452],[-103.878432,22.451364],[-103.877863,22.448252],[-103.876887,22.445973],[-103.876866,22.44346],[-103.876098,22.441184],[-103.879855,22.440008],[-103.885253,22.44085],[-103.887455,22.441766],[-103.890249,22.441805],[-103.894338,22.439441],[-103.8947,22.438164],[-103.891981,22.435791],[-103.888423,22.433311],[-103.887275,22.4321],[-103.88167,22.428803],[-103.87785,22.427657],[-103.876854,22.42647],[-103.875176,22.426211],[-103.873181,22.424761],[-103.872708,22.422806],[-103.874118,22.421921],[-103.879343,22.420689],[-103.880698,22.419336],[-103.880623,22.418163],[-103.878592,22.418181],[-103.874546,22.419136],[-103.873176,22.418484],[-103.874647,22.416999],[-103.87212,22.416042],[-103.87078,22.417297],[-103.87016,22.415792],[-103.868526,22.414932],[-103.865976,22.415227],[-103.866929,22.409381],[-103.869312,22.401262],[-103.871522,22.400596],[-103.873442,22.401357],[-103.878303,22.40165],[-103.882572,22.401615],[-103.884927,22.399915],[-103.8862,22.400203],[-103.88628,22.398901],[-103.88446,22.397471],[-103.885089,22.396599],[-103.883598,22.395016],[-103.883254,22.393575],[-103.884088,22.392081],[-103.883451,22.390024],[-103.886577,22.388681],[-103.888276,22.38951],[-103.889906,22.38864],[-103.892455,22.388028],[-103.891243,22.383572],[-103.892665,22.382557],[-103.894928,22.381734],[-103.897312,22.381647],[-103.898727,22.379577],[-103.899271,22.377174],[-103.898825,22.376115],[-103.895801,22.364651],[-103.896163,22.363857],[-103.898129,22.363795],[-103.899143,22.363032],[-103.90096,22.363467],[-103.901702,22.364534],[-103.904343,22.364563],[-103.90614,22.362916],[-103.907863,22.36205],[-103.908193,22.360069],[-103.909247,22.359393],[-103.910696,22.353921],[-103.911837,22.352255],[-103.913421,22.351096],[-103.918559,22.349348],[-103.9213,22.34788],[-103.921393,22.342719],[-103.920204,22.34087],[-103.919329,22.338323],[-103.920567,22.335038],[-103.922083,22.335165],[-103.925931,22.332559],[-103.926022,22.331616],[-103.923633,22.329085],[-103.922428,22.326694],[-103.923888,22.324918],[-103.92318,22.323442],[-103.920914,22.32281],[-103.920287,22.321579],[-103.921512,22.32191],[-103.922512,22.318698],[-103.919711,22.316586],[-103.920963,22.314275],[-103.919933,22.313252],[-103.917068,22.312876],[-103.916188,22.312355],[-103.915856,22.310506],[-103.917661,22.307528],[-103.917825,22.305099],[-103.918877,22.304051],[-103.915476,22.301501],[-103.914044,22.300899],[-103.91403,22.299949],[-103.916126,22.300081],[-103.915542,22.294081],[-103.915829,22.29232],[-103.914598,22.292859],[-103.913357,22.292244],[-103.914819,22.291105],[-103.914303,22.289144],[-103.915994,22.288544],[-103.913697,22.287196],[-103.913644,22.284854],[-103.911235,22.284382],[-103.910149,22.283328],[-103.910011,22.281541],[-103.910841,22.281063],[-103.912271,22.281658],[-103.91196,22.279813],[-103.913368,22.279716],[-103.914294,22.277609],[-103.913525,22.274648],[-103.914189,22.273023],[-103.91357,22.271524],[-103.912413,22.271814],[-103.911754,22.270475],[-103.913833,22.269445],[-103.9163,22.266708],[-103.91752,22.264542],[-103.916486,22.263562],[-103.917876,22.26197],[-103.916732,22.260794],[-103.91457,22.260652],[-103.91441,22.259224],[-103.913324,22.258331],[-103.91302,22.256821],[-103.911424,22.256028],[-103.910169,22.254534],[-103.907679,22.254608],[-103.907038,22.253429],[-103.907224,22.251409],[-103.906147,22.251641],[-103.90531,22.249913],[-103.90584,22.248341],[-103.90478,22.245245],[-103.903283,22.244552],[-103.903994,22.242834],[-103.901656,22.237081],[-103.898289,22.234219],[-103.896266,22.233556],[-103.895785,22.232219],[-103.894533,22.231593],[-103.892422,22.228847],[-103.88697,22.227061],[-103.885797,22.225101],[-103.885881,22.223281],[-103.884403,22.22028],[-103.88509,22.217293],[-103.883637,22.215082],[-103.882175,22.214518],[-103.881672,22.211719],[-103.88113,22.205324],[-103.882933,22.202508],[-103.884048,22.201487],[-103.883935,22.197584],[-103.884858,22.196043],[-103.882561,22.195821],[-103.878569,22.192477],[-103.876894,22.192141],[-103.87545,22.189367],[-103.873427,22.184541],[-103.873445,22.180968],[-103.873835,22.180223],[-103.873117,22.178397],[-103.870826,22.17617],[-103.868725,22.172742],[-103.866275,22.169826],[-103.862936,22.166882],[-103.862163,22.171786],[-103.85941,22.182643],[-103.857793,22.188158],[-103.852546,22.201194],[-103.849229,22.208191],[-103.844076,22.222066],[-103.844672,22.230356],[-103.843509,22.231237],[-103.842572,22.244401],[-103.842279,22.250317],[-103.843502,22.25452],[-103.843246,22.255981],[-103.844244,22.258069],[-103.845193,22.26135],[-103.844583,22.263231],[-103.842585,22.264716],[-103.84253,22.266435],[-103.839838,22.266288],[-103.837361,22.269976],[-103.836647,22.271954],[-103.835656,22.272498],[-103.836062,22.274322],[-103.83511,22.275096],[-103.83478,22.277044],[-103.832033,22.279397],[-103.83078,22.28269],[-103.830378,22.284866],[-103.82862,22.286613],[-103.829153,22.289931],[-103.831092,22.29209],[-103.831835,22.294837],[-103.83367,22.296932],[-103.833657,22.298428],[-103.836658,22.304294],[-103.837452,22.309567],[-103.83856,22.311006],[-103.837953,22.312464],[-103.839439,22.314621],[-103.839149,22.316234],[-103.840247,22.318713],[-103.841159,22.322621],[-103.843968,22.326367],[-103.846107,22.33098],[-103.845434,22.342757],[-103.841485,22.345605],[-103.839029,22.349105],[-103.837456,22.352],[-103.834571,22.352403],[-103.830623,22.355188],[-103.829129,22.354202],[-103.827881,22.354243],[-103.826167,22.356285],[-103.826808,22.358284],[-103.825059,22.360459],[-103.823164,22.361081],[-103.822647,22.36268],[-103.819941,22.364138],[-103.817172,22.368995],[-103.817459,22.371459],[-103.811152,22.376745],[-103.812041,22.37919],[-103.811765,22.382602],[-103.813008,22.38392],[-103.812094,22.388822],[-103.811645,22.392585],[-103.809787,22.395299],[-103.808704,22.398745],[-103.809668,22.399688],[-103.811659,22.400475],[-103.813177,22.403397],[-103.813259,22.405543],[-103.812686,22.407669],[-103.81031,22.411563],[-103.810104,22.413898],[-103.810709,22.417635],[-103.809329,22.422717],[-103.809573,22.425946],[-103.810176,22.427285],[-103.808046,22.43134],[-103.807597,22.435888],[-103.8068,22.439864],[-103.805898,22.439873],[-103.806258,22.441831],[-103.802755,22.445111],[-103.802643,22.44713],[-103.800992,22.450634],[-103.799654,22.451241],[-103.798755,22.453538],[-103.798055,22.457727],[-103.796578,22.462658],[-103.79561,22.465024],[-103.793524,22.467318],[-103.791953,22.469807],[-103.788906,22.473913],[-103.786983,22.477768],[-103.785968,22.48189],[-103.786057,22.483647],[-103.784638,22.485785],[-103.783845,22.487852],[-103.784252,22.489415],[-103.783698,22.495775],[-103.783866,22.497281],[-103.785049,22.499213],[-103.783892,22.500435],[-103.784865,22.505716],[-103.784341,22.506273],[-103.783554,22.509812],[-103.784476,22.510092],[-103.78514,22.508991],[-103.78566,22.510457],[-103.783148,22.511124],[-103.782171,22.514874],[-103.781602,22.514706],[-103.777385,22.524934],[-103.776989,22.526208],[-103.776421,22.534134],[-103.774899,22.539852],[-103.775053,22.541831],[-103.773855,22.546406],[-103.770948,22.550812],[-103.769102,22.555789],[-103.759976,22.555601],[-103.759136,22.553691],[-103.759241,22.551665],[-103.755289,22.55422],[-103.753108,22.557871],[-103.751685,22.558522],[-103.744503,22.558499],[-103.738452,22.571964],[-103.732562,22.572405],[-103.731365,22.573046],[-103.726555,22.574147],[-103.723926,22.572457],[-103.721759,22.571985],[-103.719387,22.570731],[-103.717826,22.56906],[-103.716183,22.568657],[-103.714067,22.566397],[-103.712843,22.566224],[-103.711516,22.564548],[-103.708096,22.563123],[-103.706129,22.563725],[-103.700846,22.563031],[-103.69935,22.561849],[-103.697113,22.561409],[-103.695665,22.560603],[-103.694003,22.558607],[-103.690715,22.557929],[-103.686927,22.558354],[-103.683804,22.556606],[-103.682802,22.555232],[-103.681369,22.554796],[-103.680124,22.556835],[-103.677245,22.557559],[-103.677098,22.558306],[-103.673704,22.561432],[-103.672586,22.561129],[-103.67093,22.558514],[-103.669328,22.557428],[-103.667212,22.554186],[-103.665053,22.552867],[-103.662823,22.548005],[-103.661011,22.547144],[-103.660236,22.547496],[-103.65965,22.550272],[-103.656696,22.55114],[-103.655018,22.552537],[-103.654544,22.554704],[-103.651565,22.556478],[-103.649316,22.556674],[-103.647924,22.554879],[-103.64617,22.554833],[-103.645173,22.55596],[-103.642934,22.556333],[-103.64152,22.557589],[-103.637941,22.558273],[-103.636228,22.560019],[-103.635307,22.560143],[-103.630481,22.559319],[-103.628157,22.561942],[-103.625868,22.562207],[-103.622382,22.563574],[-103.618527,22.563671],[-103.617485,22.560368],[-103.616067,22.560224],[-103.611783,22.558423],[-103.609997,22.559718],[-103.606813,22.558976],[-103.602759,22.556792],[-103.602322,22.554731],[-103.60255,22.55129],[-103.604478,22.551452],[-103.606001,22.545677],[-103.603952,22.544576],[-103.603033,22.543507],[-103.604564,22.541012],[-103.604764,22.53841],[-103.602368,22.535693],[-103.602646,22.534761],[-103.600559,22.528951],[-103.599335,22.526375],[-103.596047,22.526017],[-103.586099,22.525497],[-103.584647,22.525043],[-103.583734,22.521966],[-103.584222,22.518816],[-103.588504,22.514432],[-103.589132,22.511186],[-103.588845,22.508469],[-103.590126,22.507257],[-103.594601,22.505447],[-103.592913,22.504358],[-103.591913,22.502822],[-103.58902,22.501593],[-103.586272,22.502049],[-103.585593,22.500037],[-103.583375,22.498715],[-103.58019,22.498719],[-103.58059,22.497623],[-103.579334,22.496196],[-103.5804,22.495794],[-103.579634,22.494395],[-103.58,22.493349],[-103.578813,22.492713],[-103.579079,22.490961],[-103.580992,22.488829],[-103.582457,22.488793],[-103.581266,22.485543],[-103.581773,22.484397],[-103.580724,22.48342],[-103.580601,22.477398],[-103.578098,22.475139],[-103.576385,22.474547],[-103.574884,22.472747],[-103.573953,22.473249],[-103.573138,22.470842],[-103.571539,22.469164],[-103.570826,22.469172],[-103.572083,22.466706],[-103.5738,22.466656],[-103.572576,22.464544],[-103.573553,22.463257],[-103.573853,22.460624],[-103.572731,22.45967],[-103.569904,22.455565],[-103.5707,22.453069],[-103.570442,22.450694],[-103.569143,22.447738],[-103.568912,22.446273],[-103.572186,22.441069],[-103.572529,22.437541],[-103.570692,22.437331],[-103.568252,22.438055],[-103.566479,22.436967],[-103.564958,22.435133],[-103.564056,22.430833],[-103.563364,22.430125],[-103.560954,22.429713],[-103.559456,22.428952],[-103.559216,22.427907],[-103.560216,22.426759],[-103.560937,22.424544],[-103.560618,22.423107],[-103.562289,22.422098],[-103.56412,22.422023],[-103.567071,22.420863],[-103.569159,22.418455],[-103.571019,22.418216],[-103.574483,22.414909],[-103.578425,22.410498],[-103.581059,22.409482],[-103.585049,22.409452],[-103.589633,22.406972],[-103.59402,22.407215],[-103.594459,22.405761],[-103.594073,22.403922],[-103.594156,22.399045],[-103.593618,22.396895],[-103.594413,22.394576],[-103.592964,22.392581],[-103.592756,22.389277],[-103.594338,22.385031],[-103.595929,22.383191],[-103.597563,22.37453],[-103.600336,22.370294],[-103.601735,22.36346],[-103.602844,22.360904],[-103.606414,22.360932],[-103.609809,22.361544],[-103.610687,22.359842],[-103.610448,22.357061],[-103.609482,22.352696],[-103.604152,22.348115],[-103.60264,22.346316],[-103.602602,22.343439],[-103.603764,22.342669],[-103.604802,22.340142],[-103.606711,22.338306],[-103.611192,22.337889],[-103.615171,22.338541],[-103.618656,22.339935],[-103.621398,22.340708],[-103.624165,22.340211],[-103.627415,22.340401],[-103.62901,22.34178],[-103.634953,22.343483],[-103.637197,22.342852],[-103.642111,22.340873],[-103.642053,22.339568],[-103.638267,22.337171],[-103.638181,22.335169],[-103.63923,22.331732],[-103.640656,22.328915],[-103.641576,22.324176],[-103.642781,22.322561],[-103.643469,22.319998],[-103.644283,22.31962],[-103.644964,22.317838],[-103.644748,22.314974],[-103.643889,22.313374],[-103.643495,22.309873],[-103.642308,22.305961],[-103.637788,22.295233],[-103.635454,22.294401],[-103.629127,22.294186],[-103.62805,22.293525],[-103.626983,22.291729],[-103.625619,22.288108],[-103.623874,22.287834],[-103.623186,22.286591],[-103.621173,22.285145],[-103.620476,22.282878],[-103.619226,22.281793],[-103.614935,22.280847],[-103.610688,22.278958],[-103.60771,22.279744],[-103.599652,22.277693],[-103.594903,22.273078],[-103.599179,22.27201],[-103.602801,22.269961],[-103.606238,22.265406],[-103.606318,22.264333],[-103.610135,22.261224],[-103.612432,22.258968],[-103.614377,22.256514],[-103.617365,22.251058],[-103.618201,22.250989],[-103.620818,22.247481],[-103.622357,22.247497],[-103.626389,22.244245],[-103.628284,22.241117],[-103.630896,22.238918],[-103.634454,22.231038],[-103.636003,22.228285],[-103.636426,22.225832],[-103.636202,22.222128],[-103.637591,22.219278],[-103.639349,22.218187],[-103.63932,22.213863],[-103.640986,22.212132],[-103.641255,22.209599],[-103.643017,22.208086],[-103.643732,22.206304],[-103.646273,22.203821],[-103.647677,22.203052],[-103.647237,22.201586],[-103.649119,22.202056],[-103.649525,22.199979],[-103.648892,22.197443],[-103.650023,22.192347],[-103.651216,22.191869],[-103.652518,22.187165],[-103.653669,22.187435],[-103.653683,22.186411],[-103.655709,22.186297],[-103.655759,22.184834],[-103.65776,22.183843],[-103.656652,22.182696],[-103.656818,22.180601],[-103.658658,22.177445],[-103.658923,22.175216],[-103.654474,22.171936],[-103.658139,22.169357],[-103.661001,22.166956],[-103.662421,22.164432],[-103.665428,22.160555],[-103.668426,22.157621],[-103.670441,22.156283],[-103.670778,22.153652],[-103.673211,22.151428],[-103.674766,22.149328],[-103.676136,22.148754],[-103.677281,22.146466],[-103.676842,22.144739],[-103.677537,22.141266],[-103.679257,22.140435],[-103.679514,22.139072],[-103.682697,22.134707],[-103.684446,22.134657],[-103.688135,22.133165],[-103.68938,22.130574],[-103.690293,22.130093],[-103.690798,22.128277],[-103.687794,22.126746],[-103.686394,22.12499],[-103.683564,22.125],[-103.680222,22.123704],[-103.678809,22.121873],[-103.677371,22.118706],[-103.677602,22.116112],[-103.678308,22.115371],[-103.680477,22.115063],[-103.684105,22.115386],[-103.685933,22.114099],[-103.686098,22.111402],[-103.683847,22.109205],[-103.680362,22.108624],[-103.677579,22.108514],[-103.671688,22.108772],[-103.670133,22.108494],[-103.668593,22.107381],[-103.667112,22.105289],[-103.664603,22.104618],[-103.662313,22.103037],[-103.659875,22.102662],[-103.656294,22.104182],[-103.653915,22.104001],[-103.651806,22.101289],[-103.6504,22.100624],[-103.647954,22.100496],[-103.644252,22.101792],[-103.638871,22.105145],[-103.636135,22.106423],[-103.633717,22.106674],[-103.632336,22.105935],[-103.628527,22.106325],[-103.627069,22.105533],[-103.626222,22.102632],[-103.625496,22.101976],[-103.622745,22.101237],[-103.620398,22.098486],[-103.615334,22.098476],[-103.612587,22.09725],[-103.610878,22.097105],[-103.604705,22.097942],[-103.604307,22.099304],[-103.604953,22.101194],[-103.603753,22.10242],[-103.601088,22.103437],[-103.597355,22.108354],[-103.59528,22.110212],[-103.594815,22.111198],[-103.593343,22.111771],[-103.590134,22.111387],[-103.58641,22.109988],[-103.584746,22.108901],[-103.583689,22.106453],[-103.58112,22.104871],[-103.580374,22.106197],[-103.580091,22.109499],[-103.579401,22.112528],[-103.577976,22.115409],[-103.577932,22.119104],[-103.577365,22.119977],[-103.579712,22.122567],[-103.58031,22.125725],[-103.579028,22.128152],[-103.577188,22.129517],[-103.576126,22.130938],[-103.573614,22.130559],[-103.571165,22.13109],[-103.569723,22.131923],[-103.567569,22.134374],[-103.566866,22.136083],[-103.562106,22.135887],[-103.560141,22.136586],[-103.558459,22.136463],[-103.55477,22.134322],[-103.550873,22.136076],[-103.549605,22.133885],[-103.550686,22.130613],[-103.548058,22.127955],[-103.545575,22.127202],[-103.544879,22.126419],[-103.544689,22.124336],[-103.545259,22.123301],[-103.542737,22.120612],[-103.538188,22.121449],[-103.535334,22.120611],[-103.533968,22.121054],[-103.531675,22.123146],[-103.531689,22.125194],[-103.530624,22.126843],[-103.527676,22.126367],[-103.525998,22.12658],[-103.523259,22.12805],[-103.52123,22.12826],[-103.518861,22.127718],[-103.515809,22.128991],[-103.513863,22.128322],[-103.514234,22.126051],[-103.516261,22.122687],[-103.517851,22.120881],[-103.517914,22.117249],[-103.51628,22.113332],[-103.516534,22.112425],[-103.515897,22.109916],[-103.511791,22.107514],[-103.5103,22.107611],[-103.508322,22.108766],[-103.504385,22.108243],[-103.501564,22.105564],[-103.500376,22.105385],[-103.497847,22.105967],[-103.496792,22.106796],[-103.496291,22.109881],[-103.495599,22.110512],[-103.492899,22.110186],[-103.489698,22.107066],[-103.486134,22.10653],[-103.484932,22.107794],[-103.485999,22.10908],[-103.486092,22.110625],[-103.482111,22.111866],[-103.481005,22.114406],[-103.479304,22.114794],[-103.476897,22.114134],[-103.474497,22.112634],[-103.47265,22.10993],[-103.473843,22.106742],[-103.473181,22.105532],[-103.471693,22.105119],[-103.470147,22.105531],[-103.466478,22.107309],[-103.462067,22.106108],[-103.459183,22.10588],[-103.459297,22.108735],[-103.461806,22.110102],[-103.461723,22.111141],[-103.456214,22.113911],[-103.454936,22.115309],[-103.453348,22.115327],[-103.450403,22.114226],[-103.446694,22.115251],[-103.445588,22.113498],[-103.443613,22.11565],[-103.442016,22.116278],[-103.441389,22.117367],[-103.438711,22.118306],[-103.439437,22.119942],[-103.439422,22.121907],[-103.437714,22.124159],[-103.437343,22.125524],[-103.438289,22.128851],[-103.43769,22.129272],[-103.436586,22.126694],[-103.43649,22.129253],[-103.435797,22.131038],[-103.434472,22.131739],[-103.433741,22.130787],[-103.433681,22.132718],[-103.432407,22.131526],[-103.432405,22.132921],[-103.431341,22.133338],[-103.432004,22.134609],[-103.430917,22.134283],[-103.427368,22.139636],[-103.4262,22.139098],[-103.426316,22.141155],[-103.427958,22.143738],[-103.42798,22.145814],[-103.428818,22.148726],[-103.427857,22.148598],[-103.428056,22.150129],[-103.427297,22.151085],[-103.427609,22.153884],[-103.427376,22.155743],[-103.42889,22.157784],[-103.427924,22.159147],[-103.429163,22.16097],[-103.429176,22.162185],[-103.428226,22.164155],[-103.428358,22.165589],[-103.425099,22.170261],[-103.42565,22.17127],[-103.426035,22.174637],[-103.425311,22.176465],[-103.423888,22.177492],[-103.419686,22.177483],[-103.422999,22.180423],[-103.425361,22.181878],[-103.425913,22.182855],[-103.427299,22.182295],[-103.428451,22.182768],[-103.430509,22.182497],[-103.431727,22.185675],[-103.431313,22.187323],[-103.43229,22.18915],[-103.434125,22.190761],[-103.42894,22.190561],[-103.423858,22.18919],[-103.42296,22.191298],[-103.421667,22.189544],[-103.417231,22.190476],[-103.415884,22.19514],[-103.413128,22.199954],[-103.413037,22.202036],[-103.411987,22.207362],[-103.409756,22.210326],[-103.40896,22.215365],[-103.392948,22.213138],[-103.385657,22.212529],[-103.384351,22.213738],[-103.385163,22.215818],[-103.383577,22.216336],[-103.383246,22.217833],[-103.380171,22.219001],[-103.381874,22.221537],[-103.383985,22.22199],[-103.383158,22.224186],[-103.383026,22.227013],[-103.379053,22.229156],[-103.377771,22.22896],[-103.373987,22.230765],[-103.37116,22.23068],[-103.369691,22.231306],[-103.369529,22.232547],[-103.366051,22.23593],[-103.364122,22.236651],[-103.36183,22.239165],[-103.358454,22.239732],[-103.355315,22.240936],[-103.35203,22.240512],[-103.349736,22.239215],[-103.346415,22.241531],[-103.343386,22.243087],[-103.337697,22.245164],[-103.33354,22.241966],[-103.331518,22.241],[-103.32832,22.240088],[-103.326516,22.241727],[-103.319599,22.238047],[-103.316331,22.235619],[-103.311934,22.233257],[-103.309257,22.236205],[-103.306266,22.240944],[-103.301725,22.245967],[-103.297042,22.251804],[-103.295104,22.253285],[-103.294693,22.254443],[-103.295636,22.254623],[-103.296763,22.257129],[-103.299793,22.257033],[-103.303012,22.258059],[-103.306718,22.25889],[-103.31211,22.258919],[-103.313938,22.258711],[-103.313656,22.259501],[-103.31011,22.262196],[-103.308433,22.262433],[-103.30764,22.265059],[-103.305316,22.265659],[-103.304786,22.269251],[-103.30546,22.271554],[-103.306844,22.273232],[-103.305984,22.276283],[-103.308036,22.280412],[-103.30715,22.283822],[-103.304708,22.288219],[-103.3025,22.290377],[-103.301356,22.292859],[-103.301432,22.294406],[-103.300403,22.296185],[-103.29832,22.297425],[-103.29779,22.298337],[-103.29999,22.300316],[-103.304522,22.303042],[-103.306883,22.306283],[-103.32212,22.307316],[-103.327706,22.30736],[-103.338376,22.287513],[-103.341468,22.285617],[-103.344773,22.28446],[-103.345287,22.284693],[-103.349308,22.28336],[-103.351155,22.281765],[-103.352472,22.281295],[-103.354229,22.279501],[-103.355867,22.280125],[-103.355733,22.281143],[-103.35348,22.283756],[-103.352833,22.286591],[-103.353553,22.287865],[-103.352667,22.290492],[-103.35248,22.29363],[-103.351016,22.296222],[-103.350161,22.301659],[-103.350093,22.307457],[-103.351085,22.308803],[-103.363756,22.314483],[-103.361813,22.315671],[-103.360393,22.319497],[-103.359559,22.320649],[-103.356186,22.322086],[-103.351006,22.3247],[-103.349364,22.32594],[-103.348921,22.327437],[-103.347875,22.328249],[-103.347203,22.330962],[-103.342955,22.335122],[-103.346881,22.336281],[-103.362553,22.336354],[-103.363728,22.33979],[-103.364811,22.341177],[-103.36512,22.343448],[-103.366183,22.346292],[-103.365971,22.348754],[-103.366633,22.350076],[-103.365249,22.360182],[-103.364717,22.369536],[-103.362444,22.37085],[-103.359484,22.371231],[-103.358088,22.370706],[-103.355947,22.371195],[-103.353819,22.369293],[-103.35314,22.369387],[-103.349326,22.374018],[-103.34745,22.375501],[-103.348609,22.377257],[-103.348404,22.379125],[-103.346151,22.381482],[-103.342652,22.383457],[-103.342523,22.383996],[-103.337743,22.385985],[-103.335887,22.384757],[-103.333129,22.385224],[-103.331068,22.384412],[-103.329287,22.384537],[-103.325921,22.387819],[-103.325529,22.389041],[-103.323891,22.388766],[-103.323572,22.39046],[-103.320884,22.393993],[-103.319619,22.395169],[-103.319786,22.396009],[-103.318012,22.398965],[-103.317615,22.40137],[-103.315197,22.40466],[-103.313945,22.404846],[-103.3126,22.40219],[-103.310673,22.400759],[-103.310868,22.3993],[-103.309529,22.398338],[-103.308749,22.395294],[-103.309176,22.392008],[-103.305263,22.390409],[-103.302981,22.392624],[-103.300502,22.39299],[-103.299194,22.394807],[-103.296507,22.395882],[-103.295573,22.398198],[-103.294225,22.398042],[-103.292791,22.399747],[-103.288701,22.401906],[-103.288222,22.403371],[-103.286801,22.405271],[-103.285431,22.405934],[-103.285183,22.409111],[-103.285817,22.412831],[-103.285231,22.414244],[-103.282274,22.413489],[-103.280558,22.411658],[-103.278551,22.411099],[-103.274687,22.411394],[-103.275365,22.409616],[-103.2734,22.409509],[-103.271501,22.410713],[-103.265227,22.41183],[-103.263463,22.410646],[-103.26208,22.41168],[-103.259581,22.411314],[-103.259401,22.408592],[-103.258385,22.406442],[-103.257382,22.406403],[-103.256787,22.405178],[-103.255083,22.40482],[-103.252186,22.398945],[-103.250392,22.398615],[-103.249621,22.3992],[-103.247176,22.399572],[-103.244463,22.399428],[-103.242398,22.398896],[-103.239216,22.397218],[-103.234678,22.396829],[-103.234665,22.395412],[-103.232837,22.394594],[-103.232121,22.393394],[-103.230637,22.396043],[-103.229585,22.396827],[-103.22892,22.399412],[-103.227468,22.402173],[-103.225098,22.405786],[-103.219597,22.410482],[-103.217524,22.410628],[-103.213413,22.410073],[-103.211505,22.408238],[-103.210401,22.408708],[-103.206844,22.404979],[-103.204289,22.404441],[-103.204033,22.403049],[-103.205312,22.40053],[-103.203169,22.398771],[-103.202816,22.395395],[-103.202002,22.394652],[-103.202094,22.392161],[-103.200402,22.389261],[-103.200851,22.388381],[-103.200184,22.386577],[-103.199097,22.385415],[-103.1987,22.383058],[-103.198771,22.380601],[-103.190898,22.3881],[-103.189363,22.390246],[-103.187817,22.390382],[-103.186179,22.389439],[-103.185665,22.390094],[-103.18254,22.388771],[-103.181309,22.390405],[-103.178506,22.387733],[-103.178369,22.386995],[-103.175266,22.386597],[-103.170864,22.384679],[-103.168578,22.385013],[-103.169378,22.383682],[-103.168732,22.382714],[-103.170505,22.378903],[-103.17182,22.379761],[-103.173603,22.379256],[-103.173755,22.37685],[-103.17105,22.375553],[-103.169244,22.374219],[-103.166477,22.370267],[-103.167637,22.369728],[-103.168963,22.365419],[-103.170447,22.361833],[-103.168697,22.355692],[-103.16859,22.354616],[-103.169671,22.353437],[-103.172238,22.352957],[-103.172897,22.350164],[-103.174984,22.348682],[-103.175868,22.346273],[-103.177615,22.346029],[-103.178577,22.342978],[-103.181517,22.342397],[-103.182686,22.342919],[-103.184811,22.341028],[-103.18431,22.339185],[-103.187889,22.336658],[-103.189465,22.334825],[-103.19183,22.334322],[-103.194085,22.331981],[-103.19793,22.333108],[-103.199797,22.332591],[-103.200791,22.333538],[-103.204957,22.334263],[-103.205943,22.333312],[-103.208233,22.333081],[-103.210123,22.328265],[-103.210373,22.322969],[-103.209518,22.320192],[-103.210437,22.319061],[-103.212714,22.319054],[-103.211515,22.317186],[-103.210033,22.316205],[-103.209639,22.314572],[-103.211279,22.311807],[-103.213036,22.306921],[-103.215009,22.3058],[-103.214935,22.302114],[-103.215792,22.301378],[-103.216918,22.301995],[-103.217659,22.301154],[-103.216491,22.299629],[-103.218324,22.298591],[-103.220369,22.296401],[-103.219916,22.294612],[-103.220802,22.292363],[-103.218351,22.289978],[-103.21837,22.288914],[-103.219593,22.288372],[-103.218928,22.286855],[-103.220724,22.285403],[-103.221265,22.283673],[-103.222436,22.282579],[-103.221239,22.282719],[-103.221135,22.281255],[-103.220238,22.280222],[-103.217131,22.279057],[-103.214425,22.277511],[-103.204051,22.280727],[-103.200281,22.281519],[-103.198722,22.283791],[-103.198032,22.286521],[-103.195485,22.290545],[-103.196347,22.29249],[-103.194764,22.292372],[-103.194601,22.293356],[-103.19215,22.295223],[-103.190574,22.298527],[-103.179406,22.296585],[-103.165057,22.294799],[-103.164745,22.297102],[-103.159796,22.295993],[-103.156877,22.297057],[-103.154653,22.298413],[-103.154006,22.297142],[-103.152541,22.295995],[-103.149487,22.296166],[-103.146421,22.295792],[-103.142582,22.294187],[-103.137897,22.293571],[-103.137482,22.294108],[-103.134417,22.295248],[-103.133463,22.294521],[-103.131494,22.29519],[-103.129808,22.294288],[-103.127931,22.293996],[-103.127913,22.293261],[-103.126314,22.293171],[-103.124726,22.2938],[-103.12178,22.294139],[-103.120941,22.295292],[-103.118805,22.295408],[-103.11025,22.295082],[-103.109552,22.294762],[-103.102984,22.293864],[-103.100988,22.293975],[-103.098999,22.292309],[-103.09978,22.288636],[-103.098154,22.287255],[-103.097684,22.286032],[-103.094154,22.286766],[-103.091693,22.286256],[-103.08937,22.284584],[-103.087629,22.282383],[-103.087219,22.278382],[-103.085884,22.278863],[-103.083278,22.277518],[-103.082734,22.273735],[-103.083353,22.272311],[-103.083825,22.263434],[-103.081816,22.263331],[-103.081279,22.261029],[-103.078733,22.258535],[-103.078274,22.257098],[-103.074721,22.257558],[-103.073847,22.256771],[-103.074507,22.25524],[-103.073031,22.255891],[-103.070668,22.255248],[-103.068289,22.25511],[-103.066383,22.253234],[-103.062382,22.252239],[-103.061744,22.250136],[-103.062886,22.249267],[-103.055455,22.247256],[-103.055681,22.241242],[-103.057598,22.237865],[-103.061033,22.230949],[-103.062069,22.228268],[-103.061176,22.228509],[-103.060298,22.227452],[-103.058188,22.228398],[-103.060016,22.224977],[-103.05831,22.222816],[-103.055359,22.222023],[-103.052326,22.220652],[-103.05477,22.213827],[-103.056382,22.213851],[-103.057061,22.215604],[-103.059811,22.217222],[-103.061826,22.215922],[-103.066002,22.213984],[-103.067611,22.212234],[-103.068174,22.212531],[-103.069644,22.21122],[-103.07193,22.211969],[-103.072847,22.210368],[-103.071043,22.203543],[-103.073303,22.20234],[-103.074222,22.203237],[-103.076001,22.202329],[-103.077637,22.202907],[-103.079666,22.202555],[-103.083727,22.20402],[-103.0882,22.204384],[-103.088412,22.20265],[-103.092091,22.198415],[-103.094122,22.197577],[-103.095637,22.195923],[-103.099487,22.195005],[-103.102617,22.193059],[-103.106059,22.191356],[-103.101445,22.178621],[-103.103878,22.172047],[-103.102778,22.171114],[-103.105766,22.168511],[-103.105171,22.166434],[-103.10592,22.164328],[-103.105875,22.162306],[-103.104694,22.160035],[-103.10487,22.157517],[-103.106293,22.157156],[-103.10768,22.155101],[-103.107161,22.154606],[-103.108694,22.153423],[-103.106527,22.151821],[-103.102543,22.153603],[-103.104331,22.149528],[-103.105802,22.148577],[-103.10875,22.144858],[-103.108077,22.144026],[-103.105859,22.144842],[-103.103674,22.144757],[-103.100607,22.14606],[-103.097879,22.14497],[-103.095931,22.145466],[-103.094563,22.14477],[-103.091582,22.144099],[-103.090693,22.143506],[-103.090027,22.141568],[-103.090112,22.14004],[-103.086813,22.139241],[-103.08419,22.137252],[-103.079783,22.13643],[-103.079161,22.137264],[-103.077571,22.135735],[-103.077753,22.134784],[-103.07587,22.133489],[-103.076983,22.131864],[-103.078198,22.131192],[-103.081576,22.130824],[-103.080549,22.129819],[-103.077043,22.127531],[-103.077025,22.125504],[-103.080231,22.124509],[-103.081734,22.120273],[-103.087722,22.11782],[-103.084525,22.113997],[-103.086157,22.112245],[-103.086708,22.114852],[-103.088304,22.114433],[-103.08949,22.115191],[-103.090274,22.113695],[-103.088494,22.113878],[-103.08833,22.112908],[-103.092376,22.109897],[-103.0964,22.111284],[-103.09725,22.109749],[-103.098811,22.109438],[-103.101144,22.107437],[-103.101239,22.105636],[-103.100675,22.103344],[-103.1017,22.101798],[-103.104232,22.101908],[-103.104186,22.10123],[-103.116722,22.102364],[-103.125585,22.104791],[-103.127555,22.103227],[-103.12803,22.102196],[-103.13229,22.09995],[-103.135029,22.09763],[-103.135093,22.090462],[-103.135998,22.091254],[-103.137698,22.0915],[-103.139103,22.091035],[-103.139331,22.090017],[-103.140645,22.089607],[-103.143413,22.087231],[-103.148463,22.087548],[-103.151383,22.088016],[-103.152784,22.087622],[-103.152156,22.082555],[-103.153896,22.075647],[-103.15483,22.07323],[-103.154285,22.072237],[-103.147914,22.070342],[-103.145501,22.069166],[-103.144374,22.06792],[-103.13489,22.066608],[-103.123005,22.065249],[-103.107909,22.063396],[-103.106662,22.052817],[-103.106213,22.047065],[-103.107137,22.04683],[-103.108451,22.039165],[-103.109473,22.038861],[-103.113869,22.040041],[-103.114065,22.039051],[-103.111783,22.035849],[-103.109803,22.031672],[-103.110312,22.029691],[-103.109155,22.029317],[-103.110245,22.027522],[-103.108902,22.026604],[-103.109518,22.023992],[-103.111589,22.021126],[-103.110264,22.018853],[-103.109991,22.017406],[-103.111265,22.016336],[-103.111193,22.014619],[-103.11295,22.013466],[-103.117121,22.012881],[-103.120286,22.015357],[-103.122545,22.013035],[-103.124001,22.012599],[-103.12685,22.009651],[-103.126963,22.008297],[-103.128129,22.00804],[-103.129903,22.005712],[-103.131072,22.005274],[-103.132844,22.003037],[-103.135427,22.003932],[-103.137968,22.003048],[-103.143718,22.00797],[-103.145998,22.005278],[-103.149371,22.005516],[-103.149579,22.0044],[-103.151329,22.004058],[-103.152037,22.004932],[-103.160076,22.003171],[-103.160553,22.002175],[-103.159504,22.00081],[-103.161251,22.000558],[-103.162048,21.999638],[-103.164357,21.998724],[-103.165075,21.996988],[-103.166139,21.997],[-103.167381,21.998278],[-103.169221,21.998299],[-103.170691,21.996961],[-103.172536,21.99662],[-103.173585,21.997805],[-103.178727,21.997231],[-103.179778,21.998325],[-103.181036,21.99834],[-103.18173,21.997083],[-103.186172,21.998036],[-103.187535,21.99751],[-103.18898,21.998157],[-103.191788,21.998187],[-103.192351,21.999639],[-103.194097,21.999298],[-103.196694,22.000862],[-103.197685,21.999066],[-103.200687,21.999008],[-103.202151,21.998122],[-103.20305,21.995964],[-103.202131,21.993391],[-103.200811,21.991962],[-103.194032,21.990073],[-103.194221,21.988349],[-103.195578,21.987504],[-103.19819,21.984637],[-103.19687,21.983342],[-103.195471,21.97979],[-103.193333,21.979891],[-103.192075,21.979338],[-103.191621,21.978154],[-103.192336,21.975837],[-103.191812,21.97445],[-103.19312,21.969573],[-103.195925,21.969605],[-103.198357,21.968728],[-103.200878,21.968485],[-103.204082,21.967707],[-103.20469,21.965546],[-103.20866,21.965143],[-103.209672,21.967286],[-103.211631,21.96797],[-103.212805,21.966989],[-103.21629,21.967118],[-103.220151,21.968153],[-103.221507,21.967987],[-103.224942,21.971997],[-103.226784,21.971927],[-103.228421,21.972668],[-103.228893,21.973576],[-103.232761,21.973979],[-103.233658,21.974932],[-103.234712,21.974505],[-103.236982,21.975815],[-103.239328,21.976042],[-103.239971,21.976722],[-103.242127,21.976247],[-103.245141,21.977209],[-103.246818,21.975947],[-103.242701,21.972479],[-103.241446,21.970756],[-103.24475,21.966603],[-103.246988,21.966817],[-103.248333,21.967554],[-103.251713,21.968311],[-103.251797,21.969306],[-103.257093,21.969582],[-103.258033,21.97118],[-103.260791,21.97133],[-103.262151,21.972558],[-103.264715,21.971845],[-103.267117,21.973692],[-103.268682,21.97569],[-103.270151,21.976443],[-103.27335,21.979082],[-103.273231,21.981444],[-103.275325,21.986329],[-103.275968,21.988694],[-103.27719,21.989822],[-103.278561,21.98965],[-103.291575,21.979027],[-103.302428,21.970451],[-103.307196,21.96817],[-103.309314,21.965706],[-103.30871,21.964363],[-103.309926,21.961727],[-103.310136,21.959098],[-103.31222,21.958731],[-103.313426,21.957374],[-103.317364,21.955873],[-103.318309,21.956055],[-103.318938,21.954692],[-103.32035,21.954277],[-103.320976,21.953142],[-103.323572,21.951112],[-103.324382,21.948438],[-103.3267,21.94845],[-103.328439,21.946384],[-103.330464,21.945892],[-103.331908,21.943022],[-103.334437,21.94244],[-103.338741,21.942302],[-103.340555,21.941312],[-103.341673,21.938803],[-103.339782,21.938698],[-103.340201,21.935902],[-103.340896,21.934555],[-103.341289,21.931789],[-103.343684,21.930696],[-103.343956,21.929695],[-103.343426,21.927297],[-103.341868,21.923746],[-103.341563,21.921026],[-103.344004,21.915912],[-103.34408,21.913472],[-103.345291,21.914357],[-103.349433,21.914256],[-103.354414,21.914578],[-103.359012,21.914559],[-103.362966,21.913913],[-103.364882,21.91317],[-103.368978,21.912309],[-103.371935,21.913725],[-103.374798,21.913684],[-103.379976,21.910188],[-103.382368,21.91057],[-103.386176,21.907778],[-103.389796,21.905473],[-103.39068,21.904041],[-103.390222,21.901202],[-103.389151,21.89872],[-103.39154,21.89875],[-103.391551,21.897756],[-103.39319,21.898313],[-103.394339,21.896695],[-103.395938,21.896607],[-103.396555,21.897929],[-103.400332,21.899006],[-103.402535,21.901523],[-103.40506,21.901825],[-103.406815,21.904302],[-103.408375,21.907624],[-103.410647,21.907779],[-103.41387,21.905455],[-103.412995,21.903425],[-103.414121,21.903122],[-103.413656,21.901174],[-103.415798,21.899903],[-103.416516,21.898926],[-103.416241,21.897504],[-103.418585,21.896143],[-103.420484,21.896195],[-103.421732,21.895296],[-103.420594,21.893993],[-103.420728,21.893143],[-103.42251,21.891086],[-103.423554,21.891556],[-103.425811,21.891046],[-103.426361,21.888254],[-103.427512,21.885661],[-103.430317,21.883237],[-103.431091,21.881172],[-103.432554,21.879734],[-103.432134,21.878493],[-103.43413,21.877766],[-103.435354,21.876052],[-103.435222,21.874611],[-103.43574,21.871052],[-103.436399,21.870665],[-103.43839,21.867493],[-103.438096,21.866786],[-103.439313,21.86456],[-103.440083,21.864263],[-103.441686,21.862167],[-103.443944,21.861443],[-103.444873,21.860099],[-103.446025,21.859902],[-103.448225,21.855763],[-103.450122,21.855642],[-103.451726,21.852691],[-103.449552,21.850791],[-103.449702,21.848053],[-103.451625,21.845444],[-103.453306,21.844197],[-103.453738,21.842122],[-103.453197,21.840626],[-103.455868,21.840605],[-103.457169,21.838476],[-103.456928,21.835987],[-103.455136,21.835429],[-103.455158,21.833208],[-103.456322,21.832509],[-103.458517,21.83521],[-103.464884,21.839443],[-103.46673,21.839962],[-103.46984,21.839267],[-103.472357,21.836004],[-103.472251,21.834371],[-103.473374,21.831912],[-103.473042,21.830395],[-103.475097,21.829009],[-103.475016,21.826097],[-103.472863,21.824612],[-103.474137,21.822791],[-103.47401,21.819661],[-103.472161,21.817318],[-103.47053,21.81354],[-103.472495,21.813836],[-103.475684,21.812412],[-103.480997,21.813361],[-103.482508,21.813264],[-103.481945,21.816514],[-103.482727,21.817417],[-103.487069,21.818732],[-103.489055,21.82029],[-103.491419,21.821057],[-103.492209,21.821973],[-103.494701,21.822886],[-103.498781,21.826633],[-103.500187,21.82825],[-103.502817,21.833075],[-103.504458,21.832003],[-103.505579,21.830503],[-103.507974,21.829342],[-103.509696,21.82749],[-103.516153,21.824625],[-103.518422,21.823868],[-103.524164,21.820143],[-103.525681,21.818937],[-103.531425,21.817839],[-103.52977,21.814168],[-103.530038,21.811655],[-103.528011,21.811237],[-103.526093,21.809674],[-103.526465,21.806674],[-103.526058,21.805065],[-103.528594,21.804603],[-103.535696,21.80518],[-103.539565,21.804609],[-103.5412,21.80329],[-103.54382,21.802488],[-103.547389,21.80261],[-103.547999,21.803099],[-103.55299,21.801988],[-103.554849,21.800912],[-103.557147,21.801569],[-103.560559,21.801113],[-103.561948,21.80358],[-103.56739,21.804687],[-103.56798,21.804056],[-103.570675,21.803989],[-103.572627,21.80349],[-103.571491,21.800088],[-103.568948,21.799601],[-103.567891,21.7965],[-103.569077,21.795457],[-103.568991,21.793329],[-103.568185,21.792569],[-103.569221,21.79028],[-103.569121,21.788615],[-103.56777,21.787551],[-103.56592,21.784822],[-103.562624,21.785675],[-103.56167,21.782181],[-103.560763,21.780284],[-103.559799,21.779734],[-103.558063,21.780712],[-103.553795,21.779778],[-103.551871,21.777604],[-103.549704,21.777208],[-103.549406,21.775964],[-103.546693,21.772666],[-103.544366,21.772468],[-103.543258,21.771122],[-103.540355,21.770608],[-103.538007,21.771316],[-103.537114,21.771017],[-103.534411,21.772733],[-103.531814,21.771227],[-103.530624,21.772515],[-103.528797,21.773198],[-103.52789,21.772328],[-103.527354,21.770397],[-103.526012,21.769915],[-103.527257,21.768037],[-103.52538,21.767532],[-103.524401,21.765801],[-103.523587,21.765721],[-103.523426,21.760979],[-103.521613,21.759018],[-103.521317,21.757855],[-103.51972,21.75689],[-103.519863,21.755613],[-103.518352,21.755207],[-103.516567,21.752814],[-103.514692,21.749156],[-103.512141,21.748269],[-103.511753,21.746236],[-103.510094,21.74481],[-103.509139,21.741797],[-103.509291,21.739846],[-103.508474,21.739735],[-103.509547,21.737678],[-103.510624,21.73748],[-103.510605,21.735428],[-103.509629,21.73421],[-103.50999,21.732292],[-103.509366,21.730709],[-103.510255,21.72906],[-103.510801,21.725717],[-103.510149,21.723443],[-103.51001,21.720877],[-103.508047,21.720387],[-103.507983,21.718587],[-103.508856,21.717285],[-103.509844,21.713006],[-103.511632,21.714362],[-103.513692,21.713539],[-103.514591,21.713814],[-103.517853,21.711469],[-103.517966,21.707167],[-103.518778,21.703374],[-103.519673,21.701156],[-103.521576,21.699218],[-103.523924,21.695535],[-103.52506,21.691671],[-103.524974,21.689882],[-103.526002,21.68884],[-103.52657,21.687003],[-103.526927,21.68314],[-103.525782,21.680605],[-103.525716,21.678063],[-103.52671,21.675563],[-103.529515,21.672443],[-103.531502,21.672105],[-103.53382,21.670036],[-103.536558,21.668892],[-103.537504,21.666336],[-103.540796,21.665293],[-103.541944,21.662685],[-103.543655,21.657081],[-103.547416,21.650081],[-103.548709,21.649914],[-103.55,21.646908],[-103.55096,21.64696],[-103.552245,21.645842],[-103.552737,21.642989],[-103.551597,21.641448],[-103.552694,21.639722],[-103.553133,21.637733],[-103.555492,21.634084],[-103.555535,21.630661],[-103.555013,21.629767],[-103.555556,21.625408],[-103.553846,21.624551],[-103.552336,21.619982],[-103.552083,21.61677],[-103.550619,21.613439],[-103.549766,21.605391],[-103.550598,21.599525],[-103.550398,21.596996],[-103.547831,21.593577],[-103.547717,21.59153],[-103.545501,21.588217],[-103.545397,21.587406],[-103.546802,21.58662],[-103.549975,21.585976],[-103.55243,21.583912],[-103.553065,21.58165],[-103.554757,21.578867],[-103.554057,21.577437],[-103.554666,21.576635],[-103.55643,21.577282],[-103.558892,21.576404],[-103.56038,21.577648],[-103.562741,21.578171],[-103.564858,21.579706],[-103.566233,21.581649],[-103.572604,21.581935],[-103.574223,21.584898],[-103.575427,21.58447],[-103.577443,21.584724],[-103.579989,21.584199],[-103.580193,21.586079],[-103.581083,21.586761],[-103.581012,21.588083],[-103.582016,21.58923],[-103.584427,21.588989],[-103.58604,21.589884],[-103.58737,21.589308],[-103.587775,21.590292],[-103.589726,21.590134],[-103.591479,21.589051],[-103.592545,21.584963],[-103.593494,21.582748],[-103.594764,21.581713],[-103.593035,21.578496],[-103.593724,21.576863],[-103.59329,21.575946],[-103.594496,21.574006],[-103.596004,21.569947],[-103.596747,21.565468],[-103.594745,21.560649],[-103.592918,21.559226],[-103.59842,21.55911],[-103.599435,21.558447],[-103.603322,21.558481],[-103.608114,21.556535],[-103.613141,21.558066],[-103.615546,21.558041],[-103.616525,21.556903],[-103.619005,21.556864],[-103.621586,21.558351],[-103.620756,21.560343],[-103.621578,21.562114],[-103.621161,21.563813],[-103.622662,21.565821],[-103.624132,21.565599],[-103.625138,21.566532],[-103.624377,21.567304],[-103.624897,21.5686],[-103.629794,21.573351],[-103.633115,21.573843],[-103.634874,21.574456],[-103.636282,21.574087],[-103.638758,21.575033],[-103.639907,21.574315],[-103.640031,21.576282],[-103.644878,21.576454],[-103.646935,21.575113],[-103.65545,21.567357],[-103.660037,21.564789],[-103.660662,21.560544],[-103.658316,21.555907],[-103.662526,21.556443],[-103.6638,21.558067],[-103.666354,21.55804],[-103.669839,21.557121],[-103.673592,21.554853],[-103.676384,21.55532],[-103.678161,21.557754],[-103.679213,21.555929],[-103.68164,21.555896],[-103.682152,21.556461],[-103.680805,21.557801],[-103.683204,21.557719],[-103.684794,21.55671],[-103.687054,21.556036],[-103.689789,21.552353],[-103.690104,21.549645],[-103.689634,21.548287],[-103.689479,21.54404],[-103.689015,21.541869],[-103.686629,21.539081],[-103.686285,21.535055],[-103.688019,21.534113],[-103.689069,21.534859],[-103.689142,21.533473],[-103.6915,21.532605],[-103.693497,21.53253],[-103.694474,21.53016],[-103.694487,21.528887],[-103.691662,21.527202],[-103.689728,21.526879],[-103.688173,21.525276],[-103.68666,21.524737],[-103.685522,21.522481],[-103.686086,21.521185],[-103.68479,21.522025],[-103.682915,21.521507],[-103.681582,21.520468],[-103.681881,21.519556],[-103.680073,21.515588],[-103.679806,21.511197],[-103.678361,21.510665],[-103.67539,21.51082],[-103.673801,21.508212],[-103.672588,21.50798],[-103.672578,21.505455],[-103.675071,21.504535],[-103.677891,21.504695],[-103.680672,21.50206],[-103.684899,21.5015],[-103.688641,21.499067],[-103.690549,21.496405],[-103.691364,21.496145],[-103.694257,21.490207],[-103.692233,21.487087],[-103.692202,21.484702],[-103.692915,21.482839],[-103.69258,21.481864],[-103.693174,21.479039],[-103.694698,21.477306],[-103.696586,21.476542],[-103.697077,21.473764],[-103.699388,21.472785],[-103.700369,21.468163],[-103.701465,21.466266],[-103.69775,21.467021],[-103.695744,21.466604],[-103.69206,21.464748],[-103.688808,21.464016],[-103.68324,21.463481],[-103.67889,21.464054],[-103.675059,21.465551],[-103.67164,21.465393],[-103.669306,21.465702],[-103.666635,21.46551],[-103.666013,21.464965],[-103.658743,21.463698],[-103.66008,21.46165],[-103.661288,21.460946],[-103.663785,21.457839],[-103.664696,21.454873],[-103.663391,21.451503],[-103.66382,21.450537],[-103.663348,21.446462],[-103.661692,21.444222],[-103.66079,21.441584],[-103.658351,21.441132],[-103.657046,21.439434],[-103.654407,21.437287],[-103.653503,21.435896],[-103.650081,21.434648],[-103.650305,21.435475],[-103.649247,21.438594],[-103.646375,21.437831],[-103.644778,21.438229],[-103.643667,21.437548],[-103.640478,21.437374],[-103.636967,21.437606],[-103.636519,21.438647],[-103.634196,21.439259],[-103.631841,21.438152],[-103.630534,21.436947],[-103.630352,21.435117],[-103.626525,21.434482],[-103.626859,21.432955],[-103.625832,21.431678],[-103.62625,21.42932],[-103.623363,21.426684],[-103.620411,21.426661],[-103.621222,21.425317],[-103.619321,21.424032],[-103.620406,21.423034],[-103.620954,21.424383],[-103.622554,21.42391],[-103.622747,21.422187],[-103.624309,21.420302],[-103.624325,21.418496],[-103.622852,21.416623],[-103.623578,21.414949],[-103.622905,21.413111],[-103.619425,21.411912],[-103.616556,21.41214],[-103.615841,21.411691],[-103.616555,21.408956],[-103.615697,21.407694],[-103.612501,21.407781],[-103.609814,21.407244],[-103.610283,21.405328],[-103.607121,21.40371],[-103.606576,21.401917],[-103.605026,21.402088],[-103.603101,21.4007],[-103.603376,21.399623],[-103.601417,21.399153],[-103.599779,21.397341],[-103.599764,21.396105],[-103.600976,21.394982],[-103.600577,21.393625],[-103.59873,21.394468],[-103.595668,21.39261],[-103.595312,21.390906],[-103.592682,21.393633],[-103.592124,21.393276],[-103.589616,21.393837],[-103.588274,21.393139],[-103.58975,21.391873],[-103.586394,21.392366],[-103.585645,21.395156],[-103.586227,21.397869],[-103.585229,21.398529],[-103.586077,21.401788],[-103.585386,21.402954],[-103.587266,21.402863],[-103.58709,21.407891],[-103.585551,21.40811],[-103.584121,21.411268],[-103.583718,21.415988],[-103.582149,21.418178],[-103.581663,21.423332],[-103.5822,21.424274],[-103.58047,21.424692],[-103.581652,21.426768],[-103.5799,21.428706],[-103.577425,21.429251],[-103.575986,21.42855],[-103.576243,21.431948],[-103.577518,21.434267],[-103.576415,21.434526],[-103.575517,21.43637],[-103.574017,21.435855],[-103.572029,21.439036],[-103.570456,21.43972],[-103.569434,21.438377],[-103.567722,21.439297],[-103.56656,21.438126],[-103.565457,21.438237],[-103.561842,21.432964],[-103.56196,21.432125],[-103.560407,21.430218],[-103.55994,21.433953],[-103.558384,21.436188],[-103.557751,21.436096],[-103.554636,21.437947],[-103.552912,21.436091],[-103.549899,21.438363],[-103.549548,21.439679],[-103.548264,21.440482],[-103.546739,21.439508],[-103.546093,21.438112],[-103.544598,21.437379],[-103.543131,21.437872],[-103.54136,21.440296],[-103.540772,21.443422],[-103.5387,21.444771],[-103.538583,21.441155],[-103.537123,21.440595],[-103.537719,21.435275],[-103.537429,21.431589],[-103.536789,21.429287],[-103.533835,21.425585],[-103.533339,21.4228],[-103.533589,21.420613],[-103.530228,21.417029],[-103.530309,21.415989],[-103.527594,21.41441],[-103.525789,21.411485],[-103.525992,21.410355],[-103.524762,21.409551],[-103.522936,21.40618],[-103.521825,21.405722],[-103.522095,21.402449],[-103.518376,21.398704],[-103.517446,21.398468],[-103.515367,21.396596],[-103.512446,21.395497],[-103.510389,21.392932],[-103.509397,21.392396],[-103.508118,21.389417],[-103.508295,21.383534],[-103.508174,21.380321],[-103.50392,21.376837],[-103.504788,21.37493],[-103.507833,21.372741],[-103.509252,21.370865],[-103.513083,21.364067],[-103.511764,21.360334],[-103.509862,21.357568],[-103.51118,21.356062],[-103.509964,21.354893],[-103.514208,21.354508],[-103.514532,21.354911],[-103.517995,21.355113],[-103.51909,21.356499],[-103.51989,21.356004],[-103.523257,21.352008],[-103.524969,21.353478],[-103.527032,21.352222],[-103.530336,21.353288],[-103.531603,21.35249],[-103.535407,21.353872],[-103.542983,21.35254],[-103.548328,21.350103],[-103.549862,21.350123],[-103.550642,21.350937],[-103.554679,21.348498],[-103.55807,21.348173],[-103.558431,21.350194],[-103.559551,21.350696],[-103.56046,21.34979],[-103.562192,21.352384],[-103.563623,21.352282],[-103.563724,21.351347],[-103.565065,21.350518],[-103.56649,21.352196],[-103.568417,21.351667],[-103.567936,21.350652],[-103.567619,21.345684],[-103.568367,21.344055],[-103.567239,21.343205],[-103.567551,21.339798],[-103.568587,21.337624],[-103.57169,21.335397],[-103.572257,21.334144],[-103.574078,21.332668],[-103.577105,21.332716],[-103.578119,21.330435],[-103.578896,21.330411],[-103.581134,21.333728],[-103.584442,21.335375],[-103.583987,21.336927],[-103.585546,21.338446],[-103.586622,21.338067],[-103.587561,21.340969],[-103.588677,21.342193],[-103.590055,21.340825],[-103.591923,21.341876],[-103.593308,21.340572],[-103.592746,21.342262],[-103.595593,21.343865],[-103.596708,21.343538],[-103.598082,21.341903],[-103.598968,21.343163],[-103.598957,21.34538],[-103.599543,21.346941],[-103.602953,21.349127],[-103.607222,21.349128],[-103.609855,21.349483],[-103.611166,21.348786],[-103.613138,21.350069],[-103.614829,21.350516],[-103.615191,21.352418],[-103.616945,21.35341],[-103.617383,21.352853],[-103.617486,21.349313],[-103.616598,21.347496],[-103.61748,21.345714],[-103.618719,21.344481],[-103.621033,21.344591],[-103.624086,21.344187],[-103.625484,21.343407],[-103.628428,21.345324],[-103.629965,21.344801],[-103.630107,21.344021],[-103.631533,21.344328],[-103.63105,21.342748],[-103.631546,21.341565],[-103.635125,21.340524],[-103.636288,21.343761],[-103.638533,21.344846],[-103.639641,21.342818],[-103.643051,21.341733],[-103.643786,21.341974],[-103.645731,21.344297],[-103.646522,21.343643],[-103.646297,21.34239],[-103.649444,21.342258],[-103.64975,21.341322],[-103.648607,21.340561],[-103.649386,21.339693],[-103.648243,21.337869],[-103.648883,21.337432],[-103.653665,21.337934],[-103.65514,21.339208],[-103.658121,21.336256],[-103.658979,21.337059],[-103.663354,21.338264],[-103.665929,21.334925],[-103.666135,21.332857],[-103.667038,21.331268],[-103.666973,21.329556],[-103.668464,21.328232],[-103.668605,21.326869],[-103.670241,21.32643],[-103.671245,21.324893],[-103.671711,21.322472],[-103.672264,21.322066],[-103.674318,21.323093],[-103.674432,21.321408],[-103.675449,21.32185],[-103.675895,21.320444],[-103.676847,21.321044],[-103.677404,21.319911],[-103.679173,21.319883],[-103.680966,21.320749],[-103.681006,21.319473],[-103.682197,21.318788],[-103.684138,21.319147],[-103.685742,21.320473],[-103.690276,21.321214],[-103.690555,21.320192],[-103.69227,21.320633],[-103.694404,21.323065],[-103.696054,21.323951],[-103.699182,21.324337],[-103.703153,21.325888],[-103.705085,21.325498],[-103.706444,21.324219],[-103.706793,21.320649],[-103.708089,21.319404],[-103.709878,21.31891],[-103.711121,21.317747],[-103.710285,21.315952],[-103.710948,21.313542],[-103.712068,21.312424],[-103.71439,21.312226],[-103.71802,21.309797],[-103.72007,21.309358],[-103.720839,21.307961],[-103.720132,21.304028],[-103.720784,21.301025],[-103.719583,21.299922],[-103.720089,21.299457],[-103.720072,21.296467],[-103.721147,21.292882],[-103.720208,21.29061],[-103.72157,21.287183],[-103.721501,21.285581],[-103.72219,21.284587],[-103.721422,21.283373],[-103.719906,21.283126],[-103.720439,21.281799],[-103.719456,21.280111],[-103.720376,21.276655],[-103.720289,21.275179],[-103.718054,21.274342],[-103.717434,21.273409],[-103.71717,21.269813],[-103.716211,21.267868],[-103.713924,21.267098],[-103.712657,21.267736],[-103.714109,21.269975],[-103.711026,21.271973],[-103.711794,21.273272],[-103.710757,21.274483],[-103.708588,21.274437],[-103.706258,21.27572],[-103.705352,21.277527],[-103.703695,21.277982],[-103.702711,21.279443],[-103.697831,21.281984],[-103.69751,21.282856],[-103.695457,21.282926],[-103.695007,21.283916],[-103.693012,21.283742],[-103.692813,21.284766],[-103.689927,21.285411],[-103.688415,21.2849],[-103.683639,21.285514],[-103.681443,21.284847],[-103.678117,21.282975],[-103.674927,21.284124],[-103.673179,21.285646],[-103.66969,21.287377],[-103.668348,21.289872],[-103.66582,21.29057],[-103.664789,21.290215],[-103.664515,21.288801],[-103.663361,21.288399],[-103.661504,21.286065],[-103.660829,21.283684],[-103.658194,21.280432],[-103.657077,21.282113],[-103.650653,21.282353],[-103.648226,21.283867],[-103.643359,21.284098],[-103.641086,21.284451],[-103.635137,21.28318],[-103.633993,21.282292],[-103.635668,21.280908],[-103.636392,21.278938],[-103.639468,21.277528],[-103.638342,21.276035],[-103.637037,21.275978],[-103.637668,21.274361],[-103.637429,21.269129],[-103.637844,21.266903],[-103.639882,21.266484],[-103.639679,21.263765],[-103.640717,21.262891],[-103.640555,21.261571],[-103.641307,21.259493],[-103.641122,21.25801],[-103.641683,21.254041],[-103.639415,21.251668],[-103.639051,21.24666],[-103.639697,21.243384],[-103.636694,21.243303],[-103.636315,21.24171],[-103.636639,21.240098],[-103.639093,21.233083],[-103.639723,21.224992],[-103.640196,21.222072],[-103.644591,21.222163],[-103.648443,21.223113],[-103.650923,21.222414],[-103.656743,21.22202],[-103.659698,21.222563],[-103.663152,21.224186],[-103.663779,21.223055],[-103.663721,21.21891],[-103.664026,21.218175],[-103.667324,21.216049],[-103.660589,21.215522],[-103.660073,21.2139],[-103.658232,21.21384],[-103.657455,21.21269],[-103.656078,21.212661],[-103.656085,21.211591],[-103.654764,21.209561],[-103.653528,21.208658],[-103.649785,21.207682],[-103.647582,21.206045],[-103.645808,21.204143],[-103.645799,21.203393],[-103.643125,21.20242],[-103.63998,21.200189],[-103.63857,21.200333],[-103.636921,21.199384],[-103.636906,21.198094],[-103.634423,21.196649],[-103.633966,21.195272],[-103.634476,21.194299],[-103.632802,21.193386],[-103.632671,21.1914],[-103.629863,21.193964],[-103.625168,21.193062],[-103.62479,21.193316],[-103.62077,21.190589],[-103.620216,21.189318],[-103.618634,21.188779],[-103.618306,21.187249],[-103.616372,21.186097],[-103.617902,21.184776],[-103.61815,21.183528],[-103.614231,21.181177],[-103.611359,21.178737],[-103.612293,21.174031],[-103.612878,21.167573],[-103.611848,21.164797],[-103.614917,21.158944],[-103.613608,21.156247],[-103.61166,21.15516],[-103.607064,21.155322],[-103.606446,21.154177],[-103.604191,21.153696],[-103.601464,21.150892],[-103.602012,21.149951],[-103.601378,21.147852],[-103.600576,21.147667],[-103.600036,21.146122],[-103.598585,21.145086],[-103.597688,21.142163],[-103.59933,21.141673],[-103.598914,21.140551],[-103.596881,21.139322],[-103.597499,21.137494],[-103.596819,21.135256],[-103.594831,21.131714],[-103.593541,21.130355],[-103.592195,21.129902],[-103.590441,21.127522],[-103.587656,21.126866],[-103.586297,21.127938],[-103.583281,21.127827],[-103.583722,21.12601],[-103.581247,21.127337],[-103.580191,21.126996],[-103.579537,21.12465],[-103.577624,21.123193],[-103.577335,21.121454],[-103.576295,21.121635],[-103.574,21.120705],[-103.573274,21.121692],[-103.573173,21.120269],[-103.571143,21.119187],[-103.568959,21.116718],[-103.568821,21.118938],[-103.567646,21.118925],[-103.567153,21.120701],[-103.566788,21.119379],[-103.565155,21.117935],[-103.565276,21.119407],[-103.5627,21.118797],[-103.561738,21.119271],[-103.559965,21.118256],[-103.559258,21.119103],[-103.558003,21.11834],[-103.557427,21.119831],[-103.556529,21.11952],[-103.55635,21.118068],[-103.553696,21.116748],[-103.554522,21.120907],[-103.552972,21.121607],[-103.552875,21.122811],[-103.55074,21.123357],[-103.550344,21.12498],[-103.547303,21.125574],[-103.546954,21.126784],[-103.541056,21.126285],[-103.54039,21.127745],[-103.536284,21.129289],[-103.534004,21.130654],[-103.533145,21.132433],[-103.531559,21.133871],[-103.530399,21.133607],[-103.529651,21.134519],[-103.531732,21.135153],[-103.532189,21.137596],[-103.533142,21.138507],[-103.531465,21.141978],[-103.529469,21.141898],[-103.527903,21.141224],[-103.526045,21.14265],[-103.523186,21.142471],[-103.520719,21.141539],[-103.51961,21.142399],[-103.518655,21.141739],[-103.514552,21.144736],[-103.51186,21.145043],[-103.510964,21.146222],[-103.510673,21.144843],[-103.509514,21.143564],[-103.509603,21.140027],[-103.510156,21.13779],[-103.509226,21.137461],[-103.50704,21.134213],[-103.507103,21.131384],[-103.506184,21.129033],[-103.504052,21.127739],[-103.496886,21.131014],[-103.493823,21.131691],[-103.493021,21.132319],[-103.49069,21.132182],[-103.489052,21.133036],[-103.486913,21.132738],[-103.484419,21.133408],[-103.48215,21.134806],[-103.477699,21.136844],[-103.475385,21.137274],[-103.473537,21.139155],[-103.472069,21.1414],[-103.469256,21.143362],[-103.465658,21.143507],[-103.464617,21.143146],[-103.460066,21.142648],[-103.458309,21.141904],[-103.456025,21.143422],[-103.453284,21.144073],[-103.447489,21.143484],[-103.447024,21.141906],[-103.445229,21.141028],[-103.442614,21.143018],[-103.441201,21.142547],[-103.43686,21.14265],[-103.435116,21.141969],[-103.433166,21.142769],[-103.431682,21.144434],[-103.429792,21.144941],[-103.428582,21.146724],[-103.427633,21.146049],[-103.427625,21.142554],[-103.428007,21.141209],[-103.425674,21.138997],[-103.423295,21.138017],[-103.421793,21.13852],[-103.417776,21.137976],[-103.416266,21.137278],[-103.416415,21.13622],[-103.418083,21.133949],[-103.418224,21.132639],[-103.41948,21.130221],[-103.421632,21.128294],[-103.421564,21.127141],[-103.423105,21.125709],[-103.423216,21.124084],[-103.421542,21.121312],[-103.418981,21.119552],[-103.41939,21.118159],[-103.417653,21.116498],[-103.418281,21.11523],[-103.415904,21.114843],[-103.414802,21.114066],[-103.412644,21.11117],[-103.411489,21.111523],[-103.411053,21.110032],[-103.410035,21.109591],[-103.409383,21.108156],[-103.408398,21.107831],[-103.405436,21.105378],[-103.405277,21.104363],[-103.403671,21.102694],[-103.402128,21.103405],[-103.400272,21.102157],[-103.401058,21.10109],[-103.400329,21.099069],[-103.398974,21.099231],[-103.398411,21.098106],[-103.396823,21.099197],[-103.395664,21.097621],[-103.396044,21.093697],[-103.394884,21.09413],[-103.393858,21.093367],[-103.392995,21.091072],[-103.394812,21.090157],[-103.395998,21.090483],[-103.396601,21.089297],[-103.394438,21.087118],[-103.394616,21.086588],[-103.397603,21.084996],[-103.397587,21.082988],[-103.396316,21.082449],[-103.395963,21.080288],[-103.393124,21.078988],[-103.389945,21.078312],[-103.388852,21.079486],[-103.387669,21.078853],[-103.388632,21.076503],[-103.386241,21.075124],[-103.386247,21.072328],[-103.384369,21.071378],[-103.385595,21.067798],[-103.38529,21.067214],[-103.383374,21.068093],[-103.378517,21.067202],[-103.375452,21.06472],[-103.374278,21.06254],[-103.368987,21.057514],[-103.368432,21.056671],[-103.369152,21.052376],[-103.367819,21.051215],[-103.364214,21.051335],[-103.362723,21.050323],[-103.36078,21.051348],[-103.356732,21.04862],[-103.354809,21.046112],[-103.347207,21.044209],[-103.346047,21.044649],[-103.345262,21.046087],[-103.344011,21.046165],[-103.342476,21.045339],[-103.340969,21.042793],[-103.338862,21.041869],[-103.335004,21.042644],[-103.332871,21.044159],[-103.332504,21.045151],[-103.333351,21.050673],[-103.332972,21.05238],[-103.33172,21.0536],[-103.328511,21.055305],[-103.325727,21.055428],[-103.323377,21.055949],[-103.318733,21.054927],[-103.316695,21.054078],[-103.314676,21.055632],[-103.312803,21.056418],[-103.310413,21.056131],[-103.307806,21.057479],[-103.305254,21.057188],[-103.30275,21.05481],[-103.301381,21.054958],[-103.299584,21.06081],[-103.297712,21.063691],[-103.296558,21.064838],[-103.295446,21.064683],[-103.293193,21.063087],[-103.290905,21.061963],[-103.288643,21.061591],[-103.285307,21.057979],[-103.283502,21.057326],[-103.279813,21.056843],[-103.278538,21.05589],[-103.27794,21.054545],[-103.277731,21.051933],[-103.276614,21.051284],[-103.274374,21.052246],[-103.272285,21.054024],[-103.269473,21.059964],[-103.267939,21.061051],[-103.265812,21.060469],[-103.263198,21.061797],[-103.261499,21.063434],[-103.261141,21.066571],[-103.259944,21.068628],[-103.257202,21.070731],[-103.258925,21.071537],[-103.259793,21.073075],[-103.26169,21.074595],[-103.261395,21.076231],[-103.259729,21.077112],[-103.258544,21.078512],[-103.258171,21.080172],[-103.258235,21.083066],[-103.25524,21.084628],[-103.254833,21.082398],[-103.254146,21.083265],[-103.252388,21.081016],[-103.250944,21.082344],[-103.248953,21.081722],[-103.247907,21.082922],[-103.245619,21.082392],[-103.2447,21.083738],[-103.243515,21.084058],[-103.242243,21.083178],[-103.242394,21.082167],[-103.239872,21.079792],[-103.237786,21.078618],[-103.232586,21.079094],[-103.23129,21.079921],[-103.228835,21.082719],[-103.227415,21.084924],[-103.22636,21.084629],[-103.222795,21.08679],[-103.219994,21.085642],[-103.219468,21.087722],[-103.216644,21.089407],[-103.215961,21.090796],[-103.212657,21.091079],[-103.209107,21.094141],[-103.207983,21.092294],[-103.206614,21.091676],[-103.205155,21.09258],[-103.205033,21.090715],[-103.20316,21.089671],[-103.203793,21.088637],[-103.202513,21.087538],[-103.201709,21.085905],[-103.199325,21.08671],[-103.198403,21.084904],[-103.197607,21.084823],[-103.195583,21.086325],[-103.192284,21.085507],[-103.19007,21.086002],[-103.188287,21.084477],[-103.189112,21.082975],[-103.18867,21.081615],[-103.189255,21.080849],[-103.191678,21.080202],[-103.191599,21.079106],[-103.189051,21.077831],[-103.187968,21.075203],[-103.186963,21.074352],[-103.188631,21.072763],[-103.188367,21.07066],[-103.18705,21.071218],[-103.186012,21.070745],[-103.183443,21.071939],[-103.182414,21.073958],[-103.180076,21.074606],[-103.179525,21.072628],[-103.178396,21.071928],[-103.175095,21.072518],[-103.174208,21.072148],[-103.170217,21.072438],[-103.168233,21.071092],[-103.167054,21.069327],[-103.165279,21.07012],[-103.162272,21.070058],[-103.163254,21.071516],[-103.162882,21.072886],[-103.159717,21.070779],[-103.157497,21.070124],[-103.153331,21.069674],[-103.1521,21.068997],[-103.151483,21.066248],[-103.149347,21.064819],[-103.147031,21.065916],[-103.145717,21.06429],[-103.143204,21.065743],[-103.142771,21.065368],[-103.141563,21.061396],[-103.138442,21.059156],[-103.136772,21.059824],[-103.13315,21.057798],[-103.132314,21.054814],[-103.129305,21.053278],[-103.127329,21.053531],[-103.126235,21.054436],[-103.123925,21.057987],[-103.121488,21.06241],[-103.12232,21.064348],[-103.124399,21.065385],[-103.12285,21.066907],[-103.119007,21.066883],[-103.114424,21.06791],[-103.112973,21.065781],[-103.110092,21.065972],[-103.107704,21.065428],[-103.106439,21.064334],[-103.105717,21.06241],[-103.103684,21.062381],[-103.100942,21.063959],[-103.097643,21.064788],[-103.095212,21.064999],[-103.0918,21.064794],[-103.088425,21.065742],[-103.084754,21.06968],[-103.083367,21.071528],[-103.08019,21.072122],[-103.078151,21.073398],[-103.077363,21.072431],[-103.076375,21.073773],[-103.074639,21.074308],[-103.075393,21.075785],[-103.073593,21.077944],[-103.0705,21.079688],[-103.069005,21.081405],[-103.069135,21.082331],[-103.06656,21.086313],[-103.064956,21.086951],[-103.064384,21.089323],[-103.064553,21.090795],[-103.062995,21.092049],[-103.062244,21.091534],[-103.060192,21.092766],[-103.057741,21.095523],[-103.056973,21.099805],[-103.058278,21.098445],[-103.061297,21.100185],[-103.063266,21.100589],[-103.062377,21.10228],[-103.063217,21.103908],[-103.065207,21.10433],[-103.066288,21.099688],[-103.068991,21.099012],[-103.071269,21.09903],[-103.072823,21.098313],[-103.07385,21.096325],[-103.07579,21.096889],[-103.075524,21.099651],[-103.076193,21.100773],[-103.075833,21.101834],[-103.077019,21.101964],[-103.075798,21.104091],[-103.075717,21.106559],[-103.075169,21.108099],[-103.073651,21.109954],[-103.078002,21.109947],[-103.079056,21.110944],[-103.083708,21.111087],[-103.084327,21.110633],[-103.085511,21.11275],[-103.084293,21.114116],[-103.086501,21.114758],[-103.08702,21.115601],[-103.08959,21.116755],[-103.091031,21.115401],[-103.092449,21.116801],[-103.091982,21.120146],[-103.092831,21.121421],[-103.095278,21.123039],[-103.095691,21.124944],[-103.097063,21.126401],[-103.096681,21.127012],[-103.0985,21.128493],[-103.098615,21.131172],[-103.095462,21.131854],[-103.095628,21.133026],[-103.091166,21.135518],[-103.084136,21.137211],[-103.083087,21.13837],[-103.080674,21.13835],[-103.078123,21.140011],[-103.075773,21.14282],[-103.074842,21.147554],[-103.073006,21.149282],[-103.072723,21.151394],[-103.071334,21.153383],[-103.074571,21.157522],[-103.076258,21.161137],[-103.07738,21.162844],[-103.076869,21.165155],[-103.075485,21.166608],[-103.075472,21.167668],[-103.078651,21.170046],[-103.078593,21.172351],[-103.081097,21.175822],[-103.08122,21.178129],[-103.082045,21.180248],[-103.083593,21.182118],[-103.084343,21.186888],[-103.083849,21.190992],[-103.084306,21.194059],[-103.083036,21.196539],[-103.081902,21.197047],[-103.080639,21.198784],[-103.079063,21.198443],[-103.0788,21.202295],[-103.077552,21.20265],[-103.076861,21.203832],[-103.074641,21.205375],[-103.072369,21.204903],[-103.069094,21.210339],[-103.072046,21.211205],[-103.075751,21.211636],[-103.077847,21.212978],[-103.077528,21.21545],[-103.074171,21.218335],[-103.073236,21.223856],[-103.071612,21.225912],[-103.069934,21.231866],[-103.068922,21.232746],[-103.06812,21.235085],[-103.063233,21.241195],[-103.058087,21.245292],[-103.056985,21.246788],[-103.057162,21.248379],[-103.061266,21.251082],[-103.062568,21.251349],[-103.063486,21.253257],[-103.0655,21.255806],[-103.063048,21.255454],[-103.060136,21.257801],[-103.058886,21.259492],[-103.055308,21.260903],[-103.052758,21.262621],[-103.05132,21.262565],[-103.049569,21.263355],[-103.048078,21.262535],[-103.044169,21.262125],[-103.043405,21.260353],[-103.045401,21.257642],[-103.047742,21.255595],[-103.045926,21.253943],[-103.046606,21.251594],[-103.045884,21.249426],[-103.045069,21.249185],[-103.040725,21.249705],[-103.040056,21.247956],[-103.038876,21.249636],[-103.037023,21.249167],[-103.035578,21.250373],[-103.030846,21.251142],[-103.029466,21.247338],[-103.027243,21.245791],[-103.026505,21.242124],[-103.017014,21.241049],[-103.014293,21.243364],[-103.013524,21.244868],[-103.011626,21.245627],[-103.011224,21.246621],[-103.011247,21.249342],[-103.01061,21.252345],[-103.011411,21.255054],[-103.01,21.256174],[-103.007275,21.2562],[-103.006054,21.25762],[-103.004376,21.257633],[-103.002877,21.258709],[-103.000846,21.259317],[-102.996904,21.259682],[-102.993854,21.258178],[-102.992274,21.256975],[-102.991462,21.255406],[-102.990722,21.256668],[-102.989504,21.256676],[-102.988178,21.254877],[-102.988173,21.251531],[-102.987315,21.251359],[-102.986776,21.249413],[-102.985184,21.248556],[-102.983217,21.248415],[-102.98211,21.246845],[-102.979338,21.246474],[-102.979984,21.244962],[-102.980127,21.242894],[-102.97893,21.24369],[-102.978824,21.242076],[-102.979712,21.241096],[-102.979049,21.239731],[-102.978146,21.240513],[-102.976478,21.240264],[-102.975788,21.239219],[-102.974914,21.240077],[-102.971948,21.240512],[-102.971301,21.241495],[-102.970177,21.240527],[-102.968039,21.241726],[-102.967073,21.239842],[-102.96575,21.240857],[-102.965305,21.237402],[-102.963603,21.235209],[-102.960964,21.235523],[-102.959179,21.235235],[-102.959099,21.23362],[-102.957936,21.234447],[-102.956395,21.234469],[-102.955954,21.233132],[-102.954413,21.234033],[-102.953714,21.232832],[-102.951901,21.231636],[-102.95034,21.232972],[-102.951964,21.233234],[-102.951863,21.234082],[-102.946968,21.234721],[-102.948694,21.233422],[-102.94655,21.231863],[-102.946301,21.230256],[-102.949635,21.226832],[-102.948549,21.225328],[-102.949415,21.22262],[-102.949012,21.21909],[-102.948247,21.218807],[-102.947672,21.216324],[-102.947811,21.214601],[-102.921464,21.209991],[-102.919235,21.209423],[-102.910652,21.205235],[-102.909038,21.208316],[-102.91021,21.210011],[-102.910389,21.211247],[-102.909099,21.214082],[-102.908923,21.216389],[-102.909745,21.217738],[-102.908301,21.219566],[-102.909766,21.220638],[-102.909077,21.222456],[-102.906277,21.222497],[-102.906316,21.223512],[-102.905201,21.223657],[-102.905684,21.225053],[-102.903931,21.225242],[-102.904279,21.226894],[-102.902161,21.228297],[-102.902956,21.23049],[-102.902997,21.23351],[-102.903694,21.233751],[-102.901844,21.236433],[-102.898694,21.237507],[-102.897965,21.237368],[-102.896367,21.235288],[-102.894244,21.235532],[-102.893406,21.233535],[-102.891674,21.233513],[-102.891079,21.234679],[-102.891815,21.237037],[-102.891325,21.237572],[-102.887023,21.235351],[-102.886443,21.235435],[-102.884761,21.238665],[-102.88312,21.238734],[-102.883657,21.241811],[-102.88166,21.23989],[-102.880507,21.239785],[-102.88082,21.237983],[-102.880047,21.238244],[-102.876574,21.236634],[-102.875429,21.238068],[-102.87528,21.241159],[-102.873467,21.245118],[-102.871351,21.247282],[-102.87146,21.249361],[-102.873057,21.251382],[-102.873298,21.25418],[-102.872403,21.255354],[-102.869629,21.255353],[-102.868512,21.254944],[-102.868363,21.252935],[-102.867307,21.253254],[-102.866804,21.254784],[-102.86518,21.253951],[-102.865101,21.252595],[-102.863655,21.252757],[-102.863427,21.255283],[-102.862743,21.255817],[-102.861112,21.255434],[-102.860997,21.256697],[-102.862617,21.257802],[-102.863554,21.259709],[-102.862968,21.261925],[-102.86066,21.26413],[-102.858825,21.266534],[-102.860047,21.268249],[-102.859397,21.270478],[-102.857947,21.270877],[-102.852175,21.274148],[-102.851996,21.275464],[-102.849403,21.275885],[-102.844829,21.277327],[-102.846801,21.280168],[-102.849539,21.281319],[-102.850788,21.28139],[-102.849731,21.29021],[-102.848778,21.293176],[-102.846057,21.294012],[-102.844209,21.294036],[-102.842907,21.297593],[-102.840862,21.297571],[-102.839929,21.298135],[-102.839739,21.301574],[-102.837102,21.303411],[-102.832155,21.300381],[-102.824119,21.297998],[-102.815547,21.294493],[-102.816221,21.295859],[-102.815891,21.297297],[-102.817224,21.298385],[-102.817691,21.299674],[-102.81713,21.30075],[-102.817994,21.305001],[-102.818058,21.307169],[-102.816456,21.30941],[-102.816283,21.312472],[-102.817612,21.313982],[-102.817601,21.318541],[-102.815703,21.318829],[-102.811964,21.323717],[-102.807734,21.322723],[-102.807255,21.320973],[-102.805737,21.320235],[-102.800088,21.310276],[-102.798499,21.306914],[-102.796251,21.313363],[-102.791371,21.327954],[-102.788916,21.329507],[-102.786797,21.329964],[-102.783713,21.329523],[-102.780419,21.326288],[-102.778477,21.322931],[-102.776126,21.320662],[-102.776106,21.319461],[-102.773935,21.316762],[-102.770217,21.315833],[-102.767521,21.318415],[-102.766143,21.318928],[-102.762028,21.319187],[-102.758756,21.320475],[-102.755281,21.323159],[-102.755563,21.32445],[-102.757017,21.326125],[-102.758902,21.327504],[-102.755228,21.331005],[-102.755256,21.333421],[-102.757679,21.333945],[-102.759251,21.335444],[-102.757765,21.339186],[-102.755266,21.341642],[-102.753246,21.343036],[-102.750107,21.346006],[-102.746333,21.34521],[-102.744226,21.346946],[-102.741269,21.346222],[-102.739777,21.347041],[-102.737607,21.350378],[-102.734895,21.352977],[-102.732974,21.35375],[-102.72978,21.356191],[-102.72796,21.357088],[-102.728851,21.361793],[-102.730088,21.361989],[-102.730256,21.364431],[-102.73266,21.369163],[-102.72931,21.374357],[-102.729453,21.378958],[-102.729128,21.387356],[-102.72432,21.386745],[-102.723967,21.385528],[-102.72214,21.384277],[-102.72122,21.381465],[-102.717285,21.380328],[-102.715344,21.381115],[-102.713264,21.379768],[-102.713408,21.378744],[-102.7122,21.377653],[-102.712247,21.37637],[-102.710268,21.373742],[-102.708051,21.371793],[-102.705774,21.3686],[-102.704065,21.364941],[-102.702285,21.364235],[-102.70226,21.362595],[-102.700628,21.3613],[-102.701269,21.35979],[-102.699411,21.357066],[-102.69997,21.354827],[-102.699605,21.353161],[-102.700924,21.351934],[-102.700727,21.350416],[-102.699752,21.349401],[-102.70098,21.348631],[-102.699472,21.344512],[-102.698284,21.343268],[-102.696852,21.342936],[-102.695055,21.340744],[-102.693124,21.340989],[-102.691872,21.342221],[-102.689332,21.342312],[-102.689146,21.342889],[-102.684371,21.343082],[-102.681843,21.339158],[-102.677777,21.34089],[-102.674609,21.344349],[-102.672732,21.345319],[-102.666164,21.351452],[-102.662065,21.354646],[-102.659174,21.356251],[-102.651224,21.363577],[-102.650065,21.364389],[-102.648118,21.364716],[-102.645582,21.364549],[-102.642595,21.367201],[-102.64232,21.36891],[-102.641718,21.379283],[-102.640434,21.381977],[-102.641471,21.38262],[-102.641434,21.384929],[-102.642564,21.385425],[-102.641509,21.386514],[-102.642824,21.388065],[-102.639274,21.38995],[-102.638262,21.391841],[-102.638241,21.393446],[-102.639203,21.393945],[-102.643451,21.392909],[-102.64584,21.393418],[-102.64684,21.394225],[-102.647525,21.397339],[-102.649254,21.399994],[-102.650799,21.400626],[-102.654768,21.401227],[-102.655906,21.403148],[-102.654619,21.404966],[-102.652572,21.405892],[-102.652211,21.407502],[-102.654457,21.408627],[-102.658118,21.408859],[-102.659669,21.410877],[-102.658364,21.41219],[-102.655059,21.413241],[-102.653254,21.4115],[-102.65224,21.41158],[-102.652894,21.41621],[-102.654319,21.417893],[-102.655653,21.418306],[-102.65669,21.419765],[-102.656762,21.423481],[-102.655756,21.423905],[-102.655361,21.422272],[-102.65326,21.421584],[-102.653059,21.422505],[-102.654306,21.425943],[-102.652643,21.425626],[-102.651782,21.426315],[-102.65265,21.429556],[-102.652055,21.432251],[-102.654756,21.432199],[-102.653725,21.436338],[-102.651793,21.435807],[-102.651067,21.436873],[-102.654097,21.437052],[-102.654957,21.438253],[-102.654994,21.440127],[-102.65351,21.441459],[-102.650656,21.440788],[-102.650258,21.441983],[-102.651962,21.444079],[-102.65388,21.444738],[-102.655007,21.44665],[-102.654612,21.447186],[-102.651673,21.446798],[-102.651473,21.448482],[-102.650731,21.448666],[-102.64737,21.447716],[-102.644499,21.449811],[-102.645038,21.450382],[-102.642483,21.451711],[-102.638751,21.455902],[-102.638323,21.458514],[-102.636869,21.458945],[-102.636735,21.461291],[-102.63613,21.462908],[-102.636704,21.464817],[-102.64066,21.463276],[-102.643154,21.461163],[-102.644454,21.460953],[-102.647883,21.462537],[-102.649341,21.469144],[-102.649448,21.472286],[-102.648763,21.47476],[-102.645778,21.474782],[-102.644697,21.476031],[-102.643262,21.47579],[-102.642203,21.476465],[-102.643022,21.477368],[-102.642176,21.478581],[-102.638907,21.481262],[-102.638423,21.480718],[-102.639092,21.477627],[-102.639683,21.476985],[-102.636668,21.477116],[-102.635966,21.479368],[-102.634775,21.479375],[-102.634276,21.481676],[-102.636266,21.481828],[-102.638125,21.482711],[-102.635359,21.486735],[-102.634249,21.489789],[-102.632585,21.49121],[-102.633318,21.493658],[-102.632178,21.496901],[-102.624842,21.501411],[-102.62638,21.503769],[-102.629896,21.508328],[-102.635884,21.513921],[-102.642167,21.518721],[-102.638797,21.523358],[-102.636477,21.525035],[-102.631218,21.527939],[-102.630575,21.531904],[-102.630734,21.533983],[-102.633908,21.53466],[-102.641994,21.535949],[-102.644331,21.535311],[-102.645861,21.535552],[-102.649146,21.535327],[-102.651049,21.534396],[-102.654354,21.535491],[-102.658223,21.535004],[-102.659569,21.533648],[-102.663107,21.53733],[-102.66519,21.539887],[-102.666834,21.539639],[-102.675765,21.542473],[-102.680188,21.543528],[-102.683173,21.54393],[-102.685515,21.542338],[-102.687152,21.542541],[-102.687613,21.543902],[-102.689335,21.544919],[-102.691182,21.544042],[-102.692179,21.542069],[-102.693317,21.543349],[-102.695258,21.542653],[-102.69641,21.54303],[-102.697152,21.544937],[-102.696731,21.547188],[-102.697473,21.549095],[-102.697145,21.551528],[-102.695656,21.554126],[-102.695731,21.555482],[-102.694434,21.558173],[-102.692919,21.562396],[-102.692328,21.56311],[-102.69402,21.566023],[-102.695027,21.569468],[-102.695101,21.572913],[-102.696025,21.572583],[-102.69825,21.573215],[-102.704049,21.572753],[-102.70501,21.573037],[-102.70891,21.571826],[-102.710999,21.572849],[-102.712482,21.572641],[-102.71429,21.57121],[-102.717105,21.571307],[-102.717956,21.572403],[-102.717612,21.575224],[-102.718009,21.576188],[-102.722138,21.576614],[-102.721717,21.578865],[-102.722343,21.582034],[-102.724626,21.584233],[-102.723912,21.586661],[-102.725343,21.587764],[-102.725407,21.589842],[-102.729237,21.591881],[-102.729508,21.593058],[-102.731826,21.593],[-102.732796,21.591791],[-102.735258,21.59112],[-102.737405,21.58676],[-102.758745,21.594267],[-102.760252,21.593619],[-102.763794,21.595754],[-102.765295,21.599156],[-102.766849,21.600968],[-102.768352,21.603697],[-102.767508,21.608382],[-102.769782,21.611211],[-102.770932,21.611769],[-102.770822,21.614761],[-102.772965,21.617756],[-102.77297,21.619056],[-102.775353,21.621566],[-102.77437,21.626895],[-102.774821,21.628978],[-102.777196,21.631538],[-102.777836,21.633894],[-102.77711,21.637135],[-102.777565,21.638947],[-102.779193,21.639872],[-102.779441,21.642584],[-102.780374,21.644764],[-102.783615,21.646693],[-102.78265,21.647504],[-102.781256,21.650284],[-102.779007,21.65206],[-102.775025,21.653452],[-102.773459,21.654785],[-102.773405,21.658306],[-102.774422,21.659112],[-102.777053,21.6598],[-102.778988,21.659092],[-102.781497,21.659769],[-102.783551,21.659788],[-102.783844,21.661142],[-102.785874,21.661858],[-102.787461,21.66325],[-102.793027,21.663991],[-102.793771,21.663171],[-102.795197,21.663466],[-102.797154,21.665576],[-102.798705,21.665235],[-102.79961,21.66643],[-102.802132,21.666986],[-102.804244,21.669463],[-102.805279,21.671282],[-102.80392,21.671716],[-102.801217,21.67159],[-102.798049,21.670284],[-102.797834,21.671726],[-102.795661,21.674857],[-102.795548,21.675939],[-102.79371,21.676095],[-102.791764,21.676973],[-102.789381,21.674864],[-102.786665,21.67555],[-102.786096,21.67491],[-102.785012,21.67625],[-102.783552,21.676953],[-102.783147,21.678212],[-102.77917,21.679243],[-102.776806,21.682191],[-102.776301,21.683629],[-102.77243,21.684028],[-102.767934,21.687399],[-102.766492,21.686928],[-102.765969,21.68954],[-102.764419,21.68979],[-102.761472,21.692911],[-102.758896,21.69703],[-102.751854,21.708763],[-102.7453,21.720052],[-102.74411,21.719181],[-102.741626,21.721],[-102.737017,21.715916],[-102.735222,21.715671],[-102.722799,21.719112],[-102.720248,21.721605],[-102.720798,21.723419],[-102.719792,21.725933],[-102.71881,21.727003],[-102.719756,21.72819],[-102.71827,21.730516],[-102.71765,21.733127],[-102.715605,21.734091],[-102.714025,21.730098],[-102.711412,21.730242],[-102.709295,21.729761],[-102.705721,21.729621],[-102.70119,21.729016],[-102.696263,21.728768],[-102.695333,21.732546],[-102.697427,21.734563],[-102.697318,21.741514],[-102.692307,21.746591],[-102.690669,21.752437],[-102.687658,21.753209],[-102.684366,21.753523],[-102.682253,21.752681],[-102.678768,21.753174],[-102.676034,21.75485],[-102.67386,21.7578],[-102.673442,21.75969],[-102.67127,21.762549],[-102.668926,21.764051],[-102.665918,21.764732],[-102.663318,21.764153],[-102.661213,21.762858],[-102.659576,21.762384],[-102.657344,21.762985],[-102.655584,21.764223],[-102.652968,21.764638],[-102.650923,21.765422],[-102.647776,21.76294],[-102.645952,21.7621],[-102.643539,21.761884],[-102.641087,21.764108],[-102.639832,21.76391],[-102.637115,21.764592],[-102.633494,21.767339],[-102.631676,21.76614],[-102.625858,21.761452],[-102.623844,21.76043],[-102.618123,21.755652],[-102.613494,21.755044],[-102.608613,21.752174],[-102.606312,21.751057],[-102.604862,21.751036],[-102.603764,21.753097],[-102.601208,21.755769],[-102.600046,21.755932],[-102.596774,21.754982],[-102.596415,21.753351],[-102.596671,21.749653],[-102.596279,21.74405],[-102.58314,21.743858],[-102.578444,21.743257],[-102.575455,21.742283],[-102.573595,21.742506],[-102.567421,21.744592],[-102.562819,21.744257],[-102.558667,21.743661],[-102.555208,21.743574],[-102.552494,21.742651],[-102.551848,21.741466],[-102.54895,21.738593],[-102.540977,21.73558],[-102.542452,21.732604],[-102.526734,21.724967],[-102.51717,21.7206],[-102.484286,21.704992],[-102.476522,21.702085],[-102.476935,21.698471],[-102.475757,21.694945],[-102.473039,21.695537],[-102.471477,21.696596],[-102.468362,21.697903],[-102.456864,21.698088],[-102.456706,21.696009],[-102.455284,21.694662],[-102.455998,21.693244],[-102.454465,21.692226],[-102.454598,21.689477],[-102.45222,21.687452],[-102.452339,21.68619],[-102.454775,21.684964],[-102.454463,21.682475],[-102.456689,21.682374],[-102.457036,21.680993],[-102.458917,21.680818],[-102.461066,21.679259],[-102.456091,21.678554],[-102.452453,21.678384],[-102.453919,21.681015],[-102.451206,21.681959],[-102.449251,21.681198],[-102.446579,21.678249],[-102.442334,21.674817],[-102.441455,21.673419],[-102.435665,21.673204],[-102.432791,21.672703],[-102.425006,21.671755],[-102.419986,21.669531],[-102.414421,21.667457],[-102.41337,21.666809],[-102.410379,21.666582],[-102.404595,21.665593],[-102.407493,21.659485],[-102.386944,21.653783],[-102.387321,21.652629],[-102.381098,21.651407],[-102.38026,21.652421],[-102.369526,21.650592],[-102.366874,21.642752],[-102.340184,21.628783],[-102.325722,21.622266],[-102.321051,21.630092],[-102.317418,21.628342],[-102.310166,21.626626],[-102.301281,21.642924],[-102.296927,21.650647],[-102.295371,21.653099],[-102.302649,21.6546],[-102.301935,21.661269],[-102.30399,21.666685],[-102.289366,21.66554],[-102.279442,21.664437],[-102.27997,21.6627],[-102.279634,21.660648],[-102.278094,21.657318],[-102.275219,21.653974],[-102.250916,21.655144],[-102.248555,21.653859],[-102.244792,21.652993],[-102.240393,21.65296],[-102.237618,21.652001],[-102.236033,21.653787],[-102.233606,21.653196],[-102.229723,21.655736],[-102.226997,21.65681],[-102.225205,21.661277],[-102.220546,21.671576],[-102.221698,21.672488],[-102.220445,21.674258],[-102.535944,22.751848],[-103.606548,24.149531],
], '#000000', 'Equipo 2');
W.map.addLayer(mapLayer);
mapLayer.setVisibility(localStorage.MapRaidChinaVisible == "true");
var areaJumper = document.getElementById('mapraidDropdown');
if (!areaJumper) {
areaJumper = document.createElement('select');
areaJumper.id = 'mapraidDropdown';
areaJumper.style.marginTop = '0px';
areaJumper.style.display = 'block';
var areaPlaceholder = document.createElement('option');
areaPlaceholder.textContent = 'Seleccionar Equipo';
areaJumper.appendChild(areaPlaceholder);
areaJumper.addEventListener('change', function() {
W.map.setCenter(areaJumper.selectedOptions[0].centroid);
areaJumper.selectedIndex = 0;
areaJumper.blur();
});
}
var areaJumperRegion = document.createElement('optgroup');
areaJumperRegion.label = 'Aguascalientes y Zacatecas (04 - 23 Noviembre 2018)';
mapLayer.features.forEach(function(feature) {
var area = document.createElement('option');
area.textContent = feature.attributes.name;
area.centroid = feature.geometry.getCentroid().toLonLat();
areaJumperRegion.appendChild(area);
});
areaJumper.appendChild(areaJumperRegion);
if (!document.getElementById('mapraidDropdown')) {
// Deal with new layout
if (window.getComputedStyle(document.getElementById('edit-buttons').parentNode).display == 'flex') {
var areaJumperContainer = document.createElement('div');
areaJumperContainer.style.flexGrow = '1';
areaJumperContainer.style.paddingTop = '6px';
areaJumper.style.width = '80%';
areaJumper.style.margin = '0 auto';
areaJumperContainer.appendChild(areaJumper);
document.getElementById('edit-buttons').parentNode.insertBefore(areaJumperContainer, document.getElementById('edit-buttons'));
} else {
document.getElementById('edit-buttons').parentNode.insertBefore(areaJumper, document.getElementById('edit-buttons'));
}
}
displayCurrentRaidLocation();
W.map.events.register("moveend", null, displayCurrentRaidLocation);
W.map.events.register("zoomend", null, displayCurrentRaidLocation);
}