WME MapRaid Quintana Roo Overlay

Creates polygons for Regions

// ==UserScript==
// @name			WME MapRaid Quintana Roo Overlay
// @author          Tom 'Glodenox' Puttemans
// @namespace		https://greasyfork.org/en/users/80924-luis-abrajan-drysoft
// @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 QR: ' + 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: QR', function(checked) {
		localStorage.MapRaidChinaVisible = checked;
		mapLayer.setVisibility(checked);
	});

	mapLayer = new OL.Layer.Vector("MapRaid QR Equipos", {
		uniqueName: "__QRMapRaid"
	});

	addRaidPolygon(mapLayer, [
		[-87.334939,20.356739],[-87.334793,20.356827],[-87.334386,20.356828],[-87.334042,20.356946],[-87.333734,20.357185],[-87.333598,20.357255],[-87.333324,20.35736],[-87.332974,20.358028],[-87.332795,20.358345],[-87.332795,20.35863],[-87.332631,20.358992],[-87.332457,20.359295],[-87.332328,20.359663],[-87.332203,20.359958],[-87.332078,20.360046],[-87.331868,20.360562],[-87.331688,20.36105],[-87.33157,20.36116],[-87.3314,20.361292],[-87.331393,20.361522],[-87.331581,20.361699],[-87.331775,20.361932],[-87.331842,20.362075],[-87.331926,20.36217],[-87.331958,20.362377],[-87.332083,20.362524],[-87.332115,20.362789],[-87.332209,20.362907],[-87.332148,20.363467],[-87.331992,20.363733],[-87.332251,20.364086],[-87.332235,20.364157],[-87.332282,20.364288],[-87.332237,20.364606],[-87.332212,20.36503],[-87.332195,20.365184],[-87.332144,20.365466],[-87.332129,20.365544],[-87.332101,20.365569],[-87.332085,20.36561],[-87.332054,20.365654],[-87.33192,20.366134],[-87.331735,20.366519],[-87.331501,20.366832],[-87.331176,20.367196],[-87.330803,20.367518],[-87.330468,20.367834],[-87.330244,20.368113],[-87.330081,20.368287],[-87.329884,20.368448],[-87.329618,20.368795],[-87.32942,20.369403],[-87.329316,20.369916],[-87.32918,20.370398],[-87.329086,20.370852],[-87.328988,20.371172],[-87.32893,20.371218],[-87.328865,20.371256],[-87.328803,20.371551],[-87.328656,20.371895],[-87.328495,20.372102],[-87.328052,20.372519],[-87.327862,20.37278],[-87.327781,20.372876],[-87.327671,20.372907],[-87.327548,20.372984],[-87.327387,20.373136],[-87.327203,20.373321],[-87.327028,20.373474],[-87.326742,20.373664],[-87.326622,20.373721],[-87.326533,20.373763],[-87.326048,20.374175],[-87.325672,20.374463],[-87.325495,20.374699],[-87.325379,20.374688],[-87.32469,20.375101],[-87.323975,20.375286],[-87.323411,20.375949],[-87.322797,20.376664],[-87.322516,20.377522],[-87.322575,20.378213],[-87.322522,20.378701],[-87.322934,20.379185],[-87.32339,20.379569],[-87.323599,20.379994],[-87.323861,20.380526],[-87.324019,20.381162],[-87.324146,20.381862],[-87.324168,20.382737],[-87.324193,20.383716],[-87.323976,20.384207],[-87.323433,20.384558],[-87.322994,20.384791],[-87.322941,20.385276],[-87.323202,20.385893],[-87.322701,20.387017],[-87.321889,20.387401],[-87.320801,20.388018],[-87.320299,20.388454],[-87.320108,20.389054],[-87.319794,20.389746],[-87.319652,20.390349],[-87.319485,20.390722],[-87.319121,20.391399],[-87.318459,20.39213],[-87.317664,20.392885],[-87.316629,20.393424],[-87.315982,20.39378],[-87.315515,20.394187],[-87.315003,20.394996],[-87.314681,20.395439],[-87.31466,20.395455],[-87.314582,20.395459],[-87.314217,20.395755],[-87.313143,20.396119],[-87.31297,20.396109],[-87.312696,20.39604],[-87.312263,20.395168],[-87.3118,20.39504],[-87.311296,20.395328],[-87.310717,20.395729],[-87.31041,20.395987],[-87.30974,20.397134],[-87.309258,20.398328],[-87.308798,20.398805],[-87.308391,20.399314],[-87.308175,20.399752],[-87.307912,20.400699],[-87.307975,20.401009],[-87.308611,20.401812],[-87.30894,20.402117],[-87.309102,20.402389],[-87.309253,20.402842],[-87.309333,20.403286],[-87.309296,20.403699],[-87.309033,20.404493],[-87.308894,20.404996],[-87.308589,20.405567],[-87.307371,20.406499],[-87.306585,20.406972],[-87.306156,20.407104],[-87.305677,20.407238],[-87.30528,20.407294],[-87.30492,20.407234],[-87.30446,20.407114],[-87.304323,20.407066],[-87.304007,20.407055],[-87.303624,20.407254],[-87.30342,20.40755],[-87.303172,20.407969],[-87.302928,20.408374],[-87.302843,20.408717],[-87.303249,20.408864],[-87.303357,20.409006],[-87.303326,20.409252],[-87.303498,20.409408],[-87.303657,20.409746],[-87.303684,20.409768],[-87.303596,20.410572],[-87.303555,20.410943],[-87.30224,20.410816],[-87.301748,20.411158],[-87.302107,20.412563],[-87.301877,20.414137],[-87.30138,20.414813],[-87.301252,20.414988],[-87.300389,20.415404],[-87.299405,20.415463],[-87.298781,20.415402],[-87.298114,20.415844],[-87.297732,20.416805],[-87.296855,20.417897],[-87.296545,20.418537],[-87.295859,20.419282],[-87.295207,20.4204],[-87.295338,20.420576],[-87.295311,20.420618],[-87.295163,20.420821],[-87.295131,20.421121],[-87.295138,20.421221],[-87.295168,20.421336],[-87.295244,20.421813],[-87.295174,20.422194],[-87.295077,20.422425],[-87.294944,20.422602],[-87.294609,20.422912],[-87.294449,20.423041],[-87.294315,20.42311],[-87.294165,20.423109],[-87.293904,20.422972],[-87.293739,20.422995],[-87.293319,20.423561],[-87.292818,20.424701],[-87.292534,20.42495],[-87.291804,20.426565],[-87.29184,20.427193],[-87.291949,20.427388],[-87.29243,20.427686],[-87.292822,20.427909],[-87.292976,20.428129],[-87.293021,20.428585],[-87.292858,20.429052],[-87.292319,20.429484],[-87.291842,20.429794],[-87.291248,20.429815],[-87.290897,20.429658],[-87.29058,20.4295],[-87.290298,20.429644],[-87.290213,20.429925],[-87.290259,20.430126],[-87.289941,20.4306],[-87.289144,20.430548],[-87.288392,20.430979],[-87.288488,20.431756],[-87.289038,20.433027],[-87.28906,20.433376],[-87.287586,20.433605],[-87.286533,20.434023],[-87.285432,20.435212],[-87.284711,20.436874],[-87.284576,20.437184],[-87.284517,20.437474],[-87.284141,20.437586],[-87.283939,20.438018],[-87.283872,20.438242],[-87.284353,20.438787],[-87.284665,20.439172],[-87.285433,20.439843],[-87.285111,20.4421],[-87.284573,20.443074],[-87.283646,20.444257],[-87.28224,20.446063],[-87.280792,20.44737],[-87.279756,20.448537],[-87.277687,20.450496],[-87.276315,20.451503],[-87.275404,20.451521],[-87.274611,20.451931],[-87.273939,20.451887],[-87.272538,20.453061],[-87.271181,20.454519],[-87.270131,20.455522],[-87.268814,20.456293],[-87.267428,20.457161],[-87.266745,20.457952],[-87.265707,20.458999],[-87.264196,20.460952],[-87.263364,20.462135],[-87.263119,20.463111],[-87.26208,20.463438],[-87.261406,20.464177],[-87.260986,20.465337],[-87.260748,20.465636],[-87.260425,20.465859],[-87.260287,20.465951],[-87.260631,20.466668],[-87.261041,20.466904],[-87.260908,20.467523],[-87.260044,20.468519],[-87.259697,20.469227],[-87.258681,20.470211],[-87.257242,20.471928],[-87.256707,20.473558],[-87.255106,20.475456],[-87.252883,20.477521],[-87.251398,20.478524],[-87.250989,20.478667],[-87.250837,20.478723],[-87.250399,20.478752],[-87.250149,20.478355],[-87.249704,20.47793],[-87.247876,20.478235],[-87.246638,20.478899],[-87.24575,20.479305],[-87.245042,20.479719],[-87.245616,20.480238],[-87.245551,20.480825],[-87.246985,20.483141],[-87.246699,20.484013],[-87.246349,20.484854],[-87.245431,20.485359],[-87.244352,20.485757],[-87.243272,20.48601],[-87.24255,20.486143],[-87.24233,20.486132],[-87.242087,20.486224],[-87.241927,20.48645],[-87.241804,20.486686],[-87.241716,20.486982],[-87.241449,20.487306],[-87.241172,20.487602],[-87.240869,20.487923],[-87.240743,20.487989],[-87.240556,20.488087],[-87.240306,20.488232],[-87.24008,20.488358],[-87.23987,20.488515],[-87.239726,20.488641],[-87.23948,20.488821],[-87.23923,20.489017],[-87.238949,20.489135],[-87.238704,20.489191],[-87.23856,20.489238],[-87.23833,20.489248],[-87.238015,20.489273],[-87.237866,20.489221],[-87.23772,20.489207],[-87.23768,20.489232],[-87.237458,20.489218],[-87.237331,20.489131],[-87.237223,20.48903],[-87.237158,20.488903],[-87.237101,20.488731],[-87.237103,20.488636],[-87.237101,20.488493],[-87.237025,20.488405],[-87.236879,20.488349],[-87.23674,20.488348],[-87.236667,20.48848],[-87.236633,20.488589],[-87.236534,20.488747],[-87.236526,20.488792],[-87.23646,20.488814],[-87.23634,20.488781],[-87.236237,20.488714],[-87.236181,20.488667],[-87.236056,20.488655],[-87.235957,20.488682],[-87.235846,20.488806],[-87.235736,20.48892],[-87.235596,20.489069],[-87.235422,20.489205],[-87.235321,20.489237],[-87.235219,20.489406],[-87.235124,20.48966],[-87.23505,20.489823],[-87.235187,20.48995],[-87.234642,20.490627],[-87.234811,20.492063],[-87.234733,20.492773],[-87.233024,20.492607],[-87.232766,20.493483],[-87.232715,20.494735],[-87.23246,20.495622],[-87.232376,20.495572],[-87.231783,20.495005],[-87.230852,20.494192],[-87.230857,20.494179],[-87.230843,20.494142],[-87.230815,20.494121],[-87.230783,20.494118],[-87.230755,20.494127],[-87.230739,20.494144],[-87.23073,20.494166],[-87.230719,20.494192],[-87.230742,20.494217],[-87.230807,20.494238],[-87.232291,20.495661],[-87.232296,20.495812],[-87.23231,20.495958],[-87.232282,20.496109],[-87.232195,20.496233],[-87.232099,20.496323],[-87.232087,20.496427],[-87.232018,20.496552],[-87.231938,20.496614],[-87.231878,20.49671],[-87.231799,20.496845],[-87.231674,20.496942],[-87.231547,20.497091],[-87.231394,20.497253],[-87.231308,20.497371],[-87.22937,20.498414],[-87.22913,20.49849],[-87.228666,20.498664],[-87.228108,20.498883],[-87.227703,20.499016],[-87.227499,20.499013],[-87.227422,20.499],[-87.227308,20.498994],[-87.227208,20.498996],[-87.227161,20.498978],[-87.227101,20.498977],[-87.227008,20.49899],[-87.226918,20.498993],[-87.226847,20.498975],[-87.226791,20.49898],[-87.226731,20.498956],[-87.226658,20.498924],[-87.226581,20.498878],[-87.226462,20.498856],[-87.226378,20.498885],[-87.226328,20.498869],[-87.226281,20.49884],[-87.226234,20.498812],[-87.226155,20.498764],[-87.22608,20.49874],[-87.226027,20.498712],[-87.225983,20.498672],[-87.225937,20.49864],[-87.225899,20.498594],[-87.225861,20.49855],[-87.225835,20.498498],[-87.225794,20.498437],[-87.225722,20.498362],[-87.225671,20.498281],[-87.225601,20.498221],[-87.225475,20.498164],[-87.225442,20.498105],[-87.225406,20.497995],[-87.225311,20.497941],[-87.225225,20.497844],[-87.225217,20.497776],[-87.225218,20.497716],[-87.225234,20.497635],[-87.225239,20.497581],[-87.22527,20.497533],[-87.225319,20.497475],[-87.225359,20.497424],[-87.225416,20.49736],[-87.225415,20.497265],[-87.22516,20.496944],[-87.225046,20.497014],[-87.225212,20.497245],[-87.225165,20.497347],[-87.224984,20.497574],[-87.224983,20.498039],[-87.224844,20.498048],[-87.224806,20.498029],[-87.22478,20.498017],[-87.224798,20.49799],[-87.224807,20.497912],[-87.224803,20.497847],[-87.224779,20.497805],[-87.224766,20.497739],[-87.224753,20.497658],[-87.22475,20.497542],[-87.224744,20.497462],[-87.224738,20.497388],[-87.224751,20.497304],[-87.224736,20.497223],[-87.224723,20.497137],[-87.224709,20.497062],[-87.224716,20.496999],[-87.224698,20.49693],[-87.224684,20.496883],[-87.224629,20.496893],[-87.224591,20.496954],[-87.224603,20.49703],[-87.22462,20.497102],[-87.224636,20.497183],[-87.224639,20.497243],[-87.224586,20.497278],[-87.224507,20.49728],[-87.224426,20.497275],[-87.224342,20.497252],[-87.22428,20.497194],[-87.224243,20.497154],[-87.224229,20.497111],[-87.224259,20.497082],[-87.224303,20.497045],[-87.224361,20.496979],[-87.224444,20.496894],[-87.224539,20.496822],[-87.224616,20.49677],[-87.224601,20.496704],[-87.224612,20.496653],[-87.224617,20.496598],[-87.224562,20.496558],[-87.224482,20.496553],[-87.224433,20.496582],[-87.22438,20.49664],[-87.224341,20.49669],[-87.224292,20.496766],[-87.224239,20.496816],[-87.224143,20.496897],[-87.224064,20.496979],[-87.223998,20.497059],[-87.223875,20.497095],[-87.223794,20.497084],[-87.223726,20.497049],[-87.223703,20.496948],[-87.223644,20.496955],[-87.2236,20.497003],[-87.223543,20.49707],[-87.223518,20.497129],[-87.223475,20.497218],[-87.223444,20.497275],[-87.2234,20.497316],[-87.22335,20.497373],[-87.2233,20.497437],[-87.22323,20.497513],[-87.223191,20.497581],[-87.223131,20.497659],[-87.223102,20.497751],[-87.223094,20.497826],[-87.221308,20.499581],[-87.219974,20.500774],[-87.220069,20.500999],[-87.220128,20.501111],[-87.220178,20.501219],[-87.220191,20.501318],[-87.220214,20.501409],[-87.220245,20.501536],[-87.220275,20.501629],[-87.220292,20.501746],[-87.220308,20.501879],[-87.22029,20.502002],[-87.220275,20.502084],[-87.220253,20.502155],[-87.220248,20.502233],[-87.220222,20.502293],[-87.2202,20.502389],[-87.220161,20.502485],[-87.220063,20.502561],[-87.219982,20.502626],[-87.219906,20.502668],[-87.219811,20.502704],[-87.219748,20.502744],[-87.219609,20.50279],[-87.219447,20.502797],[-87.219291,20.502801],[-87.21919,20.502847],[-87.219092,20.502903],[-87.218972,20.502858],[-87.218728,20.50284],[-87.218604,20.502886],[-87.218516,20.502957],[-87.218461,20.503003],[-87.218444,20.50308],[-87.218472,20.503154],[-87.218542,20.503201],[-87.218637,20.50322],[-87.21869,20.503215],[-87.218715,20.503227],[-87.218701,20.503268],[-87.218707,20.503308],[-87.218718,20.503331],[-87.218736,20.503366],[-87.218749,20.503412],[-87.218755,20.50346],[-87.218759,20.503506],[-87.21874,20.503538],[-87.218666,20.50359],[-87.218662,20.503666],[-87.218652,20.503755],[-87.218643,20.503841],[-87.218539,20.503818],[-87.218544,20.503755],[-87.218519,20.503668],[-87.218435,20.503608],[-87.21834,20.503507],[-87.218311,20.503441],[-87.21833,20.503352],[-87.218336,20.503241],[-87.218253,20.503105],[-87.218123,20.503078],[-87.218022,20.503124],[-87.217865,20.5032],[-87.217718,20.503309],[-87.217626,20.503369],[-87.217568,20.503396],[-87.217479,20.503381],[-87.217456,20.503334],[-87.217455,20.503272],[-87.21751,20.503226],[-87.217634,20.503146],[-87.217726,20.503086],[-87.217816,20.503038],[-87.217934,20.502983],[-87.21828,20.502996],[-87.218427,20.502893],[-87.218578,20.502758],[-87.218615,20.502597],[-87.218549,20.502501],[-87.218442,20.502405],[-87.218278,20.502389],[-87.218174,20.502436],[-87.218093,20.502499],[-87.217852,20.502624],[-87.217694,20.502729],[-87.217515,20.502818],[-87.217425,20.502951],[-87.217385,20.50315],[-87.217262,20.503198],[-87.2171,20.503303],[-87.216851,20.503476],[-87.216729,20.503544],[-87.216572,20.503656],[-87.216431,20.503759],[-87.216274,20.503871],[-87.216158,20.503946],[-87.216027,20.504031],[-87.21588,20.504127],[-87.215777,20.504204],[-87.215698,20.504298],[-87.215593,20.504356],[-87.215482,20.504439],[-87.215466,20.504469],[-87.215365,20.50455],[-87.213476,20.506051],[-87.211281,20.50757],[-87.208835,20.509353],[-87.207991,20.509979],[-87.207946,20.510389],[-87.207506,20.510537],[-87.207023,20.511004],[-87.204927,20.512129],[-87.202686,20.5136],[-87.200097,20.515061],[-87.197746,20.51649],[-87.195478,20.51769],[-87.19495,20.518706],[-87.19434,20.519],[-87.193614,20.518929],[-87.19312,20.519425],[-87.193753,20.519962],[-87.193639,20.520998],[-87.192935,20.52191],[-87.191644,20.522301],[-87.190333,20.521851],[-87.189769,20.521796],[-87.188886,20.522678],[-87.188409,20.523613],[-87.188087,20.525054],[-87.187802,20.526028],[-87.187862,20.527107],[-87.187671,20.527755],[-87.187095,20.528641],[-87.186094,20.529725],[-87.184863,20.530527],[-87.183813,20.531299],[-87.18253,20.531997],[-87.180807,20.532479],[-87.17995,20.532541],[-87.179073,20.532247],[-87.178688,20.531643],[-87.17839,20.531422],[-87.177886,20.531373],[-87.177278,20.531851],[-87.176229,20.531928],[-87.174599,20.532691],[-87.173338,20.533267],[-87.172917,20.533636],[-87.172464,20.53374],[-87.171677,20.534489],[-87.170449,20.535055],[-87.169123,20.53589],[-87.16849,20.536601],[-87.167951,20.537216],[-87.16721,20.537469],[-87.16633,20.538183],[-87.165965,20.539002],[-87.164846,20.540053],[-87.16461,20.540548],[-87.164316,20.540856],[-87.164079,20.540918],[-87.163708,20.541166],[-87.16332,20.541713],[-87.162839,20.542103],[-87.161237,20.543193],[-87.160496,20.543635],[-87.159676,20.544064],[-87.158604,20.545351],[-87.157136,20.546887],[-87.156242,20.547566],[-87.155334,20.548023],[-87.154581,20.548141],[-87.153907,20.548539],[-87.153303,20.549295],[-87.153498,20.549594],[-87.153246,20.55043],[-87.152692,20.551425],[-87.151767,20.552034],[-87.15074,20.552695],[-87.149799,20.553751],[-87.148927,20.554452],[-87.147392,20.55545],[-87.146397,20.556005],[-87.146031,20.557046],[-87.145932,20.557942],[-87.144903,20.559635],[-87.14408,20.561304],[-87.142808,20.562413],[-87.141112,20.563524],[-87.139254,20.564486],[-87.137871,20.564944],[-87.136938,20.565113],[-87.135872,20.565192],[-87.134448,20.564797],[-87.133784,20.565051],[-87.133713,20.565692],[-87.132927,20.565615],[-87.132497,20.565095],[-87.131025,20.566436],[-87.129509,20.568056],[-87.129433,20.568746],[-87.128871,20.56904],[-87.128792,20.569121],[-87.128345,20.569576],[-87.127633,20.569507],[-87.126426,20.570802],[-87.124496,20.572805],[-87.123704,20.573561],[-87.122853,20.574573],[-87.122005,20.575581],[-87.121789,20.575838],[-87.121553,20.576597],[-87.121097,20.57686],[-87.120816,20.576754],[-87.120322,20.577393],[-87.119825,20.57748],[-87.119299,20.577117],[-87.118539,20.577355],[-87.118193,20.577818],[-87.118072,20.578914],[-87.117218,20.579279],[-87.116833,20.57904],[-87.116385,20.579236],[-87.116118,20.579712],[-87.116252,20.580065],[-87.115958,20.580346],[-87.115587,20.580131],[-87.115352,20.580325],[-87.114785,20.580844],[-87.114119,20.581297],[-87.112793,20.582052],[-87.112557,20.582546],[-87.111892,20.582991],[-87.11073,20.584053],[-87.109271,20.585121],[-87.108066,20.586294],[-87.10753,20.586751],[-87.106767,20.587186],[-87.106424,20.587738],[-87.105555,20.588317],[-87.104746,20.588431],[-87.103388,20.589019],[-87.102129,20.589931],[-87.100965,20.590926],[-87.100116,20.591917],[-87.099002,20.59277],[-87.099204,20.592939],[-87.0988,20.593632],[-87.09812,20.594737],[-87.096443,20.596472],[-87.094445,20.598464],[-87.092855,20.600328],[-87.090645,20.602456],[-87.089931,20.603261],[-87.088041,20.605109],[-87.08748,20.605656],[-87.087438,20.605709],[-87.085417,20.608242],[-87.083822,20.610297],[-87.08369,20.610398],[-87.083543,20.610511],[-87.083058,20.610883],[-87.082106,20.611612],[-87.07992,20.613505],[-87.079118,20.614246],[-87.078807,20.614816],[-87.078292,20.615754],[-87.077792,20.616679],[-87.077333,20.617521],[-87.07689,20.618335],[-87.076339,20.619346],[-87.076316,20.619387],[-87.075188,20.620757],[-87.074262,20.620106],[-87.073981,20.620364],[-87.0746,20.620755],[-87.074503,20.620988],[-87.074767,20.621324],[-87.074309,20.621962],[-87.073737,20.622763],[-87.073115,20.62353],[-87.07242,20.624389],[-87.071744,20.6252],[-87.071011,20.625914],[-87.069313,20.627339],[-87.068639,20.627887],[-87.067524,20.627512],[-87.067101,20.627619],[-87.066802,20.627907],[-87.066765,20.627976],[-87.065696,20.629955],[-87.065049,20.630799],[-87.063677,20.632451],[-87.062695,20.633371],[-87.061824,20.634197],[-87.061806,20.634227],[-87.06124,20.635182],[-87.060915,20.635468],[-87.060596,20.635749],[-87.060092,20.636142],[-87.059322,20.636236],[-87.059186,20.636992],[-87.058921,20.63764],[-87.058253,20.639219],[-87.057381,20.641382],[-87.056996,20.642231],[-87.05528,20.644941],[-87.054857,20.645133],[-87.054295,20.645815],[-87.053298,20.647039],[-87.052543,20.647526],[-87.051931,20.647948],[-87.051424,20.648137],[-87.050748,20.648127],[-87.050239,20.647773],[-87.049847,20.64743],[-87.049674,20.647406],[-87.049361,20.647363],[-87.048698,20.647414],[-87.047908,20.647553],[-87.04737,20.647857],[-87.047062,20.648147],[-87.046821,20.648557],[-87.046761,20.648853],[-87.046707,20.649231],[-87.046574,20.65005],[-87.046332,20.650532],[-87.04601,20.651112],[-87.045611,20.651867],[-87.045234,20.652349],[-87.044745,20.652771],[-87.04431,20.65296],[-87.043861,20.653029],[-87.043401,20.653224],[-87.042991,20.653471],[-87.042677,20.653698],[-87.042402,20.653935],[-87.042151,20.654209],[-87.042019,20.654361],[-87.041641,20.654446],[-87.041351,20.654601],[-87.041066,20.654799],[-87.040834,20.655318],[-87.040643,20.655918],[-87.040401,20.656315],[-87.040143,20.656778],[-87.040064,20.657062],[-87.039952,20.657264],[-87.039694,20.657416],[-87.039489,20.657488],[-87.039297,20.657548],[-87.038831,20.657992],[-87.03844,20.658338],[-87.03807,20.658631],[-87.037697,20.658864],[-87.037343,20.659085],[-87.037238,20.659184],[-87.0369,20.659503],[-87.036553,20.659811],[-87.036236,20.660044],[-87.035871,20.66012],[-87.035534,20.660207],[-87.035203,20.660437],[-87.034789,20.660568],[-87.034505,20.660599],[-87.033838,20.660677],[-87.03362,20.660724],[-87.033291,20.661008],[-87.033087,20.661303],[-87.032766,20.661867],[-87.032637,20.662081],[-87.032339,20.662377],[-87.031077,20.663886],[-87.029389,20.665939],[-87.028835,20.666926],[-87.028498,20.667812],[-87.028271,20.668369],[-87.027381,20.669195],[-87.026897,20.669645],[-87.026541,20.66989],[-87.026217,20.670308],[-87.025683,20.670795],[-87.025372,20.670959],[-87.025082,20.671228],[-87.024623,20.671681],[-87.023913,20.672471],[-87.023727,20.672684],[-87.023311,20.673097],[-87.02292,20.673619],[-87.021897,20.67433],[-87.021775,20.674476],[-87.021725,20.67495],[-87.021729,20.674978],[-87.020998,20.681542],[-87.020202,20.684531],[-87.019803,20.686566],[-87.019213,20.687877],[-87.019036,20.689036],[-87.018403,20.690737],[-87.016984,20.692802],[-87.016723,20.693182],[-87.015634,20.694647],[-87.014844,20.696411],[-87.013063,20.698642],[-87.011703,20.700076],[-87.011162,20.701316],[-87.010243,20.702374],[-87.009249,20.703224],[-87.008123,20.704246],[-87.006794,20.704566],[-87.005772,20.705221],[-87.005158,20.705419],[-87.004146,20.705231],[-87.002999,20.705251],[-87.002662,20.705217],[-87.001951,20.706031],[-87.001258,20.706856],[-86.999566,20.708294],[-86.998431,20.709953],[-86.997675,20.710682],[-86.996115,20.711471],[-86.994542,20.712421],[-86.993767,20.712797],[-86.992588,20.713533],[-86.991525,20.714005],[-86.990356,20.714318],[-86.990005,20.714416],[-86.989453,20.714463],[-86.988975,20.714653],[-86.988269,20.714946],[-86.987774,20.715203],[-86.987082,20.715918],[-86.986464,20.716527],[-86.985807,20.716928],[-86.984801,20.7173],[-86.98383,20.71778],[-86.983231,20.718014],[-86.98274,20.718554],[-86.982248,20.719034],[-86.98153,20.719651],[-86.980836,20.720274],[-86.98015,20.720849],[-86.979508,20.721236],[-86.978743,20.721993],[-86.978118,20.722552],[-86.97643,20.723491],[-86.975739,20.723862],[-86.974986,20.724128],[-86.974735,20.724199],[-86.974384,20.72434],[-86.973957,20.724364],[-86.973582,20.724598],[-86.973498,20.72468],[-86.97334,20.724765],[-86.973107,20.724798],[-86.972868,20.724905],[-86.972753,20.724906],[-86.972577,20.72493],[-86.972301,20.724977],[-86.971975,20.725024],[-86.971573,20.725071],[-86.971297,20.725118],[-86.971047,20.725236],[-86.970852,20.725295],[-86.97067,20.725354],[-86.969921,20.725682],[-86.96957,20.725753],[-86.969364,20.725929],[-86.969232,20.726102],[-86.969021,20.726207],[-86.968767,20.726201],[-86.968616,20.726272],[-86.968516,20.72639],[-86.968315,20.726531],[-86.968137,20.726638],[-86.967863,20.726884],[-86.967511,20.72705],[-86.967311,20.727074],[-86.967086,20.727168],[-86.96686,20.72731],[-86.966709,20.72738],[-86.96645,20.727526],[-86.966345,20.727611],[-86.966205,20.727626],[-86.966007,20.727711],[-86.965731,20.727828],[-86.965555,20.727876],[-86.965254,20.727946],[-86.964953,20.728088],[-86.964777,20.728182],[-86.96438,20.728566],[-86.963766,20.729028],[-86.963404,20.729578],[-86.962954,20.729876],[-86.962732,20.73009],[-86.962572,20.73046],[-86.962439,20.730497],[-86.962405,20.730989],[-86.962318,20.731508],[-86.962619,20.731862],[-86.962504,20.732313],[-86.962748,20.732731],[-86.963176,20.733329],[-86.963913,20.733372],[-86.964317,20.733711],[-86.96442,20.733853],[-86.964571,20.734036],[-86.964776,20.734694],[-86.96497,20.73528],[-86.965026,20.735732],[-86.965127,20.736463],[-86.965151,20.737242],[-86.965252,20.73743],[-86.965252,20.737761],[-86.965236,20.738107],[-86.965076,20.739106],[-86.965046,20.739523],[-86.964921,20.740255],[-86.964665,20.741119],[-86.964573,20.741535],[-86.964572,20.742028],[-86.964505,20.742822],[-86.964646,20.743193],[-86.964581,20.743673],[-86.96425,20.744486],[-86.96435,20.744876],[-86.96435,20.745466],[-86.964498,20.746209],[-86.964437,20.746711],[-86.964273,20.747248],[-86.964228,20.747508],[-86.964159,20.7478],[-86.963948,20.748098],[-86.963729,20.748375],[-86.963505,20.748659],[-86.963232,20.748877],[-86.963003,20.74904],[-86.962561,20.749006],[-86.962345,20.748911],[-86.962034,20.749034],[-86.961727,20.749302],[-86.961411,20.749477],[-86.961111,20.75],[-86.961153,20.750381],[-86.960728,20.750955],[-86.960452,20.751752],[-86.960169,20.752326],[-86.959848,20.752938],[-86.959314,20.753656],[-86.958651,20.754709],[-86.958329,20.755913],[-86.958087,20.75683],[-86.958023,20.757398],[-86.957543,20.757989],[-86.957142,20.758968],[-86.956643,20.759254],[-86.956117,20.759939],[-86.955429,20.760649],[-86.954293,20.761079],[-86.953644,20.760501],[-86.95318,20.761416],[-86.952488,20.762242],[-86.951094,20.76341],[-86.950609,20.763408],[-86.950106,20.764166],[-86.949671,20.764679],[-86.949476,20.765231],[-86.949132,20.765477],[-86.948723,20.765551],[-86.948574,20.76549],[-86.948405,20.765695],[-86.948119,20.766007],[-86.947943,20.766267],[-86.947627,20.766598],[-86.947281,20.767505],[-86.946407,20.768325],[-86.946238,20.768928],[-86.946174,20.769499],[-86.945872,20.770671],[-86.945141,20.772807],[-86.94404,20.775653],[-86.942919,20.778412],[-86.942424,20.779034],[-86.941913,20.779229],[-86.94142,20.779873],[-86.940767,20.78126],[-86.940453,20.782329],[-86.940103,20.782543],[-86.939736,20.782561],[-86.939353,20.782907],[-86.938724,20.783371],[-86.938357,20.783915],[-86.9381,20.784316],[-86.937554,20.784799],[-86.937348,20.785113],[-86.936779,20.785341],[-86.936344,20.785864],[-86.935843,20.786411],[-86.935464,20.786767],[-86.93492,20.787426],[-86.934239,20.788361],[-86.933864,20.788806],[-86.933614,20.789499],[-86.93301,20.790347],[-86.932458,20.791285],[-86.932108,20.791756],[-86.931594,20.792196],[-86.931361,20.793124],[-86.930914,20.793756],[-86.930705,20.79406],[-86.930661,20.794452],[-86.93006,20.79555],[-86.929495,20.796359],[-86.928817,20.797032],[-86.92823,20.797748],[-86.928102,20.798137],[-86.927539,20.798855],[-86.926938,20.799649],[-86.926238,20.800703],[-86.925632,20.801446],[-86.925112,20.802062],[-86.9246,20.802967],[-86.923968,20.803761],[-86.923467,20.804331],[-86.922829,20.804956],[-86.922099,20.805751],[-86.921272,20.80671],[-86.920711,20.807505],[-86.920246,20.808006],[-86.919671,20.808326],[-86.918692,20.808612],[-86.918035,20.808457],[-86.917216,20.80921],[-86.916502,20.809914],[-86.915951,20.810223],[-86.915329,20.810536],[-86.915251,20.810575],[-86.914443,20.810936],[-86.913288,20.810879],[-86.912402,20.810638],[-86.911472,20.811245],[-86.911012,20.811901],[-86.91013,20.812467],[-86.909179,20.81256],[-86.908003,20.812443],[-86.90788,20.812213],[-86.906676,20.812286],[-86.905792,20.812757],[-86.905438,20.812772],[-86.904735,20.812386],[-86.904309,20.812888],[-86.902318,20.815373],[-86.900584,20.818226],[-86.898001,20.821992],[-86.895269,20.826347],[-86.894729,20.82694],[-86.894423,20.827238],[-86.893869,20.827861],[-86.893355,20.828562],[-86.892746,20.82911],[-86.892412,20.829309],[-86.892242,20.829204],[-86.891194,20.827932],[-86.891022,20.827749],[-86.890841,20.827653],[-86.890699,20.827653],[-86.890572,20.827687],[-86.889828,20.828243],[-86.889948,20.828398],[-86.890674,20.827844],[-86.890741,20.827832],[-86.89085,20.827871],[-86.890965,20.827959],[-86.891874,20.828995],[-86.89126,20.829604],[-86.89077,20.830064],[-86.890632,20.830141],[-86.890474,20.830022],[-86.890391,20.829987],[-86.890289,20.830077],[-86.890446,20.830364],[-86.890443,20.83057],[-86.890489,20.830802],[-86.890484,20.830911],[-86.890281,20.831083],[-86.889997,20.831329],[-86.889822,20.831159],[-86.890295,20.830714],[-86.890243,20.830655],[-86.889755,20.831105],[-86.889595,20.830957],[-86.890083,20.830508],[-86.890042,20.830465],[-86.889539,20.830916],[-86.889312,20.830697],[-86.89005,20.830025],[-86.889788,20.829786],[-86.889089,20.830486],[-86.88887,20.830268],[-86.889626,20.829541],[-86.889434,20.829324],[-86.889433,20.82924],[-86.889402,20.829199],[-86.889335,20.829172],[-86.889295,20.829151],[-86.889313,20.827821],[-86.889279,20.827784],[-86.889185,20.827771],[-86.889103,20.827809],[-86.889056,20.827847],[-86.889053,20.828001],[-86.88913,20.82916],[-86.889106,20.829305],[-86.88852,20.829886],[-86.888208,20.830116],[-86.888102,20.830247],[-86.888055,20.830351],[-86.888056,20.830452],[-86.888121,20.830539],[-86.889686,20.831986],[-86.88938,20.832511],[-86.889132,20.832767],[-86.888785,20.833125],[-86.888232,20.83361],[-86.888057,20.833729],[-86.887815,20.833894],[-86.887535,20.834065],[-86.887419,20.834255],[-86.887323,20.834411],[-86.887247,20.834502],[-86.88697,20.834801],[-86.886709,20.835003],[-86.886478,20.835162],[-86.886156,20.835517],[-86.885774,20.836035],[-86.885386,20.836622],[-86.884847,20.837305],[-86.884408,20.837814],[-86.884213,20.838097],[-86.884048,20.83843],[-86.883772,20.838736],[-86.883424,20.839105],[-86.883136,20.839412],[-86.882794,20.839803],[-86.882738,20.839867],[-86.882651,20.84],[-86.882441,20.840263],[-86.882241,20.840559],[-86.882081,20.840812],[-86.882007,20.840928],[-86.881887,20.841099],[-86.881844,20.841134],[-86.881792,20.841176],[-86.881483,20.841533],[-86.881235,20.841717],[-86.880917,20.842079],[-86.880379,20.84253],[-86.879852,20.842784],[-86.879551,20.842976],[-86.879327,20.843062],[-86.878322,20.84202],[-86.878349,20.841926],[-86.878415,20.841763],[-86.878254,20.841644],[-86.878816,20.840598],[-86.878715,20.840557],[-86.878633,20.840524],[-86.878105,20.841534],[-86.877925,20.841402],[-86.877792,20.841726],[-86.878004,20.841947],[-86.87805,20.842151],[-86.878247,20.842359],[-86.879095,20.843222],[-86.878654,20.84361],[-86.878232,20.843845],[-86.87771,20.844228],[-86.877141,20.844692],[-86.8768,20.845044],[-86.876508,20.845469],[-86.876257,20.8457],[-86.87604,20.84604],[-86.875819,20.846314],[-86.875775,20.846391],[-86.87572,20.846487],[-86.875474,20.846752],[-86.875093,20.847165],[-86.874812,20.847311],[-86.874371,20.847064],[-86.874396,20.847009],[-86.873961,20.846767],[-86.873862,20.846934],[-86.873758,20.84711],[-86.874183,20.847361],[-86.874229,20.847295],[-86.874689,20.847541],[-86.874222,20.84852],[-86.874129,20.84877],[-86.873885,20.849048],[-86.87384,20.849136],[-86.873805,20.849205],[-86.873611,20.849568],[-86.873526,20.849686],[-86.873431,20.849818],[-86.873289,20.850252],[-86.873207,20.850413],[-86.873162,20.850503],[-86.873122,20.850583],[-86.872955,20.850927],[-86.872843,20.851294],[-86.872822,20.851388],[-86.872796,20.8515],[-86.872783,20.85156],[-86.872767,20.851638],[-86.872662,20.851886],[-86.87255,20.852047],[-86.872498,20.852243],[-86.872471,20.852347],[-86.87229,20.852625],[-86.872193,20.852887],[-86.872174,20.853064],[-86.872124,20.853151],[-86.872071,20.853246],[-86.872036,20.853399],[-86.872026,20.853566],[-86.872019,20.853689],[-86.871839,20.853962],[-86.8717,20.854301],[-86.871578,20.85464],[-86.871552,20.854707],[-86.871533,20.854756],[-86.871477,20.854859],[-86.871424,20.854955],[-86.871344,20.855335],[-86.871273,20.855614],[-86.871185,20.855873],[-86.871152,20.855936],[-86.871106,20.856025],[-86.87107,20.856178],[-86.871014,20.856412],[-86.870946,20.856855],[-86.870891,20.857118],[-86.870874,20.857198],[-86.870803,20.857322],[-86.87041,20.859469],[-86.869889,20.860912],[-86.86949,20.861937],[-86.86942,20.862116],[-86.868709,20.863968],[-86.868038,20.865691],[-86.86794,20.865945],[-86.867478,20.86697],[-86.867273,20.867427],[-86.866808,20.868458],[-86.866225,20.869916],[-86.865996,20.870574],[-86.865542,20.871878],[-86.865461,20.872194],[-86.865298,20.872828],[-86.865091,20.873633],[-86.864791,20.877115],[-86.864224,20.88119],[-86.864102,20.881875],[-86.863904,20.882512],[-86.863594,20.883512],[-86.863412,20.883989],[-86.863295,20.884661],[-86.862987,20.885275],[-86.862867,20.885514],[-86.862551,20.886141],[-86.862382,20.886923],[-86.862082,20.887615],[-86.861718,20.88826],[-86.861439,20.888769],[-86.861023,20.889235],[-86.860806,20.889617],[-86.860736,20.890233],[-86.860539,20.891216],[-86.860204,20.891836],[-86.859721,20.892503],[-86.859289,20.892895],[-86.858696,20.893282],[-86.858257,20.89353],[-86.858263,20.89354],[-86.857938,20.893709],[-86.857558,20.893542],[-86.857188,20.893814],[-86.856038,20.895137],[-86.854893,20.896493],[-86.853885,20.897824],[-86.852025,20.899213],[-86.850049,20.900506],[-86.84936,20.90122],[-86.848719,20.901885],[-86.846913,20.903977],[-86.846468,20.904798],[-86.846285,20.905516],[-86.84623,20.907613],[-86.846104,20.909179],[-86.845956,20.910836],[-86.845854,20.912606],[-86.845691,20.913786],[-86.845463,20.915144],[-86.84517,20.916194],[-86.844908,20.917345],[-86.844801,20.918292],[-86.844362,20.919491],[-86.844211,20.920178],[-86.843783,20.921046],[-86.843222,20.922228],[-86.842652,20.923392],[-86.841863,20.924744],[-86.841216,20.925779],[-86.84042,20.926799],[-86.839175,20.927802],[-86.838064,20.928655],[-86.838184,20.928977],[-86.83803,20.929169],[-86.837916,20.930174],[-86.837986,20.931305],[-86.837907,20.932007],[-86.837793,20.932283],[-86.837589,20.934089],[-86.837823,20.93494],[-86.837749,20.935597],[-86.837775,20.935919],[-86.837679,20.937356],[-86.837421,20.938411],[-86.837261,20.938871],[-86.837219,20.939903],[-86.837097,20.94098],[-86.837212,20.941997],[-86.837175,20.943167],[-86.837029,20.944455],[-86.836841,20.945564],[-86.836501,20.94677],[-86.835996,20.948291],[-86.835452,20.949631],[-86.835403,20.951125],[-86.835023,20.954491],[-86.83421,20.957157],[-86.832885,20.961079],[-86.830352,20.965375],[-86.829915,20.966895],[-86.82993,20.967471],[-86.830198,20.968361],[-86.830123,20.971358],[-86.829629,20.97573],[-86.828721,20.979592],[-86.827383,20.983491],[-86.826369,20.987274],[-86.824843,20.99125],[-86.823482,20.99596],[-86.821945,21.00128],[-86.820946,21.004035],[-86.819243,21.008119],[-86.817495,21.012381],[-86.815693,21.017153],[-86.812968,21.023054],[-86.8098,21.029186],[-86.807311,21.031548],[-86.804365,21.033595],[-86.80089,21.03546],[-86.797028,21.035665],[-86.794694,21.035001],[-86.794589,21.03489],[-86.792953,21.034293],[-86.792106,21.034022],[-86.790604,21.03325],[-86.78946,21.032503],[-86.789285,21.032408],[-86.78906,21.032201],[-86.788939,21.032082],[-86.788893,21.032039],[-86.788916,21.031926],[-86.788879,21.031708],[-86.788747,21.031371],[-86.788483,21.031187],[-86.788304,21.031154],[-86.788222,21.031007],[-86.78829,21.030842],[-86.788315,21.030624],[-86.787983,21.03001],[-86.787655,21.029805],[-86.787241,21.029763],[-86.786794,21.029876],[-86.786297,21.03028],[-86.785729,21.030584],[-86.785113,21.030933],[-86.784701,21.031077],[-86.784463,21.031063],[-86.784261,21.031092],[-86.784145,21.031189],[-86.784018,21.031294],[-86.783571,21.031611],[-86.782728,21.031841],[-86.782082,21.031947],[-86.781778,21.03196],[-86.781401,21.03201],[-86.781089,21.032036],[-86.780902,21.032021],[-86.780564,21.031943],[-86.780415,21.031759],[-86.780306,21.031603],[-86.780106,21.031474],[-86.779963,21.03141],[-86.779887,21.031403],[-86.779875,21.031298],[-86.779879,21.031186],[-86.779876,21.031083],[-86.779864,21.03102],[-86.779819,21.031015],[-86.779787,21.031033],[-86.779773,21.031156],[-86.779746,21.031399],[-86.779621,21.031491],[-86.779476,21.031616],[-86.779405,21.031784],[-86.779393,21.03195],[-86.779313,21.032073],[-86.779141,21.032153],[-86.778932,21.032292],[-86.778749,21.0324],[-86.778629,21.032535],[-86.778511,21.033105],[-86.778481,21.033311],[-86.778147,21.033828],[-86.778009,21.034128],[-86.777872,21.034371],[-86.777796,21.034944],[-86.777784,21.035076],[-86.777793,21.035291],[-86.777822,21.035401],[-86.777856,21.035486],[-86.777849,21.035554],[-86.777754,21.035626],[-86.7777,21.035688],[-86.777676,21.035874],[-86.777695,21.035974],[-86.777594,21.036069],[-86.777531,21.036156],[-86.777548,21.036477],[-86.777562,21.036549],[-86.777563,21.036603],[-86.777429,21.036603],[-86.777359,21.036676],[-86.777355,21.036783],[-86.777373,21.036891],[-86.777432,21.036977],[-86.777583,21.036999],[-86.777738,21.036907],[-86.778065,21.036161],[-86.778332,21.035984],[-86.778894,21.036068],[-86.779278,21.036191],[-86.779789,21.036532],[-86.780055,21.036777],[-86.780628,21.037598],[-86.780746,21.037781],[-86.780768,21.037907],[-86.781446,21.039086],[-86.781418,21.039173],[-86.781786,21.04043],[-86.781852,21.040548],[-86.781928,21.040856],[-86.782014,21.041257],[-86.782309,21.044366],[-86.782287,21.044929],[-86.782275,21.045631],[-86.782275,21.046209],[-86.782336,21.046338],[-86.781969,21.049213],[-86.781967,21.049212],[-86.781854,21.050074],[-86.781885,21.050149],[-86.78155,21.051789],[-86.781232,21.053082],[-86.780984,21.054272],[-86.780718,21.055336],[-86.780719,21.055375],[-86.780704,21.055378],[-86.780695,21.055409],[-86.780418,21.056317],[-86.780417,21.056316],[-86.779732,21.058633],[-86.779464,21.060223],[-86.778221,21.063528],[-86.777853,21.064838],[-86.777298,21.066471],[-86.77725,21.066888],[-86.776711,21.068525],[-86.776699,21.068551],[-86.776687,21.068574],[-86.776379,21.069313],[-86.77612,21.069319],[-86.77518,21.072406],[-86.774681,21.073891],[-86.774673,21.073914],[-86.774667,21.073942],[-86.774137,21.075369],[-86.77316,21.077993],[-86.772525,21.079765],[-86.772066,21.081103],[-86.770681,21.085086],[-86.770679,21.085109],[-86.770681,21.085124],[-86.768963,21.089717],[-86.768946,21.089776],[-86.768922,21.089859],[-86.766291,21.096238],[-86.766025,21.096866],[-86.765913,21.09702],[-86.765906,21.09704],[-86.765898,21.09706],[-86.765268,21.098603],[-86.76484,21.0997],[-86.763497,21.102909],[-86.763245,21.103403],[-86.763232,21.103436],[-86.763218,21.103472],[-86.762589,21.104891],[-86.762171,21.105825],[-86.761169,21.108396],[-86.761126,21.10852],[-86.761118,21.108544],[-86.761091,21.108565],[-86.760218,21.109785],[-86.759461,21.111458],[-86.759109,21.112302],[-86.758087,21.114484],[-86.757751,21.115191],[-86.756854,21.116838],[-86.756829,21.116858],[-86.756803,21.116877],[-86.756472,21.117485],[-86.756308,21.117866],[-86.756308,21.118158],[-86.755971,21.118476],[-86.755698,21.118835],[-86.755342,21.119498],[-86.754842,21.120175],[-86.754511,21.120704],[-86.754381,21.121115],[-86.754277,21.121285],[-86.753833,21.122186],[-86.753786,21.122256],[-86.753736,21.122344],[-86.753481,21.122893],[-86.753077,21.123473],[-86.752913,21.123762],[-86.752529,21.124485],[-86.751718,21.125698],[-86.751444,21.126204],[-86.750975,21.126962],[-86.750763,21.127262],[-86.750073,21.128085],[-86.749513,21.128674],[-86.749485,21.128715],[-86.749459,21.128754],[-86.74902,21.129362],[-86.748336,21.13023],[-86.747979,21.130736],[-86.747726,21.131195],[-86.747685,21.131251],[-86.747519,21.131609],[-86.747454,21.131598],[-86.74724,21.131584],[-86.746597,21.132468],[-86.74657,21.132476],[-86.746543,21.132483],[-86.746135,21.132912],[-86.745877,21.133191],[-86.744224,21.134048],[-86.743675,21.134101],[-86.743459,21.134089],[-86.742861,21.13416],[-86.742428,21.134573],[-86.742176,21.134816],[-86.741702,21.134911],[-86.741507,21.134418],[-86.741384,21.134274],[-86.741143,21.134441],[-86.74104,21.134632],[-86.741021,21.134792],[-86.740599,21.134896],[-86.740766,21.134998],[-86.740738,21.135277],[-86.740641,21.13533],[-86.740697,21.136067],[-86.74054,21.136187],[-86.740716,21.136528],[-86.740788,21.136783],[-86.740771,21.136939],[-86.740688,21.13705],[-86.740647,21.137118],[-86.74068,21.137216],[-86.740676,21.137425],[-86.74061,21.137576],[-86.740718,21.137946],[-86.741008,21.1383],[-86.741081,21.138276],[-86.741066,21.138193],[-86.74147,21.137726],[-86.741756,21.137524],[-86.741991,21.137303],[-86.741963,21.137291],[-86.741945,21.137273],[-86.741992,21.137238],[-86.742013,21.137211],[-86.742011,21.137183],[-86.741814,21.137004],[-86.742818,21.136673],[-86.742845,21.136705],[-86.742909,21.136847],[-86.742972,21.137537],[-86.742979,21.137725],[-86.742868,21.137721],[-86.742877,21.137751],[-86.743093,21.13775],[-86.743092,21.137715],[-86.743016,21.137722],[-86.743015,21.137581],[-86.743046,21.137579],[-86.743047,21.137528],[-86.74301,21.137533],[-86.742943,21.136839],[-86.742889,21.136705],[-86.743063,21.136644],[-86.743122,21.136551],[-86.743221,21.136471],[-86.74314,21.136398],[-86.743347,21.136361],[-86.743539,21.136292],[-86.74355,21.13629],[-86.74356,21.136299],[-86.743568,21.136329],[-86.743676,21.136338],[-86.744458,21.136505],[-86.745264,21.13662],[-86.745908,21.136812],[-86.746202,21.136802],[-86.746224,21.136801],[-86.746246,21.1368],[-86.746487,21.136884],[-86.746118,21.137357],[-86.746123,21.138315],[-86.74609,21.138318],[-86.746102,21.13866],[-86.746186,21.138659],[-86.746194,21.138314],[-86.746161,21.138316],[-86.746175,21.137381],[-86.746554,21.136904],[-86.746962,21.137046],[-86.746978,21.137051],[-86.746994,21.137055],[-86.747775,21.137758],[-86.748702,21.138932],[-86.749159,21.139545],[-86.749407,21.13961],[-86.749471,21.139621],[-86.74948,21.139624],[-86.749489,21.139627],[-86.749852,21.139704],[-86.750127,21.139582],[-86.750388,21.139337],[-86.750687,21.139373],[-86.751067,21.139523],[-86.751225,21.139581],[-86.751235,21.139585],[-86.751245,21.139589],[-86.751431,21.139735],[-86.751813,21.139689],[-86.751993,21.139645],[-86.752003,21.139554],[-86.752039,21.13956],[-86.75206,21.139528],[-86.752037,21.139472],[-86.75213,21.139323],[-86.752228,21.139321],[-86.752239,21.139252],[-86.752203,21.139231],[-86.752435,21.138982],[-86.752472,21.138735],[-86.752756,21.138221],[-86.752918,21.138094],[-86.75304,21.137844],[-86.753056,21.137779],[-86.753248,21.137684],[-86.753491,21.137607],[-86.75394,21.137473],[-86.754124,21.137298],[-86.754188,21.13729],[-86.755987,21.136735],[-86.756022,21.136728],[-86.756029,21.136755],[-86.756057,21.136751],[-86.756222,21.136702],[-86.756232,21.136745],[-86.756255,21.13729],[-86.756284,21.137294],[-86.756261,21.136743],[-86.756264,21.136688],[-86.756463,21.13664],[-86.757128,21.13653],[-86.75856,21.136477],[-86.758834,21.136472],[-86.758997,21.136502],[-86.758932,21.136843],[-86.758952,21.136847],[-86.759022,21.136506],[-86.759449,21.136584],[-86.759395,21.136906],[-86.759421,21.136906],[-86.759479,21.13659],[-86.75996,21.136606],[-86.759947,21.136919],[-86.759978,21.13692],[-86.759987,21.13661],[-86.760893,21.136696],[-86.760733,21.13728],[-86.760654,21.137269],[-86.760632,21.137336],[-86.760872,21.137377],[-86.760875,21.137351],[-86.760763,21.137324],[-86.760848,21.137038],[-86.760955,21.136707],[-86.760991,21.136715],[-86.761461,21.136794],[-86.761683,21.136791],[-86.761969,21.136632],[-86.762021,21.13661],[-86.762074,21.136589],[-86.763171,21.136903],[-86.763159,21.137054],[-86.763607,21.137174],[-86.763978,21.137292],[-86.763783,21.137631],[-86.763741,21.137611],[-86.76373,21.137635],[-86.763767,21.137656],[-86.763729,21.13772],[-86.76376,21.137734],[-86.7638,21.13767],[-86.763836,21.137687],[-86.763852,21.137663],[-86.763812,21.137646],[-86.764002,21.137308],[-86.764285,21.137409],[-86.766091,21.138316],[-86.767072,21.13878],[-86.76739,21.138943],[-86.768038,21.139378],[-86.768314,21.139411],[-86.76854,21.139296],[-86.769091,21.139411],[-86.769109,21.139434],[-86.769133,21.13946],[-86.769239,21.139591],[-86.769952,21.140353],[-86.770251,21.140708],[-86.771078,21.141471],[-86.771164,21.141575],[-86.771174,21.141587],[-86.771184,21.141599],[-86.772258,21.142895],[-86.772661,21.143128],[-86.772981,21.143066],[-86.773287,21.143176],[-86.773325,21.143174],[-86.773363,21.143172],[-86.773756,21.143345],[-86.774917,21.144084],[-86.775151,21.144128],[-86.775156,21.144132],[-86.775372,21.144249],[-86.775564,21.144367],[-86.775833,21.144537],[-86.776262,21.144833],[-86.776736,21.145129],[-86.777085,21.145345],[-86.777139,21.145335],[-86.777107,21.145311],[-86.777115,21.145284],[-86.77714,21.145268],[-86.777185,21.145276],[-86.77721,21.1453],[-86.77721,21.145325],[-86.777283,21.145361],[-86.777395,21.145375],[-86.777512,21.145384],[-86.777829,21.145379],[-86.777944,21.145373],[-86.778012,21.14538],[-86.778113,21.145375],[-86.778283,21.145386],[-86.778466,21.145464],[-86.778869,21.145638],[-86.778991,21.145666],[-86.779121,21.145644],[-86.779284,21.145636],[-86.779691,21.145842],[-86.779926,21.145998],[-86.779996,21.146054],[-86.779977,21.146331],[-86.779983,21.146377],[-86.780025,21.146378],[-86.780053,21.146348],[-86.780079,21.14628],[-86.780097,21.146198],[-86.7801,21.146119],[-86.780102,21.146035],[-86.780554,21.145407],[-86.780571,21.145151],[-86.780576,21.145137],[-86.780581,21.145124],[-86.780602,21.145141],[-86.780677,21.14523],[-86.780823,21.14521],[-86.780911,21.14518],[-86.780941,21.145164],[-86.780964,21.145105],[-86.781268,21.14508],[-86.781418,21.145098],[-86.781628,21.14516],[-86.781769,21.145208],[-86.781849,21.145194],[-86.781879,21.145166],[-86.781909,21.145138],[-86.782056,21.145089],[-86.78251,21.145076],[-86.782639,21.145093],[-86.782769,21.145142],[-86.783135,21.144975],[-86.783991,21.144966],[-86.784226,21.144927],[-86.784456,21.144818],[-86.785142,21.144836],[-86.78516,21.144834],[-86.785177,21.144833],[-86.785224,21.144834],[-86.785729,21.144802],[-86.785981,21.144667],[-86.786305,21.144437],[-86.787216,21.144138],[-86.787317,21.143986],[-86.787387,21.143761],[-86.787429,21.143399],[-86.787461,21.143241],[-86.788106,21.143475],[-86.788062,21.143896],[-86.78799,21.144999],[-86.787997,21.14514],[-86.788023,21.145423],[-86.788025,21.14577],[-86.788006,21.145945],[-86.788044,21.146035],[-86.788169,21.146103],[-86.788358,21.146354],[-86.788514,21.146777],[-86.789048,21.147564],[-86.789145,21.147406],[-86.789845,21.14777],[-86.789923,21.147807],[-86.790537,21.14816],[-86.790657,21.148331],[-86.790746,21.148311],[-86.791285,21.148659],[-86.79119,21.148819],[-86.792098,21.149707],[-86.792128,21.149815],[-86.79226,21.149995],[-86.792276,21.150021],[-86.792295,21.15005],[-86.79256,21.15023],[-86.792823,21.150491],[-86.793011,21.150595],[-86.793223,21.150725],[-86.793439,21.150864],[-86.793626,21.150884],[-86.793808,21.150962],[-86.794635,21.151573],[-86.794867,21.151784],[-86.794909,21.151821],[-86.794929,21.15184],[-86.79495,21.151858],[-86.795069,21.151981],[-86.795279,21.152151],[-86.795447,21.152336],[-86.795599,21.152549],[-86.796054,21.152974],[-86.796463,21.153494],[-86.796693,21.153625],[-86.796976,21.153886],[-86.797227,21.154195],[-86.797296,21.154179],[-86.797481,21.154382],[-86.797563,21.154549],[-86.797979,21.154944],[-86.798077,21.155014],[-86.798177,21.155132],[-86.798326,21.15535],[-86.798796,21.155934],[-86.798894,21.156137],[-86.798872,21.15629],[-86.798663,21.156438],[-86.798764,21.156603],[-86.798994,21.156533],[-86.799456,21.157001],[-86.799503,21.15704],[-86.799546,21.157076],[-86.799974,21.157619],[-86.800247,21.158141],[-86.800324,21.158466],[-86.800448,21.158593],[-86.800507,21.15874],[-86.800784,21.159434],[-86.80124,21.160371],[-86.801492,21.159906],[-86.801328,21.159359],[-86.801303,21.159196],[-86.801262,21.159033],[-86.801023,21.158451],[-86.800627,21.15749],[-86.800866,21.157391],[-86.801056,21.157644],[-86.801368,21.158129],[-86.801566,21.158142],[-86.801676,21.158216],[-86.80166,21.158377],[-86.801953,21.158585],[-86.802123,21.158705],[-86.802262,21.1588],[-86.802363,21.158964],[-86.802366,21.159227],[-86.802445,21.159366],[-86.802667,21.159548],[-86.802869,21.159701],[-86.803063,21.160138],[-86.802787,21.160465],[-86.803164,21.161021],[-86.803403,21.161687],[-86.803328,21.162331],[-86.803362,21.162666],[-86.803446,21.163025],[-86.803483,21.163167],[-86.80357,21.163686],[-86.804037,21.16418],[-86.804089,21.164453],[-86.804,21.164823],[-86.80384,21.165024],[-86.80383,21.166029],[-86.803644,21.166426],[-86.803531,21.16664],[-86.80324,21.166882],[-86.80351,21.167419],[-86.804191,21.169117],[-86.804781,21.170302],[-86.80483,21.171102],[-86.805307,21.172142],[-86.805267,21.17243],[-86.805216,21.173016],[-86.805216,21.173398],[-86.805325,21.173621],[-86.805602,21.174245],[-86.806252,21.176948],[-86.806334,21.177396],[-86.806464,21.177617],[-86.806722,21.178662],[-86.806914,21.179491],[-86.80709,21.180856],[-86.807087,21.18233],[-86.807109,21.183826],[-86.806968,21.185009],[-86.806676,21.189251],[-86.806753,21.189424],[-86.806313,21.19113],[-86.80509,21.194732],[-86.804743,21.198198],[-86.804771,21.20031],[-86.804701,21.201329],[-86.80449,21.202545],[-86.804327,21.204773],[-86.803495,21.207685],[-86.803588,21.207704],[-86.80287,21.209849],[-86.802818,21.210004],[-86.802485,21.210898],[-86.802385,21.211167],[-86.801843,21.211951],[-86.800744,21.213544],[-86.800683,21.214079],[-86.800988,21.214109],[-86.800998,21.21565],[-86.801063,21.2159],[-86.801189,21.216389],[-86.801347,21.216405],[-86.801503,21.217],[-86.801351,21.218334],[-86.801632,21.218848],[-86.801712,21.220511],[-86.801737,21.221837],[-86.801763,21.223465],[-86.801834,21.224529],[-86.801801,21.224956],[-86.801747,21.225647],[-86.801929,21.226851],[-86.802042,21.228149],[-86.802006,21.22951],[-86.801844,21.230933],[-86.801658,21.231772],[-86.801482,21.232568],[-86.801263,21.233246],[-86.801263,21.2333],[-86.800792,21.233239],[-86.800671,21.233752],[-86.800738,21.23377],[-86.801163,21.233851],[-86.801271,21.233863],[-86.801279,21.234482],[-86.801326,21.23588],[-86.801307,21.236375],[-86.801235,21.23825],[-86.801362,21.238416],[-86.801517,21.239134],[-86.801649,21.239896],[-86.801799,21.240355],[-86.802013,21.240937],[-86.802498,21.242151],[-86.803379,21.243391],[-86.804142,21.24477],[-86.804884,21.245985],[-86.805471,21.247133],[-86.806159,21.248632],[-86.80686,21.250324],[-86.807334,21.252851],[-86.81199,21.265493],[-86.812207,21.266274],[-86.813352,21.270392],[-86.81485,21.275995],[-86.815514,21.279194],[-86.815873,21.283258],[-86.815738,21.286801],[-86.815088,21.290179],[-86.813874,21.292398],[-86.81313,21.295884],[-86.812708,21.299429],[-86.812032,21.301632],[-86.811602,21.303033],[-86.810255,21.305872],[-86.808327,21.309855],[-86.807496,21.311455],[-86.80665,21.313083],[-86.804151,21.317378],[-86.802496,21.319687],[-86.801495,21.322004],[-86.799604,21.325109],[-86.798293,21.326187],[-86.797059,21.328577],[-86.796088,21.330616],[-86.795078,21.333009],[-86.793242,21.337602],[-86.791841,21.340746],[-86.791564,21.341367],[-86.7904,21.345641],[-86.789899,21.351134],[-86.789702,21.355749],[-86.790457,21.359027],[-86.790516,21.362846],[-86.790651,21.365986],[-86.790612,21.369751],[-86.790597,21.371154],[-86.791147,21.376421],[-86.79095,21.379413],[-86.790284,21.38258],[-86.790015,21.383859],[-86.789725,21.384606],[-86.789849,21.388742],[-86.791827,21.393524],[-86.793379,21.396889],[-86.793707,21.3976],[-86.794665,21.402172],[-86.795071,21.403555],[-86.794858,21.405197],[-86.795948,21.408082],[-86.796518,21.4085],[-86.796736,21.408618],[-86.796971,21.408529],[-86.797235,21.408212],[-86.797287,21.407755],[-86.797611,21.40735],[-86.797777,21.406999],[-86.797966,21.40684],[-86.797995,21.406406],[-86.798074,21.405828],[-86.798056,21.405311],[-86.798119,21.404942],[-86.797945,21.404703],[-86.798132,21.404219],[-86.799017,21.404034],[-86.799282,21.403174],[-86.799301,21.402555],[-86.799308,21.402374],[-86.799465,21.402313],[-86.799948,21.402381],[-86.799927,21.402106],[-86.799792,21.401976],[-86.799505,21.402],[-86.799178,21.402192],[-86.798737,21.401947],[-86.798809,21.40154],[-86.798679,21.401326],[-86.798566,21.400921],[-86.798336,21.400561],[-86.798541,21.400304],[-86.798631,21.400273],[-86.798295,21.400167],[-86.798083,21.399647],[-86.7978,21.399182],[-86.79825,21.39874],[-86.798064,21.398251],[-86.797765,21.397576],[-86.797697,21.397213],[-86.796945,21.396791],[-86.796849,21.396738],[-86.796837,21.396312],[-86.796289,21.396019],[-86.796365,21.395625],[-86.796214,21.395196],[-86.796431,21.395093],[-86.796548,21.394595],[-86.79767,21.394684],[-86.798256,21.394391],[-86.797822,21.394088],[-86.797438,21.394018],[-86.796928,21.393984],[-86.797049,21.392867],[-86.796986,21.392472],[-86.796719,21.3923],[-86.796045,21.39235],[-86.795425,21.391633],[-86.795634,21.391013],[-86.794885,21.390257],[-86.79439,21.389024],[-86.79438,21.388152],[-86.795319,21.388553],[-86.795876,21.389198],[-86.797452,21.388817],[-86.798301,21.388569],[-86.797935,21.388174],[-86.797349,21.388038],[-86.7966,21.3874],[-86.795969,21.387414],[-86.795735,21.38676],[-86.794598,21.386363],[-86.794784,21.386182],[-86.795054,21.385918],[-86.795278,21.386039],[-86.795913,21.386383],[-86.795999,21.386427],[-86.797717,21.387306],[-86.79922,21.388799],[-86.800267,21.390879],[-86.801249,21.392803],[-86.801973,21.395199],[-86.803134,21.397765],[-86.803898,21.400046],[-86.803994,21.404906],[-86.805177,21.408944],[-86.809835,21.412905],[-86.812022,21.413819],[-86.814177,21.414618],[-86.814741,21.414103],[-86.814665,21.413595],[-86.815303,21.414006],[-86.81839,21.417137],[-86.820148,21.418814],[-86.822068,21.420091],[-86.823605,21.41989],[-86.82418,21.41853],[-86.824508,21.416752],[-86.826859,21.415687],[-86.826704,21.414451],[-86.827921,21.412998],[-86.827718,21.411443],[-86.826485,21.409707],[-86.825392,21.41007],[-86.822853,21.409463],[-86.820158,21.409117],[-86.820757,21.407917],[-86.822087,21.406947],[-86.822615,21.405622],[-86.821274,21.404465],[-86.818387,21.404336],[-86.817586,21.40398],[-86.818119,21.403417],[-86.816341,21.401856],[-86.815773,21.40081],[-86.814037,21.400736],[-86.813667,21.39981],[-86.81142,21.399586],[-86.810057,21.39856],[-86.809993,21.39746],[-86.810826,21.396523],[-86.811798,21.394822],[-86.812382,21.394091],[-86.813039,21.39327],[-86.81178,21.392464],[-86.812794,21.391764],[-86.812247,21.390641],[-86.810408,21.389912],[-86.808525,21.388437],[-86.806672,21.386237],[-86.80573,21.38471],[-86.804677,21.382984],[-86.804535,21.38195],[-86.804356,21.38079],[-86.804147,21.379652],[-86.805304,21.379063],[-86.806146,21.378054],[-86.806189,21.376528],[-86.805687,21.375239],[-86.804034,21.374249],[-86.801099,21.373961],[-86.800492,21.373901],[-86.799206,21.372411],[-86.798556,21.371659],[-86.797145,21.370648],[-86.795293,21.366463],[-86.795122,21.366077],[-86.794874,21.365516],[-86.796424,21.363558],[-86.795321,21.360669],[-86.794189,21.35999],[-86.795519,21.358512],[-86.795284,21.350348],[-86.796587,21.347894],[-86.792544,21.345428],[-86.792161,21.342108],[-86.792523,21.341043],[-86.793653,21.337718],[-86.795228,21.334649],[-86.796844,21.330709],[-86.799964,21.327411],[-86.803367,21.324811],[-86.805055,21.323831],[-86.807592,21.323099],[-86.808351,21.322019],[-86.808776,21.321413],[-86.81097,21.320978],[-86.812322,21.321113],[-86.813279,21.321189],[-86.81473,21.319921],[-86.815055,21.319539],[-86.816537,21.319066],[-86.816736,21.319037],[-86.817539,21.318921],[-86.819307,21.317372],[-86.820168,21.316874],[-86.820825,21.315866],[-86.822035,21.314066],[-86.822011,21.313414],[-86.821819,21.312425],[-86.82246,21.310524],[-86.822405,21.308523],[-86.822256,21.307886],[-86.822051,21.307038],[-86.822271,21.306514],[-86.822256,21.305938],[-86.822283,21.305338],[-86.822613,21.304919],[-86.823265,21.303421],[-86.823828,21.302485],[-86.824366,21.301591],[-86.825355,21.300404],[-86.825424,21.300411],[-86.825531,21.300421],[-86.826306,21.299244],[-86.826521,21.298234],[-86.827263,21.297447],[-86.827182,21.296693],[-86.827449,21.296326],[-86.827355,21.295515],[-86.827155,21.294984],[-86.826782,21.295098],[-86.826626,21.296084],[-86.826197,21.297124],[-86.825506,21.297722],[-86.825226,21.29607],[-86.824655,21.294638],[-86.82437,21.294006],[-86.825377,21.292586],[-86.82522,21.291903],[-86.824982,21.290862],[-86.824648,21.289505],[-86.823033,21.289983],[-86.822423,21.288918],[-86.822307,21.287354],[-86.820834,21.286157],[-86.819776,21.285595],[-86.819605,21.284528],[-86.819494,21.282919],[-86.820708,21.282538],[-86.820039,21.281645],[-86.820099,21.281625],[-86.821514,21.281129],[-86.823173,21.281673],[-86.824161,21.280982],[-86.824514,21.279693],[-86.824565,21.279506],[-86.826917,21.278983],[-86.827895,21.27883],[-86.830658,21.27693],[-86.831098,21.273044],[-86.830469,21.270666],[-86.830441,21.270036],[-86.830384,21.268764],[-86.828345,21.26736],[-86.827882,21.267041],[-86.828002,21.266899],[-86.829959,21.264582],[-86.831303,21.261979],[-86.831098,21.260541],[-86.830969,21.25963],[-86.830094,21.257438],[-86.831563,21.253726],[-86.829478,21.253415],[-86.825891,21.25288],[-86.823159,21.251448],[-86.822954,21.249616],[-86.822333,21.248504],[-86.82171,21.24739],[-86.820243,21.24577],[-86.82055,21.245342],[-86.822713,21.245823],[-86.822898,21.244875],[-86.822659,21.24403],[-86.823463,21.243989],[-86.82399,21.24425],[-86.825905,21.245199],[-86.828673,21.246948],[-86.829811,21.247834],[-86.831514,21.248511],[-86.831776,21.247788],[-86.831555,21.247235],[-86.832579,21.247071],[-86.834073,21.24664],[-86.83521,21.247526],[-86.836969,21.247484],[-86.839748,21.249596],[-86.842704,21.251577],[-86.843182,21.251897],[-86.844155,21.250593],[-86.844469,21.25147],[-86.8485,21.251873],[-86.850916,21.255862],[-86.85184,21.259553],[-86.853601,21.261999],[-86.854107,21.262787],[-86.854259,21.265097],[-86.853699,21.266853],[-86.854893,21.270668],[-86.855867,21.271907],[-86.855133,21.274056],[-86.853818,21.275417],[-86.853458,21.276323],[-86.856017,21.280153],[-86.858777,21.283018],[-86.861425,21.287226],[-86.86122,21.289398],[-86.86119,21.290668],[-86.861162,21.292024],[-86.859733,21.293381],[-86.858795,21.294047],[-86.858867,21.295623],[-86.860158,21.295927],[-86.860918,21.297279],[-86.861301,21.297434],[-86.861939,21.297446],[-86.862527,21.298313],[-86.863213,21.299092],[-86.863331,21.300734],[-86.863953,21.302218],[-86.86362,21.303206],[-86.864273,21.303872],[-86.864096,21.304455],[-86.864413,21.305146],[-86.864109,21.30641],[-86.863883,21.308847],[-86.863687,21.310041],[-86.864072,21.311108],[-86.864413,21.311921],[-86.864462,21.313452],[-86.864134,21.315044],[-86.863437,21.316408],[-86.862514,21.317148],[-86.861357,21.317874],[-86.861538,21.318134],[-86.861069,21.318781],[-86.861497,21.320026],[-86.861778,21.32114],[-86.861808,21.323058],[-86.864046,21.326919],[-86.866636,21.330991],[-86.868041,21.333861],[-86.868755,21.335313],[-86.86987,21.337579],[-86.871557,21.341028],[-86.874479,21.344547],[-86.874419,21.346656],[-86.874425,21.346701],[-86.87455,21.347677],[-86.875911,21.350057],[-86.875615,21.353222],[-86.876965,21.356122],[-86.877224,21.356678],[-86.878154,21.357988],[-86.879184,21.36005],[-86.87941,21.361708],[-86.87978,21.363772],[-86.880112,21.365057],[-86.879707,21.366583],[-86.880218,21.369361],[-86.880265,21.369615],[-86.882038,21.373813],[-86.883103,21.376499],[-86.883455,21.379009],[-86.883497,21.37918],[-86.884384,21.382794],[-86.885461,21.386206],[-86.885829,21.388212],[-86.885397,21.388843],[-86.885382,21.39014],[-86.885379,21.390417],[-86.884767,21.391516],[-86.884571,21.392038],[-86.885339,21.393016],[-86.886481,21.394625],[-86.886969,21.396416],[-86.88701,21.398025],[-86.886424,21.399463],[-86.886264,21.400435],[-86.886153,21.40111],[-86.886736,21.403546],[-86.888258,21.405865],[-86.890504,21.407571],[-86.891413,21.409446],[-86.892334,21.411347],[-86.896709,21.41041],[-86.898982,21.417824],[-86.899546,21.418353],[-86.907159,21.425496],[-86.907553,21.427559],[-86.908424,21.432125],[-86.912484,21.436691],[-86.914125,21.435655],[-86.918536,21.43847],[-86.920116,21.442849],[-86.920662,21.446668],[-86.923093,21.447821],[-86.925519,21.452283],[-86.925998,21.456153],[-86.92969,21.456403],[-86.932986,21.461807],[-86.93389,21.463693],[-86.935354,21.467765],[-86.936671,21.470246],[-86.939248,21.472575],[-86.938756,21.473799],[-86.94058,21.474959],[-86.94084,21.475538],[-86.942042,21.475104],[-86.943017,21.476693],[-86.944351,21.479812],[-86.94835,21.483543],[-86.949765,21.485284],[-86.952455,21.488595],[-86.952505,21.489954],[-86.951116,21.490151],[-86.948608,21.491848],[-86.947572,21.495247],[-86.947937,21.499394],[-86.949545,21.501998],[-86.950498,21.505147],[-86.95146,21.508276],[-86.951654,21.510442],[-86.952319,21.514687],[-86.953507,21.515778],[-86.955318,21.51671],[-86.955837,21.518696],[-86.957741,21.520894],[-86.958927,21.522299],[-86.959457,21.523694],[-86.959662,21.524232],[-86.962663,21.527732],[-86.965445,21.531682],[-86.967374,21.534269],[-86.970046,21.536511],[-86.972069,21.538265],[-86.97332,21.53999],[-86.974682,21.542229],[-86.975131,21.543218],[-86.975392,21.544571],[-86.975538,21.546653],[-86.975927,21.547602],[-86.976822,21.548511],[-86.977327,21.549008],[-86.977797,21.548653],[-86.977802,21.54802],[-86.978017,21.547717],[-86.978637,21.547293],[-86.978786,21.547191],[-86.979584,21.546853],[-86.980911,21.545918],[-86.981882,21.544802],[-86.982489,21.543951],[-86.983558,21.543994],[-86.983366,21.544472],[-86.98328,21.545359],[-86.983646,21.545894],[-86.984,21.546544],[-86.984095,21.547118],[-86.983615,21.54744],[-86.983077,21.547594],[-86.982613,21.547624],[-86.982206,21.547672],[-86.981784,21.547614],[-86.98149,21.547585],[-86.981163,21.547692],[-86.980728,21.547876],[-86.980437,21.54818],[-86.980311,21.548821],[-86.980747,21.549383],[-86.981693,21.550202],[-86.982463,21.550866],[-86.983001,21.551787],[-86.983367,21.552373],[-86.983714,21.553406],[-86.984721,21.554978],[-86.985681,21.556303],[-86.9868,21.557432],[-86.987593,21.558537],[-86.98826,21.559512],[-86.989112,21.560644],[-86.989875,21.56175],[-86.990833,21.562817],[-86.991396,21.563541],[-86.991971,21.56305],[-86.992401,21.562641],[-86.992789,21.562235],[-86.992826,21.561782],[-86.992944,21.561257],[-86.993081,21.560811],[-86.993101,21.560579],[-86.993073,21.560459],[-86.992855,21.560325],[-86.992522,21.560229],[-86.992271,21.559922],[-86.991614,21.559598],[-86.990889,21.559366],[-86.99017,21.559276],[-86.989844,21.558742],[-86.989246,21.558302],[-86.988704,21.557874],[-86.988455,21.557547],[-86.988266,21.557229],[-86.988142,21.55695],[-86.988071,21.556531],[-86.988046,21.556218],[-86.988066,21.55583],[-86.988099,21.555533],[-86.988052,21.555088],[-86.987826,21.554865],[-86.987523,21.554739],[-86.987302,21.554671],[-86.987091,21.554608],[-86.986838,21.55462],[-86.986583,21.554645],[-86.986395,21.554676],[-86.986256,21.554795],[-86.986158,21.555056],[-86.986123,21.555365],[-86.985987,21.555565],[-86.985792,21.555589],[-86.985653,21.555421],[-86.985635,21.5551],[-86.985872,21.554756],[-86.986175,21.554123],[-86.986196,21.5535],[-86.98615,21.552876],[-86.985878,21.55261],[-86.985534,21.552368],[-86.985233,21.552029],[-86.984992,21.551765],[-86.984864,21.551359],[-86.984808,21.551046],[-86.984983,21.550977],[-86.985141,21.55104],[-86.985324,21.551195],[-86.985483,21.55133],[-86.985876,21.551658],[-86.986155,21.551844],[-86.98654,21.551912],[-86.986901,21.551002],[-86.987052,21.550955],[-86.987207,21.550969],[-86.987364,21.551774],[-86.98753,21.55217],[-86.987842,21.553005],[-86.988432,21.553381],[-86.988872,21.553652],[-86.989335,21.554059],[-86.989822,21.55408],[-86.990101,21.553394],[-86.990221,21.552367],[-86.989923,21.55188],[-86.989552,21.551737],[-86.989741,21.551277],[-86.990013,21.550777],[-86.990355,21.550544],[-86.990729,21.550127],[-86.990878,21.549893],[-86.991132,21.54975],[-86.991436,21.549677],[-86.991801,21.549606],[-86.992258,21.549566],[-86.992915,21.549512],[-86.993183,21.549483],[-86.993414,21.549487],[-86.993638,21.549433],[-86.993852,21.549333],[-86.994189,21.549352],[-86.994477,21.549387],[-86.994835,21.54948],[-86.995064,21.549599],[-86.995478,21.549628],[-86.995767,21.549585],[-86.996002,21.54937],[-86.99609,21.549181],[-86.996381,21.549054],[-86.996678,21.548979],[-86.99701,21.548888],[-86.997301,21.548771],[-86.997421,21.54817],[-86.997435,21.546576],[-86.997749,21.546471],[-86.997749,21.545968],[-86.997211,21.545779],[-86.997285,21.54525],[-86.997373,21.544957],[-86.997547,21.544751],[-86.997592,21.544374],[-86.997671,21.544011],[-86.997735,21.54369],[-86.997744,21.543289],[-86.997682,21.542885],[-86.997484,21.542744],[-86.997704,21.541815],[-86.997659,21.541354],[-86.997099,21.541186],[-86.996561,21.541333],[-86.996516,21.541773],[-86.996853,21.542319],[-86.995901,21.542265],[-86.995669,21.542323],[-86.995057,21.542381],[-86.994818,21.542427],[-86.994584,21.542427],[-86.994335,21.542345],[-86.994109,21.54225],[-86.993886,21.542147],[-86.99375,21.542054],[-86.993618,21.542061],[-86.993486,21.541949],[-86.993396,21.541895],[-86.993313,21.54187],[-86.993232,21.541879],[-86.993148,21.541856],[-86.99273,21.541866],[-86.991937,21.541961],[-86.991556,21.542296],[-86.991377,21.542716],[-86.990906,21.54282],[-86.990682,21.543219],[-86.990055,21.543282],[-86.98921,21.542907],[-86.988771,21.542682],[-86.988382,21.542522],[-86.988007,21.54225],[-86.987667,21.54218],[-86.987341,21.541986],[-86.986946,21.541388],[-86.986586,21.541364],[-86.986267,21.541314],[-86.985771,21.540972],[-86.985678,21.540885],[-86.985374,21.540796],[-86.985099,21.540714],[-86.984963,21.54068],[-86.984826,21.54062],[-86.984716,21.540554],[-86.984693,21.540476],[-86.984672,21.540364],[-86.984712,21.540124],[-86.984769,21.539849],[-86.984646,21.539667],[-86.984501,21.539457],[-86.984358,21.539334],[-86.984126,21.539222],[-86.983896,21.539161],[-86.983575,21.538965],[-86.983302,21.538991],[-86.983063,21.539014],[-86.982637,21.538957],[-86.982231,21.539008],[-86.981912,21.53916],[-86.98144,21.539396],[-86.976959,21.536361],[-86.971254,21.532114],[-86.970204,21.531333],[-86.969728,21.529594],[-86.9696,21.529128],[-86.97188,21.528041],[-86.972307,21.52678],[-86.974944,21.52456],[-86.976517,21.523773],[-86.977411,21.52106],[-86.977874,21.518825],[-86.97739,21.51605],[-86.975457,21.514373],[-86.974609,21.512793],[-86.974361,21.512331],[-86.974187,21.510579],[-86.974827,21.510542],[-86.975572,21.511474],[-86.976514,21.512653],[-86.976726,21.513532],[-86.977815,21.513842],[-86.978806,21.514954],[-86.979895,21.516561],[-86.980622,21.517673],[-86.981579,21.518538],[-86.982107,21.519372],[-86.981546,21.520485],[-86.98214,21.523389],[-86.981942,21.524223],[-86.981677,21.524872],[-86.982965,21.52549],[-86.98455,21.525336],[-86.985376,21.525861],[-86.985772,21.525181],[-86.986598,21.525058],[-86.987688,21.525336],[-86.988255,21.525876],[-86.988833,21.525963],[-86.989313,21.526462],[-86.98998,21.527286],[-86.99046,21.528434],[-86.991824,21.529641],[-86.993078,21.53044],[-86.994278,21.531563],[-86.995745,21.532611],[-86.996438,21.533784],[-86.996358,21.534358],[-86.996625,21.535281],[-86.998012,21.535356],[-86.999355,21.535914],[-86.999701,21.537037],[-86.999755,21.537836],[-87.000315,21.538709],[-87.000902,21.539358],[-87.000822,21.539932],[-87.000635,21.540481],[-87.001169,21.540631],[-87.001862,21.540756],[-87.002342,21.541554],[-87.002262,21.542278],[-87.001595,21.542777],[-87.001169,21.543501],[-87.001115,21.544449],[-87.001009,21.545347],[-87.001622,21.545572],[-87.002396,21.545447],[-87.002742,21.544773],[-87.002769,21.543875],[-87.003303,21.543376],[-87.00397,21.54405],[-87.004139,21.545682],[-87.004112,21.54703],[-87.004832,21.547504],[-87.005046,21.548053],[-87.005099,21.549126],[-87.005499,21.550948],[-87.005745,21.552237],[-87.007058,21.551058],[-87.007968,21.552307],[-87.008396,21.553764],[-87.008747,21.554602],[-87.009877,21.55493],[-87.009877,21.556278],[-87.010305,21.557443],[-87.011006,21.557662],[-87.011551,21.556642],[-87.012291,21.556897],[-87.013031,21.556787],[-87.01381,21.556933],[-87.015641,21.557479],[-87.015758,21.558317],[-87.016654,21.558426],[-87.017616,21.559038],[-87.018486,21.558352],[-87.020732,21.558481],[-87.021327,21.55758],[-87.021556,21.557066],[-87.023206,21.557109],[-87.023985,21.557537],[-87.023847,21.558309],[-87.025039,21.558523],[-87.025314,21.55968],[-87.025818,21.559766],[-87.025955,21.557494],[-87.02733,21.557794],[-87.027788,21.558394],[-87.028384,21.55968],[-87.028155,21.560923],[-87.028751,21.561694],[-87.029393,21.561908],[-87.029667,21.560965],[-87.029026,21.560151],[-87.029346,21.559594],[-87.030263,21.559808],[-87.030675,21.558693],[-87.0315,21.558736],[-87.031912,21.55985],[-87.032691,21.560965],[-87.034284,21.561343],[-87.034283,21.560307],[-87.035811,21.560378],[-87.036765,21.560663],[-87.037568,21.561985],[-87.03837,21.563235],[-87.038217,21.564271],[-87.040127,21.564556],[-87.040814,21.565234],[-87.041655,21.565877],[-87.04276,21.564757],[-87.043191,21.564528],[-87.04401,21.564092],[-87.044582,21.563068],[-87.045502,21.562799],[-87.046916,21.563072],[-87.048478,21.563742],[-87.049536,21.56454],[-87.050349,21.564904],[-87.051102,21.565898],[-87.052448,21.566655],[-87.053014,21.566745],[-87.053278,21.567205],[-87.055126,21.567629],[-87.055943,21.567706],[-87.056895,21.567806],[-87.057713,21.568261],[-87.058181,21.568479],[-87.059407,21.568606],[-87.059919,21.569058],[-87.060643,21.569368],[-87.061508,21.569794],[-87.062645,21.569776],[-87.063614,21.569721],[-87.064524,21.570069],[-87.06598,21.570452],[-87.067016,21.570914],[-87.068596,21.571601],[-87.068806,21.571913],[-87.069725,21.572378],[-87.070483,21.573175],[-87.071477,21.573879],[-87.072743,21.574277],[-87.073868,21.574987],[-87.075206,21.576202],[-87.075324,21.576956],[-87.07583,21.577038],[-87.076494,21.577146],[-87.077398,21.577725],[-87.078697,21.578419],[-87.078219,21.579878],[-87.077583,21.580769],[-87.075976,21.580732],[-87.07525,21.582221],[-87.076552,21.583101],[-87.07791,21.583375],[-87.079097,21.584002],[-87.080269,21.584092],[-87.08275,21.584795],[-87.083164,21.585755],[-87.084126,21.586627],[-87.083719,21.588371],[-87.085747,21.589414],[-87.087459,21.589236],[-87.089596,21.589521],[-87.090845,21.589337],[-87.092449,21.589264],[-87.093472,21.588366],[-87.094691,21.588301],[-87.09428,21.586049],[-87.09471,21.585735],[-87.094225,21.584647],[-87.093848,21.583986],[-87.095081,21.583264],[-87.096272,21.583246],[-87.097397,21.58285],[-87.098676,21.583009],[-87.09923,21.583534],[-87.100625,21.584276],[-87.10152,21.58497],[-87.103143,21.583343],[-87.103179,21.582371],[-87.103395,21.581079],[-87.103988,21.579958],[-87.104585,21.578804],[-87.105282,21.578367],[-87.106515,21.577427],[-87.106933,21.576256],[-87.106282,21.574341],[-87.106584,21.574104],[-87.106923,21.573836],[-87.106551,21.573394],[-87.107043,21.573094],[-87.107792,21.573388],[-87.107976,21.572409],[-87.108772,21.571518],[-87.110203,21.570475],[-87.111282,21.570372],[-87.11185,21.571194],[-87.1118,21.571619],[-87.11185,21.571949],[-87.112355,21.571948],[-87.112809,21.571571],[-87.112657,21.570769],[-87.112202,21.570439],[-87.112101,21.570203],[-87.112051,21.570014],[-87.112403,21.569212],[-87.112706,21.568976],[-87.113362,21.568834],[-87.113563,21.568409],[-87.113816,21.56822],[-87.113986,21.567759],[-87.114339,21.567664],[-87.114389,21.567522],[-87.11444,21.567145],[-87.114742,21.567003],[-87.115045,21.566767],[-87.115549,21.566059],[-87.115852,21.5662],[-87.115902,21.56587],[-87.116002,21.565257],[-87.116507,21.564643],[-87.117415,21.564312],[-87.117566,21.563982],[-87.118121,21.56384],[-87.118322,21.563556],[-87.118221,21.56299],[-87.118473,21.562754],[-87.118725,21.562377],[-87.118876,21.561905],[-87.11928,21.561904],[-87.119734,21.561999],[-87.120036,21.561527],[-87.120137,21.561243],[-87.120339,21.561007],[-87.120843,21.560913],[-87.121348,21.560959],[-87.121802,21.560487],[-87.121751,21.560346],[-87.12165,21.560016],[-87.121649,21.559638],[-87.12175,21.559402],[-87.122053,21.559119],[-87.122355,21.558977],[-87.122759,21.559165],[-87.123012,21.559496],[-87.123768,21.559165],[-87.124071,21.558787],[-87.124676,21.558409],[-87.124726,21.558032],[-87.125382,21.55789],[-87.125432,21.557607],[-87.125937,21.557276],[-87.125987,21.556898],[-87.126491,21.556662],[-87.126844,21.556332],[-87.127197,21.555954],[-87.127499,21.555718],[-87.127802,21.55534],[-87.128205,21.555293],[-87.128508,21.554821],[-87.128709,21.554537],[-87.128608,21.554066],[-87.128255,21.554019],[-87.12775,21.553878],[-87.127447,21.553548],[-87.127295,21.553217],[-87.127093,21.552699],[-87.126487,21.552557],[-87.126336,21.552463],[-87.126184,21.552227],[-87.125932,21.551756],[-87.125629,21.551615],[-87.125225,21.55152],[-87.125074,21.551237],[-87.124418,21.551238],[-87.123863,21.551191],[-87.122853,21.551098],[-87.122399,21.551004],[-87.121541,21.550957],[-87.120885,21.550816],[-87.12028,21.550864],[-87.119573,21.550864],[-87.118817,21.550865],[-87.118262,21.550912],[-87.117606,21.551054],[-87.117051,21.551055],[-87.116294,21.551055],[-87.115789,21.551008],[-87.115234,21.550961],[-87.114326,21.550396],[-87.113165,21.549783],[-87.112206,21.549218],[-87.11165,21.54903],[-87.110893,21.548841],[-87.110288,21.548606],[-87.109632,21.548276],[-87.109177,21.548229],[-87.10842,21.547947],[-87.10837,21.548088],[-87.107916,21.548088],[-87.107058,21.548183],[-87.106301,21.547901],[-87.106099,21.547618],[-87.106049,21.547335],[-87.105847,21.547099],[-87.105342,21.547099],[-87.104888,21.547052],[-87.104686,21.546864],[-87.104181,21.546439],[-87.103575,21.546157],[-87.103323,21.545827],[-87.103171,21.545308],[-87.103171,21.54493],[-87.10307,21.544742],[-87.102918,21.544223],[-87.102766,21.543751],[-87.102665,21.543421],[-87.102968,21.543279],[-87.103069,21.542949],[-87.102816,21.542524],[-87.102513,21.5421],[-87.102513,21.541675],[-87.102563,21.541439],[-87.102966,21.540967],[-87.103117,21.540637],[-87.102915,21.540165],[-87.102814,21.539835],[-87.102595,21.539413],[-87.102343,21.539177],[-87.101485,21.5388],[-87.101282,21.538234],[-87.101131,21.537573],[-87.10108,21.537102],[-87.101534,21.53663],[-87.101584,21.535875],[-87.100978,21.53512],[-87.100523,21.53479],[-87.099867,21.533989],[-87.099665,21.533611],[-87.099261,21.532904],[-87.098857,21.532196],[-87.09931,21.531819],[-87.099361,21.531252],[-87.09936,21.530781],[-87.099915,21.529931],[-87.099914,21.529365],[-87.100015,21.528704],[-87.100115,21.52828],[-87.100418,21.527808],[-87.100771,21.527571],[-87.101275,21.527665],[-87.101729,21.527524],[-87.10193,21.526816],[-87.102182,21.526344],[-87.102636,21.525919],[-87.103594,21.525824],[-87.104099,21.525777],[-87.104704,21.525587],[-87.105007,21.525257],[-87.105461,21.525304],[-87.106016,21.525351],[-87.10647,21.525114],[-87.106672,21.525492],[-87.106874,21.526058],[-87.107429,21.526105],[-87.107782,21.525869],[-87.108286,21.52601],[-87.108791,21.525962],[-87.108639,21.525207],[-87.108386,21.525019],[-87.107882,21.525019],[-87.10768,21.524406],[-87.10773,21.523793],[-87.10783,21.523368],[-87.108133,21.522896],[-87.109242,21.522565],[-87.109292,21.52181],[-87.108939,21.521244],[-87.108636,21.520914],[-87.108333,21.520584],[-87.10808,21.52049],[-87.108232,21.520159],[-87.10813,21.519593],[-87.108483,21.519216],[-87.109088,21.519215],[-87.109341,21.519592],[-87.109795,21.520064],[-87.110149,21.520347],[-87.110804,21.520063],[-87.110955,21.519167],[-87.110752,21.518271],[-87.110802,21.517468],[-87.110852,21.516478],[-87.111053,21.515251],[-87.111052,21.51426],[-87.110446,21.512703],[-87.10994,21.51143],[-87.109939,21.510581],[-87.10893,21.509307],[-87.108627,21.508836],[-87.108223,21.508364],[-87.107516,21.507751],[-87.107011,21.507138],[-87.106758,21.505912],[-87.107161,21.505298],[-87.107666,21.505298],[-87.108725,21.505769],[-87.10928,21.505957],[-87.109683,21.505532],[-87.109482,21.505297],[-87.109018,21.504922],[-87.108564,21.504781],[-87.108211,21.504356],[-87.107907,21.503554],[-87.107907,21.502941],[-87.108159,21.502658],[-87.108411,21.501997],[-87.108814,21.501478],[-87.109015,21.501006],[-87.108813,21.50044],[-87.108409,21.50011],[-87.108267,21.499737],[-87.108324,21.499361],[-87.108592,21.498722],[-87.10909,21.49846],[-87.109726,21.49872],[-87.110492,21.498304],[-87.110366,21.497474],[-87.109696,21.49697],[-87.109446,21.496776],[-87.109227,21.496731],[-87.108927,21.496653],[-87.108775,21.496134],[-87.108775,21.495615],[-87.108875,21.495191],[-87.109424,21.495054],[-87.109453,21.494426],[-87.109625,21.494088],[-87.109832,21.493728],[-87.110404,21.493809],[-87.110526,21.493446],[-87.110194,21.493179],[-87.109883,21.492395],[-87.109831,21.492265],[-87.10992,21.492098],[-87.109982,21.491982],[-87.110689,21.491934],[-87.110739,21.491368],[-87.110436,21.490991],[-87.11009,21.490695],[-87.10983,21.490472],[-87.109412,21.490244],[-87.109678,21.48934],[-87.109627,21.488679],[-87.110078,21.487571],[-87.109876,21.487176],[-87.110079,21.48665],[-87.1099,21.485939],[-87.11033,21.484999],[-87.110733,21.484385],[-87.110875,21.484208],[-87.111105,21.483921],[-87.111187,21.483819],[-87.11176,21.483513],[-87.112249,21.483465],[-87.112851,21.484006],[-87.112977,21.484124],[-87.113154,21.484289],[-87.113294,21.484158],[-87.113305,21.484148],[-87.113507,21.483959],[-87.113456,21.48344],[-87.113078,21.482519],[-87.112699,21.482214],[-87.112612,21.481987],[-87.11287,21.481345],[-87.112397,21.480282],[-87.111771,21.479709],[-87.11209,21.479467],[-87.111927,21.479178],[-87.111516,21.479153],[-87.1113,21.478946],[-87.111128,21.478782],[-87.110981,21.478204],[-87.110998,21.478161],[-87.111113,21.477869],[-87.110653,21.477266],[-87.110577,21.477167],[-87.110598,21.477125],[-87.110693,21.476946],[-87.110854,21.476759],[-87.11103,21.476694],[-87.111181,21.476506],[-87.111585,21.476364],[-87.111887,21.476364],[-87.112341,21.47608],[-87.112391,21.475892],[-87.112386,21.475566],[-87.112542,21.474901],[-87.112541,21.474759],[-87.11244,21.474335],[-87.11244,21.473816],[-87.112238,21.473108],[-87.111985,21.472825],[-87.111834,21.472448],[-87.111759,21.472063],[-87.111732,21.471929],[-87.111631,21.471551],[-87.111732,21.471221],[-87.112003,21.471157],[-87.112135,21.471126],[-87.11228,21.470889],[-87.112337,21.470796],[-87.112515,21.470796],[-87.11269,21.470796],[-87.112992,21.470984],[-87.113396,21.470937],[-87.113613,21.470611],[-87.114067,21.470328],[-87.114269,21.470186],[-87.114773,21.46995],[-87.1149,21.469856],[-87.11534,21.469533],[-87.115478,21.46943],[-87.115854,21.468852],[-87.115571,21.4681],[-87.115271,21.467775],[-87.115307,21.467464],[-87.115325,21.467307],[-87.115599,21.467129],[-87.116248,21.467079],[-87.11637,21.46707],[-87.116389,21.467076],[-87.11704,21.467259],[-87.117492,21.467639],[-87.117545,21.467683],[-87.117578,21.467683],[-87.117998,21.467683],[-87.118705,21.467966],[-87.119007,21.468248],[-87.118947,21.468479],[-87.118905,21.468642],[-87.118884,21.46883],[-87.118756,21.468909],[-87.118352,21.469004],[-87.118403,21.469334],[-87.118669,21.469867],[-87.118789,21.470251],[-87.11911,21.470702],[-87.119715,21.47056],[-87.120017,21.470088],[-87.119967,21.469758],[-87.120017,21.469144],[-87.120269,21.469002],[-87.120471,21.469144],[-87.120521,21.469427],[-87.120948,21.469623],[-87.121488,21.469799],[-87.121984,21.469615],[-87.121782,21.469049],[-87.121976,21.468738],[-87.122032,21.468505],[-87.122235,21.468199],[-87.122335,21.467774],[-87.122335,21.467444],[-87.122817,21.467315],[-87.123475,21.467169],[-87.123898,21.466782],[-87.124152,21.466213],[-87.124255,21.465927],[-87.124393,21.465607],[-87.124141,21.464849],[-87.124167,21.46459],[-87.124198,21.464281],[-87.124436,21.464236],[-87.124895,21.464148],[-87.125271,21.46388],[-87.125408,21.463384],[-87.12571,21.463148],[-87.125803,21.462991],[-87.125962,21.462723],[-87.126086,21.462734],[-87.126576,21.462775],[-87.127011,21.462894],[-87.127351,21.462126],[-87.127516,21.461742],[-87.127875,21.461539],[-87.128118,21.461277],[-87.128326,21.461095],[-87.128422,21.461011],[-87.128734,21.460881],[-87.128762,21.460899],[-87.129036,21.46107],[-87.129389,21.461305],[-87.129793,21.46121],[-87.129944,21.460833],[-87.130196,21.460644],[-87.130498,21.460549],[-87.1307,21.460785],[-87.131053,21.460502],[-87.131103,21.460171],[-87.131114,21.460164],[-87.131758,21.459746],[-87.132207,21.45967],[-87.132996,21.459536],[-87.133151,21.45951],[-87.133962,21.459438],[-87.134496,21.45949],[-87.135187,21.459558],[-87.135382,21.459565],[-87.136283,21.4596],[-87.137658,21.460025],[-87.137683,21.46005],[-87.138213,21.46059],[-87.139399,21.460267],[-87.139776,21.460164],[-87.140633,21.460164],[-87.141894,21.460351],[-87.142234,21.460922],[-87.142904,21.462049],[-87.143055,21.461955],[-87.143963,21.461765],[-87.145022,21.461906],[-87.145728,21.462235],[-87.146485,21.462376],[-87.146741,21.462445],[-87.146764,21.462451],[-87.14734,21.462743],[-87.148175,21.463541],[-87.148569,21.464126],[-87.148947,21.464583],[-87.149054,21.464641],[-87.149552,21.464912],[-87.150258,21.464676],[-87.15051,21.464393],[-87.151064,21.464109],[-87.151367,21.464062],[-87.151581,21.46378],[-87.151619,21.463731],[-87.151907,21.463669],[-87.152268,21.463591],[-87.153337,21.463643],[-87.153924,21.463759],[-87.154499,21.463911],[-87.155418,21.463816],[-87.15596,21.463846],[-87.156762,21.463679],[-87.15777,21.463442],[-87.158375,21.463253],[-87.158576,21.462828],[-87.158828,21.462356],[-87.15913,21.462073],[-87.159382,21.461506],[-87.159886,21.461081],[-87.160087,21.460845],[-87.160641,21.460326],[-87.161347,21.460183],[-87.161346,21.45957],[-87.161296,21.459381],[-87.161598,21.458862],[-87.162152,21.458201],[-87.162771,21.457946],[-87.162907,21.457304],[-87.163007,21.456785],[-87.163158,21.456313],[-87.16351,21.455888],[-87.163812,21.45518],[-87.164165,21.454896],[-87.164668,21.454188],[-87.164913,21.453718],[-87.165323,21.453338],[-87.165272,21.452819],[-87.165322,21.45234],[-87.165372,21.451923],[-87.165698,21.451771],[-87.165778,21.451292],[-87.165805,21.45097],[-87.166076,21.450601],[-87.166366,21.450424],[-87.166485,21.450157],[-87.166527,21.450062],[-87.166611,21.449713],[-87.167653,21.449253],[-87.168293,21.448806],[-87.169006,21.448628],[-87.169102,21.448604],[-87.169901,21.448458],[-87.170427,21.448537],[-87.170864,21.448426],[-87.171014,21.448048],[-87.171193,21.447511],[-87.171267,21.447421],[-87.171568,21.447057],[-87.171769,21.446774],[-87.171958,21.446609],[-87.17259,21.446366],[-87.17313,21.44597],[-87.173533,21.445687],[-87.174195,21.445311],[-87.174657,21.445005],[-87.175022,21.444853],[-87.175413,21.44474],[-87.175901,21.444552],[-87.176501,21.444503],[-87.176809,21.444409],[-87.176959,21.444173],[-87.177364,21.44402],[-87.178108,21.443787],[-87.17833,21.443729],[-87.178623,21.443653],[-87.179228,21.443558],[-87.179832,21.443274],[-87.18026,21.443292],[-87.180606,21.443269],[-87.180825,21.443294],[-87.181021,21.443104],[-87.181042,21.443084],[-87.181133,21.443094],[-87.181314,21.443114],[-87.181665,21.443043],[-87.18193,21.44299],[-87.18238,21.442891],[-87.182706,21.442846],[-87.18321,21.442798],[-87.183771,21.442843],[-87.184511,21.442903],[-87.185083,21.443076],[-87.185529,21.442937],[-87.186033,21.442512],[-87.186234,21.442182],[-87.186334,21.441615],[-87.186334,21.441049],[-87.18627,21.440517],[-87.188375,21.439707],[-87.188929,21.439895],[-87.189562,21.439894],[-87.189585,21.439894],[-87.19014,21.439988],[-87.190744,21.439893],[-87.191551,21.440033],[-87.191741,21.440145],[-87.192394,21.440321],[-87.193014,21.440315],[-87.193554,21.440471],[-87.19384,21.440598],[-87.194132,21.440642],[-87.194476,21.440691],[-87.194987,21.440846],[-87.195183,21.440879],[-87.195788,21.440972],[-87.196756,21.441261],[-87.197094,21.441419],[-87.19741,21.441578],[-87.197704,21.441677],[-87.198109,21.441843],[-87.198387,21.442025],[-87.198515,21.442109],[-87.198882,21.442145],[-87.198918,21.442151],[-87.199168,21.442431],[-87.199622,21.442713],[-87.200177,21.443034],[-87.200478,21.443188],[-87.200716,21.44334],[-87.201224,21.443546],[-87.201727,21.443755],[-87.202118,21.443916],[-87.203132,21.444065],[-87.203587,21.444335],[-87.203984,21.444528],[-87.20459,21.44481],[-87.20585,21.444997],[-87.207262,21.444854],[-87.209227,21.444191],[-87.210387,21.443859],[-87.211849,21.443904],[-87.212838,21.443873],[-87.214118,21.443854],[-87.214873,21.443382],[-87.21564,21.443262],[-87.216435,21.442908],[-87.216947,21.442495],[-87.217392,21.441821],[-87.218486,21.440944],[-87.219608,21.440167],[-87.220363,21.439647],[-87.220917,21.438986],[-87.221702,21.43851],[-87.221783,21.438086],[-87.221317,21.437098],[-87.221679,21.436298],[-87.222074,21.4353],[-87.222089,21.434862],[-87.222526,21.434174],[-87.222464,21.433369],[-87.222405,21.432909],[-87.222172,21.432439],[-87.222314,21.432211],[-87.222454,21.431328],[-87.223336,21.431221],[-87.223376,21.431216],[-87.225576,21.430716],[-87.226276,21.431616],[-87.227576,21.432516],[-87.228376,21.432816],[-87.228976,21.432716],[-87.228376,21.432216],[-87.228276,21.431416],[-87.228018,21.430981],[-87.228246,21.430459],[-87.228599,21.430506],[-87.228952,21.430458],[-87.228749,21.429892],[-87.228396,21.429515],[-87.228546,21.429043],[-87.228898,21.428429],[-87.229049,21.428099],[-87.229656,21.427737],[-87.229047,21.426943],[-87.228996,21.426731],[-87.229147,21.4264],[-87.229834,21.42613],[-87.229735,21.425521],[-87.229296,21.42489],[-87.229296,21.424607],[-87.229648,21.424324],[-87.229875,21.424252],[-87.229546,21.423616],[-87.229596,21.423474],[-87.230032,21.422939],[-87.230149,21.422388],[-87.23035,21.421539],[-87.2305,21.421208],[-87.230744,21.420796],[-87.231117,21.420325],[-87.231438,21.419818],[-87.231959,21.419083],[-87.231958,21.418753],[-87.232462,21.418611],[-87.233067,21.418704],[-87.233168,21.41894],[-87.233789,21.419067],[-87.23453,21.418985],[-87.235087,21.419364],[-87.235377,21.419578],[-87.235691,21.420305],[-87.235943,21.420116],[-87.235992,21.419502],[-87.236144,21.419549],[-87.236648,21.419926],[-87.236801,21.420492],[-87.237187,21.42102],[-87.237752,21.42144],[-87.238113,21.421811],[-87.237907,21.422136],[-87.23793,21.42276],[-87.238166,21.423085],[-87.2385,21.423271],[-87.238391,21.423568],[-87.238306,21.423781],[-87.238133,21.424108],[-87.238043,21.424436],[-87.238219,21.424595],[-87.238522,21.424877],[-87.238673,21.424971],[-87.238976,21.42516],[-87.239228,21.425112],[-87.239731,21.424781],[-87.239681,21.424545],[-87.239731,21.424262],[-87.239932,21.424215],[-87.240134,21.42412],[-87.240234,21.423648],[-87.240569,21.422956],[-87.240959,21.423094],[-87.241305,21.423499],[-87.241526,21.423778],[-87.241535,21.424187],[-87.241834,21.424819],[-87.241212,21.425331],[-87.241712,21.425723],[-87.242177,21.425668],[-87.242793,21.425348],[-87.24318,21.425371],[-87.243694,21.4255],[-87.24396,21.425511],[-87.24428,21.425456],[-87.244159,21.425795],[-87.244177,21.426047],[-87.244055,21.426314],[-87.244373,21.426898],[-87.244726,21.427275],[-87.24508,21.427887],[-87.245535,21.428264],[-87.245557,21.428553],[-87.245537,21.428866],[-87.245813,21.429226],[-87.246066,21.429839],[-87.246621,21.430168],[-87.247123,21.430246],[-87.247379,21.430686],[-87.24748,21.431252],[-87.247925,21.431449],[-87.248338,21.431723],[-87.248547,21.431981],[-87.249096,21.432382],[-87.249299,21.433231],[-87.249854,21.433702],[-87.250107,21.434079],[-87.250813,21.434314],[-87.251771,21.43436],[-87.252325,21.434312],[-87.252779,21.4345],[-87.253402,21.434887],[-87.254085,21.434634],[-87.254131,21.433965],[-87.254134,21.433926],[-87.254638,21.433548],[-87.255293,21.433642],[-87.255426,21.4336],[-87.255898,21.433452],[-87.256251,21.43364],[-87.256314,21.433714],[-87.256807,21.434301],[-87.256404,21.434678],[-87.256153,21.434961],[-87.256103,21.435292],[-87.256155,21.436471],[-87.25666,21.436942],[-87.256761,21.436612],[-87.25681,21.436045],[-87.25686,21.435809],[-87.257162,21.435667],[-87.257464,21.435384],[-87.257917,21.434911],[-87.25827,21.434911],[-87.258472,21.435099],[-87.258473,21.435618],[-87.25802,21.436327],[-87.25787,21.436657],[-87.25782,21.437223],[-87.258174,21.437553],[-87.258527,21.437788],[-87.259031,21.437788],[-87.259535,21.43774],[-87.259585,21.437173],[-87.259786,21.437032],[-87.260038,21.436937],[-87.26019,21.43722],[-87.260292,21.437739],[-87.260796,21.437691],[-87.261299,21.43736],[-87.261399,21.43684],[-87.261651,21.436463],[-87.261902,21.436179],[-87.262658,21.436084],[-87.262911,21.436272],[-87.263112,21.436036],[-87.263666,21.435846],[-87.263919,21.43594],[-87.26422,21.435468],[-87.264624,21.435467],[-87.264625,21.436033],[-87.264373,21.436411],[-87.264021,21.436695],[-87.264021,21.437072],[-87.264072,21.437355],[-87.263872,21.437969],[-87.263822,21.438394],[-87.264125,21.438676],[-87.264377,21.438723],[-87.26468,21.438581],[-87.264982,21.438628],[-87.265386,21.438863],[-87.265739,21.439145],[-87.266193,21.438956],[-87.26594,21.438579],[-87.265788,21.43839],[-87.265889,21.438107],[-87.265837,21.437588],[-87.265585,21.437211],[-87.265383,21.43707],[-87.265281,21.436693],[-87.265381,21.436409],[-87.265633,21.436315],[-87.265834,21.435843],[-87.265985,21.435512],[-87.266287,21.435559],[-87.26649,21.435794],[-87.267095,21.435935],[-87.267448,21.435887],[-87.267497,21.43551],[-87.267432,21.435146],[-87.267395,21.434944],[-87.267294,21.434425],[-87.267545,21.434189],[-87.268049,21.434093],[-87.268604,21.434187],[-87.269512,21.434374],[-87.269967,21.434845],[-87.270118,21.435128],[-87.270522,21.435363],[-87.270976,21.435504],[-87.271128,21.435787],[-87.27128,21.436306],[-87.271483,21.437013],[-87.271433,21.437202],[-87.27108,21.437344],[-87.271232,21.437816],[-87.271485,21.437957],[-87.271439,21.438483],[-87.271435,21.438523],[-87.270982,21.438854],[-87.270428,21.438996],[-87.269824,21.439422],[-87.269825,21.440035],[-87.269926,21.440318],[-87.270481,21.44027],[-87.271035,21.439986],[-87.271589,21.439985],[-87.271842,21.440315],[-87.272145,21.440315],[-87.272397,21.440409],[-87.272902,21.440832],[-87.272936,21.440845],[-87.273154,21.440926],[-87.273256,21.441256],[-87.273306,21.441351],[-87.273279,21.441387],[-87.273055,21.441681],[-87.273005,21.4422],[-87.273358,21.442341],[-87.27346,21.442719],[-87.273511,21.44319],[-87.273864,21.443284],[-87.273964,21.442624],[-87.273761,21.442152],[-87.27366,21.442011],[-87.273811,21.441586],[-87.273759,21.440973],[-87.273557,21.440784],[-87.273355,21.44069],[-87.273115,21.440541],[-87.273052,21.440502],[-87.272901,21.440172],[-87.272597,21.439748],[-87.272446,21.439512],[-87.272343,21.438805],[-87.272592,21.43861],[-87.272645,21.438568],[-87.272695,21.438285],[-87.272442,21.437719],[-87.272309,21.437563],[-87.27224,21.437484],[-87.272249,21.437344],[-87.272289,21.436729],[-87.272592,21.436728],[-87.272793,21.436303],[-87.272338,21.435879],[-87.272035,21.435738],[-87.271934,21.435408],[-87.271933,21.435078],[-87.272235,21.434794],[-87.272285,21.434322],[-87.272183,21.433992],[-87.271981,21.433662],[-87.27188,21.433379],[-87.271879,21.432955],[-87.271929,21.432672],[-87.27213,21.432341],[-87.272987,21.43234],[-87.274046,21.432432],[-87.274399,21.432479],[-87.274652,21.432856],[-87.274702,21.432997],[-87.275106,21.433186],[-87.275258,21.433468],[-87.276367,21.433702],[-87.27667,21.433796],[-87.277225,21.43389],[-87.277477,21.433936],[-87.277478,21.434314],[-87.27763,21.434833],[-87.277882,21.434974],[-87.278386,21.434784],[-87.278587,21.434595],[-87.278889,21.434406],[-87.279242,21.4345],[-87.279344,21.434783],[-87.279546,21.434971],[-87.279999,21.434876],[-87.280049,21.434357],[-87.280654,21.434214],[-87.281006,21.434119],[-87.281259,21.434496],[-87.28126,21.434827],[-87.282015,21.434542],[-87.282217,21.434448],[-87.282318,21.434589],[-87.281915,21.434826],[-87.281865,21.435156],[-87.282571,21.435107],[-87.282975,21.435154],[-87.283176,21.435248],[-87.283429,21.435531],[-87.284084,21.435482],[-87.284387,21.435387],[-87.284639,21.435481],[-87.28474,21.43567],[-87.28469,21.435953],[-87.284842,21.436094],[-87.285144,21.436188],[-87.285649,21.436329],[-87.285751,21.436753],[-87.285801,21.436989],[-87.286003,21.437178],[-87.286004,21.437414],[-87.285853,21.437508],[-87.286005,21.437885],[-87.286207,21.437932],[-87.286458,21.43779],[-87.28676,21.437507],[-87.286962,21.437506],[-87.287466,21.437505],[-87.287869,21.437316],[-87.288071,21.437221],[-87.288424,21.437457],[-87.288827,21.437503],[-87.289332,21.437832],[-87.289887,21.438067],[-87.290039,21.438209],[-87.29004,21.438539],[-87.290342,21.438727],[-87.290343,21.438869],[-87.290545,21.439246],[-87.29105,21.439481],[-87.291655,21.439621],[-87.292159,21.439432],[-87.292512,21.439431],[-87.292714,21.439525],[-87.292714,21.43995],[-87.29342,21.440043],[-87.293419,21.439382],[-87.293418,21.43891],[-87.293821,21.438485],[-87.29392,21.437541],[-87.293767,21.436598],[-87.293262,21.436269],[-87.293257,21.436241],[-87.29316,21.435703],[-87.293462,21.435372],[-87.293566,21.435306],[-87.293764,21.435183],[-87.294166,21.434852],[-87.294822,21.435134],[-87.295377,21.435085],[-87.295326,21.43485],[-87.295609,21.434659],[-87.295678,21.434613],[-87.295725,21.434679],[-87.295779,21.434754],[-87.296234,21.435037],[-87.296385,21.435084],[-87.296739,21.435791],[-87.297193,21.435743],[-87.297747,21.435459],[-87.297899,21.435694],[-87.298352,21.435552],[-87.298654,21.435315],[-87.299295,21.435281],[-87.299562,21.435267],[-87.299814,21.435266],[-87.300267,21.435077],[-87.300469,21.435312],[-87.300621,21.435501],[-87.301276,21.435452],[-87.301364,21.43563],[-87.30158,21.436065],[-87.301831,21.436541],[-87.302386,21.43654],[-87.302941,21.436586],[-87.303395,21.436821],[-87.303647,21.437056],[-87.304101,21.437056],[-87.304756,21.437007],[-87.305261,21.437054],[-87.305412,21.437289],[-87.306068,21.437382],[-87.30622,21.437665],[-87.306372,21.437901],[-87.306977,21.438183],[-87.307028,21.43856],[-87.307432,21.438512],[-87.308188,21.438369],[-87.308843,21.43851],[-87.309046,21.439123],[-87.3094,21.439499],[-87.309854,21.439546],[-87.310459,21.439545],[-87.310963,21.439732],[-87.311166,21.440015],[-87.311771,21.440014],[-87.311922,21.44025],[-87.312376,21.440343],[-87.31283,21.440342],[-87.313335,21.440577],[-87.313587,21.440671],[-87.314041,21.440906],[-87.314647,21.440952],[-87.3151,21.440951],[-87.315453,21.440951],[-87.315605,21.441186],[-87.315757,21.441375],[-87.316614,21.441373],[-87.317168,21.441136],[-87.317217,21.440664],[-87.317368,21.440475],[-87.31767,21.440286],[-87.318023,21.440238],[-87.318023,21.440002],[-87.318274,21.43986],[-87.318879,21.43967],[-87.319181,21.439481],[-87.319332,21.439339],[-87.319311,21.438567],[-87.319277,21.437358],[-87.319428,21.437074],[-87.319881,21.436932],[-87.320335,21.436695],[-87.320738,21.436694],[-87.321039,21.436269],[-87.321089,21.435939],[-87.321391,21.435702],[-87.321693,21.43556],[-87.322248,21.435418],[-87.322852,21.435322],[-87.323445,21.435286],[-87.323659,21.435273],[-87.32381,21.435131],[-87.324055,21.434802],[-87.324162,21.434659],[-87.324278,21.434625],[-87.324817,21.434469],[-87.32532,21.434279],[-87.325673,21.434231],[-87.326328,21.433994],[-87.326781,21.43371],[-87.326982,21.433285],[-87.327082,21.432719],[-87.327383,21.432482],[-87.327636,21.432482],[-87.328039,21.432623],[-87.328745,21.432527],[-87.329047,21.432574],[-87.32925,21.432903],[-87.329553,21.433186],[-87.330007,21.433185],[-87.33046,21.433137],[-87.330763,21.433231],[-87.330863,21.432759],[-87.331115,21.432617],[-87.332224,21.432567],[-87.332476,21.432661],[-87.33288,21.433038],[-87.333284,21.433179],[-87.333839,21.433366],[-87.333871,21.433397],[-87.33399,21.433507],[-87.334344,21.433837],[-87.334697,21.433931],[-87.335201,21.434024],[-87.335353,21.434118],[-87.33621,21.433975],[-87.336713,21.433691],[-87.336791,21.433607],[-87.337065,21.433312],[-87.337518,21.433028],[-87.338073,21.43298],[-87.338375,21.432838],[-87.338777,21.432365],[-87.339684,21.432175],[-87.340088,21.432457],[-87.341096,21.432266],[-87.341652,21.43269],[-87.342206,21.432736],[-87.342508,21.432641],[-87.342963,21.433065],[-87.343418,21.433535],[-87.343923,21.434006],[-87.344376,21.433675],[-87.344579,21.434005],[-87.344832,21.434382],[-87.344883,21.434665],[-87.345186,21.4349],[-87.345841,21.434993],[-87.346144,21.434945],[-87.347102,21.435132],[-87.347433,21.435547],[-87.347507,21.435933],[-87.347508,21.436122],[-87.347509,21.436547],[-87.347863,21.437018],[-87.347863,21.437254],[-87.348116,21.437583],[-87.348369,21.437866],[-87.348772,21.437865],[-87.349176,21.437959],[-87.349428,21.437958],[-87.349934,21.43857],[-87.350187,21.438947],[-87.35054,21.439324],[-87.350944,21.439417],[-87.351348,21.439511],[-87.351348,21.439841],[-87.351299,21.440172],[-87.351622,21.440659],[-87.351805,21.441208],[-87.352007,21.441302],[-87.352412,21.441679],[-87.352614,21.441915],[-87.352767,21.442528],[-87.352919,21.442905],[-87.353157,21.443458],[-87.353324,21.443895],[-87.353578,21.444413],[-87.35378,21.444743],[-87.354202,21.445384],[-87.354392,21.445968],[-87.354635,21.446319],[-87.355073,21.446558],[-87.355449,21.446768],[-87.355917,21.446738],[-87.356282,21.447011],[-87.356646,21.447128],[-87.356821,21.447211],[-87.357114,21.447337],[-87.357693,21.447335],[-87.358223,21.447281],[-87.358425,21.447186],[-87.358576,21.447045],[-87.35918,21.446993],[-87.359635,21.447042],[-87.359744,21.44687],[-87.359785,21.446806],[-87.360385,21.446968],[-87.36094,21.446967],[-87.361545,21.44706],[-87.361784,21.447181],[-87.3621,21.447342],[-87.362706,21.447576],[-87.363463,21.447669],[-87.364643,21.447747],[-87.365224,21.447839],[-87.365531,21.448136],[-87.365784,21.448372],[-87.36654,21.448417],[-87.367549,21.448462],[-87.368457,21.448602],[-87.368659,21.44879],[-87.369385,21.448771],[-87.369896,21.448992],[-87.37064,21.449369],[-87.371084,21.449642],[-87.372092,21.45067],[-87.372395,21.450999],[-87.373506,21.451516],[-87.373809,21.451751],[-87.374465,21.452033],[-87.374869,21.452079],[-87.375071,21.452361],[-87.375475,21.452596],[-87.375829,21.452879],[-87.376486,21.453349],[-87.377142,21.453631],[-87.377596,21.453866],[-87.378758,21.454618],[-87.379212,21.454806],[-87.379918,21.454945],[-87.381058,21.455074],[-87.382109,21.455175],[-87.382692,21.455034],[-87.383448,21.454985],[-87.383852,21.455031],[-87.384457,21.455124],[-87.385365,21.455122],[-87.38635,21.455269],[-87.38713,21.455401],[-87.387635,21.455541],[-87.388392,21.455822],[-87.389553,21.456197],[-87.390258,21.456148],[-87.390863,21.456147],[-87.391469,21.456476],[-87.392074,21.456286],[-87.392729,21.456284],[-87.393083,21.456425],[-87.393335,21.456613],[-87.393739,21.456659],[-87.394092,21.456658],[-87.394395,21.456941],[-87.394849,21.45694],[-87.395404,21.456891],[-87.395857,21.456796],[-87.396268,21.456892],[-87.396764,21.456699],[-87.397369,21.456556],[-87.397604,21.456657],[-87.397825,21.45672],[-87.398076,21.456743],[-87.398429,21.456837],[-87.399084,21.456741],[-87.399639,21.456692],[-87.399941,21.456833],[-87.400396,21.457021],[-87.400849,21.456973],[-87.401202,21.456925],[-87.401405,21.45716],[-87.402262,21.457158],[-87.402817,21.457204],[-87.403019,21.457392],[-87.40312,21.457628],[-87.403322,21.457627],[-87.403625,21.457957],[-87.403828,21.458145],[-87.404231,21.458191],[-87.404433,21.458143],[-87.404584,21.458143],[-87.404675,21.458203],[-87.404777,21.458206],[-87.40491,21.458295],[-87.404977,21.458305],[-87.405038,21.458331],[-87.405291,21.458566],[-87.405594,21.458565],[-87.406048,21.458611],[-87.406098,21.458753],[-87.40644,21.458777],[-87.406603,21.458987],[-87.407209,21.45908],[-87.407714,21.459315],[-87.408067,21.459456],[-87.408421,21.459691],[-87.408573,21.459973],[-87.408977,21.460208],[-87.409229,21.460302],[-87.409633,21.460443],[-87.409835,21.460631],[-87.409987,21.460914],[-87.410542,21.460912],[-87.411147,21.460911],[-87.411651,21.460909],[-87.411954,21.461097],[-87.412408,21.461144],[-87.412862,21.461237],[-87.413178,21.46129],[-87.413533,21.461498],[-87.414276,21.461752],[-87.414477,21.461752],[-87.414982,21.462055],[-87.415284,21.462148],[-87.416343,21.462098],[-87.416848,21.462097],[-87.417251,21.462238],[-87.417554,21.462331],[-87.418059,21.462519],[-87.41816,21.462707],[-87.418565,21.463131],[-87.418867,21.46313],[-87.419422,21.463223],[-87.419978,21.463363],[-87.420332,21.46374],[-87.420631,21.46378],[-87.421038,21.463974],[-87.421442,21.464067],[-87.421644,21.464255],[-87.421897,21.464491],[-87.422266,21.464715],[-87.422503,21.464914],[-87.422857,21.46529],[-87.42316,21.465384],[-87.423463,21.465619],[-87.42412,21.465948],[-87.424524,21.466277],[-87.425382,21.466416],[-87.425937,21.466556],[-87.426291,21.466744],[-87.426896,21.466884],[-87.427666,21.467396],[-87.428058,21.467683],[-87.42826,21.467871],[-87.428816,21.468153],[-87.42927,21.468246],[-87.430178,21.468338],[-87.431086,21.468572],[-87.432701,21.468804],[-87.433356,21.468849],[-87.435071,21.468892],[-87.436029,21.468889],[-87.437643,21.468885],[-87.438297,21.468506],[-87.43885,21.467938],[-87.439555,21.467418],[-87.44021,21.467274],[-87.440764,21.466943],[-87.441418,21.466705],[-87.441619,21.466374],[-87.442022,21.466137],[-87.442476,21.466136],[-87.443433,21.46585],[-87.443634,21.465567],[-87.444137,21.46533],[-87.444691,21.465045],[-87.444994,21.464997],[-87.445347,21.465043],[-87.446153,21.4649],[-87.446657,21.464757],[-87.447312,21.464755],[-87.447716,21.464943],[-87.448271,21.4648],[-87.448724,21.464798],[-87.449531,21.464749],[-87.449884,21.464748],[-87.45069,21.464604],[-87.450942,21.464509],[-87.451446,21.464225],[-87.451849,21.464224],[-87.452454,21.464269],[-87.452907,21.464032],[-87.453663,21.463889],[-87.454117,21.463793],[-87.45457,21.463556],[-87.455225,21.463413],[-87.455274,21.462893],[-87.456131,21.462797],[-87.456585,21.462796],[-87.457139,21.462747],[-87.457542,21.462557],[-87.457894,21.462226],[-87.457943,21.461943],[-87.458347,21.461894],[-87.458615,21.461364],[-87.45885,21.460905],[-87.45895,21.460686],[-87.459149,21.460524],[-87.459249,21.460193],[-87.459652,21.460051],[-87.460156,21.459955],[-87.46081,21.459529],[-87.461061,21.459103],[-87.461415,21.458748],[-87.461633,21.458525],[-87.462118,21.45844],[-87.462268,21.458015],[-87.462519,21.457731],[-87.462972,21.457635],[-87.463678,21.457445],[-87.464181,21.457113],[-87.464735,21.457064],[-87.465138,21.456922],[-87.465473,21.457134],[-87.465911,21.457136],[-87.4664,21.457154],[-87.466953,21.456869],[-87.467457,21.456774],[-87.467911,21.456725],[-87.468466,21.456724],[-87.469171,21.456674],[-87.469524,21.456626],[-87.469928,21.456814],[-87.470529,21.456895],[-87.470857,21.456903],[-87.471189,21.456952],[-87.472134,21.456993],[-87.472437,21.457087],[-87.472822,21.4572],[-87.473244,21.457226],[-87.4735,21.457345],[-87.473864,21.45749],[-87.474102,21.457601],[-87.474708,21.457694],[-87.475011,21.457834],[-87.475465,21.457974],[-87.47607,21.457926],[-87.476387,21.458038],[-87.476628,21.458219],[-87.476878,21.458395],[-87.477332,21.458441],[-87.477735,21.45844],[-87.477887,21.458534],[-87.478129,21.458609],[-87.478544,21.458862],[-87.478998,21.459097],[-87.479554,21.459378],[-87.479756,21.459519],[-87.480022,21.459675],[-87.480312,21.459801],[-87.480572,21.459971],[-87.480766,21.460124],[-87.480969,21.460271],[-87.481221,21.460506],[-87.481626,21.460835],[-87.482081,21.461402],[-87.482688,21.461775],[-87.483092,21.461916],[-87.483332,21.461974],[-87.48363,21.462046],[-87.483922,21.462302],[-87.484355,21.46262],[-87.484658,21.462949],[-87.485113,21.463137],[-87.48531,21.463447],[-87.485467,21.463513],[-87.485822,21.464172],[-87.486025,21.464502],[-87.486582,21.465255],[-87.486374,21.465919],[-87.486334,21.466136],[-87.486343,21.466309],[-87.486353,21.466508],[-87.486559,21.46662],[-87.486738,21.466717],[-87.486864,21.467006],[-87.486866,21.467062],[-87.486877,21.467349],[-87.487197,21.468132],[-87.487193,21.468404],[-87.487168,21.468709],[-87.487199,21.468886],[-87.48715,21.46926],[-87.487121,21.469454],[-87.486762,21.46996],[-87.48655,21.470445],[-87.486644,21.470974],[-87.486517,21.471293],[-87.486704,21.47153],[-87.486807,21.472237],[-87.486858,21.472426],[-87.48686,21.472992],[-87.486609,21.473465],[-87.486409,21.47389],[-87.48641,21.474267],[-87.48616,21.47474],[-87.486009,21.474787],[-87.485807,21.474788],[-87.485656,21.474788],[-87.485505,21.474978],[-87.485708,21.475213],[-87.485646,21.475835],[-87.485527,21.476319],[-87.485508,21.476582],[-87.485562,21.476817],[-87.485512,21.477101],[-87.485614,21.477289],[-87.485766,21.477666],[-87.485806,21.478283],[-87.485757,21.478819],[-87.485777,21.479039],[-87.485721,21.479176],[-87.485822,21.479411],[-87.485785,21.479843],[-87.485793,21.480111],[-87.485769,21.480739],[-87.485758,21.480971],[-87.485686,21.481231],[-87.485831,21.482054],[-87.485833,21.482714],[-87.485886,21.48328],[-87.485988,21.483657],[-87.486645,21.484174],[-87.487201,21.484456],[-87.487605,21.48469],[-87.487756,21.484737],[-87.487958,21.484737],[-87.48811,21.484878],[-87.48806,21.484972],[-87.488333,21.485183],[-87.48909,21.485275],[-87.489796,21.48532],[-87.490603,21.485318],[-87.491007,21.485458],[-87.491512,21.485551],[-87.492016,21.485597],[-87.492621,21.485595],[-87.493126,21.485688],[-87.493781,21.485639],[-87.494285,21.485496],[-87.495798,21.485491],[-87.496252,21.48549],[-87.49711,21.485582],[-87.497816,21.485627],[-87.49851,21.485662],[-87.500059,21.485766],[-87.500911,21.485912],[-87.502316,21.485991],[-87.503088,21.486021],[-87.50461,21.486274],[-87.505335,21.486515],[-87.506647,21.487063],[-87.507454,21.487249],[-87.508236,21.487334],[-87.509081,21.487317],[-87.510976,21.487648],[-87.511953,21.48787],[-87.512905,21.488318],[-87.513511,21.488646],[-87.514873,21.488736],[-87.516409,21.488465],[-87.517491,21.488611],[-87.518514,21.488773],[-87.519779,21.488893],[-87.521718,21.489034],[-87.523423,21.489228],[-87.524206,21.489509],[-87.524963,21.489554],[-87.525921,21.489551],[-87.526903,21.489688],[-87.527788,21.489687],[-87.528444,21.489826],[-87.529301,21.489871],[-87.530159,21.49001],[-87.530513,21.490103],[-87.530866,21.490149],[-87.531975,21.490145],[-87.532576,21.490136],[-87.532897,21.490202],[-87.533027,21.490229],[-87.534913,21.490222],[-87.534821,21.464868],[-87.534515,21.380164],[-87.534448,21.361416],[-87.534255,21.308008],[-87.534017,21.24196],[-87.533352,21.05709],[-87.533204,21.015956],[-87.533145,20.999602],[-87.578341,20.925737],[-87.675727,20.766263],[-87.744259,20.653787],[-87.755237,20.643404],[-87.879272,20.525928],[-87.88631,20.519254],[-87.89921,20.507012],[-87.334939,20.356739]
	], '#000000', 'Equipo 1');
	addRaidPolygon(mapLayer, [
		[-87.89921,20.507012],[-87.938006,20.470197],[-87.962742,20.446706],[-87.995065,20.447316],[-87.992958,20.424068],[-87.99296,20.417993],[-88.03403,20.37894],[-88.047533,20.378818],[-88.047307,20.366309],[-88.104236,20.312108],[-88.13649,20.281372],[-88.167162,20.285418],[-88.232705,20.286998],[-88.232669,20.290179],[-88.264634,20.290342],[-88.266815,20.26912],[-88.272961,20.269931],[-88.308788,20.25351],[-88.313146,20.254024],[-88.329958,20.256113],[-88.334686,20.256729],[-88.341569,20.257582],[-88.351903,20.259023],[-88.356601,20.258314],[-88.370807,20.25779],[-88.376371,20.257024],[-88.377562,20.256718],[-88.389402,20.254519],[-88.395404,20.253543],[-88.400973,20.251768],[-88.407326,20.252119],[-88.409128,20.252097],[-88.405194,20.246145],[-88.402892,20.239489],[-88.409122,20.239728],[-88.415114,20.23297],[-88.443426,20.23815],[-88.51993,20.192328],[-88.502345,20.190078],[-88.507621,20.143391],[-88.576682,20.148078],[-88.57815,20.139174],[-88.578242,20.139197],[-88.587676,20.14047],[-88.587974,20.131451],[-88.612706,20.133125],[-88.612773,20.134297],[-88.616384,20.134461],[-88.620808,20.131804],[-88.620939,20.130432],[-88.618624,20.127769],[-88.619173,20.117172],[-88.639866,20.120356],[-88.690609,20.089856],[-88.690742,20.086007],[-88.690802,20.07703],[-88.684892,20.077414],[-88.689093,20.048256],[-88.691796,20.029213],[-88.694753,20.030036],[-88.697465,20.020022],[-88.700176,20.010357],[-88.705655,20.011209],[-88.712524,20.012296],[-88.713041,20.009163],[-88.718435,20.010321],[-88.722148,20.005124],[-88.723778,20.005499],[-88.722782,20.0132],[-88.72657,20.014769],[-88.735979,20.017577],[-88.735811,20.015988],[-88.734192,20.015275],[-88.73317,20.014435],[-88.732348,20.014066],[-88.736246,20.009661],[-88.737292,20.00947],[-88.742615,20.008583],[-88.742578,20.012685],[-88.742472,20.015087],[-88.749746,20.014408],[-88.751377,20.014276],[-88.757773,20.013936],[-88.757698,20.012192],[-88.761499,20.012562],[-88.771466,20.013463],[-88.771181,20.00767],[-88.783503,20.00818],[-88.784416,19.99524],[-88.789212,19.995568],[-88.789652,19.994521],[-88.79048,19.992134],[-88.79058,19.986635],[-88.790597,19.984418],[-88.790693,19.976805],[-88.790771,19.97202],[-88.797044,19.974513],[-88.798022,19.97493],[-88.798544,19.971939],[-88.798756,19.970494],[-88.798378,19.952523],[-88.80564,19.953831],[-88.806041,19.944569],[-88.810176,19.944947],[-88.811418,19.935242],[-88.808888,19.934121],[-88.809851,19.92699],[-88.809745,19.925991],[-88.812584,19.925555],[-88.813333,19.918283],[-88.816143,19.915499],[-88.816503,19.904474],[-88.817161,19.904943],[-88.817881,19.904065],[-88.820166,19.905559],[-88.822734,19.904144],[-88.824425,19.904763],[-88.823152,19.908149],[-88.827283,19.91092],[-88.827511,19.910612],[-88.827278,19.910481],[-88.829437,19.906015],[-88.827365,19.904488],[-88.828438,19.902207],[-88.829825,19.898554],[-88.824581,19.894083],[-88.820414,19.890473],[-88.82384,19.8839],[-88.825926,19.879926],[-88.832139,19.881606],[-88.832871,19.878731],[-88.833043,19.878227],[-88.839738,19.878208],[-88.848155,19.878405],[-88.854228,19.878483],[-88.862648,19.878451],[-88.866418,19.878055],[-88.869951,19.878256],[-88.880192,19.878125],[-88.87982,19.874553],[-88.879462,19.869667],[-88.879232,19.866177],[-88.879125,19.862393],[-88.890569,19.860969],[-88.890422,19.858545],[-88.900488,19.861114],[-88.900005,19.858313],[-88.898812,19.851663],[-88.897585,19.836863],[-88.899725,19.833347],[-88.902049,19.832419],[-88.902533,19.832145],[-88.903481,19.831046],[-88.905066,19.826704],[-88.90821,19.820661],[-88.909731,19.813588],[-88.910686,19.805788],[-88.911104,19.800938],[-88.920294,19.803974],[-88.929512,19.790949],[-88.945434,19.791946],[-88.943852,19.813443],[-88.958077,19.810467],[-88.956387,19.816824],[-88.959079,19.816935],[-88.96465,19.817528],[-88.974452,19.818101],[-88.976109,19.810766],[-88.981666,19.807095],[-88.984439,19.805205],[-88.984706,19.800995],[-88.984747,19.799862],[-88.984405,19.79816],[-88.992365,19.798043],[-88.994523,19.798044],[-88.999468,19.797994],[-88.999847,19.795569],[-89.000017,19.794737],[-89.000993,19.789116],[-89.00208,19.783231],[-89.003218,19.776754],[-89.004087,19.772007],[-89.005519,19.772268],[-89.00661,19.772649],[-89.009852,19.773392],[-89.014341,19.774392],[-89.016055,19.774726],[-89.025163,19.77671],[-89.032761,19.759105],[-89.046921,19.726059],[-89.048827,19.721493],[-89.016952,19.726387],[-89.015385,19.722973],[-88.9975,19.72676],[-88.996622,19.72678],[-88.994741,19.72744],[-88.996738,19.711529],[-88.997529,19.704884],[-89.030524,19.708832],[-89.0362,19.67804],[-89.076031,19.685433],[-89.074213,19.694194],[-89.123399,19.703424],[-89.133641,19.614632],[-89.108392,19.612338],[-89.109024,19.582349],[-89.149521,19.581249],[-89.144862,19.637399],[-89.189203,19.644006],[-89.19025,19.633318],[-89.19269,19.633557],[-89.222869,19.636657],[-89.219557,19.608022],[-89.234861,19.596912],[-89.25069,19.585021],[-89.270945,19.569955],[-89.28734,19.557945],[-89.296562,19.551174],[-89.167522,19.441596],[-89.146667,19.423862],[-89.146961,19.261994],[-89.146989,19.215462],[-87.667654,18.787366],[-87.667583,18.788233],[-87.667388,18.78873],[-87.667582,18.789327],[-87.667709,18.790555],[-87.66768,18.791733],[-87.667915,18.792799],[-87.668228,18.795248],[-87.668734,18.79587],[-87.668992,18.797214],[-87.669165,18.798483],[-87.669132,18.800649],[-87.66891,18.802015],[-87.667993,18.804593],[-87.667812,18.804947],[-87.667566,18.806484],[-87.666887,18.807601],[-87.666768,18.808887],[-87.666523,18.810665],[-87.666022,18.811707],[-87.664892,18.812995],[-87.664075,18.814058],[-87.662767,18.816114],[-87.662538,18.816953],[-87.662533,18.818033],[-87.663035,18.819524],[-87.663279,18.820467],[-87.663493,18.822157],[-87.663396,18.824595],[-87.66305,18.826516],[-87.662579,18.827775],[-87.66214,18.828434],[-87.660825,18.830204],[-87.660377,18.830677],[-87.659211,18.831437],[-87.658105,18.831847],[-87.657766,18.832237],[-87.657923,18.833381],[-87.657683,18.834121],[-87.657822,18.835602],[-87.657744,18.836953],[-87.657308,18.83758],[-87.656941,18.837916],[-87.65601,18.838382],[-87.654727,18.838704],[-87.653887,18.839355],[-87.65352,18.840424],[-87.653691,18.841082],[-87.654037,18.841607],[-87.654335,18.84239],[-87.654258,18.843961],[-87.653924,18.846307],[-87.653304,18.84729],[-87.652439,18.847917],[-87.651987,18.848452],[-87.650938,18.849881],[-87.649438,18.851741],[-87.648705,18.85313],[-87.648219,18.853616],[-87.647272,18.854783],[-87.646671,18.85537],[-87.646327,18.855424],[-87.645321,18.856063],[-87.644382,18.85642],[-87.643947,18.856428],[-87.643292,18.857382],[-87.64308,18.858183],[-87.642408,18.859602],[-87.641974,18.861021],[-87.641702,18.861633],[-87.641256,18.864525],[-87.641032,18.865286],[-87.640784,18.866632],[-87.640862,18.869246],[-87.641281,18.870657],[-87.64171,18.871655],[-87.642201,18.873431],[-87.642379,18.874603],[-87.642491,18.876175],[-87.642363,18.877662],[-87.642096,18.878985],[-87.641951,18.880201],[-87.641794,18.882103],[-87.641942,18.883031],[-87.642044,18.884524],[-87.641334,18.8863],[-87.640886,18.887847],[-87.640501,18.889928],[-87.639855,18.891378],[-87.639828,18.89175],[-87.639569,18.892017],[-87.639355,18.892768],[-87.638412,18.893956],[-87.638002,18.89498],[-87.636915,18.896037],[-87.635791,18.896519],[-87.635103,18.89693],[-87.634182,18.897906],[-87.633636,18.898365],[-87.633402,18.898977],[-87.633017,18.899437],[-87.633056,18.899937],[-87.632096,18.901949],[-87.63189,18.902587],[-87.631475,18.903011],[-87.631378,18.90377],[-87.631262,18.905682],[-87.63156,18.907097],[-87.631487,18.907465],[-87.632001,18.909697],[-87.632034,18.912101],[-87.632475,18.915159],[-87.632207,18.915942],[-87.632275,18.919703],[-87.632181,18.921494],[-87.632295,18.922497],[-87.632013,18.923203],[-87.631745,18.924816],[-87.631536,18.926412],[-87.630817,18.928118],[-87.630502,18.929262],[-87.62968,18.930848],[-87.629515,18.931292],[-87.629222,18.932773],[-87.629179,18.93382],[-87.629001,18.934624],[-87.628508,18.935781],[-87.628321,18.936851],[-87.627849,18.938466],[-87.627432,18.939661],[-87.626924,18.940835],[-87.626107,18.942387],[-87.625552,18.943305],[-87.624438,18.944706],[-87.621971,18.947071],[-87.620625,18.947984],[-87.619084,18.948803],[-87.618429,18.949058],[-87.617849,18.949491],[-87.617195,18.950414],[-87.61662,18.952327],[-87.616276,18.954443],[-87.616106,18.954722],[-87.615935,18.955682],[-87.615739,18.95624],[-87.615601,18.957127],[-87.615412,18.957737],[-87.615234,18.9588],[-87.614835,18.960613],[-87.614311,18.961972],[-87.614275,18.962437],[-87.613439,18.964553],[-87.613368,18.964992],[-87.612814,18.96595],[-87.612785,18.966354],[-87.612218,18.967326],[-87.611891,18.967611],[-87.611724,18.968286],[-87.611459,18.968784],[-87.611112,18.969032],[-87.610536,18.969934],[-87.610116,18.970801],[-87.610033,18.971171],[-87.60954,18.971697],[-87.609275,18.972251],[-87.609149,18.972832],[-87.608878,18.973282],[-87.608713,18.974154],[-87.608381,18.97533],[-87.607669,18.977062],[-87.607373,18.978413],[-87.60707,18.979262],[-87.607028,18.979908],[-87.606796,18.981196],[-87.606298,18.982472],[-87.606047,18.983623],[-87.605869,18.984033],[-87.605588,18.9858],[-87.60559,18.986348],[-87.60533,18.987668],[-87.604763,18.988292],[-87.603998,18.988768],[-87.603204,18.989143],[-87.602539,18.990117],[-87.601141,18.991091],[-87.600645,18.991609],[-87.60011,18.992764],[-87.599739,18.993026],[-87.59922,18.993872],[-87.598666,18.994319],[-87.598489,18.995038],[-87.597906,18.995709],[-87.597872,18.996285],[-87.597362,18.996663],[-87.597112,18.997336],[-87.596485,18.998192],[-87.595995,18.999314],[-87.595354,18.999982],[-87.595155,19.000895],[-87.594533,19.001233],[-87.593998,19.00205],[-87.593804,19.002723],[-87.592893,19.003638],[-87.592491,19.004312],[-87.592375,19.005069],[-87.591939,19.005178],[-87.591548,19.005784],[-87.591033,19.006093],[-87.59028,19.007247],[-87.590028,19.00744],[-87.589829,19.008257],[-87.589427,19.009026],[-87.588827,19.010612],[-87.588578,19.011573],[-87.588633,19.012821],[-87.588585,19.013637],[-87.588335,19.01431],[-87.587934,19.015032],[-87.586979,19.016164],[-87.58666,19.017081],[-87.586143,19.017306],[-87.585434,19.01807],[-87.585384,19.019102],[-87.585226,19.019628],[-87.585071,19.020751],[-87.584849,19.021221],[-87.584867,19.021812],[-87.584725,19.022221],[-87.584455,19.022404],[-87.584003,19.023781],[-87.583455,19.025991],[-87.583407,19.026807],[-87.583053,19.026712],[-87.582303,19.028731],[-87.5816,19.029885],[-87.5814,19.030462],[-87.581002,19.032336],[-87.579798,19.034692],[-87.579487,19.035919],[-87.579197,19.036134],[-87.578327,19.03729],[-87.578329,19.037836],[-87.577645,19.038459],[-87.576884,19.038925],[-87.576594,19.039669],[-87.575375,19.040754],[-87.575228,19.041339],[-87.574671,19.041765],[-87.573514,19.042968],[-87.573416,19.043595],[-87.573163,19.043882],[-87.573196,19.044701],[-87.572965,19.044986],[-87.572817,19.045899],[-87.572416,19.047004],[-87.572269,19.048205],[-87.571516,19.049408],[-87.571215,19.050225],[-87.57141,19.051903],[-87.571229,19.053043],[-87.570897,19.053922],[-87.570359,19.054738],[-87.569757,19.056816],[-87.569154,19.057802],[-87.568703,19.058008],[-87.568554,19.058777],[-87.568205,19.060026],[-87.567121,19.061048],[-87.566839,19.062639],[-87.566234,19.063347],[-87.565724,19.063545],[-87.565565,19.063826],[-87.565552,19.064561],[-87.564837,19.06535],[-87.56479,19.065941],[-87.564345,19.066155],[-87.564012,19.066837],[-87.563481,19.067241],[-87.562928,19.068107],[-87.562325,19.068829],[-87.561314,19.068832],[-87.558536,19.068649],[-87.557677,19.068651],[-87.556566,19.068847],[-87.556264,19.069135],[-87.556165,19.069808],[-87.555561,19.070434],[-87.555159,19.071011],[-87.555061,19.071923],[-87.55471,19.072645],[-87.554105,19.073175],[-87.554209,19.073894],[-87.554008,19.074183],[-87.553452,19.074281],[-87.553759,19.075288],[-87.552955,19.076538],[-87.552858,19.078027],[-87.55236,19.079997],[-87.551604,19.080527],[-87.551908,19.08091],[-87.551963,19.082062],[-87.551863,19.082543],[-87.550804,19.08317],[-87.55116,19.083889],[-87.550657,19.084466],[-87.5499,19.084661],[-87.549798,19.085139],[-87.549771,19.086214],[-87.549318,19.086693],[-87.549919,19.087396],[-87.550064,19.088077],[-87.5499,19.089124],[-87.550069,19.089464],[-87.550933,19.090212],[-87.551533,19.09087],[-87.551967,19.092005],[-87.552228,19.093731],[-87.551756,19.096431],[-87.551317,19.097986],[-87.55089,19.098988],[-87.550749,19.099852],[-87.550488,19.100512],[-87.550229,19.101626],[-87.54985,19.102855],[-87.549757,19.103742],[-87.549838,19.106606],[-87.549749,19.108539],[-87.549686,19.111313],[-87.549811,19.112745],[-87.54972,19.114087],[-87.549893,19.116019],[-87.549997,19.119063],[-87.550002,19.12045],[-87.550083,19.123315],[-87.549825,19.124975],[-87.549413,19.130524],[-87.548869,19.132549],[-87.547753,19.135049],[-87.547375,19.136392],[-87.547621,19.138574],[-87.548201,19.140164],[-87.548492,19.14139],[-87.54835,19.141868],[-87.548546,19.143323],[-87.548597,19.144368],[-87.548338,19.145506],[-87.547719,19.146622],[-87.546814,19.148416],[-87.54586,19.149488],[-87.544524,19.150788],[-87.543354,19.151496],[-87.542542,19.152112],[-87.541726,19.152467],[-87.541477,19.153524],[-87.540922,19.154345],[-87.540757,19.155073],[-87.540807,19.155891],[-87.540781,19.157124],[-87.540582,19.158085],[-87.540587,19.159621],[-87.540693,19.161253],[-87.541506,19.162595],[-87.542172,19.165425],[-87.542278,19.166673],[-87.542181,19.168113],[-87.541631,19.169747],[-87.541027,19.170757],[-87.540422,19.171239],[-87.54007,19.171768],[-87.53987,19.172297],[-87.539721,19.173209],[-87.539825,19.173977],[-87.539776,19.174457],[-87.540183,19.175224],[-87.540188,19.176952],[-87.540396,19.178632],[-87.540245,19.178968],[-87.540199,19.180169],[-87.540051,19.181321],[-87.53975,19.18209],[-87.539753,19.18305],[-87.539603,19.183531],[-87.539351,19.183724],[-87.539251,19.184204],[-87.538798,19.184589],[-87.538494,19.184494],[-87.537989,19.184736],[-87.537944,19.186272],[-87.538099,19.187232],[-87.538563,19.187715],[-87.538759,19.189146],[-87.539086,19.190123],[-87.539681,19.192935],[-87.539429,19.193272],[-87.540041,19.194855],[-87.539923,19.198146],[-87.539623,19.199828],[-87.538734,19.20277],[-87.538101,19.20451],[-87.537243,19.207976],[-87.536355,19.210333],[-87.535439,19.212665],[-87.534039,19.214795],[-87.53208,19.218833],[-87.531577,19.219554],[-87.530869,19.219653],[-87.530619,19.220277],[-87.529156,19.22153],[-87.529157,19.221866],[-87.528479,19.22273],[-87.528481,19.223546],[-87.528179,19.223979],[-87.528182,19.224699],[-87.528336,19.225515],[-87.527985,19.226524],[-87.527886,19.227196],[-87.527433,19.227822],[-87.526881,19.229023],[-87.526629,19.229264],[-87.526126,19.230274],[-87.525621,19.230275],[-87.524461,19.231191],[-87.522794,19.232011],[-87.521735,19.232783],[-87.521028,19.233121],[-87.520676,19.233602],[-87.520277,19.235523],[-87.519469,19.235765],[-87.518409,19.2362],[-87.517449,19.236683],[-87.516437,19.23635],[-87.515625,19.235536],[-87.514816,19.235298],[-87.513759,19.237078],[-87.513307,19.238039],[-87.512602,19.238809],[-87.51225,19.239674],[-87.510386,19.24184],[-87.509277,19.242851],[-87.507763,19.243911],[-87.506953,19.243818],[-87.506449,19.244107],[-87.5064,19.244827],[-87.505846,19.245549],[-87.505092,19.246943],[-87.505094,19.247567],[-87.50464,19.248096],[-87.503428,19.248628],[-87.502571,19.249302],[-87.501409,19.249882],[-87.5004,19.250556],[-87.499745,19.251278],[-87.499495,19.252287],[-87.498486,19.25325],[-87.497461,19.254972],[-87.496654,19.255886],[-87.495948,19.256512],[-87.494888,19.257091],[-87.493879,19.257766],[-87.49287,19.258872],[-87.492114,19.259499],[-87.491407,19.259885],[-87.490497,19.260031],[-87.488984,19.261619],[-87.488431,19.262437],[-87.488183,19.264214],[-87.487882,19.265223],[-87.485474,19.266134],[-87.485106,19.267054],[-87.484756,19.268207],[-87.483949,19.269218],[-87.4838,19.270082],[-87.482792,19.271381],[-87.48239,19.272102],[-87.481277,19.272153],[-87.481278,19.272537],[-87.480927,19.273258],[-87.479413,19.274606],[-87.478103,19.27629],[-87.477753,19.277779],[-87.47604,19.28004],[-87.47518,19.28009],[-87.475369,19.28104],[-87.47345,19.282389],[-87.472893,19.28191],[-87.471175,19.282779],[-87.469713,19.284511],[-87.469564,19.285471],[-87.468958,19.285713],[-87.4679,19.287204],[-87.466237,19.289416],[-87.464421,19.291053],[-87.462305,19.293939],[-87.459077,19.2975],[-87.458068,19.298366],[-87.457564,19.299088],[-87.455951,19.301012],[-87.454891,19.302119],[-87.453581,19.303802],[-87.452521,19.304669],[-87.451059,19.306545],[-87.450151,19.307459],[-87.448745,19.309111],[-87.446423,19.311229],[-87.446121,19.311566],[-87.445565,19.311712],[-87.445771,19.313151],[-87.446934,19.312764],[-87.447592,19.313051],[-87.448958,19.312951],[-87.449312,19.313191],[-87.449918,19.312757],[-87.452498,19.312559],[-87.453004,19.312701],[-87.45422,19.313418],[-87.455285,19.314328],[-87.456148,19.31519],[-87.457719,19.316242],[-87.459596,19.318014],[-87.460611,19.319115],[-87.461169,19.31993],[-87.462543,19.322519],[-87.462696,19.323046],[-87.462802,19.32463],[-87.463158,19.325493],[-87.463766,19.325732],[-87.464828,19.325777],[-87.465081,19.325585],[-87.465688,19.325439],[-87.466447,19.325437],[-87.466699,19.325196],[-87.4671,19.3242],[-87.4694,19.3245],[-87.4704,19.3258],[-87.4711,19.3254],[-87.4717,19.3248],[-87.4721,19.3237],[-87.4725,19.3233],[-87.4732,19.3235],[-87.474,19.3248],[-87.4744,19.3245],[-87.4752,19.3241],[-87.4756,19.325],[-87.4765,19.3261],[-87.4781,19.3261],[-87.4791,19.3257],[-87.4794,19.3239],[-87.4798,19.3237],[-87.4808,19.3243],[-87.4824,19.3246],[-87.48879,19.326221],[-87.489808,19.326076],[-87.490212,19.325739],[-87.490413,19.325355],[-87.491271,19.324488],[-87.491776,19.324247],[-87.491774,19.323671],[-87.492886,19.32314],[-87.494606,19.323183],[-87.494706,19.322751],[-87.495565,19.322508],[-87.496174,19.323083],[-87.496933,19.323033],[-87.497304,19.322068],[-87.497926,19.32193],[-87.498309,19.321543],[-87.498716,19.321701],[-87.499437,19.322381],[-87.499512,19.323176],[-87.499992,19.323766],[-87.500713,19.324264],[-87.501599,19.32408],[-87.502602,19.323259],[-87.503009,19.323144],[-87.5038,19.323119],[-87.503991,19.322914],[-87.504876,19.322502],[-87.505619,19.322409],[-87.506216,19.32193],[-87.507125,19.321427],[-87.508678,19.320127],[-87.509755,19.319669],[-87.509871,19.31851],[-87.510468,19.317894],[-87.511043,19.317824],[-87.511353,19.317482],[-87.511518,19.316641],[-87.512307,19.31607],[-87.512736,19.315251],[-87.512781,19.314341],[-87.513473,19.313634],[-87.514093,19.3127],[-87.514151,19.312376],[-87.513644,19.311801],[-87.513541,19.311369],[-87.513841,19.310264],[-87.514597,19.309302],[-87.515254,19.309156],[-87.515606,19.308387],[-87.517072,19.308047],[-87.519042,19.307129],[-87.520205,19.30679],[-87.521265,19.306163],[-87.522933,19.305822],[-87.52435,19.305818],[-87.52617,19.305717],[-87.527122,19.306213],[-87.528741,19.306305],[-87.531171,19.306874],[-87.534258,19.307201],[-87.536028,19.306907],[-87.537647,19.307047],[-87.538911,19.306755],[-87.538757,19.306179],[-87.539716,19.305456],[-87.540979,19.304973],[-87.543048,19.303622],[-87.545121,19.303232],[-87.545789,19.303247],[-87.546385,19.30294],[-87.546586,19.302556],[-87.547996,19.300535],[-87.549308,19.299763],[-87.551076,19.298846],[-87.55173,19.297932],[-87.552689,19.297353],[-87.553952,19.296725],[-87.554254,19.296436],[-87.555367,19.296432],[-87.556211,19.296091],[-87.556511,19.295178],[-87.557219,19.294984],[-87.557673,19.294694],[-87.558278,19.293924],[-87.558392,19.293324],[-87.559179,19.292481],[-87.56035,19.291613],[-87.560972,19.291316],[-87.561928,19.290631],[-87.56231,19.290448],[-87.563003,19.289809],[-87.563431,19.288807],[-87.563979,19.28801],[-87.564478,19.287568],[-87.564526,19.287088],[-87.565133,19.286894],[-87.565686,19.286077],[-87.566493,19.285162],[-87.566943,19.283864],[-87.567041,19.282904],[-87.56744,19.281319],[-87.56828,19.280546],[-87.5687,19.279922],[-87.568748,19.279154],[-87.568997,19.278193],[-87.569855,19.277519],[-87.570611,19.276796],[-87.57278,19.275205],[-87.573589,19.275059],[-87.574019,19.274145],[-87.575393,19.273214],[-87.575653,19.272899],[-87.576382,19.272577],[-87.577128,19.271954],[-87.578249,19.271329],[-87.578622,19.270973],[-87.579458,19.270622],[-87.579723,19.270332],[-87.579756,19.269943],[-87.58013,19.269764],[-87.580767,19.269803],[-87.581342,19.269338],[-87.581413,19.268631],[-87.581783,19.268395],[-87.582181,19.267805],[-87.583649,19.267068],[-87.584422,19.266466],[-87.585542,19.265842],[-87.586713,19.264974],[-87.587265,19.264724],[-87.587407,19.264061],[-87.587872,19.263349],[-87.589737,19.261657],[-87.590484,19.261122],[-87.591183,19.260442],[-87.59104,19.2597],[-87.591505,19.2589],[-87.591689,19.258189],[-87.592089,19.257215],[-87.592461,19.25696],[-87.592677,19.256322],[-87.593422,19.255611],[-87.593896,19.254818],[-87.594519,19.254378],[-87.594857,19.25454],[-87.59523,19.254273],[-87.595695,19.253561],[-87.596068,19.253294],[-87.596308,19.25271],[-87.596964,19.251969],[-87.597518,19.251635],[-87.598127,19.251438],[-87.598749,19.251053],[-87.599007,19.250747],[-87.599646,19.250543],[-87.600678,19.249856],[-87.601034,19.249753],[-87.601416,19.249405],[-87.602122,19.249253],[-87.602504,19.248987],[-87.603537,19.249098],[-87.60503,19.248206],[-87.606428,19.24687],[-87.607175,19.246246],[-87.607454,19.24589],[-87.607918,19.244823],[-87.608476,19.244112],[-87.60894,19.243045],[-87.609789,19.242049],[-87.61127,19.240819],[-87.611988,19.240122],[-87.612444,19.238736],[-87.611434,19.239611],[-87.610706,19.239933],[-87.609959,19.240468],[-87.609635,19.241123],[-87.608891,19.241671],[-87.608654,19.241626],[-87.608281,19.241982],[-87.607816,19.242694],[-87.607412,19.243714],[-87.606743,19.244955],[-87.606368,19.245235],[-87.605584,19.246215],[-87.605161,19.246534],[-87.604557,19.246698],[-87.60381,19.247145],[-87.603436,19.247235],[-87.60269,19.247681],[-87.602222,19.247771],[-87.601849,19.248039],[-87.601101,19.248219],[-87.600354,19.248576],[-87.599234,19.24929],[-87.598767,19.249469],[-87.5983,19.24947],[-87.596243,19.249921],[-87.595495,19.249923],[-87.594654,19.250103],[-87.593907,19.250461],[-87.593161,19.251173],[-87.592977,19.251973],[-87.592791,19.252328],[-87.592793,19.253038],[-87.592423,19.254193],[-87.591771,19.254905],[-87.590929,19.254997],[-87.59018,19.254644],[-87.589431,19.254647],[-87.590065,19.256452],[-87.590241,19.257899],[-87.589719,19.259374],[-87.589025,19.260089],[-87.587853,19.259857],[-87.587604,19.260209],[-87.587862,19.260598],[-87.587772,19.261397],[-87.587586,19.261753],[-87.58684,19.262376],[-87.586655,19.263087],[-87.586096,19.263799],[-87.585723,19.263977],[-87.58507,19.264689],[-87.583951,19.26558],[-87.582646,19.266916],[-87.582272,19.267095],[-87.582086,19.26745],[-87.580965,19.26772],[-87.580217,19.268077],[-87.578725,19.269413],[-87.577823,19.269845],[-87.5778,19.269],[-87.5788,19.2671],[-87.5796,19.2665],[-87.5807,19.2645],[-87.5812,19.2629],[-87.5822,19.2623],[-87.5831,19.2615],[-87.5829,19.2594],[-87.5825,19.2579],[-87.5832,19.2561],[-87.5833,19.2543],[-87.5839,19.2543],[-87.586,19.2512],[-87.5856,19.2504],[-87.5857,19.2486],[-87.5866,19.2469],[-87.5867,19.2454],[-87.5874,19.2454],[-87.5882,19.2464],[-87.5891,19.2467],[-87.5898,19.2449],[-87.592,19.2421],[-87.592625,19.240664],[-87.5927,19.2387],[-87.593394,19.236855],[-87.595188,19.236511],[-87.5973,19.2366],[-87.598848,19.237385],[-87.5999,19.2367],[-87.6007,19.2355],[-87.6016,19.2353],[-87.6015,19.2344],[-87.60155,19.23365],[-87.6022,19.233],[-87.6032,19.2328],[-87.6043,19.232],[-87.6054,19.231],[-87.6065,19.2304],[-87.607,19.23],[-87.607,19.2285],[-87.6079,19.2273],[-87.6084,19.2271],[-87.6081,19.2258],[-87.6077,19.225],[-87.608,19.2233],[-87.6084,19.2221],[-87.6094,19.2206],[-87.6107,19.2194],[-87.6121,19.218],[-87.6133,19.2164],[-87.6138,19.2146],[-87.6138,19.2122],[-87.6144,19.2105],[-87.6153,19.2101],[-87.6171,19.2092],[-87.618,19.2077],[-87.6188,19.2046],[-87.6193,19.2021],[-87.6199,19.2009],[-87.6213,19.1993],[-87.6226,19.198],[-87.6227,19.1966],[-87.6233,19.1962],[-87.6237,19.1954],[-87.6238,19.194],[-87.6242,19.1928],[-87.6244,19.1917],[-87.6275,19.1882],[-87.628756,19.189962],[-87.630957,19.189225],[-87.633863,19.187916],[-87.6308,19.1858],[-87.63,19.1834],[-87.632366,19.182567],[-87.6327,19.1822],[-87.6336,19.1817],[-87.6337,19.1803],[-87.633615,19.179148],[-87.634531,19.17899],[-87.635742,19.178457],[-87.635892,19.177977],[-87.636244,19.177736],[-87.636852,19.178022],[-87.637258,19.178356],[-87.63746,19.178307],[-87.637457,19.177539],[-87.637759,19.177154],[-87.638113,19.177249],[-87.638317,19.177776],[-87.639277,19.177773],[-87.63943,19.178109],[-87.639738,19.179308],[-87.640547,19.179209],[-87.640701,19.180024],[-87.640197,19.180362],[-87.640249,19.180602],[-87.639542,19.180749],[-87.639137,19.180606],[-87.638332,19.181665],[-87.638535,19.181952],[-87.639245,19.182478],[-87.639244,19.182238],[-87.640053,19.182187],[-87.640105,19.182619],[-87.641469,19.182566],[-87.641773,19.182757],[-87.642278,19.182419],[-87.642884,19.182417],[-87.642984,19.182081],[-87.644602,19.182075],[-87.645156,19.181737],[-87.645865,19.182023],[-87.646018,19.182454],[-87.646878,19.182403],[-87.64757,19.182512],[-87.648091,19.182447],[-87.648494,19.182109],[-87.648593,19.181629],[-87.649501,19.18105],[-87.651319,19.180563],[-87.652018,19.180614],[-87.65301,19.180569],[-87.654014,19.180715],[-87.655191,19.181139],[-87.655517,19.181628],[-87.656622,19.18253],[-87.657872,19.18389],[-87.65833,19.184729],[-87.658911,19.186273],[-87.65857,19.186534],[-87.658134,19.187557],[-87.658062,19.187992],[-87.657497,19.189256],[-87.657179,19.190136],[-87.658816,19.190316],[-87.659471,19.190707],[-87.659887,19.190746],[-87.660671,19.190239],[-87.66116,19.189313],[-87.66134,19.188647],[-87.661892,19.188479],[-87.662221,19.189213],[-87.662189,19.189763],[-87.662628,19.189836],[-87.66293,19.189499],[-87.66313,19.18897],[-87.664494,19.188869],[-87.664492,19.188197],[-87.664925,19.187867],[-87.665451,19.187953],[-87.665757,19.18848],[-87.66606,19.188527],[-87.666213,19.188911],[-87.665964,19.190182],[-87.666171,19.191071],[-87.666475,19.191118],[-87.666979,19.190828],[-87.667294,19.19092],[-87.667473,19.190416],[-87.667735,19.190249],[-87.668241,19.190295],[-87.668846,19.189957],[-87.669048,19.190004],[-87.669557,19.190723],[-87.670111,19.190241],[-87.670817,19.189854],[-87.670822,19.191102],[-87.670435,19.191257],[-87.670429,19.192034],[-87.670777,19.192494],[-87.671333,19.192492],[-87.671939,19.192346],[-87.672345,19.192729],[-87.672449,19.1934],[-87.673207,19.193398],[-87.673512,19.193636],[-87.673615,19.194164],[-87.673364,19.194693],[-87.673317,19.195461],[-87.673672,19.195844],[-87.673673,19.196084],[-87.674029,19.196419],[-87.673373,19.196757],[-87.673073,19.197622],[-87.672567,19.197528],[-87.672111,19.197146],[-87.671957,19.196618],[-87.672411,19.196377],[-87.672431,19.19547],[-87.672026,19.195446],[-87.67137,19.195779],[-87.670982,19.196305],[-87.670658,19.197171],[-87.670138,19.197084],[-87.669414,19.197796],[-87.669288,19.199269],[-87.669441,19.19946],[-87.670067,19.198823],[-87.670903,19.198687],[-87.671663,19.199068],[-87.672071,19.199786],[-87.672372,19.199401],[-87.673503,19.199476],[-87.6749,19.19944],[-87.675205,19.199727],[-87.676163,19.199099],[-87.676992,19.198903],[-87.677449,19.198936],[-87.677907,19.199196],[-87.678491,19.199907],[-87.677889,19.199864],[-87.677136,19.200651],[-87.677014,19.201065],[-87.676591,19.201646],[-87.675788,19.202104],[-87.675762,19.202892],[-87.675544,19.203149],[-87.67491,19.204575],[-87.673778,19.205323],[-87.673874,19.205766],[-87.674339,19.206366],[-87.675586,19.205963],[-87.676646,19.205431],[-87.677605,19.205235],[-87.677836,19.205035],[-87.678658,19.205312],[-87.679097,19.205905],[-87.679195,19.206243],[-87.67873,19.207381],[-87.679534,19.207004],[-87.680166,19.207005],[-87.680596,19.207193],[-87.6812,19.206614],[-87.681199,19.206278],[-87.680592,19.206136],[-87.68049,19.205897],[-87.680842,19.205607],[-87.681448,19.205461],[-87.682104,19.204979],[-87.683014,19.205023],[-87.683072,19.206053],[-87.68275,19.206827],[-87.682416,19.207282],[-87.681659,19.207429],[-87.682205,19.208314],[-87.68222,19.208723],[-87.68247,19.210128],[-87.68233,19.21093],[-87.682609,19.211852],[-87.682655,19.212595],[-87.682309,19.213624],[-87.682014,19.2139],[-87.681476,19.214089],[-87.680555,19.214776],[-87.679682,19.215575],[-87.679344,19.215697],[-87.678674,19.215695],[-87.677813,19.216035],[-87.677295,19.216428],[-87.676989,19.217161],[-87.67709,19.218164],[-87.67685,19.219096],[-87.67716,19.219166],[-87.677855,19.218347],[-87.678472,19.218311],[-87.679143,19.218037],[-87.6802,19.218163],[-87.681617,19.218793],[-87.682159,19.219913],[-87.683345,19.220826],[-87.68415,19.220619],[-87.684501,19.220081],[-87.684043,19.219678],[-87.683512,19.219686],[-87.683375,19.219337],[-87.682745,19.218686],[-87.683012,19.218277],[-87.683764,19.218325],[-87.684036,19.219039],[-87.684573,19.219139],[-87.685273,19.219595],[-87.685545,19.220206],[-87.686137,19.220459],[-87.685872,19.220657],[-87.685556,19.221193],[-87.685283,19.221332],[-87.685177,19.222146],[-87.684611,19.222797],[-87.683618,19.223063],[-87.68328,19.223336],[-87.682428,19.223317],[-87.681112,19.222914],[-87.679641,19.222578],[-87.678847,19.222894],[-87.677291,19.22255],[-87.67689,19.223202],[-87.675779,19.223754],[-87.674981,19.223524],[-87.674698,19.22361],[-87.674126,19.223381],[-87.673819,19.223537],[-87.673741,19.223871],[-87.67372,19.225933],[-87.673644,19.226371],[-87.673597,19.227952],[-87.674942,19.228508],[-87.676397,19.229676],[-87.677633,19.229824],[-87.679419,19.229466],[-87.680871,19.23003],[-87.681772,19.229468],[-87.6865,19.2309],[-87.685938,19.232632],[-87.686573,19.233757],[-87.686851,19.234752],[-87.685934,19.235626],[-87.685471,19.236924],[-87.6834,19.2394],[-87.6815,19.2404],[-87.680057,19.24131],[-87.678154,19.242839],[-87.676758,19.244495],[-87.676124,19.24624],[-87.6744,19.2489],[-87.6721,19.2514],[-87.671,19.2522],[-87.6699,19.2524],[-87.6692,19.2529],[-87.6686,19.2543],[-87.6678,19.2553],[-87.6664,19.2575],[-87.6654,19.2579],[-87.664,19.2595],[-87.6625,19.2602],[-87.6612,19.2607],[-87.6611,19.2617],[-87.6598,19.2668],[-87.6584,19.2741],[-87.6582,19.2777],[-87.6579,19.2821],[-87.659017,19.284398],[-87.659067,19.285121],[-87.659407,19.285648],[-87.659923,19.287405],[-87.661061,19.287872],[-87.662474,19.289148],[-87.6638,19.2897],[-87.6649,19.2908],[-87.667169,19.290996],[-87.6684,19.2914],[-87.6691,19.293],[-87.6692,19.295],[-87.667516,19.297394],[-87.663767,19.298711],[-87.6612,19.3004],[-87.659229,19.301822],[-87.657166,19.302218],[-87.656269,19.302798],[-87.6564,19.3069],[-87.6562,19.3098],[-87.6558,19.3142],[-87.655,19.3198],[-87.653436,19.327416],[-87.6526,19.3309],[-87.6514,19.3349],[-87.6505,19.338],[-87.650181,19.339346],[-87.6492,19.3405],[-87.6481,19.3417],[-87.6479,19.3427],[-87.646191,19.345737],[-87.6453,19.3479],[-87.6442,19.3529],[-87.6419,19.3595],[-87.6408,19.362],[-87.6398,19.3639],[-87.6386,19.3678],[-87.6373,19.3711],[-87.635955,19.373434],[-87.633845,19.374878],[-87.632,19.376],[-87.63065,19.376471],[-87.6297,19.3767],[-87.6285,19.3777],[-87.627177,19.37942],[-87.625545,19.380315],[-87.624241,19.380554],[-87.62275,19.381171],[-87.620512,19.381721],[-87.618916,19.381816],[-87.618337,19.382756],[-87.618099,19.383374],[-87.61782,19.383531],[-87.617441,19.384059],[-87.617323,19.384514],[-87.616591,19.385557],[-87.616151,19.385579],[-87.615755,19.386128],[-87.615125,19.386429],[-87.614416,19.386973],[-87.613674,19.387408],[-87.612956,19.387706],[-87.612408,19.38839],[-87.611276,19.389297],[-87.611023,19.389414],[-87.610043,19.390626],[-87.609807,19.391468],[-87.609379,19.392424],[-87.608718,19.39311],[-87.608687,19.393358],[-87.607684,19.394339],[-87.607327,19.394909],[-87.606418,19.39548],[-87.605872,19.396203],[-87.60532,19.396711],[-87.604092,19.397488],[-87.603479,19.398082],[-87.602454,19.398513],[-87.602024,19.398923],[-87.60158,19.398835],[-87.600607,19.398132],[-87.600272,19.398361],[-87.599533,19.399591],[-87.598746,19.400639],[-87.597671,19.401711],[-87.597257,19.401956],[-87.596477,19.402829],[-87.595664,19.403423],[-87.594731,19.403835],[-87.594516,19.404041],[-87.59375,19.404293],[-87.59327,19.404226],[-87.592597,19.403666],[-87.590653,19.403098],[-87.589743,19.403283],[-87.589098,19.403839],[-87.588714,19.403741],[-87.58838,19.404151],[-87.587185,19.405292],[-87.586613,19.405999],[-87.585745,19.406384],[-87.585274,19.406958],[-87.584394,19.407819],[-87.58424,19.408151],[-87.583172,19.408965],[-87.582566,19.408895],[-87.581975,19.409583],[-87.581329,19.410068],[-87.580444,19.410474],[-87.57927,19.410683],[-87.578913,19.411275],[-87.578029,19.412096],[-87.577633,19.412857],[-87.577194,19.413236],[-87.576667,19.413419],[-87.576307,19.413978],[-87.575807,19.414081],[-87.57547,19.4139],[-87.574311,19.414822],[-87.573676,19.414719],[-87.572455,19.415064],[-87.571905,19.415589],[-87.571522,19.415749],[-87.570275,19.415594],[-87.569903,19.415939],[-87.569174,19.415984],[-87.568337,19.416399],[-87.568024,19.416238],[-87.565558,19.417155],[-87.564627,19.418158],[-87.563909,19.418501],[-87.562321,19.419736],[-87.562068,19.420053],[-87.560945,19.421079],[-87.560778,19.421421],[-87.560253,19.421968],[-87.558365,19.423611],[-87.556533,19.424555],[-87.556331,19.424867],[-87.555615,19.42557],[-87.555186,19.426371],[-87.554588,19.426782],[-87.553869,19.427012],[-87.553219,19.426104],[-87.552361,19.425768],[-87.551951,19.425041],[-87.550898,19.425454],[-87.548865,19.426915],[-87.548438,19.427427],[-87.547453,19.427806],[-87.54695,19.42783],[-87.546444,19.427036],[-87.546132,19.427082],[-87.545488,19.428016],[-87.544388,19.428656],[-87.543908,19.428612],[-87.543281,19.427568],[-87.542732,19.428184],[-87.54254,19.428207],[-87.542155,19.427731],[-87.541772,19.427959],[-87.541244,19.427779],[-87.540525,19.427736],[-87.539615,19.42817],[-87.538417,19.428072],[-87.537873,19.42825],[-87.537289,19.428086],[-87.536211,19.428294],[-87.535399,19.429047],[-87.535373,19.428547],[-87.53554,19.428182],[-87.536688,19.427451],[-87.537836,19.42663],[-87.538146,19.426197],[-87.539079,19.425557],[-87.539437,19.425102],[-87.539531,19.424579],[-87.54008,19.423622],[-87.540438,19.423257],[-87.540842,19.422051],[-87.541604,19.420753],[-87.541889,19.419911],[-87.542273,19.419842],[-87.543112,19.419975],[-87.543785,19.42061],[-87.544145,19.420473],[-87.54443,19.419903],[-87.544933,19.419811],[-87.545364,19.41956],[-87.546274,19.419329],[-87.547137,19.419281],[-87.547471,19.418712],[-87.547829,19.418393],[-87.547811,19.417791],[-87.547389,19.417179],[-87.547053,19.417044],[-87.546148,19.417245],[-87.545406,19.417007],[-87.54528,19.417239],[-87.546115,19.417932],[-87.546117,19.418234],[-87.545525,19.418935],[-87.545141,19.418963],[-87.544902,19.418755],[-87.544328,19.419189],[-87.544136,19.419167],[-87.543514,19.419532],[-87.543011,19.419625],[-87.542447,19.419418],[-87.54216,19.419536],[-87.540765,19.419127],[-87.539435,19.418567],[-87.539267,19.418408],[-87.539673,19.417862],[-87.539647,19.41743],[-87.539359,19.417203],[-87.539309,19.416635],[-87.539547,19.416089],[-87.539257,19.415407],[-87.539254,19.414566],[-87.539157,19.414089],[-87.538645,19.413509],[-87.538132,19.413282],[-87.538531,19.413945],[-87.538534,19.414227],[-87.537936,19.414525],[-87.537813,19.413616],[-87.538209,19.411423],[-87.538466,19.410861],[-87.538519,19.409681],[-87.53878,19.408975],[-87.539186,19.408519],[-87.539711,19.407676],[-87.539828,19.406971],[-87.539611,19.406449],[-87.539489,19.404756],[-87.539875,19.4031],[-87.54028,19.402436],[-87.540561,19.401287],[-87.541468,19.39992],[-87.541754,19.399692],[-87.541872,19.398873],[-87.542181,19.39819],[-87.542611,19.397848],[-87.54309,19.397824],[-87.543449,19.397573],[-87.54424,19.397434],[-87.545314,19.397926],[-87.545635,19.398839],[-87.545684,19.399385],[-87.546141,19.399611],[-87.546452,19.399587],[-87.546666,19.398973],[-87.546353,19.398724],[-87.546423,19.398155],[-87.547071,19.398176],[-87.547407,19.398402],[-87.547694,19.398288],[-87.547596,19.39756],[-87.547308,19.397448],[-87.546922,19.39688],[-87.547305,19.396447],[-87.547569,19.39656],[-87.547858,19.397059],[-87.548385,19.397126],[-87.54858,19.397898],[-87.548986,19.39767],[-87.549105,19.397238],[-87.548913,19.397079],[-87.548934,19.396397],[-87.548598,19.396261],[-87.549124,19.39576],[-87.551185,19.395822],[-87.552934,19.395589],[-87.552405,19.395068],[-87.552093,19.394955],[-87.551375,19.395185],[-87.550799,19.394823],[-87.550725,19.394459],[-87.552088,19.393455],[-87.552591,19.39343],[-87.553357,19.39286],[-87.554051,19.392653],[-87.55513,19.392672],[-87.555707,19.393239],[-87.55597,19.393238],[-87.55664,19.39269],[-87.557501,19.39271],[-87.557911,19.393277],[-87.557698,19.394096],[-87.557747,19.39446],[-87.558853,19.395502],[-87.559308,19.395478],[-87.559666,19.395022],[-87.560626,19.395201],[-87.561011,19.395723],[-87.561202,19.395608],[-87.561176,19.394858],[-87.560479,19.394247],[-87.561006,19.394199],[-87.5618,19.395038],[-87.561754,19.395629],[-87.562333,19.396628],[-87.562956,19.396626],[-87.563796,19.396964],[-87.56471,19.397125],[-87.564941,19.396692],[-87.564755,19.39546],[-87.564758,19.394185],[-87.564565,19.39389],[-87.563845,19.393665],[-87.562933,19.393259],[-87.561997,19.393012],[-87.56135,19.392991],[-87.559816,19.393109],[-87.559837,19.392245],[-87.558301,19.391682],[-87.557031,19.391549],[-87.555065,19.391441],[-87.55425,19.391489],[-87.553388,19.391651],[-87.552288,19.392518],[-87.550828,19.393068],[-87.550183,19.393571],[-87.549517,19.393615],[-87.549229,19.393457],[-87.548771,19.392867],[-87.547573,19.392962],[-87.547548,19.392689],[-87.547955,19.392529],[-87.548794,19.392503],[-87.549322,19.392684],[-87.549272,19.391956],[-87.548817,19.392117],[-87.548145,19.392005],[-87.547689,19.39162],[-87.545411,19.391581],[-87.543519,19.391746],[-87.542514,19.392318],[-87.54146,19.392571],[-87.540478,19.392687],[-87.539783,19.392917],[-87.538681,19.393011],[-87.537195,19.392947],[-87.536499,19.392745],[-87.535085,19.392703],[-87.533887,19.392798],[-87.532616,19.392824],[-87.531587,19.393077],[-87.530725,19.393535],[-87.530174,19.393695],[-87.529359,19.393698],[-87.528713,19.394041],[-87.527875,19.394316],[-87.527301,19.394681],[-87.526296,19.395071],[-87.525602,19.39555],[-87.525067,19.395635],[-87.523896,19.396821],[-87.523704,19.396753],[-87.523274,19.397027],[-87.523179,19.397369],[-87.522797,19.397779],[-87.522055,19.398259],[-87.521172,19.399443],[-87.520574,19.399922],[-87.520074,19.400811],[-87.519596,19.401244],[-87.519072,19.402246],[-87.518787,19.403088],[-87.518213,19.403658],[-87.517857,19.404614],[-87.517189,19.405843],[-87.516473,19.40655],[-87.5159,19.40737],[-87.515471,19.408235],[-87.51497,19.408941],[-87.514375,19.410216],[-87.513777,19.410604],[-87.513276,19.411515],[-87.512989,19.411743],[-87.511665,19.413632],[-87.510445,19.414568],[-87.509824,19.415252],[-87.508941,19.416504],[-87.508367,19.417006],[-87.50777,19.417781],[-87.506982,19.41867],[-87.5066,19.419307],[-87.506243,19.420218],[-87.506244,19.420513],[-87.505839,19.421083],[-87.505028,19.422654],[-87.503977,19.423884],[-87.503691,19.424431],[-87.503166,19.425046],[-87.502471,19.425298],[-87.502162,19.426095],[-87.501731,19.426209],[-87.500876,19.42682],[-87.500686,19.427207],[-87.499969,19.428073],[-87.499443,19.428597],[-87.499325,19.42903],[-87.498847,19.429758],[-87.49801,19.430466],[-87.497939,19.430648],[-87.497126,19.431446],[-87.496791,19.431606],[-87.496315,19.432675],[-87.496052,19.432926],[-87.495405,19.433155],[-87.494473,19.434158],[-87.493707,19.434547],[-87.493421,19.434889],[-87.49299,19.435094],[-87.492464,19.435732],[-87.492226,19.43621],[-87.491461,19.436804],[-87.489786,19.437899],[-87.489164,19.438447],[-87.487487,19.439042],[-87.486459,19.43975],[-87.48538,19.439821],[-87.484829,19.440163],[-87.484446,19.440187],[-87.483273,19.44085],[-87.482434,19.440966],[-87.481139,19.440855],[-87.480709,19.441402],[-87.480374,19.44163],[-87.479536,19.441951],[-87.479057,19.441975],[-87.47872,19.441771],[-87.477475,19.442138],[-87.476995,19.442117],[-87.47575,19.442825],[-87.475319,19.442822],[-87.474673,19.443188],[-87.474002,19.443394],[-87.473404,19.443714],[-87.472829,19.443875],[-87.471609,19.444833],[-87.471106,19.444925],[-87.470268,19.445518],[-87.469122,19.446999],[-87.468714,19.447205],[-87.468045,19.447934],[-87.467831,19.448344],[-87.467233,19.4488],[-87.466732,19.44987],[-87.465871,19.450645],[-87.465299,19.451692],[-87.464988,19.451989],[-87.464654,19.452649],[-87.46384,19.453083],[-87.463312,19.453016],[-87.462929,19.453176],[-87.462571,19.453745],[-87.461613,19.454157],[-87.461398,19.45443],[-87.459961,19.454866],[-87.458884,19.455573],[-87.458477,19.456097],[-87.458287,19.456666],[-87.457761,19.457054],[-87.457604,19.457779],[-87.457174,19.458076],[-87.456551,19.458237],[-87.455762,19.459012],[-87.455427,19.459444],[-87.454517,19.459856],[-87.453967,19.46038],[-87.45277,19.460997],[-87.45234,19.461521],[-87.451454,19.462296],[-87.451025,19.46307],[-87.450642,19.463253],[-87.450092,19.463777],[-87.449852,19.463846],[-87.449278,19.464439],[-87.448417,19.464986],[-87.447962,19.465374],[-87.446958,19.46649],[-87.446409,19.467378],[-87.445642,19.467608],[-87.44538,19.468313],[-87.444997,19.468655],[-87.444351,19.468929],[-87.443584,19.468977],[-87.440874,19.468915],[-87.440203,19.469031],[-87.439965,19.469963],[-87.439417,19.471238],[-87.439136,19.473807],[-87.438706,19.474309],[-87.438677,19.475012],[-87.438345,19.476423],[-87.438229,19.477651],[-87.437753,19.479016],[-87.43773,19.479584],[-87.437323,19.479881],[-87.437182,19.480904],[-87.436179,19.482339],[-87.435535,19.483659],[-87.435224,19.483819],[-87.434746,19.484525],[-87.43411,19.485073],[-87.433594,19.485197],[-87.432656,19.486118],[-87.432675,19.488017],[-87.432419,19.488943],[-87.432559,19.489389],[-87.432484,19.490263],[-87.43187,19.490424],[-87.430954,19.492553],[-87.430601,19.492889],[-87.430419,19.493661],[-87.429989,19.493793],[-87.429484,19.495438],[-87.428939,19.498411],[-87.428709,19.49863],[-87.428607,19.500814],[-87.429487,19.502298],[-87.429396,19.502647],[-87.430074,19.503592],[-87.43032,19.503606],[-87.430722,19.504465],[-87.430692,19.504916],[-87.430987,19.505569],[-87.431019,19.506399],[-87.431314,19.507199],[-87.431099,19.507287],[-87.431441,19.508801],[-87.431195,19.508874],[-87.431553,19.510505],[-87.431605,19.512674],[-87.431698,19.51314],[-87.431607,19.513577],[-87.431645,19.514957],[-87.431353,19.514972],[-87.431296,19.516647],[-87.431081,19.51672],[-87.431023,19.518002],[-87.430594,19.518367],[-87.430428,19.519708],[-87.430151,19.51965],[-87.429278,19.520526],[-87.429156,19.521152],[-87.428742,19.521168],[-87.428299,19.522145],[-87.427991,19.522029],[-87.427316,19.522482],[-87.42724,19.522832],[-87.426699,19.523472],[-87.42727,19.524709],[-87.427149,19.525102],[-87.427595,19.525553],[-87.4278,19.527489],[-87.428063,19.527955],[-87.42782,19.529193],[-87.427529,19.529543],[-87.427779,19.530912],[-87.427456,19.531087],[-87.427286,19.532205],[-87.426583,19.533546],[-87.426229,19.533518],[-87.425893,19.534262],[-87.424651,19.535211],[-87.424775,19.53559],[-87.424545,19.536056],[-87.424069,19.536057],[-87.423625,19.536932],[-87.423566,19.537573],[-87.422753,19.538478],[-87.422648,19.539337],[-87.422944,19.540647],[-87.42336,19.541214],[-87.423207,19.541767],[-87.423777,19.54248],[-87.423872,19.543412],[-87.424214,19.544998],[-87.424553,19.545187],[-87.424092,19.545261],[-87.42414,19.546047],[-87.424525,19.546119],[-87.424666,19.547342],[-87.42459,19.547531],[-87.424548,19.549119],[-87.424118,19.549265],[-87.42409,19.550416],[-87.424213,19.550561],[-87.423814,19.550795],[-87.423831,19.551436],[-87.423266,19.552208],[-87.423191,19.552689],[-87.422717,19.553564],[-87.422409,19.55355],[-87.422195,19.553842],[-87.422211,19.554264],[-87.421736,19.554789],[-87.421737,19.555037],[-87.421261,19.555417],[-87.421247,19.555999],[-87.421079,19.556306],[-87.421218,19.556655],[-87.420713,19.557224],[-87.420497,19.55721],[-87.419946,19.557997],[-87.419469,19.557838],[-87.41927,19.558086],[-87.418655,19.558102],[-87.418301,19.557812],[-87.418316,19.557594],[-87.417762,19.557274],[-87.417055,19.557291],[-87.416625,19.557656],[-87.41649,19.558894],[-87.416509,19.560379],[-87.416202,19.560628],[-87.416212,19.562008],[-87.415951,19.562023],[-87.415538,19.562898],[-87.415277,19.562942],[-87.415079,19.563685],[-87.414787,19.563686],[-87.414327,19.564066],[-87.41419,19.564736],[-87.41433,19.5651],[-87.414008,19.565392],[-87.414286,19.565988],[-87.414248,19.569207],[-87.414033,19.569222],[-87.413806,19.570635],[-87.413466,19.571072],[-87.413502,19.573125],[-87.41386,19.574741],[-87.413691,19.574916],[-87.413619,19.576824],[-87.413608,19.57831],[-87.413409,19.578645],[-87.413365,19.579563],[-87.41303,19.581556],[-87.413048,19.58275],[-87.412419,19.583174],[-87.412436,19.58361],[-87.412146,19.584499],[-87.411812,19.586219],[-87.411784,19.587238],[-87.411523,19.58753],[-87.411632,19.587937],[-87.411632,19.589669],[-87.411341,19.589931],[-87.41136,19.5913],[-87.410776,19.591622],[-87.410639,19.591957],[-87.411347,19.592407],[-87.411364,19.592946],[-87.411088,19.59318],[-87.411519,19.593601],[-87.411505,19.594038],[-87.411244,19.594272],[-87.41114,19.595626],[-87.410648,19.595715],[-87.410652,19.597229],[-87.410315,19.59755],[-87.410379,19.598409],[-87.411883,19.59973],[-87.411792,19.600342],[-87.411962,19.600807],[-87.412655,19.601286],[-87.414191,19.600642],[-87.415175,19.600698],[-87.415591,19.600974],[-87.416436,19.60087],[-87.416514,19.601219],[-87.415947,19.60189],[-87.416917,19.602296],[-87.417763,19.602556],[-87.418041,19.602905],[-87.418979,19.602961],[-87.419919,19.604036],[-87.420462,19.605652],[-87.420417,19.606162],[-87.420818,19.606583],[-87.421251,19.607572],[-87.421974,19.607935],[-87.422222,19.608385],[-87.422776,19.608719],[-87.423007,19.609083],[-87.422968,19.609606],[-87.423524,19.610639],[-87.424723,19.610432],[-87.425031,19.610737],[-87.423666,19.611862],[-87.424237,19.612822],[-87.424301,19.613783],[-87.424979,19.614218],[-87.425026,19.614684],[-87.425505,19.615498],[-87.426107,19.616108],[-87.425985,19.616691],[-87.426448,19.6172],[-87.426986,19.617257],[-87.428313,19.618928],[-87.429621,19.619406],[-87.429697,19.619609],[-87.431084,19.620945],[-87.432545,19.621058],[-87.432762,19.621495],[-87.433899,19.62139],[-87.434162,19.621753],[-87.435315,19.621911],[-87.436303,19.623103],[-87.436949,19.623436],[-87.43786,19.624541],[-87.438798,19.624859],[-87.439278,19.625775],[-87.440233,19.626676],[-87.441573,19.627328],[-87.441651,19.627837],[-87.442943,19.62795],[-87.443807,19.62872],[-87.44453,19.628951],[-87.444592,19.629315],[-87.445539,19.629851],[-87.446847,19.630459],[-87.448712,19.632071],[-87.448559,19.63229],[-87.449053,19.632915],[-87.449131,19.633425],[-87.449625,19.634137],[-87.449457,19.63437],[-87.45003,19.635753],[-87.4498,19.635913],[-87.449971,19.636889],[-87.450187,19.636859],[-87.45048,19.637251],[-87.450284,19.638752],[-87.450517,19.63945],[-87.451588,19.640233],[-87.451896,19.640728],[-87.452404,19.640755],[-87.452853,19.641686],[-87.453041,19.643069],[-87.453021,19.646914],[-87.453332,19.647976],[-87.454454,19.648017],[-87.45453,19.647595],[-87.454992,19.647637],[-87.454848,19.645934],[-87.455186,19.645642],[-87.455427,19.644089],[-87.455349,19.643579],[-87.455639,19.642676],[-87.456162,19.642718],[-87.456563,19.643241],[-87.457255,19.643021],[-87.457069,19.642701],[-87.456804,19.64126],[-87.456973,19.641201],[-87.457109,19.640589],[-87.456429,19.639455],[-87.456688,19.638566],[-87.456702,19.638115],[-87.456177,19.637082],[-87.456128,19.636237],[-87.455589,19.635889],[-87.455509,19.634768],[-87.454722,19.633955],[-87.454417,19.634684],[-87.453709,19.634714],[-87.453697,19.635734],[-87.453329,19.635968],[-87.45356,19.636317],[-87.453562,19.637001],[-87.454116,19.637233],[-87.454502,19.637596],[-87.45398,19.637918],[-87.453348,19.637584],[-87.452978,19.637105],[-87.453039,19.636755],[-87.452342,19.635097],[-87.452325,19.634572],[-87.452133,19.633787],[-87.451226,19.633818],[-87.450887,19.633339],[-87.451312,19.631532],[-87.450728,19.631533],[-87.449649,19.630866],[-87.449033,19.630372],[-87.449462,19.629716],[-87.449535,19.628361],[-87.449641,19.627983],[-87.449441,19.627765],[-87.448934,19.627955],[-87.448564,19.627621],[-87.448301,19.627127],[-87.447594,19.627041],[-87.447607,19.626182],[-87.446591,19.625995],[-87.446142,19.624933],[-87.446351,19.624265],[-87.445905,19.624237],[-87.445148,19.622768],[-87.446515,19.622123],[-87.445784,19.621435],[-87.4457,19.62],[-87.4474,19.6199],[-87.4482,19.6193],[-87.4497,19.6176],[-87.4503,19.6164],[-87.4525,19.6176],[-87.4543,19.6172],[-87.4562,19.6158],[-87.4593,19.6121],[-87.4607,19.6094],[-87.4623,19.6073],[-87.4613,19.6063],[-87.4603,19.6063],[-87.4599,19.6079],[-87.4583,19.6083],[-87.4576,19.6065],[-87.4571,19.6046],[-87.4562,19.6028],[-87.4572,19.6008],[-87.4557,19.601],[-87.4544,19.6022],[-87.4532,19.6021],[-87.4519,19.6007],[-87.4516,19.5995],[-87.4525,19.5991],[-87.4525,19.5982],[-87.4515,19.5976],[-87.4517,19.596],[-87.4534,19.596],[-87.4539,19.5946],[-87.4586,19.5948],[-87.4616,19.593],[-87.4646,19.5932],[-87.4658,19.592],[-87.469,19.5914],[-87.4705,19.5902],[-87.4723,19.5907],[-87.4743,19.5918],[-87.4755,19.5913],[-87.4757,19.5902],[-87.4762,19.5889],[-87.4819,19.5879],[-87.483921,19.589],[-87.488476,19.589521],[-87.490225,19.590263],[-87.492605,19.589672],[-87.4921,19.5879],[-87.4929,19.5872],[-87.4949,19.5873],[-87.4954,19.5858],[-87.4966,19.5857],[-87.4981,19.5875],[-87.4991,19.5871],[-87.5002,19.5877],[-87.5005,19.589],[-87.500118,19.589959],[-87.5011,19.5905],[-87.5027,19.5901],[-87.504788,19.590132],[-87.5042,19.5885],[-87.5065,19.5877],[-87.5072,19.5867],[-87.5049,19.5847],[-87.5037,19.5828],[-87.5028,19.5824],[-87.502,19.5806],[-87.5037,19.5807],[-87.5068,19.5814],[-87.5087,19.5818],[-87.5098,19.58],[-87.5093,19.5785],[-87.5099,19.5764],[-87.5085,19.5761],[-87.5073,19.5751],[-87.5045,19.5746],[-87.5028,19.5757],[-87.4989,19.5741],[-87.4967,19.5736],[-87.4942,19.5721],[-87.4929,19.5715],[-87.4924,19.5707],[-87.4939,19.5697],[-87.4953,19.5696],[-87.4973,19.5706],[-87.4988,19.5695],[-87.5,19.5693],[-87.5014,19.5701],[-87.5025,19.5704],[-87.5039,19.5693],[-87.5052,19.5687],[-87.5068,19.5683],[-87.5072,19.5647],[-87.5079,19.5641],[-87.509,19.5643],[-87.5094,19.5646],[-87.5103,19.5649],[-87.5115,19.5647],[-87.5124,19.5639],[-87.5142,19.5636],[-87.515,19.5631],[-87.5155,19.5616],[-87.5165,19.5609],[-87.5172,19.5593],[-87.5181,19.5581],[-87.5189,19.5574],[-87.5191,19.5557],[-87.5207,19.5537],[-87.5213,19.5513],[-87.5217,19.5506],[-87.5229,19.5494],[-87.5237,19.5489],[-87.5237,19.5483],[-87.5245,19.5473],[-87.5255,19.5464],[-87.5257,19.5454],[-87.525204,19.544679],[-87.5256,19.5431],[-87.5249,19.5415],[-87.5257,19.5405],[-87.5266,19.5406],[-87.5272,19.541],[-87.5271,19.5424],[-87.5279,19.5431],[-87.5298,19.5431],[-87.5302,19.5436],[-87.5308,19.5439],[-87.5311,19.5442],[-87.531,19.5446],[-87.5313,19.5451],[-87.5332,19.5456],[-87.5344,19.5458],[-87.5354,19.5456],[-87.5368,19.5466],[-87.5364,19.5469],[-87.5353,19.5471],[-87.5347,19.5478],[-87.5345,19.5488],[-87.5347,19.5494],[-87.5356,19.5491],[-87.5362,19.5496],[-87.5363,19.5504],[-87.5359,19.5511],[-87.5352,19.5512],[-87.5345,19.5515],[-87.5338,19.552],[-87.5334,19.5529],[-87.5331,19.5544],[-87.5331,19.5555],[-87.5336,19.5562],[-87.5336,19.5572],[-87.5315,19.5577],[-87.5313,19.5588],[-87.531827,19.561131],[-87.531461,19.561964],[-87.531933,19.562089],[-87.53318,19.561387],[-87.533993,19.561089],[-87.534366,19.56032],[-87.5348,19.5592],[-87.5349,19.5581],[-87.5353,19.5574],[-87.5361,19.5573],[-87.5368,19.5577],[-87.5381,19.5577],[-87.5383,19.5582],[-87.5379,19.559],[-87.5379,19.5597],[-87.5397,19.5605],[-87.540047,19.560755],[-87.540012,19.561512],[-87.540395,19.561645],[-87.540869,19.560949],[-87.541756,19.560924],[-87.542284,19.560809],[-87.543819,19.560781],[-87.545162,19.561157],[-87.546083,19.561792],[-87.547118,19.562928],[-87.547803,19.563392],[-87.549229,19.564803],[-87.549712,19.565618],[-87.550417,19.566099],[-87.551008,19.565967],[-87.551561,19.565407],[-87.553038,19.564649],[-87.553876,19.564123],[-87.554883,19.563802],[-87.556195,19.563507],[-87.557736,19.563248],[-87.558421,19.563075],[-87.559789,19.562963],[-87.56062,19.562737],[-87.561394,19.562723],[-87.563348,19.562503],[-87.564667,19.562158],[-87.566537,19.561811],[-87.568533,19.561217],[-87.568906,19.560933],[-87.571415,19.560409],[-87.572646,19.560262],[-87.573533,19.560009],[-87.57507,19.559685],[-87.575618,19.559298],[-87.576313,19.559023],[-87.576889,19.559021],[-87.577454,19.558862],[-87.578022,19.558494],[-87.578978,19.557533],[-87.579426,19.557285],[-87.58072,19.557031],[-87.581446,19.556711],[-87.582502,19.556453],[-87.58483,19.556227],[-87.587353,19.555845],[-87.589751,19.555542],[-87.590566,19.55538],[-87.592106,19.555207],[-87.594574,19.555369],[-87.596606,19.555363],[-87.597187,19.555085],[-87.59805,19.554911],[-87.599264,19.554888],[-87.599737,19.554742],[-87.601887,19.554433],[-87.602701,19.554135],[-87.603149,19.554095],[-87.604164,19.553766],[-87.604851,19.553711],[-87.605982,19.55378],[-87.606704,19.553613],[-87.607334,19.553605],[-87.608565,19.553757],[-87.609333,19.553932],[-87.609619,19.55411],[-87.610233,19.554055],[-87.61068,19.553008],[-87.61173,19.553042],[-87.613127,19.552932],[-87.613808,19.552755],[-87.614518,19.552768],[-87.615266,19.552484],[-87.616128,19.5518],[-87.617463,19.551212],[-87.617918,19.550847],[-87.618508,19.550101],[-87.619425,19.549796],[-87.619905,19.549726],[-87.620288,19.549497],[-87.621198,19.549211],[-87.62216,19.548481],[-87.623397,19.547916],[-87.624653,19.546967],[-87.625226,19.546215],[-87.626037,19.544984],[-87.626795,19.544412],[-87.627519,19.543501],[-87.628523,19.542725],[-87.629138,19.54196],[-87.63079,19.540364],[-87.631146,19.539863],[-87.632012,19.539246],[-87.632854,19.538263],[-87.632802,19.537511],[-87.633166,19.536557],[-87.633818,19.535885],[-87.634103,19.53544],[-87.63407,19.534593],[-87.634424,19.53332],[-87.635299,19.531198],[-87.635559,19.530129],[-87.6357,19.529111],[-87.636103,19.528263],[-87.636767,19.526101],[-87.637338,19.52503],[-87.637742,19.524006],[-87.638148,19.523549],[-87.638665,19.522701],[-87.640192,19.521284],[-87.640747,19.519653],[-87.64168,19.518967],[-87.643232,19.518254],[-87.643725,19.517599],[-87.644543,19.516927],[-87.644991,19.516231],[-87.644678,19.516027],[-87.644141,19.516271],[-87.643599,19.515986],[-87.643613,19.51558],[-87.644892,19.514808],[-87.646074,19.514492],[-87.647281,19.513108],[-87.647275,19.512038],[-87.647546,19.510936],[-87.647918,19.510355],[-87.647935,19.509854],[-87.648407,19.508721],[-87.64907,19.507306],[-87.649846,19.506733],[-87.650074,19.506379],[-87.650443,19.505167],[-87.651586,19.504387],[-87.652444,19.504236],[-87.653418,19.504291],[-87.654098,19.504164],[-87.654901,19.503793],[-87.655765,19.503937],[-87.656081,19.503811],[-87.656526,19.502558],[-87.656511,19.50224],[-87.656943,19.501972],[-87.657296,19.501973],[-87.657662,19.501742],[-87.657789,19.501296],[-87.658074,19.500998],[-87.658279,19.500461],[-87.658688,19.500251],[-87.659249,19.500197],[-87.660295,19.500429],[-87.661528,19.500824],[-87.662595,19.500585],[-87.66313,19.500723],[-87.663487,19.501203],[-87.663531,19.5016],[-87.663303,19.502482],[-87.662538,19.504113],[-87.663131,19.504048],[-87.663234,19.503197],[-87.664079,19.503056],[-87.665371,19.503612],[-87.666059,19.503284],[-87.666914,19.502583],[-87.6673,19.5021],[-87.668481,19.501382],[-87.6695,19.501],[-87.669919,19.501883],[-87.670033,19.502939],[-87.6691,19.5039],[-87.6688,19.5051],[-87.668718,19.505849],[-87.6693,19.5066],[-87.6717,19.5075],[-87.670925,19.509055],[-87.670121,19.509904],[-87.6685,19.5105],[-87.667157,19.510115],[-87.66353,19.513191],[-87.664192,19.513777],[-87.66495,19.513686],[-87.6659,19.5131],[-87.666831,19.513311],[-87.669,19.5126],[-87.669563,19.513815],[-87.669025,19.515183],[-87.668835,19.516175],[-87.670077,19.51722],[-87.672041,19.517456],[-87.672834,19.517251],[-87.672977,19.519014],[-87.6718,19.5198],[-87.668524,19.519953],[-87.666272,19.521369],[-87.665082,19.52133],[-87.664149,19.521119],[-87.6632,19.5233],[-87.663669,19.524092],[-87.6643,19.5265],[-87.6637,19.5276],[-87.663452,19.528743],[-87.6638,19.5294],[-87.665856,19.529815],[-87.668,19.5293],[-87.6703,19.5286],[-87.671289,19.529064],[-87.673,19.53],[-87.6727,19.5306],[-87.6722,19.532],[-87.6723,19.533],[-87.673424,19.533369],[-87.674123,19.533178],[-87.67443,19.533355],[-87.675664,19.534377],[-87.676384,19.534687],[-87.67679,19.534413],[-87.677925,19.534357],[-87.678455,19.533444],[-87.678679,19.53327],[-87.680239,19.532991],[-87.680454,19.532831],[-87.681342,19.53285],[-87.68218,19.532574],[-87.682605,19.532952],[-87.683025,19.532928],[-87.683882,19.532318],[-87.684326,19.532206],[-87.68512,19.531669],[-87.685632,19.531879],[-87.685917,19.531378],[-87.686181,19.531354],[-87.686419,19.53083],[-87.687209,19.530464],[-87.687426,19.53069],[-87.687542,19.531734],[-87.687241,19.532053],[-87.686943,19.532912],[-87.686139,19.533074],[-87.685636,19.533299],[-87.685336,19.533618],[-87.684153,19.533943],[-87.683858,19.53321],[-87.683357,19.533943],[-87.682754,19.533977],[-87.682018,19.534521],[-87.680645,19.535194],[-87.680044,19.535959],[-87.679073,19.536313],[-87.67857,19.536378],[-87.678172,19.537651],[-87.677704,19.537939],[-87.676832,19.538229],[-87.676329,19.538231],[-87.675791,19.537978],[-87.674919,19.53795],[-87.674313,19.537602],[-87.673844,19.537572],[-87.672972,19.537703],[-87.672201,19.538023],[-87.671765,19.537961],[-87.67143,19.53821],[-87.670942,19.538198],[-87.670123,19.537966],[-87.669357,19.537551],[-87.669548,19.538368],[-87.670098,19.538443],[-87.670669,19.538932],[-87.671121,19.539703],[-87.672176,19.540027],[-87.673317,19.540086],[-87.673755,19.540434],[-87.673892,19.541133],[-87.67375,19.541358],[-87.67395,19.542031],[-87.673879,19.542193],[-87.673869,19.543663],[-87.673662,19.543901],[-87.6732,19.545076],[-87.672135,19.546245],[-87.671868,19.546691],[-87.671366,19.547043],[-87.670529,19.547364],[-87.669099,19.547627],[-87.668416,19.547595],[-87.667679,19.547883],[-87.667211,19.54833],[-87.667114,19.549316],[-87.667785,19.54925],[-87.668658,19.549311],[-87.668959,19.549731],[-87.669376,19.550021],[-87.669762,19.55071],[-87.669991,19.55152],[-87.670336,19.551943],[-87.670749,19.552787],[-87.670666,19.553092],[-87.670958,19.553786],[-87.671576,19.555533],[-87.671842,19.556592],[-87.67224,19.557421],[-87.672556,19.558802],[-87.672799,19.560358],[-87.673249,19.561317],[-87.673397,19.56187],[-87.673898,19.56249],[-87.674144,19.563431],[-87.674569,19.564184],[-87.675778,19.565149],[-87.676126,19.565693],[-87.676093,19.565948],[-87.676399,19.566742],[-87.676437,19.567823],[-87.676845,19.56922],[-87.677586,19.569663],[-87.678022,19.569661],[-87.678457,19.569468],[-87.678992,19.568989],[-87.680032,19.56889],[-87.680501,19.568698],[-87.680701,19.568315],[-87.683785,19.567382],[-87.684724,19.567346],[-87.687241,19.567337],[-87.687911,19.567143],[-87.688716,19.567077],[-87.689219,19.566884],[-87.68972,19.566246],[-87.690222,19.565894],[-87.690434,19.565271],[-87.690955,19.564842],[-87.691121,19.564365],[-87.691389,19.564173],[-87.691789,19.563535],[-87.69209,19.56328],[-87.692322,19.562548],[-87.692655,19.561942],[-87.69319,19.561622],[-87.692888,19.56156],[-87.692386,19.561911],[-87.691752,19.562677],[-87.691453,19.56341],[-87.690817,19.563953],[-87.690281,19.564145],[-87.68968,19.564752],[-87.688103,19.564758],[-87.687163,19.564825],[-87.68666,19.564954],[-87.685723,19.565594],[-87.68475,19.565597],[-87.683908,19.565814],[-87.683557,19.565571],[-87.68269,19.565315],[-87.683544,19.566015],[-87.682137,19.566656],[-87.681767,19.566467],[-87.680656,19.565549],[-87.681191,19.565229],[-87.680017,19.565297],[-87.678942,19.56511],[-87.6779,19.564542],[-87.677226,19.563972],[-87.6764,19.5638],[-87.6797,19.5601],[-87.68053,19.559572],[-87.680797,19.559094],[-87.6813,19.559028],[-87.681601,19.558773],[-87.681799,19.558041],[-87.68361,19.557843],[-87.684081,19.558159],[-87.684717,19.55768],[-87.685421,19.557677],[-87.686226,19.557547],[-87.686628,19.557196],[-87.687198,19.557098],[-87.687867,19.556587],[-87.688029,19.555346],[-87.688798,19.554644],[-87.689664,19.553241],[-87.690603,19.552983],[-87.692179,19.55285],[-87.693532,19.552852],[-87.69394,19.553081],[-87.69452,19.553002],[-87.694927,19.553165],[-87.695692,19.553097],[-87.69597,19.552788],[-87.697152,19.55231],[-87.697404,19.551693],[-87.697647,19.551472],[-87.69768,19.551054],[-87.697992,19.550635],[-87.69914,19.550509],[-87.700054,19.549747],[-87.700184,19.550208],[-87.700544,19.550405],[-87.702122,19.550201],[-87.702519,19.550727],[-87.702789,19.551474],[-87.703186,19.552012],[-87.70372,19.552297],[-87.703994,19.553472],[-87.704197,19.553821],[-87.704936,19.553977],[-87.705374,19.554325],[-87.706487,19.555815],[-87.70716,19.556258],[-87.708236,19.556604],[-87.709223,19.557123],[-87.709526,19.557536],[-87.711238,19.557561],[-87.71181,19.557845],[-87.712413,19.557683],[-87.712749,19.557809],[-87.71312,19.558316],[-87.713393,19.559301],[-87.713663,19.559713],[-87.713702,19.560826],[-87.714309,19.561555],[-87.714212,19.562382],[-87.714485,19.56343],[-87.714522,19.56413],[-87.71446,19.56537],[-87.713759,19.566231],[-87.713397,19.567822],[-87.713098,19.56846],[-87.71243,19.569289],[-87.711225,19.569898],[-87.711057,19.569835],[-87.710824,19.570408],[-87.710389,19.570601],[-87.709584,19.570667],[-87.708076,19.57115],[-87.707708,19.571501],[-87.707715,19.573187],[-87.708353,19.573248],[-87.708758,19.573755],[-87.709634,19.574387],[-87.710373,19.574544],[-87.710943,19.574509],[-87.711447,19.574698],[-87.712253,19.574759],[-87.713732,19.575389],[-87.714842,19.575925],[-87.715179,19.576178],[-87.715413,19.57605],[-87.71575,19.576335],[-87.716959,19.576457],[-87.717195,19.576615],[-87.718203,19.576929],[-87.719177,19.577148],[-87.719884,19.577717],[-87.72119,19.577798],[-87.722397,19.577507],[-87.722697,19.577029],[-87.722994,19.575978],[-87.723295,19.575818],[-87.723461,19.575245],[-87.723728,19.574989],[-87.724165,19.575115],[-87.724267,19.575337],[-87.725109,19.57616],[-87.724978,19.57686],[-87.725683,19.576858],[-87.726151,19.57657],[-87.726585,19.576027],[-87.726787,19.575995],[-87.727796,19.576499],[-87.728399,19.576401],[-87.728635,19.576496],[-87.728738,19.577163],[-87.728977,19.577894],[-87.72928,19.578242],[-87.729451,19.578909],[-87.729755,19.579289],[-87.730095,19.580306],[-87.73003,19.580751],[-87.730469,19.581481],[-87.73151,19.58154],[-87.73272,19.581821],[-87.73299,19.582202],[-87.733329,19.583059],[-87.734471,19.583181],[-87.734875,19.58337],[-87.734911,19.583943],[-87.734208,19.584359],[-87.733034,19.584459],[-87.732599,19.584906],[-87.732161,19.584463],[-87.731154,19.584467],[-87.729911,19.584154],[-87.729238,19.583743],[-87.728431,19.583492],[-87.727454,19.582637],[-87.726851,19.582767],[-87.726717,19.583022],[-87.727291,19.583687],[-87.727293,19.584069],[-87.726895,19.585152],[-87.725958,19.585759],[-87.725253,19.58589],[-87.725053,19.586081],[-87.724888,19.586781],[-87.724721,19.587005],[-87.723749,19.587199],[-87.723448,19.587359],[-87.723684,19.58774],[-87.725662,19.587255],[-87.7266,19.58687],[-87.72781,19.587056],[-87.728279,19.586927],[-87.728545,19.586449],[-87.729283,19.586318],[-87.730421,19.585646],[-87.731058,19.585516],[-87.731916,19.585554],[-87.732953,19.585335],[-87.733575,19.585474],[-87.734663,19.585953],[-87.735691,19.585752],[-87.736328,19.585527],[-87.736899,19.585747],[-87.737034,19.585969],[-87.73764,19.586189],[-87.737436,19.586668],[-87.737342,19.587321],[-87.737714,19.587315],[-87.738516,19.586917],[-87.738681,19.586501],[-87.73929,19.586774],[-87.739795,19.587297],[-87.74007,19.587323],[-87.740546,19.587684],[-87.740765,19.588387],[-87.740663,19.589356],[-87.740862,19.589597],[-87.741321,19.589523],[-87.742095,19.589724],[-87.742877,19.589798],[-87.743665,19.590226],[-87.743984,19.591678],[-87.744491,19.592936],[-87.745327,19.593118],[-87.745704,19.593942],[-87.745909,19.595248],[-87.745845,19.595859],[-87.745642,19.596264],[-87.745609,19.597037],[-87.745732,19.597595],[-87.74567,19.598186],[-87.746363,19.598544],[-87.747137,19.598617],[-87.747625,19.598949],[-87.748012,19.598986],[-87.748472,19.59948],[-87.748707,19.600139],[-87.748529,19.600817],[-87.747795,19.601041],[-87.747695,19.601991],[-87.748609,19.602701],[-87.748216,19.60352],[-87.747203,19.603962],[-87.746821,19.604303],[-87.746465,19.604994],[-87.746053,19.605552],[-87.745709,19.606789],[-87.745789,19.607672],[-87.745484,19.607999],[-87.744765,19.608314],[-87.744445,19.608299],[-87.74433,19.608666],[-87.744497,19.608945],[-87.745302,19.608935],[-87.745918,19.609367],[-87.745856,19.609962],[-87.745541,19.610026],[-87.745512,19.610304],[-87.744355,19.610195],[-87.74392,19.610285],[-87.74412,19.610599],[-87.744764,19.610482],[-87.744999,19.610839],[-87.744902,19.611168],[-87.744178,19.611792],[-87.743668,19.61162],[-87.743095,19.611974],[-87.742259,19.612713],[-87.742235,19.612938],[-87.743459,19.61352],[-87.743676,19.614025],[-87.743775,19.614725],[-87.743657,19.615849],[-87.743242,19.61672],[-87.742758,19.616966],[-87.742359,19.616966],[-87.74104,19.617383],[-87.740712,19.617871],[-87.740882,19.618099],[-87.742127,19.618781],[-87.742385,19.619111],[-87.742266,19.620244],[-87.74201,19.620839],[-87.740586,19.62131],[-87.740537,19.621924],[-87.741565,19.622331],[-87.741619,19.622586],[-87.74132,19.622975],[-87.741398,19.623267],[-87.742071,19.623719],[-87.742219,19.624594],[-87.741894,19.625999],[-87.741555,19.626763],[-87.741765,19.627863],[-87.741621,19.628549],[-87.74155,19.629571],[-87.741185,19.629765],[-87.741241,19.630098],[-87.741031,19.631163],[-87.740665,19.631801],[-87.740441,19.634186],[-87.740272,19.635032],[-87.740313,19.635745],[-87.739851,19.637116],[-87.739705,19.637783],[-87.739775,19.638489],[-87.739632,19.640931],[-87.739287,19.641306],[-87.738401,19.641173],[-87.738407,19.64169],[-87.738998,19.641823],[-87.739436,19.642171],[-87.739609,19.643156],[-87.740244,19.643759],[-87.740753,19.643724],[-87.741676,19.64446],[-87.742022,19.645756],[-87.742078,19.646232],[-87.742563,19.64688],[-87.74289,19.647889],[-87.742986,19.649207],[-87.742539,19.649833],[-87.742732,19.650379],[-87.742607,19.650908],[-87.742348,19.651237],[-87.742205,19.651774],[-87.742255,19.652274],[-87.741894,19.652757],[-87.741573,19.652874],[-87.741798,19.653197],[-87.742097,19.653234],[-87.742481,19.653676],[-87.742977,19.65396],[-87.743293,19.654425],[-87.743355,19.655076],[-87.74337,19.65665],[-87.743137,19.657033],[-87.742991,19.657715],[-87.743278,19.658558],[-87.743085,19.659948],[-87.74302,19.660881],[-87.742279,19.66366],[-87.741464,19.665228],[-87.740843,19.665718],[-87.74064,19.666165],[-87.735114,19.666314],[-87.735031,19.665911],[-87.734404,19.664989],[-87.7345,19.664529],[-87.734253,19.664438],[-87.733921,19.664826],[-87.733484,19.664698],[-87.732377,19.664893],[-87.732074,19.664703],[-87.731403,19.664865],[-87.731019,19.665182],[-87.730984,19.665684],[-87.731297,19.666327],[-87.732199,19.667014],[-87.732596,19.668147],[-87.732189,19.669071],[-87.731326,19.669204],[-87.731025,19.669145],[-87.730265,19.669689],[-87.727783,19.670323],[-87.727319,19.670356],[-87.726878,19.6699],[-87.726928,19.669352],[-87.726777,19.669089],[-87.726154,19.6687],[-87.725255,19.668898],[-87.724296,19.669491],[-87.723925,19.66961],[-87.723579,19.670328],[-87.722108,19.67122],[-87.721484,19.671184],[-87.719997,19.671836],[-87.71943,19.671836],[-87.718607,19.672007],[-87.717944,19.672285],[-87.717084,19.672994],[-87.716165,19.673314],[-87.715489,19.672974],[-87.713605,19.673119],[-87.712896,19.673408],[-87.712838,19.673547],[-87.711966,19.673751],[-87.710383,19.674398],[-87.709282,19.674334],[-87.708876,19.674499],[-87.707873,19.67453],[-87.707233,19.675339],[-87.70662,19.675886],[-87.706314,19.676023],[-87.705528,19.675907],[-87.705236,19.676036],[-87.704681,19.676655],[-87.704396,19.676747],[-87.704158,19.677125],[-87.702853,19.67784],[-87.702125,19.678062],[-87.701374,19.677899],[-87.700838,19.678283],[-87.700516,19.678712],[-87.698996,19.679308],[-87.69789,19.680043],[-87.696844,19.68032],[-87.69591,19.680178],[-87.695248,19.680473],[-87.694616,19.680613],[-87.693428,19.681078],[-87.69222,19.681115],[-87.690256,19.681475],[-87.689198,19.681412],[-87.688741,19.681578],[-87.687486,19.681578],[-87.686813,19.681294],[-87.686411,19.681423],[-87.685538,19.681395],[-87.684918,19.681474],[-87.683974,19.681746],[-87.682585,19.681946],[-87.681819,19.682168],[-87.680586,19.682118],[-87.68014,19.682247],[-87.679411,19.682187],[-87.677558,19.682145],[-87.676217,19.682265],[-87.675072,19.682128],[-87.674466,19.681868],[-87.673809,19.681875],[-87.671778,19.681389],[-87.670522,19.681324],[-87.668955,19.681018],[-87.668553,19.681242],[-87.667573,19.682334],[-87.66719,19.68254],[-87.666119,19.682611],[-87.664881,19.68212],[-87.663732,19.681932],[-87.663325,19.681734],[-87.662766,19.6819],[-87.662468,19.681816],[-87.660634,19.68181],[-87.660246,19.681407],[-87.659142,19.681547],[-87.658349,19.681391],[-87.656692,19.681351],[-87.655853,19.681673],[-87.655306,19.682789],[-87.654684,19.68345],[-87.653754,19.684954],[-87.653565,19.685682],[-87.653183,19.686343],[-87.652392,19.686687],[-87.652034,19.687325],[-87.651103,19.688601],[-87.650528,19.688808],[-87.6491,19.6881],[-87.6496,19.6868],[-87.6497,19.6849],[-87.6511,19.684],[-87.651,19.6824],[-87.6512,19.6808],[-87.6526,19.68],[-87.6528,19.6785],[-87.6518,19.677],[-87.6508,19.6756],[-87.6512,19.6742],[-87.6521,19.6733],[-87.6525,19.6713],[-87.6528,19.6692],[-87.6538,19.6675],[-87.6539,19.6652],[-87.6557,19.6625],[-87.6566,19.6604],[-87.6571,19.6581],[-87.656,19.656],[-87.6564,19.6552],[-87.658,19.6542],[-87.6597,19.6529],[-87.6605,19.6513],[-87.6602,19.6504],[-87.657583,19.649673],[-87.657546,19.649043],[-87.65829,19.648927],[-87.658264,19.648541],[-87.657373,19.647794],[-87.657033,19.646931],[-87.657224,19.646658],[-87.657704,19.64661],[-87.65797,19.647132],[-87.65857,19.647107],[-87.658737,19.646743],[-87.659192,19.646469],[-87.659912,19.646307],[-87.66037,19.646964],[-87.66109,19.646894],[-87.661405,19.647506],[-87.661934,19.647777],[-87.662606,19.647843],[-87.663302,19.647727],[-87.663346,19.646749],[-87.663104,19.646318],[-87.663103,19.645886],[-87.662454,19.645775],[-87.662524,19.645411],[-87.662883,19.645068],[-87.66288,19.644295],[-87.662208,19.64423],[-87.661704,19.6443],[-87.66139,19.643914],[-87.661292,19.643437],[-87.660546,19.642849],[-87.659824,19.642511],[-87.659158,19.642361],[-87.658797,19.642113],[-87.658627,19.64175],[-87.658986,19.641407],[-87.65961,19.641428],[-87.660594,19.641265],[-87.660784,19.640855],[-87.661216,19.640717],[-87.661672,19.640829],[-87.661621,19.640056],[-87.661309,19.639989],[-87.660975,19.640513],[-87.659894,19.640404],[-87.65946,19.639951],[-87.658741,19.640158],[-87.658644,19.639931],[-87.658931,19.639702],[-87.659363,19.639701],[-87.659577,19.639314],[-87.659337,19.639178],[-87.659166,19.638474],[-87.659309,19.638246],[-87.659741,19.63829],[-87.660389,19.638083],[-87.660484,19.637833],[-87.659715,19.637745],[-87.659497,19.637222],[-87.660048,19.636993],[-87.660481,19.637151],[-87.661055,19.636785],[-87.661776,19.636782],[-87.661896,19.636964],[-87.662449,19.637007],[-87.663218,19.6373],[-87.663556,19.63773],[-87.664109,19.638092],[-87.665069,19.637929],[-87.66567,19.638291],[-87.665743,19.638473],[-87.666392,19.638629],[-87.666777,19.638969],[-87.667185,19.638785],[-87.667278,19.638171],[-87.666485,19.637833],[-87.665332,19.637747],[-87.664394,19.637318],[-87.663818,19.637207],[-87.663504,19.636776],[-87.662302,19.636326],[-87.662035,19.635622],[-87.661315,19.635693],[-87.660425,19.635218],[-87.661,19.63508],[-87.660998,19.634466],[-87.660685,19.634263],[-87.661332,19.633965],[-87.661765,19.634304],[-87.662364,19.633916],[-87.662796,19.633937],[-87.662987,19.633731],[-87.662144,19.633075],[-87.662286,19.632529],[-87.662503,19.632619],[-87.662817,19.633164],[-87.663416,19.633025],[-87.664905,19.633042],[-87.665432,19.632881],[-87.665359,19.632518],[-87.664854,19.632429],[-87.664421,19.632067],[-87.66358,19.631933],[-87.663411,19.631752],[-87.664011,19.631682],[-87.664852,19.631974],[-87.664899,19.631769],[-87.664225,19.631226],[-87.664271,19.630658],[-87.664678,19.630452],[-87.664942,19.630564],[-87.665088,19.631041],[-87.665522,19.631335],[-87.666529,19.63124],[-87.66672,19.630967],[-87.666358,19.630445],[-87.666501,19.630149],[-87.667412,19.629919],[-87.667639,19.629626],[-87.667063,19.629537],[-87.666894,19.629265],[-87.667611,19.628557],[-87.668667,19.628463],[-87.669964,19.62864],[-87.672436,19.628721],[-87.673277,19.628809],[-87.674046,19.628988],[-87.674863,19.629326],[-87.67676,19.629455],[-87.677913,19.629724],[-87.678657,19.62963],[-87.678944,19.629333],[-87.679062,19.628901],[-87.679782,19.628853],[-87.679851,19.628125],[-87.67913,19.627878],[-87.678244,19.628472],[-87.678174,19.628927],[-87.677551,19.629134],[-87.675485,19.628846],[-87.673466,19.628149],[-87.67229,19.628108],[-87.6708,19.627773],[-87.66996,19.627776],[-87.669023,19.627484],[-87.66907,19.627233],[-87.669981,19.627071],[-87.67051,19.627183],[-87.670917,19.626954],[-87.671179,19.626521],[-87.671634,19.626292],[-87.672448,19.625675],[-87.672856,19.625878],[-87.673528,19.625694],[-87.674224,19.625827],[-87.67473,19.626167],[-87.676266,19.626206],[-87.676458,19.626115],[-87.676432,19.625683],[-87.676022,19.625321],[-87.676357,19.625069],[-87.677941,19.624927],[-87.678469,19.625016],[-87.679093,19.624945],[-87.680174,19.625009],[-87.680869,19.624916],[-87.681853,19.624935],[-87.682142,19.625093],[-87.683583,19.625247],[-87.683993,19.625836],[-87.685076,19.626332],[-87.686061,19.626578],[-87.686543,19.627168],[-87.686738,19.627752],[-87.68747,19.627965],[-87.688323,19.627888],[-87.688441,19.627592],[-87.68904,19.627317],[-87.689148,19.626649],[-87.689396,19.626225],[-87.689275,19.626066],[-87.68812,19.625457],[-87.687087,19.625188],[-87.686679,19.625189],[-87.686317,19.624622],[-87.685859,19.624374],[-87.685331,19.624262],[-87.684874,19.623946],[-87.683985,19.623858],[-87.6836,19.623655],[-87.683527,19.62336],[-87.682469,19.622864],[-87.682228,19.622592],[-87.681482,19.622345],[-87.680594,19.622348],[-87.680089,19.6221],[-87.679177,19.622012],[-87.678721,19.622082],[-87.677377,19.621974],[-87.676775,19.621658],[-87.676414,19.621318],[-87.676868,19.62093],[-87.677612,19.620836],[-87.679269,19.621171],[-87.679941,19.621146],[-87.680422,19.621257],[-87.680373,19.620985],[-87.679698,19.620419],[-87.679865,19.620077],[-87.681329,19.620049],[-87.682074,19.620274],[-87.682323,19.620488],[-87.682603,19.621267],[-87.682987,19.621593],[-87.68364,19.621727],[-87.683991,19.621471],[-87.684165,19.621039],[-87.684139,19.620607],[-87.68373,19.620199],[-87.683463,19.619586],[-87.68303,19.619406],[-87.68262,19.618908],[-87.681152,19.618072],[-87.680958,19.61755],[-87.680164,19.616962],[-87.68033,19.616506],[-87.680037,19.615416],[-87.679338,19.614578],[-87.678785,19.614489],[-87.677993,19.614515],[-87.676602,19.614793],[-87.676314,19.614703],[-87.675784,19.614228],[-87.674043,19.614301],[-87.673227,19.614418],[-87.672172,19.614695],[-87.670732,19.614746],[-87.669413,19.615023],[-87.668359,19.615346],[-87.667544,19.615735],[-87.666779,19.616488],[-87.666351,19.61724],[-87.6659,19.618492],[-87.6654,19.619494],[-87.665211,19.620245],[-87.664713,19.621793],[-87.663429,19.624616],[-87.663001,19.625686],[-87.662907,19.626187],[-87.662241,19.627758],[-87.661427,19.628804],[-87.660666,19.630535],[-87.660284,19.631173],[-87.659544,19.632107],[-87.658902,19.63361],[-87.658404,19.635112],[-87.657712,19.636002],[-87.65731,19.637458],[-87.657241,19.638345],[-87.65698,19.63896],[-87.656649,19.640211],[-87.656008,19.641987],[-87.65565,19.642693],[-87.655533,19.643284],[-87.6552,19.644081],[-87.654863,19.64524],[-87.654149,19.646697],[-87.653388,19.648564],[-87.652515,19.652227],[-87.652039,19.653343],[-87.651685,19.654731],[-87.651376,19.65571],[-87.651118,19.657098],[-87.651073,19.657939],[-87.650813,19.658735],[-87.650767,19.659349],[-87.650095,19.660258],[-87.650073,19.660667],[-87.649741,19.661714],[-87.649438,19.664011],[-87.648991,19.666127],[-87.648803,19.66648],[-87.648635,19.667333],[-87.648397,19.667743],[-87.647788,19.671428],[-87.647837,19.671746],[-87.647552,19.672679],[-87.64746,19.673612],[-87.647247,19.674385],[-87.647032,19.674659],[-87.646987,19.675409],[-87.646702,19.676931],[-87.646107,19.678365],[-87.645966,19.679093],[-87.645114,19.682233],[-87.644735,19.683371],[-87.644258,19.684123],[-87.644187,19.684556],[-87.643783,19.685603],[-87.643642,19.686331],[-87.643094,19.687288],[-87.643024,19.687765],[-87.642521,19.688244],[-87.64195,19.689497],[-87.641593,19.69043],[-87.640829,19.691524],[-87.640232,19.692185],[-87.639946,19.692823],[-87.639673,19.693118],[-87.638981,19.694212],[-87.637855,19.694853],[-87.636924,19.696311],[-87.636661,19.696494],[-87.636048,19.697342],[-87.634914,19.698068],[-87.634651,19.69841],[-87.634093,19.699536],[-87.633902,19.699737],[-87.633603,19.700642],[-87.632864,19.701849],[-87.632554,19.702555],[-87.632005,19.70333],[-87.631289,19.704492],[-87.631002,19.704766],[-87.630909,19.705471],[-87.630599,19.706086],[-87.630221,19.70761],[-87.629808,19.708165],[-87.629768,19.708589],[-87.629292,19.709598],[-87.628826,19.710059],[-87.628735,19.710365],[-87.628328,19.710775],[-87.627683,19.711732],[-87.625935,19.713888],[-87.625722,19.714246],[-87.624958,19.714879],[-87.624359,19.715726],[-87.62374,19.716747],[-87.622783,19.717592],[-87.621994,19.718549],[-87.620819,19.719122],[-87.620173,19.719602],[-87.619429,19.719695],[-87.618998,19.720038],[-87.618593,19.720926],[-87.617973,19.722087],[-87.617255,19.722749],[-87.617088,19.723113],[-87.61637,19.72382],[-87.615989,19.724663],[-87.615534,19.725051],[-87.615058,19.725962],[-87.614866,19.726099],[-87.614381,19.727326],[-87.613902,19.727737],[-87.613211,19.729263],[-87.612972,19.729559],[-87.612783,19.730219],[-87.612078,19.730898],[-87.611539,19.731633],[-87.611302,19.732452],[-87.610944,19.732953],[-87.610172,19.734661],[-87.609961,19.735331],[-87.609729,19.735526],[-87.60961,19.73605],[-87.608989,19.736944],[-87.608943,19.737348],[-87.608297,19.738145],[-87.607026,19.73865],[-87.606424,19.739262],[-87.606212,19.740268],[-87.606313,19.740698],[-87.605827,19.741075],[-87.605837,19.741419],[-87.605357,19.742721],[-87.60465,19.743523],[-87.604273,19.744764],[-87.604274,19.74513],[-87.603905,19.746241],[-87.60369,19.747158],[-87.603207,19.748407],[-87.603053,19.749255],[-87.602765,19.749868],[-87.602371,19.750395],[-87.60209,19.751055],[-87.601738,19.75144],[-87.601369,19.752375],[-87.600917,19.753119],[-87.599975,19.755379],[-87.599832,19.755493],[-87.599278,19.756794],[-87.598783,19.757611],[-87.598174,19.758292],[-87.597934,19.758361],[-87.597481,19.759181],[-87.59717,19.759477],[-87.596619,19.760847],[-87.596168,19.761527],[-87.595952,19.761618],[-87.595643,19.762279],[-87.595284,19.76278],[-87.594672,19.763994],[-87.594338,19.764377],[-87.593275,19.765287],[-87.592892,19.765698],[-87.592053,19.766019],[-87.591694,19.766384],[-87.591479,19.766885],[-87.591185,19.767096],[-87.59078,19.767807],[-87.590196,19.768181],[-87.589876,19.768595],[-87.589782,19.769073],[-87.589447,19.769369],[-87.589014,19.770313],[-87.588298,19.771049],[-87.588084,19.771572],[-87.587461,19.772029],[-87.586142,19.772055],[-87.585238,19.771925],[-87.586673,19.773327],[-87.586986,19.773485],[-87.5873,19.774121],[-87.587093,19.774508],[-87.586622,19.774783],[-87.586343,19.77517],[-87.586369,19.775579],[-87.586132,19.776489],[-87.585369,19.778196],[-87.584747,19.778858],[-87.584604,19.779245],[-87.584198,19.779746],[-87.583917,19.780484],[-87.583843,19.781407],[-87.583179,19.782527],[-87.582988,19.783028],[-87.582332,19.783645],[-87.582059,19.784652],[-87.581903,19.785546],[-87.581659,19.786288],[-87.581316,19.786871],[-87.581052,19.786917],[-87.58051,19.788009],[-87.580198,19.788237],[-87.580056,19.788669],[-87.579151,19.789737],[-87.578911,19.790366],[-87.577579,19.791138],[-87.577206,19.791151],[-87.576582,19.79159],[-87.576295,19.791978],[-87.574785,19.793051],[-87.574714,19.793256],[-87.573707,19.793714],[-87.573257,19.793802],[-87.572865,19.793671],[-87.572435,19.794195],[-87.571796,19.794539],[-87.571237,19.795177],[-87.570421,19.795566],[-87.568548,19.795867],[-87.568189,19.796187],[-87.567711,19.796961],[-87.567447,19.797076],[-87.567209,19.797736],[-87.5665,19.798834],[-87.566231,19.799671],[-87.565944,19.799968],[-87.565313,19.80094],[-87.565042,19.801132],[-87.564109,19.802555],[-87.563429,19.803346],[-87.563018,19.803526],[-87.562054,19.804673],[-87.56146,19.805165],[-87.560971,19.805384],[-87.560756,19.805657],[-87.559917,19.806228],[-87.559629,19.806229],[-87.559126,19.806551],[-87.558503,19.807142],[-87.558137,19.807182],[-87.557764,19.807585],[-87.556727,19.807875],[-87.556127,19.808195],[-87.554855,19.808517],[-87.554206,19.808558],[-87.553363,19.807999],[-87.552796,19.807249],[-87.552513,19.807056],[-87.552203,19.80631],[-87.552188,19.805551],[-87.551833,19.805312],[-87.551597,19.804686],[-87.551981,19.804503],[-87.551901,19.80335],[-87.552255,19.80348],[-87.552554,19.803273],[-87.55294,19.802648],[-87.552938,19.801852],[-87.552575,19.80133],[-87.552598,19.800785],[-87.552051,19.799982],[-87.551729,19.799696],[-87.550606,19.79963],[-87.550342,19.799253],[-87.549646,19.798759],[-87.549472,19.798775],[-87.548905,19.798262],[-87.548897,19.798073],[-87.548268,19.797816],[-87.547954,19.797557],[-87.547176,19.797458],[-87.546608,19.796319],[-87.5462,19.795909],[-87.545437,19.795776],[-87.544475,19.796008],[-87.543243,19.796661],[-87.543205,19.797096],[-87.54294,19.797303],[-87.543548,19.798673],[-87.544159,19.799391],[-87.5402,19.7997],[-87.539,19.7982],[-87.537732,19.797029],[-87.5356,19.7962],[-87.5346,19.7956],[-87.533251,19.795554],[-87.531598,19.795854],[-87.5293,19.7962],[-87.527279,19.796291],[-87.525743,19.796668],[-87.5235,19.7989],[-87.522585,19.799541],[-87.522073,19.800392],[-87.521601,19.800871],[-87.520698,19.801029],[-87.51947,19.800583],[-87.518117,19.800306],[-87.517132,19.799751],[-87.516651,19.799123],[-87.516128,19.798961],[-87.514999,19.799046],[-87.514478,19.799376],[-87.512917,19.800696],[-87.512397,19.800944],[-87.511875,19.800946],[-87.510312,19.801525],[-87.509792,19.801938],[-87.508839,19.802927],[-87.50788,19.80405],[-87.506844,19.804412],[-87.505801,19.804662],[-87.50476,19.805158],[-87.503718,19.805818],[-87.502678,19.806643],[-87.501773,19.806981],[-87.500436,19.806747],[-87.499999,19.807103],[-87.497723,19.806904],[-87.497308,19.807172],[-87.497042,19.807589],[-87.496177,19.808234],[-87.495544,19.80848],[-87.495172,19.809042],[-87.495122,19.809668],[-87.494759,19.810064],[-87.494144,19.810388],[-87.493813,19.81089],[-87.49396,19.812425],[-87.493901,19.813534],[-87.493629,19.814862],[-87.493138,19.815567],[-87.492233,19.81584],[-87.492161,19.816343],[-87.491754,19.817316],[-87.491778,19.81782],[-87.491323,19.81938],[-87.491416,19.819908],[-87.491322,19.820824],[-87.491449,19.821507],[-87.490848,19.824396],[-87.490126,19.825102],[-87.4896,19.825341],[-87.489185,19.825146],[-87.487877,19.82483],[-87.487233,19.824768],[-87.487388,19.825494],[-87.487222,19.826031],[-87.486542,19.826277],[-87.486123,19.827351],[-87.487164,19.827206],[-87.487833,19.82755],[-87.488406,19.828457],[-87.488609,19.829801],[-87.488337,19.831211],[-87.487862,19.832156],[-87.487591,19.833074],[-87.486952,19.834003],[-87.485936,19.835068],[-87.485132,19.836495],[-87.484916,19.836652],[-87.484533,19.837312],[-87.483952,19.837821],[-87.482671,19.838308],[-87.482458,19.838458],[-87.481115,19.838756],[-87.480366,19.839113],[-87.479869,19.839786],[-87.47948,19.840505],[-87.479459,19.840886],[-87.479132,19.841492],[-87.479055,19.842525],[-87.478896,19.843603],[-87.478859,19.844437],[-87.478685,19.845407],[-87.478667,19.845981],[-87.478137,19.848094],[-87.477834,19.849142],[-87.477558,19.849405],[-87.477536,19.849792],[-87.477261,19.850439],[-87.476625,19.85159],[-87.476472,19.852046],[-87.476054,19.852706],[-87.475456,19.853867],[-87.47521,19.854105],[-87.473877,19.856099],[-87.472702,19.857216],[-87.471718,19.857719],[-87.470323,19.857825],[-87.469854,19.858129],[-87.469101,19.858308],[-87.468493,19.85858],[-87.467667,19.858529],[-87.467237,19.858786],[-87.467168,19.859102],[-87.466747,19.859701],[-87.465846,19.860488],[-87.464737,19.861214],[-87.463205,19.861382],[-87.462447,19.861146],[-87.461882,19.86109],[-87.460952,19.860145],[-87.460113,19.859438],[-87.46001,19.858864],[-87.459794,19.858696],[-87.459758,19.858208],[-87.459566,19.858186],[-87.459362,19.858601],[-87.459621,19.859342],[-87.459659,19.859796],[-87.459347,19.859949],[-87.459878,19.860898],[-87.459828,19.862168],[-87.460035,19.862504],[-87.460181,19.864452],[-87.460184,19.865521],[-87.459913,19.866552],[-87.459695,19.867045],[-87.45963,19.867655],[-87.459445,19.867922],[-87.459125,19.869368],[-87.458629,19.870575],[-87.4583,19.870868],[-87.457702,19.871893],[-87.456924,19.872859],[-87.456239,19.873238],[-87.455797,19.873888],[-87.455208,19.874537],[-87.455138,19.875328],[-87.455184,19.876256],[-87.455392,19.876514],[-87.455865,19.876649],[-87.455537,19.877018],[-87.456043,19.878014],[-87.45679,19.879212],[-87.456864,19.880228],[-87.456704,19.881147],[-87.456199,19.882375],[-87.455232,19.883908],[-87.454763,19.884538],[-87.453828,19.885518],[-87.452862,19.885908],[-87.451882,19.885826],[-87.451039,19.885548],[-87.450415,19.885822],[-87.449984,19.886505],[-87.448984,19.887405],[-87.448736,19.887815],[-87.44854,19.888585],[-87.448207,19.888642],[-87.447743,19.889357],[-87.447451,19.890206],[-87.448482,19.890021],[-87.449171,19.890238],[-87.449731,19.890712],[-87.450212,19.890619],[-87.450691,19.89005],[-87.451077,19.889391],[-87.451832,19.88887],[-87.452898,19.888339],[-87.453459,19.888256],[-87.454721,19.888457],[-87.454911,19.888135],[-87.455581,19.887696],[-87.456329,19.887453],[-87.457487,19.887327],[-87.458546,19.887711],[-87.459246,19.887688],[-87.459647,19.888066],[-87.459894,19.889023],[-87.460245,19.889584],[-87.459902,19.891295],[-87.46081,19.891227],[-87.46144,19.891556],[-87.462174,19.891752],[-87.462455,19.892313],[-87.463085,19.892509],[-87.4634,19.892839],[-87.463612,19.893631],[-87.464209,19.894687],[-87.46421,19.895149],[-87.464037,19.895513],[-87.464354,19.89647],[-87.464425,19.896998],[-87.464393,19.897956],[-87.464466,19.898881],[-87.464886,19.899309],[-87.464398,19.899707],[-87.464436,19.900731],[-87.464263,19.901227],[-87.464788,19.901688],[-87.46486,19.902249],[-87.464756,19.902646],[-87.464338,19.902977],[-87.464199,19.903374],[-87.464168,19.904563],[-87.463889,19.904729],[-87.46382,19.905126],[-87.464101,19.905654],[-87.463755,19.906877],[-87.463686,19.907561],[-87.463232,19.908312],[-87.463185,19.908903],[-87.462514,19.909473],[-87.462324,19.910383],[-87.461889,19.910973],[-87.461675,19.911565],[-87.461147,19.911998],[-87.460932,19.912703],[-87.460453,19.913296],[-87.459997,19.913683],[-87.459759,19.914457],[-87.459039,19.914845],[-87.458873,19.9158],[-87.458539,19.916711],[-87.457818,19.916735],[-87.457771,19.917076],[-87.458085,19.917507],[-87.458807,19.917801],[-87.45948,19.917731],[-87.459455,19.917413],[-87.458974,19.91721],[-87.459068,19.916573],[-87.459547,19.915776],[-87.460411,19.915364],[-87.460916,19.91534],[-87.461398,19.915657],[-87.462336,19.915769],[-87.462561,19.91648],[-87.463091,19.916865],[-87.46314,19.917297],[-87.463695,19.917955],[-87.46389,19.918636],[-87.463916,19.919386],[-87.464062,19.919841],[-87.464977,19.920429],[-87.465364,19.921156],[-87.465802,19.923042],[-87.465852,19.923519],[-87.465686,19.92427],[-87.466158,19.925123],[-87.466214,19.925453],[-87.465995,19.925871],[-87.46618,19.926461],[-87.465832,19.926896],[-87.465779,19.927417],[-87.465431,19.927904],[-87.465046,19.928096],[-87.465674,19.929415],[-87.4663,19.929847],[-87.467054,19.929949],[-87.467478,19.930504],[-87.468122,19.930728],[-87.468491,19.931248],[-87.469153,19.931629],[-87.469707,19.932443],[-87.469855,19.932912],[-87.47041,19.933812],[-87.470889,19.934002],[-87.472162,19.935943],[-87.472348,19.936481],[-87.473232,19.937365],[-87.473677,19.938684],[-87.47379,19.939534],[-87.473681,19.93983],[-87.47361,19.940872],[-87.472951,19.941499],[-87.472952,19.941899],[-87.472659,19.942473],[-87.472238,19.94296],[-87.472038,19.943638],[-87.471194,19.943988],[-87.471011,19.944249],[-87.470423,19.944337],[-87.468863,19.945001],[-87.467273,19.945056],[-87.466922,19.944571],[-87.466094,19.944277],[-87.465505,19.943845],[-87.465394,19.943567],[-87.465007,19.943325],[-87.464548,19.943274],[-87.463573,19.942947],[-87.462855,19.942323],[-87.461861,19.942013],[-87.461602,19.941284],[-87.460903,19.941113],[-87.4607,19.940766],[-87.46,19.940212],[-87.459981,19.939882],[-87.459575,19.939223],[-87.459701,19.938285],[-87.459261,19.938546],[-87.458379,19.938496],[-87.457735,19.93829],[-87.457438,19.93737],[-87.457161,19.936867],[-87.457177,19.93612],[-87.457618,19.936084],[-87.457543,19.935581],[-87.456936,19.935113],[-87.456916,19.934662],[-87.457576,19.934087],[-87.457444,19.933464],[-87.456819,19.933587],[-87.456689,19.933222],[-87.457461,19.932995],[-87.457716,19.932542],[-87.457385,19.932283],[-87.457512,19.931692],[-87.45685,19.931537],[-87.4565,19.931191],[-87.456665,19.93093],[-87.456608,19.930513],[-87.455927,19.930029],[-87.455908,19.92989],[-87.457635,19.929798],[-87.457782,19.929624],[-87.457853,19.928825],[-87.457227,19.928497],[-87.457355,19.928201],[-87.458145,19.928217],[-87.45853,19.928059],[-87.459174,19.928127],[-87.45934,19.928474],[-87.458992,19.928805],[-87.459452,19.92903],[-87.460091,19.927708],[-87.459833,19.927535],[-87.460843,19.927254],[-87.460824,19.926872],[-87.459848,19.926267],[-87.45935,19.925678],[-87.458907,19.92481],[-87.458411,19.92476],[-87.457747,19.924136],[-87.456754,19.923791],[-87.456367,19.923427],[-87.456237,19.922889],[-87.455373,19.922544],[-87.454756,19.922033],[-87.453653,19.922001],[-87.453396,19.921776],[-87.452547,19.921586],[-87.451952,19.921677],[-87.451648,19.921965],[-87.450763,19.921884],[-87.450213,19.921562],[-87.449861,19.920964],[-87.449567,19.920754],[-87.449218,19.919962],[-87.448832,19.920418],[-87.448023,19.919917],[-87.447639,19.919041],[-87.447787,19.91819],[-87.447413,19.91761],[-87.447096,19.918065],[-87.446644,19.917639],[-87.446391,19.916689],[-87.445113,19.915272],[-87.444391,19.914766],[-87.443596,19.914597],[-87.442848,19.914013],[-87.441984,19.912573],[-87.441697,19.912214],[-87.440802,19.911661],[-87.440293,19.911187],[-87.439114,19.910704],[-87.438145,19.910434],[-87.436495,19.910158],[-87.436756,19.910762],[-87.437274,19.910812],[-87.437623,19.911154],[-87.437734,19.91159],[-87.437651,19.912357],[-87.438145,19.912773],[-87.438366,19.913136],[-87.437983,19.913252],[-87.437059,19.913055],[-87.436819,19.91214],[-87.436158,19.912076],[-87.435982,19.912319],[-87.436286,19.913334],[-87.435933,19.91408],[-87.436076,19.914365],[-87.436399,19.914396],[-87.436507,19.914708],[-87.436325,19.915337],[-87.435822,19.915407],[-87.435314,19.915232],[-87.435401,19.914671],[-87.435249,19.913998],[-87.434627,19.913275],[-87.434649,19.913069],[-87.435351,19.912432],[-87.43522,19.911842],[-87.434167,19.911428],[-87.433789,19.910952],[-87.432985,19.909252],[-87.432918,19.908667],[-87.433153,19.907762],[-87.43341,19.907452],[-87.432893,19.906556],[-87.432948,19.906043],[-87.432774,19.905781],[-87.43291,19.904526],[-87.43263,19.903944],[-87.432779,19.902557],[-87.432405,19.901496],[-87.431955,19.899312],[-87.432006,19.898839],[-87.431691,19.898285],[-87.431836,19.896943],[-87.431276,19.895327],[-87.431738,19.89104],[-87.431595,19.890666],[-87.431962,19.89012],[-87.431871,19.889752],[-87.43157,19.889871],[-87.431352,19.889281],[-87.4314,19.888834],[-87.431161,19.888261],[-87.431288,19.887081],[-87.431768,19.886756],[-87.432913,19.886452],[-87.434082,19.88644],[-87.434826,19.886709],[-87.435318,19.88706],[-87.435617,19.887565],[-87.436653,19.887424],[-87.437156,19.887472],[-87.43822,19.88776],[-87.438535,19.887395],[-87.438583,19.886948],[-87.438274,19.886534],[-87.438315,19.886149],[-87.438003,19.885463],[-87.437691,19.886534],[-87.437075,19.886604],[-87.436811,19.886381],[-87.4359,19.886695],[-87.435554,19.886513],[-87.435455,19.886089],[-87.435029,19.886157],[-87.433358,19.886054],[-87.434146,19.885552],[-87.434781,19.885365],[-87.435337,19.884998],[-87.435923,19.884362],[-87.43598,19.883836],[-87.436281,19.883353],[-87.436992,19.882586],[-87.437463,19.882341],[-87.437307,19.882033],[-87.437366,19.881488],[-87.437605,19.880966],[-87.438055,19.880744],[-87.43811,19.880239],[-87.439158,19.879679],[-87.439853,19.879523],[-87.439819,19.87913],[-87.440126,19.878655],[-87.439578,19.877717],[-87.439734,19.877064],[-87.440135,19.876689],[-87.440849,19.876382],[-87.441954,19.875412],[-87.441181,19.874016],[-87.441376,19.873602],[-87.44102,19.873265],[-87.440923,19.872828],[-87.440529,19.872232],[-87.440711,19.87188],[-87.440777,19.871263],[-87.440975,19.870762],[-87.440626,19.870272],[-87.440314,19.869065],[-87.440029,19.868243],[-87.439076,19.867792],[-87.438743,19.867549],[-87.438574,19.867168],[-87.438511,19.866422],[-87.439411,19.865487],[-87.439876,19.864752],[-87.440149,19.864525],[-87.441256,19.862995],[-87.441287,19.862713],[-87.442128,19.861524],[-87.442367,19.861009],[-87.442777,19.8605],[-87.442842,19.859894],[-87.443027,19.859578],[-87.443665,19.858934],[-87.444242,19.8582],[-87.444497,19.857656],[-87.444854,19.857499],[-87.445447,19.856928],[-87.445673,19.856529],[-87.446463,19.855572],[-87.446695,19.854694],[-87.447035,19.854393],[-87.447076,19.854013],[-87.44752,19.853227],[-87.447571,19.852756],[-87.448196,19.851896],[-87.448808,19.851374],[-87.448702,19.851024],[-87.448782,19.850279],[-87.448993,19.849779],[-87.449254,19.8496],[-87.449333,19.848872],[-87.449311,19.847654],[-87.448909,19.847152],[-87.448893,19.846443],[-87.449322,19.845243],[-87.449628,19.844605],[-87.449722,19.843736],[-87.450336,19.842467],[-87.450187,19.842156],[-87.450562,19.841342],[-87.450611,19.84089],[-87.450874,19.840454],[-87.451046,19.839648],[-87.45132,19.839471],[-87.451234,19.838568],[-87.451281,19.838134],[-87.451935,19.837764],[-87.45202,19.836975],[-87.45273,19.836452],[-87.453563,19.836281],[-87.454614,19.836239],[-87.455993,19.836495],[-87.456899,19.836937],[-87.457537,19.836838],[-87.458939,19.837068],[-87.459301,19.837355],[-87.459962,19.837405],[-87.46097,19.836655],[-87.461246,19.836967],[-87.461873,19.836744],[-87.462941,19.836937],[-87.463888,19.836725],[-87.465286,19.836905],[-87.465526,19.837338],[-87.465905,19.837486],[-87.466219,19.838007],[-87.466739,19.838417],[-87.46776,19.83769],[-87.467796,19.83729],[-87.46741,19.837291],[-87.466897,19.837553],[-87.466767,19.836998],[-87.466856,19.836147],[-87.467205,19.836076],[-87.467846,19.836296],[-87.468121,19.83596],[-87.468026,19.835743],[-87.468357,19.835603],[-87.468979,19.834924],[-87.46973,19.834436],[-87.470262,19.834261],[-87.470829,19.833512],[-87.471141,19.833425],[-87.471635,19.832729],[-87.472075,19.832554],[-87.472275,19.831911],[-87.472291,19.830903],[-87.47262,19.830607],[-87.472878,19.830902],[-87.472863,19.831857],[-87.472626,19.832622],[-87.471894,19.833423],[-87.47127,19.833494],[-87.470957,19.833773],[-87.470416,19.834602],[-87.469823,19.834649],[-87.469456,19.835348],[-87.469477,19.8359],[-87.469819,19.836523],[-87.47048,19.836887],[-87.471586,19.836252],[-87.471975,19.836215],[-87.472168,19.835902],[-87.472498,19.835836],[-87.472594,19.83534],[-87.473146,19.834944],[-87.473756,19.834326],[-87.474191,19.833654],[-87.474724,19.833184],[-87.475345,19.832453],[-87.475188,19.831957],[-87.475915,19.831679],[-87.476127,19.83099],[-87.476076,19.830282],[-87.476299,19.830181],[-87.475791,19.829172],[-87.475286,19.829072],[-87.475295,19.82886],[-87.47624,19.828756],[-87.476371,19.828473],[-87.476899,19.828395],[-87.47687,19.828056],[-87.476022,19.827742],[-87.475893,19.827593],[-87.475271,19.827773],[-87.474873,19.827402],[-87.474444,19.827238],[-87.474132,19.826908],[-87.474792,19.82653],[-87.475239,19.82662],[-87.475139,19.825794],[-87.47477,19.825657],[-87.474266,19.825971],[-87.473877,19.825779],[-87.473161,19.82586],[-87.472672,19.8262],[-87.472493,19.826052],[-87.472642,19.825561],[-87.474662,19.825235],[-87.474991,19.824839],[-87.475,19.824545],[-87.4746,19.824233],[-87.474238,19.823086],[-87.473994,19.822774],[-87.473971,19.82235],[-87.474405,19.821497],[-87.474982,19.821596],[-87.475553,19.821249],[-87.475427,19.820659],[-87.475575,19.820211],[-87.476546,19.819713],[-87.476818,19.818839],[-87.476792,19.818579],[-87.477039,19.817682],[-87.477737,19.817421],[-87.477935,19.817113],[-87.477461,19.816997],[-87.477113,19.817234],[-87.476689,19.817258],[-87.476563,19.816881],[-87.476685,19.81589],[-87.476958,19.815582],[-87.477106,19.814921],[-87.477627,19.814188],[-87.478275,19.813998],[-87.478849,19.814044],[-87.479222,19.813783],[-87.48017,19.813615],[-87.480193,19.813214],[-87.479891,19.812129],[-87.480063,19.811421],[-87.48086,19.811041],[-87.481709,19.81111],[-87.482109,19.811439],[-87.482211,19.812218],[-87.48256,19.812311],[-87.482758,19.81165],[-87.483032,19.811602],[-87.48328,19.811224],[-87.483253,19.810563],[-87.482754,19.810399],[-87.482154,19.809929],[-87.48163,19.809694],[-87.481479,19.809247],[-87.481078,19.808634],[-87.480901,19.808068],[-87.481025,19.80762],[-87.481473,19.807453],[-87.481719,19.806242],[-87.48127,19.806125],[-87.481019,19.805749],[-87.481317,19.805087],[-87.481415,19.804497],[-87.481139,19.804002],[-87.481062,19.803483],[-87.481311,19.803223],[-87.48181,19.803411],[-87.482557,19.802795],[-87.483755,19.803169],[-87.484378,19.802955],[-87.485099,19.802434],[-87.485872,19.802149],[-87.48612,19.801889],[-87.486144,19.801464],[-87.486668,19.801628],[-87.487191,19.801296],[-87.487265,19.800989],[-87.487037,19.799999],[-87.486637,19.799693],[-87.486233,19.797995],[-87.486007,19.797312],[-87.486231,19.797099],[-87.485803,19.795967],[-87.485303,19.795544],[-87.485324,19.794176],[-87.485173,19.793751],[-87.48539,19.792459],[-87.485313,19.791893],[-87.485686,19.791514],[-87.485757,19.790311],[-87.48618,19.789955],[-87.486225,19.788257],[-87.486598,19.787996],[-87.48647,19.786958],[-87.485148,19.786584],[-87.483225,19.785976],[-87.482776,19.78593],[-87.482004,19.786074],[-87.481155,19.785746],[-87.479534,19.78575],[-87.478636,19.78554],[-87.478335,19.785211],[-87.478183,19.784314],[-87.476462,19.784295],[-87.475614,19.784015],[-87.475613,19.783684],[-87.475336,19.782977],[-87.47551,19.782764],[-87.475656,19.781537],[-87.477201,19.781179],[-87.477947,19.780564],[-87.478521,19.780609],[-87.47957,19.781078],[-87.480094,19.781077],[-87.480269,19.781265],[-87.480917,19.781381],[-87.481091,19.781192],[-87.480741,19.780886],[-87.479767,19.780441],[-87.479517,19.780229],[-87.479515,19.77945],[-87.479713,19.779025],[-87.479563,19.778742],[-87.478589,19.778438],[-87.478289,19.778132],[-87.47699,19.777216],[-87.474722,19.777552],[-87.473078,19.778429],[-87.472157,19.778762],[-87.471086,19.779284],[-87.470614,19.779757],[-87.470192,19.780466],[-87.469644,19.780703],[-87.469447,19.781506],[-87.469146,19.781822],[-87.4687,19.78305],[-87.468878,19.784229],[-87.469531,19.785855],[-87.469708,19.786421],[-87.470307,19.786868],[-87.470508,19.787245],[-87.470535,19.787976],[-87.471011,19.788659],[-87.471038,19.789438],[-87.471413,19.789838],[-87.471705,19.789897],[-87.471949,19.790732],[-87.472436,19.791879],[-87.472666,19.792933],[-87.472622,19.793436],[-87.472982,19.794787],[-87.473301,19.795708],[-87.473353,19.796298],[-87.473554,19.796958],[-87.474405,19.797899],[-87.474832,19.79896],[-87.475309,19.79943],[-87.47546,19.799901],[-87.476062,19.800961],[-87.476221,19.801555],[-87.47675,19.802847],[-87.476995,19.804356],[-87.476799,19.805419],[-87.476951,19.806433],[-87.476932,19.80832],[-87.476759,19.808934],[-87.476687,19.809666],[-87.47639,19.810902],[-87.475946,19.812311],[-87.475598,19.812595],[-87.475251,19.813421],[-87.475253,19.8142],[-87.474605,19.815401],[-87.474083,19.815734],[-87.473885,19.816155],[-87.474332,19.81668],[-87.474304,19.817078],[-87.47359,19.817787],[-87.473625,19.818232],[-87.473867,19.818753],[-87.472908,19.818753],[-87.472416,19.818958],[-87.472208,19.819808],[-87.471676,19.820347],[-87.471415,19.821145],[-87.471777,19.821534],[-87.471665,19.822017],[-87.471366,19.822254],[-87.470912,19.822959],[-87.470817,19.823837],[-87.470203,19.825419],[-87.469669,19.82621],[-87.468886,19.82705],[-87.468488,19.827311],[-87.467692,19.828162],[-87.467344,19.828659],[-87.466871,19.828943],[-87.466572,19.828944],[-87.465053,19.829962],[-87.464095,19.830433],[-87.463548,19.831071],[-87.461979,19.832066],[-87.459907,19.833073],[-87.459089,19.833206],[-87.458605,19.833499],[-87.456448,19.83356],[-87.455186,19.833349],[-87.454225,19.833573],[-87.45251,19.834404],[-87.451924,19.835161],[-87.451511,19.835349],[-87.451004,19.835778],[-87.450965,19.836341],[-87.450469,19.837404],[-87.448928,19.839178],[-87.448457,19.841137],[-87.448211,19.841468],[-87.447581,19.842673],[-87.447118,19.843075],[-87.446472,19.844186],[-87.446475,19.845248],[-87.446264,19.846253],[-87.445869,19.847254],[-87.445781,19.848711],[-87.445504,19.850581],[-87.445182,19.851361],[-87.445093,19.85232],[-87.444733,19.85322],[-87.444142,19.854218],[-87.443672,19.855352],[-87.443316,19.855677],[-87.442677,19.856581],[-87.441066,19.858261],[-87.440387,19.859197],[-87.440117,19.859744],[-87.439803,19.860045],[-87.439596,19.861119],[-87.438899,19.861829],[-87.438694,19.862297],[-87.438696,19.86284],[-87.438249,19.86362],[-87.437602,19.864117],[-87.43702,19.864329],[-87.436647,19.864778],[-87.436098,19.864732],[-87.435576,19.865252],[-87.436277,19.866265],[-87.436379,19.867138],[-87.436654,19.86735],[-87.436933,19.868835],[-87.436913,19.870699],[-87.436665,19.871125],[-87.436295,19.872872],[-87.436023,19.873722],[-87.435428,19.875092],[-87.434732,19.876108],[-87.434514,19.877253],[-87.434087,19.877525],[-87.433813,19.877899],[-87.433582,19.879041],[-87.433358,19.879658],[-87.433325,19.880139],[-87.433071,19.880591],[-87.432602,19.882409],[-87.432265,19.882974],[-87.431908,19.883903],[-87.430893,19.884695],[-87.43033,19.884943],[-87.430119,19.886046],[-87.4301,19.886841],[-87.430246,19.888494],[-87.430635,19.889899],[-87.430961,19.890673],[-87.43109,19.892324],[-87.430794,19.893528],[-87.430723,19.89513],[-87.430803,19.896923],[-87.431005,19.897701],[-87.431411,19.900249],[-87.431513,19.901731],[-87.431819,19.902422],[-87.431945,19.903295],[-87.432399,19.905602],[-87.432302,19.906711],[-87.432479,19.907513],[-87.432507,19.908693],[-87.432759,19.909518],[-87.432848,19.910815],[-87.43302,19.911534],[-87.433472,19.912275],[-87.433673,19.913124],[-87.434008,19.913725],[-87.434527,19.915446],[-87.434504,19.915717],[-87.434856,19.916447],[-87.435485,19.919575],[-87.435566,19.920669],[-87.435719,19.921474],[-87.435937,19.922026],[-87.435996,19.922697],[-87.436197,19.923381],[-87.436514,19.924011],[-87.436713,19.924806],[-87.43688,19.926002],[-87.436387,19.926954],[-87.436518,19.927649],[-87.437434,19.929097],[-87.437476,19.92976],[-87.438193,19.929975],[-87.439003,19.930004],[-87.439681,19.930575],[-87.440563,19.930747],[-87.440924,19.93066],[-87.441832,19.929966],[-87.443501,19.929959],[-87.443745,19.929826],[-87.445137,19.929935],[-87.445189,19.929413],[-87.445556,19.928962],[-87.446968,19.92903],[-87.448092,19.929169],[-87.448567,19.92964],[-87.449472,19.929932],[-87.450117,19.930326],[-87.451368,19.931496],[-87.452245,19.932485],[-87.452071,19.932934],[-87.452471,19.93324],[-87.452873,19.933946],[-87.453223,19.93404],[-87.453124,19.934583],[-87.45345,19.935125],[-87.4539,19.935336],[-87.454002,19.935855],[-87.454378,19.936609],[-87.454404,19.936915],[-87.455064,19.938303],[-87.455615,19.938632],[-87.455466,19.939034],[-87.455567,19.939411],[-87.456045,19.940194],[-87.456597,19.941673],[-87.456598,19.942074],[-87.457099,19.942616],[-87.457377,19.943724],[-87.457879,19.944714],[-87.457806,19.945327],[-87.458058,19.946318],[-87.457786,19.947309],[-87.458113,19.948063],[-87.459089,19.948981],[-87.459691,19.949782],[-87.459892,19.950206],[-87.460342,19.950629],[-87.460693,19.951171],[-87.461193,19.951335],[-87.462194,19.952276],[-87.462546,19.953219],[-87.463097,19.953501],[-87.463398,19.954137],[-87.463748,19.954419],[-87.464205,19.955974],[-87.465162,19.958277],[-87.465036,19.958307],[-87.465364,19.959392],[-87.465288,19.960034],[-87.465519,19.961161],[-87.465498,19.962411],[-87.465675,19.962491],[-87.465726,19.963614],[-87.465461,19.96436],[-87.465555,19.964912],[-87.465156,19.965196],[-87.464986,19.966707],[-87.465488,19.967555],[-87.465614,19.968144],[-87.466318,19.968872],[-87.466546,19.969482],[-87.467228,19.970853],[-87.467391,19.971432],[-87.467069,19.971769],[-87.467491,19.972439],[-87.467557,19.972835],[-87.467365,19.973568],[-87.467562,19.974635],[-87.4675,19.975551],[-87.467696,19.976252],[-87.467698,19.976862],[-87.46825,19.978142],[-87.468123,19.978905],[-87.468254,19.979362],[-87.468358,19.980546],[-87.468104,19.982041],[-87.467719,19.982713],[-87.467171,19.983294],[-87.465979,19.984121],[-87.465626,19.984702],[-87.464465,19.985224],[-87.464079,19.985743],[-87.464052,19.987421],[-87.464279,19.987756],[-87.464216,19.988306],[-87.464347,19.988854],[-87.464316,19.989495],[-87.463997,19.990594],[-87.464223,19.991611],[-87.464428,19.99192],[-87.464843,19.993553],[-87.464909,19.994048],[-87.465112,19.994116],[-87.46617,19.993975],[-87.467591,19.993044],[-87.4693,19.992259],[-87.471538,19.992474],[-87.472731,19.993221],[-87.473558,19.994092],[-87.474435,19.995283],[-87.475258,19.996818],[-87.476266,19.998992],[-87.476781,20.001683],[-87.477029,20.003297],[-87.477436,20.004965],[-87.478249,20.007226],[-87.478049,20.007679],[-87.478086,20.008521],[-87.477772,20.011442],[-87.47738,20.012428],[-87.477262,20.013523],[-87.476803,20.015051],[-87.476458,20.016377],[-87.476035,20.020313],[-87.476347,20.025142],[-87.476857,20.028894],[-87.477126,20.030166],[-87.477529,20.033033],[-87.477723,20.034745],[-87.477818,20.036609],[-87.478932,20.039125],[-87.479445,20.040461],[-87.479713,20.041654],[-87.479619,20.042533],[-87.479105,20.045511],[-87.479116,20.047644],[-87.478442,20.053914],[-87.477917,20.056142],[-87.477336,20.057942],[-87.477588,20.060838],[-87.47767,20.062568],[-87.477793,20.063913],[-87.477878,20.065519],[-87.477872,20.067298],[-87.478242,20.069852],[-87.478355,20.072427],[-87.478222,20.073656],[-87.478388,20.074184],[-87.478443,20.07546],[-87.478391,20.076902],[-87.478193,20.078748],[-87.477155,20.083324],[-87.476466,20.086134],[-87.475543,20.088594],[-87.474587,20.091573],[-87.473595,20.100803],[-87.472736,20.103352],[-87.471734,20.105343],[-87.47125,20.106883],[-87.470538,20.108541],[-87.469715,20.11082],[-87.468728,20.113799],[-87.467835,20.116401],[-87.467049,20.118577],[-87.466184,20.121564],[-87.465582,20.123275],[-87.465354,20.124405],[-87.464993,20.125819],[-87.464579,20.127755],[-87.463594,20.133093],[-87.462957,20.135309],[-87.462139,20.137653],[-87.461269,20.139721],[-87.460628,20.141475],[-87.460305,20.142663],[-87.45987,20.144702],[-87.459357,20.146185],[-87.458613,20.148918],[-87.4581,20.150397],[-87.456884,20.153033],[-87.456548,20.154352],[-87.455994,20.155683],[-87.455372,20.157387],[-87.45382,20.161237],[-87.4529,20.164062],[-87.45204,20.1656],[-87.451766,20.165632],[-87.451683,20.166126],[-87.451098,20.166583],[-87.450642,20.167431],[-87.450398,20.168188],[-87.450007,20.168758],[-87.449335,20.16899],[-87.449261,20.1693],[-87.449469,20.169887],[-87.449389,20.170352],[-87.448947,20.171022],[-87.448515,20.171321],[-87.448341,20.172149],[-87.447792,20.173106],[-87.447516,20.173828],[-87.447216,20.175099],[-87.446581,20.175566],[-87.446144,20.176422],[-87.446414,20.176558],[-87.446298,20.177008],[-87.445811,20.17707],[-87.445677,20.177405],[-87.44588,20.177583],[-87.445839,20.177969],[-87.445308,20.178316],[-87.444855,20.179121],[-87.443625,20.18208],[-87.443039,20.183382],[-87.442599,20.184744],[-87.442309,20.185223],[-87.441388,20.187614],[-87.44061,20.189991],[-87.439949,20.191654],[-87.439625,20.192611],[-87.438769,20.194126],[-87.438092,20.1951],[-87.437744,20.195755],[-87.437711,20.196089],[-87.436658,20.197617],[-87.436313,20.198357],[-87.43566,20.199044],[-87.435164,20.199406],[-87.434348,20.200445],[-87.432773,20.202079],[-87.432352,20.203057],[-87.431658,20.203877],[-87.431104,20.205354],[-87.430886,20.206697],[-87.430833,20.208001],[-87.430703,20.208603],[-87.430702,20.209717],[-87.430447,20.210351],[-87.429342,20.212251],[-87.42889,20.213475],[-87.428557,20.214615],[-87.427986,20.215747],[-87.427571,20.217052],[-87.426515,20.219342],[-87.425592,20.22187],[-87.424527,20.22429],[-87.423547,20.226242],[-87.422398,20.227826],[-87.421008,20.229269],[-87.419658,20.230574],[-87.417024,20.232763],[-87.415741,20.234223],[-87.415413,20.235263],[-87.415158,20.236457],[-87.414045,20.238568],[-87.412956,20.240448],[-87.411185,20.242508],[-87.40994,20.244316],[-87.408438,20.245877],[-87.407589,20.246639],[-87.405746,20.248479],[-87.404513,20.249402],[-87.404413,20.250328],[-87.403568,20.251221],[-87.402732,20.251877],[-87.401088,20.252691],[-87.400003,20.254074],[-87.39906,20.255468],[-87.398368,20.256375],[-87.39828,20.257191],[-87.397301,20.258629],[-87.395742,20.260655],[-87.394199,20.262545],[-87.392039,20.264794],[-87.389561,20.26746],[-87.38631,20.269523],[-87.385691,20.269463],[-87.384219,20.268048],[-87.383498,20.26766],[-87.38302,20.267614],[-87.382534,20.267825],[-87.381968,20.26843],[-87.381836,20.268935],[-87.381103,20.27006],[-87.379115,20.272769],[-87.378676,20.274594],[-87.37917,20.275245],[-87.380499,20.275979],[-87.381105,20.276867],[-87.381397,20.277758],[-87.381158,20.277757],[-87.381172,20.27881],[-87.380867,20.279896],[-87.380153,20.281755],[-87.379465,20.282869],[-87.378946,20.283557],[-87.377869,20.284551],[-87.376983,20.285264],[-87.376322,20.285655],[-87.375385,20.286076],[-87.374556,20.286083],[-87.373287,20.285906],[-87.372732,20.285323],[-87.371848,20.284721],[-87.371195,20.284572],[-87.370743,20.284718],[-87.369791,20.285595],[-87.369533,20.286437],[-87.369945,20.286766],[-87.371445,20.286911],[-87.372151,20.286401],[-87.37262,20.286235],[-87.373132,20.286513],[-87.373414,20.286848],[-87.373993,20.287939],[-87.374101,20.288508],[-87.374674,20.288563],[-87.374793,20.289448],[-87.374536,20.290102],[-87.374619,20.290842],[-87.374011,20.291391],[-87.373116,20.291095],[-87.372568,20.291497],[-87.372471,20.292391],[-87.372038,20.292762],[-87.372545,20.293547],[-87.371952,20.294644],[-87.371215,20.295617],[-87.370579,20.296017],[-87.369201,20.296249],[-87.368423,20.296173],[-87.367544,20.295952],[-87.36705,20.295431],[-87.364702,20.294267],[-87.364211,20.294922],[-87.364456,20.295152],[-87.36405,20.296149],[-87.362254,20.298013],[-87.361458,20.29941],[-87.36066,20.300923],[-87.36016,20.302608],[-87.359318,20.304182],[-87.358711,20.305821],[-87.358576,20.307064],[-87.357428,20.308274],[-87.357034,20.309663],[-87.355975,20.312203],[-87.355837,20.313472],[-87.356157,20.314478],[-87.35651,20.315023],[-87.356108,20.315504],[-87.355216,20.315418],[-87.354475,20.314965],[-87.354428,20.316938],[-87.354009,20.31805],[-87.353924,20.318839],[-87.353549,20.319654],[-87.352956,20.320475],[-87.352171,20.321186],[-87.351854,20.321575],[-87.352354,20.322868],[-87.352883,20.323469],[-87.354228,20.325554],[-87.354485,20.327902],[-87.35422,20.329147],[-87.35402,20.329751],[-87.353637,20.330021],[-87.353224,20.330775],[-87.352794,20.331366],[-87.3521,20.33212],[-87.35117,20.332771],[-87.348958,20.333507],[-87.3486,20.333892],[-87.348546,20.334389],[-87.348709,20.334974],[-87.348835,20.336338],[-87.348739,20.336856],[-87.348383,20.337874],[-87.348054,20.338372],[-87.347624,20.338722],[-87.347406,20.339312],[-87.346843,20.339372],[-87.346406,20.339904],[-87.345781,20.340082],[-87.345312,20.340083],[-87.344687,20.340261],[-87.344343,20.340586],[-87.344344,20.340852],[-87.343782,20.341236],[-87.343345,20.341945],[-87.342345,20.342242],[-87.342159,20.343038],[-87.341816,20.343393],[-87.341159,20.343483],[-87.340817,20.344693],[-87.340068,20.345313],[-87.339819,20.34614],[-87.33932,20.34673],[-87.33929,20.347379],[-87.338979,20.347852],[-87.339042,20.348353],[-87.339888,20.348971],[-87.340078,20.349914],[-87.34033,20.350621],[-87.340112,20.350976],[-87.339864,20.352008],[-87.338551,20.35266],[-87.337737,20.352514],[-87.337041,20.35266],[-87.336436,20.353444],[-87.33641,20.353831],[-87.336661,20.354358],[-87.337286,20.354998],[-87.337776,20.355178],[-87.338326,20.355906],[-87.338141,20.356761],[-87.337953,20.356998],[-87.336483,20.356882],[-87.335512,20.356442],[-87.334939,20.356739],[-87.89921,20.507012],
	], '#000000', 'Equipo 2');
	addRaidPolygon(mapLayer, [
		[-89.146989,19.215462],[-89.146999,19.198565],[-89.146951,19.133157],[-89.13582,19.132373],[-89.137563,19.111212],[-89.141844,19.059205],[-89.147122,18.995046],[-89.148602,18.877307],[-89.147087,18.84305],[-89.145573,18.808795],[-89.144938,18.799627],[-89.144385,18.75619],[-89.144382,18.755919],[-89.155742,18.753115],[-89.153002,18.740977],[-89.152115,18.735731],[-89.151913,18.732772],[-89.151314,18.724021],[-89.151333,18.701271],[-89.149621,18.549611],[-89.150083,18.47568],[-89.150084,18.475489],[-89.150085,18.475434],[-89.150085,18.475323],[-89.150238,18.451059],[-89.134148,18.450778],[-89.134129,18.450777],[-89.134111,18.450777],[-89.134077,18.450776],[-89.12549,18.450625],[-89.124887,18.444494],[-89.124066,18.428994],[-89.124065,18.42897],[-89.124063,18.428947],[-89.12406,18.428899],[-89.121229,18.38585],[-89.129767,18.385696],[-89.138214,18.385544],[-89.13236,18.293403],[-89.151674,18.293563],[-89.158059,18.221327],[-89.142873,18.224164],[-89.14317,18.175857],[-89.143066,18.14582],[-89.163669,18.145393],[-89.163698,18.145392],[-89.163765,18.145391],[-89.163797,18.14539],[-89.200237,18.144629],[-89.202458,18.083276],[-89.178506,18.082944],[-89.152092,18.082574],[-89.151917,18.082572],[-89.151826,18.082573],[-89.151601,18.082575],[-89.144383,18.082443],[-89.144497,18.076926],[-89.144705,18.06174],[-89.144754,18.057699],[-89.163361,18.057885],[-89.163341,18.050571],[-89.163325,18.046531],[-89.163297,18.044661],[-89.163279,18.043417],[-89.163277,18.041773],[-89.163266,18.041317],[-89.163004,18.018517],[-89.193016,18.020347],[-89.195855,18.02052],[-89.206739,18.02108],[-89.207011,18.014593],[-89.20712,18.01198],[-89.207198,18.010132],[-89.2072,18.010103],[-89.207231,18.009366],[-89.207311,18.007445],[-89.207412,17.993148],[-89.207411,17.993084],[-89.207414,17.992649],[-89.207367,17.989334],[-89.207307,17.985197],[-89.207137,17.973362],[-89.206661,17.966135],[-89.206626,17.965572],[-89.205872,17.9541],[-89.202306,17.95402],[-89.201923,17.954012],[-89.190574,17.953758],[-89.15217,17.95361],[-89.151957,17.940257],[-89.151563,17.941386],[-89.150024,17.94207],[-89.148122,17.942371],[-89.147533,17.943706],[-89.146999,17.944712],[-89.145769,17.946108],[-89.145428,17.948767],[-89.144971,17.951071],[-89.139437,17.953705],[-89.137441,17.954091],[-89.136717,17.954622],[-89.136211,17.95544],[-89.135928,17.956167],[-89.135744,17.956848],[-89.135603,17.957859],[-89.135714,17.958639],[-89.135731,17.959064],[-89.1356,17.95951],[-89.1352,17.959905],[-89.134259,17.96015],[-89.133639,17.960399],[-89.133459,17.960845],[-89.133816,17.961605],[-89.133807,17.962147],[-89.133723,17.964197],[-89.13349,17.965294],[-89.132844,17.966502],[-89.132891,17.967468],[-89.132758,17.968174],[-89.132683,17.96862],[-89.132783,17.968856],[-89.133177,17.969149],[-89.133675,17.969237],[-89.133873,17.96948],[-89.13394,17.969878],[-89.133971,17.970276],[-89.133993,17.970624],[-89.133968,17.971218],[-89.133381,17.971314],[-89.132963,17.97131],[-89.132753,17.971593],[-89.132705,17.972034],[-89.132326,17.972208],[-89.132008,17.97233],[-89.131645,17.97241],[-89.131173,17.972229],[-89.130819,17.972309],[-89.130582,17.972507],[-89.130532,17.97277],[-89.13058,17.973092],[-89.130366,17.973259],[-89.12978,17.973223],[-89.129418,17.973303],[-89.129031,17.97363],[-89.128618,17.973906],[-89.128131,17.974013],[-89.127509,17.97396],[-89.127001,17.973933],[-89.126462,17.974151],[-89.125854,17.974446],[-89.125016,17.974871],[-89.124214,17.975278],[-89.123831,17.975164],[-89.123465,17.974947],[-89.123315,17.974304],[-89.123177,17.973354],[-89.122911,17.972636],[-89.122409,17.972158],[-89.121704,17.971818],[-89.121217,17.971908],[-89.120648,17.972107],[-89.119946,17.971979],[-89.119328,17.971511],[-89.118845,17.970546],[-89.118376,17.969889],[-89.117553,17.969356],[-89.116694,17.968862],[-89.116047,17.968745],[-89.115675,17.968816],[-89.115465,17.968997],[-89.115351,17.969558],[-89.115126,17.97001],[-89.114889,17.970275],[-89.114439,17.970433],[-89.11388,17.970431],[-89.113408,17.970249],[-89.112811,17.970061],[-89.112206,17.969872],[-89.111592,17.96976],[-89.111001,17.969995],[-89.110424,17.970773],[-89.109929,17.971468],[-89.109342,17.972068],[-89.108586,17.972653],[-89.107758,17.973145],[-89.107247,17.973421],[-89.106958,17.973797],[-89.107015,17.974093],[-89.106991,17.974314],[-89.106869,17.97451],[-89.106756,17.974698],[-89.106768,17.97491],[-89.107088,17.974957],[-89.10736,17.974776],[-89.107635,17.974705],[-89.107787,17.974865],[-89.107807,17.975077],[-89.10773,17.975281],[-89.107546,17.975444],[-89.107335,17.975641],[-89.107167,17.975703],[-89.10698,17.975654],[-89.106828,17.975579],[-89.106745,17.975348],[-89.106532,17.975088],[-89.10629,17.975075],[-89.105936,17.97508],[-89.105601,17.975253],[-89.105613,17.975516],[-89.105765,17.975667],[-89.10597,17.975724],[-89.106186,17.975802],[-89.106509,17.975829],[-89.106602,17.975938],[-89.106622,17.976073],[-89.106598,17.976277],[-89.106451,17.976386],[-89.106175,17.97625],[-89.105638,17.976177],[-89.105391,17.976248],[-89.105349,17.976617],[-89.105217,17.976976],[-89.105011,17.97719],[-89.10487,17.977239],[-89.104514,17.977107],[-89.104239,17.977154],[-89.104106,17.97751],[-89.104033,17.977726],[-89.103888,17.977808],[-89.103704,17.977782],[-89.103483,17.977756],[-89.103275,17.977767],[-89.103111,17.977851],[-89.103119,17.978114],[-89.10336,17.978458],[-89.103446,17.978702],[-89.103408,17.978953],[-89.103373,17.979173],[-89.103259,17.979429],[-89.103102,17.979595],[-89.10286,17.980218],[-89.101952,17.98099],[-89.10133,17.981334],[-89.100738,17.981372],[-89.09995,17.981359],[-89.098619,17.981386],[-89.097873,17.981278],[-89.096054,17.981864],[-89.09542,17.982556],[-89.0948,17.984405],[-89.091982,17.986234],[-89.090815,17.987098],[-89.09036,17.987435],[-89.089764,17.987662],[-89.08917,17.987817],[-89.087955,17.98827],[-89.087185,17.988635],[-89.086862,17.988772],[-89.085815,17.98951],[-89.085485,17.990094],[-89.08506,17.990418],[-89.084266,17.990735],[-89.082382,17.991413],[-89.081514,17.99173],[-89.080816,17.992214],[-89.080166,17.992723],[-89.079366,17.992987],[-89.079269,17.993019],[-89.078803,17.993173],[-89.07833,17.993298],[-89.076353,17.993818],[-89.07475,17.993472],[-89.074585,17.993437],[-89.072034,17.99276],[-89.07046,17.99257],[-89.069728,17.992149],[-89.068899,17.991673],[-89.06886,17.991652],[-89.067829,17.991099],[-89.067361,17.990847],[-89.065684,17.990891],[-89.065295,17.990914],[-89.064994,17.990932],[-89.063489,17.991022],[-89.061652,17.990403],[-89.059852,17.990249],[-89.058598,17.990307],[-89.056679,17.991551],[-89.055539,17.992578],[-89.055091,17.993577],[-89.053922,17.995647],[-89.053914,17.996143],[-89.053301,17.997404],[-89.052711,17.998455],[-89.052385,17.999722],[-89.052264,18.000191],[-89.051889,18.000195],[-89.051233,18.000202],[-89.050467,17.999639],[-89.050065,17.999452],[-89.049751,17.99937],[-89.049571,17.999229],[-89.049168,17.999233],[-89.04914,17.999405],[-89.049278,17.999688],[-89.04919,18.000048],[-89.048823,18.000335],[-89.048363,18.000497],[-89.048305,18.000668],[-89.047689,18.00082],[-89.047624,18.000836],[-89.045513,18.001382],[-89.044806,18.001565],[-89.044471,18.002368],[-89.044131,18.002653],[-89.04355,18.003553],[-89.042519,18.003705],[-89.041978,18.003517],[-89.04173,18.003431],[-89.040652,18.003772],[-89.040431,18.003824],[-89.039951,18.003937],[-89.039818,18.003969],[-89.039693,18.004069],[-89.039282,18.004398],[-89.038204,18.004644],[-89.037521,18.005122],[-89.036188,18.004665],[-89.036031,18.003867],[-89.036654,18.003579],[-89.036863,18.003482],[-89.036951,18.002635],[-89.035865,18.00227],[-89.03503,18.002326],[-89.034621,18.00257],[-89.033907,18.002996],[-89.033321,18.003379],[-89.031939,18.002876],[-89.03144,18.002222],[-89.030659,18.002701],[-89.030127,18.003459],[-89.028543,18.002582],[-89.028142,18.001881],[-89.028969,18.000819],[-89.029115,17.999461],[-89.029086,17.998694],[-89.029081,17.998564],[-89.028964,17.998208],[-89.028875,17.997688],[-89.02861,17.997307],[-89.027999,17.997014],[-89.027413,17.996745],[-89.026946,17.996667],[-89.026453,17.996635],[-89.025816,17.996437],[-89.025663,17.996388],[-89.025351,17.996288],[-89.024599,17.995592],[-89.023603,17.99475],[-89.023591,17.994736],[-89.023251,17.994344],[-89.023168,17.994248],[-89.022728,17.993702],[-89.022589,17.993531],[-89.022104,17.993123],[-89.02184,17.992933],[-89.021568,17.992737],[-89.020686,17.992463],[-89.020193,17.992479],[-89.020125,17.992452],[-89.019704,17.992282],[-89.018844,17.992127],[-89.018206,17.991975],[-89.017519,17.991776],[-89.016983,17.991461],[-89.016229,17.990883],[-89.015429,17.990115],[-89.015162,17.989898],[-89.014377,17.989697],[-89.014213,17.98976],[-89.014079,17.98981],[-89.013533,17.990037],[-89.013088,17.990125],[-89.012644,17.990165],[-89.012059,17.989754],[-89.011797,17.989512],[-89.010992,17.98877],[-89.010139,17.988238],[-89.009552,17.988016],[-89.008639,17.988267],[-89.008091,17.988417],[-89.006426,17.987801],[-89.00472,17.986636],[-89.004551,17.986521],[-89.002573,17.985498],[-89.001718,17.985084],[-89.000985,17.984742],[-89.000621,17.984429],[-89.000505,17.984003],[-89.000589,17.983771],[-89.00087,17.983752],[-89.00115,17.983647],[-89.001225,17.983427],[-89.001264,17.983137],[-89.001192,17.982828],[-89.000969,17.982676],[-89.000634,17.982785],[-89.000387,17.982845],[-89.000072,17.982836],[-88.999845,17.982732],[-88.999715,17.98255],[-88.999747,17.982363],[-88.999778,17.982154],[-88.999627,17.981944],[-88.99977,17.981773],[-88.999947,17.981632],[-89.000185,17.981524],[-89.000438,17.981305],[-89.00049,17.981069],[-89.000361,17.980911],[-89.000108,17.980814],[-88.999777,17.980887],[-88.999511,17.980722],[-88.999296,17.98057],[-88.999154,17.980425],[-88.998999,17.98028],[-88.998873,17.980096],[-88.998854,17.979925],[-88.998946,17.979806],[-88.999051,17.979662],[-88.9992,17.979616],[-88.9995,17.979564],[-88.999657,17.979441],[-88.999834,17.979336],[-89.000049,17.979151],[-89.000167,17.978943],[-89.000185,17.978809],[-89.00019,17.978675],[-89.000182,17.978523],[-89.000193,17.978383],[-89.000121,17.978213],[-89.000132,17.978067],[-89.00013,17.977921],[-89.000128,17.977745],[-89.000133,17.977605],[-89.000081,17.977514],[-89.000093,17.977417],[-89.000118,17.977293],[-89.000251,17.977225],[-89.000517,17.977107],[-89.000719,17.977007],[-89.001054,17.976837],[-89.001766,17.976773],[-89.002292,17.976607],[-89.002726,17.976474],[-89.003136,17.976358],[-89.003569,17.976137],[-89.003826,17.975825],[-89.003991,17.975543],[-89.004113,17.975253],[-89.004027,17.975013],[-89.003815,17.974815],[-89.003678,17.974536],[-89.00365,17.974336],[-89.003629,17.974036],[-89.003675,17.973659],[-89.003755,17.973281],[-89.003926,17.972903],[-89.003989,17.972486],[-89.003677,17.972385],[-89.003257,17.972309],[-89.002637,17.972299],[-89.002092,17.972265],[-89.001301,17.972094],[-89.000643,17.972175],[-89.000097,17.972293],[-88.999287,17.972226],[-88.998159,17.971662],[-88.997916,17.970919],[-88.998134,17.970204],[-88.99862,17.969112],[-88.998903,17.968695],[-88.999232,17.968349],[-88.999315,17.968021],[-88.999621,17.967474],[-88.999073,17.96696],[-88.997229,17.965871],[-88.996676,17.96541],[-88.996224,17.964738],[-88.995851,17.96395],[-88.995331,17.962688],[-88.994593,17.961684],[-88.993886,17.960658],[-88.993235,17.960033],[-88.992967,17.95972],[-88.993027,17.959214],[-88.993384,17.958578],[-88.993558,17.958286],[-88.993648,17.958134],[-88.99372,17.957854],[-88.993739,17.957583],[-88.993798,17.957219],[-88.993753,17.956877],[-88.993774,17.956675],[-88.99374,17.956319],[-88.99363,17.955931],[-88.993214,17.955507],[-88.992742,17.954936],[-88.992402,17.954481],[-88.992077,17.954448],[-88.991793,17.954265],[-88.991528,17.954087],[-88.991532,17.953829],[-88.991669,17.9535],[-88.991779,17.95319],[-88.991816,17.95279],[-88.991584,17.952509],[-88.991529,17.952383],[-88.991277,17.951692],[-88.990796,17.951256],[-88.990367,17.950727],[-88.990246,17.950629],[-88.989764,17.950217],[-88.989498,17.950045],[-88.989239,17.949614],[-88.989049,17.94935],[-88.988881,17.949181],[-88.988577,17.948796],[-88.988405,17.948532],[-88.988285,17.948411],[-88.988163,17.948385],[-88.987917,17.948355],[-88.987917,17.948379],[-88.987726,17.948348],[-88.987474,17.948368],[-88.987227,17.948304],[-88.987087,17.948116],[-88.987117,17.947771],[-88.987227,17.947531],[-88.987224,17.947284],[-88.986956,17.94718],[-88.986621,17.947233],[-88.986235,17.947303],[-88.985919,17.94747],[-88.986102,17.947707],[-88.986279,17.947983],[-88.986221,17.948243],[-88.986075,17.94852],[-88.985976,17.948708],[-88.985781,17.949079],[-88.985577,17.950084],[-88.985386,17.950703],[-88.985206,17.951548],[-88.985314,17.952024],[-88.985581,17.952739],[-88.985392,17.953588],[-88.985551,17.953944],[-88.985616,17.954404],[-88.985431,17.954743],[-88.985375,17.955146],[-88.985331,17.955673],[-88.985062,17.956469],[-88.984749,17.956957],[-88.984263,17.957348],[-88.98376,17.957691],[-88.983252,17.957982],[-88.982789,17.958061],[-88.982721,17.958051],[-88.982272,17.957984],[-88.981647,17.95784],[-88.981248,17.957617],[-88.981132,17.957551],[-88.981059,17.957157],[-88.98099,17.956793],[-88.980683,17.95629],[-88.980591,17.956052],[-88.980344,17.955516],[-88.980085,17.955424],[-88.979831,17.955368],[-88.979529,17.955314],[-88.979272,17.955432],[-88.979051,17.955656],[-88.978856,17.95588],[-88.978558,17.956078],[-88.978471,17.956094],[-88.978111,17.956177],[-88.977677,17.956278],[-88.977192,17.956269],[-88.976779,17.956261],[-88.976384,17.956253],[-88.976019,17.956246],[-88.975777,17.956125],[-88.975824,17.955738],[-88.975741,17.955213],[-88.975388,17.955192],[-88.975175,17.955375],[-88.974929,17.955706],[-88.974701,17.956021],[-88.974583,17.956244],[-88.974196,17.956281],[-88.97392,17.956193],[-88.973745,17.955965],[-88.973694,17.955762],[-88.973781,17.955227],[-88.973896,17.954829],[-88.973763,17.954327],[-88.97353,17.9541],[-88.973305,17.95388],[-88.97322,17.953647],[-88.973027,17.953361],[-88.9727,17.953291],[-88.972194,17.953477],[-88.971592,17.953491],[-88.97109,17.953345],[-88.97088,17.952953],[-88.970712,17.952634],[-88.970438,17.952453],[-88.97009,17.952418],[-88.969626,17.952439],[-88.969203,17.952573],[-88.968524,17.953315],[-88.968075,17.95387],[-88.967551,17.954181],[-88.966743,17.954157],[-88.966107,17.954253],[-88.965427,17.954195],[-88.964917,17.953969],[-88.96169,17.952543],[-88.959766,17.951717],[-88.959079,17.952209],[-88.958119,17.953545],[-88.956963,17.955138],[-88.956818,17.95596],[-88.956912,17.956645],[-88.956917,17.956678],[-88.956879,17.956691],[-88.956357,17.956863],[-88.955007,17.956769],[-88.954402,17.956309],[-88.954688,17.955086],[-88.953821,17.954629],[-88.952147,17.955585],[-88.951188,17.95641],[-88.950911,17.956639],[-88.950575,17.956324],[-88.94999,17.956097],[-88.949172,17.957185],[-88.948651,17.958234],[-88.947627,17.95888],[-88.947573,17.958915],[-88.945833,17.959442],[-88.94478,17.95913],[-88.944057,17.958133],[-88.944355,17.957559],[-88.944938,17.956438],[-88.945076,17.955361],[-88.945212,17.954068],[-88.945272,17.95274],[-88.944838,17.95163],[-88.944261,17.95066],[-88.942723,17.950532],[-88.941861,17.950589],[-88.940521,17.950013],[-88.939745,17.949546],[-88.9392,17.948778],[-88.938483,17.947934],[-88.937838,17.947187],[-88.937366,17.946421],[-88.937375,17.945196],[-88.938218,17.944084],[-88.938719,17.94287],[-88.938762,17.941739],[-88.937963,17.940635],[-88.937206,17.939961],[-88.936007,17.939937],[-88.935228,17.940802],[-88.934643,17.942066],[-88.934012,17.942647],[-88.933492,17.943082],[-88.932895,17.943303],[-88.931893,17.943245],[-88.931316,17.942864],[-88.930973,17.942318],[-88.930476,17.94139],[-88.930584,17.940356],[-88.931155,17.939285],[-88.931104,17.93874],[-88.931076,17.938438],[-88.930945,17.937039],[-88.9307,17.934928],[-88.931382,17.933654],[-88.93297,17.933385],[-88.933948,17.932798],[-88.934032,17.931764],[-88.933741,17.93128],[-88.933262,17.931042],[-88.932204,17.930585],[-88.929761,17.930378],[-88.927733,17.930143],[-88.926947,17.929747],[-88.926224,17.928917],[-88.925677,17.928104],[-88.924952,17.926986],[-88.924318,17.926262],[-88.923966,17.925135],[-88.923899,17.923543],[-88.923334,17.922062],[-88.923302,17.921978],[-88.922862,17.920824],[-88.922723,17.920655],[-88.921765,17.919499],[-88.921597,17.919223],[-88.921011,17.918254],[-88.92084,17.917283],[-88.920888,17.916435],[-88.920462,17.915811],[-88.919738,17.915676],[-88.918564,17.915748],[-88.917712,17.916273],[-88.916922,17.916645],[-88.916162,17.916866],[-88.915429,17.916569],[-88.914659,17.915877],[-88.914344,17.915234],[-88.913636,17.91498],[-88.913117,17.914142],[-88.913138,17.913388],[-88.913376,17.91278],[-88.913641,17.912103],[-88.91374,17.911186],[-88.913682,17.910595],[-88.913287,17.910351],[-88.912776,17.910383],[-88.912213,17.910878],[-88.911393,17.911464],[-88.910603,17.911775],[-88.909939,17.912025],[-88.909566,17.912496],[-88.909632,17.913001],[-88.909634,17.913257],[-88.909637,17.913517],[-88.909296,17.91428],[-88.908489,17.914946],[-88.908165,17.915103],[-88.907883,17.915497],[-88.907611,17.915537],[-88.907184,17.915833],[-88.906582,17.915857],[-88.905943,17.915499],[-88.905493,17.914956],[-88.905139,17.914593],[-88.904816,17.91399],[-88.904455,17.913616],[-88.903907,17.913156],[-88.903482,17.912485],[-88.903034,17.910612],[-88.902075,17.909625],[-88.900986,17.909028],[-88.899596,17.908534],[-88.898486,17.907832],[-88.897585,17.907024],[-88.896253,17.906121],[-88.895107,17.905982],[-88.894391,17.906258],[-88.893851,17.906902],[-88.893315,17.907455],[-88.892784,17.90739],[-88.890436,17.906905],[-88.889249,17.906956],[-88.887976,17.907138],[-88.88668,17.907442],[-88.885985,17.907783],[-88.885357,17.907562],[-88.88544,17.906555],[-88.886383,17.906351],[-88.886947,17.905616],[-88.887277,17.903819],[-88.886761,17.903064],[-88.886339,17.902724],[-88.885384,17.90252],[-88.885175,17.901884],[-88.885591,17.901089],[-88.885174,17.900698],[-88.883642,17.900678],[-88.882621,17.900607],[-88.883055,17.899839],[-88.883625,17.899044],[-88.883725,17.89852],[-88.883708,17.897947],[-88.88363,17.897476],[-88.883424,17.896915],[-88.882944,17.896225],[-88.882385,17.89603],[-88.881946,17.896316],[-88.881165,17.896378],[-88.880669,17.896222],[-88.880078,17.895936],[-88.879378,17.8954],[-88.878424,17.894635],[-88.877633,17.894391],[-88.877205,17.894616],[-88.876585,17.895206],[-88.875626,17.895929],[-88.87507,17.896065],[-88.874564,17.895919],[-88.873919,17.895574],[-88.873524,17.895004],[-88.872963,17.894628],[-88.872236,17.894474],[-88.871623,17.894601],[-88.870951,17.894678],[-88.870236,17.894695],[-88.869479,17.894692],[-88.868806,17.894859],[-88.867605,17.895625],[-88.866613,17.89618],[-88.865863,17.895943],[-88.865499,17.895468],[-88.865273,17.894793],[-88.863509,17.894256],[-88.862046,17.894039],[-88.861159,17.893986],[-88.860278,17.894105],[-88.859766,17.894461],[-88.859446,17.89612],[-88.859272,17.896574],[-88.859058,17.89726],[-88.858634,17.897995],[-88.858411,17.898673],[-88.858185,17.899229],[-88.857791,17.899775],[-88.857908,17.89998],[-88.858664,17.899893],[-88.859418,17.899604],[-88.859881,17.89971],[-88.860252,17.899988],[-88.860435,17.900409],[-88.860419,17.900841],[-88.860138,17.901145],[-88.859572,17.901312],[-88.858913,17.901579],[-88.858301,17.901937],[-88.858294,17.902147],[-88.858274,17.902751],[-88.857845,17.903293],[-88.857651,17.903341],[-88.857319,17.903424],[-88.856351,17.903178],[-88.855854,17.903447],[-88.855469,17.903781],[-88.854946,17.904239],[-88.85495,17.904272],[-88.855005,17.904724],[-88.85514,17.905269],[-88.855243,17.905892],[-88.855324,17.906407],[-88.855241,17.906789],[-88.854911,17.907174],[-88.854731,17.907234],[-88.854299,17.907376],[-88.854152,17.907749],[-88.854392,17.908087],[-88.854707,17.908269],[-88.854702,17.908785],[-88.854467,17.909035],[-88.854222,17.909393],[-88.854165,17.910075],[-88.854446,17.911227],[-88.854663,17.912365],[-88.854888,17.913405],[-88.855056,17.913846],[-88.855225,17.914597],[-88.855482,17.915344],[-88.855499,17.915942],[-88.855494,17.916427],[-88.855294,17.916954],[-88.855009,17.917602],[-88.855584,17.917895],[-88.856233,17.918136],[-88.856518,17.918505],[-88.856393,17.918939],[-88.855589,17.919401],[-88.855032,17.919788],[-88.854966,17.920131],[-88.855473,17.920498],[-88.856183,17.920595],[-88.85652,17.92085],[-88.855992,17.921313],[-88.855892,17.921681],[-88.855929,17.921772],[-88.855992,17.921927],[-88.856644,17.922048],[-88.857126,17.922002],[-88.857657,17.922245],[-88.858039,17.922685],[-88.858184,17.923178],[-88.858112,17.923502],[-88.857437,17.923849],[-88.857398,17.924293],[-88.857703,17.924558],[-88.858134,17.924544],[-88.859028,17.924463],[-88.859419,17.924717],[-88.859435,17.925191],[-88.85895,17.92547],[-88.858439,17.925631],[-88.857666,17.925375],[-88.857137,17.925257],[-88.856741,17.92559],[-88.856237,17.925905],[-88.855604,17.926158],[-88.855435,17.92651],[-88.855519,17.927314],[-88.855655,17.927989],[-88.855435,17.928559],[-88.854734,17.929566],[-88.854108,17.93061],[-88.853401,17.931772],[-88.852893,17.932504],[-88.852594,17.933061],[-88.852209,17.933477],[-88.851727,17.933683],[-88.85146,17.933689],[-88.850723,17.933704],[-88.850235,17.933824],[-88.850028,17.933875],[-88.849401,17.934307],[-88.848355,17.935601],[-88.847961,17.936488],[-88.8474,17.937005],[-88.846168,17.937102],[-88.845707,17.937139],[-88.845034,17.937192],[-88.843911,17.937435],[-88.843487,17.937884],[-88.843539,17.938445],[-88.843953,17.938862],[-88.844496,17.939471],[-88.84455,17.939983],[-88.844266,17.940269],[-88.843,17.940268],[-88.842563,17.940267],[-88.841448,17.94018],[-88.839412,17.940021],[-88.837987,17.940222],[-88.834994,17.941206],[-88.833718,17.941928],[-88.834173,17.943261],[-88.833962,17.944647],[-88.833798,17.945232],[-88.833342,17.945693],[-88.832594,17.946027],[-88.83253,17.946033],[-88.831806,17.946095],[-88.830843,17.946077],[-88.830053,17.946402],[-88.829901,17.94679],[-88.829806,17.947034],[-88.830254,17.947746],[-88.830611,17.948256],[-88.830542,17.948771],[-88.830495,17.948769],[-88.829858,17.948741],[-88.828413,17.947525],[-88.827266,17.947142],[-88.826633,17.946866],[-88.825899,17.946683],[-88.825122,17.946763],[-88.824244,17.947031],[-88.823116,17.947508],[-88.82238,17.948281],[-88.821853,17.948953],[-88.82129,17.949372],[-88.819705,17.949409],[-88.818221,17.949365],[-88.81639,17.949428],[-88.815171,17.950299],[-88.814286,17.951616],[-88.814205,17.952391],[-88.813991,17.952968],[-88.812955,17.953485],[-88.811651,17.953841],[-88.810261,17.954814],[-88.80931,17.956153],[-88.808206,17.957524],[-88.807054,17.958915],[-88.806157,17.96054],[-88.805061,17.961095],[-88.804739,17.961728],[-88.804833,17.96226],[-88.806302,17.962416],[-88.80656,17.962908],[-88.806353,17.963431],[-88.80501,17.963574],[-88.804528,17.964133],[-88.804607,17.965328],[-88.804206,17.966263],[-88.802809,17.967103],[-88.801846,17.967382],[-88.801408,17.967509],[-88.800018,17.968241],[-88.799448,17.969808],[-88.799237,17.970594],[-88.798604,17.971044],[-88.797563,17.971157],[-88.796817,17.971213],[-88.79616,17.971373],[-88.795882,17.971626],[-88.795698,17.972046],[-88.795787,17.972559],[-88.796071,17.973101],[-88.796266,17.973737],[-88.795967,17.974337],[-88.795383,17.97438],[-88.794678,17.974301],[-88.793964,17.974124],[-88.793594,17.974138],[-88.793031,17.974006],[-88.792886,17.973884],[-88.792819,17.97324],[-88.793048,17.972787],[-88.793225,17.972113],[-88.793063,17.971612],[-88.792548,17.97156],[-88.792074,17.971839],[-88.791491,17.972721],[-88.790845,17.973631],[-88.790589,17.974433],[-88.790734,17.975168],[-88.791551,17.975827],[-88.791733,17.976986],[-88.791304,17.977716],[-88.790761,17.978394],[-88.789777,17.979324],[-88.789214,17.98037],[-88.788777,17.980968],[-88.788412,17.981129],[-88.788123,17.981192],[-88.787888,17.981355],[-88.787572,17.981407],[-88.787138,17.981119],[-88.786907,17.980747],[-88.786796,17.980191],[-88.786766,17.979319],[-88.786408,17.978947],[-88.785498,17.979076],[-88.78492,17.979445],[-88.784455,17.979861],[-88.784308,17.980151],[-88.784347,17.980505],[-88.784348,17.980906],[-88.784574,17.981217],[-88.784778,17.981641],[-88.784893,17.982054],[-88.784865,17.982543],[-88.784678,17.982901],[-88.784371,17.983319],[-88.783896,17.983621],[-88.783466,17.983933],[-88.783003,17.984351],[-88.782437,17.984452],[-88.781782,17.984533],[-88.781563,17.984821],[-88.781532,17.985087],[-88.781721,17.985338],[-88.782048,17.985529],[-88.782515,17.985535],[-88.783058,17.985445],[-88.783656,17.985185],[-88.784286,17.984871],[-88.78472,17.984899],[-88.785113,17.985235],[-88.785074,17.98573],[-88.784813,17.986242],[-88.784362,17.986756],[-88.783944,17.987143],[-88.783569,17.987444],[-88.783293,17.987627],[-88.783184,17.987851],[-88.783133,17.988266],[-88.783302,17.988519],[-88.783669,17.98858],[-88.784046,17.988481],[-88.784399,17.98819],[-88.784529,17.987828],[-88.784681,17.987487],[-88.784975,17.987126],[-88.785467,17.987162],[-88.785948,17.987598],[-88.786236,17.988327],[-88.786206,17.988699],[-88.786195,17.988838],[-88.786047,17.989233],[-88.785866,17.989468],[-88.785747,17.989776],[-88.78563,17.990032],[-88.785666,17.990276],[-88.785791,17.99053],[-88.785958,17.990571],[-88.786247,17.990515],[-88.786511,17.990208],[-88.786704,17.98982],[-88.787149,17.989586],[-88.787702,17.989641],[-88.787922,17.990195],[-88.787762,17.990792],[-88.787723,17.991376],[-88.78796,17.991725],[-88.788408,17.992103],[-88.788613,17.992579],[-88.788496,17.993037],[-88.787654,17.993311],[-88.7872,17.993575],[-88.786559,17.994102],[-88.785931,17.994804],[-88.785277,17.995149],[-88.78441,17.99586],[-88.784339,17.996488],[-88.784329,17.997016],[-88.784392,17.997985],[-88.784133,17.998726],[-88.783609,17.999482],[-88.783085,18.000213],[-88.78233,18.000644],[-88.781824,18.000813],[-88.781631,18.000961],[-88.780418,18.001827],[-88.779755,18.002136],[-88.779016,18.002332],[-88.777713,18.002481],[-88.777335,18.002786],[-88.777262,18.003072],[-88.777265,18.003334],[-88.77745,18.003557],[-88.777754,18.003916],[-88.77781,18.004302],[-88.777721,18.004615],[-88.777253,18.004732],[-88.776372,18.004823],[-88.775561,18.004918],[-88.774659,18.005198],[-88.773786,18.005186],[-88.773055,18.005242],[-88.772373,18.005542],[-88.771708,18.006272],[-88.770881,18.006528],[-88.770259,18.006558],[-88.769846,18.006785],[-88.769747,18.007233],[-88.769802,18.00758],[-88.770245,18.007774],[-88.770971,18.007792],[-88.771696,18.007686],[-88.772368,18.007432],[-88.772991,18.007476],[-88.773203,18.007921],[-88.773131,18.008542],[-88.773087,18.009311],[-88.773093,18.009882],[-88.772802,18.012056],[-88.772144,18.012697],[-88.77153,18.013081],[-88.769618,18.013252],[-88.768392,18.013772],[-88.768026,18.014118],[-88.767692,18.014699],[-88.76715,18.015549],[-88.766935,18.016018],[-88.766967,18.016638],[-88.768579,18.016921],[-88.769128,18.017275],[-88.768798,18.018072],[-88.767925,18.018973],[-88.767674,18.019867],[-88.767684,18.02081],[-88.76785,18.021875],[-88.768169,18.022592],[-88.768256,18.023583],[-88.768007,18.024563],[-88.768478,18.025005],[-88.76895,18.025448],[-88.769192,18.026239],[-88.770296,18.027644],[-88.770745,18.028433],[-88.770778,18.029177],[-88.77006,18.030003],[-88.768419,18.031994],[-88.76732,18.033275],[-88.766882,18.033716],[-88.766652,18.034298],[-88.765596,18.034779],[-88.764487,18.034789],[-88.763455,18.035014],[-88.762721,18.034859],[-88.762211,18.034684],[-88.761533,18.034493],[-88.760885,18.034683],[-88.75976,18.035772],[-88.758729,18.035826],[-88.758031,18.035609],[-88.75725,18.036021],[-88.756986,18.037461],[-88.756913,18.037853],[-88.756105,18.038091],[-88.755815,18.038068],[-88.75499,18.038004],[-88.754221,18.038109],[-88.753379,18.038811],[-88.751973,18.04],[-88.75048,18.040147],[-88.749552,18.040991],[-88.748956,18.040911],[-88.748132,18.040268],[-88.747423,18.040202],[-88.746677,18.041589],[-88.745977,18.042504],[-88.745248,18.042912],[-88.743805,18.043923],[-88.742934,18.044149],[-88.740751,18.043709],[-88.740316,18.044332],[-88.74043,18.047481],[-88.739611,18.048168],[-88.737405,18.047946],[-88.736004,18.048431],[-88.73351,18.048977],[-88.731483,18.049572],[-88.729365,18.051241],[-88.727094,18.053148],[-88.724777,18.054465],[-88.722462,18.057259],[-88.720299,18.05955],[-88.71867,18.060061],[-88.716687,18.060526],[-88.716352,18.061621],[-88.717261,18.062723],[-88.718287,18.064131],[-88.718284,18.065088],[-88.718394,18.066019],[-88.719028,18.067252],[-88.718913,18.068428],[-88.718913,18.069888],[-88.719128,18.071085],[-88.719149,18.071981],[-88.718607,18.072356],[-88.717135,18.071939],[-88.716286,18.071874],[-88.715174,18.072556],[-88.714156,18.073292],[-88.713773,18.074325],[-88.713898,18.07545],[-88.71487,18.076367],[-88.715144,18.077188],[-88.715245,18.078471],[-88.715242,18.079262],[-88.71525,18.08011],[-88.715408,18.080762],[-88.715754,18.081135],[-88.716693,18.081296],[-88.717804,18.081008],[-88.718677,18.080842],[-88.719211,18.081104],[-88.719457,18.081659],[-88.719529,18.082295],[-88.719595,18.083881],[-88.719396,18.084271],[-88.718579,18.084908],[-88.717644,18.085705],[-88.717578,18.08628],[-88.718234,18.087328],[-88.718661,18.088196],[-88.718051,18.08934],[-88.716922,18.09064],[-88.716439,18.091782],[-88.716133,18.092899],[-88.715738,18.094228],[-88.714658,18.095122],[-88.713254,18.095413],[-88.711372,18.095866],[-88.710628,18.096248],[-88.710313,18.096961],[-88.710789,18.099003],[-88.711172,18.100635],[-88.711435,18.101472],[-88.711672,18.102912],[-88.71208,18.104122],[-88.712744,18.10471],[-88.713347,18.105085],[-88.713856,18.105407],[-88.714252,18.105743],[-88.714358,18.106166],[-88.714538,18.106443],[-88.714704,18.106575],[-88.715457,18.106532],[-88.71638,18.106354],[-88.717068,18.106784],[-88.717464,18.107108],[-88.718522,18.107825],[-88.718805,18.108283],[-88.718608,18.108829],[-88.717454,18.11019],[-88.717295,18.110903],[-88.716594,18.111349],[-88.713752,18.114244],[-88.713249,18.114563],[-88.712457,18.115003],[-88.71189,18.115261],[-88.711385,18.115674],[-88.71072,18.116243],[-88.710179,18.117143],[-88.70984,18.117787],[-88.709521,18.118471],[-88.709346,18.119269],[-88.709311,18.119931],[-88.709319,18.120728],[-88.709343,18.121097],[-88.709672,18.121979],[-88.709721,18.122853],[-88.70967,18.123108],[-88.709508,18.123905],[-88.708448,18.125781],[-88.708256,18.126025],[-88.707383,18.127132],[-88.706077,18.128888],[-88.705402,18.130758],[-88.704975,18.132709],[-88.704129,18.134005],[-88.703681,18.134651],[-88.703587,18.134788],[-88.70284,18.135378],[-88.701975,18.136357],[-88.7011,18.13686],[-88.700688,18.13704],[-88.700148,18.137276],[-88.699403,18.138099],[-88.699007,18.139347],[-88.698594,18.140654],[-88.698486,18.142453],[-88.697499,18.143453],[-88.696656,18.144627],[-88.695986,18.146908],[-88.6952,18.148207],[-88.692922,18.149466],[-88.69201,18.150762],[-88.691409,18.151662],[-88.69087,18.152795],[-88.690111,18.15499],[-88.689224,18.155815],[-88.687885,18.156118],[-88.686336,18.155898],[-88.685588,18.156294],[-88.684112,18.157279],[-88.682596,18.158225],[-88.681292,18.158904],[-88.680423,18.159514],[-88.680089,18.160185],[-88.68001,18.161054],[-88.679957,18.16191],[-88.680087,18.16252],[-88.68062,18.163002],[-88.68097,18.163388],[-88.681279,18.163832],[-88.681567,18.16418],[-88.681918,18.164682],[-88.682186,18.165088],[-88.682435,18.165552],[-88.683013,18.166481],[-88.683302,18.166848],[-88.683287,18.167431],[-88.683156,18.168579],[-88.683261,18.1689],[-88.683407,18.169308],[-88.683534,18.169812],[-88.683808,18.170879],[-88.684062,18.171868],[-88.684072,18.172918],[-88.684318,18.174],[-88.684335,18.174077],[-88.684745,18.176617],[-88.684385,18.177281],[-88.68439,18.177806],[-88.684781,18.17823],[-88.685229,18.178285],[-88.68596,18.178252],[-88.686452,18.178326],[-88.687496,18.17829],[-88.688274,18.178502],[-88.689246,18.178646],[-88.690342,18.178754],[-88.691534,18.178887],[-88.692373,18.178896],[-88.692911,18.178934],[-88.693939,18.178841],[-88.694737,18.17886],[-88.694963,18.178866],[-88.695892,18.179127],[-88.696717,18.179643],[-88.697065,18.17998],[-88.697323,18.180227],[-88.697734,18.181095],[-88.697564,18.182419],[-88.696621,18.183191],[-88.695793,18.184446],[-88.694761,18.185824],[-88.694332,18.18687],[-88.692692,18.188137],[-88.691727,18.189293],[-88.68993,18.190867],[-88.688342,18.193002],[-88.687326,18.19435],[-88.686682,18.194696],[-88.686054,18.194751],[-88.685337,18.194757],[-88.684779,18.194649],[-88.683582,18.194666],[-88.682601,18.194682],[-88.681433,18.194698],[-88.680802,18.194684],[-88.680118,18.194462],[-88.679381,18.194313],[-88.678407,18.194314],[-88.677463,18.194287],[-88.676957,18.194327],[-88.676283,18.194312],[-88.674751,18.194219],[-88.673495,18.19423],[-88.671881,18.195234],[-88.671115,18.196037],[-88.670159,18.197013],[-88.669804,18.197551],[-88.668873,18.199868],[-88.667398,18.201976],[-88.667319,18.202089],[-88.666674,18.202649],[-88.66657,18.202731],[-88.666383,18.202833],[-88.665891,18.202912],[-88.665383,18.203058],[-88.665067,18.20313],[-88.664748,18.203184],[-88.664457,18.203197],[-88.664166,18.203301],[-88.663859,18.203376],[-88.66337,18.203443],[-88.662998,18.203537],[-88.662422,18.203578],[-88.661974,18.203612],[-88.661461,18.203598],[-88.661031,18.203602],[-88.660588,18.2036],[-88.66019,18.20364],[-88.659827,18.203594],[-88.659447,18.203525],[-88.659125,18.20351],[-88.658632,18.203587],[-88.658247,18.203723],[-88.657895,18.203943],[-88.657461,18.204177],[-88.656899,18.204641],[-88.656497,18.204941],[-88.656109,18.205337],[-88.655694,18.205672],[-88.655136,18.206112],[-88.654739,18.206321],[-88.654327,18.206585],[-88.653863,18.206988],[-88.653555,18.207262],[-88.653134,18.207495],[-88.6526,18.207904],[-88.652191,18.208119],[-88.651839,18.20834],[-88.651569,18.208433],[-88.651292,18.208551],[-88.651084,18.208655],[-88.650857,18.208723],[-88.650624,18.208816],[-88.650296,18.208922],[-88.64993,18.209045],[-88.649527,18.209182],[-88.649237,18.209299],[-88.648928,18.209392],[-88.648688,18.209467],[-88.648385,18.209566],[-88.648147,18.209749],[-88.647871,18.209993],[-88.647592,18.210217],[-88.647341,18.210478],[-88.647065,18.21071],[-88.646763,18.210936],[-88.646425,18.211229],[-88.646249,18.211436],[-88.646149,18.211564],[-88.645898,18.211698],[-88.645598,18.21192],[-88.645039,18.212372],[-88.644653,18.212944],[-88.644593,18.213027],[-88.644434,18.213275],[-88.644093,18.213692],[-88.643773,18.214129],[-88.643532,18.214421],[-88.643352,18.21465],[-88.643252,18.214795],[-88.642989,18.215067],[-88.642787,18.215277],[-88.642422,18.215655],[-88.642219,18.215844],[-88.641915,18.216159],[-88.64165,18.216371],[-88.641381,18.216503],[-88.641036,18.216665],[-88.640704,18.216677],[-88.640481,18.216564],[-88.640414,18.216274],[-88.640365,18.216036],[-88.640244,18.215887],[-88.639974,18.215616],[-88.639806,18.215432],[-88.639647,18.21524],[-88.639359,18.215147],[-88.63921,18.215133],[-88.638996,18.21506],[-88.638629,18.215135],[-88.63826,18.215111],[-88.638074,18.21499],[-88.637943,18.214797],[-88.637831,18.214648],[-88.637692,18.214552],[-88.637534,18.214456],[-88.63745,18.214422],[-88.637296,18.214338],[-88.636995,18.214055],[-88.636609,18.21402],[-88.636212,18.214176],[-88.635868,18.214306],[-88.635629,18.21427],[-88.635363,18.214158],[-88.635149,18.214071],[-88.634656,18.213847],[-88.634269,18.213647],[-88.633896,18.213524],[-88.63351,18.213324],[-88.633202,18.213137],[-88.63279,18.212988],[-88.632377,18.212928],[-88.632048,18.213159],[-88.631905,18.213477],[-88.631788,18.213745],[-88.631644,18.214037],[-88.631949,18.214336],[-88.632023,18.21461],[-88.632191,18.214933],[-88.632306,18.215266],[-88.632324,18.215735],[-88.63201,18.216244],[-88.63176,18.2165],[-88.63167,18.21678],[-88.631298,18.216808],[-88.631128,18.217],[-88.630704,18.217143],[-88.630467,18.217386],[-88.630206,18.217819],[-88.629851,18.218227],[-88.629296,18.218624],[-88.629007,18.218968],[-88.628409,18.21886],[-88.627772,18.21884],[-88.62708,18.218719],[-88.626469,18.218635],[-88.625805,18.218679],[-88.62529,18.219],[-88.624857,18.21946],[-88.624716,18.220057],[-88.624551,18.220882],[-88.624144,18.221367],[-88.623747,18.221548],[-88.623323,18.221653],[-88.622581,18.221774],[-88.622106,18.222095],[-88.62175,18.222415],[-88.621395,18.22276],[-88.621078,18.222965],[-88.620641,18.223007],[-88.62027,18.223099],[-88.619938,18.22314],[-88.619621,18.223269],[-88.619316,18.223335],[-88.619118,18.223489],[-88.619013,18.223604],[-88.618868,18.223744],[-88.618364,18.223736],[-88.618112,18.223827],[-88.617753,18.22369],[-88.617181,18.223645],[-88.61682,18.223293],[-88.616459,18.223042],[-88.61598,18.223046],[-88.615544,18.223278],[-88.615362,18.223673],[-88.615166,18.223991],[-88.614893,18.22464],[-88.614792,18.225236],[-88.614172,18.225634],[-88.613978,18.226231],[-88.613999,18.227042],[-88.613941,18.227892],[-88.613867,18.228514],[-88.613498,18.228808],[-88.612797,18.229182],[-88.612178,18.229656],[-88.611916,18.230013],[-88.611953,18.230287],[-88.611956,18.230623],[-88.612198,18.231088],[-88.612354,18.231699],[-88.612462,18.232088],[-88.612391,18.232269],[-88.612319,18.232439],[-88.612142,18.232541],[-88.611923,18.232643],[-88.611725,18.232794],[-88.611558,18.232876],[-88.611381,18.232917],[-88.61113,18.233029],[-88.610755,18.233193],[-88.610452,18.233235],[-88.610149,18.233338],[-88.609796,18.233661],[-88.609453,18.233993],[-88.609197,18.234625],[-88.609107,18.235553],[-88.608971,18.236379],[-88.608853,18.237326],[-88.608411,18.238267],[-88.606016,18.240076],[-88.605418,18.240392],[-88.604686,18.241034],[-88.604421,18.241518],[-88.604183,18.243068],[-88.60405,18.24429],[-88.604036,18.244737],[-88.60413,18.245098],[-88.604293,18.245303],[-88.604508,18.245163],[-88.604902,18.244971],[-88.605711,18.244878],[-88.606089,18.244858],[-88.606433,18.245027],[-88.606561,18.245266],[-88.606582,18.245576],[-88.606147,18.246062],[-88.605391,18.246431],[-88.604992,18.246842],[-88.604733,18.247116],[-88.604358,18.247617],[-88.604152,18.248434],[-88.604276,18.249022],[-88.604163,18.249567],[-88.603905,18.249976],[-88.603527,18.250138],[-88.60322,18.250299],[-88.603104,18.250595],[-88.60313,18.250844],[-88.603204,18.25116],[-88.603546,18.251187],[-88.60382,18.251389],[-88.604073,18.251511],[-88.604284,18.251552],[-88.604706,18.25185],[-88.605465,18.252162],[-88.605527,18.252485],[-88.605568,18.25305],[-88.605587,18.253636],[-88.605607,18.25408],[-88.605542,18.254504],[-88.605499,18.254847],[-88.60554,18.255069],[-88.605622,18.255755],[-88.605577,18.256479],[-88.604987,18.256622],[-88.60461,18.256942],[-88.604018,18.257129],[-88.603831,18.257447],[-88.603904,18.257771],[-88.604145,18.258011],[-88.604431,18.258122],[-88.605052,18.258547],[-88.605556,18.259177],[-88.60591,18.260538],[-88.606313,18.261503],[-88.606259,18.262145],[-88.606332,18.263066],[-88.606467,18.263778],[-88.606389,18.264387],[-88.605932,18.265067],[-88.604641,18.265518],[-88.603345,18.266548],[-88.602699,18.267575],[-88.602338,18.268266],[-88.60236,18.268773],[-88.602488,18.269244],[-88.602723,18.269817],[-88.602694,18.270458],[-88.602381,18.271018],[-88.601491,18.272242],[-88.60074,18.273244],[-88.600267,18.27429],[-88.599974,18.275204],[-88.599893,18.275965],[-88.599972,18.276825],[-88.600458,18.277801],[-88.600817,18.278372],[-88.600909,18.278827],[-88.600984,18.279282],[-88.600779,18.28001],[-88.599936,18.282729],[-88.599617,18.283435],[-88.599149,18.284362],[-88.599041,18.28521],[-88.598764,18.285794],[-88.598614,18.2865],[-88.597912,18.287952],[-88.597657,18.288314],[-88.597254,18.288878],[-88.59728,18.289416],[-88.597458,18.290159],[-88.598132,18.291025],[-88.598723,18.291237],[-88.599025,18.291053],[-88.599574,18.290776],[-88.600275,18.290516],[-88.60073,18.29044],[-88.601549,18.290542],[-88.602254,18.290736],[-88.60258,18.291024],[-88.603022,18.291641],[-88.60329,18.291766],[-88.603783,18.291708],[-88.604403,18.291448],[-88.60459,18.290947],[-88.604795,18.290606],[-88.605004,18.290604],[-88.605403,18.290637],[-88.605614,18.290799],[-88.605749,18.291034],[-88.605848,18.291432],[-88.605832,18.291741],[-88.605588,18.292124],[-88.604986,18.292856],[-88.603423,18.294184],[-88.602766,18.295061],[-88.602089,18.29583],[-88.601124,18.296382],[-88.600536,18.296496],[-88.59953,18.296686],[-88.598657,18.296839],[-88.598354,18.29695],[-88.597993,18.297434],[-88.597376,18.298528],[-88.596666,18.299896],[-88.596595,18.300441],[-88.596292,18.300911],[-88.595868,18.301254],[-88.595302,18.301622],[-88.594805,18.302199],[-88.593427,18.304056],[-88.592367,18.305157],[-88.59152,18.306002],[-88.590506,18.30669],[-88.58966,18.307625],[-88.588849,18.308615],[-88.588359,18.309073],[-88.587653,18.309633],[-88.586563,18.310949],[-88.585963,18.311916],[-88.58517,18.313329],[-88.584639,18.313786],[-88.583866,18.314107],[-88.58337,18.31445],[-88.582805,18.314953],[-88.582264,18.315433],[-88.581393,18.316233],[-88.58065,18.31703],[-88.580332,18.317473],[-88.579844,18.317956],[-88.579674,18.318299],[-88.579504,18.318601],[-88.579206,18.319064],[-88.579078,18.319528],[-88.579056,18.319811],[-88.578836,18.320413],[-88.578387,18.320689],[-88.577817,18.320671],[-88.577247,18.320562],[-88.576842,18.320407],[-88.576642,18.320213],[-88.576396,18.319982],[-88.576122,18.319786],[-88.575689,18.319902],[-88.575266,18.320225],[-88.575207,18.320546],[-88.574973,18.32105],[-88.574845,18.321392],[-88.574377,18.322098],[-88.573995,18.322662],[-88.573403,18.322853],[-88.573056,18.323078],[-88.572754,18.323215],[-88.57283,18.323506],[-88.57249,18.323929],[-88.572403,18.324615],[-88.572318,18.324938],[-88.572296,18.325038],[-88.572168,18.325543],[-88.571954,18.326309],[-88.570998,18.328228],[-88.570675,18.328654],[-88.570352,18.329035],[-88.569982,18.329461],[-88.569451,18.330044],[-88.568851,18.330738],[-88.568389,18.331299],[-88.567346,18.332019],[-88.566754,18.332692],[-88.566351,18.332953],[-88.565482,18.333657],[-88.564466,18.334078],[-88.56436,18.334259],[-88.563914,18.334783],[-88.563425,18.335508],[-88.562874,18.335991],[-88.562322,18.336797],[-88.561642,18.337763],[-88.561344,18.338388],[-88.561088,18.338993],[-88.560854,18.339517],[-88.560535,18.340162],[-88.560135,18.340784],[-88.559767,18.341455],[-88.559376,18.342059],[-88.558961,18.34253],[-88.558267,18.343203],[-88.55748,18.343966],[-88.556671,18.344708],[-88.555791,18.345471],[-88.555335,18.346222],[-88.554932,18.346725],[-88.554719,18.347149],[-88.553698,18.34876],[-88.553443,18.349204],[-88.552997,18.349909],[-88.552784,18.350231],[-88.552317,18.350795],[-88.551914,18.351318],[-88.551553,18.351721],[-88.551129,18.352164],[-88.550768,18.352546],[-88.55009,18.352988],[-88.549581,18.353491],[-88.548925,18.353812],[-88.547206,18.355623],[-88.546801,18.35647],[-88.546259,18.357549],[-88.545751,18.358414],[-88.545388,18.358997],[-88.544786,18.359564],[-88.544385,18.360024],[-88.544316,18.360552],[-88.544099,18.360976],[-88.544014,18.361917],[-88.544038,18.362602],[-88.54443,18.363214],[-88.544823,18.363861],[-88.544993,18.364369],[-88.544905,18.36488],[-88.54495,18.365758],[-88.545461,18.367449],[-88.545875,18.368395],[-88.546359,18.369024],[-88.546656,18.36932],[-88.547285,18.369702],[-88.547969,18.369925],[-88.548339,18.370203],[-88.548783,18.370358],[-88.549136,18.370777],[-88.549904,18.371625],[-88.550796,18.372602],[-88.551299,18.373248],[-88.551561,18.373887],[-88.55179,18.374776],[-88.551852,18.37516],[-88.551766,18.375543],[-88.551638,18.376148],[-88.551319,18.376611],[-88.55053,18.378587],[-88.550167,18.379394],[-88.549531,18.380138],[-88.549488,18.380219],[-88.548619,18.380903],[-88.548173,18.381366],[-88.547387,18.382413],[-88.547195,18.382977],[-88.547024,18.383542],[-88.546874,18.383966],[-88.546724,18.384611],[-88.546659,18.384974],[-88.546552,18.385479],[-88.546529,18.385842],[-88.546528,18.386165],[-88.54657,18.386387],[-88.546526,18.386791],[-88.546461,18.387154],[-88.546376,18.387476],[-88.546268,18.388021],[-88.546118,18.388566],[-88.545947,18.38911],[-88.545776,18.389594],[-88.545584,18.39026],[-88.545455,18.390663],[-88.5452,18.391207],[-88.544818,18.39167],[-88.543905,18.392596],[-88.54346,18.392938],[-88.54293,18.39332],[-88.542231,18.39356],[-88.541808,18.393639],[-88.541385,18.39386],[-88.541172,18.394142],[-88.540959,18.394666],[-88.540618,18.39527],[-88.540405,18.395673],[-88.539917,18.396277],[-88.539111,18.397082],[-88.538983,18.397364],[-88.538515,18.398069],[-88.538133,18.398432],[-88.537178,18.39969],[-88.535821,18.401406],[-88.534624,18.403565],[-88.533338,18.405838],[-88.532802,18.406757],[-88.531935,18.408222],[-88.531738,18.409384],[-88.53146,18.410128],[-88.531389,18.410895],[-88.530436,18.414996],[-88.530055,18.41616],[-88.529907,18.41665],[-88.529556,18.417993],[-88.529286,18.419651],[-88.528819,18.423029],[-88.52868,18.424858],[-88.528638,18.425971],[-88.52831,18.426937],[-88.528162,18.427729],[-88.528157,18.428867],[-88.528153,18.429762],[-88.528172,18.430464],[-88.528113,18.43359],[-88.527999,18.43452],[-88.527943,18.435361],[-88.527177,18.436602],[-88.526137,18.439118],[-88.525047,18.44177],[-88.523812,18.445585],[-88.523241,18.448667],[-88.523063,18.449039],[-88.522629,18.449685],[-88.522166,18.452999],[-88.521599,18.456475],[-88.521186,18.458035],[-88.520992,18.45843],[-88.520587,18.45925],[-88.519821,18.460442],[-88.519129,18.461263],[-88.518639,18.462246],[-88.517614,18.463465],[-88.516335,18.464175],[-88.515375,18.464337],[-88.51443,18.464642],[-88.513808,18.464885],[-88.513411,18.46515],[-88.513339,18.465371],[-88.512957,18.465733],[-88.51198,18.466759],[-88.511832,18.466839],[-88.511174,18.4672],[-88.510814,18.467462],[-88.510284,18.467763],[-88.510071,18.468044],[-88.509795,18.468366],[-88.509455,18.468709],[-88.509116,18.469071],[-88.508733,18.469453],[-88.508521,18.469674],[-88.508186,18.469997],[-88.507697,18.470114],[-88.507292,18.470246],[-88.506923,18.47062],[-88.506401,18.470898],[-88.505728,18.471258],[-88.504717,18.471717],[-88.504217,18.472264],[-88.504133,18.472263],[-88.503603,18.472504],[-88.503285,18.472644],[-88.502437,18.473206],[-88.50206,18.473431],[-88.501623,18.473741],[-88.500799,18.474296],[-88.49952,18.475015],[-88.498881,18.475488],[-88.498461,18.475813],[-88.497839,18.476189],[-88.49724,18.476542],[-88.496433,18.477113],[-88.495777,18.477806],[-88.495395,18.478148],[-88.495102,18.47856],[-88.494671,18.479276],[-88.494565,18.479437],[-88.494442,18.479829],[-88.494226,18.48025],[-88.494094,18.480654],[-88.493979,18.481075],[-88.493813,18.481366],[-88.493536,18.481488],[-88.493278,18.482047],[-88.493111,18.482387],[-88.492928,18.482647],[-88.492609,18.482972],[-88.492189,18.483234],[-88.491819,18.483808],[-88.491575,18.483928],[-88.491305,18.484113],[-88.490874,18.484384],[-88.488709,18.484259],[-88.487378,18.484862],[-88.487166,18.484922],[-88.48691,18.485324],[-88.486379,18.485868],[-88.486103,18.486109],[-88.485615,18.486713],[-88.485423,18.486934],[-88.485147,18.487216],[-88.484828,18.487618],[-88.48451,18.48794],[-88.484191,18.488181],[-88.483576,18.488623],[-88.483364,18.488824],[-88.483087,18.489247],[-88.482645,18.489811],[-88.482428,18.490154],[-88.481939,18.490858],[-88.481174,18.491522],[-88.480983,18.491763],[-88.480707,18.491964],[-88.480516,18.492226],[-88.480219,18.492487],[-88.479943,18.492587],[-88.479562,18.492687],[-88.479375,18.492767],[-88.47901,18.49319],[-88.478862,18.49327],[-88.478578,18.493605],[-88.478473,18.493724],[-88.478307,18.493909],[-88.4778,18.494175],[-88.477525,18.494254],[-88.477101,18.494414],[-88.476783,18.494534],[-88.476593,18.494635],[-88.476423,18.494674],[-88.476084,18.494714],[-88.475873,18.494713],[-88.475704,18.494712],[-88.475175,18.49473],[-88.47509,18.49471],[-88.474773,18.494669],[-88.474329,18.494505],[-88.474161,18.494222],[-88.474079,18.493657],[-88.473995,18.493394],[-88.47389,18.493071],[-88.473807,18.492808],[-88.473797,18.492773],[-88.473682,18.492343],[-88.473431,18.491555],[-88.473389,18.491413],[-88.473347,18.491232],[-88.473222,18.490848],[-88.473117,18.490585],[-88.472991,18.490382],[-88.472899,18.490249],[-88.472654,18.489897],[-88.472232,18.489712],[-88.47219,18.489693],[-88.471746,18.48955],[-88.471516,18.489598],[-88.471365,18.48963],[-88.471268,18.489636],[-88.47109,18.489649],[-88.470985,18.489698],[-88.470793,18.489789],[-88.470602,18.489869],[-88.470136,18.490049],[-88.470051,18.490109],[-88.469776,18.490209],[-88.469479,18.490269],[-88.469162,18.490308],[-88.468252,18.490365],[-88.467745,18.490222],[-88.467639,18.490101],[-88.467282,18.489413],[-88.467262,18.489292],[-88.467072,18.489089],[-88.466946,18.488786],[-88.466715,18.488442],[-88.466568,18.48822],[-88.466041,18.487652],[-88.465915,18.48749],[-88.465704,18.487328],[-88.465471,18.487206],[-88.465324,18.487105],[-88.465121,18.48704],[-88.46507,18.487023],[-88.464732,18.486961],[-88.464478,18.48696],[-88.464287,18.48702],[-88.463693,18.487462],[-88.463439,18.487603],[-88.462908,18.487964],[-88.462611,18.488165],[-88.462554,18.488211],[-88.462314,18.488406],[-88.462102,18.488506],[-88.461869,18.488626],[-88.46115,18.488852],[-88.460789,18.488966],[-88.460408,18.489005],[-88.460217,18.489065],[-88.459772,18.489204],[-88.45956,18.489345],[-88.459319,18.489442],[-88.459135,18.489474],[-88.458395,18.489603],[-88.457846,18.48952],[-88.457549,18.489519],[-88.457148,18.489457],[-88.456599,18.489233],[-88.45616,18.48914],[-88.455683,18.489039],[-88.455635,18.489029],[-88.454815,18.488856],[-88.454625,18.488734],[-88.454228,18.488515],[-88.453971,18.488267],[-88.453697,18.488044],[-88.453444,18.487781],[-88.45334,18.487437],[-88.453362,18.487195],[-88.453258,18.48663],[-88.453153,18.486387],[-88.453176,18.486084],[-88.453177,18.485701],[-88.453157,18.485539],[-88.45299,18.484953],[-88.452907,18.484509],[-88.452867,18.483862],[-88.452785,18.483337],[-88.452744,18.483034],[-88.452618,18.482731],[-88.452521,18.48244],[-88.45243,18.482165],[-88.452177,18.481861],[-88.451799,18.481234],[-88.45142,18.480789],[-88.451288,18.4807],[-88.450787,18.480362],[-88.450514,18.479675],[-88.450325,18.479351],[-88.449967,18.478966],[-88.449693,18.478703],[-88.449483,18.4785],[-88.449314,18.478338],[-88.449125,18.477853],[-88.448894,18.477529],[-88.448683,18.477286],[-88.448515,18.477043],[-88.44841,18.476922],[-88.448157,18.476578],[-88.448052,18.476416],[-88.44782,18.476193],[-88.447769,18.476123],[-88.447715,18.476051],[-88.447441,18.475828],[-88.447141,18.475592],[-88.446671,18.475659],[-88.446335,18.475769],[-88.446112,18.475899],[-88.445711,18.476201],[-88.44564,18.476528],[-88.445512,18.476709],[-88.444789,18.477615],[-88.444598,18.477776],[-88.444407,18.478078],[-88.444236,18.478339],[-88.444172,18.478642],[-88.444001,18.478964],[-88.44381,18.479266],[-88.443766,18.47963],[-88.443574,18.479992],[-88.443425,18.480254],[-88.442893,18.480918],[-88.442699,18.481151],[-88.442489,18.481401],[-88.442222,18.481365],[-88.441967,18.481329],[-88.441486,18.481547],[-88.441049,18.481614],[-88.440622,18.4815],[-88.440307,18.481417],[-88.439915,18.481441],[-88.439635,18.481465],[-88.439355,18.48151],[-88.438974,18.481566],[-88.438616,18.481665],[-88.438314,18.481795],[-88.438068,18.481872],[-88.437822,18.48196],[-88.43752,18.482112],[-88.437184,18.482146],[-88.436545,18.482151],[-88.436165,18.482336],[-88.435768,18.482321],[-88.435467,18.482473],[-88.43521,18.482603],[-88.434819,18.48282],[-88.43454,18.483046],[-88.434399,18.48337],[-88.43406,18.483631],[-88.433698,18.484053],[-88.433507,18.484355],[-88.433316,18.484536],[-88.433061,18.484717],[-88.432446,18.485018],[-88.431826,18.484962],[-88.431412,18.485072],[-88.431099,18.485128],[-88.430604,18.485067],[-88.430188,18.484889],[-88.429449,18.485023],[-88.428877,18.485123],[-88.428429,18.485212],[-88.427992,18.485237],[-88.427382,18.485612],[-88.426777,18.485843],[-88.426304,18.486047],[-88.425831,18.486227],[-88.425474,18.486388],[-88.425042,18.48666],[-88.424703,18.486808],[-88.424223,18.487002],[-88.423847,18.487039],[-88.423356,18.487277],[-88.423211,18.487687],[-88.422977,18.487888],[-88.422595,18.48823],[-88.422277,18.488471],[-88.421979,18.488753],[-88.421809,18.488974],[-88.421554,18.489276],[-88.421447,18.489437],[-88.421256,18.489719],[-88.420831,18.490081],[-88.420555,18.490342],[-88.420406,18.490463],[-88.420215,18.490643],[-88.420003,18.490764],[-88.41977,18.490924],[-88.419113,18.491225],[-88.418943,18.491345],[-88.418709,18.491566],[-88.41837,18.491827],[-88.41803,18.492089],[-88.417839,18.492229],[-88.417499,18.49247],[-88.416953,18.492319],[-88.416424,18.492323],[-88.415931,18.492326],[-88.415425,18.492274],[-88.415155,18.492209],[-88.414838,18.492267],[-88.414498,18.492303],[-88.414028,18.492307],[-88.413559,18.492322],[-88.412832,18.492461],[-88.412527,18.492553],[-88.412188,18.492757],[-88.411919,18.492916],[-88.411649,18.492873],[-88.411414,18.492841],[-88.410745,18.492969],[-88.410384,18.49333],[-88.409962,18.493733],[-88.409157,18.494012],[-88.408775,18.494213],[-88.408499,18.494434],[-88.407909,18.494663],[-88.407394,18.494891],[-88.406867,18.495152],[-88.406317,18.495313],[-88.406145,18.495575],[-88.405916,18.495604],[-88.405286,18.495891],[-88.403766,18.496144],[-88.402964,18.496352],[-88.402585,18.496556],[-88.402395,18.496658],[-88.402034,18.496459],[-88.401584,18.496307],[-88.401335,18.496223],[-88.400992,18.496006],[-88.400674,18.495804],[-88.400484,18.495684],[-88.399379,18.494966],[-88.399226,18.494791],[-88.398888,18.494405],[-88.397871,18.49346],[-88.396861,18.492426],[-88.396039,18.49159],[-88.395351,18.490601],[-88.394434,18.489355],[-88.393613,18.488692],[-88.392609,18.487792],[-88.391674,18.487043],[-88.390651,18.48664],[-88.389855,18.486278],[-88.38926,18.48557],[-88.388905,18.484887],[-88.388558,18.48409],[-88.388142,18.483056],[-88.3875,18.482132],[-88.386998,18.481639],[-88.386406,18.48132],[-88.385588,18.481045],[-88.384611,18.480728],[-88.383542,18.480174],[-88.382678,18.479813],[-88.381768,18.479453],[-88.380133,18.478946],[-88.379159,18.478953],[-88.377936,18.479049],[-88.37685,18.479229],[-88.375364,18.480169],[-88.374176,18.480911],[-88.373623,18.481535],[-88.37324,18.482058],[-88.372729,18.482743],[-88.371836,18.483438],[-88.370551,18.484268],[-88.369718,18.484901],[-88.368589,18.485406],[-88.367957,18.485799],[-88.367235,18.486107],[-88.365809,18.486355],[-88.364791,18.486492],[-88.363749,18.48665],[-88.362277,18.486661],[-88.361369,18.486495],[-88.360324,18.4862],[-88.359106,18.486015],[-88.358197,18.485611],[-88.357243,18.485359],[-88.356244,18.485128],[-88.354881,18.484641],[-88.353589,18.484586],[-88.352885,18.484483],[-88.352024,18.484446],[-88.351118,18.484474],[-88.350462,18.484586],[-88.3501,18.484762],[-88.349716,18.484851],[-88.349354,18.485005],[-88.349168,18.48504],[-88.348731,18.48516],[-88.348602,18.485255],[-88.348172,18.485411],[-88.347759,18.485502],[-88.34744,18.485687],[-88.346738,18.485865],[-88.345805,18.486034],[-88.344688,18.486177],[-88.343388,18.48651],[-88.341493,18.486712],[-88.340122,18.48687],[-88.339781,18.486931],[-88.33933,18.487011],[-88.338439,18.487057],[-88.337439,18.487297],[-88.336591,18.487452],[-88.336011,18.487577],[-88.335348,18.487784],[-88.334408,18.488171],[-88.333335,18.488314],[-88.332225,18.488454],[-88.331112,18.488684],[-88.329734,18.489505],[-88.328888,18.489794],[-88.327619,18.490145],[-88.326853,18.490177],[-88.326069,18.489854],[-88.324915,18.489547],[-88.324204,18.489297],[-88.323269,18.489113],[-88.322704,18.488936],[-88.321322,18.488861],[-88.320983,18.488571],[-88.319187,18.488227],[-88.318405,18.487834],[-88.31728,18.487292],[-88.316275,18.486918],[-88.315543,18.486502],[-88.314638,18.486106],[-88.314373,18.485818],[-88.314276,18.485745],[-88.313711,18.485568],[-88.310358,18.485216],[-88.3045,18.478753],[-88.288987,18.475273],[-88.270041,18.474974],[-88.260801,18.474923],[-88.257742,18.474694],[-88.25479,18.474114],[-88.250094,18.473072],[-88.249634,18.415552],[-88.142556,18.415283],[-88.065784,18.415079],[-88.030366,18.414794],[-88.030644,18.321767],[-88.030671,18.272808],[-88.030589,18.252808],[-88.030739,18.250807],[-88.030299,18.160361],[-87.999989,18.159593],[-87.925453,18.160236],[-87.902426,18.142692],[-87.867511,18.188239],[-87.866077,18.1892],[-87.861811,18.189655],[-87.860189,18.18983],[-87.86015,18.189612],[-87.860088,18.189392],[-87.860048,18.189217],[-87.860005,18.189129],[-87.859878,18.188821],[-87.859861,18.188624],[-87.85994,18.188278],[-87.859968,18.188105],[-87.859922,18.188104],[-87.85988,18.187994],[-87.859885,18.187842],[-87.859773,18.187773],[-87.859573,18.187615],[-87.859417,18.187481],[-87.859306,18.187412],[-87.85917,18.187387],[-87.859104,18.187298],[-87.858926,18.187162],[-87.858839,18.187029],[-87.858843,18.186899],[-87.858893,18.18677],[-87.858961,18.18675],[-87.85905,18.186818],[-87.859164,18.186842],[-87.859251,18.186954],[-87.859341,18.187],[-87.859429,18.187089],[-87.859519,18.187135],[-87.859588,18.187115],[-87.859614,18.187007],[-87.859525,18.186939],[-87.859392,18.186805],[-87.859216,18.186605],[-87.859132,18.186363],[-87.85909,18.186253],[-87.859049,18.186099],[-87.858943,18.185857],[-87.858836,18.185637],[-87.858725,18.185525],[-87.858636,18.185457],[-87.858593,18.18539],[-87.858435,18.185343],[-87.858368,18.185297],[-87.858193,18.185075],[-87.857968,18.18496],[-87.857789,18.184868],[-87.857722,18.184822],[-87.857614,18.184624],[-87.857594,18.184536],[-87.857529,18.184425],[-87.857533,18.184295],[-87.857537,18.184186],[-87.857541,18.184056],[-87.857588,18.183992],[-87.85764,18.183753],[-87.857506,18.183537],[-87.857361,18.183391],[-87.857335,18.183218],[-87.85734,18.183018],[-87.857373,18.182933],[-87.857438,18.182735],[-87.85735,18.182675],[-87.85729,18.182674],[-87.857173,18.182557],[-87.857175,18.182471],[-87.857272,18.182216],[-87.857337,18.182017],[-87.857371,18.181846],[-87.857193,18.181785],[-87.857046,18.181695],[-87.856717,18.181688],[-87.856658,18.181657],[-87.8566,18.181599],[-87.856575,18.181398],[-87.856487,18.181339],[-87.856308,18.181306],[-87.856127,18.181359],[-87.856096,18.181415],[-87.856094,18.181472],[-87.85612,18.181616],[-87.856204,18.181847],[-87.85601,18.181968],[-87.856082,18.182645],[-87.855942,18.182751],[-87.855488,18.182941],[-87.855172,18.182751],[-87.854571,18.18309],[-87.854124,18.184148],[-87.854026,18.184724],[-87.853573,18.184678],[-87.853158,18.18442],[-87.852504,18.184375],[-87.852152,18.18428],[-87.851197,18.18414],[-87.850292,18.184048],[-87.84959,18.184387],[-87.849341,18.184821],[-87.849142,18.185398],[-87.849195,18.185878],[-87.849649,18.18626],[-87.849449,18.1865],[-87.848747,18.186744],[-87.848346,18.187033],[-87.848298,18.187466],[-87.8481,18.188043],[-87.847851,18.188524],[-87.847402,18.189198],[-87.84685,18.189393],[-87.846549,18.189394],[-87.845594,18.189494],[-87.844995,18.189957],[-87.844843,18.190073],[-87.844633,18.190406],[-87.844295,18.19094],[-87.844368,18.191463],[-87.844123,18.191758],[-87.844017,18.192191],[-87.844091,18.19358],[-87.844137,18.194481],[-87.844081,18.195774],[-87.843817,18.196127],[-87.844047,18.197095],[-87.84405,18.197703],[-87.843877,18.19871],[-87.843874,18.199368],[-87.843631,18.199768],[-87.843918,18.200373],[-87.843798,18.200643],[-87.843543,18.200876],[-87.843514,18.201433],[-87.843435,18.201839],[-87.843091,18.202507],[-87.84295,18.20345],[-87.843015,18.203888],[-87.843009,18.204031],[-87.842881,18.204113],[-87.842707,18.204343],[-87.842647,18.204773],[-87.842607,18.206205],[-87.842702,18.206552],[-87.842428,18.206801],[-87.842495,18.207312],[-87.842465,18.207637],[-87.842159,18.20801],[-87.842197,18.208401],[-87.842197,18.209296],[-87.841969,18.209425],[-87.842091,18.210777],[-87.842189,18.211009],[-87.841878,18.211394],[-87.841831,18.212114],[-87.841834,18.212834],[-87.841835,18.213012],[-87.841837,18.213314],[-87.841892,18.214418],[-87.841958,18.214872],[-87.841985,18.215372],[-87.842049,18.215777],[-87.842153,18.216433],[-87.842159,18.217729],[-87.842276,18.218676],[-87.842099,18.218893],[-87.841966,18.219411],[-87.842153,18.220179],[-87.842026,18.22066],[-87.842026,18.221427],[-87.842177,18.222157],[-87.842054,18.223459],[-87.842023,18.223877],[-87.841765,18.224282],[-87.841915,18.225024],[-87.841886,18.22569],[-87.841633,18.226844],[-87.841749,18.227386],[-87.841622,18.227866],[-87.84169,18.228579],[-87.841822,18.229136],[-87.841416,18.230836],[-87.840968,18.231798],[-87.84092,18.232423],[-87.840981,18.233058],[-87.840826,18.233623],[-87.840874,18.234313],[-87.840536,18.234643],[-87.84043,18.235017],[-87.840179,18.23497],[-87.840031,18.235547],[-87.839987,18.236988],[-87.839891,18.2379],[-87.83979,18.238775],[-87.839388,18.239458],[-87.839506,18.240341],[-87.839303,18.240927],[-87.839237,18.241884],[-87.838655,18.242259],[-87.838562,18.243033],[-87.838239,18.243267],[-87.838258,18.24384],[-87.837789,18.244019],[-87.837838,18.244405],[-87.838001,18.244651],[-87.837984,18.244995],[-87.837843,18.245383],[-87.837504,18.245722],[-87.837362,18.246482],[-87.83707,18.24713],[-87.83674,18.247577],[-87.836693,18.24815],[-87.836816,18.24872],[-87.836923,18.249326],[-87.836903,18.249839],[-87.836752,18.250229],[-87.836612,18.2507],[-87.836583,18.251058],[-87.836544,18.251355],[-87.836488,18.251679],[-87.836251,18.252669],[-87.836178,18.253191],[-87.836313,18.254072],[-87.836155,18.254402],[-87.836123,18.255573],[-87.836159,18.256352],[-87.835981,18.25734],[-87.835916,18.257985],[-87.835673,18.259859],[-87.835581,18.261539],[-87.835384,18.262452],[-87.835339,18.263557],[-87.835224,18.264526],[-87.835181,18.265712],[-87.835327,18.266849],[-87.835172,18.268346],[-87.834874,18.269744],[-87.834741,18.270668],[-87.834555,18.271255],[-87.834623,18.272822],[-87.834726,18.273302],[-87.834825,18.273943],[-87.834688,18.274799],[-87.834638,18.275799],[-87.83449,18.276568],[-87.83444,18.277612],[-87.83451,18.278507],[-87.834563,18.281022],[-87.834368,18.282569],[-87.834274,18.2843],[-87.833935,18.285273],[-87.833578,18.286906],[-87.833379,18.287382],[-87.83335,18.288023],[-87.833392,18.288671],[-87.833272,18.289256],[-87.833302,18.289569],[-87.833319,18.290386],[-87.833243,18.290865],[-87.833102,18.291121],[-87.833103,18.291312],[-87.833057,18.292321],[-87.832762,18.293618],[-87.832713,18.293858],[-87.832545,18.294976],[-87.83237,18.295555],[-87.832233,18.296168],[-87.832219,18.296199],[-87.831822,18.297064],[-87.831326,18.298233],[-87.8311,18.298932],[-87.83077,18.299771],[-87.829978,18.302367],[-87.829582,18.304264],[-87.828898,18.307269],[-87.828465,18.308682],[-87.827993,18.310276],[-87.827719,18.310899],[-87.827378,18.311487],[-87.826781,18.312834],[-87.826434,18.313987],[-87.82599,18.315814],[-87.825296,18.317366],[-87.824947,18.318411],[-87.824499,18.319565],[-87.824053,18.320959],[-87.823756,18.321968],[-87.823209,18.323123],[-87.822379,18.325513],[-87.821469,18.327499],[-87.821137,18.328288],[-87.821126,18.32831],[-87.820884,18.328794],[-87.8208,18.328859],[-87.819967,18.330104],[-87.819929,18.330339],[-87.819744,18.331205],[-87.819106,18.332179],[-87.818606,18.332901],[-87.81764,18.333863],[-87.817087,18.334373],[-87.816005,18.33583],[-87.815114,18.336988],[-87.814655,18.337652],[-87.813877,18.338745],[-87.813293,18.340122],[-87.81311,18.340299],[-87.812442,18.340942],[-87.811106,18.342367],[-87.81004,18.343545],[-87.809026,18.344655],[-87.809016,18.344666],[-87.808828,18.344864],[-87.808617,18.345075],[-87.807885,18.345727],[-87.807204,18.346341],[-87.806684,18.346681],[-87.805936,18.347215],[-87.804014,18.349332],[-87.803155,18.350595],[-87.803087,18.350706],[-87.802958,18.350919],[-87.802094,18.352307],[-87.801249,18.354519],[-87.800702,18.355962],[-87.800556,18.357018],[-87.800162,18.358892],[-87.799371,18.361776],[-87.799024,18.363074],[-87.798627,18.364228],[-87.797928,18.365335],[-87.797128,18.36625],[-87.79663,18.367453],[-87.795464,18.369033],[-87.794615,18.370429],[-87.793565,18.371778],[-87.793367,18.372403],[-87.79332,18.373267],[-87.79222,18.374664],[-87.790676,18.378031],[-87.790228,18.379185],[-87.789781,18.380483],[-87.789401,18.38136],[-87.789085,18.38231],[-87.788636,18.383311],[-87.788619,18.38335],[-87.788467,18.383736],[-87.787973,18.384365],[-87.787592,18.384975],[-87.787314,18.38534],[-87.786944,18.38562],[-87.786073,18.385884],[-87.785746,18.385825],[-87.784965,18.385793],[-87.784466,18.386707],[-87.783739,18.387791],[-87.78312,18.389305],[-87.782671,18.390219],[-87.781671,18.391567],[-87.781171,18.392193],[-87.780071,18.393782],[-87.778774,18.395407],[-87.777873,18.396321],[-87.777067,18.397324],[-87.776458,18.397865],[-87.776141,18.398146],[-87.775542,18.398689],[-87.774859,18.399061],[-87.773906,18.399042],[-87.773669,18.399384],[-87.773531,18.399713],[-87.773296,18.400157],[-87.772486,18.400948],[-87.771339,18.401552],[-87.770388,18.401216],[-87.770238,18.401423],[-87.770258,18.401727],[-87.770938,18.40345],[-87.770942,18.404363],[-87.770684,18.404714],[-87.770177,18.40511],[-87.769638,18.405472],[-87.769741,18.405952],[-87.769684,18.407146],[-87.769133,18.407992],[-87.769029,18.408414],[-87.768862,18.408779],[-87.768613,18.40899],[-87.768547,18.409029],[-87.768197,18.409511],[-87.767594,18.409609],[-87.767192,18.409755],[-87.767344,18.409946],[-87.767748,18.410328],[-87.7676,18.411097],[-87.76666,18.411951],[-87.765809,18.411968],[-87.766086,18.412371],[-87.766101,18.413456],[-87.766355,18.413935],[-87.766082,18.414696],[-87.766078,18.414714],[-87.765607,18.415522],[-87.765259,18.41634],[-87.764508,18.417303],[-87.764108,18.417832],[-87.764111,18.418457],[-87.76431,18.419268],[-87.764519,18.420012],[-87.764565,18.420179],[-87.764925,18.421858],[-87.765082,18.423105],[-87.764992,18.423677],[-87.764886,18.424354],[-87.765044,18.426034],[-87.7651,18.42733],[-87.765014,18.430595],[-87.764771,18.432468],[-87.764226,18.434535],[-87.76408,18.435544],[-87.763634,18.437082],[-87.763084,18.437996],[-87.762684,18.438526],[-87.762036,18.439873],[-87.761635,18.44045],[-87.761689,18.441266],[-87.762047,18.442513],[-87.7622,18.44304],[-87.762256,18.444192],[-87.762209,18.4458],[-87.761923,18.446565],[-87.761885,18.447258],[-87.761868,18.447651],[-87.761514,18.448347],[-87.761472,18.44914],[-87.761506,18.450313],[-87.761558,18.45097],[-87.761774,18.451694],[-87.762032,18.452421],[-87.762658,18.453983],[-87.763422,18.456221],[-87.763897,18.457661],[-87.764059,18.458419],[-87.76429,18.459093],[-87.764378,18.460056],[-87.764403,18.46097],[-87.76441,18.462213],[-87.764296,18.462975],[-87.764062,18.463963],[-87.763683,18.464987],[-87.7634,18.465897],[-87.763177,18.466712],[-87.763071,18.467711],[-87.763141,18.468023],[-87.76316,18.468109],[-87.763379,18.469054],[-87.763328,18.469999],[-87.762807,18.471578],[-87.762441,18.473043],[-87.762404,18.473267],[-87.761985,18.474805],[-87.761805,18.477174],[-87.761659,18.478519],[-87.761747,18.478824],[-87.76174,18.479739],[-87.761729,18.482008],[-87.761537,18.482615],[-87.761531,18.482659],[-87.761332,18.484137],[-87.761314,18.484398],[-87.761237,18.48553],[-87.761343,18.486633],[-87.761546,18.488647],[-87.762094,18.491941],[-87.762308,18.494522],[-87.762057,18.496928],[-87.761676,18.497934],[-87.76119,18.499258],[-87.760595,18.500456],[-87.760439,18.50062],[-87.760337,18.500727],[-87.759969,18.501934],[-87.759597,18.503394],[-87.759549,18.505575],[-87.759503,18.50797],[-87.759056,18.509314],[-87.758369,18.510385],[-87.758012,18.510568],[-87.758015,18.511319],[-87.758179,18.512857],[-87.757765,18.514176],[-87.757084,18.515103],[-87.756239,18.51559],[-87.755735,18.515907],[-87.754674,18.516365],[-87.753607,18.517799],[-87.752567,18.519072],[-87.751866,18.519891],[-87.75101,18.521128],[-87.749517,18.522507],[-87.749019,18.523053],[-87.748892,18.523454],[-87.748767,18.52385],[-87.747757,18.525792],[-87.747267,18.526952],[-87.746391,18.527827],[-87.745649,18.528268],[-87.744813,18.528968],[-87.7447,18.529904],[-87.744651,18.530336],[-87.744517,18.53147],[-87.744336,18.532458],[-87.744089,18.533429],[-87.743946,18.534461],[-87.743592,18.535057],[-87.743568,18.535957],[-87.743715,18.537913],[-87.743078,18.538834],[-87.74253,18.538984],[-87.742205,18.539463],[-87.742124,18.539995],[-87.742205,18.540385],[-87.742229,18.540409],[-87.742157,18.541898],[-87.741681,18.543247],[-87.741061,18.544404],[-87.739955,18.545467],[-87.739887,18.54639],[-87.740042,18.547301],[-87.74012,18.548148],[-87.740106,18.549682],[-87.739939,18.551214],[-87.73966,18.55292],[-87.739453,18.55474],[-87.739437,18.556627],[-87.739776,18.558327],[-87.739858,18.559512],[-87.740057,18.562125],[-87.740063,18.564618],[-87.740135,18.56729],[-87.740169,18.569757],[-87.740024,18.571327],[-87.739772,18.573602],[-87.739327,18.576122],[-87.739189,18.577373],[-87.739293,18.579328],[-87.739471,18.581451],[-87.739201,18.5829],[-87.739005,18.584331],[-87.738654,18.586083],[-87.73807,18.588722],[-87.738013,18.590248],[-87.737911,18.591184],[-87.73775,18.592069],[-87.737607,18.59327],[-87.737292,18.594399],[-87.736533,18.596475],[-87.736301,18.597716],[-87.736084,18.599044],[-87.735782,18.600935],[-87.735344,18.602116],[-87.734595,18.603655],[-87.734201,18.604875],[-87.733875,18.606763],[-87.733624,18.6081],[-87.73366,18.608571],[-87.73354,18.609803],[-87.733378,18.610376],[-87.733187,18.611105],[-87.73275,18.611978],[-87.732658,18.612636],[-87.732568,18.613583],[-87.732365,18.615133],[-87.732369,18.61571],[-87.732126,18.616498],[-87.73197,18.616624],[-87.731722,18.617537],[-87.731725,18.618353],[-87.73188,18.619072],[-87.732136,18.620128],[-87.732012,18.620859],[-87.731928,18.621792],[-87.731646,18.623043],[-87.731597,18.623586],[-87.731062,18.624808],[-87.730447,18.625567],[-87.72969,18.626376],[-87.729437,18.627182],[-87.729265,18.62857],[-87.729318,18.62978],[-87.729361,18.63068],[-87.729338,18.631547],[-87.729276,18.631877],[-87.729167,18.632813],[-87.729049,18.633168],[-87.72872,18.634159],[-87.728324,18.635985],[-87.728068,18.637117],[-87.727889,18.639219],[-87.727838,18.640101],[-87.727946,18.641747],[-87.728143,18.642464],[-87.728355,18.645008],[-87.728263,18.645921],[-87.728081,18.646437],[-87.727662,18.647939],[-87.727263,18.648805],[-87.726992,18.649395],[-87.726981,18.64942],[-87.726866,18.650199],[-87.726621,18.651928],[-87.726278,18.654089],[-87.725881,18.655675],[-87.725883,18.656107],[-87.72571,18.657871],[-87.725733,18.659121],[-87.72598,18.661706],[-87.725979,18.66434],[-87.725705,18.666302],[-87.725231,18.668544],[-87.724482,18.670179],[-87.723868,18.671441],[-87.722932,18.674058],[-87.72201,18.676746],[-87.722117,18.678019],[-87.721543,18.680077],[-87.720387,18.68214],[-87.71935,18.684572],[-87.718421,18.685717],[-87.717631,18.68555],[-87.717893,18.686328],[-87.717954,18.687226],[-87.717921,18.688273],[-87.717456,18.690822],[-87.716563,18.692201],[-87.715795,18.693056],[-87.715302,18.694119],[-87.715205,18.695128],[-87.715473,18.695975],[-87.715357,18.69654],[-87.7153,18.696935],[-87.715165,18.69748],[-87.714831,18.698036],[-87.714398,18.698667],[-87.713959,18.699984],[-87.713938,18.700482],[-87.714044,18.701018],[-87.714158,18.701524],[-87.714151,18.701938],[-87.714105,18.702444],[-87.714105,18.702552],[-87.714048,18.702551],[-87.714042,18.702577],[-87.71401,18.703167],[-87.713476,18.704754],[-87.712622,18.707588],[-87.711765,18.710112],[-87.711078,18.710932],[-87.710692,18.711626],[-87.710469,18.711951],[-87.710458,18.711967],[-87.710436,18.711986],[-87.708508,18.713685],[-87.707471,18.714679],[-87.706868,18.715429],[-87.706616,18.715958],[-87.706511,18.716805],[-87.706309,18.717708],[-87.706138,18.71892],[-87.705808,18.71991],[-87.705641,18.720162],[-87.70512,18.720325],[-87.704507,18.720976],[-87.703393,18.721744],[-87.701977,18.722702],[-87.701176,18.723825],[-87.70086,18.724584],[-87.700695,18.724838],[-87.700138,18.724998],[-87.699851,18.725093],[-87.699529,18.725407],[-87.699388,18.725744],[-87.699471,18.726209],[-87.699566,18.726747],[-87.699522,18.72735],[-87.699321,18.727627],[-87.699114,18.727908],[-87.698839,18.728151],[-87.698342,18.728362],[-87.697503,18.728451],[-87.696532,18.728842],[-87.696275,18.728906],[-87.69598,18.728862],[-87.695818,18.728743],[-87.695302,18.7289],[-87.69397,18.730159],[-87.69353,18.730592],[-87.693438,18.730772],[-87.693419,18.73103],[-87.693493,18.73124],[-87.693441,18.731654],[-87.692843,18.732072],[-87.692717,18.732372],[-87.692619,18.732454],[-87.692243,18.732626],[-87.692172,18.732658],[-87.692495,18.73293],[-87.692286,18.733154],[-87.692153,18.733224],[-87.691706,18.733429],[-87.691185,18.733719],[-87.690683,18.734136],[-87.690028,18.734598],[-87.689307,18.735051],[-87.689034,18.735295],[-87.688944,18.736031],[-87.688433,18.736566],[-87.68799,18.736859],[-87.687083,18.736987],[-87.686465,18.737247],[-87.685646,18.737624],[-87.685555,18.737665],[-87.684868,18.737919],[-87.684617,18.738304],[-87.68457,18.73912],[-87.684577,18.740752],[-87.684149,18.741206],[-87.683926,18.741498],[-87.683378,18.74189],[-87.682689,18.741889],[-87.682292,18.741747],[-87.681686,18.741757],[-87.681126,18.742201],[-87.680785,18.74243],[-87.680645,18.742842],[-87.680461,18.743034],[-87.68005,18.743805],[-87.679626,18.744175],[-87.67911,18.744771],[-87.678186,18.745958],[-87.677995,18.746205],[-87.677656,18.746691],[-87.677227,18.74711],[-87.676067,18.748942],[-87.675671,18.74948],[-87.675511,18.749691],[-87.675108,18.750383],[-87.675025,18.750655],[-87.67461,18.751577],[-87.674146,18.752058],[-87.673834,18.752574],[-87.673715,18.752968],[-87.673465,18.7538],[-87.673446,18.753919],[-87.673171,18.754699],[-87.672651,18.755399],[-87.672212,18.756222],[-87.672115,18.756637],[-87.671966,18.757262],[-87.671622,18.75853],[-87.671395,18.758891],[-87.671346,18.759112],[-87.671184,18.759505],[-87.671047,18.759667],[-87.67097,18.759795],[-87.670942,18.759842],[-87.670719,18.760771],[-87.670476,18.761249],[-87.670353,18.761686],[-87.670291,18.762109],[-87.670123,18.762561],[-87.669581,18.762895],[-87.669349,18.763381],[-87.669607,18.763912],[-87.6696,18.764527],[-87.669448,18.764896],[-87.669045,18.765413],[-87.669177,18.765961],[-87.669179,18.766585],[-87.669081,18.767258],[-87.668992,18.767801],[-87.668884,18.768459],[-87.66839,18.769386],[-87.668184,18.769949],[-87.66824,18.770939],[-87.66858,18.77175],[-87.669466,18.772959],[-87.670002,18.773582],[-87.67046,18.773868],[-87.670935,18.774306],[-87.671252,18.774827],[-87.671435,18.775939],[-87.671148,18.77723],[-87.670498,18.777579],[-87.670471,18.778141],[-87.670465,18.778183],[-87.670387,18.778727],[-87.670197,18.779389],[-87.670063,18.779692],[-87.669477,18.780453],[-87.66917,18.780918],[-87.669122,18.781249],[-87.669106,18.781785],[-87.668921,18.782064],[-87.669031,18.782567],[-87.669186,18.783212],[-87.669406,18.783658],[-87.668757,18.784905],[-87.668467,18.785799],[-87.668345,18.785996],[-87.667922,18.786611],[-87.667811,18.78703],[-87.667654,18.787366],[-89.146989,19.215462],
	], '#000000', 'Equipo 3');
	

	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 = 'Quintana Roo (14 - 29 Mayo 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);
}