if (typeof window.contentMaps === 'undefined') { window.contentMaps = {}; window.initialMapBounds = {}; } if (typeof window.markerData === 'undefined') { window.markerData = {}; } if (!markerData[1]) { markerData[1] = {}; } function initMapbox_1(){ mapboxgl.accessToken = 'pk.eyJ1IjoibGF6eXRyaXBzIiwiYSI6ImNsaTJ4anh2MTA5NDYzZW85ODJmMm45ZzcifQ.9u5pN47V7SsoFwF6_Pw5bQ'; const contentMap_1 = new mapboxgl.Map({ container: 'contentMap_1', style: 'mapbox://styles/mapbox/streets-v11', center: [-109.35647273105425, 38.00635615196065], zoom: 5, cooperativeGestures: true }); window.contentMaps[1] = contentMap_1; var bounds_1 = new mapboxgl.LngLatBounds(); if (typeof markerData[1][0] === 'undefined') { markerData[1][0] = {}; } markerData[1][0]['lonLat'] = [-104.989046, 39.740966]; markerData[1][0]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][0]['lonLat'] }, 'properties': { 'title': 'start', 'description': 'start point' } }] }; for (const feature of markerData[1][0]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_start'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'start'; markerData[1][0]['marker'] = marker; bounds_1.extend(markerData[1][0]['lonLat']); } markerData[1][0]['popup'] = false; markerData[1][0]['route'] = false; markerData[1][0]['card'] = false; if (typeof markerData[1][1] === 'undefined') { markerData[1][1] = {}; } markerData[1][1]['lonLat'] = [-115.139218, 36.171528]; markerData[1][1]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][1]['lonLat'] }, 'properties': { 'title': 'finish', 'description': 'finish point' } }] }; for (const feature of markerData[1][1]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_finish'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'finish'; markerData[1][1]['marker'] = marker; bounds_1.extend(markerData[1][1]['lonLat']); } markerData[1][1]['popup'] = false; markerData[1][1]['route'] = false; markerData[1][1]['card'] = false; if (typeof markerData[1][2] === 'undefined') { markerData[1][2] = {}; } markerData[1][2]['lonLat'] = [ -109.84852360680036, 38.92355412563694]; markerData[1][2]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][2]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][2]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][2]['marker'] = marker; bounds_1.extend(markerData[1][2]['lonLat']); } var markerConfigJson = JSON.parse('{"finish":{"className":"marker_finish","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"start":{"className":"marker_start","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"star":{"className":"marker_star","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"numbered":{"className":"mapMarkerNum","size":false,"offset":[0,0],"span":true,"best":true,"text":false},"star-plain":{"className":"mapMarkerNum markerSpanRed","size":false,"offset":[0,0],"span":true,"best":false,"text":"\u2606"}}'); function getNewLngLat(map, originalLngLat, offsets) { var pixel = map.project(new mapboxgl.LngLat(originalLngLat[0], originalLngLat[1])); pixel.x += offsets.x; pixel.y += offsets.y; return map.unproject(pixel); } Object.keys(contentMaps).forEach(function(mapNum) { contentMaps[mapNum].on('zoom', function() { Object.keys(markerData[mapNum]).forEach(function(iconNum) { var marker = markerData[mapNum][iconNum]; if (!isMobileDevice() && marker.cardInstance) { var offsets = { x: marker.cardOffsetX, y: marker.cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], marker.lonLat, offsets); marker.cardInstance.setLngLat([newLngLat.lng, newLngLat.lat]); } }); }); }); window.toggleMapIconClick = function(mapNum, iconNum) { clickWasOnMarkerOrCard = true; for (const [key, icon] of Object.entries(markerData[mapNum])) { if (parseInt(key) === iconNum) continue; if (icon['popupInstance']) { icon['popupInstance'].remove(); delete icon['popupInstance']; } if (icon['route'] === true && contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+key)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+key); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+key); } if(icon['marker']) { icon['marker'].getElement().classList.remove('markerSpanSelect'); } if(icon['marker'] && icon['marker'].getElement().style.display === 'none') { icon['marker'].getElement().style.display = 'block'; } if (icon['cardInstance']) { icon['cardInstance'].remove(); delete icon['cardInstance']; } if (icon['cardOverlay']) { var overlayToRemove = icon['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete icon['cardOverlay']; } } icon['clicked'] = false; } if (markerData[mapNum][iconNum]['clicked'] === false) { markerData[mapNum][iconNum]['marker'].getElement().classList.add('markerSpanSelect'); if (markerData[mapNum][iconNum]['popup'] === true) { const popupTitle = markerData[mapNum][iconNum]['popupTitle']; const popupText = markerData[mapNum][iconNum]['popupText']; let popupHTML = '
'; if (popupTitle) {popupHTML += '

' + popupTitle + '

';} if (popupText) {popupHTML += '

' + popupText + '

';} popupHTML += '
'; var popup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer' }) .setLngLat(markerData[mapNum][iconNum]['lonLat']) .setHTML(popupHTML) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['popupInstance'] = popup; popup._content.addEventListener('click', function() { toggleMapIconClick(mapNum, iconNum); }); markerData[mapNum][iconNum]['marker'].getElement().style.display = 'none'; } if (markerData[mapNum][iconNum]['route'] === true) { markerData[mapNum][iconNum]['routeGeoson'] = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: markerData[mapNum][iconNum]['routeJson'] } }; contentMaps[mapNum].addLayer({ id: 'iconRoute_'+mapNum+'_'+iconNum, type: 'line', source: { type: 'geojson', data: markerData[mapNum][iconNum]['routeGeoson'] }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': ''+markerData[mapNum][iconNum]['routeColor'], 'line-width': 5, 'line-opacity': 0.8 } }); } if (markerData[mapNum][iconNum]['card']) { var cardContent = { cardTitle: markerData[mapNum][iconNum]['cardTitle'], cardDistanceTime: markerData[mapNum][iconNum]['cardDistanceTime'], cardPhotoCode: markerData[mapNum][iconNum]['cardPhotoCode'], }; if (markerData[mapNum][iconNum].hasOwnProperty('cardLink')) { cardContent.cardLink = markerData[mapNum][iconNum]['cardLink']; } if (markerData[mapNum][iconNum].hasOwnProperty('cardLinkText')) { cardContent.cardLinkText = markerData[mapNum][iconNum]['cardLinkText']; } if (!isMobileDevice()) { var cardContentHtml = createCardContentHtml(cardContent,false); var offsets = { x: markerData[mapNum][iconNum].cardOffsetX, y: markerData[mapNum][iconNum].cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], markerData[mapNum][iconNum]['lonLat'], offsets); var cardPopup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer mapPopupCard' }) .setHTML(cardContentHtml) .setLngLat([newLngLat.lng, newLngLat.lat]) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['cardInstance'] = cardPopup; } else { var cardMobile = document.createElement('div'); cardMobile.className = 'mapPopupCardMobile'; cardMobile.innerHTML = createCardContentHtml(cardContent,true); var mapContainer = contentMaps[mapNum].getContainer(); mapContainer.appendChild(cardMobile); markerData[mapNum][iconNum]['cardOverlay'] = cardMobile; } } markerData[mapNum][iconNum]['clicked'] = true; updateMapBounds(mapNum, iconNum); } else { resetMarkersAndCards(mapNum); } } let clickWasOnMarkerOrCard = false; function resetMarkersAndCards(mapNum) { Object.keys(markerData[mapNum]).forEach((iconNum) => { if (markerData[mapNum][iconNum]['marker']) { markerData[mapNum][iconNum]['marker'].getElement().classList.remove('markerSpanSelect'); } if (markerData[mapNum][iconNum]['popupInstance']) { markerData[mapNum][iconNum]['popupInstance'].remove(); delete markerData[mapNum][iconNum]['popupInstance']; } if (markerData[mapNum][iconNum]['route'] === true) { if (contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+iconNum)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+iconNum); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+iconNum); } } if (markerData[mapNum][iconNum]['card']) { if (markerData[mapNum][iconNum]['cardInstance']) { markerData[mapNum][iconNum]['cardInstance'].remove(); delete markerData[mapNum][iconNum]['cardInstance']; } } if (markerData[mapNum][iconNum]['cardOverlay']) { var overlayToRemove = markerData[mapNum][iconNum]['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete markerData[mapNum][iconNum]['cardOverlay']; } } markerData[mapNum][iconNum]['marker'].getElement().style.display = 'block'; markerData[mapNum][iconNum]['clicked'] = false; updateMapBounds(mapNum, iconNum); }); } function createCardContentHtml(cardContent,isMobile) { let htmlContent = '
'; if (cardContent.cardPhotoCode) { htmlContent += '
' + cardContent.cardPhotoCode + '
'; } if (cardContent.cardTitle || cardContent.cardDistanceTime || cardContent.cardLink) { htmlContent += '
'; if (cardContent.cardTitle) { htmlContent += '
' + cardContent.cardTitle + '
'; } if (cardContent.cardDistanceTime) { if (isMobile) { const parts = cardContent.cardDistanceTime.split('⏱️'); htmlContent += '
' + parts[0].trim() + '
⏱️ ' + parts[1].trim() + '
'; } else { htmlContent += '
' + cardContent.cardDistanceTime + '
'; } } if (cardContent.cardLink) { var linkText = cardContent.cardLinkText || 'See full details'; htmlContent += '' + linkText + ''; } htmlContent += '
'; } htmlContent += '
'; return htmlContent; } function isMobileDevice() { return window.innerWidth <= 768 || window.innerHeight <= 600; } function updateMapBounds(mapNum, iconNum) { const oldBounds = contentMaps[mapNum].getBounds(); const newBounds = contentMaps[mapNum].getBounds(); const mapDimensions = contentMaps[mapNum].getContainer().getBoundingClientRect(); const clickedMarker = markerData[mapNum][iconNum]; const clickedMarkerLonLat = clickedMarker['lonLat']; const clickedMarkerRouteJson = clickedMarker['routeJson']; const lngDiff = oldBounds.getNorthEast().lng - oldBounds.getSouthWest().lng; const latDiff = oldBounds.getNorthEast().lat - oldBounds.getSouthWest().lat; const lngPerPx = lngDiff / mapDimensions.width; const latPerPx = latDiff / mapDimensions.height; if (clickedMarker['popup'] && clickedMarker['clicked']) { const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const tooCloseX = 100; const tooCloseT = 80; const tooCloseB = 10; const extendAmountXPixels = 120; const extendAmountTPixels = 120; const extendAmountBPixels = 20; const extendNWSE = [0,0,0,0]; if (pixelCoordinates.x < tooCloseX) { extendNWSE[3] = extendAmountXPixels- pixelCoordinates.x; } else if (pixelCoordinates.x > mapDimensions.width - tooCloseX) { extendNWSE[1] = extendAmountXPixels - (mapDimensions.width - pixelCoordinates.x); } if (pixelCoordinates.y < tooCloseT) { extendNWSE[0] = extendAmountTPixels- pixelCoordinates.y; } else if (pixelCoordinates.y > mapDimensions.height - tooCloseB) { extendNWSE[2] = extendAmountBPixels- (mapDimensions.height - pixelCoordinates.y); } for (let i = 0; i < extendNWSE.length; i++) { if (extendNWSE[i] > 0) { switch (i) { case 0: const extendNorthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getNorthEast().lat + extendNorthLat)); break; case 1: const extendEastLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getNorthEast().lng + extendEastLng, clickedMarkerLonLat[1])); break; case 2: const extendSouthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getSouthWest().lat - extendSouthLat)); break; case 3: const extendWestLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getSouthWest().lng - extendWestLng, clickedMarkerLonLat[1])); break; } } } if (Math.abs(newBounds.getSouthWest().lng - oldBounds.getSouthWest().lng) > 1e-6 || Math.abs(newBounds.getSouthWest().lat - oldBounds.getSouthWest().lat) > 1e-6 || Math.abs(newBounds.getNorthEast().lng - oldBounds.getNorthEast().lng) > 1e-6 || Math.abs(newBounds.getNorthEast().lat - oldBounds.getNorthEast().lat) > 1e-6) { contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } if (clickedMarker['route'] && clickedMarker['routeJson'] && clickedMarker['clicked']) { const paddingRoutePixels = 20; let extendWest = false, extendEast = false, extendNorth = false, extendSouth = false; clickedMarker['routeJson'].forEach(coord => { if (coord[0] < newBounds.getWest()) extendWest = true; if (coord[0] > newBounds.getEast()) extendEast = true; if (coord[1] > newBounds.getNorth()) extendNorth = true; if (coord[1] < newBounds.getSouth()) extendSouth = true; newBounds.extend(new mapboxgl.LngLat(coord[0], coord[1])); }); const mapContainer = contentMaps[mapNum].getContainer(); const lngDegreesPerPixel = (newBounds.getEast() - newBounds.getWest()) / mapContainer.offsetWidth; const latDegreesPerPixel = (newBounds.getNorth() - newBounds.getSouth()) / mapContainer.offsetHeight; const westBound = extendWest ? newBounds.getWest() - paddingRoutePixels * lngDegreesPerPixel : newBounds.getWest(); const eastBound = extendEast ? newBounds.getEast() + paddingRoutePixels * lngDegreesPerPixel : newBounds.getEast(); const northBound = extendNorth ? newBounds.getNorth() + paddingRoutePixels * latDegreesPerPixel : newBounds.getNorth(); const southBound = extendSouth ? newBounds.getSouth() - paddingRoutePixels * latDegreesPerPixel : newBounds.getSouth(); const paddedBounds = new mapboxgl.LngLatBounds( new mapboxgl.LngLat(westBound, southBound), new mapboxgl.LngLat(eastBound, northBound) ); contentMaps[mapNum].fitBounds(paddedBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } if (!isMobileDevice() && markerData[mapNum][iconNum]['card'] && markerData[mapNum][iconNum]['clicked']) { const cardWidth = 300; const cardHeight = 360; const cardPadding = 100; const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const offsetX = markerData[mapNum][iconNum]['cardOffsetX']; const offsetY = markerData[mapNum][iconNum]['cardOffsetY']; const markerPixel = contentMaps[mapNum].project(clickedMarkerLonLat); const topLeftPixel = { x: markerPixel.x + offsetX - cardWidth/2 - cardPadding, y: markerPixel.y + offsetY - cardHeight - cardPadding }; const topRightPixel = { x: topLeftPixel.x + cardWidth + (2 * cardPadding), y: topLeftPixel.y }; const bottomLeftPixel = { x: topLeftPixel.x, y: topLeftPixel.y + cardHeight + (2 * cardPadding) }; const bottomRightPixel = { x: topRightPixel.x, y: bottomLeftPixel.y }; [topLeftPixel, topRightPixel, bottomLeftPixel, bottomRightPixel].forEach(pixel => { const lngLat = contentMaps[mapNum].unproject(pixel); newBounds.extend(lngLat); }); contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } markerData[1][2]['clicked'] = false; markerData[1][2]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 2); }); markerData[1][2]['popup'] = true; markerData[1][2]['popupTitle'] = `Moab Route`; markerData[1][2]['popupText'] = `810 miles (12 hours*)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ -108.764821183409, 35.497926359832135]; markerData[1][3]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][3]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][3]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][3]['marker'] = marker; bounds_1.extend(markerData[1][3]['lonLat']); } markerData[1][3]['clicked'] = false; markerData[1][3]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 3); }); markerData[1][3]['popup'] = true; markerData[1][3]['popupTitle'] = `Albuquerque Route`; markerData[1][3]['popupText'] = `1,115 miles (17 hours 25 minutes*)`; markerData[1][3]['route'] = false; markerData[1][3]['card'] = false; const geojson_1_0 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-104.9907773","39.7422328"],["-104.993011","39.7405034"],["-104.9930872","39.7404372"],["-104.9931204","39.7403751"],["-104.9931213","39.7402645"],["-104.9930867","39.7402047"],["-104.9930483","39.7401381"],["-104.9952612","39.740141"],["-104.9953503","39.7401404"],["-104.9978492","39.7401619"],["-104.998923","39.7401931"],["-104.9990514","39.7401963"],["-104.9999711","39.7402138"],["-105.0001457","39.7402148"],["-105.0003102","39.74021"],["-105.0011167","39.740171"],["-105.0013178","39.7401663"],["-105.0014396","39.7401696"],["-105.0015762","39.7401635"],["-105.0017372","39.7401628"],["-105.0026887","39.740161"],["-105.0041758","39.7401737"],["-105.005248","39.7402354"],["-105.0094494","39.7403659"],["-105.0106188","39.7404725"],["-105.0113653","39.7405509"],["-105.0115486","39.7405753"],["-105.0119571","39.7405958"],["-105.0121897","39.7406181"],["-105.0123602","39.7406566"],["-105.0125804","39.7407188"],["-105.0126721","39.740749"],["-105.0127566","39.7407828"],["-105.0128346","39.7408174"],["-105.0129116","39.7408597"],["-105.0129824","39.7409031"],["-105.0130551","39.740959"],["-105.0131538","39.7410639"],["-105.0132836","39.7412276"],["-105.0134107","39.7414057"],["-105.0135017","39.7415329"],["-105.0135604","39.7416107"],["-105.0136134","39.7416721"],["-105.0136777","39.7417335"],["-105.013762","39.7417923"],["-105.0138742","39.7418652"],["-105.0139845","39.741915"],["-105.01406","39.7419424"],["-105.0141216","39.7419583"],["-105.0141914","39.7419718"],["-105.0142698","39.7419802"],["-105.0143544","39.7419836"],["-105.0144069","39.7419789"],["-105.0144931","39.7419649"],["-105.0145816","39.7419358"],["-105.0146482","39.7419035"],["-105.0147101","39.7418562"],["-105.014761","39.741806"],["-105.0148183","39.7417444"],["-105.0148804","39.7416653"],["-105.0149391","39.7415606"],["-105.0149895","39.7414449"],["-105.0150261","39.7413469"],["-105.0150519","39.7412338"],["-105.0150689","39.7411038"],["-105.0150688","39.7409903"],["-105.0150451","39.740852"],["-105.0149773","39.7406327"],["-105.0147552","39.7399798"],["-105.0145446","39.7393395"],["-105.014404","39.7388754"],["-105.0143389","39.738626"],["-105.0143018","39.7384587"],["-105.0142752","39.7383016"],["-105.0142525","39.7381212"],["-105.0142524","39.7379302"],["-105.0142532","39.7377003"],["-105.0142657","39.7374508"],["-105.0142917","39.7371564"],["-105.0143619","39.7368892"],["-105.0144332","39.7366568"],["-105.0145135","39.7364268"],["-105.01465","39.7360646"],["-105.0147159","39.7359077"],["-105.0148427","39.7356399"],["-105.0150152","39.735295"],["-105.0152156","39.7349071"],["-105.0154292","39.7344792"],["-105.0154857","39.7343443"],["-105.0155515","39.7341709"],["-105.0156177","39.7339827"],["-105.0156625","39.7338421"],["-105.0157373","39.7335703"],["-105.0157698","39.7334329"],["-105.0158201","39.7331627"],["-105.0158391","39.733019"],["-105.0158534","39.7328622"],["-105.0158626","39.7327253"],["-105.0158809","39.7323086"],["-105.015882","39.7321887"],["-105.0158788","39.7320681"],["-105.0158682","39.7319336"],["-105.0158514","39.7317872"],["-105.0157348","39.731275"],["-105.015678","39.7310572"],["-105.0155156","39.7305297"],["-105.0154217","39.7302526"],["-105.015305","39.7299193"],["-105.015177","39.7295332"],["-105.0149327","39.7288027"],["-105.0146272","39.7274419"],["-105.0144528","39.7265885"],["-105.0144362","39.7264847"],["-105.0144347","39.7264119"],["-105.0144365","39.7263631"],["-105.0144463","39.7263133"],["-105.0144635","39.7262504"],["-105.0144797","39.7262035"],["-105.014517","39.7261268"],["-105.0145656","39.7260453"],["-105.0146247","39.7259644"],["-105.0146912","39.7258961"],["-105.0147716","39.7258297"],["-105.0148549","39.7257815"],["-105.0149646","39.7257339"],["-105.0151009","39.7256991"],["-105.0153856","39.7256592"],["-105.0167531","39.7255992"],["-105.0184527","39.7255775"],["-105.0192169","39.7255976"],["-105.0202049","39.725642"],["-105.0218473","39.7258031"],["-105.0226652","39.7258626"],["-105.0251053","39.7259095"],["-105.0253092","39.725911"],["-105.025516","39.7259073"],["-105.0260219","39.7258878"],["-105.030212","39.7256631"],["-105.0307764","39.7256488"],["-105.0315627","39.7256611"],["-105.032989","39.7257381"],["-105.0336372","39.725724"],["-105.034034","39.725725"],["-105.0355905","39.7256763"],["-105.0467817","39.7257341"],["-105.0473955","39.7257505"],["-105.0482943","39.7257911"],["-105.0487769","39.7258093"],["-105.0494914","39.7258071"],["-105.0537855","39.7258069"],["-105.0577143","39.7257755"],["-105.0798224","39.7256268"],["-105.0811226","39.72561"],["-105.0820364","39.7256089"],["-105.0880319","39.7255896"],["-105.0899742","39.7255897"],["-105.0996503","39.7255498"],["-105.1005976","39.7255476"],["-105.158194","39.7254057"],["-105.1636587","39.7254048"],["-105.1651463","39.7254022"],["-105.1660169","39.7254018"],["-105.1707113","39.7253982"],["-105.1728024","39.7253973"],["-105.1776871","39.7253871"],["-105.179772","39.7254592"],["-105.1799898","39.7254823"],["-105.1801813","39.7255071"],["-105.1810868","39.7256502"],["-105.1813767","39.7256883"],["-105.1816059","39.7257061"],["-105.181818","39.725714"],["-105.1822284","39.7256876"],["-105.1826217","39.7256081"],["-105.1829615","39.7254865"],["-105.1831325","39.7254023"],["-105.1832982","39.7253048"],["-105.1834455","39.7251932"],["-105.1835463","39.7251056"],["-105.1836424","39.725015"],["-105.1837541","39.7249042"],["-105.1838627","39.7247452"],["-105.1839816","39.7245608"],["-105.184095","39.7243371"],["-105.1843558","39.7238191"],["-105.1851136","39.7222671"],["-105.1852053","39.7220913"],["-105.1852653","39.721994"],["-105.1853725","39.7218402"],["-105.1854509","39.7217424"],["-105.1855435","39.7216521"],["-105.1856591","39.721544"],["-105.1857622","39.7214563"],["-105.1861809","39.7211452"],["-105.1874674","39.7201995"],["-105.1878121","39.7199334"],["-105.1885261","39.7193451"],["-105.1896375","39.7182909"],["-105.1901616","39.7177144"],["-105.1905718","39.717228"],["-105.2002389","39.7047043"],["-105.201074","39.7035905"],["-105.202216","39.7020931"],["-105.2029144","39.7012477"],["-105.2032818","39.7008411"],["-105.203753","39.7003427"],["-105.2073187","39.6967484"],["-105.2075282","39.6965559"],["-105.2077057","39.6964072"],["-105.2078638","39.6962881"],["-105.2080103","39.6961899"],["-105.2081823","39.6960837"],["-105.2083423","39.6959982"],["-105.2085263","39.6959084"],["-105.2087539","39.6958143"],["-105.2089558","39.6957398"],["-105.2092039","39.695659"],["-105.209447","39.6955906"],["-105.2096744","39.6955417"],["-105.2099002","39.6955031"],["-105.2101027","39.6954781"],["-105.210326","39.6954609"],["-105.2105369","39.6954496"],["-105.2107177","39.6954515"],["-105.2109237","39.6954596"],["-105.2111241","39.6954749"],["-105.2113669","39.6955042"],["-105.211588","39.6955406"],["-105.2118602","39.6955934"],["-105.2120936","39.6956452"],["-105.2123871","39.6957183"],["-105.2133735","39.6959687"],["-105.2136315","39.6960229"],["-105.2138785","39.696069"],["-105.2141376","39.6961109"],["-105.2143732","39.696142"],["-105.2146288","39.69617"],["-105.2148992","39.696188"],["-105.2151777","39.6961999"],["-105.2154848","39.6962058"],["-105.2174257","39.6961831"],["-105.2180516","39.6961893"],["-105.2184014","39.6962006"],["-105.2187112","39.6962228"],["-105.2190403","39.6962573"],["-105.2193264","39.6962971"],["-105.2196051","39.6963445"],["-105.219924","39.6964086"],["-105.2202191","39.696475"],["-105.2205862","39.6965668"],["-105.2258917","39.6981191"],["-105.2261595","39.6981933"],["-105.22638","39.6982444"],["-105.2268135","39.6983294"],["-105.227274","39.6983862"],["-105.2278235","39.6984191"],["-105.2358662","39.6985581"],["-105.2361266","39.6985738"],["-105.23635","39.6985961"],["-105.2365606","39.6986246"],["-105.2367613","39.6986613"],["-105.237243","39.6987784"],["-105.2374878","39.6988588"],["-105.2377072","39.6989469"],["-105.2378618","39.6990225"],["-105.2380367","39.6991135"],["-105.2382048","39.6992065"],["-105.2383903","39.6993203"],["-105.238557","39.6994378"],["-105.2387245","39.699572"],["-105.2389559","39.6997807"],["-105.2392889","39.7001078"],["-105.2398871","39.7007044"],["-105.2400389","39.7008464"],["-105.240201","39.7009843"],["-105.2405414","39.7012284"],["-105.2407138","39.7013393"],["-105.2408992","39.7014433"],["-105.2410747","39.7015337"],["-105.2414059","39.7016836"],["-105.2415874","39.7017534"],["-105.2451881","39.7028523"],["-105.2455975","39.70295"],["-105.2521876","39.7043164"],["-105.2528069","39.7044392"],["-105.2531511","39.7045029"],["-105.2534692","39.7045482"],["-105.2538129","39.7045889"],["-105.2540994","39.704617"],["-105.2544571","39.704645"],["-105.2547614","39.7046561"],["-105.2550654","39.704646"],["-105.2556765","39.7046147"],["-105.2593981","39.7040833"],["-105.2597021","39.7040439"],["-105.2603597","39.7039955"],["-105.2607428","39.7039995"],["-105.2610565","39.7039946"],["-105.2616484","39.7040106"],["-105.2620108","39.7040385"],["-105.2624499","39.7040783"],["-105.2628325","39.7041227"],["-105.2633227","39.7041928"],["-105.2645377","39.7043728"],["-105.2653198","39.7044827"],["-105.2748228","39.7058915"],["-105.2752623","39.7059701"],["-105.2756542","39.7060568"],["-105.2760196","39.7061474"],["-105.2763834","39.7062511"],["-105.2767236","39.7063646"],["-105.2775409","39.7066706"],["-105.2819093","39.7084958"],["-105.282421","39.7086913"],["-105.2826789","39.7087769"],["-105.2829733","39.7088648"],["-105.2832413","39.7089324"],["-105.2835238","39.7089965"],["-105.2838029","39.709048"],["-105.2840761","39.7090848"],["-105.2848521","39.709149"],["-105.2878161","39.7092963"],["-105.2888905","39.7093512"],["-105.2902065","39.7094384"],["-105.290959","39.7095236"],["-105.2917702","39.7096392"],["-105.293048","39.7098689"],["-105.2937515","39.7100303"],["-105.3097042","39.7141726"],["-105.3100044","39.7142377"],["-105.3103082","39.7142963"],["-105.3105986","39.7143387"],["-105.3108691","39.7143663"],["-105.3111601","39.714386"],["-105.3114575","39.7143826"],["-105.3117576","39.7143677"],["-105.3120543","39.7143355"],["-105.3123167","39.7142945"],["-105.3129218","39.7141563"],["-105.3131473","39.7140841"],["-105.3133843","39.713997"],["-105.3135902","39.7139138"],["-105.3137929","39.7138225"],["-105.3140086","39.7137153"],["-105.3142387","39.7136038"],["-105.314444","39.7134778"],["-105.3146918","39.7133053"],["-105.3149363","39.713119"],["-105.315621","39.712503"],["-105.316857","39.7113843"],["-105.3177557","39.7106174"],["-105.3191224","39.7094885"],["-105.3212405","39.7079253"],["-105.328895","39.7028753"],["-105.3290829","39.7027531"],["-105.3297641","39.7023607"],["-105.3300403","39.7022174"],["-105.3304258","39.7020669"],["-105.3308542","39.7019281"],["-105.3312685","39.7018166"],["-105.3316466","39.7017344"],["-105.3320387","39.7016717"],["-105.3324401","39.7016318"],["-105.3328012","39.7016063"],["-105.3332056","39.7016078"],["-105.3335941","39.7016275"],["-105.3339298","39.7016643"],["-105.3342986","39.7017244"],["-105.3346433","39.7017889"],["-105.335021","39.7018864"],["-105.3410536","39.7037361"],["-105.3416229","39.7039328"],["-105.3423161","39.7042248"],["-105.3427305","39.7044197"],["-105.3429006","39.7045082"],["-105.3433925","39.7047886"],["-105.3439701","39.7051631"],["-105.344225","39.7053473"],["-105.3445063","39.7055643"],["-105.344873","39.7058865"],["-105.3452942","39.70627"],["-105.3456805","39.7066675"],["-105.3468299","39.7078292"],["-105.3473138","39.7083186"],["-105.3475896","39.7085796"],["-105.3478807","39.7088446"],["-105.3481602","39.7090911"],["-105.3484248","39.7093074"],["-105.3490208","39.7097389"],["-105.3492998","39.7099303"],["-105.3499541","39.7103342"],["-105.3503595","39.7105633"],["-105.3508667","39.7108177"],["-105.3514584","39.7110972"],["-105.3519247","39.7112936"],["-105.3524616","39.7114871"],["-105.3529255","39.7116443"],["-105.3540192","39.7119798"],["-105.3544773","39.7120994"],["-105.3549009","39.7121909"],["-105.3553463","39.7122717"],["-105.3557465","39.7123378"],["-105.3561439","39.7123888"],["-105.3564985","39.7124207"],["-105.3571037","39.7124555"],["-105.3582086","39.7124817"],["-105.3644182","39.7125792"],["-105.3647451","39.7126013"],["-105.3651512","39.7126438"],["-105.3655243","39.7127046"],["-105.3658667","39.7127899"],["-105.3662556","39.7129205"],["-105.3667782","39.7131219"],["-105.3670973","39.7132745"],["-105.3673462","39.7134089"],["-105.3676209","39.7135719"],["-105.3680525","39.7138568"],["-105.3691943","39.7146371"],["-105.3695099","39.7148409"],["-105.3697656","39.7149823"],["-105.3703017","39.7152498"],["-105.3705742","39.7153665"],["-105.3708542","39.7154735"],["-105.3711079","39.7155581"],["-105.3714559","39.7156521"],["-105.3717915","39.7157274"],["-105.3721263","39.7157863"],["-105.372444","39.7158276"],["-105.3734761","39.7158968"],["-105.3738514","39.7158764"],["-105.3741868","39.7158511"],["-105.3745043","39.715818"],["-105.3748009","39.7157813"],["-105.3750817","39.7157379"],["-105.3753617","39.7156751"],["-105.3758278","39.715557"],["-105.3772095","39.7151903"],["-105.3781376","39.7149663"],["-105.3784867","39.7149075"],["-105.3788534","39.7148688"],["-105.3792006","39.7148419"],["-105.3795304","39.7148371"],["-105.3804336","39.7149075"],["-105.3808445","39.7149829"],["-105.381264","39.7150695"],["-105.3817518","39.7151946"],["-105.3833944","39.7156384"],["-105.383972","39.7157684"],["-105.3844858","39.7158473"],["-105.3850358","39.7159113"],["-105.3858801","39.7159686"],["-105.3863649","39.7159839"],["-105.3868206","39.7159717"],["-105.3878442","39.7159152"],["-105.3916704","39.7155598"],["-105.3920882","39.7155374"],["-105.3928397","39.7155236"],["-105.3931993","39.7155324"],["-105.3937161","39.7155743"],["-105.3940652","39.7156152"],["-105.3944272","39.7156644"],["-105.3947703","39.7157292"],["-105.3951022","39.7158016"],["-105.3954335","39.7158811"],["-105.395796","39.7159832"],["-105.3961135","39.7160846"],["-105.396455","39.7162008"],["-105.3967158","39.7162982"],["-105.3970063","39.7164226"],["-105.3975711","39.716699"],["-105.3979399","39.7169012"],["-105.3983545","39.7171557"],["-105.4008063","39.718791"],["-105.4010892","39.7189602"],["-105.4013899","39.7191209"],["-105.4016947","39.7192669"],["-105.4019777","39.7193938"],["-105.4023307","39.7195265"],["-105.4027163","39.7196466"],["-105.4030351","39.7197391"],["-105.41178","39.7218883"],["-105.412203","39.7220214"],["-105.4134265","39.7224361"],["-105.4140122","39.7226576"],["-105.4162174","39.7235596"],["-105.4169682","39.7239097"],["-105.4207188","39.7259489"],["-105.4210659","39.7261487"],["-105.421292","39.7262945"],["-105.4217308","39.7266187"],["-105.4219622","39.726816"],["-105.4221788","39.7270218"],["-105.4224208","39.7272759"],["-105.4229415","39.7278714"],["-105.4232157","39.7281774"],["-105.4234037","39.7283726"],["-105.4235835","39.7285384"],["-105.4237721","39.728689"],["-105.4239971","39.7288516"],["-105.4246856","39.7293129"],["-105.424943","39.7295039"],["-105.4251653","39.7296668"],["-105.4254001","39.7298454"],["-105.4255672","39.730009"],["-105.4257442","39.7301906"],["-105.4259339","39.7303965"],["-105.4260951","39.7305901"],["-105.4262506","39.7307918"],["-105.4263986","39.7310106"],["-105.4265383","39.7312638"],["-105.426697","39.7315908"],["-105.4268733","39.731982"],["-105.4270242","39.7323019"],["-105.4271664","39.7325867"],["-105.4275322","39.7332671"],["-105.4276924","39.73355"],["-105.4278493","39.7337774"],["-105.4280101","39.7340012"],["-105.4282757","39.7343251"],["-105.4288661","39.7350385"],["-105.4312487","39.738005"],["-105.4313815","39.7381849"],["-105.4314781","39.7383463"],["-105.4315678","39.7385125"],["-105.4317088","39.7388283"],["-105.4320315","39.7394882"],["-105.4324802","39.7403688"],["-105.4327654","39.7409356"],["-105.4328509","39.7411394"],["-105.4329051","39.741311"],["-105.4329501","39.7414923"],["-105.4329671","39.7416971"],["-105.4329829","39.7423799"],["-105.4330045","39.7426006"],["-105.4330418","39.7428176"],["-105.4330963","39.7430357"],["-105.433149","39.7431734"],["-105.4332198","39.7433044"],["-105.4332982","39.743431"],["-105.4333606","39.7435109"],["-105.4334309","39.7435929"],["-105.4335148","39.7436833"],["-105.4336031","39.7437647"],["-105.4337174","39.7438595"],["-105.4338269","39.7439378"],["-105.4339356","39.7440104"],["-105.4340646","39.7440916"],["-105.4341929","39.7441606"],["-105.4371717","39.7455284"],["-105.4374137","39.7456156"],["-105.4375996","39.7456764"],["-105.4377481","39.7457202"],["-105.4378974","39.7457605"],["-105.4379963","39.7457837"],["-105.438083","39.7458011"],["-105.4381651","39.7458148"],["-105.4382777","39.7458322"],["-105.4383952","39.7458442"],["-105.4385158","39.7458539"],["-105.4386417","39.74586"],["-105.4387591","39.7458628"],["-105.4388764","39.7458601"],["-105.4389892","39.7458547"],["-105.4390879","39.7458474"],["-105.4391699","39.7458391"],["-105.4392875","39.7458225"],["-105.4394746","39.7457857"],["-105.4396305","39.745743"],["-105.4397898","39.7456951"],["-105.439928","39.7456464"],["-105.4401201","39.7455679"],["-105.44028","39.7454912"],["-105.4404545","39.7454016"],["-105.4421613","39.7444195"],["-105.4427206","39.7441015"],["-105.4428965","39.7440105"],["-105.4430233","39.7439592"],["-105.443185","39.7439035"],["-105.4433447","39.7438588"],["-105.4434981","39.743823"],["-105.4436441","39.7437958"],["-105.44378","39.7437772"],["-105.4439044","39.7437633"],["-105.4440324","39.743755"],["-105.4441697","39.7437525"],["-105.4443101","39.743758"],["-105.4444516","39.7437702"],["-105.4445898","39.7437913"],["-105.4447397","39.7438214"],["-105.4449131","39.743863"],["-105.4451469","39.7439348"],["-105.4453427","39.7439982"],["-105.4461612","39.7442915"],["-105.4465565","39.7444302"],["-105.4467111","39.7444771"],["-105.4468671","39.7445192"],["-105.4470351","39.7445604"],["-105.4471947","39.7445926"],["-105.4473396","39.7446152"],["-105.4474912","39.7446291"],["-105.4476353","39.7446369"],["-105.447775","39.7446395"],["-105.4479575","39.7446292"],["-105.4481179","39.7446149"],["-105.4483023","39.7445908"],["-105.4484877","39.7445533"],["-105.4486683","39.7445049"],["-105.4488732","39.7444408"],["-105.4492552","39.7443028"],["-105.4508686","39.7437018"],["-105.4511942","39.7435873"],["-105.4515145","39.7434966"],["-105.4516759","39.7434565"],["-105.4518633","39.7434202"],["-105.4520556","39.7433868"],["-105.45222","39.7433629"],["-105.4523898","39.7433434"],["-105.4525576","39.7433315"],["-105.4527289","39.7433262"],["-105.4528853","39.7433235"],["-105.4530527","39.7433294"],["-105.4532463","39.7433423"],["-105.4534463","39.7433636"],["-105.453619","39.7433902"],["-105.4538013","39.7434249"],["-105.453978","39.7434635"],["-105.4541699","39.7435131"],["-105.45437","39.7435706"],["-105.4545695","39.743644"],["-105.4547976","39.7437378"],["-105.4550717","39.7438626"],["-105.4553687","39.7440132"],["-105.4580927","39.7454952"],["-105.4584143","39.7456636"],["-105.4587299","39.7458208"],["-105.4590621","39.7459686"],["-105.459534","39.746147"],["-105.4597756","39.7462248"],["-105.4599755","39.7462837"],["-105.4602518","39.7463566"],["-105.4605882","39.7464358"],["-105.4609932","39.7465104"],["-105.4613649","39.7465686"],["-105.4630728","39.7468037"],["-105.4635524","39.7468642"],["-105.4637087","39.746879"],["-105.4638829","39.7468901"],["-105.4640336","39.7468945"],["-105.464174","39.7468907"],["-105.4643281","39.7468779"],["-105.464465","39.7468595"],["-105.4646082","39.7468359"],["-105.4647585","39.7468038"],["-105.4648966","39.7467695"],["-105.465033","39.7467289"],["-105.4651823","39.7466804"],["-105.4653286","39.7466241"],["-105.4654923","39.7465527"],["-105.4657617","39.7464022"],["-105.465888","39.7463217"],["-105.4660117","39.7462308"],["-105.466557","39.7457707"],["-105.4667846","39.7455992"],["-105.4669555","39.7454827"],["-105.4670974","39.7454014"],["-105.4672355","39.7453349"],["-105.4673841","39.7452781"],["-105.4675317","39.7452261"],["-105.4676977","39.7451814"],["-105.4678771","39.7451397"],["-105.4680403","39.7451121"],["-105.4682114","39.7450984"],["-105.4683968","39.7450898"],["-105.4685999","39.7450876"],["-105.468753","39.7450999"],["-105.4689516","39.7451221"],["-105.4693732","39.745195"],["-105.4697375","39.7452571"],["-105.4703541","39.7453592"],["-105.4705877","39.7453847"],["-105.4708866","39.7453971"],["-105.4713504","39.7453798"],["-105.4716633","39.7453523"],["-105.4816322","39.7439026"],["-105.4819073","39.7438777"],["-105.4821775","39.7438654"],["-105.4824341","39.7438596"],["-105.4827013","39.7438672"],["-105.4829887","39.7438834"],["-105.4832971","39.7439197"],["-105.4835749","39.7439651"],["-105.4838409","39.7440188"],["-105.4840833","39.7440788"],["-105.4862781","39.7446736"],["-105.4864762","39.7447142"],["-105.4866588","39.7447418"],["-105.4868702","39.7447666"],["-105.4870893","39.7447821"],["-105.487312","39.7447902"],["-105.4875488","39.7447947"],["-105.487796","39.7447869"],["-105.4880087","39.7447691"],["-105.4882436","39.7447386"],["-105.4884766","39.7446965"],["-105.488698","39.7446467"],["-105.4888857","39.744599"],["-105.4890852","39.7445343"],["-105.4894623","39.7443915"],["-105.4896625","39.7443093"],["-105.4956203","39.7414768"],["-105.4958772","39.7413565"],["-105.4962025","39.7412151"],["-105.4965317","39.7410845"],["-105.4970156","39.740914"],["-105.4975573","39.7407398"],["-105.4980028","39.740632"],["-105.4990884","39.7404206"],["-105.4994375","39.7403717"],["-105.4998327","39.7403282"],["-105.5002189","39.7403014"],["-105.5006568","39.7402816"],["-105.5010389","39.7402736"],["-105.5055808","39.7404243"],["-105.5058382","39.7404427"],["-105.5060968","39.7404655"],["-105.5063615","39.7404998"],["-105.5066285","39.7405442"],["-105.5069132","39.7406073"],["-105.5072856","39.7407113"],["-105.5088356","39.7411943"],["-105.5091197","39.7412763"],["-105.5093397","39.7413282"],["-105.5095719","39.7413716"],["-105.5098321","39.7414145"],["-105.5100628","39.7414429"],["-105.5102974","39.7414646"],["-105.510526","39.741478"],["-105.5107531","39.7414846"],["-105.5130062","39.741457"],["-105.5135946","39.7414377"],["-105.5137619","39.7414264"],["-105.5139406","39.7414106"],["-105.5141779","39.7413785"],["-105.5146527","39.7412933"],["-105.515423","39.7411256"],["-105.5157883","39.7410477"],["-105.5160136","39.7410115"],["-105.5162398","39.7409848"],["-105.5169212","39.7409301"],["-105.5181384","39.7408576"],["-105.5184135","39.7408499"],["-105.5186651","39.740846"],["-105.5190044","39.7408497"],["-105.5193089","39.7408603"],["-105.5196567","39.7408793"],["-105.519965","39.7409061"],["-105.5203067","39.7409439"],["-105.5206579","39.7409945"],["-105.5209137","39.7410356"],["-105.5211774","39.7410848"],["-105.5215001","39.7411538"],["-105.5217584","39.7412142"],["-105.5220969","39.7413001"],["-105.5225024","39.7414193"],["-105.5257656","39.7424196"],["-105.5269553","39.7427582"],["-105.5272131","39.7428179"],["-105.5276374","39.7428993"],["-105.5281781","39.7429818"],["-105.5314556","39.7434425"],["-105.5317208","39.7434938"],["-105.5320383","39.7435619"],["-105.5322526","39.7436142"],["-105.5324998","39.7436806"],["-105.5339185","39.7440987"],["-105.5344384","39.7442358"],["-105.5363108","39.744647"],["-105.5368571","39.7447749"],["-105.5371936","39.7448631"],["-105.5376381","39.7449902"],["-105.538133","39.745151"],["-105.538581","39.7453229"],["-105.5402017","39.7459739"],["-105.5405742","39.7461019"],["-105.5419683","39.7465112"],["-105.5426212","39.746676"],["-105.5434664","39.7469029"],["-105.543816","39.747014"],["-105.5442219","39.7471522"],["-105.54456","39.7472779"],["-105.5451468","39.7475174"],["-105.5454277","39.7476405"],["-105.5461467","39.7479957"],["-105.5469299","39.7484315"],["-105.5472134","39.7486119"],["-105.5474757","39.7487899"],["-105.5479339","39.74912"],["-105.5482277","39.7493525"],["-105.5494743","39.7503876"],["-105.5497185","39.7505889"],["-105.5499569","39.7507665"],["-105.5501423","39.7508874"],["-105.5503004","39.7509846"],["-105.5504337","39.7510613"],["-105.5505557","39.751127"],["-105.5506755","39.7511828"],["-105.5509612","39.7513035"],["-105.5511719","39.7513813"],["-105.5515529","39.7515061"],["-105.5520462","39.7516564"],["-105.5524746","39.7517897"],["-105.5527098","39.7518751"],["-105.552923","39.7519594"],["-105.553088","39.7520361"],["-105.5532363","39.7521174"],["-105.5536022","39.7523493"],["-105.553747","39.7524561"],["-105.5538715","39.7525526"],["-105.5540411","39.7527055"],["-105.5546951","39.7533632"],["-105.5556369","39.7543244"],["-105.5558948","39.754564"],["-105.5560862","39.7547287"],["-105.5562437","39.7548451"],["-105.5564779","39.7549952"],["-105.5566507","39.7550955"],["-105.5569092","39.7552227"],["-105.5571178","39.7553128"],["-105.5573745","39.7554088"],["-105.5575673","39.7554715"],["-105.557767","39.7555255"],["-105.5579373","39.7555615"],["-105.558133","39.7555984"],["-105.5583235","39.7556287"],["-105.5585011","39.7556505"],["-105.5586822","39.7556663"],["-105.5590095","39.7556804"],["-105.5591665","39.755682"],["-105.5593137","39.7556776"],["-105.5594509","39.7556714"],["-105.560619","39.7555769"],["-105.5608089","39.7555666"],["-105.5610164","39.7555582"],["-105.5611388","39.7555592"],["-105.5612845","39.7555633"],["-105.5614158","39.7555698"],["-105.5615719","39.7555819"],["-105.5616901","39.7555929"],["-105.5618283","39.7556096"],["-105.5619981","39.7556372"],["-105.5622084","39.7556818"],["-105.5624186","39.755734"],["-105.5626568","39.7558037"],["-105.5628516","39.7558718"],["-105.5630763","39.7559602"],["-105.5705085","39.7592082"],["-105.5712505","39.7595702"],["-105.5761545","39.7621759"],["-105.5766244","39.7623906"],["-105.5771337","39.7626012"],["-105.5773789","39.7626942"],["-105.5776872","39.7628"],["-105.5780272","39.7629078"],["-105.5784235","39.7630255"],["-105.5787997","39.763124"],["-105.5792022","39.7632165"],["-105.5796275","39.7633021"],["-105.5801347","39.7633875"],["-105.5814651","39.7635376"],["-105.5901138","39.7643986"],["-105.5905943","39.7644253"],["-105.5911813","39.7644399"],["-105.5913638","39.7644378"],["-105.5975971","39.7641272"],["-105.5984908","39.7641104"],["-105.5987531","39.7641176"],["-105.5989874","39.7641276"],["-105.5994358","39.7641618"],["-105.5996882","39.7641882"],["-105.6059619","39.765137"],["-105.6125069","39.7654744"],["-105.6130399","39.7655142"],["-105.6138966","39.7656016"],["-105.6177165","39.7661915"],["-105.6210732","39.7665773"],["-105.621508","39.7665924"],["-105.6226731","39.7666104"],["-105.6232704","39.7665954"],["-105.6238358","39.7665708"],["-105.624561","39.7665111"],["-105.6278649","39.7661577"],["-105.6280664","39.7661285"],["-105.6284411","39.7660614"],["-105.6292769","39.7658738"],["-105.6298501","39.7657147"],["-105.6301656","39.7656102"],["-105.6303622","39.7655388"],["-105.6306449","39.7654291"],["-105.6312857","39.7651665"],["-105.631582","39.7650452"],["-105.632199","39.7647981"],["-105.6324985","39.7646917"],["-105.6327794","39.7645985"],["-105.6330555","39.7645143"],["-105.6333194","39.7644408"],["-105.6335217","39.7643894"],["-105.6340142","39.7642816"],["-105.6458684","39.7620933"],["-105.6472042","39.7617655"],["-105.6522963","39.760422"],["-105.6528416","39.76023"],["-105.6531343","39.7601138"],["-105.6534031","39.7599985"],["-105.6536665","39.7598779"],["-105.6541631","39.7596284"],["-105.6544017","39.7594973"],["-105.6546423","39.7593548"],["-105.6548347","39.7592344"],["-105.6551789","39.7590026"],["-105.6554169","39.7588295"],["-105.6556666","39.7586344"],["-105.6559291","39.7584209"],["-105.656199","39.7581782"],["-105.6563287","39.7580571"],["-105.6566154","39.7577726"],["-105.6569122","39.7574453"],["-105.6575206","39.7567224"],["-105.6597801","39.7540114"],["-105.660042","39.7537151"],["-105.6602857","39.7534526"],["-105.6605341","39.7532173"],["-105.6609078","39.7529069"],["-105.6615602","39.7524377"],["-105.6618134","39.7522841"],["-105.6620576","39.7521455"],["-105.6626917","39.7518508"],["-105.663224","39.7516306"],["-105.6780539","39.7457197"],["-105.678418","39.7455644"],["-105.679205","39.7452054"],["-105.6799135","39.7448475"],["-105.6822772","39.7435881"],["-105.6826007","39.7433915"],["-105.6831582","39.7430143"],["-105.6833526","39.7428593"],["-105.68358","39.7426614"],["-105.6837741","39.7424861"],["-105.6839736","39.7422733"],["-105.6841403","39.7420793"],["-105.6842822","39.7418994"],["-105.6843989","39.7417394"],["-105.6845229","39.741551"],["-105.6846457","39.7413551"],["-105.6848275","39.7410326"],["-105.6861896","39.7385257"],["-105.6866048","39.73783"],["-105.6867743","39.737586"],["-105.6869058","39.7374111"],["-105.6870573","39.7372272"],["-105.6873596","39.736891"],["-105.6907835","39.7334068"],["-105.6911314","39.7330407"],["-105.6914573","39.732669"],["-105.6916576","39.7324146"],["-105.6919498","39.7319979"],["-105.6920737","39.731798"],["-105.6922629","39.7314641"],["-105.6923514","39.7312959"],["-105.6924277","39.7311412"],["-105.6924855","39.7310122"],["-105.6926483","39.730614"],["-105.6952368","39.7237546"],["-105.6954539","39.7231394"],["-105.6955223","39.722906"],["-105.6955854","39.7226636"],["-105.6956322","39.72247"],["-105.6956901","39.7221962"],["-105.6957539","39.7218602"],["-105.6958218","39.7214631"],["-105.6971959","39.7119701"],["-105.6972944","39.7112412"],["-105.6973431","39.7109896"],["-105.6974051","39.7107008"],["-105.6974721","39.7104559"],["-105.6975458","39.7102311"],["-105.6976199","39.7100329"],["-105.697704","39.7098403"],["-105.6978117","39.7096433"],["-105.697922","39.7094637"],["-105.6980417","39.7092897"],["-105.6981668","39.7091245"],["-105.6983061","39.7089513"],["-105.6984708","39.708767"],["-105.6986157","39.7086167"],["-105.6987609","39.7084758"],["-105.69915","39.7081324"],["-105.7029473","39.7050804"],["-105.7040817","39.7042185"],["-105.7048483","39.7036761"],["-105.7056445","39.7031674"],["-105.7063757","39.7026758"],["-105.707115","39.7020916"],["-105.7076109","39.7016997"],["-105.7083468","39.7011224"],["-105.7085522","39.7009722"],["-105.7087606","39.7008357"],["-105.708943","39.7007204"],["-105.7092362","39.7005519"],["-105.7093885","39.7004715"],["-105.7096451","39.700348"],["-105.7100013","39.7001933"],["-105.7102095","39.7001141"],["-105.7105661","39.6999928"],["-105.7111875","39.699803"],["-105.7144458","39.6988883"],["-105.7149311","39.6987787"],["-105.7180737","39.6982584"],["-105.7189154","39.69813"],["-105.7191752","39.6980743"],["-105.7194404","39.6980096"],["-105.7199312","39.6978726"],["-105.7201666","39.6977922"],["-105.7204022","39.6977069"],["-105.720659","39.6976033"],["-105.7209384","39.6974747"],["-105.721279","39.6973063"],["-105.7229763","39.6963904"],["-105.723501","39.6961046"],["-105.7253804","39.6950813"],["-105.7259514","39.6948064"],["-105.7262896","39.6946769"],["-105.7266322","39.6945641"],["-105.7269674","39.6944734"],["-105.7272724","39.6944047"],["-105.7274911","39.6943657"],["-105.7276674","39.6943407"],["-105.7279031","39.6943146"],["-105.7282332","39.6942902"],["-105.7286156","39.6942741"],["-105.7289475","39.6942669"],["-105.7293133","39.6942831"],["-105.7297793","39.6943325"],["-105.7312328","39.6945398"],["-105.7328745","39.6947884"],["-105.7340054","39.6949588"],["-105.7397933","39.6958402"],["-105.7457009","39.6967327"],["-105.7462411","39.6967979"],["-105.7466599","39.6968233"],["-105.7471168","39.6968422"],["-105.7475639","39.6968536"],["-105.7479891","39.6968429"],["-105.756075","39.6965623"],["-105.7568806","39.6964837"],["-105.7600952","39.6960314"],["-105.760694","39.6959539"],["-105.7609974","39.695929"],["-105.7613302","39.6959133"],["-105.7616123","39.6959086"],["-105.7620002","39.6959231"],["-105.7623895","39.6959537"],["-105.762823","39.6960058"],["-105.7635037","39.6961195"],["-105.7647937","39.6963417"],["-105.7650773","39.6963775"],["-105.7655177","39.6964071"],["-105.7657901","39.6964186"],["-105.7661933","39.6964109"],["-105.7667389","39.6963731"],["-105.7673182","39.6962929"],["-105.7677731","39.696208"],["-105.7692207","39.6958656"],["-105.7707049","39.695498"],["-105.771626","39.6952882"],["-105.7719766","39.6952295"],["-105.7723461","39.6951812"],["-105.7727522","39.6951412"],["-105.7752692","39.6950357"],["-105.7852789","39.6944618"],["-105.7857252","39.6944318"],["-105.7862441","39.6944267"],["-105.7867829","39.6944625"],["-105.7872967","39.6945299"],["-105.7878215","39.6946398"],["-105.7883576","39.694792"],["-105.7889364","39.6950008"],["-105.7900103","39.6954042"],["-105.7904266","39.69554"],["-105.7909775","39.6956774"],["-105.7914629","39.6957746"],["-105.7919246","39.6958409"],["-105.792314","39.6958768"],["-105.7927893","39.6958998"],["-105.79316","39.6958967"],["-105.7935668","39.695875"],["-105.7939955","39.6958319"],["-105.794392","39.6957736"],["-105.794801","39.6956932"],["-105.795253","39.6955829"],["-105.7965926","39.6951587"],["-105.8003273","39.693947"],["-105.8013131","39.693626"],["-105.8019679","39.6934243"],["-105.8033645","39.6930964"],["-105.807929","39.6920942"],["-105.8086397","39.6919715"],["-105.8092145","39.6918992"],["-105.8097585","39.6918663"],["-105.8102763","39.6918827"],["-105.8107838","39.691929"],["-105.8112954","39.6920039"],["-105.8136158","39.6924074"],["-105.8209529","39.693476"],["-105.8223921","39.6936954"],["-105.8233009","39.6939259"],["-105.8239922","39.6941738"],["-105.8249659","39.6946134"],["-105.8318798","39.6980342"],["-105.8334599","39.6987946"],["-105.8340121","39.6990234"],["-105.8346685","39.6992794"],["-105.8353086","39.6995068"],["-105.8412278","39.7014384"],["-105.8424588","39.7018032"],["-105.8431073","39.7019502"],["-105.8436398","39.7020565"],["-105.8440628","39.702106"],["-105.8444821","39.7021274"],["-105.8451401","39.7021308"],["-105.8462531","39.7021058"],["-105.8607565","39.7016865"],["-105.8617019","39.7016497"],["-105.8624751","39.7015678"],["-105.8631136","39.7014675"],["-105.8637971","39.7013072"],["-105.8641963","39.7011795"],["-105.8645507","39.7010477"],["-105.8655341","39.700575"],["-105.8732953","39.6963443"],["-105.8739034","39.6960109"],["-105.8747203","39.6955063"],["-105.8753677","39.6950454"],["-105.8759894","39.6945788"],["-105.8767138","39.6939965"],["-105.8769994","39.6937388"],["-105.8779936","39.6928684"],["-105.8806896","39.6903966"],["-105.8813683","39.6897647"],["-105.8834287","39.6876508"],["-105.8863235","39.6846213"],["-105.8870671","39.6838564"],["-105.8874337","39.6835065"],["-105.8876815","39.6832942"],["-105.8879713","39.6830743"],["-105.8885222","39.6827101"],["-105.8892137","39.6823749"],["-105.8895332","39.6822486"],["-105.8898056","39.6821499"],["-105.8903989","39.6819798"],["-105.8910733","39.6818439"],["-105.8914828","39.6817853"],["-105.8918732","39.6817525"],["-105.8923323","39.6817298"],["-105.8931328","39.6817243"],["-105.8960929","39.6817522"],["-105.89647","39.681742"],["-105.897033","39.6817003"],["-105.8972747","39.681672"],["-105.8975929","39.681608"],["-105.8979659","39.6815222"],["-105.8983107","39.6814276"],["-105.8988878","39.6811871"],["-105.9000804","39.6805925"],["-105.901966","39.679648"],["-105.902627","39.6794083"],["-105.9030544","39.679292"],["-105.9034061","39.679217"],["-105.9034665","39.6792063"],["-105.9042814","39.6790769"],["-105.9050472","39.6790053"],["-105.9064414","39.6789949"],["-105.9135944","39.6791553"],["-105.9213997","39.6792982"],["-105.9304399","39.6791351"],["-105.934566","39.6790401"],["-105.9351646","39.6789833"],["-105.936042","39.6788305"],["-105.9361948","39.6788005"],["-105.9364172","39.6787469"],["-105.9368428","39.6786045"],["-105.9377866","39.6782437"],["-105.9397375","39.6774634"],["-105.9404011","39.6772253"],["-105.940832","39.6770955"],["-105.9413618","39.6769629"],["-105.9417858","39.6768723"],["-105.9427626","39.6767601"],["-105.9432984","39.6767364"],["-105.9439231","39.6767288"],["-105.9443994","39.6767653"],["-105.9465721","39.6770164"],["-105.9473117","39.6770735"],["-105.9481066","39.6771108"],["-105.9503295","39.6771334"],["-105.9529052","39.6771093"],["-105.9535365","39.6770774"],["-105.9539848","39.6770188"],["-105.954481","39.6769129"],["-105.955026","39.6767644"],["-105.9556725","39.6765044"],["-105.9594208","39.6746827"],["-105.9599322","39.6744883"],["-105.960497","39.6743114"],["-105.9610491","39.6741978"],["-105.9615931","39.6741381"],["-105.9679598","39.6738437"],["-105.9685651","39.6738039"],["-105.9690153","39.6737499"],["-105.969512","39.6736562"],["-105.9700672","39.6735183"],["-105.9706133","39.6733099"],["-105.971052","39.6730978"],["-105.9715375","39.6727899"],["-105.9719497","39.6724727"],["-105.9726997","39.6718591"],["-105.9743556","39.6704847"],["-105.9749656","39.6699364"],["-105.9753328","39.6695492"],["-105.975589","39.6692376"],["-105.9758281","39.6689034"],["-105.976057","39.6685255"],["-105.9766207","39.6674393"],["-105.9768917","39.6669651"],["-105.9771745","39.6665748"],["-105.9774587","39.6662677"],["-105.9778363","39.6658829"],["-105.9783943","39.6653826"],["-105.9794386","39.6644982"],["-105.9802985","39.6637933"],["-105.981629","39.6628027"],["-105.9820616","39.6625651"],["-105.9825597","39.6623199"],["-105.9832927","39.6620452"],["-105.9860268","39.6611042"],["-105.9867904","39.6608102"],["-105.9876304","39.6604247"],["-105.988278","39.6600888"],["-105.9889578","39.6596933"],["-105.9910589","39.6583493"],["-105.9915755","39.6580418"],["-105.9920856","39.6578044"],["-105.9927424","39.6575483"],["-105.9945048","39.6570331"],["-105.9951025","39.6568455"],["-105.9956208","39.6566557"],["-105.9968586","39.656063"],["-105.9974384","39.6557414"],["-105.9980916","39.6553877"],["-105.9987133","39.6550788"],["-105.999303","39.6548206"],["-106.0000495","39.6545261"],["-106.0007676","39.6542906"],["-106.0016664","39.6540436"],["-106.0028887","39.6537656"],["-106.0038374","39.6535747"],["-106.0046198","39.653474"],["-106.0057455","39.6534125"],["-106.0090632","39.6533316"],["-106.0096369","39.6532852"],["-106.010778","39.6530829"],["-106.0136099","39.6525238"],["-106.0145285","39.6523223"],["-106.0150604","39.6521402"],["-106.0156246","39.6518944"],["-106.01623","39.6515442"],["-106.0176907","39.6506002"],["-106.0182914","39.6502922"],["-106.0188135","39.6500864"],["-106.019518","39.6498876"],["-106.0212123","39.6494664"],["-106.021682","39.6493147"],["-106.0220497","39.6491692"],["-106.0225774","39.6488967"],["-106.0233731","39.6483933"],["-106.0267997","39.6461584"],["-106.0272877","39.6458774"],["-106.0277132","39.6456781"],["-106.0281477","39.6455252"],["-106.0285199","39.6454187"],["-106.0289485","39.6453284"],["-106.0298432","39.6452299"],["-106.0334973","39.6449042"],["-106.0341396","39.6448166"],["-106.0350547","39.6446196"],["-106.0355449","39.644461"],["-106.0360862","39.6442454"],["-106.0370335","39.6438127"],["-106.0454535","39.6398428"],["-106.0464744","39.6393251"],["-106.047414","39.6387837"],["-106.0480125","39.6384006"],["-106.0485894","39.6379932"],["-106.0492036","39.6375244"],["-106.0522426","39.6350283"],["-106.0526538","39.6347574"],["-106.0530176","39.6345425"],["-106.0536387","39.6342504"],["-106.064807","39.6297499"],["-106.0668253","39.6289323"],["-106.0680311","39.6284266"],["-106.0691653","39.6278984"],["-106.0697094","39.6275901"],["-106.0705741","39.6270393"],["-106.0710443","39.6266585"],["-106.0713644","39.6263633"],["-106.0717487","39.6259583"],["-106.0721906","39.6254087"],["-106.0726908","39.6246647"],["-106.0729931","39.624059"],["-106.0732421","39.6234662"],["-106.0733953","39.6229498"],["-106.073497","39.6224588"],["-106.0735729","39.6219061"],["-106.0735836","39.6215154"],["-106.0735725","39.6210801"],["-106.0735056","39.6203679"],["-106.0731144","39.6182878"],["-106.0729699","39.617463"],["-106.072941","39.617064"],["-106.0729302","39.6166519"],["-106.072971","39.6161834"],["-106.0730289","39.6157866"],["-106.0731247","39.6153974"],["-106.0732656","39.6150071"],["-106.0734144","39.6146613"],["-106.0736224","39.6142735"],["-106.0738432","39.61392"],["-106.0741263","39.6135211"],["-106.0744203","39.613174"],["-106.0747572","39.6128251"],["-106.0751412","39.6124984"],["-106.0755283","39.6121973"],["-106.0759071","39.6119518"],["-106.0763653","39.6116685"],["-106.0775196","39.6110278"],["-106.0785828","39.610409"],["-106.079054","39.6101106"],["-106.0794042","39.6098596"],["-106.0797364","39.6095766"],["-106.0800111","39.6093031"],["-106.0802888","39.608998"],["-106.0805472","39.6086794"],["-106.0808042","39.6083319"],["-106.0811885","39.6077935"],["-106.0824627","39.6060522"],["-106.0829514","39.6054495"],["-106.0833376","39.6050244"],["-106.0837918","39.604607"],["-106.0842828","39.604202"],["-106.0847974","39.6038304"],["-106.0883801","39.6015243"],["-106.0889185","39.6011577"],["-106.0892279","39.6009003"],["-106.0896049","39.600558"],["-106.0899997","39.6001751"],["-106.0904371","39.599695"],["-106.0914309","39.5985577"],["-106.092092","39.5977896"],["-106.0927786","39.5970023"],["-106.0935809","39.5960543"],["-106.0941702","39.5953641"],["-106.0946997","39.594778"],["-106.0951733","39.5943"],["-106.0962885","39.5931679"],["-106.0973267","39.5923562"],["-106.0978527","39.591976"],["-106.098366","39.5916373"],["-106.0989035","39.591303"],["-106.1066139","39.587038"],["-106.1071774","39.5866983"],["-106.1076314","39.5863827"],["-106.1080638","39.5860298"],["-106.108557","39.5855955"],["-106.108924","39.5851712"],["-106.1092719","39.5846851"],["-106.1095565","39.584231"],["-106.1098323","39.5836799"],["-106.1110094","39.5808992"],["-106.1114885","39.5797241"],["-106.1119069","39.5785589"],["-106.113232","39.5743267"],["-106.1134654","39.5737378"],["-106.1136689","39.5733318"],["-106.1138894","39.5729473"],["-106.114146","39.5725508"],["-106.114798","39.5717199"],["-106.115477","39.571067"],["-106.1161842","39.5704803"],["-106.1170881","39.5699103"],["-106.1180782","39.5693788"],["-106.1192","39.5687946"],["-106.1198159","39.5685298"],["-106.1208198","39.5681938"],["-106.1217661","39.5678817"],["-106.1229973","39.5674717"],["-106.1241038","39.5670107"],["-106.1250174","39.5665848"],["-106.1257897","39.56615"],["-106.1264692","39.5657295"],["-106.1271319","39.5652738"],["-106.1280364","39.5645743"],["-106.1285123","39.5641531"],["-106.1290065","39.5636912"],["-106.1293581","39.563285"],["-106.1296568","39.5628677"],["-106.1297895","39.5626335"],["-106.1299231","39.5623008"],["-106.1300735","39.5618765"],["-106.1301518","39.561469"],["-106.130178","39.5611427"],["-106.1301721","39.5605913"],["-106.1300869","39.5596912"],["-106.1301178","39.5588642"],["-106.1301695","39.5583043"],["-106.1302851","39.557951"],["-106.1305233","39.5574588"],["-106.1308942","39.5568568"],["-106.1317616","39.555658"],["-106.1322646","39.5550467"],["-106.1326934","39.5546313"],["-106.1332133","39.5542316"],["-106.134234","39.553536"],["-106.1349165","39.5530431"],["-106.1352657","39.5527258"],["-106.1357148","39.552258"],["-106.1361124","39.5517057"],["-106.1366418","39.5508675"],["-106.1375863","39.5492756"],["-106.1384595","39.5477888"],["-106.1389339","39.5469419"],["-106.1391537","39.5464292"],["-106.1392566","39.5460134"],["-106.1393159","39.5456569"],["-106.1393472","39.5452009"],["-106.139345","39.5442727"],["-106.1393785","39.5439177"],["-106.1394616","39.543593"],["-106.1395805","39.5431984"],["-106.1397057","39.5428944"],["-106.139967","39.5423842"],["-106.1404019","39.5417735"],["-106.1409646","39.5411687"],["-106.1414028","39.5407216"],["-106.1419747","39.540066"],["-106.1423325","39.5396117"],["-106.142541","39.539316"],["-106.1427271","39.5389736"],["-106.1429024","39.5386157"],["-106.1430423","39.5381994"],["-106.1431407","39.5378127"],["-106.1431678","39.5374987"],["-106.1431878","39.5371992"],["-106.1431828","39.536984"],["-106.143165","39.5367351"],["-106.1431056","39.5364107"],["-106.1429702","39.5359007"],["-106.1427874","39.5354785"],["-106.142553","39.53503"],["-106.1421601","39.5344809"],["-106.141028","39.5330568"],["-106.140643","39.532574"],["-106.1400721","39.5318751"],["-106.1395357","39.5312379"],["-106.1391101","39.530706"],["-106.1387404","39.5301988"],["-106.138454","39.5297493"],["-106.1383","39.529429"],["-106.1381352","39.5289571"],["-106.1380429","39.5284657"],["-106.1380307","39.528157"],["-106.1380885","39.5276789"],["-106.1381475","39.5273392"],["-106.1382265","39.5270176"],["-106.138352","39.5266513"],["-106.1385851","39.5262473"],["-106.1388384","39.5258175"],["-106.1390832","39.5254772"],["-106.139432","39.5250805"],["-106.1397968","39.524759"],["-106.140132","39.5245069"],["-106.141162","39.5238218"],["-106.1417073","39.5234645"],["-106.1436375","39.5222186"],["-106.1438744","39.5220668"],["-106.1443436","39.5217076"],["-106.1449163","39.5211785"],["-106.1452579","39.5207902"],["-106.1456219","39.5202817"],["-106.145872","39.5198259"],["-106.1460144","39.5194921"],["-106.1461445","39.5190819"],["-106.1462453","39.5186217"],["-106.146292","39.5181926"],["-106.14629","39.5177579"],["-106.1462491","39.5173625"],["-106.1461681","39.5168942"],["-106.1458091","39.5155971"],["-106.1454559","39.5144455"],["-106.145082","39.5132164"],["-106.1443163","39.5107402"],["-106.1439881","39.509643"],["-106.143863","39.5091152"],["-106.1437926","39.5087527"],["-106.1437473","39.5082379"],["-106.1437549","39.5078701"],["-106.1437852","39.507572"],["-106.1438317","39.5073195"],["-106.1439016","39.507038"],["-106.1440649","39.5066076"],["-106.144247","39.5062417"],["-106.1445063","39.5058367"],["-106.144757","39.5055283"],["-106.1450221","39.5052597"],["-106.1454402","39.5049023"],["-106.1458323","39.5046199"],["-106.1461929","39.5044169"],["-106.1470253","39.504065"],["-106.1473362","39.503956"],["-106.1476868","39.5038604"],["-106.1480695","39.5037701"],["-106.1485317","39.5036912"],["-106.1490214","39.5036253"],["-106.1495307","39.503579"],["-106.1505859","39.5035466"],["-106.1562342","39.5034881"],["-106.1574876","39.5034491"],["-106.1580466","39.5033895"],["-106.1587366","39.5032915"],["-106.1594246","39.5031575"],["-106.1600014","39.5030246"],["-106.1604807","39.5028891"],["-106.1613336","39.5026011"],["-106.1627456","39.5020948"],["-106.1633179","39.5019227"],["-106.163777","39.5018301"],["-106.1642194","39.5017676"],["-106.1646523","39.5017396"],["-106.1652357","39.5017332"],["-106.1661667","39.5017946"],["-106.1671198","39.5018738"],["-106.1679392","39.5019755"],["-106.1685244","39.5020834"],["-106.169019","39.5022186"],["-106.1695013","39.5023803"],["-106.1700752","39.5026133"],["-106.1717626","39.5033735"],["-106.1725505","39.5037158"],["-106.1732829","39.5039681"],["-106.1736715","39.50407"],["-106.1739512","39.5041237"],["-106.1742382","39.5041636"],["-106.1771623","39.5043716"],["-106.1778018","39.5044301"],["-106.1782156","39.5045013"],["-106.1786477","39.5046046"],["-106.1792071","39.504788"],["-106.179755","39.5050141"],["-106.1805199","39.5053665"],["-106.1812245","39.5056754"],["-106.1816392","39.5058155"],["-106.1819996","39.5059062"],["-106.1830366","39.5060729"],["-106.1885061","39.5068614"],["-106.1891422","39.5069379"],["-106.18997","39.506989"],["-106.1907512","39.5069789"],["-106.1915387","39.5069321"],["-106.1956366","39.5064281"],["-106.1962463","39.5063752"],["-106.1967019","39.5063851"],["-106.1971549","39.5064203"],["-106.1975448","39.5064809"],["-106.1980279","39.5066058"],["-106.198594","39.5067804"],["-106.1992368","39.507011"],["-106.199712","39.5071985"],["-106.2000763","39.507376"],["-106.200536","39.5076621"],["-106.2008418","39.5079096"],["-106.2010556","39.5081322"],["-106.2012312","39.508373"],["-106.2015615","39.5089351"],["-106.2019948","39.509671"],["-106.2025327","39.5105704"],["-106.2053083","39.5148421"],["-106.2056643","39.5153085"],["-106.2061495","39.51578"],["-106.2064063","39.5159956"],["-106.2067733","39.5162397"],["-106.2071185","39.5164487"],["-106.2075186","39.5166682"],["-106.2079674","39.5168938"],["-106.2093855","39.5175542"],["-106.2098527","39.5177979"],["-106.2102078","39.5180418"],["-106.2105966","39.5183702"],["-106.2108169","39.5185913"],["-106.2112581","39.519183"],["-106.2122576","39.520615"],["-106.2143875","39.5237655"],["-106.2151001","39.5248593"],["-106.2155326","39.5255614"],["-106.2157344","39.5259127"],["-106.2158733","39.5261975"],["-106.2160187","39.5264802"],["-106.216108","39.5267206"],["-106.2161655","39.5269374"],["-106.216231","39.5271834"],["-106.2162821","39.5274643"],["-106.2163243","39.5277079"],["-106.2163751","39.5279181"],["-106.2163801","39.5281486"],["-106.2163762","39.528353"],["-106.2163508","39.5286075"],["-106.2163219","39.5288449"],["-106.2162089","39.5294559"],["-106.2160807","39.5300826"],["-106.2158784","39.5310816"],["-106.2157163","39.5319205"],["-106.2155279","39.5327873"],["-106.215385","39.533415"],["-106.2152623","39.5340001"],["-106.2151654","39.534471"],["-106.2149477","39.5356073"],["-106.2148424","39.536193"],["-106.2148001","39.5364979"],["-106.2147646","39.5368226"],["-106.2147508","39.5373204"],["-106.2147617","39.5375336"],["-106.2147791","39.5377643"],["-106.2148611","39.5382298"],["-106.2149996","39.5387669"],["-106.2150958","39.5390859"],["-106.2152033","39.5393475"],["-106.215463","39.5399056"],["-106.2158307","39.5405441"],["-106.2173373","39.543149"],["-106.2178508","39.5440298"],["-106.2197548","39.5473001"],["-106.219899","39.5475305"],["-106.2200332","39.5477231"],["-106.2203172","39.5480873"],["-106.2204681","39.5482492"],["-106.2230779","39.5509081"],["-106.2234635","39.5512973"],["-106.2256278","39.5534417"],["-106.2263125","39.5541984"],["-106.226689","39.5546698"],["-106.2276394","39.555942"],["-106.2279724","39.5563464"],["-106.2281103","39.5565004"],["-106.2282812","39.5566855"],["-106.2284741","39.5568624"],["-106.2286791","39.5570344"],["-106.2291509","39.5573796"],["-106.229397","39.5575415"],["-106.2296457","39.5576937"],["-106.2299261","39.5578419"],["-106.2303317","39.5580437"],["-106.2308309","39.5582852"],["-106.2316076","39.5586919"],["-106.2319719","39.5589082"],["-106.232267","39.5591182"],["-106.2323964","39.5592202"],["-106.2325453","39.559353"],["-106.2326782","39.5594979"],["-106.2328166","39.5596618"],["-106.2329333","39.5598077"],["-106.2330374","39.5599679"],["-106.2331957","39.5602754"],["-106.2332835","39.5604521"],["-106.2333567","39.5606352"],["-106.2334372","39.5608759"],["-106.233719","39.5618047"],["-106.2337842","39.5620002"],["-106.2338725","39.5622281"],["-106.2339597","39.5624057"],["-106.2340776","39.5626142"],["-106.2341931","39.5628038"],["-106.2343171","39.5629975"],["-106.2344652","39.5632014"],["-106.2346213","39.5634004"],["-106.2347875","39.5635959"],["-106.2349584","39.563775"],["-106.2353375","39.5641261"],["-106.2355649","39.5643216"],["-106.235918","39.5646145"],["-106.2365544","39.5651711"],["-106.237297","39.5657573"],["-106.2376985","39.5660872"],["-106.2380359","39.5664059"],["-106.2383463","39.5667183"],["-106.2387839","39.5673231"],["-106.2397551","39.5686971"],["-106.2399953","39.568997"],["-106.24033","39.5693438"],["-106.2406857","39.5696969"],["-106.2470314","39.5750581"],["-106.2472511","39.5752575"],["-106.2474819","39.5754906"],["-106.2477305","39.5757567"],["-106.2480933","39.576193"],["-106.2482693","39.5764335"],["-106.2484095","39.5766449"],["-106.2485662","39.5768928"],["-106.2487189","39.5771655"],["-106.2489593","39.5776651"],["-106.2490617","39.5779222"],["-106.24915","39.5782007"],["-106.2492279","39.5784708"],["-106.2492667","39.5787145"],["-106.2492798","39.5789483"],["-106.2492644","39.5791776"],["-106.2492417","39.5793822"],["-106.2492091","39.5795847"],["-106.2491578","39.5797862"],["-106.2491006","39.5799601"],["-106.2490266","39.5801337"],["-106.2489299","39.5803217"],["-106.2488187","39.5805103"],["-106.2486857","39.5806915"],["-106.248481","39.5809384"],["-106.2480251","39.5814584"],["-106.2477901","39.5817166"],["-106.2475434","39.5819969"],["-106.2473218","39.5823041"],["-106.2471746","39.5825414"],["-106.2470433","39.5827822"],["-106.2469522","39.5829944"],["-106.2468711","39.5832263"],["-106.2464205","39.5846825"],["-106.2463052","39.5850116"],["-106.2460145","39.5857869"],["-106.2457488","39.5864407"],["-106.2452117","39.587718"],["-106.245008","39.5882393"],["-106.2449158","39.5885368"],["-106.2448484","39.5888194"],["-106.2448116","39.5890543"],["-106.2447942","39.5892883"],["-106.2448051","39.5895294"],["-106.2448328","39.5897636"],["-106.2448811","39.5899657"],["-106.2449439","39.5902042"],["-106.2450185","39.5904156"],["-106.2451228","39.590632"],["-106.2452148","39.5908035"],["-106.2452929","39.5909414"],["-106.245352","39.5910362"],["-106.2455872","39.5913461"],["-106.2457327","39.5915099"],["-106.2458761","39.5916545"],["-106.2460463","39.5918066"],["-106.2462037","39.5919393"],["-106.2463565","39.5920612"],["-106.2466713","39.5922835"],["-106.2472395","39.5926454"],["-106.2484917","39.5933763"],["-106.2490133","39.5936573"],["-106.2499795","39.5941411"],["-106.250365","39.5943177"],["-106.2507744","39.5944959"],["-106.2511293","39.5946258"],["-106.2514335","39.5947255"],["-106.2517096","39.5948032"],["-106.2524671","39.5949587"],["-106.2526927","39.594997"],["-106.2529709","39.5950395"],["-106.2536212","39.5950811"],["-106.2539565","39.5950922"],["-106.2608246","39.5948667"],["-106.2613326","39.5948607"],["-106.261945","39.5948913"],["-106.262271","39.5949209"],["-106.2625863","39.5949619"],["-106.2629332","39.5950241"],["-106.2632745","39.5950994"],["-106.2636351","39.5951982"],["-106.2639811","39.5953113"],["-106.2643185","39.5954322"],["-106.2646692","39.5955689"],["-106.2654232","39.5958918"],["-106.2685973","39.597342"],["-106.2689032","39.597507"],["-106.2695434","39.5978795"],["-106.2699416","39.5981208"],["-106.2701126","39.5982448"],["-106.2703146","39.5984059"],["-106.2707544","39.5988247"],["-106.2712653","39.5993526"],["-106.2718734","39.6000898"],["-106.2727343","39.6012069"],["-106.2736755","39.602505"],["-106.2743036","39.6034285"],["-106.274832","39.6043784"],["-106.2763583","39.6075723"],["-106.2766692","39.6082591"],["-106.276912","39.6088542"],["-106.2771213","39.6094348"],["-106.2774619","39.6106063"],["-106.2778544","39.6118351"],["-106.279091","39.614653"],["-106.2793087","39.6152211"],["-106.2794475","39.6158261"],["-106.2794897","39.6162353"],["-106.2794688","39.6167683"],["-106.2794106","39.617326"],["-106.2793127","39.617861"],["-106.2788428","39.6200086"],["-106.278634","39.6209484"],["-106.2782582","39.6225644"],["-106.2782081","39.6227373"],["-106.2780356","39.6233682"],["-106.2779605","39.6236316"],["-106.2776429","39.6248968"],["-106.2776014","39.625137"],["-106.2775508","39.6255173"],["-106.277539","39.6256524"],["-106.2775229","39.6259168"],["-106.277525","39.6260282"],["-106.2775413","39.6261449"],["-106.2775672","39.6262783"],["-106.277604","39.6264256"],["-106.2776475","39.6265766"],["-106.277706","39.6267477"],["-106.2777715","39.6269013"],["-106.2778415","39.6270529"],["-106.2779156","39.6271953"],["-106.2780023","39.6273543"],["-106.2780928","39.6274974"],["-106.2781834","39.6276313"],["-106.2782805","39.6277628"],["-106.2783721","39.6278829"],["-106.2784951","39.6280289"],["-106.2786365","39.6281814"],["-106.278787","39.6283343"],["-106.278961","39.628497"],["-106.2791269","39.6286365"],["-106.2792906","39.6287645"],["-106.2794535","39.6288793"],["-106.2796226","39.6289938"],["-106.2797894","39.6290998"],["-106.2799691","39.6292078"],["-106.280145","39.6293039"],["-106.2803294","39.6293955"],["-106.2805134","39.6294779"],["-106.2807202","39.6295629"],["-106.2809066","39.6296329"],["-106.2811608","39.6297213"],["-106.2814494","39.6298116"],["-106.2856719","39.6310253"],["-106.2863406","39.6312389"],["-106.2865957","39.6313332"],["-106.2868571","39.6314386"],["-106.2871091","39.6315502"],["-106.2875456","39.6317649"],["-106.2877971","39.6319102"],["-106.2880359","39.6320576"],["-106.288319","39.6322395"],["-106.2908485","39.6340305"],["-106.2937262","39.6360454"],["-106.2939204","39.6361912"],["-106.2941382","39.636364"],["-106.2943227","39.6365189"],["-106.2944919","39.6366675"],["-106.2956088","39.6377146"],["-106.295917","39.637985"],["-106.2962544","39.6382567"],["-106.2964254","39.6383839"],["-106.2967932","39.6386407"],["-106.2972648","39.6389254"],["-106.2974873","39.6390467"],["-106.2977098","39.6391596"],["-106.2991991","39.6398314"],["-106.2994309","39.6399439"],["-106.2998662","39.6401792"],["-106.3001053","39.6403236"],["-106.3003013","39.6404514"],["-106.3005758","39.6406413"],["-106.3009334","39.6409037"],["-106.303046","39.6424297"],["-106.3032301","39.6425521"],["-106.3033843","39.642646"],["-106.3035449","39.6427363"],["-106.3042462","39.6430632"],["-106.3079403","39.6446806"],["-106.3105024","39.6457861"],["-106.311277","39.6461258"],["-106.311763","39.6463257"],["-106.3120203","39.6464254"],["-106.3125409","39.6466076"],["-106.312754","39.6466741"],["-106.313005","39.6467418"],["-106.3132931","39.6468046"],["-106.3136017","39.6468588"],["-106.3139031","39.646903"],["-106.314206","39.6469372"],["-106.3144833","39.6469609"],["-106.3196993","39.6471661"],["-106.3205924","39.6472058"],["-106.3220541","39.6472648"],["-106.3226149","39.6472618"],["-106.3252796","39.6473398"],["-106.3260698","39.6473226"],["-106.3273927","39.6472441"],["-106.3283338","39.6471645"],["-106.3287292","39.6471174"],["-106.3290896","39.6470673"],["-106.3301744","39.6468902"],["-106.3310209","39.6467242"],["-106.3314009","39.6466659"],["-106.3324356","39.6464278"],["-106.3331901","39.6462351"],["-106.3412068","39.6444294"],["-106.3417449","39.6443202"],["-106.3582467","39.64164"],["-106.3587279","39.6415766"],["-106.360178","39.6414413"],["-106.3606435","39.6414131"],["-106.3611335","39.6413955"],["-106.3615943","39.6413846"],["-106.3625123","39.6413965"],["-106.3633159","39.6414305"],["-106.3637063","39.64147"],["-106.3652202","39.6416239"],["-106.3660772","39.6417513"],["-106.3674618","39.6420184"],["-106.3826292","39.6453963"],["-106.3832914","39.6455208"],["-106.3843739","39.6456634"],["-106.3846805","39.6456914"],["-106.385017","39.6457163"],["-106.3857311","39.6457455"],["-106.3860894","39.6457544"],["-106.3864462","39.6457486"],["-106.3872035","39.6457225"],["-106.3875984","39.6456921"],["-106.3882724","39.6456229"],["-106.3888804","39.645534"],["-106.3892192","39.6454754"],["-106.3895955","39.645401"],["-106.3901475","39.6452771"],["-106.3906979","39.6451376"],["-106.3909061","39.6450786"],["-106.3912101","39.6449875"],["-106.3915579","39.6448748"],["-106.3918948","39.644757"],["-106.3923059","39.644602"],["-106.3931559","39.6442448"],["-106.39771","39.6421775"],["-106.3983434","39.641872"],["-106.3986142","39.641736"],["-106.3988786","39.6415918"],["-106.3994978","39.6412328"],["-106.4127168","39.6334775"],["-106.4134418","39.6330315"],["-106.4139384","39.6327003"],["-106.4143292","39.6324292"],["-106.4146761","39.6321837"],["-106.4151217","39.6318378"],["-106.4156256","39.6314353"],["-106.4161395","39.6310157"],["-106.4165196","39.6307224"],["-106.4167846","39.6305184"],["-106.417045","39.6303406"],["-106.4176282","39.6299588"],["-106.4179102","39.6297752"],["-106.4181974","39.6295863"],["-106.4185094","39.6293872"],["-106.4189684","39.6291103"],["-106.4193963","39.6288462"],["-106.4200616","39.6284227"],["-106.4205946","39.6280394"],["-106.4208942","39.6278133"],["-106.4217416","39.6271198"],["-106.4220535","39.6268345"],["-106.4224202","39.6264961"],["-106.424015","39.6250983"],["-106.4242464","39.6248844"],["-106.4244627","39.6246853"],["-106.4247789","39.624378"],["-106.4254112","39.6237034"],["-106.4256868","39.6233804"],["-106.4261967","39.6228107"],["-106.426344","39.6226587"],["-106.4264731","39.6225185"],["-106.4266103","39.6223744"],["-106.4267737","39.6222192"],["-106.4269235","39.6220809"],["-106.4272933","39.6217886"],["-106.4274629","39.6216607"],["-106.4278907","39.6213776"],["-106.4283636","39.6211311"],["-106.4285995","39.621024"],["-106.4288522","39.6209182"],["-106.4291179","39.620813"],["-106.4294553","39.6206935"],["-106.4307557","39.6202565"],["-106.4317102","39.6199084"],["-106.432152","39.619736"],["-106.4328889","39.6194214"],["-106.4348084","39.618425"],["-106.4352837","39.618133"],["-106.4357544","39.6178311"],["-106.4364347","39.6173573"],["-106.4375252","39.6165671"],["-106.4378509","39.616338"],["-106.4380516","39.6162035"],["-106.4382187","39.6160958"],["-106.4383925","39.6159921"],["-106.4385597","39.6159056"],["-106.4387042","39.6158303"],["-106.4390527","39.61568"],["-106.4392188","39.6156161"],["-106.4393983","39.6155584"],["-106.4396046","39.6154999"],["-106.4408722","39.6152349"],["-106.4411303","39.6151791"],["-106.4414414","39.6150865"],["-106.4416222","39.6150302"],["-106.4417845","39.6149764"],["-106.4419278","39.6149201"],["-106.4420612","39.6148569"],["-106.4422047","39.6147842"],["-106.4424952","39.6146213"],["-106.4428351","39.6143905"],["-106.442992","39.6142706"],["-106.4431434","39.6141289"],["-106.4432849","39.6139891"],["-106.4435129","39.613725"],["-106.4437483","39.6134093"],["-106.4450694","39.6115026"],["-106.4456672","39.610677"],["-106.4459455","39.6103175"],["-106.4461868","39.6100093"],["-106.4464499","39.6097061"],["-106.4465848","39.6095474"],["-106.4467266","39.6093969"],["-106.4468704","39.6092659"],["-106.4471751","39.6090281"],["-106.4473408","39.6089186"],["-106.4475331","39.6088133"],["-106.4477903","39.6086927"],["-106.4479996","39.6086118"],["-106.4481777","39.6085601"],["-106.448504","39.6084644"],["-106.4486855","39.6084184"],["-106.448878","39.6083755"],["-106.449334","39.6083198"],["-106.4495187","39.6083006"],["-106.4497351","39.6083018"],["-106.449926","39.6083107"],["-106.4501342","39.6083254"],["-106.4503359","39.608347"],["-106.450525","39.6083774"],["-106.4507167","39.6084171"],["-106.4510047","39.6084914"],["-106.4515388","39.6086316"],["-106.452389","39.6088552"],["-106.4533211","39.6091054"],["-106.4552128","39.6096061"],["-106.4557874","39.6097496"],["-106.4561184","39.6098379"],["-106.4564252","39.6099318"],["-106.4569033","39.6101037"],["-106.4571119","39.610185"],["-106.4573139","39.6102792"],["-106.4575049","39.6103855"],["-106.4576638","39.610485"],["-106.4578137","39.6105862"],["-106.4581084","39.6108354"],["-106.4582357","39.6109523"],["-106.4583717","39.6111081"],["-106.458495","39.6112483"],["-106.4586071","39.611419"],["-106.4587123","39.6115883"],["-106.458828","39.6118127"],["-106.4589253","39.6120528"],["-106.4589987","39.6122907"],["-106.4590307","39.6124617"],["-106.4590555","39.6126195"],["-106.4590674","39.61279"],["-106.4590723","39.6129778"],["-106.4590595","39.6132451"],["-106.4590378","39.6136059"],["-106.459023","39.6139589"],["-106.4590152","39.6142565"],["-106.4590356","39.6144886"],["-106.4590619","39.6146731"],["-106.4590887","39.6148506"],["-106.4591471","39.6150583"],["-106.4592777","39.6153874"],["-106.4593507","39.6155517"],["-106.4594657","39.6157427"],["-106.4596082","39.6159303"],["-106.4597756","39.6161122"],["-106.4601031","39.6164139"],["-106.4602744","39.6165369"],["-106.4604626","39.6166556"],["-106.4606106","39.6167478"],["-106.4607442","39.6168245"],["-106.4610175","39.616969"],["-106.461203","39.6170574"],["-106.4615356","39.6171943"],["-106.4630319","39.6177493"],["-106.4676041","39.6193021"],["-106.4702592","39.6201373"],["-106.471737","39.6204853"],["-106.4750735","39.621073"],["-106.4764676","39.6212171"],["-106.4788383","39.6213816"],["-106.4808791","39.6215714"],["-106.4813732","39.6216421"],["-106.4817283","39.6217136"],["-106.4820187","39.6217913"],["-106.482305","39.6218779"],["-106.4825881","39.6219827"],["-106.4828806","39.6221031"],["-106.4831921","39.6222419"],["-106.4870831","39.6242294"],["-106.4873183","39.6243401"],["-106.4874382","39.6243936"],["-106.4875733","39.6244496"],["-106.4877785","39.6245443"],["-106.4881548","39.6246747"],["-106.4885587","39.6247942"],["-106.489013","39.6249031"],["-106.4900715","39.6250536"],["-106.4911729","39.6251971"],["-106.4918335","39.6253209"],["-106.4922145","39.6254065"],["-106.4925744","39.6255215"],["-106.4931923","39.6257739"],["-106.4934725","39.6259343"],["-106.4937658","39.6261172"],["-106.494052","39.6263203"],["-106.4943156","39.6265119"],["-106.4948083","39.6269815"],["-106.4950244","39.6272268"],["-106.4953846","39.6276547"],["-106.4959906","39.6283293"],["-106.4966651","39.6288898"],["-106.4974074","39.6293153"],["-106.4981934","39.6296412"],["-106.4994233","39.6299994"],["-106.5035188","39.6311287"],["-106.5116419","39.6333712"],["-106.5138642","39.6339905"],["-106.5145404","39.6342081"],["-106.51609","39.6348074"],["-106.5177035","39.6355181"],["-106.5220804","39.6379326"],["-106.5236007","39.638752"],["-106.5246106","39.6392276"],["-106.5261879","39.639791"],["-106.5269049","39.6399829"],["-106.5277752","39.6401974"],["-106.5287816","39.6403888"],["-106.5304315","39.6405726"],["-106.5318942","39.6406713"],["-106.5327124","39.6406894"],["-106.5340965","39.6405972"],["-106.5353244","39.6404433"],["-106.5365301","39.6402287"],["-106.5377754","39.639932"],["-106.5417168","39.6386934"],["-106.5430925","39.6382791"],["-106.5438121","39.6381451"],["-106.5445254","39.6380761"],["-106.5452961","39.638087"],["-106.5459644","39.6381668"],["-106.5465995","39.6382953"],["-106.5471131","39.6384525"],["-106.5477143","39.6386989"],["-106.5491188","39.6394201"],["-106.5533662","39.6416711"],["-106.5541798","39.6420539"],["-106.554804","39.6422904"],["-106.5554491","39.6425016"],["-106.5561158","39.6426828"],["-106.5564111","39.6427537"],["-106.5567695","39.6428304"],["-106.558119","39.6430313"],["-106.5585311","39.6430666"],["-106.5597467","39.6431224"],["-106.5695567","39.6428886"],["-106.5709391","39.6429011"],["-106.5717654","39.642966"],["-106.572451","39.6430799"],["-106.5733543","39.6433043"],["-106.5751433","39.6437454"],["-106.5774639","39.6443203"],["-106.5791102","39.6447659"],["-106.5799442","39.6451131"],["-106.5808088","39.6456758"],["-106.5813741","39.646165"],["-106.5822036","39.6469428"],["-106.583033","39.6476926"],["-106.583945","39.6483072"],["-106.5846672","39.6486299"],["-106.5852857","39.6488867"],["-106.5857736","39.6490446"],["-106.5862096","39.6491751"],["-106.5871997","39.6494436"],["-106.5892755","39.6500276"],["-106.5906348","39.6504151"],["-106.5914744","39.6506496"],["-106.5928231","39.6510254"],["-106.5933829","39.6512033"],["-106.5937414","39.6513284"],["-106.6016377","39.654478"],["-106.6022142","39.6546951"],["-106.6024277","39.6547612"],["-106.6029458","39.6548917"],["-106.60336","39.6549754"],["-106.6038024","39.655042"],["-106.6042426","39.6550846"],["-106.6046841","39.6551089"],["-106.6051192","39.6551057"],["-106.6055089","39.6550919"],["-106.6059815","39.6550477"],["-106.6063798","39.6549888"],["-106.6074576","39.6547786"],["-106.6078684","39.6546959"],["-106.6085482","39.6545554"],["-106.6089916","39.6544898"],["-106.6093994","39.6544492"],["-106.6098436","39.6544249"],["-106.6103088","39.654418"],["-106.6107914","39.6544378"],["-106.6112143","39.6544722"],["-106.6115953","39.6545151"],["-106.612199","39.6546208"],["-106.6198006","39.6563854"],["-106.6204722","39.6565213"],["-106.6209782","39.6566034"],["-106.6214033","39.6566556"],["-106.6218451","39.6566911"],["-106.6222435","39.656708"],["-106.6226701","39.6567126"],["-106.6229838","39.656701"],["-106.6232914","39.656683"],["-106.6235835","39.6566573"],["-106.6240568","39.6565915"],["-106.6261954","39.656238"],["-106.6267004","39.6561559"],["-106.6271664","39.6560944"],["-106.6274464","39.6560689"],["-106.6277929","39.6560468"],["-106.6281053","39.6560411"],["-106.6283583","39.656046"],["-106.6290166","39.6561024"],["-106.6293152","39.6561511"],["-106.6299979","39.6563175"],["-106.6302824","39.6564079"],["-106.6306867","39.6565677"],["-106.6314052","39.6568959"],["-106.634973","39.6586404"],["-106.6357572","39.6590422"],["-106.6362257","39.6592586"],["-106.6371768","39.6597195"],["-106.6376232","39.6599526"],["-106.6380213","39.6601779"],["-106.6383665","39.6603874"],["-106.6387107","39.6606102"],["-106.6390994","39.6608793"],["-106.6394674","39.6611472"],["-106.6398146","39.6614181"],["-106.6401397","39.6616842"],["-106.640475","39.661977"],["-106.6408224","39.6623029"],["-106.6412321","39.6627165"],["-106.6415827","39.6631036"],["-106.6419077","39.6634932"],["-106.6423129","39.6640226"],["-106.6425672","39.6643875"],["-106.6428481","39.6648349"],["-106.6430936","39.6652648"],["-106.6432792","39.6656178"],["-106.6434369","39.6659446"],["-106.6435358","39.6661621"],["-106.6436441","39.6664239"],["-106.6437504","39.6667097"],["-106.6440957","39.6677665"],["-106.6448812","39.6702191"],["-106.6449935","39.6705299"],["-106.6451487","39.6709316"],["-106.6453459","39.6713837"],["-106.6455623","39.6718498"],["-106.6457158","39.6721598"],["-106.6458492","39.6724319"],["-106.6470609","39.6745391"],["-106.6474212","39.6752172"],["-106.6475199","39.6754339"],["-106.6475637","39.6755827"],["-106.6476178","39.6757596"],["-106.6476783","39.6759867"],["-106.6477427","39.6763132"],["-106.6477812","39.6767895"],["-106.6478085","39.677427"],["-106.6478315","39.6780116"],["-106.647854","39.6783274"],["-106.6478998","39.67864"],["-106.6479682","39.6789407"],["-106.6480592","39.6792304"],["-106.648182","39.6795318"],["-106.6483242","39.6798171"],["-106.6484867","39.6800904"],["-106.6486753","39.680359"],["-106.6488752","39.6806059"],["-106.6490878","39.6808357"],["-106.6493363","39.6810677"],["-106.6495944","39.6812773"],["-106.6498727","39.6814756"],["-106.6501723","39.6816635"],["-106.6504878","39.6818384"],["-106.6508261","39.6820012"],["-106.6511895","39.6821544"],["-106.651478","39.6822582"],["-106.6517664","39.6823458"],["-106.6520804","39.682425"],["-106.6525592","39.6825125"],["-106.6558679","39.6829911"],["-106.6569738","39.6831621"],["-106.6574021","39.6832626"],["-106.6578072","39.6833749"],["-106.6581787","39.6834932"],["-106.6584802","39.6836107"],["-106.6587326","39.6837234"],["-106.6589588","39.6838378"],["-106.6591971","39.6839742"],["-106.659416","39.6841135"],["-106.6596169","39.6842542"],["-106.6598184","39.6844128"],["-106.6600103","39.6845782"],["-106.6601899","39.684747"],["-106.6603645","39.6849312"],["-106.6606017","39.685215"],["-106.6607545","39.6854391"],["-106.6609568","39.6857731"],["-106.6623752","39.6885228"],["-106.6631861","39.690084"],["-106.664407","39.6924481"],["-106.6645984","39.6927708"],["-106.6647841","39.6930506"],["-106.6649494","39.6932741"],["-106.6651467","39.6935133"],["-106.6653528","39.6937414"],["-106.6655697","39.6939593"],["-106.6658145","39.6941849"],["-106.6660608","39.6943925"],["-106.6663693","39.6946246"],["-106.6667757","39.6948996"],["-106.6672827","39.6951934"],["-106.6686097","39.6958676"],["-106.6710569","39.6970694"],["-106.6753375","39.6991995"],["-106.6770474","39.6999986"],["-106.6779737","39.7003171"],["-106.6784547","39.7004416"],["-106.6788996","39.7005343"],["-106.6793331","39.7006047"],["-106.6797363","39.700654"],["-106.6802501","39.7006917"],["-106.6818509","39.7007352"],["-106.6846862","39.7008135"],["-106.6852886","39.700864"],["-106.685864","39.7009663"],["-106.6861953","39.7010607"],["-106.6866732","39.7012432"],["-106.6869854","39.7014024"],["-106.6872549","39.7015707"],["-106.6875002","39.7017521"],["-106.6877203","39.7019461"],["-106.6879194","39.7021567"],["-106.6881027","39.7023882"],["-106.6886511","39.7032906"],["-106.6904734","39.7064003"],["-106.6913001","39.707786"],["-106.6915623","39.7081493"],["-106.6918347","39.7084836"],["-106.6921236","39.708804"],["-106.6924488","39.7091283"],["-106.6927817","39.7094268"],["-106.6931339","39.7097122"],["-106.6935175","39.7099952"],["-106.6939187","39.7102639"],["-106.6943432","39.7105173"],["-106.694876","39.710799"],["-106.6954842","39.7110727"],["-106.6960227","39.7112879"],["-106.6965286","39.7114596"],["-106.6970993","39.711621"],["-106.6976674","39.7117586"],["-106.6982813","39.7118757"],["-106.6989129","39.7119646"],["-106.6994827","39.7120197"],["-106.699993","39.7120461"],["-106.700528","39.7120531"],["-106.7013711","39.7120032"],["-106.702424","39.7118675"],["-106.7043108","39.7116091"],["-106.705954","39.7113767"],["-106.7071521","39.7112416"],["-106.7110883","39.7109483"],["-106.7125085","39.7108502"],["-106.7129523","39.7107989"],["-106.713373","39.7107385"],["-106.7137416","39.7106634"],["-106.7141063","39.7105669"],["-106.7146316","39.7104063"],["-106.715099","39.71022"],["-106.7155791","39.7099858"],["-106.7190275","39.7080386"],["-106.7200904","39.7074686"],["-106.7207162","39.7071997"],["-106.7213496","39.7069706"],["-106.7224658","39.706665"],["-106.7258533","39.7058513"],["-106.7265313","39.7056552"],["-106.7269765","39.7054908"],["-106.7275784","39.7052275"],["-106.7279829","39.7050249"],["-106.7285065","39.7047126"],["-106.7290516","39.7043589"],["-106.73404","39.7008407"],["-106.7344436","39.7005256"],["-106.7351099","39.7000779"],["-106.7360722","39.6995105"],["-106.7380911","39.6984858"],["-106.7421316","39.6965096"],["-106.7437955","39.6956393"],["-106.7444765","39.6952097"],["-106.7449761","39.6948535"],["-106.7457834","39.694192"],["-106.7464886","39.6935147"],["-106.7542878","39.6856135"],["-106.754642","39.6852986"],["-106.7551928","39.6848851"],["-106.755586","39.6846314"],["-106.7562503","39.6842699"],["-106.7567322","39.6840539"],["-106.7579119","39.6836135"],["-106.7658407","39.6807167"],["-106.7664086","39.6805483"],["-106.7668247","39.6804481"],["-106.7673631","39.6803465"],["-106.7678458","39.6802817"],["-106.7684344","39.6802321"],["-106.7690089","39.6802134"],["-106.7697827","39.6802496"],["-106.7705827","39.6803357"],["-106.7717318","39.6804857"],["-106.7724786","39.6805756"],["-106.7728834","39.6805976"],["-106.7733638","39.6805998"],["-106.7741102","39.6805401"],["-106.7746073","39.6804602"],["-106.7749712","39.6803776"],["-106.7753961","39.6802538"],["-106.7759283","39.6800615"],["-106.7762815","39.6799055"],["-106.7767839","39.6796313"],["-106.7772102","39.6793483"],["-106.777573","39.6790539"],["-106.778108","39.6785308"],["-106.7788148","39.677813"],["-106.7792513","39.6774194"],["-106.7796307","39.677129"],["-106.7799338","39.6769314"],["-106.7803963","39.6766641"],["-106.7809402","39.676419"],["-106.7815413","39.6761975"],["-106.7819468","39.6760802"],["-106.7834076","39.6757945"],["-106.7964663","39.6735543"],["-106.7983626","39.6732057"],["-106.7994843","39.6729358"],["-106.80023","39.6727277"],["-106.8009351","39.6725019"],["-106.8016235","39.6722583"],["-106.8025278","39.6719019"],["-106.8119969","39.6677841"],["-106.8172734","39.6654975"],["-106.8183851","39.6651181"],["-106.8195877","39.6647234"],["-106.8208509","39.6643011"],["-106.8214638","39.664055"],["-106.8220783","39.6637753"],["-106.8225669","39.6635306"],["-106.8232808","39.6631205"],["-106.8344624","39.6556994"],["-106.8352632","39.6551862"],["-106.8356526","39.6549755"],["-106.8359815","39.6548219"],["-106.8364148","39.6546473"],["-106.8369445","39.6544747"],["-106.8374808","39.6543396"],["-106.8380301","39.6542419"],["-106.8386896","39.6541713"],["-106.8392909","39.6541488"],["-106.840026","39.6541854"],["-106.8406123","39.6542554"],["-106.8419975","39.6545132"],["-106.8432225","39.6547409"],["-106.8443417","39.6549266"],["-106.8448211","39.6549677"],["-106.8454284","39.6549793"],["-106.8458058","39.6549542"],["-106.8462567","39.6549049"],["-106.8466792","39.6548343"],["-106.8470414","39.6547518"],["-106.8476687","39.6545625"],["-106.8490169","39.6540116"],["-106.8509844","39.6531821"],["-106.8520065","39.6527992"],["-106.852742","39.6526161"],["-106.8532168","39.6525323"],["-106.8537877","39.6524697"],["-106.8541471","39.6524491"],["-106.8546543","39.652446"],["-106.8550445","39.6524702"],["-106.8566461","39.6527026"],["-106.8621915","39.6536189"],["-106.8648421","39.6540293"],["-106.8658813","39.6541015"],["-106.8668717","39.6541253"],["-106.8673967","39.6541081"],["-106.8679707","39.6540722"],["-106.8686391","39.6540082"],["-106.8702459","39.6537739"],["-106.8738764","39.6532038"],["-106.8781833","39.6523417"],["-106.8793061","39.6521186"],["-106.87978","39.6520439"],["-106.8801748","39.6519951"],["-106.8806525","39.6519533"],["-106.8811211","39.651931"],["-106.8816499","39.651923"],["-106.8821412","39.6519421"],["-106.882636","39.6519786"],["-106.8830859","39.6520278"],["-106.8839344","39.6521627"],["-106.8876375","39.6528035"],["-106.8880843","39.6528687"],["-106.8884672","39.6529109"],["-106.8888095","39.6529316"],["-106.8892025","39.6529393"],["-106.8895808","39.6529309"],["-106.8900156","39.6529112"],["-106.8904422","39.6528763"],["-106.890847","39.6528304"],["-106.8912393","39.6527743"],["-106.8924451","39.6525314"],["-106.8930468","39.6524121"],["-106.8941938","39.6521805"],["-106.8945325","39.6521254"],["-106.8948371","39.6520877"],["-106.8951381","39.6520628"],["-106.8954628","39.6520486"],["-106.8957738","39.6520515"],["-106.896046","39.6520628"],["-106.8963493","39.6520901"],["-106.8968656","39.6521606"],["-106.8980716","39.6523886"],["-106.8987614","39.6525145"],["-106.9000105","39.6527404"],["-106.9022926","39.6530389"],["-106.903285","39.6531787"],["-106.9039231","39.653292"],["-106.9062207","39.6537966"],["-106.9073502","39.6540395"],["-106.9094087","39.6544942"],["-106.9098417","39.6545687"],["-106.9101753","39.6546098"],["-106.910509","39.6546369"],["-106.9108459","39.6546515"],["-106.9111688","39.6546473"],["-106.9115037","39.6546298"],["-106.9118174","39.6546006"],["-106.9121839","39.6545488"],["-106.9129289","39.6544011"],["-106.9140365","39.6541677"],["-106.9146312","39.6540551"],["-106.9150173","39.6540081"],["-106.9154348","39.6539729"],["-106.9158631","39.6539529"],["-106.9163287","39.6539477"],["-106.9166784","39.6539631"],["-106.9174122","39.6540281"],["-106.9198583","39.6542784"],["-106.9210073","39.6543824"],["-106.9216904","39.6544191"],["-106.9224534","39.6544424"],["-106.9230523","39.6544467"],["-106.9264698","39.6542856"],["-106.9341738","39.6539146"],["-106.9352374","39.6538877"],["-106.9370616","39.653922"],["-106.9382001","39.6539413"],["-106.939854","39.653979"],["-106.9405035","39.6539545"],["-106.9411779","39.6539085"],["-106.9484359","39.653138"],["-106.9495523","39.6530178"],["-106.9503786","39.6529004"],["-106.9523216","39.6526736"],["-106.9562093","39.6522371"],["-106.9568871","39.6521967"],["-106.9574919","39.6521815"],["-106.9581564","39.6522108"],["-106.9587659","39.6522603"],["-106.9593006","39.6523226"],["-106.9597911","39.652404"],["-106.9601578","39.652483"],["-106.9605065","39.6525703"],["-106.9613467","39.6528225"],["-106.9625545","39.6532429"],["-106.9668278","39.6547772"],["-106.9691397","39.6556003"],["-106.9699071","39.6558247"],["-106.9705186","39.6559736"],["-106.9711125","39.6560932"],["-106.971802","39.6562095"],["-106.972493","39.6562952"],["-106.973152","39.6563522"],["-106.9738333","39.6563851"],["-106.9745103","39.6563958"],["-106.9751936","39.6563705"],["-106.975825","39.6563281"],["-106.97647","39.656262"],["-106.9771722","39.6561601"],["-106.9781177","39.6559758"],["-106.9791154","39.6557242"],["-106.9800314","39.6554357"],["-106.9908518","39.6511666"],["-106.9946493","39.6496813"],["-106.995141","39.6495332"],["-106.995671","39.649403"],["-106.9964987","39.6492387"],["-106.9973221","39.6491361"],["-106.9979884","39.6490911"],["-107.0090653","39.6488865"],["-107.010161","39.6488041"],["-107.0112957","39.6486615"],["-107.0121214","39.6485172"],["-107.0128192","39.648365"],["-107.0134963","39.6481973"],["-107.0169679","39.647104"],["-107.0217219","39.645599"],["-107.0238269","39.6449808"],["-107.0246345","39.6448228"],["-107.0253602","39.6447206"],["-107.0262458","39.6446478"],["-107.02711","39.6446171"],["-107.0276954","39.6446341"],["-107.0283106","39.6446704"],["-107.0288306","39.6447216"],["-107.0294025","39.6448053"],["-107.0324934","39.6454262"],["-107.0451871","39.648004"],["-107.0462821","39.6481804"],["-107.0478822","39.648359"],["-107.04949","39.6484603"],["-107.0514375","39.6485795"],["-107.052668","39.6486657"],["-107.0584532","39.6489675"],["-107.0589762","39.6490067"],["-107.0599143","39.6490339"],["-107.0603857","39.6490209"],["-107.0608491","39.6489959"],["-107.0612952","39.648956"],["-107.0617234","39.648909"],["-107.062123","39.6488488"],["-107.0625494","39.648771"],["-107.0628611","39.6487039"],["-107.0631282","39.6486327"],["-107.0634933","39.6485206"],["-107.0663837","39.6475695"],["-107.0697832","39.646575"],["-107.0703084","39.6464563"],["-107.0707841","39.6463711"],["-107.0712836","39.6462974"],["-107.0739866","39.6459708"],["-107.0762928","39.6456956"],["-107.0767424","39.6456221"],["-107.0771605","39.6455363"],["-107.0776233","39.6454171"],["-107.0780853","39.6452757"],["-107.0784035","39.6451656"],["-107.0787145","39.6450436"],["-107.0791171","39.6448641"],["-107.0797206","39.6445533"],["-107.0803607","39.6441711"],["-107.0809335","39.6438079"],["-107.0817761","39.6431819"],["-107.0828801","39.6423474"],["-107.0835645","39.6418905"],["-107.0847998","39.6411591"],["-107.0862524","39.6403486"],["-107.0869013","39.6400342"],["-107.087675","39.6396862"],["-107.0891457","39.6390796"],["-107.0924796","39.6377472"],["-107.0992615","39.6347274"],["-107.0996331","39.6345417"],["-107.1001285","39.6342724"],["-107.1004822","39.6340601"],["-107.1007512","39.6338716"],["-107.1010726","39.6336297"],["-107.1013061","39.6334374"],["-107.1015794","39.6331869"],["-107.1018369","39.6329278"],["-107.1020539","39.6326839"],["-107.1022721","39.6324103"],["-107.1024649","39.6321384"],["-107.1026618","39.6318296"],["-107.1028532","39.6314857"],["-107.1030268","39.6311029"],["-107.1031643","39.6307313"],["-107.1032574","39.6304224"],["-107.1033418","39.6300389"],["-107.1033995","39.6296013"],["-107.1034276","39.6292063"],["-107.1034471","39.6287353"],["-107.1034658","39.6283578"],["-107.1034854","39.6281106"],["-107.1035157","39.627912"],["-107.1035825","39.6277092"],["-107.1036659","39.6275224"],["-107.1037607","39.6273396"],["-107.103892","39.6271454"],["-107.1040895","39.6269114"],["-107.1042326","39.6267697"],["-107.1043991","39.6266282"],["-107.1046688","39.6264244"],["-107.1048869","39.6262738"],["-107.1052062","39.6260973"],["-107.1055005","39.6259818"],["-107.105711","39.6259138"],["-107.1059517","39.6258548"],["-107.1062477","39.6258014"],["-107.1064769","39.6257679"],["-107.1066828","39.6257499"],["-107.1068965","39.6257387"],["-107.1073971","39.6257488"],["-107.1080697","39.6257751"],["-107.1084853","39.6257897"],["-107.1087868","39.6257809"],["-107.1091457","39.6257561"],["-107.1106133","39.6255761"],["-107.1116526","39.6254429"],["-107.1130478","39.6252545"],["-107.1135093","39.6251674"],["-107.1139197","39.6250756"],["-107.1143463","39.6249388"],["-107.114867","39.6247603"],["-107.1152788","39.6246156"],["-107.1156978","39.6244663"],["-107.1160271","39.6243653"],["-107.1163479","39.6242854"],["-107.1166793","39.6242367"],["-107.1170006","39.6242156"],["-107.1172943","39.6242286"],["-107.1176134","39.6242669"],["-107.1178462","39.6243218"],["-107.1181844","39.6244235"],["-107.1190391","39.6247571"],["-107.1194088","39.624885"],["-107.1196779","39.6249553"],["-107.1199071","39.6249938"],["-107.1201533","39.6250154"],["-107.1204778","39.6250292"],["-107.1209097","39.6249933"],["-107.1212057","39.6249441"],["-107.121462","39.624867"],["-107.1217429","39.624772"],["-107.1219692","39.6246605"],["-107.122195","39.6245296"],["-107.1223659","39.624413"],["-107.1225408","39.6242784"],["-107.1226833","39.6241328"],["-107.1228292","39.6239552"],["-107.1230331","39.6236341"],["-107.123449","39.622909"],["-107.123657","39.6226023"],["-107.1238901","39.6223328"],["-107.1241565","39.6220442"],["-107.1244054","39.6217879"],["-107.1246297","39.6215447"],["-107.1248531","39.6212867"],["-107.1251294","39.6209292"],["-107.1252908","39.6206554"],["-107.1256072","39.6199703"],["-107.1257874","39.6196086"],["-107.1259842","39.6193615"],["-107.1262003","39.6191432"],["-107.126439","39.6189652"],["-107.1266464","39.6188408"],["-107.1268678","39.6187279"],["-107.1270886","39.6186357"],["-107.1273447","39.6185521"],["-107.1277036","39.6184716"],["-107.1281186","39.618384"],["-107.1286347","39.6182682"],["-107.1291213","39.6181518"],["-107.1295116","39.6180366"],["-107.1297763","39.617929"],["-107.1300844","39.6178025"],["-107.1305515","39.6175547"],["-107.1308415","39.6173765"],["-107.1318938","39.6166937"],["-107.1323509","39.616447"],["-107.1326735","39.6163008"],["-107.133067","39.6161436"],["-107.1335063","39.6160009"],["-107.1339023","39.6158993"],["-107.1343901","39.6158019"],["-107.1348747","39.6157355"],["-107.1353121","39.61569"],["-107.1358917","39.6156717"],["-107.1368226","39.6156601"],["-107.137347","39.615641"],["-107.1377277","39.6155926"],["-107.1380508","39.6155366"],["-107.1383575","39.6154629"],["-107.1385949","39.6153886"],["-107.1388045","39.615299"],["-107.1390881","39.6151557"],["-107.1394728","39.6149467"],["-107.1399868","39.6146516"],["-107.1405298","39.6143238"],["-107.1413691","39.6137841"],["-107.1417002","39.6135798"],["-107.1422887","39.6131726"],["-107.1430397","39.6126105"],["-107.1445452","39.6114317"],["-107.1450524","39.6110983"],["-107.1453154","39.6109567"],["-107.1456411","39.6107956"],["-107.1459291","39.6106733"],["-107.1461992","39.6105701"],["-107.1466118","39.6104375"],["-107.1471999","39.6102644"],["-107.1476418","39.6101697"],["-107.1481501","39.6100797"],["-107.1487943","39.6099654"],["-107.1495795","39.6098358"],["-107.1505003","39.6096732"],["-107.15185","39.6094081"],["-107.1527068","39.6091448"],["-107.1538379","39.6087593"],["-107.1543033","39.6085837"],["-107.1546887","39.6083927"],["-107.1548726","39.608279"],["-107.1550172","39.6081684"],["-107.1551898","39.608007"],["-107.155393","39.6077962"],["-107.155565","39.6075351"],["-107.1557043","39.6072446"],["-107.1557846","39.6069677"],["-107.1558513","39.6066496"],["-107.1559158","39.6061893"],["-107.1560517","39.6055654"],["-107.1561487","39.6053137"],["-107.1562434","39.6051052"],["-107.1563484","39.6049459"],["-107.1564785","39.6047822"],["-107.1566223","39.6046275"],["-107.1568991","39.6043881"],["-107.1570876","39.6042533"],["-107.1573491","39.6040972"],["-107.1577857","39.6038909"],["-107.1583796","39.6036362"],["-107.1592571","39.603292"],["-107.1630016","39.6021537"],["-107.1637088","39.6020095"],["-107.1656308","39.6016741"],["-107.1673778","39.6013093"],["-107.1687833","39.6009709"],["-107.1699898","39.6006579"],["-107.1705464","39.6004897"],["-107.1709901","39.600282"],["-107.1712959","39.6001023"],["-107.1715127","39.5999538"],["-107.1717629","39.599737"],["-107.1725649","39.5990335"],["-107.1732818","39.5983953"],["-107.1739648","39.597789"],["-107.1741632","39.5976245"],["-107.1744978","39.5973189"],["-107.1750178","39.5967299"],["-107.1757848","39.5958025"],["-107.176087","39.5955161"],["-107.1764231","39.5952067"],["-107.1767846","39.5948827"],["-107.1771193","39.5945635"],["-107.1781885","39.5933647"],["-107.1787627","39.5927154"],["-107.1790952","39.5923482"],["-107.1794889","39.5919518"],["-107.1797264","39.5917584"],["-107.1799676","39.5915842"],["-107.1803339","39.5913646"],["-107.1806944","39.5911671"],["-107.1811663","39.5909351"],["-107.1816892","39.5907362"],["-107.1821827","39.5905535"],["-107.1827262","39.5903605"],["-107.1833587","39.5901573"],["-107.1848176","39.5895593"],["-107.1875592","39.5883499"],["-107.1886519","39.5876421"],["-107.1896121","39.5871358"],["-107.190546","39.5868572"],["-107.191416","39.5866956"],["-107.1922382","39.5866802"],["-107.1931343","39.5868121"],["-107.1938057","39.5868641"],["-107.1945406","39.586905"],["-107.1948492","39.5869179"],["-107.1949939","39.5869157"],["-107.1951162","39.586912"],["-107.1952709","39.5869024"],["-107.1954112","39.5868904"],["-107.1955481","39.586874"],["-107.1956885","39.5868541"],["-107.1958273","39.5868281"],["-107.1959704","39.5867957"],["-107.1960955","39.5867641"],["-107.1962478","39.5867184"],["-107.1963667","39.5866801"],["-107.196476","39.5866394"],["-107.19656","39.5866075"],["-107.1966341","39.5865765"],["-107.1967012","39.5865464"],["-107.1968086","39.5864953"],["-107.1970511","39.5863654"],["-107.1971633","39.5862993"],["-107.1972698","39.5862466"],["-107.1973812","39.5861871"],["-107.1978029","39.585872"],["-107.1979578","39.5857367"],["-107.1980899","39.585568"],["-107.1982348","39.5852887"],["-107.1983507","39.5850052"],["-107.1984546","39.5845988"],["-107.1985893","39.584155"],["-107.1986999","39.5838441"],["-107.1988318","39.5835664"],["-107.1990067","39.5832919"],["-107.1992181","39.5830415"],["-107.1994597","39.5828522"],["-107.1997178","39.5826711"],["-107.2000849","39.5824836"],["-107.2007835","39.5822118"],["-107.2016041","39.5819073"],["-107.2020487","39.581715"],["-107.2023651","39.5815476"],["-107.2026659","39.5813645"],["-107.2029856","39.5811397"],["-107.2032873","39.5809121"],["-107.2035712","39.5806189"],["-107.2038237","39.5803467"],["-107.2040398","39.5800724"],["-107.2043533","39.579555"],["-107.204539","39.5792417"],["-107.2047603","39.5789077"],["-107.2050544","39.5785972"],["-107.2053114","39.5783845"],["-107.2057105","39.5781418"],["-107.2077472","39.5770069"],["-107.2083411","39.576757"],["-107.2085787","39.5766771"],["-107.2091591","39.5765475"],["-107.2094917","39.5765164"],["-107.209858","39.576505"],["-107.2103476","39.5765232"],["-107.2151409","39.5768688"],["-107.215528","39.5769185"],["-107.2158871","39.5769793"],["-107.2162633","39.577052"],["-107.2165893","39.5771244"],["-107.2173617","39.5773092"],["-107.2176338","39.5773643"],["-107.2178599","39.5774012"],["-107.2182916","39.5774413"],["-107.2186782","39.577427"],["-107.2190434","39.5773866"],["-107.2194852","39.5773209"],["-107.2205061","39.5771539"],["-107.2209971","39.5770664"],["-107.2214761","39.5769417"],["-107.2218339","39.5768182"],["-107.222132","39.5766802"],["-107.222369","39.5765354"],["-107.2226007","39.5763861"],["-107.2228106","39.5762124"],["-107.22297","39.5760713"],["-107.2231218","39.5758999"],["-107.2233905","39.5755424"],["-107.2234929","39.5753548"],["-107.22355","39.5752175"],["-107.223605","39.5750321"],["-107.2236606","39.5748016"],["-107.2237172","39.5744835"],["-107.223762","39.5736398"],["-107.2237798","39.5732438"],["-107.2237944","39.5729498"],["-107.223833","39.5726864"],["-107.2239208","39.5723569"],["-107.2240095","39.5720772"],["-107.2241451","39.5717823"],["-107.2243176","39.5714491"],["-107.224484","39.5712169"],["-107.2246942","39.5709933"],["-107.2249744","39.5707704"],["-107.2252763","39.5705733"],["-107.2260533","39.5702356"],["-107.2279113","39.5694607"],["-107.2284237","39.5692129"],["-107.228677","39.5690629"],["-107.2290239","39.5688257"],["-107.2305802","39.5676582"],["-107.2309602","39.567414"],["-107.2312454","39.5672762"],["-107.2315326","39.5671574"],["-107.2334034","39.5665421"],["-107.2340345","39.5662987"],["-107.2344793","39.5660676"],["-107.2350367","39.5657229"],["-107.2363375","39.5647979"],["-107.2366281","39.5645588"],["-107.2368492","39.5643563"],["-107.2370672","39.5641375"],["-107.2375121","39.5636691"],["-107.2377252","39.5633932"],["-107.2379675","39.5630725"],["-107.2388692","39.5616585"],["-107.2391779","39.5611769"],["-107.2395215","39.5606863"],["-107.2396752","39.5605222"],["-107.2398947","39.5603212"],["-107.2403615","39.5599802"],["-107.2408408","39.5596377"],["-107.2412825","39.5593128"],["-107.2416207","39.5589861"],["-107.2421762","39.5584088"],["-107.2425408","39.5580882"],["-107.2429235","39.5578503"],["-107.2433606","39.5576701"],["-107.2437593","39.5575443"],["-107.2440072","39.5574951"],["-107.244258","39.5574661"],["-107.2445568","39.5574531"],["-107.2447975","39.5574659"],["-107.2450829","39.5574909"],["-107.2453572","39.5575392"],["-107.2456584","39.5576168"],["-107.2459661","39.5577249"],["-107.2462328","39.5578464"],["-107.2464278","39.557951"],["-107.2466414","39.5580855"],["-107.2468706","39.5582521"],["-107.2471127","39.5584745"],["-107.2473553","39.5587337"],["-107.2479031","39.5593871"],["-107.2482987","39.5598432"],["-107.2485502","39.5600874"],["-107.2487616","39.5602696"],["-107.2489438","39.5604085"],["-107.2491697","39.5605506"],["-107.2493886","39.5606792"],["-107.2497898","39.5608656"],["-107.2501739","39.561004"],["-107.2505494","39.5611105"],["-107.2508845","39.5611802"],["-107.2512535","39.5612337"],["-107.2542842","39.5615277"],["-107.2546301","39.5615741"],["-107.2551552","39.5616712"],["-107.2559024","39.5618354"],["-107.2567076","39.5620397"],["-107.2574811","39.5622588"],["-107.2578286","39.5623691"],["-107.2582133","39.5624953"],["-107.2588384","39.5627044"],["-107.2594423","39.5628469"],["-107.260038","39.5629188"],["-107.26131","39.5629929"],["-107.2616503","39.562992"],["-107.2620405","39.5629921"],["-107.26316","39.5629637"],["-107.2636177","39.5629716"],["-107.264133","39.5630035"],["-107.2659371","39.5631973"],["-107.2662579","39.5632662"],["-107.2664816","39.5633326"],["-107.2667012","39.5634165"],["-107.2668864","39.5634962"],["-107.2670353","39.5635757"],["-107.2671909","39.563672"],["-107.2673545","39.5637947"],["-107.2674833","39.5638997"],["-107.2677015","39.5641166"],["-107.2679","39.5643866"],["-107.2683483","39.5650064"],["-107.2687251","39.5655136"],["-107.2689403","39.5657793"],["-107.2690725","39.565905"],["-107.2692511","39.5660498"],["-107.2694498","39.5661999"],["-107.2696783","39.5663491"],["-107.269908","39.5664708"],["-107.2701915","39.5666058"],["-107.2704692","39.5667016"],["-107.270741","39.5667778"],["-107.2709938","39.5668364"],["-107.2712782","39.5668821"],["-107.2716361","39.5669132"],["-107.2719601","39.5669277"],["-107.2722932","39.566912"],["-107.2726886","39.5668554"],["-107.2730538","39.5667887"],["-107.2734222","39.5666782"],["-107.2742348","39.5663605"],["-107.2750102","39.5660057"],["-107.2753122","39.5658579"],["-107.2755347","39.5657299"],["-107.2757137","39.5655987"],["-107.2759045","39.5654515"],["-107.2760805","39.5652904"],["-107.2761875","39.5651655"],["-107.2763255","39.5649824"],["-107.2765312","39.5646702"],["-107.2766817","39.5644225"],["-107.2768411","39.5641596"],["-107.2770354","39.5638236"],["-107.277193","39.5635354"],["-107.2773479","39.5632817"],["-107.2775137","39.5630003"],["-107.2777484","39.562668"],["-107.2781014","39.5622609"],["-107.2784365","39.5618905"],["-107.2789993","39.5613141"],["-107.2792494","39.5611028"],["-107.279497","39.560925"],["-107.2797844","39.5607493"],["-107.2801135","39.5605879"],["-107.2803827","39.5604807"],["-107.2806792","39.5603914"],["-107.2809431","39.5603288"],["-107.2811805","39.5602852"],["-107.2814151","39.5602589"],["-107.2816425","39.5602382"],["-107.2818555","39.5602288"],["-107.2821338","39.5602391"],["-107.282452","39.5602621"],["-107.28274","39.5603028"],["-107.2830347","39.5603652"],["-107.283393","39.5604741"],["-107.2861512","39.5614149"],["-107.2866272","39.5615534"],["-107.286947","39.5616176"],["-107.2872676","39.5616593"],["-107.2875404","39.5616789"],["-107.287779","39.5616813"],["-107.2880443","39.5616636"],["-107.2883374","39.5616259"],["-107.2885953","39.5615816"],["-107.2888881","39.5615116"],["-107.2891714","39.56143"],["-107.2894099","39.5613671"],["-107.2899251","39.56121"],["-107.2903031","39.5611102"],["-107.2905833","39.5610531"],["-107.2908563","39.5610084"],["-107.2911959","39.5609611"],["-107.2917259","39.5609532"],["-107.2919706","39.5609588"],["-107.292307","39.560993"],["-107.2926397","39.5610361"],["-107.2936859","39.5612267"],["-107.2943937","39.5613634"],["-107.2947099","39.5614212"],["-107.2950828","39.5614887"],["-107.2974925","39.5619218"],["-107.2979465","39.5619963"],["-107.2983745","39.5620623"],["-107.299519","39.5621926"],["-107.3000261","39.5622275"],["-107.3005346","39.5622443"],["-107.3009848","39.5622498"],["-107.3013994","39.5622426"],["-107.3018096","39.5622256"],["-107.302434","39.5621783"],["-107.3036746","39.5620283"],["-107.3049644","39.5618401"],["-107.3096258","39.5610957"],["-107.3098848","39.5610436"],["-107.3102634","39.5609563"],["-107.3106499","39.5608264"],["-107.3110955","39.5606271"],["-107.3114946","39.5604102"],["-107.3118511","39.5601709"],["-107.3122023","39.5598889"],["-107.312749","39.5593975"],["-107.3132382","39.5588945"],["-107.313628","39.5584332"],["-107.3139767","39.5579463"],["-107.3142636","39.5574739"],["-107.3157838","39.5547325"],["-107.3163297","39.553805"],["-107.3167","39.5532896"],["-107.3170801","39.552832"],["-107.3175476","39.5523528"],["-107.3182297","39.5517457"],["-107.3186764","39.5513966"],["-107.3191192","39.5510947"],["-107.3198307","39.5506674"],["-107.3220084","39.5494887"],["-107.3227961","39.5490812"],["-107.3232613","39.5489146"],["-107.3236732","39.548825"],["-107.3239309","39.5487987"],["-107.3241915","39.5487859"],["-107.3247128","39.548822"],["-107.3260673","39.5490128"],["-107.3267502","39.5491424"],["-107.3274152","39.5493177"],["-107.3278757","39.5494742"],["-107.3281907","39.5496086"],["-107.3284948","39.5497603"],["-107.3288507","39.5499597"],["-107.3290804","39.5501043"],["-107.3293507","39.5502991"],["-107.3297764","39.5506401"],["-107.3302605","39.5510495"],["-107.3307188","39.5514579"],["-107.3341546","39.5543212"],["-107.3349277","39.5549956"],["-107.3354068","39.5554564"],["-107.3358589","39.5559353"],["-107.3363975","39.5565558"],["-107.3368725","39.557119"],["-107.3371769","39.5574751"],["-107.3374242","39.5577285"],["-107.3377076","39.5579901"],["-107.3380461","39.5582573"],["-107.338316","39.5584448"],["-107.338638","39.5586433"],["-107.3390073","39.5588483"],["-107.3393155","39.5589978"],["-107.3397021","39.5591625"],["-107.3401074","39.5593138"],["-107.3405905","39.5594642"],["-107.3411552","39.5596026"],["-107.3417034","39.5597002"],["-107.3525084","39.5609735"],["-107.3533633","39.5610444"],["-107.3540295","39.5610868"],["-107.3549616","39.5611174"],["-107.3558712","39.5611341"],["-107.35652","39.5611293"],["-107.3576217","39.5610927"],["-107.3605552","39.5608648"],["-107.3610763","39.5608478"],["-107.3615459","39.5608668"],["-107.3620149","39.560913"],["-107.3631753","39.5610897"],["-107.3677925","39.5618357"],["-107.3681727","39.5618831"],["-107.3685555","39.5619172"],["-107.3688864","39.5619349"],["-107.3693203","39.5619259"],["-107.3697657","39.5618966"],["-107.370328","39.5618184"],["-107.3719425","39.5614452"],["-107.3736199","39.5610503"],["-107.3749044","39.5607527"],["-107.3752596","39.5607033"],["-107.3756482","39.5606706"],["-107.3759711","39.5606588"],["-107.376301","39.5606682"],["-107.3767132","39.5607001"],["-107.3789941","39.5610058"],["-107.3802013","39.561154"],["-107.3808595","39.5612084"],["-107.3815685","39.5612464"],["-107.3822585","39.5612695"],["-107.3831891","39.5612523"],["-107.3840773","39.5612077"],["-107.3848302","39.5611453"],["-107.3856162","39.5610574"],["-107.3863272","39.5609474"],["-107.3870026","39.5608288"],["-107.3876465","39.5606902"],["-107.3883904","39.5605099"],["-107.3891302","39.5603019"],["-107.3898457","39.5600764"],["-107.3907548","39.5597442"],["-107.3917669","39.5593252"],["-107.3928385","39.5588701"],["-107.39365","39.55854"],["-107.3944843","39.558259"],["-107.3956103","39.5579397"],["-107.3965707","39.5576795"],["-107.3969722","39.557598"],["-107.3973009","39.5575597"],["-107.3977215","39.5575358"],["-107.398118","39.5575491"],["-107.3984366","39.5575754"],["-107.398772","39.5576298"],["-107.3991183","39.55771"],["-107.3994182","39.5578047"],["-107.3997493","39.5579322"],["-107.4012815","39.5586682"],["-107.4046226","39.5603027"],["-107.4050516","39.5605438"],["-107.4054139","39.5607778"],["-107.4057369","39.5610236"],["-107.4060862","39.5613273"],["-107.407493","39.5626539"],["-107.4081799","39.5632056"],["-107.4086716","39.5635485"],["-107.4091749","39.5638366"],["-107.4096029","39.5640463"],["-107.4100938","39.5642458"],["-107.4105482","39.5644085"],["-107.410974","39.5645362"],["-107.4114741","39.5646608"],["-107.4156915","39.5655218"],["-107.416914","39.5657195"],["-107.4176667","39.5658127"],["-107.4183693","39.5658737"],["-107.4204802","39.5659809"],["-107.4215486","39.566037"],["-107.4219925","39.5660863"],["-107.422326","39.5661341"],["-107.4225973","39.5661864"],["-107.4229079","39.5662571"],["-107.4232564","39.5663522"],["-107.4235336","39.5664399"],["-107.4238303","39.5665503"],["-107.4241875","39.5667001"],["-107.4246898","39.5669474"],["-107.4251274","39.5672117"],["-107.4255501","39.5675064"],["-107.4259043","39.5678075"],["-107.426225","39.5681182"],["-107.4265429","39.568508"],["-107.4272206","39.5694431"],["-107.4275313","39.5698465"],["-107.4277692","39.5700924"],["-107.428044","39.5703347"],["-107.4282468","39.5704895"],["-107.4284292","39.5706134"],["-107.4287499","39.5707959"],["-107.434147","39.573274"],["-107.4363541","39.5742689"],["-107.4369646","39.5744929"],["-107.4374839","39.5746598"],["-107.4379677","39.5747884"],["-107.4385454","39.5749184"],["-107.4391424","39.5750217"],["-107.4397127","39.5750933"],["-107.4402259","39.5751376"],["-107.4409688","39.5751721"],["-107.4416955","39.5751584"],["-107.4480608","39.5748948"],["-107.4489981","39.5748367"],["-107.4494229","39.5747877"],["-107.4497406","39.5747375"],["-107.4501635","39.5746535"],["-107.4506072","39.5745539"],["-107.4510225","39.5744403"],["-107.4514551","39.5743062"],["-107.4519294","39.5741303"],["-107.4526042","39.573834"],["-107.4531889","39.5735271"],["-107.4536749","39.5732283"],["-107.4542615","39.5728055"],["-107.4546227","39.5725148"],["-107.4553475","39.5718993"],["-107.4556448","39.5716596"],["-107.4558995","39.571473"],["-107.4561974","39.5712968"],["-107.4565029","39.5711376"],["-107.4568186","39.5710089"],["-107.4571483","39.5709022"],["-107.4574609","39.5708218"],["-107.4577419","39.5707711"],["-107.4580519","39.5707298"],["-107.4584297","39.5707094"],["-107.4588103","39.5707221"],["-107.4592668","39.5707712"],["-107.4596192","39.5708391"],["-107.4599845","39.5709403"],["-107.4605448","39.5711435"],["-107.4639333","39.5724702"],["-107.4646252","39.5727024"],["-107.4652998","39.5729018"],["-107.4659218","39.5730576"],["-107.4667097","39.573226"],["-107.4673561","39.5733459"],["-107.4680564","39.5734458"],["-107.4687821","39.5735207"],["-107.4694612","39.5735794"],["-107.4701622","39.5736068"],["-107.4709064","39.5736184"],["-107.4716282","39.5735933"],["-107.4723748","39.5735466"],["-107.4730559","39.5734835"],["-107.4737654","39.5733893"],["-107.4744579","39.5732735"],["-107.4783269","39.5725031"],["-107.4800537","39.5721344"],["-107.4807147","39.5719523"],["-107.4813404","39.5717377"],["-107.4818807","39.5715212"],["-107.4824304","39.5712699"],["-107.4829443","39.5709927"],["-107.4835866","39.5705967"],["-107.4875254","39.5679481"],["-107.488461","39.5673319"],["-107.4887922","39.5671446"],["-107.4891401","39.5669648"],["-107.4896915","39.5667179"],["-107.4902816","39.5665004"],["-107.4907723","39.5663484"],["-107.4912728","39.5662177"],["-107.4917621","39.5661133"],["-107.4922866","39.5660295"],["-107.4927868","39.5659702"],["-107.493278","39.5659315"],["-107.4937173","39.5659154"],["-107.494803","39.5659252"],["-107.5080674","39.5662464"],["-107.5091722","39.5662569"],["-107.5095879","39.5662383"],["-107.5101696","39.5661912"],["-107.5132162","39.5658591"],["-107.5142002","39.5657728"],["-107.5148134","39.565756"],["-107.5152269","39.5657682"],["-107.5155608","39.5657873"],["-107.5159136","39.5658219"],["-107.5164138","39.5658889"],["-107.5169993","39.5660004"],["-107.5175041","39.5661228"],["-107.5179348","39.5662495"],["-107.5183552","39.5663942"],["-107.5187609","39.5665551"],["-107.5191698","39.5667386"],["-107.5199227","39.5671394"],["-107.5233256","39.5690276"],["-107.5239309","39.5693351"],["-107.5243841","39.5695438"],["-107.5248419","39.5697278"],["-107.5253491","39.5699061"],["-107.5258556","39.5700641"],["-107.5263635","39.5702002"],["-107.5267755","39.5702977"],["-107.5272368","39.5703913"],["-107.5277225","39.5704725"],["-107.5281687","39.5705332"],["-107.5285742","39.5705742"],["-107.5291083","39.5706107"],["-107.5297186","39.5706353"],["-107.5304436","39.5706187"],["-107.5311963","39.5705758"],["-107.5330028","39.5703792"],["-107.5399943","39.5695311"],["-107.54076","39.5694141"],["-107.5414733","39.5692913"],["-107.5421323","39.569155"],["-107.5427632","39.5690055"],["-107.5435539","39.5687951"],["-107.5443156","39.5685649"],["-107.5450506","39.5683198"],["-107.545729","39.5680673"],["-107.5464163","39.5677889"],["-107.5470417","39.5675079"],["-107.5475825","39.5672435"],["-107.548188","39.5669262"],["-107.5487458","39.5666052"],["-107.5493002","39.5662515"],["-107.5497581","39.5659283"],["-107.5502394","39.56555"],["-107.5507515","39.5651036"],["-107.5519544","39.5638875"],["-107.5549468","39.560793"],["-107.5553273","39.5604368"],["-107.5557774","39.5600591"],["-107.5562017","39.5597326"],["-107.5567128","39.5593733"],["-107.5571639","39.5590866"],["-107.5575606","39.5588579"],["-107.5579854","39.5586295"],["-107.558478","39.5583885"],["-107.5590936","39.5581219"],["-107.5598583","39.5578283"],["-107.560537","39.5576015"],["-107.5611166","39.5574385"],["-107.5617134","39.5572847"],["-107.5621351","39.5571906"],["-107.6271064","39.5456544"],["-107.6381974","39.5443065"],["-107.6395834","39.5441962"],["-107.6409474","39.5441257"],["-107.6424271","39.5440787"],["-107.6436973","39.5440911"],["-107.6448174","39.5441171"],["-107.6458745","39.5441618"],["-107.6484041","39.5443584"],["-107.6636501","39.545873"],["-107.6647395","39.5459289"],["-107.6658939","39.545875"],["-107.6671824","39.545677"],["-107.6682498","39.5454262"],["-107.669276","39.5450849"],["-107.6701579","39.5446961"],["-107.6743569","39.5425245"],["-107.6805721","39.539286"],["-107.6822482","39.5383954"],["-107.6855954","39.5366385"],["-107.6873814","39.53573"],["-107.6893764","39.5347106"],["-107.6917918","39.5336646"],["-107.6934481","39.5330763"],["-107.6966505","39.5324127"],["-107.7003103","39.5321579"],["-107.7040144","39.5321115"],["-107.7111713","39.5321808"],["-107.7159543","39.5321335"],["-107.7181023","39.5319109"],["-107.7188948","39.5317511"],["-107.7196444","39.5316264"],["-107.7245471","39.5306919"],["-107.7267444","39.5303603"],["-107.7283629","39.5302151"],["-107.7294581","39.5301972"],["-107.7303903","39.5302209"],["-107.736069","39.5302868"],["-107.7375684","39.5302315"],["-107.7387821","39.5301272"],["-107.7402019","39.529862"],["-107.7508515","39.5259271"],["-107.751937","39.5256611"],["-107.7529419","39.5254528"],["-107.7541376","39.5253184"],["-107.7553745","39.525205"],["-107.7569895","39.5253158"],["-107.765861","39.5263878"],["-107.7678115","39.5264602"],["-107.7691129","39.5263515"],["-107.771032","39.5259772"],["-107.7721089","39.5257055"],["-107.7729995","39.525463"],["-107.7741718","39.5251799"],["-107.7792392","39.523666"],["-107.7811138","39.5231341"],["-107.7882587","39.5210873"],["-107.7892367","39.5208539"],["-107.79109","39.5205274"],["-107.7916401","39.5204534"],["-107.7923051","39.5203834"],["-107.7937536","39.5202898"],["-107.7943696","39.5202736"],["-107.8452958","39.5205472"],["-107.8462077","39.5205212"],["-107.8465488","39.5204995"],["-107.8468739","39.5204655"],["-107.8471838","39.5204259"],["-107.8475453","39.5203711"],["-107.8479071","39.5203013"],["-107.8483243","39.5202048"],["-107.8487306","39.520092"],["-107.849189","39.5199464"],["-107.8842459","39.5074644"],["-107.885131","39.5071953"],["-107.8862232","39.5068898"],["-107.8890209","39.5062297"],["-107.8980205","39.5045279"],["-107.8991172","39.5042817"],["-107.9000761","39.5040493"],["-107.9149856","39.4998455"],["-107.9158248","39.4996369"],["-107.9163903","39.499518"],["-107.9168866","39.4994317"],["-107.9173421","39.4993663"],["-107.9178798","39.4993052"],["-107.9184722","39.4992586"],["-107.9190522","39.499236"],["-107.9196303","39.4992226"],["-107.9200898","39.4992326"],["-107.9205587","39.4992501"],["-107.9211498","39.4992968"],["-107.9217744","39.4993629"],["-107.9224208","39.499459"],["-107.9230825","39.4995833"],["-107.9249783","39.5000375"],["-107.9265359","39.5004149"],["-107.9288529","39.5009818"],["-107.9294557","39.5010981"],["-107.9300316","39.5011902"],["-107.9305866","39.5012612"],["-107.9311103","39.5013077"],["-107.9316321","39.5013425"],["-107.9322896","39.5013558"],["-107.9328614","39.5013378"],["-107.9334397","39.5013016"],["-107.9339469","39.5012593"],["-107.9344024","39.5012056"],["-107.9348909","39.5011249"],["-107.9355274","39.5009991"],["-107.9361806","39.5008427"],["-107.9367138","39.5006949"],["-107.9373344","39.500487"],["-107.9379171","39.5002622"],["-107.9384902","39.5000074"],["-107.9390076","39.4997578"],["-107.9394683","39.4995073"],["-107.9399693","39.4992058"],["-107.9408948","39.4985956"],["-107.9508209","39.4919068"],["-107.9519532","39.4912092"],["-107.9551829","39.4894128"],["-107.9708441","39.4808218"],["-107.9720031","39.480186"],["-107.9729219","39.4797188"],["-107.9736108","39.4794147"],["-107.9741291","39.4792135"],["-107.9745869","39.4790533"],["-107.9751176","39.4788908"],["-107.9757489","39.4787205"],["-107.9763378","39.4785892"],["-107.97726","39.4784287"],["-107.9778241","39.4783548"],["-108.0166139","39.4750205"],["-108.0173127","39.4749286"],["-108.0179355","39.4748154"],["-108.0185732","39.4746667"],["-108.0192099","39.4744849"],["-108.0197231","39.474307"],["-108.0202386","39.4741009"],["-108.0208989","39.4738031"],["-108.0388029","39.4650314"],["-108.0395638","39.4646521"],["-108.0402563","39.4642921"],["-108.0407038","39.4640381"],["-108.0412754","39.4636854"],["-108.0419141","39.4632648"],["-108.0425385","39.4628154"],["-108.0429989","39.4624541"],["-108.0434557","39.46207"],["-108.0439358","39.4616368"],["-108.0443889","39.4612096"],["-108.0447227","39.460871"],["-108.0451849","39.4603641"],["-108.0458489","39.4595635"],["-108.0463457","39.4588909"],["-108.0466883","39.4583805"],["-108.0471782","39.4575457"],["-108.0482646","39.4556398"],["-108.0484651","39.4553157"],["-108.0488043","39.4548224"],["-108.0490976","39.4544387"],["-108.0493865","39.454093"],["-108.049684","39.4537678"],["-108.0500126","39.4534384"],["-108.0576523","39.4463921"],["-108.0580519","39.4460437"],["-108.0584218","39.4457113"],["-108.0587411","39.4453929"],["-108.0609809","39.4433076"],["-108.0695211","39.4354176"],["-108.0704968","39.4344736"],["-108.0711875","39.4337607"],["-108.0719048","39.4329662"],["-108.0734628","39.4312186"],["-108.0742141","39.4304525"],["-108.0748686","39.429805"],["-108.0763218","39.4284865"],["-108.0770757","39.4278546"],["-108.0779287","39.4271852"],["-108.0790288","39.4263776"],["-108.0799848","39.4257126"],["-108.0870652","39.4210486"],["-108.0881712","39.4202801"],["-108.0891976","39.4194601"],["-108.0902513","39.4185216"],["-108.0910438","39.4177409"],["-108.0916329","39.4171086"],["-108.0920722","39.4166014"],["-108.092808","39.4156327"],["-108.094698","39.4130438"],["-108.0952897","39.4122793"],["-108.0959499","39.4116034"],["-108.0964455","39.4111978"],["-108.0971374","39.4107303"],["-108.0991351","39.4095912"],["-108.1158682","39.4002434"],["-108.1167103","39.3998282"],["-108.1178954","39.3992891"],["-108.1224455","39.397323"],["-108.1236018","39.3967889"],["-108.1241548","39.3964986"],["-108.1246662","39.3961936"],["-108.1251123","39.3958996"],["-108.1256312","39.3955276"],["-108.1261211","39.3951371"],["-108.1271371","39.3942188"],["-108.1286464","39.3928073"],["-108.1293575","39.3921866"],["-108.1297836","39.3918735"],["-108.1302474","39.3915774"],["-108.1307738","39.3912823"],["-108.1312308","39.3910753"],["-108.1341694","39.3900334"],["-108.1420175","39.3873559"],["-108.1483065","39.3851972"],["-108.1493894","39.3847443"],["-108.1502305","39.3843321"],["-108.1511073","39.3838268"],["-108.1520311","39.3832236"],["-108.1530269","39.3824834"],["-108.1537457","39.3819015"],["-108.15454","39.3812613"],["-108.1552197","39.3806709"],["-108.1558077","39.3801443"],["-108.1564364","39.3796235"],["-108.1571049","39.3791178"],["-108.1588505","39.3779511"],["-108.1645503","39.3742501"],["-108.1665946","39.3728897"],["-108.1674195","39.3722934"],["-108.1683327","39.3715113"],["-108.1687044","39.3711262"],["-108.1689902","39.3707784"],["-108.1692291","39.3704329"],["-108.1695377","39.3699176"],["-108.1697004","39.3695234"],["-108.1699208","39.3688201"],["-108.170053","39.368248"],["-108.1701238","39.3677255"],["-108.1701599","39.3671351"],["-108.1703581","39.3588129"],["-108.1704504","39.3576295"],["-108.1705543","39.3571314"],["-108.1707169","39.3566364"],["-108.1708687","39.3562831"],["-108.1710887","39.3558597"],["-108.1713155","39.3554914"],["-108.1715487","39.355185"],["-108.1719346","39.3547486"],["-108.1722784","39.3544112"],["-108.1727623","39.3540044"],["-108.1731366","39.35374"],["-108.173582","39.3534628"],["-108.1742647","39.3531117"],["-108.1751376","39.352758"],["-108.1795647","39.3512475"],["-108.1807908","39.3507982"],["-108.1814783","39.3504868"],["-108.1823381","39.3500458"],["-108.1882359","39.3468045"],["-108.1894508","39.3460775"],["-108.1898793","39.3457606"],["-108.1903369","39.3453633"],["-108.190727","39.3449515"],["-108.1910712","39.3445317"],["-108.1913624","39.3441001"],["-108.1915973","39.3436793"],["-108.191891","39.3430198"],["-108.1946904","39.334686"],["-108.1949179","39.3341527"],["-108.1951597","39.3336736"],["-108.195362","39.3333473"],["-108.1955915","39.333035"],["-108.1959941","39.3325633"],["-108.1963785","39.3321878"],["-108.1968365","39.331804"],["-108.1975999","39.3312469"],["-108.2047273","39.3262173"],["-108.2060224","39.3252632"],["-108.2065975","39.3247991"],["-108.2072504","39.324215"],["-108.2077427","39.3237337"],["-108.2082615","39.3231827"],["-108.2087922","39.3225577"],["-108.2092947","39.3219024"],["-108.2097632","39.3212223"],["-108.2101993","39.3205028"],["-108.2106259","39.3196999"],["-108.2206408","39.2986491"],["-108.2229736","39.2937904"],["-108.2234978","39.292802"],["-108.2241726","39.2916284"],["-108.2246518","39.2908254"],["-108.2253923","39.2896607"],["-108.2260718","39.2887001"],["-108.2268947","39.2875643"],["-108.227775","39.2864328"],["-108.2286509","39.2853615"],["-108.2293041","39.2846407"],["-108.2296648","39.2843103"],["-108.2300675","39.2839889"],["-108.2307672","39.2835333"],["-108.2312183","39.2832734"],["-108.2316022","39.2830888"],["-108.2319972","39.2829286"],["-108.2323863","39.2827845"],["-108.2329006","39.2826283"],["-108.2337667","39.2824108"],["-108.2433303","39.2801738"],["-108.2442413","39.2799109"],["-108.2449112","39.2796581"],["-108.245393","39.2794392"],["-108.2458847","39.279184"],["-108.2463529","39.2788928"],["-108.2468335","39.2785408"],["-108.2473173","39.278129"],["-108.2478223","39.2775992"],["-108.2482611","39.2770346"],["-108.2485092","39.2766194"],["-108.248822","39.2759852"],["-108.2528006","39.2666908"],["-108.2529984","39.2663198"],["-108.2531302","39.2661186"],["-108.2533807","39.2657853"],["-108.2538929","39.2652073"],["-108.2543005","39.2647802"],["-108.2548913","39.2642305"],["-108.258222","39.2612556"],["-108.2585703","39.2609087"],["-108.2588678","39.2605273"],["-108.2590451","39.2602094"],["-108.2591991","39.2598325"],["-108.2593222","39.2592451"],["-108.2596356","39.2563298"],["-108.2596919","39.2556879"],["-108.2597028","39.2552724"],["-108.259675","39.2548952"],["-108.2596181","39.2545527"],["-108.2595291","39.254198"],["-108.2593995","39.2538206"],["-108.2592322","39.2534579"],["-108.2590467","39.2531262"],["-108.2588084","39.2527721"],["-108.2582455","39.2520389"],["-108.2576119","39.2511984"],["-108.2571932","39.2504848"],["-108.2569554","39.2499963"],["-108.2568058","39.2495902"],["-108.2566425","39.2490505"],["-108.2565478","39.2486505"],["-108.2564868","39.2482735"],["-108.2564367","39.2476966"],["-108.2563905","39.2465916"],["-108.2563278","39.2458601"],["-108.2562277","39.2452749"],["-108.2560023","39.2443917"],["-108.255447","39.2424677"],["-108.2552297","39.2416779"],["-108.2551927","39.2413777"],["-108.2551947","39.2409589"],["-108.2552441","39.2406474"],["-108.2553101","39.2404144"],["-108.2553971","39.2401846"],["-108.255558","39.2398724"],["-108.2557603","39.2395741"],["-108.2559667","39.239341"],["-108.2561956","39.2391156"],["-108.2564572","39.2389071"],["-108.2566971","39.238745"],["-108.2569544","39.2385983"],["-108.2572836","39.2384446"],["-108.2577464","39.2382804"],["-108.2581909","39.2381623"],["-108.258562","39.2380937"],["-108.2589105","39.2380509"],["-108.2592334","39.2380252"],["-108.2595476","39.2380108"],["-108.2599397","39.2380173"],["-108.2603758","39.2380404"],["-108.2608229","39.2380834"],["-108.2613276","39.2381518"],["-108.2618318","39.2382358"],["-108.2627157","39.2384199"],["-108.2633572","39.2385543"],["-108.264354","39.2387661"],["-108.2649221","39.2388589"],["-108.2653049","39.2388928"],["-108.2656684","39.2389062"],["-108.2660018","39.2388988"],["-108.2664127","39.2388667"],["-108.2668666","39.2388075"],["-108.2673826","39.2387006"],["-108.2679748","39.2385206"],["-108.2683919","39.2383606"],["-108.2687808","39.2381733"],["-108.2691366","39.2379641"],["-108.2694624","39.2377532"],["-108.2698132","39.2374636"],["-108.2702596","39.2370321"],["-108.2716096","39.2355849"],["-108.2719843","39.2351335"],["-108.2721912","39.2347808"],["-108.272354","39.2344208"],["-108.2724395","39.2341329"],["-108.2724989","39.2338043"],["-108.2725106","39.2335234"],["-108.2724914","39.2332291"],["-108.2724148","39.2328368"],["-108.2722873","39.2324663"],["-108.2721626","39.2322132"],["-108.2719941","39.2319403"],["-108.2717386","39.2316315"],["-108.2714711","39.2313696"],["-108.2711947","39.2311436"],["-108.2708792","39.230932"],["-108.2704566","39.2307056"],["-108.2701058","39.2305608"],["-108.2697515","39.2304402"],["-108.2692485","39.2303028"],["-108.2682064","39.2300993"],["-108.2667205","39.2298348"],["-108.2658277","39.2296323"],["-108.2653269","39.2294517"],["-108.2647331","39.2291812"],["-108.263941","39.2287812"],["-108.2630989","39.2283631"],["-108.2626008","39.228178"],["-108.2617642","39.2279268"],["-108.260497","39.2275742"],["-108.2594267","39.2272714"],["-108.2588685","39.2270575"],["-108.2582817","39.2267221"],["-108.2579516","39.2264741"],["-108.2575657","39.2260891"],["-108.2572797","39.2257216"],["-108.2570928","39.2253863"],["-108.2569272","39.2250319"],["-108.2563986","39.223584"],["-108.2561174","39.2227498"],["-108.2560518","39.2223184"],["-108.2560494","39.2219735"],["-108.2562317","39.2200118"],["-108.2563294","39.2188903"],["-108.2564698","39.2166428"],["-108.2564531","39.2114117"],["-108.2565085","39.210943"],["-108.2566031","39.2106196"],["-108.2567152","39.2103232"],["-108.2569357","39.2099167"],["-108.2572517","39.2094935"],["-108.2576008","39.2091426"],["-108.2579647","39.2088441"],["-108.2583262","39.2086136"],["-108.2586875","39.2084227"],["-108.2591349","39.208229"],["-108.2607833","39.2076433"],["-108.2614012","39.2073948"],["-108.2617209","39.2072324"],["-108.2620019","39.2070609"],["-108.262449","39.2067256"],["-108.2629458","39.2062813"],["-108.2646061","39.2046145"],["-108.2651288","39.2040361"],["-108.2657197","39.2033107"],["-108.2664689","39.2023408"],["-108.2671311","39.2014285"],["-108.267413","39.2008981"],["-108.2675356","39.2006079"],["-108.2676351","39.20032"],["-108.2677176","39.1999981"],["-108.2677961","39.1995996"],["-108.2678839","39.1991009"],["-108.2679706","39.1986134"],["-108.2680628","39.1982144"],["-108.2681693","39.1979091"],["-108.2683013","39.1976343"],["-108.2684337","39.1974132"],["-108.2685911","39.1972028"],["-108.2687273","39.1970458"],["-108.2689207","39.1968479"],["-108.2691613","39.1966466"],["-108.2693283","39.1965188"],["-108.2697634","39.1962765"],["-108.2702746","39.1960529"],["-108.2707841","39.195877"],["-108.2714023","39.1957289"],["-108.2718538","39.1956954"],["-108.2725207","39.1956928"],["-108.2743072","39.1957773"],["-108.2754676","39.1958348"],["-108.2766671","39.1958861"],["-108.2777887","39.195929"],["-108.2781454","39.1959146"],["-108.2785177","39.1958709"],["-108.2789995","39.1957886"],["-108.2793773","39.1956837"],["-108.2797021","39.1955623"],["-108.2799746","39.1954369"],["-108.2802302","39.1952916"],["-108.2804842","39.1951268"],["-108.2807081","39.1949419"],["-108.2809003","39.1947688"],["-108.2810749","39.1945826"],["-108.2813338","39.1942344"],["-108.2815139","39.1939198"],["-108.281642","39.1936363"],["-108.2817486","39.1932935"],["-108.2818111","39.192958"],["-108.2818324","39.1925402"],["-108.2817884","39.1921299"],["-108.2816425","39.1915963"],["-108.2812513","39.1907287"],["-108.2809052","39.1899784"],["-108.2807343","39.1895756"],["-108.2805882","39.1891185"],["-108.2805232","39.1886837"],["-108.2805191","39.1875281"],["-108.2806424","39.1835774"],["-108.2806637","39.1833712"],["-108.2807128","39.1832171"],["-108.2807805","39.1830249"],["-108.2809143","39.1827244"],["-108.2811003","39.1824271"],["-108.2815131","39.1819312"],["-108.2826032","39.1807466"],["-108.2833981","39.179913"],["-108.2839366","39.1794187"],["-108.2845029","39.1789244"],["-108.2849962","39.178512"],["-108.2854887","39.1781247"],["-108.2860387","39.1777418"],["-108.2869453","39.1772135"],["-108.2878355","39.1767296"],["-108.2887632","39.1762495"],["-108.2911578","39.1750911"],["-108.2918792","39.1747118"],["-108.2923781","39.17438"],["-108.2928368","39.1739997"],["-108.2933195","39.1735157"],["-108.293883","39.1728549"],["-108.295701","39.1706755"],["-108.2964641","39.1698159"],["-108.2974039","39.1688388"],["-108.2984683","39.1677866"],["-108.2989742","39.1672516"],["-108.2993035","39.1668358"],["-108.2995749","39.1664194"],["-108.2998244","39.1659464"],["-108.3000245","39.1654885"],["-108.3001385","39.1651269"],["-108.3002317","39.164759"],["-108.3003227","39.1642497"],["-108.3011925","39.1565513"],["-108.3013157","39.1558265"],["-108.3014503","39.1553263"],["-108.3016285","39.1548294"],["-108.3018767","39.1542903"],["-108.3021744","39.153765"],["-108.3024426","39.1533652"],["-108.3027589","39.1529575"],["-108.303163","39.1525101"],["-108.3036055","39.1520759"],["-108.3040001","39.1517421"],["-108.3044557","39.1514031"],["-108.3049621","39.1510611"],["-108.3054807","39.1507681"],["-108.3058941","39.1505543"],["-108.3062707","39.1503774"],["-108.3066834","39.1502105"],["-108.3070679","39.150066"],["-108.3075891","39.1499014"],["-108.3087312","39.1495977"],["-108.3118092","39.1487997"],["-108.3124635","39.1485891"],["-108.3129782","39.1483687"],["-108.313444","39.1481064"],["-108.3138527","39.1478231"],["-108.3141703","39.1475554"],["-108.3144251","39.1472919"],["-108.3146369","39.1470428"],["-108.3149361","39.1465947"],["-108.3152054","39.1459859"],["-108.3153297","39.1455068"],["-108.3154149","39.1447882"],["-108.3155866","39.1430049"],["-108.3156434","39.1424531"],["-108.3157331","39.1417861"],["-108.3158721","39.1412504"],["-108.3161488","39.1405648"],["-108.3163747","39.1401549"],["-108.3165901","39.1398226"],["-108.3169724","39.1393289"],["-108.3175318","39.1387399"],["-108.317919","39.1384142"],["-108.3184718","39.1380133"],["-108.3194169","39.1373916"],["-108.3204999","39.1366812"],["-108.3208688","39.1363895"],["-108.3211658","39.1361194"],["-108.3214253","39.1358411"],["-108.321621","39.1355875"],["-108.321863","39.1352235"],["-108.3220654","39.1348402"],["-108.3222795","39.1342973"],["-108.3225863","39.133435"],["-108.3227504","39.1330008"],["-108.3228814","39.1327344"],["-108.3231036","39.1323764"],["-108.3233385","39.1320783"],["-108.3237685","39.1316361"],["-108.3244757","39.1309527"],["-108.324744","39.1306529"],["-108.3249221","39.1303834"],["-108.3250527","39.1301231"],["-108.3251278","39.1298868"],["-108.3251654","39.1296195"],["-108.3251727","39.1293542"],["-108.3251476","39.129094"],["-108.3250798","39.1288417"],["-108.3249697","39.1285882"],["-108.3248162","39.1283342"],["-108.3244889","39.1279008"],["-108.3238843","39.1271573"],["-108.3233509","39.1264997"],["-108.323057","39.126043"],["-108.3228691","39.1256016"],["-108.3228176","39.1254263"],["-108.3227747","39.1252041"],["-108.3227475","39.1249613"],["-108.3227414","39.1247481"],["-108.3227627","39.1244526"],["-108.3228061","39.124224"],["-108.3228765","39.1239662"],["-108.3231221","39.1232376"],["-108.3234508","39.1223396"],["-108.323713","39.1216689"],["-108.3238429","39.121415"],["-108.324017","39.1211359"],["-108.3242543","39.1208449"],["-108.3246144","39.1205006"],["-108.3249329","39.120266"],["-108.3256588","39.1198427"],["-108.3282422","39.1184445"],["-108.3286051","39.1182797"],["-108.3290528","39.1181183"],["-108.3295633","39.1179869"],["-108.3300266","39.1179215"],["-108.330468","39.1178936"],["-108.330806","39.117903"],["-108.3311647","39.1179366"],["-108.3315698","39.1180009"],["-108.3326738","39.1182779"],["-108.3364087","39.1192456"],["-108.3370148","39.119376"],["-108.3374561","39.1194374"],["-108.3378593","39.1194815"],["-108.3382889","39.1195065"],["-108.338691","39.1195008"],["-108.3391193","39.1194842"],["-108.3395935","39.119439"],["-108.3400562","39.1193687"],["-108.3405955","39.1192526"],["-108.3409786","39.1191531"],["-108.3421204","39.1187811"],["-108.3449742","39.1178484"],["-108.3458015","39.1176204"],["-108.3465599","39.1174339"],["-108.3472455","39.1172914"],["-108.3479574","39.1171592"],["-108.3487331","39.117042"],["-108.3495752","39.116943"],["-108.3505952","39.1168645"],["-108.3517503","39.1168089"],["-108.3525441","39.1168142"],["-108.3532557","39.1168367"],["-108.3539963","39.1168734"],["-108.3548423","39.1169597"],["-108.3560363","39.1171188"],["-108.3571066","39.1173054"],["-108.3580499","39.1175149"],["-108.358882","39.117732"],["-108.3597105","39.1179903"],["-108.3645418","39.1196664"],["-108.3651277","39.1198421"],["-108.3660616","39.1200741"],["-108.36678","39.1202023"],["-108.369235","39.120483"],["-108.3701173","39.120552"],["-108.3723753","39.1206701"],["-108.3735116","39.1206995"],["-108.3742977","39.1206893"],["-108.3751154","39.1206547"],["-108.3759216","39.1205716"],["-108.376631","39.1204681"],["-108.4255946","39.1088338"],["-108.4280714","39.1082856"],["-108.4310658","39.107788"],["-108.4321938","39.1077201"],["-108.4383068","39.10748"],["-108.4387482","39.1074425"],["-108.4392361","39.1073793"],["-108.4398537","39.1072771"],["-108.4401432","39.1072206"],["-108.4407058","39.1070887"],["-108.4412421","39.1069366"],["-108.4415302","39.1068393"],["-108.4418421","39.1067281"],["-108.4422153","39.106584"],["-108.444084","39.10574"],["-108.44463","39.1054779"],["-108.4452744","39.1051646"],["-108.4459657","39.1048522"],["-108.4492055","39.1033684"],["-108.449862","39.1030888"],["-108.4503164","39.1029201"],["-108.4512511","39.1026472"],["-108.4517332","39.1025366"],["-108.4522578","39.1024282"],["-108.4526445","39.102369"],["-108.4530577","39.1023164"],["-108.4534631","39.1022831"],["-108.4539284","39.1022668"],["-108.454386","39.1022571"],["-108.4548311","39.1022675"],["-108.4558241","39.1023439"],["-108.4711239","39.104925"],["-108.4726274","39.1050679"],["-108.4740768","39.105127"],["-108.4780275","39.1051884"],["-108.4815757","39.1051786"],["-108.4830213","39.1052021"],["-108.4840395","39.1052394"],["-108.4850297","39.105333"],["-108.4862195","39.1054845"],["-108.4873021","39.1056712"],["-108.4881012","39.1058364"],["-108.4888763","39.106022"],["-108.4942034","39.1073164"],["-108.4949042","39.1074748"],["-108.4956097","39.1076128"],["-108.4962729","39.1077183"],["-108.498133","39.1079855"],["-108.4991348","39.1081297"],["-108.5032449","39.1087"],["-108.5040602","39.1087629"],["-108.50501","39.1088062"],["-108.5061944","39.1088292"],["-108.50729","39.1087842"],["-108.5082947","39.1087114"],["-108.5098362","39.1085164"],["-108.5301232","39.1051014"],["-108.5305893","39.1050404"],["-108.5309107","39.1050106"],["-108.5312493","39.1049958"],["-108.5315903","39.1050001"],["-108.5319005","39.1050151"],["-108.5322171","39.1050516"],["-108.5325229","39.1050972"],["-108.5327665","39.1051426"],["-108.5330435","39.1052114"],["-108.5333552","39.1052977"],["-108.5336258","39.1053834"],["-108.5338638","39.1054712"],["-108.5341233","39.1055815"],["-108.5344057","39.1057144"],["-108.5346878","39.1058685"],["-108.53491","39.1060063"],["-108.5351384","39.1061588"],["-108.5353586","39.1063274"],["-108.5355784","39.1065194"],["-108.5357993","39.1067314"],["-108.5360337","39.1069879"],["-108.5362922","39.1073067"],["-108.5382052","39.1098066"],["-108.538645","39.1103835"],["-108.5390484","39.1109371"],["-108.5401877","39.1124285"],["-108.5410041","39.1134506"],["-108.5411447","39.113615"],["-108.5414019","39.1138913"],["-108.5415353","39.1140179"],["-108.5416716","39.1141388"],["-108.5419373","39.1143522"],["-108.5421085","39.114475"],["-108.5422931","39.1145971"],["-108.5425583","39.1147633"],["-108.5428336","39.1149058"],["-108.5431112","39.1150361"],["-108.543269","39.115102"],["-108.5435987","39.1152282"],["-108.5438902","39.115323"],["-108.5440348","39.1153646"],["-108.5442223","39.1154133"],["-108.5443932","39.1154528"],["-108.5447139","39.1155162"],["-108.5450567","39.1155695"],["-108.5452859","39.115596"],["-108.5455192","39.115619"],["-108.5457153","39.1156326"],["-108.54611","39.1156516"],["-108.5566092","39.1159112"],["-108.5597769","39.1158793"],["-108.5606016","39.1157852"],["-108.5611782","39.1156579"],["-108.562797","39.1152096"],["-108.5637592","39.1149616"],["-108.5650577","39.1147591"],["-108.5656103","39.114718"],["-108.5667201","39.1146949"],["-108.5729673","39.1148145"],["-108.5736107","39.1148082"],["-108.5742864","39.1147827"],["-108.5750926","39.1146921"],["-108.5761886","39.1144974"],["-108.5782265","39.1141226"],["-108.5790783","39.1140366"],["-108.5795066","39.1140096"],["-108.5827842","39.1139701"],["-108.5894661","39.1139151"],["-108.6346712","39.1140857"],["-108.6357546","39.1140657"],["-108.636593","39.1140219"],["-108.6374869","39.113946"],["-108.6382443","39.1138593"],["-108.6388875","39.1137642"],["-108.6395668","39.1136473"],["-108.640787","39.1133903"],["-108.6414026","39.1132326"],["-108.6420919","39.1130382"],["-108.642743","39.1128332"],["-108.6433309","39.112629"],["-108.6442071","39.1123032"],["-108.6481329","39.1107572"],["-108.6487255","39.1105454"],["-108.6492016","39.1103672"],["-108.6496246","39.1102137"],["-108.6500789","39.1100628"],["-108.6506543","39.1098987"],["-108.6511783","39.109777"],["-108.6515838","39.1096964"],["-108.6519533","39.1096347"],["-108.6523467","39.1095885"],["-108.6528111","39.109549"],["-108.6533653","39.1095209"],["-108.6538051","39.1095111"],["-108.6542091","39.1095233"],["-108.6546662","39.1095485"],["-108.6551205","39.1095868"],["-108.6555072","39.1096337"],["-108.6558628","39.109688"],["-108.6562777","39.1097687"],["-108.6567644","39.1098783"],["-108.6572491","39.1100083"],["-108.6576221","39.1101203"],["-108.6579867","39.110247"],["-108.6584391","39.1104198"],["-108.6588006","39.1105741"],["-108.6591452","39.1107416"],["-108.6596078","39.1109873"],["-108.6600838","39.1112661"],["-108.6604302","39.1114894"],["-108.66095","39.1118864"],["-108.6618325","39.1126732"],["-108.6638012","39.114516"],["-108.6647225","39.1153546"],["-108.6651884","39.1157256"],["-108.665654","39.11606"],["-108.6661255","39.1163716"],["-108.666578","39.1166446"],["-108.6670583","39.1169111"],["-108.66753","39.1171427"],["-108.6681098","39.1174097"],["-108.6686283","39.1176385"],["-108.6690087","39.1177792"],["-108.6731445","39.1195776"],["-108.6742278","39.1200823"],["-108.6751281","39.1205442"],["-108.6759776","39.1210126"],["-108.6768595","39.1215511"],["-108.6775652","39.1220258"],["-108.6783099","39.1225526"],["-108.6798262","39.1237481"],["-108.6804107","39.1242859"],["-108.6809304","39.1248011"],["-108.6815557","39.1254506"],["-108.6820414","39.1259893"],["-108.682562","39.1266022"],["-108.683548","39.1278666"],["-108.6840237","39.1283848"],["-108.6845302","39.1289014"],["-108.6849347","39.1292382"],["-108.6853041","39.1295254"],["-108.6858355","39.129883"],["-108.6865237","39.1302909"],["-108.6967672","39.13554"],["-108.6980119","39.1361805"],["-108.6992009","39.1368036"],["-108.7318648","39.1535123"],["-108.732779","39.1539195"],["-108.7336522","39.1542836"],["-108.7347535","39.1546874"],["-108.7359314","39.1550896"],["-108.7380312","39.1556688"],["-108.7473205","39.1578325"],["-108.7592253","39.160569"],["-108.7618188","39.161087"],["-108.7654552","39.1616219"],["-108.7670628","39.1618583"],["-108.7708847","39.1624226"],["-108.7733466","39.1628118"],["-108.7760025","39.16322"],["-108.7795764","39.164035"],["-108.7825334","39.1648857"],["-108.7844452","39.1655485"],["-108.7856855","39.1660222"],["-108.7866312","39.1664294"],["-108.7879255","39.1670074"],["-108.7894249","39.1677689"],["-108.7923917","39.1694393"],["-108.7946043","39.1710019"],["-108.7968846","39.1728209"],["-108.7995032","39.17501"],["-108.8002476","39.1755573"],["-108.8007834","39.1758664"],["-108.802309","39.176644"],["-108.8031452","39.176975"],["-108.8038666","39.177223"],["-108.8045731","39.1774262"],["-108.8055258","39.1776434"],["-108.8065613","39.1778178"],["-108.8076754","39.1779331"],["-108.8086625","39.1780118"],["-108.8097629","39.178093"],["-108.8115616","39.1782248"],["-108.8203466","39.1788877"],["-108.8211827","39.1790123"],["-108.821876","39.1791308"],["-108.8224149","39.1792829"],["-108.8236871","39.1797256"],["-108.8248896","39.1803698"],["-108.8262967","39.1812218"],["-108.8283081","39.1828077"],["-108.8396823","39.1920108"],["-108.8423664","39.1940741"],["-108.8613841","39.2092728"],["-108.8680821","39.2145949"],["-108.8685211","39.2148734"],["-108.869684","39.2156402"],["-108.8715748","39.2164749"],["-108.8732309","39.2169684"],["-108.8743334","39.2172748"],["-108.8760971","39.2177817"],["-108.8773114","39.2181372"],["-108.8792764","39.2188233"],["-108.8835808","39.2205002"],["-108.8879505","39.2222365"],["-108.8897518","39.2229318"],["-108.8913366","39.2235554"],["-108.892906","39.2241964"],["-108.8941907","39.2246822"],["-108.8949295","39.2250818"],["-108.8964079","39.2260435"],["-108.8984031","39.2275695"],["-108.9007357","39.2295079"],["-108.9026864","39.2310987"],["-108.9039998","39.2319424"],["-108.9055173","39.2325069"],["-108.9071276","39.2329103"],["-108.9085201","39.2330369"],["-108.9100017","39.2329235"],["-108.9112145","39.2326859"],["-108.9126197","39.2321662"],["-108.9158213","39.2308568"],["-108.9206551","39.2292548"],["-108.9299353","39.2266947"],["-108.9352357","39.2253661"],["-108.9392796","39.2242569"],["-108.9463081","39.22293"],["-108.9485906","39.2227169"],["-108.9515357","39.2223915"],["-108.9526934","39.2222308"],["-108.9541015","39.2220735"],["-108.95562","39.2217874"],["-108.9571844","39.2213913"],["-108.9587315","39.2207049"],["-108.9600383","39.2198197"],["-108.9612383","39.2187536"],["-108.966257","39.213496"],["-108.9667217","39.2130517"],["-108.9671655","39.2126774"],["-108.9676111","39.2123307"],["-108.9680526","39.2120469"],["-108.9685792","39.2117295"],["-108.9690102","39.2115034"],["-108.969492","39.2112746"],["-108.9699099","39.2111096"],["-108.9704825","39.2109114"],["-108.9718716","39.2105181"],["-108.9779583","39.2089549"],["-108.9792397","39.2085947"],["-108.980016","39.2083385"],["-108.98065","39.2080914"],["-108.9815113","39.2077019"],["-108.9821772","39.2073517"],["-108.9831263","39.2067655"],["-108.9837264","39.2063452"],["-108.9860835","39.2044583"],["-108.9872562","39.2035435"],["-108.9879866","39.2030402"],["-108.9887737","39.2025587"],["-108.9899215","39.201928"],["-108.9925588","39.2005274"],["-108.9934974","39.2000375"],["-109.004508","39.1942851"],["-109.0055595","39.1938063"],["-109.0071677","39.1931792"],["-109.0085449","39.1927519"],["-109.0093764","39.1925347"],["-109.0113873","39.1921428"],["-109.0132762","39.1918976"],["-109.0222827","39.1908606"],["-109.0239383","39.1905731"],["-109.0259296","39.1901964"],["-109.0298445","39.1890817"],["-109.032459","39.1884725"],["-109.0339101","39.1883404"],["-109.0349596","39.1883973"],["-109.0360274","39.1885798"],["-109.0371669","39.1889338"],["-109.0384366","39.1893828"],["-109.0425081","39.1909876"],["-109.0445376","39.191729"],["-109.0498163","39.1937567"],["-109.0503857","39.1939524"],["-109.0510214","39.1941553"],["-109.0523162","39.1945084"],["-109.053185","39.1947035"],["-109.0540096","39.1948689"],["-109.0550067","39.1950406"],["-109.0562764","39.1952133"],["-109.0574685","39.195328"],["-109.0584647","39.1953901"],["-109.0596122","39.195439"],["-109.060864","39.1954315"],["-109.0620431","39.195394"],["-109.0638603","39.1952513"],["-109.0646062","39.1951653"],["-109.0660883","39.1949406"],["-109.0669803","39.1947722"],["-109.0678389","39.1945882"],["-109.0686674","39.1943895"],["-109.0777141","39.191702"],["-109.07951","39.1912117"],["-109.0809192","39.1909278"],["-109.0819722","39.1907843"],["-109.0832634","39.1906408"],["-109.0848463","39.1905693"],["-109.0886565","39.1905773"],["-109.0910443","39.1905481"],["-109.0928767","39.1905015"],["-109.1003264","39.189796"],["-109.1026409","39.1896931"],["-109.1053999","39.1896632"],["-109.1078977","39.1897085"],["-109.1093021","39.1896464"],["-109.1103477","39.1895399"],["-109.1108738","39.1894482"],["-109.1112179","39.1893637"],["-109.111772","39.1891977"],["-109.1127203","39.1888791"],["-109.1134363","39.1885822"],["-109.113892","39.1883594"],["-109.1143039","39.1881294"],["-109.1148727","39.1877416"],["-109.1158206","39.186996"],["-109.1177606","39.1851137"],["-109.1243814","39.1779829"],["-109.1253039","39.1770065"],["-109.1263178","39.1759478"],["-109.1280623","39.174167"],["-109.12856","39.1736492"],["-109.1322404","39.1701672"],["-109.1331245","39.1694063"],["-109.1362393","39.1668158"],["-109.1372085","39.1659797"],["-109.1386681","39.1646352"],["-109.1394891","39.1638059"],["-109.1407966","39.1623654"],["-109.141322","39.1617361"],["-109.1418467","39.1610538"],["-109.1423681","39.1603424"],["-109.1432275","39.1590837"],["-109.1588934","39.1356058"],["-109.1621525","39.1315006"],["-109.1654573","39.1279106"],["-109.1681052","39.1252953"],["-109.1712312","39.1226827"],["-109.1720101","39.1220505"],["-109.176574","39.1187488"],["-109.1821685","39.115037"],["-109.1843501","39.1135529"],["-109.1862556","39.1122403"],["-109.1887165","39.1105471"],["-109.1891894","39.110217"],["-109.1992309","39.1022768"],["-109.1994629","39.1020944"],["-109.2277908","39.0800041"],["-109.2380409","39.0721786"],["-109.2442067","39.0677335"],["-109.2489352","39.0644342"],["-109.2516735","39.0623384"],["-109.2756736","39.0438077"],["-109.2779689","39.0420337"],["-109.2784468","39.0416603"],["-109.2792572","39.0410401"],["-109.2803922","39.0401555"],["-109.281066","39.0395901"],["-109.2816238","39.0391273"],["-109.2821875","39.0386982"],["-109.2843936","39.0367923"],["-109.2853308","39.0359185"],["-109.2861349","39.0351341"],["-109.2871829","39.0341073"],["-109.2913044","39.0295523"],["-109.3067323","39.0122546"],["-109.3090048","39.0098552"],["-109.3112783","39.0077044"],["-109.3147388","39.0047769"],["-109.3176196","39.0026119"],["-109.3209241","39.0002989"],["-109.324609","38.9979893"],["-109.3292821","38.9949417"],["-109.3331143","38.9920493"],["-109.3359281","38.9896843"],["-109.340319","38.9858174"],["-109.3427943","38.9837437"],["-109.3459393","38.9813791"],["-109.3485836","38.9796468"],["-109.3516946","38.9776468"],["-109.3566154","38.9749978"],["-109.3629877","38.9719153"],["-109.3664255","38.9701471"],["-109.368461","38.9689491"],["-109.3716089","38.9670245"],["-109.3747581","38.9649232"],["-109.3765733","38.963642"],["-109.381984","38.9595872"],["-109.3836164","38.9583069"],["-109.3844705","38.9576146"],["-109.386997","38.9555448"],["-109.3901489","38.9528097"],["-109.3973155","38.946126"],["-109.3994813","38.9441329"],["-109.4012845","38.9426028"],["-109.4033061","38.9411602"],["-109.403806","38.9408307"],["-109.4047267","38.9402848"],["-109.4059869","38.9395579"],["-109.4083151","38.9382782"],["-109.4097517","38.9376097"],["-109.4112289","38.9369374"],["-109.4119047","38.9366532"],["-109.4126177","38.9363441"],["-109.4147395","38.9355843"],["-109.4170626","38.9348811"],["-109.4204109","38.9341339"],["-109.4238998","38.9335746"],["-109.4260915","38.9332995"],["-109.4276407","38.9331756"],["-109.432173","38.9329819"],["-109.4391794","38.9335852"],["-109.5184401","38.9416935"],["-109.527391","38.942452"],["-109.5505163","38.942696"],["-109.5614088","38.9426959"],["-109.5650313","38.9427068"],["-109.5727612","38.9426734"],["-109.6142373","38.9428528"],["-109.6157817","38.9428249"],["-109.621712","38.9428297"],["-109.6237214","38.9428474"],["-109.6257352","38.9428714"],["-109.6299382","38.9428473"],["-109.6334687","38.9429583"],["-109.6368328","38.9433962"],["-109.6758885","38.9499176"],["-109.6785718","38.9502835"],["-109.6831377","38.9505966"],["-109.6856356","38.9506666"],["-109.6873336","38.9507562"],["-109.6888394","38.9508893"],["-109.6902555","38.9510551"],["-109.6926595","38.9514161"],["-109.6948778","38.9518538"],["-109.6981481","38.9527757"],["-109.7004158","38.9535328"],["-109.7025583","38.9543306"],["-109.7047744","38.9553548"],["-109.7077086","38.9569416"],["-109.7118317","38.9595577"],["-109.7135919","38.9605965"],["-109.7146954","38.9610833"],["-109.7161346","38.9615924"],["-109.7166576","38.9617552"],["-109.7179125","38.9619722"],["-109.7189903","38.9621201"],["-109.7201912","38.9622054"],["-109.7213621","38.9622294"],["-109.7220328","38.9622075"],["-109.7228682","38.9620982"],["-109.7251633","38.961691"],["-109.7276396","38.961188"],["-109.7307321","38.9605199"],["-109.7330127","38.9600489"],["-109.7433154","38.9577623"],["-109.7463173","38.9570459"],["-109.7482002","38.956657"],["-109.7776015","38.9502235"],["-109.8036539","38.9445186"],["-109.8099662","38.9435626"],["-109.8109717","38.9434631"],["-109.8137804","38.9432379"],["-109.8142912","38.9432133"],["-109.8148887","38.9431953"],["-109.8154563","38.9431756"],["-109.8158857","38.9431469"],["-109.8167402","38.9429751"],["-109.8164734","38.9417968"],["-109.8163223","38.9407684"],["-109.8163033","38.9394791"],["-109.8130927","38.8828992"],["-109.8128393","38.879206"],["-109.8126812","38.8779666"],["-109.8122962","38.8758909"],["-109.8120785","38.8748778"],["-109.8117606","38.8737083"],["-109.8112926","38.8721799"],["-109.8107225","38.8704841"],["-109.809975","38.8685759"],["-109.8040234","38.8560618"],["-109.8031285","38.8543343"],["-109.80246","38.8531453"],["-109.8009978","38.850791"],["-109.7988647","38.8478364"],["-109.7912801","38.8377205"],["-109.7605495","38.7966924"],["-109.7587423","38.794145"],["-109.7579351","38.7929028"],["-109.7574013","38.7919948"],["-109.7567217","38.790745"],["-109.7557118","38.7887716"],["-109.7427552","38.7620082"],["-109.7415068","38.7591305"],["-109.7377072","38.7471418"],["-109.7372048","38.7456645"],["-109.7365111","38.7440334"],["-109.7355958","38.742389"],["-109.7351516","38.741736"],["-109.7288609","38.733401"],["-109.7281868","38.7325896"],["-109.7274664","38.7318074"],["-109.7260789","38.7305245"],["-109.7220074","38.7269397"],["-109.7196395","38.724871"],["-109.7186543","38.7240509"],["-109.7175077","38.723285"],["-109.7142229","38.7213066"],["-109.7082946","38.7177834"],["-109.7076783","38.7173541"],["-109.7071397","38.7169321"],["-109.7067255","38.7165833"],["-109.7063646","38.7162618"],["-109.7059782","38.715879"],["-109.7053441","38.715127"],["-109.7048726","38.7144502"],["-109.7044656","38.7137878"],["-109.7041978","38.7132243"],["-109.703968","38.7126214"],["-109.7015482","38.705187"],["-109.6982134","38.6948674"],["-109.6952658","38.6856693"],["-109.6948944","38.6847239"],["-109.6945254","38.6839638"],["-109.6941479","38.6832559"],["-109.6936939","38.6825143"],["-109.6932041","38.6818258"],["-109.6927102","38.6811454"],["-109.6922358","38.6804912"],["-109.6920498","38.6802279"],["-109.6892812","38.6764559"],["-109.688383","38.6752494"],["-109.6864328","38.6725597"],["-109.6858706","38.6716996"],["-109.6847339","38.6697931"],["-109.6745834","38.652454"],["-109.6733069","38.6504005"],["-109.6725798","38.6491134"],["-109.6683162","38.6421128"],["-109.6678393","38.6413892"],["-109.6671318","38.6405241"],["-109.6634567","38.6361999"],["-109.6625145","38.6351665"],["-109.6619322","38.6345748"],["-109.6614594","38.6341451"],["-109.6609783","38.6337303"],["-109.6602758","38.6331796"],["-109.659334","38.6324882"],["-109.6544588","38.6290123"],["-109.6534086","38.6282634"],["-109.6493973","38.6254191"],["-109.6477518","38.6242738"],["-109.6465406","38.6234751"],["-109.6455889","38.6228929"],["-109.6435423","38.6217633"],["-109.6405085","38.6203162"],["-109.6395869","38.6199015"],["-109.6350751","38.6179136"],["-109.6266874","38.6141951"],["-109.6260444","38.6139244"],["-109.6257886","38.6138331"],["-109.625602","38.6137732"],["-109.6254127","38.613723"],["-109.6250261","38.6136479"],["-109.6248202","38.6136152"],["-109.6246058","38.6135946"],["-109.6244206","38.6135865"],["-109.6240035","38.6135812"],["-109.6237304","38.6135935"],["-109.6234093","38.6136273"],["-109.6231073","38.6136818"],["-109.6225362","38.6138311"],["-109.6222873","38.6139164"],["-109.6210639","38.6143886"],["-109.6200745","38.6147924"],["-109.6197537","38.6149191"],["-109.6193348","38.6150773"],["-109.6190957","38.6151578"],["-109.6188506","38.6152333"],["-109.6185745","38.6152968"],["-109.6182204","38.6153653"],["-109.6178633","38.6154211"],["-109.6175189","38.6154657"],["-109.6171169","38.6154916"],["-109.6167257","38.6154967"],["-109.6163293","38.6154942"],["-109.6159113","38.6154696"],["-109.6155571","38.6154351"],["-109.6152682","38.615397"],["-109.6148469","38.6153224"],["-109.6145055","38.6152329"],["-109.6143343","38.6151802"],["-109.6138596","38.615019"],["-109.6135882","38.6149213"],["-109.6133391","38.6148196"],["-109.6131401","38.6147316"],["-109.6129731","38.6146462"],["-109.6126471","38.614462"],["-109.6124779","38.6143618"],["-109.6122947","38.6142511"],["-109.6108091","38.6130802"],["-109.6084665","38.6111671"],["-109.6083736","38.6110327"],["-109.607695","38.6104867"],["-109.6074855","38.6103669"],["-109.6072758","38.6101987"],["-109.6068928","38.6098947"],["-109.6048448","38.6082143"],["-109.6044203","38.6078501"],["-109.6028909","38.6066398"],["-109.6024973","38.6063703"],["-109.6021443","38.6061521"],["-109.6017123","38.6059266"],["-109.6013983","38.6057759"],["-109.6011217","38.6056598"],["-109.6008888","38.6055669"],["-109.6006419","38.6054816"],["-109.6003742","38.6053985"],["-109.5997433","38.6052334"],["-109.599445","38.6051687"],["-109.5991695","38.6051138"],["-109.5988045","38.6050697"],["-109.5983985","38.6050291"],["-109.5977472","38.6050018"],["-109.5974146","38.6049997"],["-109.5967782","38.6050301"],["-109.5962784","38.6050911"],["-109.595325","38.6052335"],["-109.5910161","38.605877"],["-109.5903024","38.6059779"],["-109.5874889","38.6064099"],["-109.5868533","38.6064934"],["-109.5863814","38.6065404"],["-109.5858462","38.6065693"],["-109.5847776","38.606608"],["-109.5844574","38.6066175"],["-109.5833691","38.6066475"],["-109.5824411","38.6066679"],["-109.5822059","38.6066673"],["-109.5819751","38.6066556"],["-109.5817323","38.6066217"],["-109.5814933","38.60658"],["-109.5812212","38.6064988"],["-109.580642","38.6062816"],["-109.5803292","38.606129"],["-109.5800431","38.6059329"],["-109.5799781","38.605835"],["-109.5797747","38.6056025"],["-109.5764847","38.602219"],["-109.57631","38.6020954"],["-109.5757953","38.6015785"],["-109.575349","38.6010956"],["-109.5751778","38.6009233"],["-109.5749532","38.600705"],["-109.5746149","38.6003739"],["-109.5743163","38.6000609"],["-109.5734492","38.599152"],["-109.5731174","38.5988288"],["-109.5728972","38.5985998"],["-109.5726637","38.5983567"],["-109.5723723","38.5980788"],["-109.5720329","38.5977814"],["-109.5713902","38.5973125"],["-109.5653225","38.5930322"],["-109.5648636","38.5926963"],["-109.5645155","38.5924234"],["-109.5639103","38.5918389"],["-109.5628125","38.5907054"],["-109.5623988","38.5902462"],["-109.5616947","38.5895491"],["-109.561166","38.589071"],["-109.5608504","38.5888145"],["-109.5600695","38.5881539"],["-109.5548498","38.5840193"],["-109.5527926","38.5823477"],["-109.552643","38.5822113"],["-109.5524556","38.5820314"],["-109.5523096","38.5818816"],["-109.5521663","38.5817241"],["-109.5520275","38.581561"],["-109.5518811","38.581377"],["-109.5517382","38.5811814"],["-109.5516054","38.5809846"],["-109.5514832","38.5807862"],["-109.5514121","38.5806639"],["-109.5513198","38.5804936"],["-109.5512856","38.5804239"],["-109.5512223","38.5802963"],["-109.5511854","38.5802142"],["-109.5510986","38.580004"],["-109.5510341","38.5798325"],["-109.5509863","38.5796969"],["-109.5509171","38.5794617"],["-109.5508234","38.5790577"],["-109.5507792","38.5787901"],["-109.5507566","38.5785837"],["-109.550742","38.578359"],["-109.5507365","38.5781001"],["-109.5507423","38.5768519"],["-109.5507433","38.5767092"],["-109.5507443","38.5765338"],["-109.550746","38.5763622"],["-109.5507963","38.5732773"],["-109.5509512","38.5732711"],["-109.5512407","38.5732701"],["-109.5527198","38.5732774"],["-109.552732","38.5734056"],["-109.552735","38.5734778"],["-109.5527201","38.5739408"],["-109.5526769","38.574823"],["-109.5507759","38.5748282"],["-109.5507458","38.5763739"],["-109.550744","38.5765488"],["-109.5507431","38.5767173"],["-109.5507425","38.5768477"],["-109.5507363","38.578099"],["-109.5507416","38.5783504"],["-109.5507567","38.578583"],["-109.5507789","38.578789"],["-109.5508225","38.5790527"],["-109.5509178","38.579464"],["-109.5509877","38.5797008"],["-109.5510331","38.5798303"],["-109.5510989","38.5800047"],["-109.5511832","38.5802084"],["-109.5512208","38.5802928"],["-109.5512948","38.5804429"],["-109.5513215","38.5804958"],["-109.551417","38.5806729"],["-109.5514784","38.5807782"],["-109.5516055","38.5809848"],["-109.551733","38.581174"],["-109.5518823","38.5813786"],["-109.5520265","38.5815599"],["-109.5521767","38.5817361"],["-109.5523072","38.581879"],["-109.5524648","38.5820409"],["-109.5526452","38.5822135"],["-109.5527951","38.5823495"],["-109.5548995","38.5840589"],["-109.5600729","38.5881565"],["-109.5608442","38.5888095"],["-109.5611663","38.5890718"],["-109.5616929","38.5895474"],["-109.562397","38.5902446"],["-109.5628177","38.590711"],["-109.5639042","38.5918324"],["-109.5645158","38.5924238"],["-109.5648844","38.5927124"],["-109.5653133","38.5930256"],["-109.5713676","38.5972965"],["-109.5720345","38.5977827"],["-109.5723599","38.5980677"],["-109.5726591","38.598352"],["-109.5728887","38.5985911"],["-109.5731122","38.5988239"],["-109.5734553","38.5991583"],["-109.5743312","38.6000766"],["-109.5746318","38.6003903"],["-109.5749615","38.6007131"],["-109.5751759","38.6009215"],["-109.5753485","38.601095"],["-109.5757973","38.601581"],["-109.576304","38.6020971"],["-109.5763876","38.6022733"],["-109.5766805","38.6025973"],["-109.5780554","38.6040315"],["-109.5790942","38.6051122"],["-109.5791477","38.6051654"],["-109.5797174","38.6057281"],["-109.5798848","38.6058768"],["-109.5800368","38.605934"],["-109.5803336","38.6061314"],["-109.5806361","38.6062791"],["-109.5812134","38.6064962"],["-109.5814936","38.6065802"],["-109.5817208","38.6066198"],["-109.5819674","38.606655"],["-109.5822067","38.6066674"],["-109.5824429","38.6066696"],["-109.5833229","38.6066489"],["-109.5844575","38.6066177"],["-109.5847682","38.6066082"],["-109.5858537","38.6065691"],["-109.5863544","38.6065424"],["-109.586859","38.6064926"],["-109.5874702","38.6064127"],["-109.5902626","38.6059836"],["-109.5910012","38.6058791"],["-109.5954421","38.6052157"],["-109.5962679","38.6050925"],["-109.5967989","38.6050283"],["-109.5974133","38.6049977"],["-109.5977532","38.605002"],["-109.5984013","38.6050295"],["-109.5987897","38.6050682"],["-109.5991741","38.6051145"],["-109.5994822","38.6051767"],["-109.5997488","38.6052348"],["-109.6003731","38.6053981"],["-109.6006582","38.605487"],["-109.6008894","38.6055667"],["-109.6011331","38.6056644"],["-109.601394","38.6057744"],["-109.6017244","38.6059328"],["-109.6021366","38.6061475"],["-109.6025227","38.6063873"],["-109.6028942","38.6066423"],["-109.6044204","38.6078504"],["-109.6048259","38.6081982"],["-109.6068986","38.6098993"],["-109.6072618","38.6101879"],["-109.6074817","38.61037"],["-109.6076057","38.610542"],["-109.6081757","38.6110018"],["-109.6082579","38.6110609"],["-109.6083155","38.6110964"],["-109.6084687","38.611175"],["-109.6108735","38.6131325"],["-109.6122926","38.6142498"],["-109.6124782","38.6143618"],["-109.6126367","38.6144559"],["-109.6129758","38.6146475"],["-109.613139","38.6147309"],["-109.6133563","38.614827"],["-109.61359","38.6149219"],["-109.613865","38.6150208"],["-109.6143486","38.6151846"],["-109.6145154","38.6152356"],["-109.614845","38.6153217"],["-109.6152756","38.615398"],["-109.6155549","38.6154351"],["-109.615895","38.6154682"],["-109.6163164","38.6154937"],["-109.6167406","38.6154996"],["-109.6171175","38.6154914"],["-109.6175251","38.6154651"],["-109.6178759","38.6154192"],["-109.6182441","38.615361"],["-109.6185594","38.6153"],["-109.6188457","38.6152347"],["-109.619089","38.6151599"],["-109.6193538","38.6150706"],["-109.619757","38.6149179"],["-109.620052","38.6148015"],["-109.6210392","38.6143985"],["-109.6222745","38.613921"],["-109.6225364","38.6138308"],["-109.6231098","38.6136812"],["-109.6234177","38.6136261"],["-109.6237239","38.6135938"],["-109.6240052","38.6135798"],["-109.6244279","38.6135866"],["-109.6246087","38.613595"],["-109.624819","38.6136147"],["-109.6250154","38.6136461"],["-109.6254173","38.6137238"],["-109.6256","38.6137725"],["-109.6258058","38.6138389"],["-109.6260236","38.6139164"],["-109.6267837","38.6142367"],["-109.6350149","38.617887"],["-109.6395871","38.6199019"],["-109.6405136","38.6203188"],["-109.6419767","38.6210445"],["-109.6435651","38.6219527"],["-109.6464988","38.6237733"],["-109.6475114","38.6244338"],["-109.6532884","38.6285039"],["-109.65423","38.6291691"],["-109.660153","38.6334106"],["-109.6612152","38.6342739"],["-109.6616315","38.6346672"],["-109.662134","38.6351693"],["-109.663334","38.6365514"],["-109.6668401","38.6406727"],["-109.6675288","38.6415168"],["-109.6679865","38.6421671"],["-109.6708464","38.6468864"],["-109.6721764","38.6490074"],["-109.673281","38.6503962"],["-109.6747163","38.6526676"],["-109.6847006","38.6697357"],["-109.6858725","38.671703"],["-109.6864238","38.6725472"],["-109.6883866","38.6752541"],["-109.6893538","38.6765533"],["-109.6919986","38.6801577"],["-109.6922737","38.6805442"],["-109.6927193","38.681158"],["-109.6931775","38.6817894"],["-109.693689","38.6825072"],["-109.6941467","38.6832535"],["-109.6945296","38.6839717"],["-109.6949018","38.6847401"],["-109.6952641","38.6856653"],["-109.698247","38.6949699"],["-109.7015699","38.7052522"],["-109.7039652","38.7126132"],["-109.7041927","38.7132123"],["-109.7044648","38.7137859"],["-109.7048637","38.7144361"],["-109.7053455","38.7151287"],["-109.7059745","38.7158751"],["-109.7063556","38.7162534"],["-109.706712","38.7165714"],["-109.7071628","38.716951"],["-109.7076855","38.7173598"],["-109.7083106","38.7177932"],["-109.7140956","38.7212306"],["-109.7175035","38.7232819"],["-109.7186706","38.7240631"],["-109.7196376","38.7248693"],["-109.7220305","38.7269606"],["-109.7260242","38.7304747"],["-109.7274585","38.7317997"],["-109.7281906","38.7325939"],["-109.7288884","38.7334364"],["-109.7351624","38.741751"],["-109.735613","38.742419"],["-109.7365256","38.7440614"],["-109.7372022","38.7456578"],["-109.7376692","38.7470261"],["-109.7415068","38.7591301"],["-109.7428018","38.7621099"],["-109.7556708","38.7886901"],["-109.7567142","38.7907306"],["-109.757444","38.7920702"],["-109.7579683","38.7929571"],["-109.7587098","38.7940971"],["-109.7605745","38.7967266"],["-109.7912615","38.8376962"],["-109.7988668","38.8478394"],["-109.8010103","38.8508099"],["-109.8024262","38.8530883"],["-109.8031238","38.8543265"],["-109.8040272","38.8560695"],["-109.8099875","38.8686052"],["-109.8107122","38.8704552"],["-109.8113172","38.8722568"],["-109.8117787","38.873773"],["-109.8120853","38.8749059"],["-109.8123034","38.8759253"],["-109.8126861","38.8779987"],["-109.8128406","38.8792157"],["-109.8130789","38.8826802"],["-109.8162979","38.939374"],["-109.8163212","38.9407607"],["-109.8164785","38.9418222"],["-109.8168017","38.9429574"],["-109.8179073","38.942837"],["-109.8197054","38.942374"],["-109.8202458","38.9422401"],["-109.8207951","38.9421455"],["-109.8236383","38.9416601"],["-109.8256931","38.9412117"],["-109.8268922","38.9408763"],["-109.8289366","38.9402171"],["-109.8377781","38.9372553"],["-109.8406956","38.9363193"],["-109.8421195","38.9359011"],["-109.8448387","38.9352721"],["-109.849958","38.9344399"],["-109.9313274","38.9219343"],["-109.9344588","38.9214594"],["-109.937948","38.9210052"],["-109.9406339","38.9207892"],["-109.9431254","38.9207963"],["-109.9461688","38.920869"],["-109.9522541","38.9213413"],["-109.9541533","38.9214865"],["-109.9657107","38.9225147"],["-109.9691695","38.9230069"],["-109.9711468","38.9233353"],["-109.9733055","38.9237225"],["-109.9830584","38.9257444"],["-109.9845138","38.9260128"],["-109.9869164","38.9263441"],["-109.9901044","38.9266449"],["-109.992431","38.9267177"],["-109.998382","38.9266853"],["-109.9994862","38.9267302"],["-110.0004968","38.9267991"],["-110.0019579","38.9269864"],["-110.0024284","38.9270622"],["-110.0030155","38.9271662"],["-110.0039852","38.9273643"],["-110.0051003","38.9276524"],["-110.00561","38.9278022"],["-110.0061173","38.9279689"],["-110.0067859","38.9281956"],["-110.0078655","38.9286231"],["-110.0090828","38.9291734"],["-110.0124246","38.9308976"],["-110.0142007","38.931784"],["-110.0161174","38.9326932"],["-110.0180464","38.9334669"],["-110.0195407","38.933983"],["-110.0206501","38.9343483"],["-110.0215658","38.9346228"],["-110.0248741","38.9355865"],["-110.0262772","38.9360958"],["-110.0275775","38.9366714"],["-110.0285762","38.9371862"],["-110.029488","38.9377374"],["-110.0303576","38.9383029"],["-110.0317947","38.939445"],["-110.0376089","38.9442331"],["-110.0382085","38.9446899"],["-110.0387936","38.9451309"],["-110.0394815","38.9456355"],["-110.0404596","38.9463289"],["-110.0439454","38.9486361"],["-110.046859","38.9503619"],["-110.0500206","38.9521657"],["-110.0527135","38.9537193"],["-110.0547875","38.9549931"],["-110.0566257","38.956244"],["-110.0586613","38.9576921"],["-110.0602017","38.9588074"],["-110.0614003","38.9596327"],["-110.0625956","38.9603117"],["-110.0645506","38.9612398"],["-110.065928","38.9617655"],["-110.0683875","38.9625016"],["-110.0717094","38.9634556"],["-110.0746602","38.9644494"],["-110.0776737","38.9656644"],["-110.0809154","38.9667919"],["-110.0840026","38.9676469"],["-110.0964044","38.9706093"],["-110.1046549","38.9730013"],["-110.1087254","38.9742076"],["-110.1107667","38.9747554"],["-110.1112338","38.9748638"],["-110.1131257","38.9752705"],["-110.1149488","38.9755938"],["-110.1171119","38.9759014"],["-110.1184125","38.9760416"],["-110.1206305","38.9762062"],["-110.123065","38.976293"],["-110.1235353","38.976301"],["-110.125908","38.9762404"],["-110.1285786","38.976086"],["-110.1295117","38.9760082"],["-110.1325248","38.9755877"],["-110.1345258","38.975222"],["-110.1377336","38.9745847"],["-110.1385658","38.974464"],["-110.1393356","38.9743818"],["-110.14142","38.9742629"],["-110.142126","38.9742704"],["-110.1520356","38.9746683"],["-110.1526935","38.9747092"],["-110.153102","38.9747477"],["-110.1534185","38.974786"],["-110.1540033","38.9748839"],["-110.1543983","38.9749627"],["-110.154857","38.9750666"],["-110.1552268","38.9751754"],["-110.1560043","38.9754326"],["-110.1563214","38.9755494"],["-110.1566686","38.9756882"],["-110.1569823","38.9758423"],["-110.1573276","38.9760268"],["-110.1577044","38.9762419"],["-110.1581459","38.9765126"],["-110.1586296","38.9768262"],["-110.1593884","38.9774418"],["-110.1602178","38.9783543"],["-110.1642138","38.984074"],["-110.1648404","38.9848735"],["-110.1654717","38.9855798"],["-110.1661414","38.9862339"],["-110.1667049","38.9867165"],["-110.1674567","38.9873215"],["-110.1686495","38.9881356"],["-110.1699726","38.9889164"],["-110.1712715","38.9896081"],["-110.1724434","38.9901022"],["-110.1737156","38.9905588"],["-110.1749245","38.9909366"],["-110.1758372","38.9911518"],["-110.1767013","38.9913368"],["-110.1774372","38.9914638"],["-110.1783759","38.9915997"],["-110.1792311","38.991689"],["-110.1798925","38.9917421"],["-110.1808152","38.9917882"],["-110.1811931","38.9917983"],["-110.1820127","38.9917877"],["-110.1827883","38.9917657"],["-110.1834342","38.9917282"],["-110.1846475","38.9916093"],["-110.1851495","38.9915436"],["-110.1867289","38.991275"],["-110.2243355","38.9840005"],["-110.2251397","38.9838219"],["-110.2255332","38.9837292"],["-110.2299361","38.982552"],["-110.2318238","38.9819721"],["-110.2326852","38.9816985"],["-110.2329873","38.9815988"],["-110.2602599","38.9721067"],["-110.3094609","38.9538156"],["-110.3176515","38.9503778"],["-110.3310595","38.9430541"],["-110.3353978","38.9411752"],["-110.3416656","38.9388807"],["-110.3442266","38.937729"],["-110.3527409","38.93342"],["-110.3570598","38.9315587"],["-110.3606693","38.9300291"],["-110.3640857","38.9284949"],["-110.3649662","38.9280347"],["-110.3667852","38.9270308"],["-110.3675215","38.92663"],["-110.36818","38.9262836"],["-110.3698005","38.925444"],["-110.3708943","38.9249529"],["-110.3713778","38.9247559"],["-110.372043","38.9245126"],["-110.3730841","38.9241723"],["-110.3738498","38.9239427"],["-110.3743385","38.9238163"],["-110.3749493","38.9236756"],["-110.3759671","38.9234744"],["-110.3873447","38.9216875"],["-110.3878916","38.9216142"],["-110.3884505","38.921551"],["-110.3897424","38.9214553"],["-110.3903229","38.9214284"],["-110.3909611","38.9214166"],["-110.3916068","38.9214273"],["-110.392417","38.9214586"],["-110.3931417","38.9215076"],["-110.3937749","38.9215705"],["-110.3943348","38.9216355"],["-110.3949215","38.9217164"],["-110.3955197","38.9218162"],["-110.3962555","38.9219583"],["-110.4087947","38.9246004"],["-110.4105663","38.9249211"],["-110.4123561","38.9251167"],["-110.4141773","38.9251934"],["-110.4151353","38.9251706"],["-110.4158855","38.9251369"],["-110.4164177","38.9250986"],["-110.417625","38.9249581"],["-110.4181025","38.9248879"],["-110.4184969","38.9248259"],["-110.4188135","38.92477"],["-110.4193321","38.9246656"],["-110.4198624","38.9245481"],["-110.4206627","38.9243325"],["-110.4221396","38.9238826"],["-110.4232299","38.9235002"],["-110.4305362","38.9203202"],["-110.431556","38.9198993"],["-110.4324343","38.9196331"],["-110.4329392","38.9195334"],["-110.4337099","38.9194559"],["-110.4342776","38.919457"],["-110.4348755","38.919499"],["-110.4353829","38.9195746"],["-110.4357957","38.9196612"],["-110.4362903","38.9197997"],["-110.4369016","38.9200435"],["-110.4377679","38.9204766"],["-110.4393816","38.9214664"],["-110.4404379","38.9219426"],["-110.44136","38.9222172"],["-110.4424317","38.9224066"],["-110.4434897","38.9225766"],["-110.4443289","38.9227855"],["-110.4454194","38.9232172"],["-110.4463619","38.9235862"],["-110.4475368","38.9239564"],["-110.4481637","38.9240519"],["-110.4502458","38.9242495"],["-110.4509555","38.9243724"],["-110.4515592","38.9245579"],["-110.4520943","38.9248093"],["-110.452685","38.9251719"],["-110.4535657","38.9260589"],["-110.4544263","38.9269276"],["-110.455169","38.9275149"],["-110.4558699","38.9278889"],["-110.4566243","38.9281558"],["-110.4575593","38.928348"],["-110.4586215","38.9284212"],["-110.4601521","38.9284223"],["-110.4612434","38.92846"],["-110.4617675","38.9285226"],["-110.4622889","38.928633"],["-110.4628695","38.9288128"],["-110.4632724","38.9289868"],["-110.4638075","38.9292916"],["-110.4643945","38.9297356"],["-110.4648022","38.9301575"],["-110.4650366","38.9305501"],["-110.465164","38.9309428"],["-110.4652043","38.9312451"],["-110.4651968","38.9315125"],["-110.4651473","38.9317894"],["-110.4650214","38.9321161"],["-110.4647539","38.9325686"],["-110.4638393","38.9337978"],["-110.4635571","38.9343338"],["-110.4634195","38.934884"],["-110.4634228","38.9352622"],["-110.4634913","38.9356158"],["-110.4636394","38.9359856"],["-110.4639147","38.9364247"],["-110.4642519","38.9367675"],["-110.4646686","38.9370702"],["-110.465174","38.9373253"],["-110.4657135","38.9374927"],["-110.4663123","38.9375856"],["-110.4669774","38.9376282"],["-110.4671277","38.9376261"],["-110.4672595","38.9376254"],["-110.4713031","38.937598"],["-110.4721422","38.9375782"],["-110.4727152","38.9375386"],["-110.4732459","38.9374555"],["-110.473948","38.9372753"],["-110.4747707","38.9370393"],["-110.4755779","38.9368208"],["-110.4761481","38.936719"],["-110.4767219","38.9366819"],["-110.4773601","38.9367088"],["-110.4779242","38.9367996"],["-110.4784128","38.9369267"],["-110.4789773","38.9371357"],["-110.480042","38.9375849"],["-110.4805131","38.937771"],["-110.4809534","38.9379085"],["-110.4814264","38.9380256"],["-110.4818934","38.9381046"],["-110.4823567","38.9381454"],["-110.4827982","38.9381565"],["-110.4832656","38.9381339"],["-110.4836266","38.9380951"],["-110.4840525","38.9380212"],["-110.4844915","38.937913"],["-110.4848975","38.9377806"],["-110.4853036","38.9376125"],["-110.4857347","38.9374075"],["-110.4860549","38.9372091"],["-110.4863735","38.936986"],["-110.4868745","38.9365134"],["-110.4873835","38.9358462"],["-110.4877762","38.9350869"],["-110.4883602","38.9338134"],["-110.4889646","38.9325287"],["-110.4895192","38.9317412"],["-110.4900722","38.9312191"],["-110.4906199","38.9308028"],["-110.4914393","38.9303465"],["-110.4937848","38.92935"],["-110.4949643","38.9286813"],["-110.495554","38.9281705"],["-110.4962063","38.9273609"],["-110.500091","38.9221356"],["-110.5007667","38.921178"],["-110.5011342","38.9204444"],["-110.5015698","38.9192866"],["-110.5020695","38.9171798"],["-110.5025218","38.9162669"],["-110.5030594","38.9155868"],["-110.5036262","38.9150674"],["-110.5043682","38.9145612"],["-110.5055694","38.91402"],["-110.5065493","38.9137701"],["-110.5077562","38.9136362"],["-110.5090531","38.9136974"],["-110.5101774","38.9139317"],["-110.511967","38.9144573"],["-110.5134887","38.9148299"],["-110.5148129","38.914993"],["-110.5160158","38.9150187"],["-110.5173843","38.9149108"],["-110.5185828","38.9146894"],["-110.5199893","38.9142664"],["-110.5211401","38.9137685"],["-110.5223625","38.9130587"],["-110.531795","38.906775"],["-110.5332122","38.9059395"],["-110.5339147","38.9056356"],["-110.5345822","38.9053909"],["-110.5353296","38.9051755"],["-110.5361309","38.9050116"],["-110.5369411","38.904894"],["-110.5377484","38.9048249"],["-110.5386523","38.9048027"],["-110.5400587","38.9048845"],["-110.5463081","38.9053419"],["-110.5490559","38.9055043"],["-110.5507822","38.9054777"],["-110.5527751","38.9053522"],["-110.5548891","38.905091"],["-110.5570079","38.9046958"],["-110.5594548","38.9040395"],["-110.574505","38.8992489"],["-110.5777565","38.8983903"],["-110.5805446","38.8980499"],["-110.5960221","38.8975384"],["-110.598925","38.897338"],["-110.6379859","38.8916433"],["-110.6412757","38.8911095"],["-110.6434401","38.8905519"],["-110.6451436","38.8899509"],["-110.6471799","38.8890288"],["-110.6491466","38.8878478"],["-110.6619469","38.8791505"],["-110.6632666","38.8783703"],["-110.6644827","38.8777559"],["-110.66589","38.8771635"],["-110.6672822","38.8766783"],["-110.6707916","38.8757981"],["-110.7040852","38.8681018"],["-110.7084513","38.8673927"],["-110.7108389","38.8673486"],["-110.7133353","38.867558"],["-110.7168092","38.868335"],["-110.7335387","38.8731149"],["-110.7386198","38.8745258"],["-110.7398812","38.8747755"],["-110.7417541","38.8750537"],["-110.7438027","38.8752417"],["-110.7459737","38.8753223"],["-110.7476026","38.8752789"],["-110.7496476","38.8751174"],["-110.7506077","38.8749948"],["-110.7523212","38.8746883"],["-110.7918285","38.8654595"],["-110.7943031","38.8651557"],["-110.7959152","38.865206"],["-110.7971894","38.8653422"],["-110.7992963","38.8657922"],["-110.8012399","38.8662281"],["-110.802662","38.8664983"],["-110.8042269","38.8666244"],["-110.8061382","38.8665204"],["-110.8078538","38.8661662"],["-110.8090416","38.8657774"],["-110.8099751","38.8653494"],["-110.810599","38.8650005"],["-110.8111336","38.8646557"],["-110.8116745","38.86427"],["-110.8145867","38.8620812"],["-110.8157714","38.8612156"],["-110.8164086","38.8608041"],["-110.8170515","38.8604386"],["-110.81762","38.8602042"],["-110.8182358","38.860011"],["-110.8188647","38.8598606"],["-110.819585","38.8597615"],["-110.8214153","38.8596471"],["-110.833591","38.8590224"],["-110.8352328","38.8590439"],["-110.836543","38.8592164"],["-110.8379459","38.8595526"],["-110.8391605","38.8600044"],["-110.8400368","38.8604389"],["-110.8408865","38.8609593"],["-110.8431892","38.8627379"],["-110.8442315","38.8634234"],["-110.8450382","38.8638443"],["-110.8459772","38.8642208"],["-110.8471479","38.8645576"],["-110.848205","38.8647708"],["-110.8492774","38.8648887"],["-110.8501953","38.8649334"],["-110.850742","38.8649157"],["-110.8516487","38.864854"],["-110.8522539","38.8647634"],["-110.8612688","38.8629347"],["-110.8630027","38.8624969"],["-110.8641095","38.8620323"],["-110.8655662","38.8611006"],["-110.8681949","38.859326"],["-110.8691707","38.8585952"],["-110.8709152","38.8572236"],["-110.8714008","38.8568841"],["-110.8717645","38.8566522"],["-110.8721634","38.8564221"],["-110.8729719","38.8560076"],["-110.8735623","38.8557293"],["-110.8739656","38.8555735"],["-110.8746136","38.8553576"],["-110.875343","38.8551126"],["-110.876156","38.8548263"],["-110.8770281","38.8545122"],["-110.8791739","38.8537148"],["-110.8795032","38.853561"],["-110.8807293","38.8529266"],["-110.8822839","38.8520723"],["-110.8829171","38.8517067"],["-110.8835459","38.8513174"],["-110.8840531","38.8509373"],["-110.8844905","38.8505949"],["-110.8847692","38.8503884"],["-110.8850704","38.8501894"],["-110.8853521","38.8500013"],["-110.8855987","38.849823"],["-110.8859009","38.8495991"],["-110.8864742","38.8491605"],["-110.8872007","38.8486703"],["-110.8877813","38.8483339"],["-110.8883028","38.8480783"],["-110.8888949","38.8478262"],["-110.889664","38.8475781"],["-110.8904024","38.8473676"],["-110.8910293","38.8472356"],["-110.8916128","38.8471358"],["-110.8922495","38.8470572"],["-110.8927504","38.8470212"],["-110.8932685","38.8470031"],["-110.8938078","38.8470117"],["-110.8943621","38.8470433"],["-110.894904","38.847087"],["-110.8955066","38.8471683"],["-110.8968684","38.8474613"],["-110.9004823","38.8483184"],["-110.9015083","38.8485799"],["-110.9021484","38.8487612"],["-110.9026767","38.8489491"],["-110.9032209","38.8491984"],["-110.9035746","38.8493787"],["-110.9039777","38.8496046"],["-110.9045383","38.8499578"],["-110.9048599","38.8501951"],["-110.9066236","38.8516743"],["-110.9073726","38.8523138"],["-110.9089225","38.8536195"],["-110.9095831","38.8541062"],["-110.9100092","38.8543852"],["-110.9104807","38.8546447"],["-110.9110696","38.8549385"],["-110.9114566","38.8551103"],["-110.9118049","38.8552504"],["-110.9121318","38.8553674"],["-110.9128502","38.8555969"],["-110.9132639","38.8556994"],["-110.9137766","38.8558187"],["-110.9143981","38.8559167"],["-110.9148822","38.8559861"],["-110.9154501","38.8560393"],["-110.91597","38.8560696"],["-110.9164351","38.8560794"],["-110.9169165","38.8560692"],["-110.9173889","38.8560407"],["-110.9178512","38.8559992"],["-110.9182069","38.8559535"],["-110.9185694","38.8558986"],["-110.9189909","38.8558216"],["-110.9194093","38.8557355"],["-110.9199267","38.8556045"],["-110.92067","38.855372"],["-110.9214665","38.8550691"],["-110.9220352","38.8548065"],["-110.9225409","38.8545352"],["-110.9236159","38.8538536"],["-110.924331","38.8533618"],["-110.9251929","38.852771"],["-110.9258847","38.8522792"],["-110.9303381","38.8492267"],["-110.9308225","38.8489426"],["-110.9312936","38.8486988"],["-110.9318437","38.8484592"],["-110.9324341","38.8482274"],["-110.9331592","38.847996"],["-110.9338365","38.8478366"],["-110.9345428","38.8476926"],["-110.9351405","38.8476127"],["-110.9357871","38.8475565"],["-110.9382509","38.8473997"],["-110.9392613","38.8473268"],["-110.9399301","38.8472547"],["-110.9405487","38.8471666"],["-110.9411816","38.8470408"],["-110.9418564","38.8468845"],["-110.9426742","38.8466487"],["-110.9434427","38.8463895"],["-110.9518298","38.8431718"],["-110.9530295","38.8427232"],["-110.9536686","38.8425127"],["-110.9541924","38.8423571"],["-110.9547224","38.8422144"],["-110.9552465","38.8420924"],["-110.9557951","38.8419881"],["-110.9564683","38.8418749"],["-110.9572904","38.8417712"],["-110.9580531","38.8416921"],["-110.9595547","38.8416357"],["-110.9601836","38.841647"],["-110.9609547","38.8416898"],["-110.9618315","38.8417672"],["-110.9626359","38.8418786"],["-110.9642155","38.8421645"],["-110.971719","38.8436165"],["-110.9729925","38.8438047"],["-110.9737611","38.8438893"],["-110.9747031","38.8439719"],["-110.9761809","38.844052"],["-110.9771732","38.8440662"],["-110.9783054","38.8440748"],["-110.9795279","38.8440748"],["-110.9809106","38.8441115"],["-110.9817783","38.8441671"],["-110.9825483","38.8442492"],["-110.9833253","38.8443528"],["-110.984181","38.8444924"],["-110.9851799","38.8447041"],["-110.9860436","38.8449069"],["-110.9887115","38.8456463"],["-110.9898807","38.8459539"],["-110.9905156","38.8460924"],["-110.9917217","38.8462968"],["-110.9924951","38.8463988"],["-111.0096321","38.8477655"],["-111.0135234","38.8478751"],["-111.0229892","38.8474867"],["-111.0237966","38.8474976"],["-111.029129","38.8476858"],["-111.0298998","38.8477045"],["-111.0306048","38.8476902"],["-111.0312093","38.847666"],["-111.0318067","38.8476214"],["-111.0324318","38.8475579"],["-111.0446278","38.8458726"],["-111.0478458","38.8455826"],["-111.0496188","38.8455166"],["-111.0552271","38.8454746"],["-111.0555762","38.8454584"],["-111.0558155","38.8454449"],["-111.0560679","38.8454278"],["-111.0569784","38.8453238"],["-111.0576078","38.8452266"],["-111.0582441","38.8450992"],["-111.0588241","38.8449643"],["-111.0593674","38.8448194"],["-111.0603912","38.8444867"],["-111.0612713","38.8441228"],["-111.0619228","38.8438158"],["-111.0666389","38.8413797"],["-111.0679902","38.840705"],["-111.0690794","38.8402599"],["-111.0698723","38.8399932"],["-111.0706424","38.8397565"],["-111.0714546","38.839545"],["-111.0728793","38.8392921"],["-111.0735034","38.8391972"],["-111.0742147","38.8391211"],["-111.0748968","38.8390712"],["-111.0754107","38.8390509"],["-111.0758729","38.8390437"],["-111.076782","38.8390629"],["-111.07762","38.8391122"],["-111.0782439","38.8391721"],["-111.0788666","38.8392487"],["-111.0796379","38.8393836"],["-111.0802254","38.8394963"],["-111.0814407","38.8397257"],["-111.0825741","38.839925"],["-111.0836762","38.8400786"],["-111.0847771","38.8401959"],["-111.0858642","38.8402793"],["-111.0873615","38.8403284"],["-111.0897218","38.8403491"],["-111.0919148","38.8403246"],["-111.0938824","38.8402444"],["-111.0957349","38.8400958"],["-111.0976211","38.8398869"],["-111.0990158","38.8397048"],["-111.0997778","38.8395277"],["-111.1005185","38.8392997"],["-111.1013345","38.8389721"],["-111.102185","38.8385384"],["-111.1029608","38.8380451"],["-111.1034262","38.8376765"],["-111.103847","38.8373012"],["-111.1045895","38.8365247"],["-111.1053185","38.8357572"],["-111.1060707","38.8349803"],["-111.106589","38.8344946"],["-111.1070284","38.8341024"],["-111.1074598","38.8337719"],["-111.107875","38.8334778"],["-111.1082757","38.8332142"],["-111.1089997","38.8327828"],["-111.1098316","38.8323727"],["-111.1106289","38.8320298"],["-111.1113143","38.8317772"],["-111.1118883","38.8315986"],["-111.1124789","38.8314302"],["-111.1130686","38.8312929"],["-111.1137979","38.8311598"],["-111.1145139","38.8310519"],["-111.1152531","38.8309759"],["-111.1159682","38.8309266"],["-111.1166963","38.8309103"],["-111.117548","38.8309385"],["-111.1303905","38.8319708"],["-111.1312043","38.8320185"],["-111.1318864","38.8320262"],["-111.1325535","38.8319883"],["-111.1333334","38.8318944"],["-111.1340534","38.8317523"],["-111.1345093","38.83163"],["-111.1349453","38.8314918"],["-111.1354422","38.8313061"],["-111.1359721","38.8310685"],["-111.1364923","38.8307918"],["-111.1371833","38.8303755"],["-111.1419739","38.8272947"],["-111.142451","38.826961"],["-111.1430098","38.8265507"],["-111.1436768","38.8260492"],["-111.1442243","38.8256422"],["-111.1450047","38.8250751"],["-111.1454868","38.8247598"],["-111.1461197","38.8243874"],["-111.1515752","38.8213832"],["-111.1528715","38.8206969"],["-111.1534451","38.8204247"],["-111.1544748","38.8199828"],["-111.1550996","38.8197481"],["-111.1559587","38.8194542"],["-111.1568198","38.8191895"],["-111.1575679","38.8189965"],["-111.158697","38.818742"],["-111.159551","38.8185942"],["-111.1603213","38.8184881"],["-111.1616301","38.818356"],["-111.1879535","38.8161325"],["-111.1906175","38.8158246"],["-111.1917338","38.8156433"],["-111.1930281","38.8154105"],["-111.1940539","38.815205"],["-111.1959948","38.8147422"],["-111.1968222","38.8145147"],["-111.1975473","38.8143072"],["-111.1984835","38.814028"],["-111.2014363","38.8131012"],["-111.2030249","38.8125856"],["-111.2040257","38.8123198"],["-111.2046931","38.8121651"],["-111.2053634","38.8120598"],["-111.2062822","38.8119377"],["-111.2155535","38.8110163"],["-111.2173982","38.810842"],["-111.2193804","38.8106453"],["-111.2213988","38.8104483"],["-111.2233015","38.8102763"],["-111.2274223","38.8099408"],["-111.2295562","38.8098563"],["-111.2309232","38.8098329"],["-111.2449994","38.8102598"],["-111.2476682","38.8103164"],["-111.2484225","38.8102779"],["-111.2492434","38.8102092"],["-111.2506964","38.8100249"],["-111.2521749","38.8097718"],["-111.2532931","38.809533"],["-111.2540625","38.8093123"],["-111.2556025","38.8088052"],["-111.2573733","38.8080715"],["-111.2606857","38.8064041"],["-111.26252","38.8054426"],["-111.2631401","38.8050615"],["-111.2634921","38.8048196"],["-111.2637696","38.80461"],["-111.2640287","38.804388"],["-111.2642946","38.8041104"],["-111.2646261","38.8037403"],["-111.2650461","38.8032409"],["-111.2659011","38.8021303"],["-111.2665856","38.8013836"],["-111.2669144","38.8010753"],["-111.2672998","38.8007625"],["-111.2677178","38.8004759"],["-111.2681671","38.8002109"],["-111.2688974","38.7998789"],["-111.2696672","38.7996014"],["-111.2703832","38.7994189"],["-111.2711173","38.7992938"],["-111.2716301","38.7992407"],["-111.2721077","38.7992273"],["-111.2725757","38.7992427"],["-111.2732253","38.799291"],["-111.2742038","38.7993887"],["-111.274734","38.7994308"],["-111.2751827","38.7994444"],["-111.2760132","38.799402"],["-111.2767168","38.7993349"],["-111.2771147","38.7992827"],["-111.2774335","38.7992205"],["-111.281825","38.798231"],["-111.2829812","38.7979309"],["-111.2836432","38.7977302"],["-111.2842623","38.7975185"],["-111.2848829","38.7972921"],["-111.2859693","38.7968418"],["-111.2868949","38.7963851"],["-111.287777","38.7959215"],["-111.2887951","38.7953252"],["-111.2973496","38.7900421"],["-111.2984217","38.789344"],["-111.29932","38.7887037"],["-111.3006371","38.7875447"],["-111.3020109","38.7861397"],["-111.3030009","38.7851553"],["-111.3037743","38.7844763"],["-111.3046261","38.7837941"],["-111.3062063","38.782742"],["-111.3071538","38.7822362"],["-111.3091123","38.7813066"],["-111.3108777","38.7805982"],["-111.314089","38.7793582"],["-111.3199558","38.7770233"],["-111.3255542","38.774817"],["-111.3276362","38.7740073"],["-111.3312697","38.7725469"],["-111.3442935","38.767421"],["-111.3451204","38.7671337"],["-111.3461475","38.7668344"],["-111.3475593","38.7664724"],["-111.3490256","38.7662001"],["-111.350424","38.7660133"],["-111.3515844","38.7658533"],["-111.3532277","38.7655954"],["-111.3546601","38.7652913"],["-111.3563179","38.7649001"],["-111.3592985","38.7639253"],["-111.3642832","38.762223"],["-111.365753","38.7617383"],["-111.3675194","38.7611231"],["-111.3711608","38.7598804"],["-111.3793343","38.7571493"],["-111.3802011","38.7569093"],["-111.381023","38.7566982"],["-111.38217","38.7564408"],["-111.3833829","38.7561915"],["-111.3848614","38.7559431"],["-111.3862465","38.755761"],["-111.3875874","38.7556249"],["-111.3907782","38.7554698"],["-111.3932664","38.755535"],["-111.3951724","38.7556725"],["-111.3965907","38.7558334"],["-111.398068","38.7560586"],["-111.3998335","38.7563921"],["-111.4057197","38.7576402"],["-111.4070571","38.7578863"],["-111.4081841","38.758036"],["-111.4090862","38.7581023"],["-111.4102009","38.7581105"],["-111.4115147","38.7580126"],["-111.4132595","38.7578411"],["-111.4173989","38.7574457"],["-111.4198403","38.7572504"],["-111.422407","38.7571849"],["-111.4331135","38.7572331"],["-111.4342859","38.7572109"],["-111.4357163","38.7571627"],["-111.4373693","38.7570227"],["-111.441575","38.7563989"],["-111.4423694","38.7563415"],["-111.4429638","38.7563541"],["-111.4438706","38.7564525"],["-111.4442436","38.7565365"],["-111.4446098","38.7566235"],["-111.4450195","38.7567564"],["-111.4458348","38.7571027"],["-111.4476823","38.7580301"],["-111.4496333","38.7590012"],["-111.4506029","38.7594531"],["-111.4512906","38.7597014"],["-111.4519248","38.7598953"],["-111.4565148","38.7611507"],["-111.4606418","38.7622763"],["-111.4624218","38.7627813"],["-111.4634921","38.7632133"],["-111.4643576","38.7636525"],["-111.4678112","38.7657762"],["-111.4685857","38.7662486"],["-111.4696665","38.7669781"],["-111.4707191","38.7678645"],["-111.4710078","38.768184"],["-111.4714668","38.7687657"],["-111.4718978","38.7694308"],["-111.472292","38.7701634"],["-111.4727809","38.7711496"],["-111.4732216","38.7720042"],["-111.4735278","38.7724859"],["-111.4739145","38.7729906"],["-111.4744224","38.7735239"],["-111.4778028","38.776349"],["-111.4785595","38.7769201"],["-111.47913","38.7773058"],["-111.4797051","38.7776243"],["-111.4803463","38.7779205"],["-111.4809198","38.7781356"],["-111.481605","38.7783867"],["-111.4822875","38.7786524"],["-111.483221","38.7790796"],["-111.4838077","38.7793938"],["-111.4842893","38.7797065"],["-111.4847607","38.7800903"],["-111.4853101","38.780595"],["-111.4860915","38.7813063"],["-111.4864718","38.7816205"],["-111.4867488","38.7818145"],["-111.4872191","38.782105"],["-111.4877134","38.7823796"],["-111.4884054","38.7827044"],["-111.4887363","38.7828252"],["-111.489193","38.7829731"],["-111.4898307","38.783139"],["-111.4904546","38.7832823"],["-111.4911332","38.7833476"],["-111.4919132","38.7834234"],["-111.4930153","38.7835403"],["-111.4938259","38.7837086"],["-111.4945929","38.7839145"],["-111.4953727","38.7842101"],["-111.4961039","38.784564"],["-111.4967243","38.7849413"],["-111.5017755","38.788361"],["-111.5024025","38.7888198"],["-111.5029862","38.7893256"],["-111.5034267","38.7897483"],["-111.5038264","38.7902209"],["-111.5042634","38.79078"],["-111.5047989","38.7914813"],["-111.5055182","38.7924086"],["-111.5063032","38.7934073"],["-111.5072841","38.7946218"],["-111.5080414","38.7952916"],["-111.5087607","38.7958264"],["-111.5103765","38.7969501"],["-111.5113352","38.7976823"],["-111.5125212","38.7986381"],["-111.5148923","38.8004987"],["-111.5159882","38.8013161"],["-111.516944","38.8018182"],["-111.5175107","38.8020339"],["-111.5181252","38.8021886"],["-111.5187598","38.8023292"],["-111.5204063","38.8025149"],["-111.5210084","38.8025874"],["-111.5222457","38.8029397"],["-111.5276553","38.8050065"],["-111.5285401","38.8054772"],["-111.5290143","38.8058131"],["-111.5295334","38.8062513"],["-111.5298869","38.8065844"],["-111.5302398","38.8068958"],["-111.5307835","38.8073694"],["-111.5320735","38.8084908"],["-111.5341612","38.8102766"],["-111.5346325","38.8107155"],["-111.5351539","38.8112768"],["-111.5355291","38.8117221"],["-111.5357722","38.812106"],["-111.5359336","38.8124143"],["-111.5361855","38.8129989"],["-111.5362574","38.813286"],["-111.5363091","38.8135708"],["-111.5363338","38.8138979"],["-111.5363268","38.8145401"],["-111.5363461","38.8152941"],["-111.5363759","38.8159551"],["-111.5364843","38.8165533"],["-111.5366896","38.8171626"],["-111.5369666","38.8178259"],["-111.5373192","38.818649"],["-111.5391736","38.8229314"],["-111.5393183","38.8234901"],["-111.5394031","38.8242166"],["-111.5393426","38.8251592"],["-111.5391114","38.826567"],["-111.5388258","38.8282365"],["-111.5382149","38.832163"],["-111.5380522","38.8334427"],["-111.5378839","38.8358405"],["-111.537795","38.8372864"],["-111.5376825","38.8394748"],["-111.5377459","38.8401405"],["-111.5378956","38.840852"],["-111.5383445","38.8423981"],["-111.5386827","38.8433854"],["-111.5393352","38.845428"],["-111.5395545","38.8461404"],["-111.5397845","38.8468713"],["-111.5400563","38.8477055"],["-111.5403447","38.8484051"],["-111.5406835","38.8490198"],["-111.5410236","38.8494726"],["-111.5413718","38.8498739"],["-111.5420346","38.8504272"],["-111.542737","38.8508758"],["-111.5434196","38.8512084"],["-111.544174","38.8515187"],["-111.5454144","38.8519827"],["-111.5465703","38.8524724"],["-111.5472775","38.8528622"],["-111.5478864","38.8532752"],["-111.5484353","38.8537617"],["-111.5490888","38.8544811"],["-111.5497417","38.8553752"],["-111.5506276","38.856575"],["-111.5518675","38.8583664"],["-111.5523011","38.8592338"],["-111.5524819","38.8597003"],["-111.5526191","38.8601696"],["-111.5526631","38.8607879"],["-111.5526643","38.8616291"],["-111.5526279","38.8619853"],["-111.5524906","38.8623881"],["-111.5522031","38.8631441"],["-111.5518233","38.8642197"],["-111.5516604","38.8652744"],["-111.5516328","38.8659672"],["-111.5516822","38.8666242"],["-111.5518092","38.8673923"],["-111.5521972","38.8687774"],["-111.5526031","38.8700688"],["-111.5533658","38.8727014"],["-111.553644","38.8735824"],["-111.5539652","38.8743211"],["-111.5543608","38.8749618"],["-111.5549367","38.8756477"],["-111.5554606","38.8761061"],["-111.5560708","38.8765137"],["-111.5566403","38.8768172"],["-111.5571602","38.877039"],["-111.557599","38.877198"],["-111.5582679","38.8773768"],["-111.55888","38.8775263"],["-111.5620757","38.8781653"],["-111.5629409","38.8783547"],["-111.5636716","38.8785456"],["-111.5641991","38.8786892"],["-111.5649798","38.8789218"],["-111.5656143","38.8791299"],["-111.5663466","38.8793888"],["-111.5671224","38.8796873"],["-111.5697203","38.8807802"],["-111.5703947","38.8810583"],["-111.5709366","38.8812576"],["-111.5714429","38.8814219"],["-111.5724862","38.8817165"],["-111.573247","38.8818515"],["-111.5737452","38.881918"],["-111.57426","38.8819701"],["-111.5746817","38.8820015"],["-111.5755453","38.8820098"],["-111.5768853","38.881976"],["-111.5810123","38.8818964"],["-111.5822224","38.8819093"],["-111.5828544","38.881944"],["-111.5833072","38.882009"],["-111.5850287","38.8824019"],["-111.5857901","38.8825531"],["-111.5863144","38.8826328"],["-111.5872114","38.8827045"],["-111.587724","38.882717"],["-111.5883692","38.88272"],["-111.589011","38.8826784"],["-111.5896533","38.8826144"],["-111.5903283","38.8825209"],["-111.5910046","38.8824162"],["-111.5918209","38.8823164"],["-111.5923494","38.8822847"],["-111.5927558","38.8822953"],["-111.5931856","38.8823288"],["-111.5935677","38.8823883"],["-111.5938599","38.8824481"],["-111.5941352","38.8825176"],["-111.594696","38.882738"],["-111.5953186","38.8830158"],["-111.5959333","38.8833516"],["-111.5965594","38.8837045"],["-111.5970506","38.8839305"],["-111.597499","38.8841035"],["-111.5978832","38.8842226"],["-111.5982989","38.8843085"],["-111.5992019","38.8844159"],["-111.6011684","38.8844955"],["-111.6016647","38.8845617"],["-111.6021973","38.8846837"],["-111.6025915","38.8848226"],["-111.6029632","38.8849665"],["-111.6034094","38.8851607"],["-111.6039637","38.8854119"],["-111.6045778","38.8856851"],["-111.6053945","38.886005"],["-111.6066183","38.8864429"],["-111.607998","38.8869897"],["-111.6092358","38.8876616"],["-111.610567","38.8884213"],["-111.6115733","38.8890303"],["-111.6135178","38.8902571"],["-111.6143228","38.8907731"],["-111.6150144","38.8911828"],["-111.6156304","38.8915282"],["-111.6163274","38.8918512"],["-111.6168989","38.8920979"],["-111.6195706","38.8929515"],["-111.6206113","38.8933752"],["-111.6219901","38.8939876"],["-111.6230044","38.894428"],["-111.623837","38.8947253"],["-111.6247253","38.8950011"],["-111.62639","38.8954148"],["-111.6269503","38.8955604"],["-111.6273368","38.8956901"],["-111.6278174","38.8959132"],["-111.6283308","38.8962404"],["-111.6301688","38.897846"],["-111.6313706","38.898952"],["-111.6317531","38.8993435"],["-111.6319931","38.899641"],["-111.6322607","38.9000627"],["-111.6324113","38.9003953"],["-111.6325356","38.9008378"],["-111.6327122","38.901498"],["-111.632874","38.9021076"],["-111.6331389","38.9027261"],["-111.633319","38.9030421"],["-111.6337402","38.9035102"],["-111.6340871","38.9038244"],["-111.6344986","38.9041367"],["-111.6348855","38.9043398"],["-111.6353738","38.9045624"],["-111.6362023","38.9049086"],["-111.6370807","38.905256"],["-111.6375306","38.9053849"],["-111.6379227","38.9054572"],["-111.6383794","38.9055182"],["-111.6387526","38.9055338"],["-111.6391793","38.9055219"],["-111.6395984","38.905489"],["-111.6401206","38.9054011"],["-111.6404733","38.9053138"],["-111.6408113","38.9052005"],["-111.6413007","38.9049749"],["-111.6417576","38.9047172"],["-111.64212","38.9044505"],["-111.6425857","38.904014"],["-111.6428737","38.9037238"],["-111.6431422","38.9033622"],["-111.6433331","38.9029421"],["-111.6434533","38.9024791"],["-111.6435624","38.9017663"],["-111.6436498","38.900981"],["-111.643751","38.9004783"],["-111.6439532","38.9000069"],["-111.6442675","38.8995423"],["-111.6445999","38.8991272"],["-111.6449094","38.898855"],["-111.6452231","38.8986452"],["-111.6455519","38.8984625"],["-111.6458843","38.8982983"],["-111.6462376","38.8981585"],["-111.6468013","38.8979964"],["-111.647349","38.8979023"],["-111.6477717","38.8978713"],["-111.648194","38.8978623"],["-111.64885","38.8978903"],["-111.6496882","38.8979332"],["-111.6502411","38.8979416"],["-111.6507588","38.8979251"],["-111.6513436","38.8978861"],["-111.6526393","38.8978183"],["-111.6533083","38.8978402"],["-111.6539846","38.897902"],["-111.654675","38.8979996"],["-111.6572329","38.8984266"],["-111.6579623","38.8985945"],["-111.6587149","38.8988011"],["-111.6594167","38.8990511"],["-111.6602282","38.8994062"],["-111.6611117","38.8998202"],["-111.6622658","38.9002843"],["-111.6630551","38.9005437"],["-111.6637736","38.9007283"],["-111.6644968","38.9008912"],["-111.6654897","38.9010517"],["-111.6672928","38.9012907"],["-111.667742","38.9013757"],["-111.6682711","38.9015323"],["-111.670515","38.9024094"],["-111.6711531","38.9026253"],["-111.6715715","38.9027473"],["-111.6719487","38.902845"],["-111.672338","38.9029357"],["-111.6731055","38.9030364"],["-111.6736314","38.9030765"],["-111.6749027","38.9031001"],["-111.6763762","38.9030893"],["-111.6769258","38.9031046"],["-111.6773318","38.903137"],["-111.6777786","38.9031952"],["-111.678275","38.9032756"],["-111.6788132","38.9033823"],["-111.6807665","38.9038686"],["-111.6814393","38.903997"],["-111.6820135","38.9040571"],["-111.6828317","38.9040838"],["-111.685338","38.9039491"],["-111.6860841","38.9039626"],["-111.6865496","38.9039923"],["-111.6869234","38.9040398"],["-111.6872377","38.904101"],["-111.6875945","38.9041813"],["-111.6882325","38.9043843"],["-111.6888626","38.9046215"],["-111.6913913","38.9057737"],["-111.6930488","38.9065098"],["-111.6942791","38.9069662"],["-111.6951223","38.9072532"],["-111.6984174","38.9083128"],["-111.7010402","38.9091403"],["-111.7020885","38.9094518"],["-111.7028025","38.909638"],["-111.7035898","38.9097592"],["-111.7041151","38.9097889"],["-111.7045885","38.9097942"],["-111.7060812","38.9096904"],["-111.7067617","38.9096414"],["-111.7074155","38.909634"],["-111.7077891","38.9096543"],["-111.7082221","38.9096915"],["-111.7085916","38.9097594"],["-111.7090943","38.9098771"],["-111.7096109","38.91003"],["-111.7101754","38.9102392"],["-111.7105639","38.9104151"],["-111.7109797","38.9106663"],["-111.7116868","38.9111289"],["-111.7129061","38.9119672"],["-111.713607","38.9123284"],["-111.7142013","38.9125703"],["-111.7148863","38.9128126"],["-111.7155683","38.9130647"],["-111.7160438","38.9132614"],["-111.7165105","38.9135042"],["-111.7184868","38.9146746"],["-111.7189847","38.914928"],["-111.7193741","38.9150943"],["-111.7199119","38.9152823"],["-111.7203919","38.9154356"],["-111.7208487","38.9155483"],["-111.7214167","38.9156556"],["-111.7218964","38.9157303"],["-111.7223337","38.9157689"],["-111.724288","38.9158417"],["-111.7251759","38.915928"],["-111.725879","38.9160301"],["-111.7282136","38.9164976"],["-111.728905","38.916604"],["-111.7296811","38.9166489"],["-111.7305125","38.9166066"],["-111.7312809","38.9165176"],["-111.7319732","38.9163775"],["-111.7326424","38.9162337"],["-111.7332819","38.9160744"],["-111.7338035","38.9159513"],["-111.7342877","38.9158876"],["-111.7349819","38.9158387"],["-111.7359839","38.9158666"],["-111.737283","38.9160253"],["-111.7446275","38.9173282"],["-111.7463691","38.9176918"],["-111.7472037","38.9179159"],["-111.7479482","38.918152"],["-111.7496074","38.9187285"],["-111.7521611","38.9196348"],["-111.7537489","38.9201487"],["-111.7551467","38.9205283"],["-111.7564459","38.9207831"],["-111.7596449","38.9213156"],["-111.7614365","38.921619"],["-111.7629918","38.9219647"],["-111.7656643","38.9228243"],["-111.7689892","38.9239817"],["-111.7710925","38.9245631"],["-111.7730875","38.9249978"],["-111.77485","38.9252709"],["-111.7780124","38.9256637"],["-111.7787005","38.9257815"],["-111.7792473","38.9258935"],["-111.7797581","38.9260406"],["-111.7804536","38.9262844"],["-111.7809589","38.9264936"],["-111.7814705","38.9267336"],["-111.7818951","38.9269953"],["-111.7826143","38.9275252"],["-111.7860111","38.9302893"],["-111.7868623","38.9309428"],["-111.7876544","38.9314378"],["-111.7883048","38.9317813"],["-111.7889188","38.9320219"],["-111.7897936","38.9323111"],["-111.7905461","38.9325303"],["-111.7911735","38.9326631"],["-111.7917235","38.9327552"],["-111.792777","38.9328345"],["-111.8009431","38.9332439"],["-111.8038908","38.933204"],["-111.8065169","38.9330421"],["-111.8170578","38.9317056"],["-111.8195876","38.9313832"],["-111.8242896","38.9307665"],["-111.8261946","38.9305825"],["-111.8280263","38.9304469"],["-111.8293736","38.9303823"],["-111.83131","38.93041"],["-111.8331093","38.930465"],["-111.8362101","38.9307211"],["-111.8374472","38.9308789"],["-111.8389963","38.9311147"],["-111.8408827","38.9314708"],["-111.8450429","38.9324315"],["-111.8455444","38.9325463"],["-111.8458996","38.9326473"],["-111.8461598","38.9327253"],["-111.8464083","38.9327894"],["-111.8466469","38.9328587"],["-111.8471684","38.9329819"],["-111.8474936","38.9330524"],["-111.8482267","38.9332018"],["-111.8486488","38.9332888"],["-111.849025","38.9333635"],["-111.8493929","38.9334265"],["-111.8499918","38.9335371"],["-111.8503159","38.93359"],["-111.8515696","38.9337836"],["-111.8518789","38.933817"],["-111.8521902","38.9338413"],["-111.8533063","38.933889"],["-111.8543089","38.9339305"],["-111.8548976","38.933938"],["-111.8554982","38.9339156"],["-111.8562391","38.9338739"],["-111.8570726","38.9338047"],["-111.857787","38.9337171"],["-111.8588292","38.9335613"],["-111.8598195","38.9333738"],["-111.8609187","38.9331113"],["-111.8616225","38.9329189"],["-111.8624298","38.9326642"],["-111.863676","38.9322089"],["-111.8646798","38.9317809"],["-111.8651427","38.9315594"],["-111.865721","38.9312609"],["-111.8664456","38.9308669"],["-111.8672537","38.930375"],["-111.8681288","38.9297791"],["-111.8689988","38.9291427"],["-111.8700228","38.9281608"],["-111.8761158","38.922191"],["-111.8807547","38.9176011"],["-111.8823525","38.9161492"],["-111.8833187","38.9153501"],["-111.8839753","38.9149199"],["-111.8865128","38.9134768"],["-111.8996051","38.9063382"],["-111.9003019","38.9058773"],["-111.9013581","38.9050329"],["-111.9024367","38.904"],["-111.9029347","38.9034203"],["-111.9033382","38.9028332"],["-111.9038163","38.9020964"],["-111.9040073","38.9016861"],["-111.9045518","38.8998102"],["-111.9051129","38.8968392"],["-111.9054622","38.8952726"],["-111.9058599","38.8937446"],["-111.9063738","38.8926768"],["-111.9069458","38.8917983"],["-111.9075998","38.8910326"],["-111.9083949","38.8903678"],["-111.9093396","38.8896813"],["-111.9103327","38.8891601"],["-111.9118196","38.8885062"],["-111.9149746","38.8871397"],["-111.9165514","38.8863185"],["-111.9196834","38.8845252"],["-111.9228837","38.8826568"],["-111.9252383","38.8813157"],["-111.9274368","38.8801234"],["-111.9290096","38.879506"],["-111.9300068","38.8791697"],["-111.9309554","38.8789709"],["-111.9318742","38.8787987"],["-111.9332424","38.8786751"],["-111.9343947","38.8786483"],["-111.9355623","38.8787084"],["-111.936655","38.8788403"],["-111.9409007","38.8795691"],["-111.9420316","38.8797155"],["-111.9430291","38.8798084"],["-111.9438848","38.8798489"],["-111.9447174","38.8798676"],["-111.9458941","38.8798328"],["-111.9468603","38.8797656"],["-111.9478047","38.8796631"],["-111.948724","38.8795339"],["-111.9496498","38.8793586"],["-111.9507083","38.8791034"],["-111.9520103","38.8787414"],["-111.9571587","38.8769602"],["-111.957298","38.8769108"],["-111.9579966","38.8766577"],["-111.9682612","38.8729582"],["-111.9700445","38.8721972"],["-111.9719812","38.8711761"],["-111.9727822","38.8706716"],["-111.9736986","38.8699634"],["-111.9750723","38.8687852"],["-111.9829829","38.8616966"],["-111.9840669","38.8607728"],["-111.9854045","38.8598625"],["-111.9863705","38.8593014"],["-112.0235934","38.8397611"],["-112.0273073","38.8377432"],["-112.0284441","38.8369697"],["-112.0297233","38.8359805"],["-112.063063","38.8055821"],["-112.0752448","38.7950817"],["-112.0768577","38.7937068"],["-112.0782831","38.7924755"],["-112.0789682","38.7919305"],["-112.0797225","38.7914575"],["-112.0804685","38.791053"],["-112.0812808","38.7906601"],["-112.0825606","38.7901722"],["-112.0838588","38.7896967"],["-112.0860238","38.788904"],["-112.0869107","38.7885626"],["-112.0873923","38.7883487"],["-112.0880494","38.7879984"],["-112.0889201","38.7874684"],["-112.0905549","38.7862053"],["-112.0912694","38.7854171"],["-112.0935215","38.7827396"],["-112.0942908","38.7818223"],["-112.0950905","38.7807009"],["-112.0958568","38.7791756"],["-112.096711","38.7774272"],["-112.0973506","38.7761271"],["-112.0976891","38.7753663"],["-112.0989547","38.772784"],["-112.0998797","38.770843"],["-112.1004042","38.7699003"],["-112.1011491","38.7686596"],["-112.1029083","38.7658257"],["-112.10417","38.7637738"],["-112.104506","38.7632401"],["-112.1048563","38.762621"],["-112.1050575","38.7621841"],["-112.1051941","38.7617883"],["-112.1053313","38.7613293"],["-112.1054612","38.7607599"],["-112.1055107","38.7600996"],["-112.1054573","38.7579015"],["-112.1054133","38.7559229"],["-112.1053461","38.7530975"],["-112.1055448","38.7515671"],["-112.1057968","38.7506078"],["-112.1065064","38.7486361"],["-112.1080362","38.7462376"],["-112.1100189","38.7433356"],["-112.1120626","38.7404071"],["-112.1154666","38.7367077"],["-112.1181153","38.7339261"],["-112.1202138","38.7325943"],["-112.1267516","38.7288356"],["-112.1276446","38.728212"],["-112.1283247","38.7276757"],["-112.1287419","38.7272169"],["-112.129115","38.7267282"],["-112.1297959","38.725564"],["-112.1305301","38.7241955"],["-112.131434","38.7224124"],["-112.1320798","38.7211294"],["-112.1326869","38.7199627"],["-112.1351376","38.7151771"],["-112.1385019","38.7086748"],["-112.1393318","38.7071498"],["-112.1399451","38.7062005"],["-112.1457847","38.6980923"],["-112.1461254","38.6975257"],["-112.1464869","38.6967645"],["-112.1471601","38.6951481"],["-112.1474525","38.6945273"],["-112.1477107","38.6941469"],["-112.1480432","38.6936827"],["-112.1484678","38.6931643"],["-112.1491957","38.6924474"],["-112.1502228","38.6915218"],["-112.1508035","38.6909534"],["-112.1512821","38.6903277"],["-112.151903","38.6893978"],["-112.1524613","38.6886371"],["-112.1529372","38.6879929"],["-112.1541173","38.6862922"],["-112.1546204","38.6855825"],["-112.1551384","38.6848664"],["-112.1561507","38.6834521"],["-112.1568664","38.6824654"],["-112.1576599","38.6813582"],["-112.1582482","38.6804988"],["-112.1597837","38.6783332"],["-112.1609286","38.6769651"],["-112.1617475","38.6760492"],["-112.1639368","38.6740418"],["-112.1649804","38.6731178"],["-112.1665203","38.6718627"],["-112.1695196","38.6695673"],["-112.1711263","38.6680876"],["-112.1737553","38.6655084"],["-112.1762745","38.6630418"],["-112.1770737","38.6624098"],["-112.1779692","38.6617915"],["-112.1790908","38.6611238"],["-112.1799999","38.6606892"],["-112.1809044","38.6603017"],["-112.1820621","38.6598849"],["-112.1832066","38.6595755"],["-112.1844009","38.6593092"],["-112.185422","38.6591554"],["-112.1872114","38.6589884"],["-112.1957806","38.6588834"],["-112.1978649","38.6588214"],["-112.1988372","38.6586987"],["-112.1995394","38.6585658"],["-112.2002508","38.6583713"],["-112.2014652","38.6579437"],["-112.2036956","38.6570238"],["-112.2078358","38.6552921"],["-112.2088625","38.6548126"],["-112.2095179","38.6544574"],["-112.210096","38.6540712"],["-112.2106554","38.6536274"],["-112.2115795","38.6527344"],["-112.2170937","38.645657"],["-112.2182485","38.6441848"],["-112.2188619","38.6433181"],["-112.2195682","38.6421575"],["-112.220502","38.6400694"],["-112.2227901","38.6343961"],["-112.2240198","38.6314477"],["-112.2243575","38.6305752"],["-112.2279859","38.6215069"],["-112.2287568","38.6196232"],["-112.2296257","38.6173181"],["-112.2312361","38.6131612"],["-112.232679","38.6096275"],["-112.2333385","38.6081036"],["-112.2338637","38.6072414"],["-112.2345436","38.6064196"],["-112.2355916","38.6055032"],["-112.236223","38.6050674"],["-112.2369948","38.6046299"],["-112.2380101","38.6041538"],["-112.2388899","38.6038408"],["-112.2421376","38.6029976"],["-112.2436795","38.6026143"],["-112.2468158","38.6018201"],["-112.2499148","38.6010202"],["-112.251621","38.6005969"],["-112.2530904","38.6002518"],["-112.2539298","38.6000315"],["-112.2580835","38.5989444"],["-112.2598125","38.5984694"],["-112.2607621","38.5981087"],["-112.2616685","38.5976572"],["-112.262717","38.596989"],["-112.2637712","38.5961028"],["-112.267789","38.5923499"],["-112.2687254","38.5915015"],["-112.2701946","38.5901311"],["-112.2711422","38.5892285"],["-112.2734037","38.5871151"],["-112.2742104","38.5863402"],["-112.2767079","38.5840095"],["-112.279768","38.5809301"],["-112.2803394","38.58046"],["-112.280847","38.5801286"],["-112.2813671","38.5798567"],["-112.2818816","38.579648"],["-112.2825778","38.579423"],["-112.283138","38.5793114"],["-112.2837028","38.5792115"],["-112.2840882","38.5791938"],["-112.2848348","38.5791913"],["-112.2891979","38.5792917"],["-112.2903976","38.5793877"],["-112.2925136","38.5797134"],["-112.2933837","38.5797832"],["-112.2937934","38.5797791"],["-112.2941198","38.5797706"],["-112.2943345","38.5797549"],["-112.2945641","38.5797276"],["-112.2949564","38.5796669"],["-112.296075","38.5794617"],["-112.2963505","38.579417"],["-112.2966559","38.5793756"],["-112.2969366","38.5793501"],["-112.2971993","38.5793322"],["-112.2974996","38.5793216"],["-112.2977787","38.5793283"],["-112.2980533","38.5793422"],["-112.2982986","38.5793592"],["-112.298489","38.5793797"],["-112.2988921","38.5794426"],["-112.2994823","38.5795662"],["-112.3010715","38.5799651"],["-112.3014541","38.5800513"],["-112.3017737","38.5801123"],["-112.3021267","38.5801584"],["-112.3027526","38.5802099"],["-112.3034301","38.5802"],["-112.3047825","38.5800156"],["-112.30867","38.5794134"],["-112.3114122","38.5789861"],["-112.314599","38.5784901"],["-112.3156536","38.5783209"],["-112.3193272","38.5777498"],["-112.3203005","38.5776649"],["-112.3208696","38.5776872"],["-112.3214169","38.5777312"],["-112.3217752","38.5777939"],["-112.322155","38.5778761"],["-112.3227004","38.5780131"],["-112.3247523","38.5785611"],["-112.3254019","38.5786853"],["-112.326047","38.5787785"],["-112.3266295","38.5788152"],["-112.3272347","38.5788055"],["-112.327868","38.5787283"],["-112.3285215","38.5786046"],["-112.3291498","38.5784313"],["-112.3296319","38.5782498"],["-112.3301417","38.5780114"],["-112.3307864","38.577667"],["-112.3319544","38.5769898"],["-112.3325046","38.5767354"],["-112.3329908","38.5765729"],["-112.3336563","38.5764058"],["-112.3344471","38.5762821"],["-112.3355588","38.5762504"],["-112.3409852","38.5764058"],["-112.3438603","38.5763771"],["-112.3446133","38.5763112"],["-112.3453195","38.5761883"],["-112.3457687","38.5760755"],["-112.3461875","38.5759413"],["-112.3466145","38.5757723"],["-112.3470976","38.5755462"],["-112.3479091","38.5749942"],["-112.3486191","38.5743772"],["-112.3488626","38.5740952"],["-112.3491444","38.5736985"],["-112.3500575","38.5721233"],["-112.3512168","38.5700475"],["-112.3517732","38.5690975"],["-112.3528365","38.5673955"],["-112.3532324","38.5668936"],["-112.3535945","38.5665299"],["-112.3540259","38.5661755"],["-112.3544614","38.5658867"],["-112.3549533","38.5656127"],["-112.3557856","38.5652383"],["-112.3573232","38.56458"],["-112.3578179","38.5643496"],["-112.3582394","38.5641287"],["-112.3587911","38.5637766"],["-112.3596478","38.5631879"],["-112.3607001","38.5623071"],["-112.3610548","38.5619199"],["-112.3616129","38.5611929"],["-112.361883","38.5608215"],["-112.3621324","38.5603387"],["-112.3625002","38.5595063"],["-112.3628549","38.5584076"],["-112.3630577","38.5575862"],["-112.3632187","38.5559725"],["-112.3633849","38.5553248"],["-112.3636512","38.5548155"],["-112.3641417","38.5540764"],["-112.3645775","38.5535477"],["-112.3648792","38.5532636"],["-112.3653207","38.5529493"],["-112.3660232","38.5524515"],["-112.3711095","38.5488103"],["-112.3722372","38.5481628"],["-112.3726286","38.5479696"],["-112.373432","38.5476621"],["-112.3739657","38.5474898"],["-112.3745718","38.5473511"],["-112.3751104","38.5472558"],["-112.3757358","38.5472098"],["-112.3763194","38.5471911"],["-112.3768223","38.547221"],["-112.3772792","38.5472649"],["-112.3777309","38.547335"],["-112.3782649","38.547435"],["-112.3787405","38.5475735"],["-112.3806208","38.5481749"],["-112.3824736","38.5487668"],["-112.3833323","38.5490371"],["-112.3888472","38.5508487"],["-112.3897409","38.5510964"],["-112.3906402","38.5512844"],["-112.3915052","38.5514106"],["-112.3923121","38.5514546"],["-112.3940302","38.5514263"],["-112.4001583","38.5511859"],["-112.4009063","38.5511935"],["-112.4019563","38.5512655"],["-112.4029074","38.5514011"],["-112.4115812","38.5534371"],["-112.4131383","38.5537603"],["-112.4153622","38.5540407"],["-112.4175749","38.5541408"],["-112.419596","38.5542258"],["-112.4203812","38.5543219"],["-112.4209527","38.5544436"],["-112.4214208","38.5545912"],["-112.4218827","38.554768"],["-112.4222797","38.5549529"],["-112.4226533","38.5551519"],["-112.4231747","38.5554944"],["-112.4236864","38.555875"],["-112.4239758","38.5561749"],["-112.4241855","38.5564338"],["-112.4243857","38.5567076"],["-112.424837","38.5574872"],["-112.4251575","38.5581052"],["-112.4256231","38.5591039"],["-112.4264809","38.5607867"],["-112.4267557","38.5612283"],["-112.4269939","38.5615282"],["-112.427265","38.5618264"],["-112.4275169","38.5620599"],["-112.4285555","38.5627927"],["-112.4289566","38.562981"],["-112.4293551","38.5631568"],["-112.4296963","38.5632739"],["-112.4300633","38.5633895"],["-112.4304738","38.5634847"],["-112.4308187","38.5635549"],["-112.4348642","38.5642262"],["-112.435968","38.5644854"],["-112.436988","38.5647399"],["-112.4382763","38.5651699"],["-112.4405922","38.5661733"],["-112.4513001","38.5710912"],["-112.4534532","38.5720473"],["-112.4547341","38.5724896"],["-112.4553482","38.5726717"],["-112.4559796","38.5728416"],["-112.4566071","38.5729947"],["-112.4572779","38.5731404"],["-112.457929","38.5732646"],["-112.4641329","38.5742106"],["-112.4653541","38.5744089"],["-112.465955","38.5745395"],["-112.4675557","38.5749705"],["-112.4683022","38.5752249"],["-112.4792916","38.57932"],["-112.4799723","38.5795881"],["-112.4806576","38.5798921"],["-112.48125","38.5802144"],["-112.4817718","38.5805165"],["-112.4822647","38.5808671"],["-112.4827252","38.5812458"],["-112.4842203","38.5826247"],["-112.4919212","38.5897223"],["-112.4926657","38.5903489"],["-112.4930149","38.5905552"],["-112.4933318","38.5907107"],["-112.4936711","38.5908505"],["-112.4940521","38.5909466"],["-112.4945238","38.59104"],["-112.4950716","38.5910858"],["-112.4957893","38.5910806"],["-112.497619","38.5910465"],["-112.4982511","38.5910712"],["-112.4985523","38.5910998"],["-112.4988192","38.5911476"],["-112.4991632","38.591225"],["-112.4996886","38.5913873"],["-112.5003728","38.5917373"],["-112.5010705","38.5921706"],["-112.5022305","38.5930202"],["-112.50273","38.5933105"],["-112.5031085","38.5934959"],["-112.5037503","38.5937011"],["-112.5049631","38.5940146"],["-112.5056604","38.5942292"],["-112.506231","38.5944885"],["-112.5067366","38.5947942"],["-112.507181","38.5951634"],["-112.5075519","38.5955639"],["-112.5078541","38.5959921"],["-112.5080611","38.5964132"],["-112.5082024","38.5968294"],["-112.5082442","38.5971673"],["-112.5082234","38.5975787"],["-112.5081499","38.5980206"],["-112.5079604","38.5985838"],["-112.5075998","38.5993843"],["-112.507132","38.6003549"],["-112.5066342","38.6013894"],["-112.5063941","38.601987"],["-112.5062889","38.6024733"],["-112.5062303","38.6029583"],["-112.5061861","38.6034113"],["-112.5062298","38.6039568"],["-112.506359","38.6045641"],["-112.5065837","38.6051346"],["-112.5068911","38.6056871"],["-112.5073239","38.6061786"],["-112.5081751","38.6068582"],["-112.5094377","38.6075788"],["-112.5105006","38.6079733"],["-112.5113679","38.6081276"],["-112.5131862","38.6082237"],["-112.5153364","38.6081929"],["-112.5175611","38.6080732"],["-112.5206735","38.6076951"],["-112.5252182","38.6069083"],["-112.5306044","38.605595"],["-112.5339275","38.6050622"],["-112.5366302","38.6049542"],["-112.5405838","38.605307"],["-112.5426617","38.6054023"],["-112.544817","38.6053752"],["-112.5462609","38.6052207"],["-112.5474724","38.6050374"],["-112.549388","38.6045882"],["-112.5513402","38.6040147"],["-112.5545878","38.6025618"],["-112.5582124","38.6007156"],["-112.5683025","38.595571"],["-112.5750565","38.5918852"],["-112.5795863","38.5895306"],["-112.581222","38.5887043"],["-112.5827063","38.5879577"],["-112.5854495","38.5865872"],["-112.5898516","38.5843632"],["-112.5951844","38.581723"],["-112.6030533","38.5776821"],["-112.6038963","38.5772582"],["-112.604954","38.5767127"],["-112.6053133","38.5764871"],["-112.6056172","38.5762701"],["-112.605911","38.5759972"],["-112.6061716","38.5757167"],["-112.6063583","38.5754731"],["-112.6065146","38.5752193"],["-112.6066512","38.5749344"],["-112.6067597","38.574614"],["-112.6068511","38.5742861"],["-112.6068896","38.5739066"],["-112.6068674","38.5735675"],["-112.6067751","38.5730218"],["-112.6066563","38.5727289"],["-112.6064408","38.572289"],["-112.6055383","38.5708324"],["-112.6050906","38.5700377"],["-112.6048502","38.5693321"],["-112.6047425","38.5687639"],["-112.6047133","38.5678961"],["-112.605024","38.5657642"],["-112.6056834","38.5616485"],["-112.6080837","38.5475531"],["-112.6089168","38.5426769"],["-112.6090872","38.5417079"],["-112.609318","38.5403903"],["-112.6095716","38.5389132"],["-112.6098642","38.5373331"],["-112.6181415","38.4890837"],["-112.6182546","38.4879819"],["-112.6182772","38.4870583"],["-112.6182304","38.4861555"],["-112.618089","38.4852614"],["-112.6179086","38.4843666"],["-112.6175542","38.4831973"],["-112.6171585","38.4822172"],["-112.6167886","38.4814231"],["-112.6165278","38.4809397"],["-112.6161334","38.4803127"],["-112.6152667","38.4791565"],["-112.6139802","38.477465"],["-112.6134781","38.4765436"],["-112.6133086","38.4760288"],["-112.6131781","38.4755716"],["-112.6130978","38.475171"],["-112.6130521","38.4747827"],["-112.6130335","38.4742763"],["-112.613081","38.4737583"],["-112.6131649","38.4732298"],["-112.613274","38.4727735"],["-112.6134211","38.4724279"],["-112.6135783","38.471993"],["-112.6139283","38.4714042"],["-112.6142244","38.4709314"],["-112.614538","38.4705476"],["-112.6151533","38.4699524"],["-112.6157722","38.4694058"],["-112.6164325","38.4688142"],["-112.6169819","38.4683025"],["-112.6174191","38.4678244"],["-112.617813","38.4673111"],["-112.6182775","38.466686"],["-112.6188839","38.4657068"],["-112.6192865","38.464962"],["-112.6196198","38.4642878"],["-112.6199115","38.4636261"],["-112.6202086","38.4627573"],["-112.6206","38.4616896"],["-112.6211595","38.4603567"],["-112.6221008","38.4584029"],["-112.6228718","38.4570747"],["-112.6249073","38.454009"],["-112.6257455","38.4528046"],["-112.6283543","38.4489366"],["-112.6301687","38.446163"],["-112.6304398","38.4457477"],["-112.6307039","38.4451613"],["-112.6310272","38.4441304"],["-112.6312151","38.4431099"],["-112.6313346","38.442347"],["-112.6314498","38.4416026"],["-112.6315463","38.4409541"],["-112.6316595","38.4403654"],["-112.6317845","38.4398057"],["-112.6319739","38.439279"],["-112.6324075","38.4384596"],["-112.6327142","38.4379873"],["-112.6331185","38.4374754"],["-112.6334627","38.4371017"],["-112.6338994","38.436657"],["-112.6351641","38.4354459"],["-112.6359384","38.4347086"],["-112.6472771","38.423956"],["-112.6480833","38.4231046"],["-112.6487466","38.4223117"],["-112.6496101","38.421062"],["-112.65005","38.4202803"],["-112.6504687","38.4193939"],["-112.6509571","38.4182495"],["-112.6514055","38.4168547"],["-112.6518194","38.415423"],["-112.6560253","38.4011583"],["-112.6569003","38.3982067"],["-112.6585874","38.3923017"],["-112.6594853","38.3892772"],["-112.6608423","38.3846998"],["-112.6614057","38.3825741"],["-112.6617478","38.3809941"],["-112.6620302","38.3794936"],["-112.6622837","38.3777898"],["-112.6625202","38.3759616"],["-112.6626834","38.373895"],["-112.6627348","38.3726985"],["-112.6627559","38.3712249"],["-112.6627447","38.3700427"],["-112.6627033","38.3685691"],["-112.6625531","38.3665278"],["-112.6623993","38.3650122"],["-112.6621847","38.3634268"],["-112.661931","38.3617882"],["-112.6616542","38.3602428"],["-112.657481","38.3345235"],["-112.6571411","38.3325998"],["-112.6569908","38.3315381"],["-112.6568544","38.3304396"],["-112.6567439","38.3295792"],["-112.656092","38.3255096"],["-112.6558429","38.3239214"],["-112.6554652","38.3217906"],["-112.651446","38.2961948"],["-112.651346","38.2955787"],["-112.6512461","38.2949028"],["-112.6510633","38.2933115"],["-112.6509355","38.2922573"],["-112.6508102","38.2894785"],["-112.6507696","38.2865887"],["-112.6507382","38.2841993"],["-112.6507036","38.2823554"],["-112.6506512","38.2788022"],["-112.6501824","38.2495057"],["-112.6501036","38.2457533"],["-112.6500979","38.2441903"],["-112.6500588","38.242264"],["-112.6497854","38.2280893"],["-112.6496757","38.2259857"],["-112.6493887","38.223276"],["-112.6492428","38.2218099"],["-112.6489434","38.2191821"],["-112.6482018","38.2124504"],["-112.6480034","38.2106651"],["-112.6477338","38.2083314"],["-112.6465541","38.1975843"],["-112.6463747","38.1967872"],["-112.6461994","38.1960713"],["-112.6458913","38.195248"],["-112.6456305","38.1946902"],["-112.6449203","38.1934561"],["-112.6440814","38.1922693"],["-112.6434742","38.191594"],["-112.6428247","38.1909524"],["-112.6421667","38.1903706"],["-112.6416413","38.1899313"],["-112.6388379","38.1878551"],["-112.6366253","38.1860129"],["-112.6352253","38.1846534"],["-112.6267425","38.1761305"],["-112.6252267","38.1745512"],["-112.6241061","38.173061"],["-112.6236605","38.1722722"],["-112.6233491","38.1716714"],["-112.6229602","38.1706517"],["-112.6220703","38.167865"],["-112.6215716","38.166466"],["-112.6210619","38.1652917"],["-112.6204686","38.1642052"],["-112.6197614","38.1631703"],["-112.619009","38.1622302"],["-112.6181808","38.1613033"],["-112.6173901","38.1604035"],["-112.6167672","38.1595579"],["-112.6162259","38.1586649"],["-112.6156424","38.1575594"],["-112.6147877","38.1557324"],["-112.6143631","38.1546378"],["-112.6141291","38.1536833"],["-112.6139992","38.1529106"],["-112.6138394","38.1510376"],["-112.6138781","38.149837"],["-112.6140056","38.148907"],["-112.6141525","38.1482874"],["-112.6144362","38.1472213"],["-112.6145955","38.146746"],["-112.6148484","38.1460783"],["-112.6151876","38.1452987"],["-112.6158588","38.1440267"],["-112.6163639","38.143304"],["-112.616998","38.1424703"],["-112.6185054","38.1407118"],["-112.6200262","38.1390035"],["-112.621769","38.137034"],["-112.6239508","38.1346183"],["-112.625638","38.1327375"],["-112.6314721","38.1262023"],["-112.6317523","38.1258879"],["-112.6321211","38.1255184"],["-112.6333437","38.1241251"],["-112.6395543","38.117153"],["-112.6405956","38.1160748"],["-112.6418533","38.1149207"],["-112.6437986","38.1132389"],["-112.6459299","38.1113881"],["-112.6479159","38.109702"],["-112.6819577","38.0804837"],["-112.6826945","38.0798035"],["-112.6835922","38.0789118"],["-112.6843573","38.0780958"],["-112.6850833","38.0772775"],["-112.6858231","38.0763736"],["-112.686698","38.0752019"],["-112.6875398","38.0739645"],["-112.6882678","38.0727674"],["-112.7726113","37.916873"],["-112.7749993","37.9126761"],["-112.7765065","37.9103459"],["-112.7791431","37.9067394"],["-112.7811589","37.904358"],["-112.7830521","37.9022168"],["-112.8016824","37.8842249"],["-112.8056393","37.8804381"],["-112.8110606","37.8751906"],["-112.8130377","37.8733043"],["-112.8242842","37.8625465"],["-112.8270233","37.8600607"],["-112.8299003","37.8576504"],["-112.8314628","37.8564734"],["-112.8353391","37.8538002"],["-112.8380731","37.8520902"],["-112.8393945","37.8513429"],["-112.8426203","37.8496294"],["-112.8455623","37.8481914"],["-112.8480112","37.8471239"],["-112.8497402","37.8463952"],["-112.8760798","37.8369482"],["-112.8778697","37.8362972"],["-112.9079697","37.8246219"],["-112.9122021","37.8225812"],["-112.9198836","37.8186239"],["-112.92794","37.8140242"],["-112.9684131","37.7893751"],["-112.9741168","37.7860175"],["-112.977154","37.7843242"],["-112.9972098","37.7737201"],["-113.0049833","37.7692056"],["-113.0105786","37.7656235"],["-113.0161831","37.7617779"],["-113.0243981","37.7555889"],["-113.0252585","37.754895"],["-113.0261196","37.7541863"],["-113.0299707","37.750933"],["-113.0323914","37.7487528"],["-113.0353344","37.7460546"],["-113.0383296","37.7431532"],["-113.0404937","37.7409874"],["-113.0456319","37.7357145"],["-113.0475562","37.7337129"],["-113.0595266","37.721324"],["-113.0617067","37.7190616"],["-113.0648058","37.7158134"],["-113.0665539","37.7138118"],["-113.0673514","37.71285"],["-113.0684681","37.711442"],["-113.0690984","37.7105811"],["-113.0700958","37.7091858"],["-113.0715487","37.7069998"],["-113.072319","37.7057718"],["-113.073029","37.7045278"],["-113.0735243","37.7036288"],["-113.074083","37.7026067"],["-113.0757811","37.6990191"],["-113.0762075","37.6979917"],["-113.0768209","37.6963449"],["-113.0775401","37.6943276"],["-113.0782286","37.692064"],["-113.0787543","37.6899994"],["-113.0789","37.6893519"],["-113.0791036","37.688271"],["-113.0792059","37.6877272"],["-113.0794155","37.6864994"],["-113.0795055","37.6858746"],["-113.0797377","37.6836419"],["-113.0799683","37.6798987"],["-113.0798959","37.6659304"],["-113.0799491","37.6647885"],["-113.0800778","37.6634874"],["-113.0802294","37.6623289"],["-113.0805334","37.6605132"],["-113.0813803","37.6574685"],["-113.0816675","37.6566044"],["-113.0820178","37.6556703"],["-113.0825886","37.6543322"],["-113.0828417","37.653765"],["-113.0831266","37.6531366"],["-113.0834178","37.6525317"],["-113.0836262","37.6521179"],["-113.0837504","37.6518714"],["-113.0840677","37.6513653"],["-113.0843404","37.6508369"],["-113.0850963","37.6496261"],["-113.0856364","37.6488228"],["-113.0862224","37.6479795"],["-113.0868233","37.6471725"],["-113.0890285","37.6445396"],["-113.0908878","37.6426761"],["-113.0930409","37.6407655"],["-113.0941209","37.6399019"],["-113.09524","37.6390584"],["-113.0968501","37.6379196"],["-113.0981557","37.6370832"],["-113.0995439","37.6362609"],["-113.1009134","37.6354919"],["-113.1025704","37.6346609"],["-113.1047791","37.6336574"],["-113.1064231","37.632975"],["-113.109449","37.6318838"],["-113.1347605","37.6248014"],["-113.1360335","37.6243907"],["-113.1374133","37.6239108"],["-113.1387652","37.6233814"],["-113.140404","37.6226654"],["-113.14195","37.6219267"],["-113.1434462","37.6211423"],["-113.1448575","37.6203172"],["-113.1460237","37.619566"],["-113.1470377","37.6188697"],["-113.1480842","37.618112"],["-113.1491802","37.6172559"],["-113.1503182","37.6162841"],["-113.1516981","37.6149564"],["-113.1524053","37.6142353"],["-113.1535859","37.6129411"],["-113.1552354","37.6108496"],["-113.1628663","37.6009525"],["-113.1699539","37.5916807"],["-113.1721015","37.588723"],["-113.2020349","37.5420954"],["-113.2038295","37.5390343"],["-113.2048397","37.5370745"],["-113.2057986","37.5351266"],["-113.2070607","37.5320397"],["-113.2075672","37.5307163"],["-113.2083167","37.5283068"],["-113.209994","37.522297"],["-113.2124592","37.5131962"],["-113.2128002","37.5119941"],["-113.2204726","37.4836351"],["-113.2213512","37.4803975"],["-113.2217436","37.4788997"],["-113.2223878","37.4765039"],["-113.225719","37.4641274"],["-113.2271244","37.459026"],["-113.2277929","37.4565723"],["-113.2287667","37.4529838"],["-113.2346041","37.4313238"],["-113.2361352","37.4254287"],["-113.2362195","37.4244007"],["-113.2362391","37.4229167"],["-113.2361287","37.4216218"],["-113.2358739","37.4205055"],["-113.235379","37.4188795"],["-113.2346349","37.4170762"],["-113.2344393","37.4165351"],["-113.2343374","37.4160356"],["-113.2342725","37.4155932"],["-113.2342601","37.4151634"],["-113.2342716","37.4146648"],["-113.2343563","37.4141697"],["-113.2344996","37.4136201"],["-113.2347966","37.4128472"],["-113.2376717","37.4063074"],["-113.2381969","37.4051091"],["-113.2385943","37.4041612"],["-113.2391591","37.4028464"],["-113.2407653","37.3990771"],["-113.2417872","37.3965689"],["-113.2426675","37.3939582"],["-113.2432197","37.3924855"],["-113.2438175","37.3913033"],["-113.246359","37.3866318"],["-113.2467152","37.3858026"],["-113.2472489","37.3842594"],["-113.2488176","37.3791351"],["-113.2490304","37.3785045"],["-113.2492461","37.3780513"],["-113.2496712","37.3773725"],["-113.2506453","37.3761735"],["-113.2557092","37.3702863"],["-113.257421","37.3683523"],["-113.2587039","37.3668422"],["-113.2601691","37.3650276"],["-113.2620049","37.3623563"],["-113.2653603","37.3567173"],["-113.2663984","37.3548715"],["-113.2669865","37.3537374"],["-113.2684058","37.3506379"],["-113.2690306","37.3495046"],["-113.269688","37.3485694"],["-113.270959","37.3469444"],["-113.2738367","37.3433851"],["-113.2749418","37.3419336"],["-113.2755695","37.3410884"],["-113.2761992","37.3402111"],["-113.2774608","37.338379"],["-113.2793038","37.3356014"],["-113.2832679","37.3296399"],["-113.2843131","37.3280775"],["-113.2851576","37.3268096"],["-113.293237","37.3147375"],["-113.2965859","37.3098365"],["-113.2971242","37.3090821"],["-113.2975243","37.3085301"],["-113.2979298","37.3079503"],["-113.2982873","37.3072924"],["-113.2986105","37.3065397"],["-113.2989872","37.3054361"],["-113.2992325","37.3037257"],["-113.2996439","37.2978418"],["-113.300022","37.2954956"],["-113.3007009","37.2931691"],["-113.3011444","37.2919051"],["-113.301561","37.2909735"],["-113.3022444","37.2896423"],["-113.3032256","37.2879901"],["-113.304018","37.2868715"],["-113.3047654","37.2858931"],["-113.3061377","37.2843719"],["-113.3188507","37.2714064"],["-113.3242946","37.2658678"],["-113.3290208","37.2610901"],["-113.3301008","37.2600971"],["-113.3317148","37.2587049"],["-113.3333946","37.2573392"],["-113.3347382","37.2563324"],["-113.3362349","37.2552996"],["-113.3542281","37.243553"],["-113.3551779","37.2430597"],["-113.3558928","37.2427904"],["-113.3571185","37.2424553"],["-113.3585047","37.2421217"],["-113.3598669","37.2417716"],["-113.3606884","37.2414667"],["-113.3616438","37.2410377"],["-113.3625101","37.2405597"],["-113.3635769","37.2397494"],["-113.3647827","37.2387014"],["-113.3665291","37.2371667"],["-113.3670051","37.2367264"],["-113.3675109","37.2362347"],["-113.3678035","37.2359334"],["-113.3736483","37.2296227"],["-113.3746737","37.2287023"],["-113.3767443","37.2270268"],["-113.3840427","37.2213392"],["-113.3857206","37.2199098"],["-113.3879094","37.2177473"],["-113.3894564","37.2159079"],["-113.3935822","37.2105583"],["-113.3957604","37.2076322"],["-113.3974886","37.2054303"],["-113.3991185","37.2032597"],["-113.4065427","37.1935176"],["-113.4083286","37.1911776"],["-113.4112908","37.1872941"],["-113.4134515","37.1845502"],["-113.4141253","37.1838419"],["-113.4149624","37.183048"],["-113.4163879","37.1817868"],["-113.4177747","37.180756"],["-113.4192384","37.1797954"],["-113.4207912","37.1789767"],["-113.4215356","37.178612"],["-113.4230099","37.1779767"],["-113.4237666","37.1776729"],["-113.4250105","37.1772487"],["-113.4288486","37.176038"],["-113.4318524","37.1750241"],["-113.4344691","37.1740682"],["-113.4439512","37.1703256"],["-113.4504516","37.1674465"],["-113.4506391","37.1673577"],["-113.4619084","37.1627002"],["-113.4659722","37.161414"],["-113.4696569","37.1602628"],["-113.4725347","37.1593947"],["-113.4733634","37.1591373"],["-113.4740943","37.158856"],["-113.4745917","37.1586211"],["-113.475028","37.1583933"],["-113.4753993","37.1581664"],["-113.4759191","37.1577888"],["-113.476214","37.1575544"],["-113.4794561","37.154432"],["-113.4817189","37.1522504"],["-113.4841298","37.149944"],["-113.485035","37.1491636"],["-113.486283","37.1482753"],["-113.4870887","37.1477577"],["-113.4881234","37.1471779"],["-113.489591","37.1464975"],["-113.4913471","37.1458332"],["-113.5019646","37.1425298"],["-113.5037333","37.1418992"],["-113.5054942","37.1411947"],["-113.5065237","37.1407224"],["-113.5077939","37.1400952"],["-113.5088738","37.1395243"],["-113.5102255","37.1387554"],["-113.5124277","37.137342"],["-113.5208925","37.1317613"],["-113.5242674","37.1294526"],["-113.5273911","37.127447"],["-113.5293105","37.1262935"],["-113.5309268","37.1254055"],["-113.5319222","37.1248628"],["-113.5332105","37.124213"],["-113.5383064","37.1220148"],["-113.5520991","37.1161281"],["-113.5531853","37.1155748"],["-113.5542169","37.1148867"],["-113.5549695","37.1143252"],["-113.5554543","37.1138855"],["-113.5558188","37.1135288"],["-113.5562051","37.1131386"],["-113.5571161","37.1118396"],["-113.5576146","37.1109933"],["-113.5591586","37.1072885"],["-113.5608913","37.1028831"],["-113.561437","37.1016027"],["-113.5617847","37.1009464"],["-113.5620472","37.1005096"],["-113.5622252","37.100205"],["-113.56238","37.0999853"],["-113.5625886","37.0996954"],["-113.5631765","37.0989096"],["-113.5640373","37.0979629"],["-113.5647982","37.0972067"],["-113.5654792","37.0966137"],["-113.5661317","37.0960801"],["-113.5668988","37.0955318"],["-113.5674225","37.0951822"],["-113.5776286","37.0890251"],["-113.5780534","37.0887518"],["-113.5787267","37.0882778"],["-113.579146","37.0879631"],["-113.5797589","37.0874627"],["-113.5803992","37.0868963"],["-113.5811069","37.0861847"],["-113.5814892","37.0857677"],["-113.5817213","37.0855013"],["-113.5819764","37.0851863"],["-113.5821199","37.0850107"],["-113.5823188","37.0847636"],["-113.5825218","37.0844633"],["-113.5826801","37.0842245"],["-113.583224","37.0833484"],["-113.5833908","37.0830573"],["-113.5838345","37.0822158"],["-113.5841783","37.0814207"],["-113.5842462","37.08125"],["-113.5844696","37.0806086"],["-113.5846204","37.0800989"],["-113.5846812","37.0798728"],["-113.5848202","37.0792679"],["-113.5848837","37.0789284"],["-113.5849263","37.0786552"],["-113.5849796","37.0782329"],["-113.5849966","37.0779846"],["-113.5850226","37.0772028"],["-113.5849938","37.0764003"],["-113.5848946","37.0750905"],["-113.5848754","37.0747462"],["-113.5848515","37.0744447"],["-113.5847574","37.0731762"],["-113.5846981","37.0721569"],["-113.5846184","37.0706177"],["-113.5839509","37.0624692"],["-113.5839489","37.061541"],["-113.5840588","37.0608848"],["-113.5843084","37.0600922"],["-113.5847387","37.0592422"],["-113.5850252","37.0588384"],["-113.5855957","37.0581579"],["-113.586648","37.0569741"],["-113.5871631","37.0562259"],["-113.5875322","37.0554474"],["-113.5878625","37.0544"],["-113.5881616","37.0528381"],["-113.5885117","37.0510521"],["-113.5888471","37.0497571"],["-113.5891528","37.0489064"],["-113.5894887","37.0480789"],["-113.5901813","37.0467619"],["-113.5907771","37.0458181"],["-113.5911656","37.0452578"],["-113.5919152","37.0443954"],["-113.5925758","37.0436885"],["-113.5937096","37.0426213"],["-113.5955871","37.0409046"],["-113.5972347","37.0393976"],["-113.5983044","37.0383262"],["-113.599502","37.0368469"],["-113.5998082","37.0363555"],["-113.6192754","37.006127"],["-113.6201078","37.0050675"],["-113.6221097","37.003297"],["-113.6226313","37.0027711"],["-113.6230467","37.0023285"],["-113.6233357","37.001932"],["-113.6236498","37.0014754"],["-113.6240325","37.0007585"],["-113.6242352","37.0002865"],["-113.624415","36.9997327"],["-113.6245748","36.9991276"],["-113.6246674","36.9981597"],["-113.6246485","36.9950027"],["-113.6247347","36.9940309"],["-113.6249265","36.9933342"],["-113.625312","36.9924767"],["-113.625956","36.9915647"],["-113.6265609","36.9909301"],["-113.6271105","36.9904642"],["-113.6277279","36.9900242"],["-113.6284166","36.9896492"],["-113.6306923","36.9887089"],["-113.6444773","36.983429"],["-113.6475361","36.9824431"],["-113.6496252","36.9818845"],["-113.652573","36.9812942"],["-113.6547581","36.9810018"],["-113.6573635","36.9807306"],["-113.6598876","36.9805959"],["-113.6640476","36.98075"],["-113.6698515","36.9810303"],["-113.6707819","36.9809779"],["-113.6713662","36.9808491"],["-113.6718957","36.9806602"],["-113.6723615","36.9804511"],["-113.6728473","36.9801719"],["-113.6735247","36.9796797"],["-113.6753485","36.9778238"],["-113.6761724","36.9771103"],["-113.6769553","36.9766792"],["-113.6778219","36.9763762"],["-113.6800779","36.976002"],["-113.6817288","36.9756673"],["-113.6831981","36.9752647"],["-113.6845698","36.9746441"],["-113.6871275","36.9733531"],["-113.6881468","36.9729213"],["-113.6886503","36.972769"],["-113.6891691","36.9726688"],["-113.6899326","36.9725855"],["-113.6908195","36.9726082"],["-113.6918532","36.9727286"],["-113.6948562","36.9734715"],["-113.6964063","36.9738323"],["-113.697582","36.9740109"],["-113.6988425","36.9741034"],["-113.7107495","36.9739863"],["-113.7120386","36.973817"],["-113.7131468","36.9734447"],["-113.7144121","36.972632"],["-113.716275","36.9712293"],["-113.7167485","36.9709269"],["-113.717097","36.9707561"],["-113.7174228","36.9706174"],["-113.7177411","36.9704948"],["-113.7180812","36.9703884"],["-113.718438","36.9703154"],["-113.7187588","36.9702757"],["-113.7190904","36.970244"],["-113.7196659","36.9702318"],["-113.7200313","36.9702528"],["-113.7204151","36.9702968"],["-113.7208504","36.9703784"],["-113.7220114","36.9706439"],["-113.7240268","36.971112"],["-113.7252144","36.9713241"],["-113.7257682","36.9713778"],["-113.7263426","36.9713533"],["-113.72698","36.9712633"],["-113.7315526","36.9701983"],["-113.7324105","36.9700982"],["-113.7328986","36.9700862"],["-113.7336808","36.9701596"],["-113.7356944","36.9703897"],["-113.7400733","36.9707201"],["-113.7484963","36.971227"],["-113.7506212","36.9711877"],["-113.7518626","36.970937"],["-113.7535478","36.9702454"],["-113.75423","36.9697901"],["-113.7552732","36.9687171"],["-113.7584908","36.9645737"],["-113.7591922","36.9637472"],["-113.7598586","36.9630418"],["-113.7613073","36.9619197"],["-113.7624945","36.9612837"],["-113.7640827","36.9607275"],["-113.7676037","36.9600268"],["-113.7698283","36.9595345"],["-113.7706813","36.9594504"],["-113.7720718","36.9595695"],["-113.7744218","36.9598722"],["-113.775745","36.9599935"],["-113.7774526","36.9600172"],["-113.779836","36.9599822"],["-113.7816292","36.9599386"],["-113.782344","36.9598488"],["-113.7830251","36.959697"],["-113.7838358","36.9594212"],["-113.7841537","36.9592792"],["-113.7850058","36.9588166"],["-113.7860351","36.9582782"],["-113.7874194","36.9577045"],["-113.7962619","36.9547578"],["-113.7968301","36.9545188"],["-113.7976867","36.9541011"],["-113.7980417","36.9538889"],["-113.7984298","36.9536479"],["-113.7987723","36.9534168"],["-113.799495","36.9528445"],["-113.8021654","36.9505369"],["-113.8052867","36.9478186"],["-113.8061775","36.9471724"],["-113.806995","36.9468211"],["-113.8084505","36.9463583"],["-113.8096284","36.9459781"],["-113.8103112","36.9456968"],["-113.8107145","36.9454844"],["-113.8112505","36.9450568"],["-113.8138093","36.9426857"],["-113.8147304","36.9420437"],["-113.8155964","36.9416596"],["-113.8180381","36.9411189"],["-113.8214882","36.9403848"],["-113.8227568","36.9400757"],["-113.8232148","36.9399024"],["-113.8236902","36.9396671"],["-113.8245452","36.9390752"],["-113.824925","36.9387283"],["-113.825354","36.9382157"],["-113.8256853","36.9376121"],["-113.8259316","36.9370148"],["-113.8260415","36.9364891"],["-113.8260932","36.9359406"],["-113.8261213","36.9343545"],["-113.8262339","36.9338249"],["-113.8264657","36.9333013"],["-113.8274499","36.9319029"],["-113.828439","36.9306135"],["-113.8290132","36.9299737"],["-113.8306944","36.9286201"],["-113.8313755","36.9280145"],["-113.8317982","36.9275057"],["-113.8320747","36.9270811"],["-113.8322569","36.9266564"],["-113.8323676","36.9262128"],["-113.8323402","36.9249535"],["-113.8322036","36.9217786"],["-113.8322722","36.9209876"],["-113.8324091","36.9205855"],["-113.8327588","36.9198385"],["-113.8341582","36.9173616"],["-113.8347478","36.9164644"],["-113.8352613","36.91595"],["-113.8357777","36.9156239"],["-113.8362867","36.9153635"],["-113.837024","36.915156"],["-113.8380208","36.9150706"],["-113.8421046","36.9152189"],["-113.8433397","36.9152882"],["-113.844098","36.9154665"],["-113.8447246","36.9157919"],["-113.8454192","36.9163465"],["-113.8461764","36.9169584"],["-113.8467675","36.9173651"],["-113.8475311","36.9176698"],["-113.8488401","36.9179752"],["-113.8497129","36.9182632"],["-113.8502674","36.9186003"],["-113.8506714","36.9189418"],["-113.8510329","36.9194317"],["-113.8515455","36.9204738"],["-113.8517638","36.9208901"],["-113.8519026","36.9210876"],["-113.8521542","36.9213812"],["-113.852346","36.9215462"],["-113.8525706","36.9217246"],["-113.8529329","36.9219238"],["-113.8533718","36.9221082"],["-113.8535926","36.9221842"],["-113.8539428","36.9222667"],["-113.854283","36.9223216"],["-113.854526","36.9223386"],["-113.8547497","36.9223506"],["-113.8549934","36.922333"],["-113.8552286","36.9223092"],["-113.8554694","36.9222791"],["-113.8558196","36.9221915"],["-113.8568639","36.9218732"],["-113.8573966","36.9216754"],["-113.8578632","36.9214917"],["-113.8583447","36.9213269"],["-113.8588245","36.9211448"],["-113.8593821","36.9208896"],["-113.8597304","36.920708"],["-113.8599752","36.9205554"],["-113.8603372","36.9202682"],["-113.8615334","36.9192359"],["-113.8621501","36.9188163"],["-113.8627471","36.9185531"],["-113.863551","36.9182741"],["-113.8643766","36.9181175"],["-113.8647418","36.9180837"],["-113.8651665","36.9180754"],["-113.8685416","36.9180948"],["-113.8692008","36.9180903"],["-113.8701165","36.9180467"],["-113.8706092","36.917999"],["-113.8715412","36.9178684"],["-113.8721369","36.9177577"],["-113.8732943","36.9174824"],["-113.8739454","36.91728"],["-113.8742835","36.9171487"],["-113.8751079","36.9168069"],["-113.8754997","36.9166345"],["-113.8758714","36.9164532"],["-113.8769625","36.9158432"],["-113.9094973","36.8965962"],["-113.9115063","36.8955213"],["-113.9130419","36.894929"],["-113.9148225","36.8944237"],["-113.9160853","36.8941968"],["-113.9257875","36.8931499"],["-113.9263002","36.8930648"],["-113.9267636","36.892972"],["-113.9271167","36.8928929"],["-113.9277183","36.8927171"],["-113.9285119","36.8924228"],["-113.928882","36.8922745"],["-113.9291585","36.892152"],["-113.9294729","36.8919904"],["-113.9298911","36.8917582"],["-113.9303274","36.8914994"],["-113.9765284","36.8621332"],["-113.9799948","36.8598394"],["-113.9817158","36.8585174"],["-113.9831478","36.8572667"],["-113.9852375","36.8552314"],["-114.0004518","36.8375842"],["-114.0036843","36.8338687"],["-114.0045341","36.8331276"],["-114.0057724","36.8321578"],["-114.0070099","36.8313546"],["-114.008314","36.8306041"],["-114.0097845","36.829938"],["-114.0152763","36.8280896"],["-114.0277864","36.824128"],["-114.0407561","36.8203273"],["-114.0462105","36.8188984"],["-114.0501481","36.817888"],["-114.0558663","36.8163945"],["-114.0571691","36.8160381"],["-114.0580124","36.8157556"],["-114.0589685","36.8153973"],["-114.0702221","36.8100827"],["-114.0709888","36.8097951"],["-114.0717757","36.8095434"],["-114.0725597","36.8093495"],["-114.0733482","36.8092127"],["-114.0740115","36.8091398"],["-114.0746319","36.8091192"],["-114.0753637","36.8091107"],["-114.0762575","36.8091716"],["-114.0786133","36.8095"],["-114.0808365","36.8098128"],["-114.0821952","36.8099674"],["-114.0831843","36.8100143"],["-114.0840879","36.8100324"],["-114.0850778","36.8099844"],["-114.0858201","36.8099274"],["-114.0870149","36.8097909"],["-114.0878048","36.8096505"],["-114.0887383","36.8094459"],["-114.0895779","36.8092345"],["-114.0903993","36.8089703"],["-114.0913693","36.8086171"],["-114.0929753","36.807904"],["-114.0957974","36.8065731"],["-114.0972862","36.8059037"],["-114.0981609","36.8056002"],["-114.0992493","36.8052622"],["-114.1008415","36.8048941"],["-114.1047926","36.8040736"],["-114.1053723","36.8039323"],["-114.1059861","36.8037476"],["-114.1066783","36.8035276"],["-114.1073717","36.8032826"],["-114.1080414","36.8030007"],["-114.1089736","36.8025694"],["-114.109998","36.8020161"],["-114.1109221","36.8014565"],["-114.1419805","36.7799954"],["-114.1433185","36.7791749"],["-114.144485","36.7785154"],["-114.1450208","36.7782392"],["-114.1696848","36.7658796"],["-114.170765","36.7654372"],["-114.1720869","36.7649943"],["-114.1731865","36.7647183"],["-114.1741063","36.764524"],["-114.1749465","36.7643878"],["-114.1761462","36.7642527"],["-114.1773357","36.7641828"],["-114.178432","36.7641894"],["-114.1792657","36.7642203"],["-114.1810737","36.7644161"],["-114.2323719","36.7707191"],["-114.2332694","36.7708504"],["-114.2358163","36.771323"],["-114.2364545","36.7714701"],["-114.2371394","36.7716418"],["-114.2379891","36.7718711"],["-114.2389421","36.7721582"],["-114.246783","36.7746897"],["-114.2487574","36.7753792"],["-114.2506831","36.77627"],["-114.2535332","36.7776299"],["-114.2541027","36.7778765"],["-114.2547141","36.7781239"],["-114.2554521","36.7783888"],["-114.2561876","36.7786098"],["-114.2569025","36.7788015"],["-114.2575527","36.7789544"],["-114.2582912","36.7790993"],["-114.2591084","36.7792356"],["-114.2603123","36.779361"],["-114.2609461","36.7793986"],["-114.2616874","36.7794208"],["-114.2624255","36.7794278"],["-114.2630843","36.7793966"],["-114.2641805","36.7793187"],["-114.2646337","36.7792611"],["-114.2651102","36.7791929"],["-114.3604923","36.7621182"],["-114.3617443","36.7618382"],["-114.416059","36.746553"],["-114.4176375","36.7460367"],["-114.4204443","36.7449475"],["-114.4215845","36.7444184"],["-114.4227123","36.7438718"],["-114.4238961","36.7432341"],["-114.4899395","36.7025887"],["-114.490786","36.702058"],["-114.4917828","36.7013915"],["-114.4925291","36.7008495"],["-114.4940434","36.6996744"],["-114.4975497","36.6966995"],["-114.4986394","36.6957736"],["-114.5041428","36.691092"],["-114.5047717","36.690544"],["-114.5066926","36.6888718"],["-114.5071568","36.6884458"],["-114.5084623","36.687063"],["-114.5089641","36.6864904"],["-114.5095067","36.6858365"],["-114.510053","36.6851252"],["-114.5105837","36.6843867"],["-114.5109593","36.6838259"],["-114.5113735","36.6831778"],["-114.5118853","36.6823311"],["-114.5123984","36.6814367"],["-114.5128657","36.6804799"],["-114.5139699","36.6782141"],["-114.5146117","36.6769413"],["-114.5148206","36.676559"],["-114.5150882","36.676125"],["-114.5153415","36.6757426"],["-114.51563","36.6753456"],["-114.5159468","36.6749301"],["-114.5167671","36.6740267"],["-114.5170151","36.6737755"],["-114.5172867","36.6735212"],["-114.5180052","36.6729304"],["-114.5184184","36.6726184"],["-114.5187768","36.6723605"],["-114.5192916","36.6720183"],["-114.5196249","36.6718118"],["-114.5199813","36.6716021"],["-114.5204354","36.6713576"],["-114.5207147","36.671223"],["-114.5212865","36.6709486"],["-114.5221569","36.6705887"],["-114.5230441","36.6702866"],["-114.5235385","36.6701315"],["-114.5240707","36.6699888"],["-114.5245231","36.6698793"],["-114.5251691","36.6697425"],["-114.5335128","36.6681262"],["-114.5353082","36.667814"],["-114.5632066","36.6654201"],["-114.5637167","36.6653648"],["-114.5646717","36.6652286"],["-114.5655993","36.6650586"],["-114.5659569","36.6649793"],["-114.5667889","36.6647739"],["-114.5672669","36.6646335"],["-114.5679181","36.6644202"],["-114.5688348","36.6640795"],["-114.5702495","36.6634546"],["-114.5711629","36.6629746"],["-114.5718466","36.6625658"],["-114.5728433","36.6618896"],["-114.5731366","36.6616698"],["-114.5734037","36.6614599"],["-114.5741355","36.6608462"],["-114.5742427","36.6607466"],["-114.6366809","36.6043373"],["-114.6384628","36.602419"],["-114.6414363","36.5989007"],["-114.6442698","36.5952392"],["-114.6510179","36.5864157"],["-114.6520366","36.5850824"],["-114.6531303","36.5837684"],["-114.6542273","36.5826358"],["-114.6551889","36.5817024"],["-114.6563367","36.5807057"],["-114.6609672","36.5774935"],["-114.7025756","36.5494766"],["-114.7054135","36.5473951"],["-114.7084852","36.544783"],["-114.7114657","36.5422205"],["-114.7136543","36.5403484"],["-114.7518519","36.5081603"],["-114.7532255","36.5071148"],["-114.7546516","36.506136"],["-114.7559596","36.5053309"],["-114.7580928","36.5041922"],["-114.8062246","36.4797873"],["-114.8218392","36.471798"],["-114.823923","36.4705302"],["-114.825428","36.4694243"],["-114.8265101","36.4685298"],["-114.8305971","36.4646974"],["-114.850026","36.4461146"],["-114.8524724","36.4436788"],["-114.8535455","36.4424244"],["-114.8572265","36.4369814"],["-114.8910098","36.3822516"],["-114.8923621","36.3800477"],["-114.898071","36.3707591"],["-114.8998949","36.367804"],["-114.9011505","36.3657528"],["-114.9021214","36.3641555"],["-114.9024396","36.3635563"],["-114.9027922","36.3627291"],["-114.9030601","36.3615857"],["-114.9031483","36.3604792"],["-114.9031943","36.3580989"],["-114.9033359","36.3568793"],["-114.9036141","36.3555624"],["-114.9042377","36.3538631"],["-114.9049337","36.3525226"],["-114.9056498","36.3514942"],["-114.922011","36.3313055"],["-114.9235882","36.3294887"],["-114.92431","36.3287911"],["-114.9252471","36.3280515"],["-114.9262474","36.3273535"],["-114.9281687","36.3262854"],["-114.9326843","36.3238788"],["-114.9335716","36.3233854"],["-114.9350391","36.3224728"],["-114.9362298","36.3216763"],["-114.9373513","36.3208428"],["-114.9385588","36.3198319"],["-114.9402209","36.3182352"],["-114.9424395","36.3160181"],["-114.9434815","36.3150185"],["-114.9441766","36.314423"],["-114.9446498","36.3140541"],["-114.9449844","36.3138195"],["-114.9458176","36.3132759"],["-114.9462166","36.3130291"],["-114.9466205","36.3128021"],["-114.947069","36.3125735"],["-114.9475137","36.3123616"],["-114.9479847","36.3121494"],["-114.9493554","36.3116188"],["-115.0428754","36.2765506"],["-115.0671265","36.2673385"],["-115.0682832","36.2667839"],["-115.0692628","36.2662744"],["-115.0713154","36.2650788"],["-115.072052","36.2646012"],["-115.0729882","36.2639527"],["-115.0740962","36.2631111"],["-115.0813663","36.25718"],["-115.087356","36.2522708"],["-115.1067189","36.2363999"],["-115.1090428","36.2345261"],["-115.1139167","36.2305675"],["-115.1150901","36.2295504"],["-115.1156782","36.2289718"],["-115.1161584","36.2284526"],["-115.1167031","36.2278056"],["-115.1190227","36.2247015"],["-115.1204402","36.2227669"],["-115.1293517","36.210724"],["-115.1354512","36.2023564"],["-115.1360667","36.2015105"],["-115.1363583","36.2011141"],["-115.1367762","36.2003467"],["-115.1372147","36.1994675"],["-115.1399445","36.193538"],["-115.1402522","36.1930183"],["-115.1409395","36.1920258"],["-115.1410705","36.1918541"],["-115.1423235","36.190381"],["-115.1425566","36.1900589"],["-115.1427729","36.1897039"],["-115.1429433","36.1894008"],["-115.1431174","36.1890588"],["-115.1432676","36.1887402"],["-115.1433844","36.1884469"],["-115.1434499","36.1882458"],["-115.1435285","36.1879931"],["-115.1435982","36.1877435"],["-115.1436468","36.1875439"],["-115.1436852","36.18735"],["-115.1437486","36.1869656"],["-115.1437921","36.1865712"],["-115.1438125","36.1861736"],["-115.1438148","36.185628"],["-115.1438131","36.1853226"],["-115.1438177","36.1846323"],["-115.1438259","36.1842613"],["-115.1438398","36.1840133"],["-115.1438754","36.1837486"],["-115.1439188","36.1835132"],["-115.1440245","36.1830862"],["-115.144064","36.1829611"],["-115.1441129","36.1828222"],["-115.1442243","36.1825481"],["-115.1442926","36.1823978"],["-115.1443742","36.1822321"],["-115.1444596","36.1820698"],["-115.1445486","36.1819158"],["-115.1447869","36.1815575"],["-115.1449361","36.1813614"],["-115.1450713","36.1811901"],["-115.1451634","36.181085"],["-115.1453941","36.180864"],["-115.1458288","36.1805414"],["-115.1461353","36.1803344"],["-115.1468629","36.1799434"],["-115.1489186","36.178918"],["-115.1496911","36.1785021"],["-115.1504171","36.1780759"],["-115.1509906","36.1777025"],["-115.152024","36.1769687"],["-115.1534583","36.1760303"],["-115.1540341","36.1756764"],["-115.1547153","36.1753163"],["-115.1559723","36.174729"],["-115.15623","36.1746015"],["-115.1563528","36.1745264"],["-115.156443","36.174462"],["-115.1565168","36.1743907"],["-115.1566084","36.1742882"],["-115.156687","36.1741786"],["-115.1567459","36.1740678"],["-115.1567834","36.173962"],["-115.1568131","36.1738485"],["-115.1568225","36.1737347"],["-115.156827","36.1735823"],["-115.1568184","36.1734908"],["-115.1568018","36.1734083"],["-115.1567777","36.1733182"],["-115.1567362","36.1732354"],["-115.1566762","36.1731269"],["-115.1565929","36.1730109"],["-115.1564525","36.1728792"],["-115.1563259","36.1727784"],["-115.1562106","36.172708"],["-115.1560888","36.1726504"],["-115.1559868","36.1726067"],["-115.1558773","36.1725715"],["-115.1556877","36.1725245"],["-115.1554681","36.1725049"],["-115.1552871","36.1725092"],["-115.1551481","36.1725204"],["-115.1550127","36.172541"],["-115.1548988","36.1725768"],["-115.1547723","36.1726197"],["-115.1545496","36.1727229"],["-115.1534371","36.1734069"],["-115.1530474","36.1735633"],["-115.152439","36.1737744"],["-115.1509137","36.1742764"],["-115.1499577","36.1745805"],["-115.1472513","36.1752831"],["-115.1465816","36.1754033"],["-115.1462023","36.1754477"],["-115.1458232","36.1754702"],["-115.145134","36.1754716"],["-115.1447254","36.1754489"],["-115.1441789","36.175376"],["-115.1435254","36.1752317"],["-115.1429593","36.1750636"],["-115.1424064","36.1748442"],["-115.1410958","36.1741834"],["-115.1406856","36.1740228"],["-115.1404165","36.1739431"],["-115.1399249","36.1738404"],["-115.1393387","36.1737607"],["-115.1389897","36.1736953"],["-115.1386469","36.173587"],["-115.1382117","36.1733981"],["-115.138564","36.1726852"],["-115.1391633","36.1716777"]] } }; const coordinates_1_0 = geojson_1_0.geometry.coordinates; for (const coord of coordinates_1_0) { bounds_1.extend(coord); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_0', type: 'line', source: { type: 'geojson', data: geojson_1_0 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#0b7172', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); const geojson_1_1 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-104.9907761","39.7422328"],["-104.993013","39.7405018"],["-104.9930867","39.7404378"],["-104.9931202","39.740376"],["-104.9931213","39.7402649"],["-104.9930874","39.7402059"],["-104.9930486","39.7401379"],["-104.9952609","39.7401409"],["-104.9953547","39.7401406"],["-104.997871","39.7401627"],["-104.9989152","39.7401929"],["-104.9990586","39.7401966"],["-104.9999805","39.7402139"],["-105.0001461","39.740215"],["-105.0003028","39.7402102"],["-105.0011193","39.740171"],["-105.001317","39.7401662"],["-105.0014384","39.7401695"],["-105.0015759","39.7401633"],["-105.0017398","39.740163"],["-105.0026909","39.740161"],["-105.0041643","39.740173"],["-105.0052468","39.7402352"],["-105.0093959","39.7403622"],["-105.010619","39.7404726"],["-105.0113588","39.7405499"],["-105.0115504","39.7405755"],["-105.0119592","39.7405959"],["-105.0121892","39.740618"],["-105.012363","39.7406574"],["-105.0125779","39.7407182"],["-105.0126709","39.7407487"],["-105.0127519","39.7407809"],["-105.0128336","39.7408165"],["-105.0129116","39.7408598"],["-105.0129826","39.7409035"],["-105.0130544","39.7409585"],["-105.0131568","39.7410674"],["-105.0132855","39.7412303"],["-105.0134077","39.7414009"],["-105.013505","39.7415369"],["-105.0135606","39.7416111"],["-105.0136146","39.741674"],["-105.0136769","39.7417329"],["-105.0137665","39.7417954"],["-105.0138747","39.7418655"],["-105.0139853","39.7419154"],["-105.0140594","39.7419421"],["-105.0141214","39.7419583"],["-105.0141903","39.7419715"],["-105.0142704","39.7419803"],["-105.0143553","39.7419837"],["-105.0144096","39.7419787"],["-105.014492","39.7419652"],["-105.0145819","39.7419357"],["-105.0146492","39.741903"],["-105.0147098","39.7418564"],["-105.0147651","39.741802"],["-105.0148194","39.7417434"],["-105.0148811","39.7416642"],["-105.0149397","39.7415592"],["-105.0149886","39.7414469"],["-105.0150261","39.7413468"],["-105.015052","39.7412343"],["-105.015069","39.7411042"],["-105.0150687","39.7409914"],["-105.0150448","39.7408499"],["-105.0149716","39.7406169"],["-105.0147595","39.7399913"],["-105.014558","39.7393804"],["-105.0144019","39.7388689"],["-105.014342","39.7386376"],["-105.0143018","39.7384586"],["-105.0142747","39.7382995"],["-105.0142526","39.7381205"],["-105.0142525","39.7379299"],["-105.0142531","39.7377051"],["-105.0142654","39.7374535"],["-105.0142926","39.7371513"],["-105.0143617","39.7368902"],["-105.0144281","39.7366717"],["-105.0145182","39.7364143"],["-105.0146546","39.7360535"],["-105.014712","39.7359165"],["-105.0148323","39.7356611"],["-105.0150204","39.7352855"],["-105.0152298","39.73488"],["-105.0154283","39.7344816"],["-105.0154906","39.7343321"],["-105.0155554","39.7341599"],["-105.0156124","39.7339986"],["-105.0156632","39.7338399"],["-105.0157382","39.7335657"],["-105.0157687","39.7334381"],["-105.0158194","39.7331653"],["-105.0158402","39.7330082"],["-105.0158541","39.7328531"],["-105.0158632","39.7327122"],["-105.0158807","39.7323043"],["-105.0158818","39.7321835"],["-105.015879","39.7320676"],["-105.0158691","39.7319446"],["-105.0158518","39.7317878"],["-105.0157384","39.7312894"],["-105.0156809","39.7310674"],["-105.0155237","39.7305536"],["-105.0154201","39.7302485"],["-105.0153079","39.7299273"],["-105.0151805","39.7295439"],["-105.0149167","39.7287934"],["-105.014721","39.7282942"],["-105.0144203","39.727476"],["-105.0143188","39.7272108"],["-105.0142064","39.7269358"],["-105.0140369","39.72656"],["-105.0139439","39.7263749"],["-105.0138025","39.7261348"],["-105.0134726","39.7256164"],["-105.0132954","39.7253627"],["-105.0129621","39.7249189"],["-105.0127907","39.724711"],["-105.012617","39.72451"],["-105.0124012","39.7242784"],["-105.012191","39.7240667"],["-105.0120459","39.7239249"],["-105.0118536","39.7237491"],["-105.0110477","39.7230702"],["-105.0102769","39.7225123"],["-105.0099648","39.722288"],["-105.0094566","39.7219084"],["-105.00928","39.7217685"],["-105.0090936","39.7216096"],["-105.0088735","39.7214111"],["-105.0085704","39.7211265"],["-105.0082309","39.7207984"],["-105.0065815","39.7192539"],["-105.006083","39.7188032"],["-105.0057162","39.7184978"],["-105.0053929","39.7182494"],["-105.0051809","39.7180971"],["-105.0031449","39.7167132"],["-105.0029411","39.716564"],["-105.0027884","39.7164477"],["-105.0026557","39.7163411"],["-105.0024612","39.7161701"],["-105.002374","39.7160875"],["-105.0022254","39.7159376"],["-105.0021509","39.7158557"],["-105.0019774","39.7156522"],["-105.0018149","39.7154394"],["-105.0017361","39.7153299"],["-105.0006052","39.7135893"],["-105.0000422","39.7126713"],["-104.999254","39.7113292"],["-104.9984146","39.7098889"],["-104.9982286","39.7095297"],["-104.9970379","39.7069406"],["-104.9969349","39.7067275"],["-104.9968849","39.7066333"],["-104.9967854","39.7064618"],["-104.9966414","39.7062391"],["-104.9965846","39.7061592"],["-104.9965143","39.7060668"],["-104.9964218","39.7059499"],["-104.9963215","39.7058286"],["-104.9962174","39.7057095"],["-104.9961272","39.7056115"],["-104.9959805","39.7054608"],["-104.9958917","39.7053781"],["-104.9957675","39.7052692"],["-104.9956715","39.7051883"],["-104.9955204","39.7050652"],["-104.9953845","39.7049611"],["-104.9950501","39.7047312"],["-104.994893","39.7046361"],["-104.9946102","39.7044783"],["-104.9943261","39.7043327"],["-104.99405","39.7042042"],["-104.9939158","39.7041492"],["-104.9937815","39.7040991"],["-104.9934668","39.7039918"],["-104.9905461","39.7030749"],["-104.9902423","39.7029764"],["-104.9899999","39.7028772"],["-104.989776","39.7027724"],["-104.9895514","39.7026559"],["-104.9891383","39.7024125"],["-104.988941","39.7022773"],["-104.9886718","39.7020794"],["-104.9872654","39.7009969"],["-104.9867586","39.7006102"],["-104.9862148","39.7001966"],["-104.9856368","39.6997236"],["-104.9795193","39.6943359"],["-104.976613","39.6917149"],["-104.9760076","39.6912578"],["-104.9752139","39.6907201"],["-104.9746288","39.6904071"],["-104.9647606","39.685576"],["-104.9645071","39.6854752"],["-104.9642773","39.6853901"],["-104.9640003","39.6852942"],["-104.9636865","39.6851965"],["-104.9634308","39.685123"],["-104.9628728","39.6849837"],["-104.9623922","39.6848867"],["-104.9618891","39.6848107"],["-104.9616628","39.684783"],["-104.9612899","39.6847492"],["-104.9608316","39.6847171"],["-104.9603722","39.684706"],["-104.9504508","39.68468"],["-104.9481675","39.6845435"],["-104.9474889","39.6844647"],["-104.9467588","39.6843562"],["-104.940402","39.6828566"],["-104.9396082","39.6826271"],["-104.9390384","39.6824222"],["-104.9386101","39.6822449"],["-104.9381369","39.682029"],["-104.9378717","39.6818898"],["-104.9375688","39.6817231"],["-104.9372978","39.6815684"],["-104.9371325","39.6814672"],["-104.9369896","39.6813748"],["-104.9368213","39.6812587"],["-104.9365125","39.6810363"],["-104.936215","39.6807987"],["-104.9360833","39.6806874"],["-104.9358614","39.680491"],["-104.9356972","39.6803354"],["-104.9354244","39.6800573"],["-104.9349788","39.6795609"],["-104.9311999","39.6752695"],["-104.9309865","39.6750015"],["-104.9240181","39.6649725"],["-104.923678","39.6644375"],["-104.9234989","39.6641272"],["-104.9231388","39.663437"],["-104.9228738","39.6628634"],["-104.9224088","39.6618208"],["-104.9182581","39.6525476"],["-104.9180607","39.6521565"],["-104.9178766","39.6518144"],["-104.9134878","39.6442486"],["-104.9117679","39.6412604"],["-104.9107896","39.639638"],["-104.9098789","39.6381864"],["-104.909431","39.6375505"],["-104.9086589","39.6365321"],["-104.9077925","39.6353701"],["-104.9075317","39.6349675"],["-104.9072593","39.6344973"],["-104.9069591","39.6339308"],["-104.9064992","39.6328604"],["-104.9061427","39.6319556"],["-104.9057788","39.6310438"],["-104.9054739","39.6304188"],["-104.9050108","39.6295748"],["-104.9043745","39.6283688"],["-104.8996157","39.6201101"],["-104.8973818","39.6161158"],["-104.8966355","39.6148225"],["-104.8962944","39.6142348"],["-104.8916853","39.6062723"],["-104.8909784","39.605056"],["-104.8905294","39.6042953"],["-104.8865933","39.5975501"],["-104.8854243","39.5956641"],["-104.8850781","39.5950783"],["-104.8823015","39.5900539"],["-104.8759509","39.5790312"],["-104.8758392","39.57882"],["-104.8756876","39.5785177"],["-104.8756602","39.5784602"],["-104.8755707","39.5782607"],["-104.8754532","39.577982"],["-104.875269","39.5774759"],["-104.8742525","39.5742555"],["-104.8739165","39.5732023"],["-104.8735265","39.5719494"],["-104.8733543","39.5714228"],["-104.8732423","39.5709849"],["-104.8731335","39.5704894"],["-104.8729207","39.5693688"],["-104.8728615","39.5690178"],["-104.8727952","39.5686097"],["-104.8727032","39.5679859"],["-104.8725398","39.5669278"],["-104.8722532","39.5651301"],["-104.8713204","39.5598498"],["-104.8706851","39.556073"],["-104.8706337","39.5556946"],["-104.8704978","39.5548307"],["-104.8698911","39.5512985"],["-104.869697","39.5498457"],["-104.869573","39.5485774"],["-104.8689923","39.5417993"],["-104.8688533","39.5396468"],["-104.8675637","39.5237243"],["-104.8675395","39.523224"],["-104.8675263","39.5229285"],["-104.8675194","39.5227726"],["-104.8674756","39.5220237"],["-104.8673566","39.5194206"],["-104.8673532","39.5191942"],["-104.8673572","39.5190333"],["-104.8673995","39.5185292"],["-104.8674404","39.518249"],["-104.8675363","39.5177975"],["-104.867613","39.5175146"],["-104.8676801","39.5172954"],["-104.8678074","39.5169511"],["-104.8680084","39.5164954"],["-104.8735349","39.5055757"],["-104.8738496","39.5049388"],["-104.8739406","39.5047262"],["-104.8740334","39.5045015"],["-104.8742454","39.5038805"],["-104.8743276","39.5035979"],["-104.8744087","39.5032828"],["-104.8744674","39.5030114"],["-104.874512","39.5027445"],["-104.8745513","39.5024622"],["-104.8745792","39.5022077"],["-104.8745988","39.5019585"],["-104.8746087","39.5017706"],["-104.8746165","39.5015598"],["-104.8746142","39.501178"],["-104.8745868","39.5007276"],["-104.8745644","39.5005223"],["-104.8745317","39.5002722"],["-104.8727634","39.4877583"],["-104.8726968","39.487193"],["-104.8726407","39.4864953"],["-104.8726066","39.4859298"],["-104.8725758","39.4851694"],["-104.8725908","39.4772748"],["-104.8726029","39.4740305"],["-104.8728182","39.4714687"],["-104.8729878","39.4701373"],["-104.8747848","39.4592508"],["-104.8753792","39.4554688"],["-104.875499","39.45396"],["-104.8756966","39.4506711"],["-104.8757469","39.4496814"],["-104.8757658","39.4487413"],["-104.8757168","39.4434112"],["-104.8757194","39.4428185"],["-104.8757525","39.4425148"],["-104.8757991","39.4421788"],["-104.8758556","39.4418531"],["-104.875919","39.4415967"],["-104.8760022","39.441306"],["-104.8760911","39.4410427"],["-104.8761926","39.4407782"],["-104.8763032","39.4405182"],["-104.8764122","39.4402897"],["-104.876548","39.440042"],["-104.8776807","39.4381508"],["-104.878045","39.4375336"],["-104.8782896","39.4370649"],["-104.8784178","39.4367856"],["-104.8785523","39.4364528"],["-104.8787464","39.4359278"],["-104.8788379","39.4356427"],["-104.8789137","39.4353668"],["-104.8789838","39.4350629"],["-104.8790431","39.4347523"],["-104.8791045","39.4343592"],["-104.8794333","39.4319102"],["-104.8794568","39.4316411"],["-104.8794656","39.431344"],["-104.8794609","39.4310562"],["-104.8794405","39.430771"],["-104.8794077","39.4304662"],["-104.8793654","39.4301831"],["-104.8793099","39.4298859"],["-104.8792476","39.4296378"],["-104.8791785","39.4293949"],["-104.8791129","39.4292012"],["-104.8790365","39.4289903"],["-104.8789576","39.4287919"],["-104.8788541","39.4285546"],["-104.878757","39.428352"],["-104.8786623","39.4281682"],["-104.8785559","39.4279782"],["-104.8783745","39.4276882"],["-104.8782162","39.4274445"],["-104.8742315","39.4215611"],["-104.8661659","39.4096383"],["-104.8658066","39.4090263"],["-104.8654903","39.4084766"],["-104.8650844","39.4076921"],["-104.8645924","39.4066677"],["-104.8609902","39.3983167"],["-104.86081","39.3978232"],["-104.8605174","39.3969133"],["-104.8604084","39.3965237"],["-104.860224","39.395753"],["-104.8601479","39.3953822"],["-104.8600392","39.3947277"],["-104.8599328","39.3938986"],["-104.8598907","39.393436"],["-104.8598612","39.3929304"],["-104.8598402","39.3924415"],["-104.8598375","39.3921277"],["-104.8598446","39.3917907"],["-104.8598607","39.3913709"],["-104.8598894","39.3908759"],["-104.8599397","39.3903123"],["-104.8599949","39.3898495"],["-104.8601518","39.3888871"],["-104.8603127","39.3880066"],["-104.8604692","39.3871335"],["-104.8605473","39.3865825"],["-104.8605893","39.3861279"],["-104.8606112","39.3857242"],["-104.8606242","39.3853153"],["-104.86061","39.3835502"],["-104.8605799","39.3820462"],["-104.8605816","39.3816641"],["-104.8605944","39.3812867"],["-104.8606222","39.3809445"],["-104.8606583","39.380647"],["-104.8607026","39.3803855"],["-104.8608195","39.37983"],["-104.8609569","39.3793102"],["-104.8610348","39.3790864"],["-104.8612206","39.3785896"],["-104.8613467","39.3783028"],["-104.8615053","39.3779644"],["-104.8617423","39.3774981"],["-104.8623176","39.3764084"],["-104.8626839","39.3756439"],["-104.862843","39.3752525"],["-104.8630987","39.3744934"],["-104.8639836","39.3716047"],["-104.8646492","39.3694457"],["-104.8648239","39.3688861"],["-104.8649775","39.3684162"],["-104.8666879","39.3633699"],["-104.8668345","39.3628792"],["-104.8670079","39.3621713"],["-104.8671851","39.361399"],["-104.8675216","39.3600049"],["-104.8677329","39.35929"],["-104.8681251","39.3581849"],["-104.868515","39.3572504"],["-104.8687075","39.356834"],["-104.8689917","39.3562733"],["-104.8693378","39.3556199"],["-104.871307","39.3519653"],["-104.8714795","39.3515766"],["-104.8717367","39.3509438"],["-104.8730456","39.347383"],["-104.8735723","39.3459454"],["-104.8749371","39.3421314"],["-104.8751685","39.3415071"],["-104.8907389","39.2985299"],["-104.8913424","39.297336"],["-104.8953899","39.2902159"],["-104.8956571","39.2896696"],["-104.8958169","39.2892275"],["-104.8959382","39.2887147"],["-104.8977662","39.2777658"],["-104.8978645","39.277016"],["-104.8978385","39.2760186"],["-104.8973672","39.2722383"],["-104.8972543","39.2714649"],["-104.8971461","39.2708563"],["-104.8967899","39.2692828"],["-104.8964597","39.2681274"],["-104.8957006","39.2660066"],["-104.8954524","39.2653893"],["-104.895221","39.2648265"],["-104.8946272","39.2636175"],["-104.8942881","39.2629889"],["-104.8933639","39.261393"],["-104.8921654","39.2595126"],["-104.8903421","39.2570149"],["-104.8884803","39.2545581"],["-104.8844269","39.2491193"],["-104.8841045","39.248722"],["-104.8833232","39.2478699"],["-104.8829553","39.2475153"],["-104.8824596","39.2470644"],["-104.880278","39.2451699"],["-104.8795212","39.2444925"],["-104.8791944","39.2441286"],["-104.879007","39.2439021"],["-104.8788518","39.2437033"],["-104.8786733","39.2434488"],["-104.878492","39.2431814"],["-104.8783647","39.2429796"],["-104.8782575","39.2427878"],["-104.8780377","39.2423555"],["-104.8779304","39.2421053"],["-104.8778489","39.24188"],["-104.8776956","39.2414078"],["-104.8776346","39.2411872"],["-104.877583","39.2409293"],["-104.877499","39.2403127"],["-104.8774825","39.2400857"],["-104.8774705","39.2397537"],["-104.8774763","39.2348795"],["-104.8775451","39.2335254"],["-104.8780338","39.2295045"],["-104.8784486","39.2263639"],["-104.8786734","39.2247424"],["-104.8789725","39.2225444"],["-104.8790251","39.2218139"],["-104.8790025","39.2213845"],["-104.8789445","39.2209193"],["-104.8788793","39.2204925"],["-104.8787659","39.2200848"],["-104.8786468","39.2196943"],["-104.8785507","39.2194205"],["-104.8784291","39.2191303"],["-104.8783021","39.2188548"],["-104.8781615","39.2185749"],["-104.8778313","39.218028"],["-104.8776313","39.2177503"],["-104.8774258","39.2174824"],["-104.8771904","39.2172009"],["-104.8769781","39.2169619"],["-104.8767371","39.2167103"],["-104.8764481","39.2164447"],["-104.8761229","39.2161577"],["-104.874072","39.2143935"],["-104.8737425","39.2141246"],["-104.8730437","39.2136007"],["-104.8727142","39.2133683"],["-104.8723196","39.2131046"],["-104.8719333","39.2128578"],["-104.8607702","39.206234"],["-104.8604402","39.2060006"],["-104.8601638","39.2057876"],["-104.8598677","39.2055474"],["-104.8596558","39.2053661"],["-104.8594279","39.2051503"],["-104.85921","39.2049231"],["-104.8588402","39.2044983"],["-104.8586838","39.2042988"],["-104.8585347","39.2040929"],["-104.8582905","39.2037344"],["-104.852693","39.1949731"],["-104.8523933","39.1944869"],["-104.8521677","39.1941034"],["-104.8519762","39.1937464"],["-104.8515864","39.1929457"],["-104.8514472","39.1926132"],["-104.8513017","39.192242"],["-104.851008","39.1914003"],["-104.8508797","39.1909549"],["-104.8507808","39.1905316"],["-104.8506333","39.1897952"],["-104.8505846","39.1894622"],["-104.8505407","39.1890795"],["-104.8505033","39.1886033"],["-104.8504786","39.1881162"],["-104.8504445","39.1866973"],["-104.8504543","39.1852751"],["-104.8503387","39.1800458"],["-104.8503208","39.1791571"],["-104.8503052","39.1776736"],["-104.8503011","39.1773733"],["-104.8503099","39.1769122"],["-104.8503825","39.1757487"],["-104.8505118","39.1744786"],["-104.8506222","39.1737338"],["-104.8509874","39.1720304"],["-104.8514354","39.1704348"],["-104.8519286","39.1689499"],["-104.8611856","39.1441083"],["-104.8615985","39.1428093"],["-104.8619094","39.1416654"],["-104.8619997","39.1412465"],["-104.862139","39.1406225"],["-104.8622363","39.1400617"],["-104.8624468","39.138811"],["-104.8644065","39.1270488"],["-104.8646313","39.1257752"],["-104.8658687","39.1184876"],["-104.865922","39.118093"],["-104.8659616","39.1176623"],["-104.865979","39.1171176"],["-104.8659808","39.11659"],["-104.8659597","39.1160556"],["-104.8659146","39.115552"],["-104.8649772","39.1070894"],["-104.8639385","39.0978625"],["-104.8636074","39.0957713"],["-104.8631531","39.0938711"],["-104.8611082","39.0851766"],["-104.8583415","39.0732583"],["-104.8580864","39.0722279"],["-104.8566441","39.0660898"],["-104.8564868","39.0655415"],["-104.8562681","39.0649162"],["-104.8560853","39.0644591"],["-104.8558658","39.0639511"],["-104.8554462","39.0631251"],["-104.8420736","39.0407249"],["-104.8411575","39.039095"],["-104.8403994","39.0374883"],["-104.8399467","39.0364054"],["-104.837843","39.0311541"],["-104.8373958","39.0301215"],["-104.8367607","39.0289692"],["-104.8362434","39.0280977"],["-104.8347366","39.0255022"],["-104.8346042","39.0252763"],["-104.8318379","39.020567"],["-104.8314375","39.0199196"],["-104.8245791","39.0096606"],["-104.8240923","39.0089841"],["-104.82337","39.0080473"],["-104.8208289","39.0048503"],["-104.8202592","39.004076"],["-104.8199063","39.0035445"],["-104.8196024","39.0030391"],["-104.8193147","39.0025327"],["-104.8190712","39.0020729"],["-104.8188355","39.0015608"],["-104.8186255","39.0010816"],["-104.8128325","38.9851805"],["-104.811888","38.9830444"],["-104.8049528","38.9690326"],["-104.8018927","38.9628831"],["-104.8017261","38.9625023"],["-104.8016087","38.962162"],["-104.8015107","38.9618589"],["-104.8014512","38.9616113"],["-104.8013953","38.9613597"],["-104.8013477","38.9611049"],["-104.8013133","38.9608533"],["-104.8012818","38.9604826"],["-104.8012694","38.960068"],["-104.8012851","38.9596907"],["-104.8013186","38.9593405"],["-104.801393","38.9589202"],["-104.8014759","38.9585681"],["-104.8015612","38.958274"],["-104.8016536","38.9579919"],["-104.8017493","38.9577268"],["-104.8018486","38.9574934"],["-104.8019485","38.9572832"],["-104.8021645","38.9568855"],["-104.802208","38.9568108"],["-104.8022889","38.956679"],["-104.802447","38.9564431"],["-104.802616","38.9562011"],["-104.8027862","38.9559739"],["-104.8029734","38.9557466"],["-104.8031604","38.9555415"],["-104.8033612","38.9553368"],["-104.8035621","38.9551441"],["-104.8038102","38.9549177"],["-104.8040687","38.9547054"],["-104.8043701","38.9544681"],["-104.8046781","38.9542562"],["-104.805203","38.9539255"],["-104.81021","38.95094"],["-104.8107292","38.9506015"],["-104.8109891","38.9504053"],["-104.8112611","38.9501804"],["-104.8115282","38.9499489"],["-104.8119693","38.9495338"],["-104.8121783","38.9493126"],["-104.8123776","38.9490888"],["-104.8125635","38.9488658"],["-104.8127249","38.948661"],["-104.8128741","38.9484609"],["-104.8129875","38.9482927"],["-104.8131597","38.9480061"],["-104.8132927","38.9477735"],["-104.8134045","38.9475578"],["-104.8135892","38.9471696"],["-104.8137723","38.9466869"],["-104.8138564","38.9464147"],["-104.8139195","38.9461922"],["-104.8139761","38.9459476"],["-104.8140067","38.9457911"],["-104.8140374","38.945624"],["-104.8140733","38.945334"],["-104.8141099","38.9449766"],["-104.8141206","38.9447596"],["-104.8141193","38.9443788"],["-104.8141107","38.9441853"],["-104.8140862","38.9439121"],["-104.8140505","38.9436623"],["-104.8133337","38.939485"],["-104.813263","38.9390593"],["-104.8131672","38.9385449"],["-104.813021","38.9377474"],["-104.812879","38.9369755"],["-104.8127868","38.9361425"],["-104.8127449","38.9354075"],["-104.8127359","38.9348603"],["-104.8127655","38.9341676"],["-104.8128503","38.9332874"],["-104.8129664","38.9325537"],["-104.813181","38.9312451"],["-104.8148933","38.9201003"],["-104.8150044","38.9195574"],["-104.8151447","38.919019"],["-104.8153296","38.9184602"],["-104.8155618","38.9179373"],["-104.8158403","38.9174099"],["-104.8161684","38.9168847"],["-104.8165111","38.9164234"],["-104.8167548","38.9161337"],["-104.8170062","38.9158585"],["-104.8174439","38.9154412"],["-104.8180285","38.9149586"],["-104.8224016","38.9116435"],["-104.823134","38.9110614"],["-104.8237506","38.9105334"],["-104.8242239","38.9100718"],["-104.8245858","38.9096571"],["-104.8249255","38.9092516"],["-104.825204","38.9088592"],["-104.8254345","38.9084952"],["-104.8256286","38.9081542"],["-104.8258587","38.9077016"],["-104.8260942","38.9071954"],["-104.8263849","38.906517"],["-104.8308373","38.8956131"],["-104.8313831","38.8943249"],["-104.8318399","38.8932831"],["-104.8344674","38.888192"],["-104.8347648","38.8876121"],["-104.8349555","38.8871912"],["-104.8351706","38.8866893"],["-104.8353601","38.8862007"],["-104.8355109","38.8857524"],["-104.8356334","38.8853531"],["-104.8357362","38.8849619"],["-104.8359247","38.884028"],["-104.8359842","38.8836588"],["-104.8360768","38.8827563"],["-104.8360953","38.882258"],["-104.8360992","38.8818118"],["-104.8360929","38.8815625"],["-104.8360713","38.8811229"],["-104.8360284","38.8806296"],["-104.8360007","38.8804"],["-104.8358447","38.8794504"],["-104.8350853","38.8760599"],["-104.8342758","38.8719519"],["-104.8338174","38.8697422"],["-104.8337358","38.8693097"],["-104.8337072","38.8691109"],["-104.8336893","38.8689603"],["-104.8336755","38.8688173"],["-104.8336518","38.8684048"],["-104.8336308","38.8667469"],["-104.8336172","38.864992"],["-104.8336249","38.8647298"],["-104.8336436","38.8645071"],["-104.8336747","38.8642432"],["-104.8337104","38.8639929"],["-104.8337498","38.863782"],["-104.8338503","38.8633842"],["-104.8340989","38.8624469"],["-104.8342826","38.86168"],["-104.8343673","38.8610371"],["-104.8344122","38.8604012"],["-104.8344271","38.8594943"],["-104.834413","38.8588775"],["-104.8343666","38.8584175"],["-104.8342958","38.8579797"],["-104.8342229","38.8576514"],["-104.8341506","38.8573996"],["-104.8340504","38.8571162"],["-104.8338719","38.8566732"],["-104.8335992","38.8560964"],["-104.8333681","38.8556271"],["-104.8331564","38.8551983"],["-104.8330156","38.854871"],["-104.832855","38.854425"],["-104.8327832","38.854154"],["-104.8327197","38.8537502"],["-104.8326423","38.8531025"],["-104.8325317","38.8521346"],["-104.8323711","38.8511664"],["-104.832192","38.8503275"],["-104.8318485","38.8490814"],["-104.8312487","38.8472155"],["-104.8311031","38.8465973"],["-104.8302851","38.8423698"],["-104.8302105","38.8417843"],["-104.8302151","38.8411843"],["-104.8302694","38.8398159"],["-104.8303691","38.8374042"],["-104.8304242","38.8367663"],["-104.8304984","38.8363106"],["-104.8305563","38.8360463"],["-104.8306165","38.8358611"],["-104.8306848","38.8356709"],["-104.8307857","38.8354249"],["-104.8309384","38.835108"],["-104.8310992","38.8348232"],["-104.8312395","38.8345955"],["-104.8313992","38.8343788"],["-104.8316569","38.8340779"],["-104.8318548","38.8338593"],["-104.832082","38.8336437"],["-104.8334982","38.8324067"],["-104.8336688","38.8322116"],["-104.8337931","38.8320775"],["-104.8338965","38.8319695"],["-104.834194","38.8315974"],["-104.8344141","38.8312688"],["-104.8345399","38.8310419"],["-104.8346631","38.8307899"],["-104.8347839","38.8304907"],["-104.8348793","38.8302346"],["-104.8349959","38.8298509"],["-104.8351009","38.8294469"],["-104.8362448","38.8246516"],["-104.8364031","38.8239044"],["-104.8364481","38.8236078"],["-104.836489","38.8230367"],["-104.8364932","38.8227345"],["-104.8364707","38.8225171"],["-104.8363991","38.8221609"],["-104.8363206","38.8218762"],["-104.8362142","38.8215869"],["-104.8361028","38.8213204"],["-104.8360047","38.821126"],["-104.8358069","38.8208016"],["-104.8356861","38.8206333"],["-104.8355446","38.8204483"],["-104.8353657","38.8202313"],["-104.835189","38.8200422"],["-104.8350528","38.8199068"],["-104.8348559","38.8197367"],["-104.8324145","38.8177899"],["-104.8315393","38.8171162"],["-104.831223","38.8169043"],["-104.8309622","38.8167515"],["-104.8304975","38.8165073"],["-104.8298285","38.8161687"],["-104.8292719","38.8159346"],["-104.8286662","38.8157084"],["-104.8279639","38.8154936"],["-104.827185","38.8153156"],["-104.8264509","38.8151702"],["-104.8257744","38.8150879"],["-104.8203814","38.8148161"],["-104.8191832","38.8147285"],["-104.8181849","38.814593"],["-104.817128","38.8143793"],["-104.8161941","38.8141205"],["-104.8154184","38.813852"],["-104.8146336","38.8135383"],["-104.8139356","38.8132027"],["-104.8130955","38.8127665"],["-104.8118901","38.8120185"],["-104.8104148","38.8109783"],["-104.8095116","38.8103432"],["-104.8085032","38.8096194"],["-104.8049289","38.8070348"],["-104.8046263","38.8067934"],["-104.8043019","38.8065191"],["-104.8037496","38.8060253"],["-104.803237","38.8055457"],["-104.8028","38.8050858"],["-104.8022973","38.8045113"],["-104.8018283","38.803931"],["-104.8014594","38.8034273"],["-104.8011857","38.8030196"],["-104.8008425","38.8024785"],["-104.8003718","38.8016055"],["-104.7989373","38.7987732"],["-104.7968555","38.7946933"],["-104.796619","38.7942528"],["-104.7962038","38.7934299"],["-104.7957416","38.7925684"],["-104.7953175","38.7918827"],["-104.7945616","38.7908425"],["-104.7941327","38.79029"],["-104.784621","38.7789688"],["-104.7842341","38.7784573"],["-104.7839476","38.7780476"],["-104.7835861","38.7774846"],["-104.783264","38.7769318"],["-104.7830453","38.7765135"],["-104.7827476","38.7758851"],["-104.7824929","38.7752527"],["-104.7821388","38.7743615"],["-104.7814759","38.7728464"],["-104.78108","38.7720467"],["-104.7806106","38.7711732"],["-104.7801662","38.7704076"],["-104.7793426","38.7690825"],["-104.7784028","38.7677937"],["-104.7776184","38.7667969"],["-104.7772971","38.7664109"],["-104.776616","38.7656207"],["-104.7759354","38.7648741"],["-104.7752289","38.7641857"],["-104.7748236","38.7638027"],["-104.7730571","38.7622086"],["-104.7719019","38.7613148"],["-104.7664498","38.7573255"],["-104.7651835","38.7563922"],["-104.7647264","38.7560075"],["-104.7640712","38.7554122"],["-104.7322478","38.7240207"],["-104.7317079","38.7234892"],["-104.7309298","38.7226056"],["-104.7305731","38.7221442"],["-104.7302389","38.7216894"],["-104.7299226","38.7212179"],["-104.7296512","38.7207714"],["-104.7293906","38.7203203"],["-104.7289343","38.7193591"],["-104.7287317","38.7188961"],["-104.7285709","38.718524"],["-104.7282327","38.7177493"],["-104.7267441","38.7142427"],["-104.7259753","38.7124164"],["-104.7236593","38.7067657"],["-104.7234403","38.7061236"],["-104.7231591","38.7050384"],["-104.7218248","38.6994252"],["-104.7215468","38.69823"],["-104.7208134","38.6951499"],["-104.720703","38.6947306"],["-104.7204777","38.6939824"],["-104.7203227","38.6935698"],["-104.7195741","38.691886"],["-104.7149147","38.68176"],["-104.7141212","38.6800447"],["-104.7134089","38.6786289"],["-104.7131901","38.6782663"],["-104.7129171","38.6778473"],["-104.7125448","38.6773202"],["-104.7035504","38.6657146"],["-104.7023706","38.6641289"],["-104.7014811","38.6625785"],["-104.7004612","38.6601684"],["-104.6970023","38.6513887"],["-104.6958443","38.6484791"],["-104.6943094","38.6446015"],["-104.6938228","38.6426729"],["-104.6924322","38.636199"],["-104.6921976","38.6350965"],["-104.6920216","38.6341656"],["-104.6916566","38.6325351"],["-104.6912774","38.6307536"],["-104.6907848","38.6286381"],["-104.6901283","38.6253441"],["-104.6897672","38.6238473"],["-104.6888484","38.6195115"],["-104.6885109","38.618317"],["-104.6881499","38.617381"],["-104.687529","38.6160871"],["-104.6870769","38.6153548"],["-104.6860686","38.6139443"],["-104.6825681","38.6092321"],["-104.6789425","38.6039761"],["-104.6774914","38.6016575"],["-104.6755855","38.5981837"],["-104.6737145","38.5946734"],["-104.6714912","38.590548"],["-104.6712389","38.5900514"],["-104.6705087","38.5886924"],["-104.6701762","38.5880522"],["-104.6696007","38.5870084"],["-104.669221","38.5863275"],["-104.6679244","38.5839757"],["-104.6673841","38.5830857"],["-104.6670082","38.5825834"],["-104.6574464","38.5723994"],["-104.6568266","38.5716653"],["-104.6565059","38.5711855"],["-104.6562421","38.570731"],["-104.6540312","38.5662454"],["-104.65328","38.5646387"],["-104.6495031","38.5561862"],["-104.6487867","38.5545725"],["-104.6449608","38.5465257"],["-104.6433843","38.543444"],["-104.6386979","38.5342355"],["-104.6376778","38.5322182"],["-104.6305607","38.5181599"],["-104.6299214","38.5166907"],["-104.6297369","38.516119"],["-104.6294599","38.5151134"],["-104.6290988","38.5132713"],["-104.626624","38.500347"],["-104.62633","38.4992872"],["-104.6260423","38.4984662"],["-104.6225651","38.4910474"],["-104.6211325","38.4880206"],["-104.6192761","38.4840914"],["-104.6174574","38.4802785"],["-104.615087","38.4750784"],["-104.6138094","38.4714232"],["-104.613287","38.4699313"],["-104.6120603","38.466533"],["-104.6091195","38.4598571"],["-104.6082912","38.45801"],["-104.6076863","38.4566103"],["-104.6072945","38.4556845"],["-104.6069931","38.454858"],["-104.6067254","38.4540199"],["-104.6065129","38.4531904"],["-104.6062933","38.4514521"],["-104.6059853","38.4481154"],["-104.6059852","38.4470921"],["-104.6065776","38.4376529"],["-104.607557","38.4300587"],["-104.6078503","38.4278319"],["-104.6080602","38.4263777"],["-104.608255","38.4252163"],["-104.6086354","38.4238897"],["-104.6164856","38.4032244"],["-104.6171142","38.4015541"],["-104.6191151","38.3962037"],["-104.6195556","38.3948479"],["-104.6198972","38.3933281"],["-104.6200294","38.3920498"],["-104.6200645","38.3910213"],["-104.619966","38.3899968"],["-104.6191244","38.3849394"],["-104.6189903","38.3840294"],["-104.6189686","38.3835555"],["-104.6189699","38.3825588"],["-104.6190232","38.3817898"],["-104.6198308","38.3756228"],["-104.6199641","38.3745729"],["-104.6207302","38.3686553"],["-104.6208334","38.3677129"],["-104.6208706","38.3671465"],["-104.6208902","38.3663323"],["-104.6209153","38.362966"],["-104.6208832","38.361496"],["-104.6200303","38.3457476"],["-104.619961","38.3447848"],["-104.6199636","38.342113"],["-104.6199425","38.3395062"],["-104.619921","38.338965"],["-104.6198721","38.3385813"],["-104.6197541","38.3378739"],["-104.6196737","38.3374239"],["-104.6195436","38.3368935"],["-104.6191745","38.3356879"],["-104.6163369","38.3269523"],["-104.6160844","38.326089"],["-104.6159337","38.3254254"],["-104.6158111","38.3247798"],["-104.6157638","38.3244288"],["-104.615739","38.3241307"],["-104.6157156","38.3238142"],["-104.6156659","38.3231481"],["-104.6156181","38.3215375"],["-104.6155523","38.3181864"],["-104.6155183","38.3171757"],["-104.6153646","38.315304"],["-104.6152774","38.3145876"],["-104.6150548","38.3131029"],["-104.6149384","38.3124276"],["-104.6125765","38.301658"],["-104.6122948","38.3001714"],["-104.6121704","38.2994129"],["-104.6120626","38.2989623"],["-104.6118939","38.2983787"],["-104.6117352","38.2979842"],["-104.6115149","38.2975488"],["-104.6104892","38.2959619"],["-104.6099077","38.2950776"],["-104.6096201","38.2946354"],["-104.6083666","38.2923074"],["-104.6073746","38.2904351"],["-104.6072348","38.2901409"],["-104.6067984","38.2889804"],["-104.6056359","38.2857459"],["-104.6054944","38.2853192"],["-104.6054015","38.2849363"],["-104.6053467","38.2845818"],["-104.6053201","38.2842094"],["-104.6053048","38.2836639"],["-104.6052922","38.2819494"],["-104.6053328","38.2806661"],["-104.6053442","38.2802379"],["-104.6053325","38.2799165"],["-104.6052896","38.2795669"],["-104.6052314","38.2792566"],["-104.605173","38.2790113"],["-104.6051126","38.2787986"],["-104.605048","38.278591"],["-104.6049912","38.2784258"],["-104.6049109","38.2782312"],["-104.604753","38.277902"],["-104.604559","38.2774999"],["-104.6043682","38.2770938"],["-104.6042481","38.2767942"],["-104.6041815","38.2765948"],["-104.6041355","38.2764145"],["-104.604099","38.276248"],["-104.6040547","38.2759611"],["-104.6040407","38.2755954"],["-104.6040232","38.274787"],["-104.6040207","38.2741465"],["-104.6040339","38.273813"],["-104.6040608","38.2736459"],["-104.6040906","38.2734971"],["-104.6041393","38.2733143"],["-104.6041994","38.2731087"],["-104.6042548","38.272959"],["-104.6044275","38.2725829"],["-104.6049396","38.2715184"],["-104.6050579","38.2712698"],["-104.6051163","38.2711204"],["-104.6051714","38.2709602"],["-104.6052145","38.2708059"],["-104.6052785","38.270462"],["-104.6053321","38.2701136"],["-104.6053587","38.2698082"],["-104.6053667","38.2696163"],["-104.6053576","38.2693989"],["-104.6053349","38.2690906"],["-104.6052788","38.2686313"],["-104.6052137","38.2682705"],["-104.6050693","38.2675222"],["-104.6049673","38.2669423"],["-104.6049055","38.2665301"],["-104.6048945","38.2663228"],["-104.6048871","38.2661085"],["-104.6049177","38.2653601"],["-104.6052434","38.2623842"],["-104.6052643","38.2616234"],["-104.6052471","38.2605459"],["-104.6052335","38.2595397"],["-104.6052696","38.2591817"],["-104.6053659","38.2586159"],["-104.6054198","38.2583869"],["-104.6054914","38.2581602"],["-104.6055665","38.2579602"],["-104.6056501","38.2577892"],["-104.6057297","38.2576436"],["-104.6058421","38.2574858"],["-104.6059872","38.2572973"],["-104.6070466","38.2561105"],["-104.6076367","38.2554237"],["-104.6088998","38.2539927"],["-104.6091053","38.2537559"],["-104.60921","38.2536174"],["-104.6093062","38.2534744"],["-104.6093939","38.2533265"],["-104.6094709","38.2531787"],["-104.6095421","38.2530197"],["-104.6095976","38.2528742"],["-104.6096474","38.2527172"],["-104.6096853","38.2525669"],["-104.6097141","38.2524157"],["-104.6097343","38.2522614"],["-104.6097483","38.252013"],["-104.6097682","38.2514429"],["-104.609781","38.2512824"],["-104.6098035","38.2511203"],["-104.6098369","38.2509571"],["-104.6098808","38.2507978"],["-104.6099373","38.2506334"],["-104.6100005","38.2504794"],["-104.6100786","38.2503174"],["-104.6101588","38.2501737"],["-104.6102578","38.2500185"],["-104.6103581","38.2498787"],["-104.6110074","38.2490691"],["-104.6115297","38.2483986"],["-104.6117369","38.2480873"],["-104.6118515","38.2478426"],["-104.6119569","38.2475562"],["-104.6120176","38.2472419"],["-104.6120409","38.2468985"],["-104.6120435","38.2452297"],["-104.6120564","38.2439735"],["-104.6121175","38.243595"],["-104.6124239","38.2426291"],["-104.612503","38.2423239"],["-104.6125311","38.2421176"],["-104.6125159","38.2417623"],["-104.6124244","38.2413347"],["-104.6121514","38.2404629"],["-104.6120449","38.2399794"],["-104.6119811","38.2394738"],["-104.611966","38.2392401"],["-104.6119577","38.2383589"],["-104.6119623","38.2379271"],["-104.6119747","38.2375502"],["-104.612001","38.2372049"],["-104.6120487","38.2369371"],["-104.6122146","38.2362713"],["-104.6123665","38.2357931"],["-104.6125176","38.235435"],["-104.6132078","38.2340027"],["-104.6135947","38.233174"],["-104.6138016","38.2326499"],["-104.613919","38.2322706"],["-104.6139755","38.2319827"],["-104.6140059","38.2316157"],["-104.6140237","38.2311095"],["-104.614037","38.2302285"],["-104.6140544","38.2293809"],["-104.6140729","38.227975"],["-104.6140635","38.2266261"],["-104.6140687","38.2261628"],["-104.614082","38.2257412"],["-104.6141039","38.2253946"],["-104.614172","38.2246813"],["-104.6142075","38.2244596"],["-104.6142437","38.2242725"],["-104.6142943","38.2240684"],["-104.6143554","38.2238588"],["-104.6144273","38.2236448"],["-104.6144998","38.2234603"],["-104.6145745","38.2232894"],["-104.6146615","38.2231047"],["-104.6147733","38.2228866"],["-104.6148731","38.2227056"],["-104.6150637","38.2224035"],["-104.6152295","38.2221704"],["-104.6153987","38.2219433"],["-104.6155574","38.221751"],["-104.6157336","38.2215607"],["-104.6159529","38.2213482"],["-104.6161905","38.2211335"],["-104.6164583","38.2209078"],["-104.621798","38.2165912"],["-104.6221947","38.2162842"],["-104.6228181","38.2158341"],["-104.6248021","38.2144552"],["-104.6250907","38.2142328"],["-104.6253614","38.2140137"],["-104.6255693","38.2138373"],["-104.6259735","38.2134604"],["-104.6262238","38.2132088"],["-104.6267131","38.2126962"],["-104.6269088","38.2124726"],["-104.6273108","38.2119778"],["-104.6274534","38.2117826"],["-104.6275848","38.2115827"],["-104.6278418","38.2111563"],["-104.6279309","38.2109909"],["-104.628025","38.2108042"],["-104.6281215","38.2105922"],["-104.628226","38.2103415"],["-104.6284885","38.2096304"],["-104.6286267","38.2092487"],["-104.6287583","38.208868"],["-104.6314578","38.2009461"],["-104.6323913","38.1981524"],["-104.6326101","38.1974385"],["-104.6327658","38.196426"],["-104.6329971","38.1938961"],["-104.6332776","38.1907357"],["-104.6333275","38.1902305"],["-104.6345469","38.1762732"],["-104.6350239","38.1741552"],["-104.6361313","38.1716804"],["-104.6407092","38.1648929"],["-104.6422449","38.1627201"],["-104.6429831","38.1617678"],["-104.6558721","38.1475265"],["-104.6678851","38.1321346"],["-104.6694585","38.1298973"],["-104.6702144","38.1284819"],["-104.6703683","38.1279949"],["-104.6710454","38.125077"],["-104.6712651","38.1234613"],["-104.6713596","38.1217112"],["-104.6714208","38.1206938"],["-104.6714829","38.1200282"],["-104.6715585","38.1193951"],["-104.6716403","38.1189334"],["-104.6717503","38.1185082"],["-104.6719476","38.117902"],["-104.6723238","38.1169638"],["-104.672876","38.115701"],["-104.6735555","38.1145429"],["-104.6743938","38.1133666"],["-104.6749892","38.1125638"],["-104.6763923","38.1108095"],["-104.6831353","38.1033731"],["-104.6887209","38.0974644"],["-104.7027344","38.0822177"],["-104.7062664","38.0782156"],["-104.7145897","38.0633507"],["-104.715855","38.0615478"],["-104.7178478","38.0593919"],["-104.7236735","38.0526911"],["-104.7267645","38.0489681"],["-104.7273406","38.0480848"],["-104.7279376","38.047053"],["-104.7286901","38.045357"],["-104.7290476","38.044026"],["-104.7294845","38.0420213"],["-104.7300788","38.0350945"],["-104.7301888","38.033995"],["-104.7302962","38.0333409"],["-104.7304591","38.0326466"],["-104.7307877","38.0315285"],["-104.7313504","38.0301667"],["-104.7319055","38.0291014"],["-104.7325412","38.0280994"],["-104.7335444","38.026802"],["-104.7559723","38.000428"],["-104.7581054","37.9982921"],["-104.7592225","37.9973746"],["-104.7688034","37.9890367"],["-104.7746763","37.9833984"],["-104.7762294","37.9815488"],["-104.778075","37.9789223"],["-104.7799348","37.9762752"],["-104.7812288","37.9748887"],["-104.7839501","37.9724201"],["-104.7961839","37.9616794"],["-104.7973939","37.9605316"],["-104.7984775","37.9592574"],["-104.7989162","37.9587245"],["-104.7993317","37.9581548"],["-104.7998391","37.9573395"],["-104.8004948","37.955925"],["-104.8058431","37.9418749"],["-104.806272","37.9410176"],["-104.8066218","37.9406223"],["-104.8070569","37.9401779"],["-104.8075612","37.9398128"],["-104.8083748","37.9393845"],["-104.8097018","37.9390274"],["-104.8118046","37.9386707"],["-104.8135704","37.9383731"],["-104.8141982","37.9381844"],["-104.8147588","37.9379551"],["-104.8154129","37.9376242"],["-104.8160781","37.9371719"],["-104.8167132","37.9366042"],["-104.8171683","37.9359878"],["-104.8178778","37.9346222"],["-104.8226928","37.92417"],["-104.8274925","37.9140519"],["-104.8284823","37.9117469"],["-104.8287186","37.9109413"],["-104.8289135","37.9101408"],["-104.8290666","37.9092549"],["-104.8291633","37.9082228"],["-104.8290915","37.8925128"],["-104.8289693","37.8587764"],["-104.8287796","37.8042434"],["-104.8288207","37.8026787"],["-104.8288544","37.8023336"],["-104.8289458","37.8016655"],["-104.8349412","37.7699281"],["-104.83506","37.7692812"],["-104.8351291","37.7688505"],["-104.8351642","37.7685637"],["-104.8354354","37.7637009"],["-104.835563","37.7611774"],["-104.8359035","37.7542827"],["-104.8359197","37.7534686"],["-104.8358798","37.753061"],["-104.8358114","37.7526381"],["-104.8357183","37.7521987"],["-104.8356108","37.751808"],["-104.8354733","37.7514265"],["-104.8350231","37.7503352"],["-104.8308654","37.7405838"],["-104.8301999","37.7390132"],["-104.8298513","37.7382086"],["-104.8101517","37.691994"],["-104.8096281","37.6907578"],["-104.7980899","37.6636975"],["-104.7976034","37.6626006"],["-104.7973841","37.6621562"],["-104.7972118","37.6618324"],["-104.7968742","37.6612771"],["-104.7964176","37.660568"],["-104.7961327","37.6600328"],["-104.7960783","37.6599216"],["-104.7953083","37.6583089"],["-104.7950663","37.6578294"],["-104.7949069","37.6575596"],["-104.794743","37.6573072"],["-104.7942743","37.6566665"],["-104.7941707","37.6565083"],["-104.7941037","37.6563961"],["-104.7940429","37.6562897"],["-104.7939915","37.6561989"],["-104.793954","37.6561139"],["-104.7939364","37.6560571"],["-104.7939141","37.6559659"],["-104.7938828","37.6558098"],["-104.7938777","37.6557306"],["-104.7938666","37.655593"],["-104.7938596","37.6555305"],["-104.7938343","37.6554045"],["-104.793781","37.655212"],["-104.7936672","37.6549304"],["-104.7910236","37.6495107"],["-104.7905981","37.6486081"],["-104.790528","37.6484432"],["-104.7904651","37.6482894"],["-104.7903689","37.648037"],["-104.7903315","37.6479293"],["-104.7902639","37.6477159"],["-104.7902339","37.6476067"],["-104.790201","37.6474763"],["-104.7901691","37.6473291"],["-104.7901419","37.6471917"],["-104.7901209","37.647071"],["-104.7900834","37.6467957"],["-104.7899758","37.6452205"],["-104.7895106","37.6359015"],["-104.7895044","37.6358282"],["-104.7894921","37.6357207"],["-104.7894658","37.635523"],["-104.7894565","37.6354721"],["-104.7894493","37.6354341"],["-104.7894355","37.6353811"],["-104.7894108","37.6352956"],["-104.7893869","37.6352195"],["-104.7893631","37.6351461"],["-104.7893423","37.6350921"],["-104.7893115","37.6350194"],["-104.7892745","37.6349375"],["-104.7891226","37.634674"],["-104.7890145","37.6345115"],["-104.7889428","37.6344179"],["-104.7888477","37.6343012"],["-104.7886055","37.6340244"],["-104.7876686","37.6328929"],["-104.7840069","37.6284862"],["-104.7837741","37.6282041"],["-104.7836642","37.6280763"],["-104.7836268","37.6280383"],["-104.7835438","37.6279631"],["-104.7835088","37.6279414"],["-104.7834654","37.6279199"],["-104.7832044","37.6278139"],["-104.7831646","37.6277958"],["-104.7831377","37.6277796"],["-104.7830813","37.6277423"],["-104.7830331","37.6277044"],["-104.7829585","37.6276288"],["-104.7828182","37.6273669"],["-104.7818792","37.6255836"],["-104.78184","37.6255079"],["-104.7817464","37.625327"],["-104.7817159","37.625265"],["-104.7816179","37.6250734"],["-104.7814009","37.624657"],["-104.7811719","37.6242259"],["-104.7810425","37.6239842"],["-104.780676","37.6232928"],["-104.7803848","37.6227232"],["-104.7956028","37.6176705"],["-104.7959306","37.6175537"],["-104.7961096","37.6174695"],["-104.7963399","37.6173337"],["-104.7965638","37.6171955"],["-104.7971714","37.6167831"],["-104.7981169","37.6161411"],["-104.7984334","37.6159324"],["-104.8002212","37.614728"],["-104.8007702","37.6143935"],["-104.8072175","37.6111092"],["-104.8075334","37.6109594"],["-104.8078089","37.6108429"],["-104.8080423","37.6107597"],["-104.8082885","37.6106813"],["-104.8085131","37.6106174"],["-104.8087461","37.6105606"],["-104.8089995","37.6105119"],["-104.8092656","37.6104668"],["-104.8095279","37.610434"],["-104.8097965","37.6104101"],["-104.8101117","37.6103932"],["-104.8105163","37.6103803"],["-104.8117716","37.6103567"],["-104.8121078","37.6103393"],["-104.812371","37.610309"],["-104.8126474","37.6102631"],["-104.8129251","37.6102057"],["-104.8132645","37.6101168"],["-104.8136205","37.6100062"],["-104.8141437","37.6098208"],["-104.8208772","37.607299"],["-104.8226634","37.606586"],["-104.8240877","37.6059656"],["-104.8255127","37.6052712"],["-104.8272925","37.60431"],["-104.8289595","37.6033581"],["-104.8310699","37.6021934"],["-104.8332606","37.6011724"],["-104.8338072","37.6009598"],["-104.8350767","37.6004998"],["-104.8357856","37.6002641"],["-104.8365656","37.6000169"],["-104.8372392","37.5998352"],["-104.8378926","37.5996811"],["-104.8386463","37.5995275"],["-104.8393177","37.5994073"],["-104.8412212","37.5991349"],["-104.8422517","37.5990346"],["-104.8587233","37.5978528"],["-104.8592623","37.5977988"],["-104.859715","37.5977252"],["-104.8600736","37.5976562"],["-104.860458","37.5975635"],["-104.8608684","37.5974381"],["-104.8612342","37.5973063"],["-104.8615894","37.59715"],["-104.8619365","37.5969823"],["-104.8622678","37.5967878"],["-104.8626069","37.5965709"],["-104.8630132","37.5962628"],["-104.8636164","37.5957503"],["-104.8711157","37.589154"],["-104.8713994","37.5889204"],["-104.8717079","37.5886875"],["-104.872143","37.5883823"],["-104.8726601","37.5880439"],["-104.873188","37.5877407"],["-104.8736121","37.5875156"],["-104.8740235","37.5873201"],["-104.8761329","37.5863999"],["-104.8764411","37.5862725"],["-104.8767399","37.5861609"],["-104.8770367","37.5860661"],["-104.8773111","37.585988"],["-104.8775925","37.5859206"],["-104.8778572","37.5858741"],["-104.8781612","37.5858333"],["-104.8784469","37.5858096"],["-104.8786945","37.5857957"],["-104.8789932","37.5857873"],["-104.8862302","37.5858626"],["-104.887496","37.5858525"],["-104.888682","37.5858112"],["-104.8958862","37.5853095"],["-104.8966349","37.5852148"],["-104.8971834","37.5850976"],["-104.8976554","37.5849775"],["-104.89822","37.584766"],["-104.8993896","37.5842677"],["-104.9013067","37.5833776"],["-104.9139463","37.5776125"],["-104.9189146","37.575293"],["-104.9199651","37.5745947"],["-104.9207487","37.5739512"],["-104.9308708","37.5644589"],["-104.9342049","37.561962"],["-104.9354314","37.5609961"],["-104.9364703","37.5602861"],["-104.9374116","37.5597564"],["-104.9544861","37.5527282"],["-104.9554936","37.5523828"],["-104.9561397","37.55224"],["-104.9577836","37.5519649"],["-104.958801","37.5518437"],["-104.9603944","37.5516652"],["-104.9827613","37.549195"],["-104.9862804","37.5487423"],["-105.0030581","37.5449"],["-105.0048366","37.544546"],["-105.005825","37.5444288"],["-105.009278","37.5442131"],["-105.0657268","37.5411445"],["-105.0667669","37.5410969"],["-105.0677305","37.5411505"],["-105.0685224","37.5412472"],["-105.0693329","37.5413949"],["-105.0899789","37.546905"],["-105.0958033","37.5486979"],["-105.1080666","37.5524729"],["-105.1108609","37.5533012"],["-105.1114797","37.5534158"],["-105.112275","37.5535039"],["-105.1151229","37.5536178"],["-105.120666","37.5537864"],["-105.1229859","37.554238"],["-105.1250786","37.5550868"],["-105.1261874","37.5555588"],["-105.1284216","37.5565052"],["-105.1552415","37.5679609"],["-105.1598092","37.569919"],["-105.1659873","37.5725735"],["-105.1675327","37.5732404"],["-105.1685522","37.5737141"],["-105.1691293","37.574084"],["-105.1696818","37.5744754"],["-105.1707822","37.5754357"],["-105.1716228","37.576417"],["-105.172491","37.5774196"],["-105.1738309","37.5789713"],["-105.1777388","37.5835539"],["-105.1787696","37.5848151"],["-105.1794446","37.585722"],["-105.1799739","37.5865215"],["-105.1806797","37.5876558"],["-105.1811186","37.5884503"],["-105.1816489","37.5894358"],["-105.1821297","37.5902727"],["-105.182414","37.590703"],["-105.1827664","37.5911604"],["-105.1832646","37.5917345"],["-105.1837912","37.5923309"],["-105.1842472","37.5928621"],["-105.1845827","37.5933041"],["-105.1847234","37.5935623"],["-105.1849074","37.5939532"],["-105.1850736","37.5943814"],["-105.1851402","37.5947496"],["-105.185178","37.5952154"],["-105.1851807","37.5956978"],["-105.1849983","37.5970591"],["-105.1849243","37.5977989"],["-105.1849583","37.5984053"],["-105.1850364","37.5989552"],["-105.1851632","37.5995235"],["-105.1853601","37.6002591"],["-105.1854417","37.6007098"],["-105.1854437","37.6011885"],["-105.1854041","37.6016705"],["-105.185282","37.6021419"],["-105.1851095","37.6025804"],["-105.1848382","37.6030388"],["-105.1844498","37.6035218"],["-105.1837956","37.6042571"],["-105.1832169","37.6050295"],["-105.1829624","37.6055064"],["-105.1827604","37.605971"],["-105.1826542","37.606368"],["-105.1826162","37.606597"],["-105.1825778","37.6068883"],["-105.1825833","37.6073363"],["-105.1826476","37.6078595"],["-105.1827482","37.6083176"],["-105.1828702","37.6086212"],["-105.1830444","37.6089467"],["-105.1832582","37.6092496"],["-105.1835149","37.6095986"],["-105.183754","37.6098929"],["-105.1840121","37.6101338"],["-105.1844307","37.6104813"],["-105.1849512","37.6108409"],["-105.1857496","37.6112906"],["-105.1869846","37.6119263"],["-105.1879505","37.6124381"],["-105.1885536","37.6127977"],["-105.1890681","37.6131632"],["-105.1896142","37.6136387"],["-105.1898742","37.6138949"],["-105.1901384","37.6141941"],["-105.1903417","37.6144637"],["-105.1906014","37.6147962"],["-105.1909955","37.6153565"],["-105.1914183","37.6158923"],["-105.1917495","37.6162531"],["-105.1920737","37.6165569"],["-105.1928394","37.6170758"],["-105.1934966","37.6173608"],["-105.1940906","37.6175544"],["-105.1947376","37.617688"],["-105.1953146","37.6177396"],["-105.1958599","37.6177353"],["-105.1964914","37.6176857"],["-105.1971022","37.6175604"],["-105.1976219","37.6174024"],["-105.1982898","37.6171202"],["-105.1992525","37.6165577"],["-105.205287","37.6127594"],["-105.2061176","37.6122969"],["-105.2068636","37.6119534"],["-105.2075472","37.6117058"],["-105.2081728","37.6115505"],["-105.2089606","37.6114241"],["-105.2131383","37.6109159"],["-105.2140465","37.6107505"],["-105.2147985","37.6105828"],["-105.215628","37.6103589"],["-105.2168992","37.6099046"],["-105.22127","37.6080437"],["-105.2270112","37.6055816"],["-105.2279456","37.6051573"],["-105.2285298","37.6048274"],["-105.2288858","37.6045429"],["-105.2293436","37.604124"],["-105.2297526","37.603583"],["-105.2302853","37.6028379"],["-105.2309084","37.6020599"],["-105.2312982","37.6016908"],["-105.2317606","37.6013555"],["-105.2323551","37.6010315"],["-105.232951","37.6008"],["-105.2354983","37.5999885"],["-105.2370461","37.5995039"],["-105.2377815","37.5992446"],["-105.2382746","37.5990329"],["-105.238726","37.598788"],["-105.2391076","37.5985245"],["-105.2395223","37.5981755"],["-105.2399401","37.5976908"],["-105.2411181","37.5962804"],["-105.2416835","37.5957318"],["-105.2429928","37.5946408"],["-105.2433293","37.5943288"],["-105.2436677","37.5939366"],["-105.2440002","37.5935296"],["-105.2444678","37.5927635"],["-105.2448185","37.5922776"],["-105.2453826","37.5916877"],["-105.2458183","37.5913135"],["-105.2462999","37.590985"],["-105.2468083","37.59068"],["-105.2474286","37.590413"],["-105.2480767","37.5902049"],["-105.2488974","37.5900178"],["-105.2502818","37.5897948"],["-105.2514147","37.5896002"],["-105.2522914","37.5894144"],["-105.2535459","37.5890751"],["-105.2544808","37.5887686"],["-105.2555827","37.5883361"],["-105.2568041","37.5877912"],["-105.2607072","37.5858482"],["-105.2611968","37.58553"],["-105.2617141","37.585157"],["-105.2621429","37.5847579"],["-105.2626063","37.5842184"],["-105.2631987","37.5834309"],["-105.2637459","37.5826761"],["-105.2644361","37.5817987"],["-105.2647322","37.5814953"],["-105.2650969","37.5811921"],["-105.2655061","37.5809167"],["-105.2660037","37.580659"],["-105.2667587","37.580375"],["-105.2680572","37.5799552"],["-105.2691372","37.5795977"],["-105.2697221","37.5793383"],["-105.2701267","37.5791147"],["-105.2705758","37.5787953"],["-105.270933","37.578497"],["-105.2712643","37.5781443"],["-105.2722953","37.5769085"],["-105.272912","37.5762482"],["-105.2735708","37.5755996"],["-105.275281","37.5741396"],["-105.2757784","37.5736356"],["-105.2762369","37.573062"],["-105.2772612","37.5713931"],["-105.2776471","37.5708385"],["-105.2782249","37.5701746"],["-105.2787067","37.5696717"],["-105.2791516","37.5692591"],["-105.2869859","37.5618349"],["-105.2871994","37.5615869"],["-105.2874056","37.5613129"],["-105.2876459","37.5609183"],["-105.2878007","37.560571"],["-105.2879785","37.5599534"],["-105.2880226","37.5595581"],["-105.2880128","37.559177"],["-105.2879614","37.5588217"],["-105.2878955","37.5584571"],["-105.2878045","37.5581937"],["-105.2877005","37.5579264"],["-105.28622","37.5545099"],["-105.2856703","37.5532925"],["-105.2849939","37.5517816"],["-105.2846015","37.5508762"],["-105.2843628","37.5501433"],["-105.2842011","37.5495248"],["-105.2841759","37.5490234"],["-105.2841735","37.5484102"],["-105.2842787","37.5474754"],["-105.2844741","37.5467951"],["-105.2846632","37.5463346"],["-105.2848601","37.5459256"],["-105.2851714","37.5454077"],["-105.2859609","37.5443603"],["-105.2897486","37.5395318"],["-105.2908049","37.5381121"],["-105.2912593","37.5374532"],["-105.2923955","37.5357794"],["-105.2929267","37.5348028"],["-105.2935267","37.5335522"],["-105.2939394","37.5327871"],["-105.2942589","37.5323418"],["-105.2946752","37.5318809"],["-105.2954818","37.5310884"],["-105.2961789","37.5302497"],["-105.29662","37.529494"],["-105.2968836","37.5288772"],["-105.3006689","37.5184844"],["-105.3009127","37.5180051"],["-105.3011438","37.5176724"],["-105.301382","37.5173547"],["-105.3016217","37.5171012"],["-105.3019275","37.5168156"],["-105.3022268","37.5165765"],["-105.3025717","37.5163433"],["-105.302958","37.5161333"],["-105.3033249","37.5159581"],["-105.3035965","37.5158469"],["-105.3042787","37.5156422"],["-105.3057341","37.5153646"],["-105.3087094","37.5149146"],["-105.3095676","37.5147636"],["-105.309917","37.5146049"],["-105.3114762","37.5140445"],["-105.3124959","37.5135348"],["-105.3135561","37.5127992"],["-105.3148641","37.5115921"],["-105.3165031","37.510042"],["-105.3190266","37.5078517"],["-105.3259945","37.5026119"],["-105.3285697","37.5006759"],["-105.3288659","37.5004078"],["-105.3291621","37.5001216"],["-105.329819","37.4993213"],["-105.3305945","37.4981279"],["-105.3314887","37.4969729"],["-105.332262","37.4963963"],["-105.3329283","37.4959652"],["-105.3337887","37.4955365"],["-105.3345783","37.4952282"],["-105.3354649","37.4948702"],["-105.3361624","37.4945871"],["-105.3370895","37.4941966"],["-105.3378887","37.4937587"],["-105.3389662","37.4929723"],["-105.3395899","37.4922173"],["-105.3400837","37.491472"],["-105.3534292","37.4666473"],["-105.3546318","37.464642"],["-105.3559192","37.4630849"],["-105.3572236","37.4618114"],["-105.3875428","37.4371986"],["-105.3889186","37.4361801"],["-105.3911046","37.4349629"],["-105.3962719","37.4321486"],["-105.3973252","37.4315859"],["-105.3982703","37.4311478"],["-105.3990078","37.4308855"],["-105.3998762","37.430644"],["-105.4042509","37.4296815"],["-105.4074852","37.4290124"],["-105.414502","37.4276254"],["-105.4260718","37.426178"],["-105.4267948","37.4261059"],["-105.4270569","37.426109"],["-105.4273208","37.426128"],["-105.4275922","37.4261597"],["-105.4278531","37.4262113"],["-105.4280987","37.4262739"],["-105.4283402","37.4263511"],["-105.4285593","37.426426"],["-105.4299177","37.42697"],["-105.4301474","37.4270567"],["-105.4305353","37.4271621"],["-105.4307447","37.4272032"],["-105.4309219","37.4272194"],["-105.4310574","37.4263709"],["-105.4313002","37.4247123"],["-105.4317926","37.4218136"],["-105.4319662","37.4207321"],["-105.4320161","37.419668"],["-105.4321947","37.398281"],["-105.4323099","37.3824474"],["-105.4323531","37.3786532"],["-105.4331278","37.3167104"],["-105.4333521","37.2870647"],["-105.4323974","37.2580104"],["-105.4323598","37.2574873"],["-105.4322452","37.2562974"],["-105.4321575","37.2557306"],["-105.4316431","37.2526719"],["-105.4257027","37.2185582"],["-105.4254784","37.2168024"],["-105.4250588","37.205404"],["-105.4255496","37.2023126"],["-105.4259165","37.2002943"],["-105.4260201","37.1997102"],["-105.4261046","37.1993503"],["-105.4263132","37.1988523"],["-105.4265063","37.1985223"],["-105.4266628","37.1983073"],["-105.4267363","37.1982057"],["-105.4269713","37.197889"],["-105.427148","37.1976037"],["-105.4276665","37.196677"],["-105.4282261","37.1956722"],["-105.4285078","37.195189"],["-105.4285541","37.1951336"],["-105.4286207","37.1950658"],["-105.4287141","37.1949725"],["-105.4288386","37.1948512"],["-105.4292636","37.194507"],["-105.4295717","37.1942872"],["-105.4299074","37.194088"],["-105.4300888","37.1940044"],["-105.4302792","37.1939309"],["-105.4304624","37.1938655"],["-105.4308091","37.1937655"],["-105.4310209","37.1937105"],["-105.4314257","37.1936333"],["-105.4316214","37.1936098"],["-105.4318254","37.1935903"],["-105.4320354","37.1935787"],["-105.4329567","37.1936118"],["-105.4335328","37.1936197"],["-105.4339745","37.193596"],["-105.4344072","37.1935586"],["-105.4347895","37.1934982"],["-105.4357526","37.1932713"],["-105.4389857","37.1924389"],["-105.4394903","37.192324"],["-105.4398971","37.1922524"],["-105.4402917","37.192204"],["-105.441095","37.1921337"],["-105.4413885","37.1921187"],["-105.4417333","37.1921151"],["-105.4429263","37.1921442"],["-105.4498505","37.192338"],["-105.4504844","37.1923295"],["-105.451826","37.1922679"],["-105.4524751","37.1922041"],["-105.4564427","37.1917265"],["-105.4571689","37.1916627"],["-105.4587301","37.1916088"],["-105.4765827","37.1916378"],["-105.4791188","37.1916255"],["-105.4839754","37.1916533"],["-105.4850767","37.1916299"],["-105.4858292","37.1915823"],["-105.4865989","37.1915108"],["-105.4876788","37.1913754"],["-105.4888077","37.1911761"],["-105.490239","37.1908527"],["-105.4916405","37.1904569"],["-105.4929466","37.1899824"],["-105.4941053","37.1894687"],["-105.4951058","37.1889929"],["-105.4960193","37.1884577"],["-105.4967581","37.1879665"],["-105.4978098","37.187164"],["-105.498802","37.186318"],["-105.5033303","37.1819365"],["-105.5080197","37.1773424"],["-105.5179707","37.167556"],["-105.5187409","37.1666579"],["-105.5194836","37.1656527"],["-105.5201827","37.1645084"],["-105.5206894","37.163488"],["-105.5209632","37.1628581"],["-105.5211824","37.1622337"],["-105.5214943","37.1611358"],["-105.5216996","37.1601214"],["-105.5218085","37.1591634"],["-105.5218434","37.1581597"],["-105.521664","37.1459261"],["-105.5214901","37.1371879"],["-105.5207223","37.090143"],["-105.5208317","37.0731558"],["-105.5209237","37.0684671"],["-105.5224276","36.9918235"],["-105.5224988","36.9912368"],["-105.522569","36.9908076"],["-105.52283","36.9899963"],["-105.5231579","36.9892398"],["-105.5235997","36.9884481"],["-105.524171","36.9877264"],["-105.5334757","36.9775317"],["-105.5360581","36.973454"],["-105.5402421","36.9667231"],["-105.5418621","36.9632863"],["-105.548231","36.9496174"],["-105.5492385","36.9474633"],["-105.5505353","36.9446752"],["-105.5789908","36.8834507"],["-105.5817962","36.8772158"],["-105.5825986","36.8750928"],["-105.5832668","36.8729103"],["-105.5838476","36.8707941"],["-105.5844367","36.8680968"],["-105.5847963","36.8659971"],["-105.5850724","36.8640099"],["-105.5852622","36.8618972"],["-105.5853667","36.8588382"],["-105.5853873","36.8435599"],["-105.5853776","36.8383595"],["-105.5853876","36.8349913"],["-105.5853344","36.8264488"],["-105.5852876","36.8229761"],["-105.5853007","36.8221733"],["-105.5853108","36.7892789"],["-105.5854194","36.7874966"],["-105.5856104","36.785542"],["-105.585816","36.7839272"],["-105.5860862","36.782268"],["-105.5864222","36.7804981"],["-105.5870062","36.7781344"],["-105.5877247","36.7755889"],["-105.5885913","36.7731148"],["-105.5893016","36.7712961"],["-105.5910621","36.7673683"],["-105.5926802","36.7637515"],["-105.5940162","36.7605168"],["-105.5950304","36.7564145"],["-105.595225","36.7539236"],["-105.5953177","36.7335232"],["-105.5953181","36.7324315"],["-105.5952987","36.7272098"],["-105.5952761","36.7231876"],["-105.595276","36.7226845"],["-105.5952621","36.7220986"],["-105.5952747","36.7211989"],["-105.5952624","36.7205043"],["-105.5952707","36.720213"],["-105.5952629","36.7186592"],["-105.5952545","36.7170267"],["-105.595306","36.7160153"],["-105.5954238","36.7151764"],["-105.595623","36.7141855"],["-105.5958865","36.7131526"],["-105.596101","36.712284"],["-105.5961838","36.7116421"],["-105.5962266","36.7108812"],["-105.5961988","36.7101203"],["-105.5961048","36.7094279"],["-105.5959958","36.7089032"],["-105.5958861","36.7085"],["-105.5955896","36.7075158"],["-105.595517","36.7072966"],["-105.5954791","36.7071554"],["-105.5953935","36.7062114"],["-105.5954588","36.7052266"],["-105.5957358","36.7043171"],["-105.5960389","36.7034698"],["-105.5962868","36.7029225"],["-105.5965104","36.7025193"],["-105.5970778","36.7017759"],["-105.5974423","36.7013779"],["-105.5976974","36.7011282"],["-105.5984229","36.700468"],["-105.5987623","36.7002571"],["-105.5997289","36.6997174"],["-105.6000847","36.6995185"],["-105.6004185","36.6993382"],["-105.6007924","36.69915"],["-105.6021507","36.6984189"],["-105.6028461","36.6980212"],["-105.604015","36.6973491"],["-105.6096207","36.6942298"],["-105.6105379","36.6937322"],["-105.6112874","36.693318"],["-105.6117695","36.6930595"],["-105.6122631","36.6927849"],["-105.6127526","36.6925067"],["-105.6161297","36.6906529"],["-105.6171829","36.6900759"],["-105.6178482","36.6897106"],["-105.6184986","36.6893525"],["-105.6191495","36.6889382"],["-105.619648","36.6885678"],["-105.6202661","36.6880417"],["-105.6214326","36.6868214"],["-105.6244256","36.6835912"],["-105.6251125","36.6827927"],["-105.6256154","36.6821408"],["-105.626518","36.680729"],["-105.6269791","36.6799307"],["-105.6273336","36.6791057"],["-105.6279706","36.6773347"],["-105.6391896","36.6433488"],["-105.6396488","36.642309"],["-105.6399124","36.6416631"],["-105.6408918","36.6401164"],["-105.6615355","36.6104145"],["-105.6619551","36.6098147"],["-105.6622184","36.609406"],["-105.6624695","36.6089649"],["-105.6626928","36.6084704"],["-105.6628466","36.6080747"],["-105.6629796","36.6076725"],["-105.6630843","36.6072684"],["-105.6631832","36.6067775"],["-105.6632351","36.6063626"],["-105.6632735","36.6050758"],["-105.6632481","36.6043798"],["-105.6632101","36.6038086"],["-105.6631124","36.6031919"],["-105.663006","36.6025964"],["-105.6627832","36.6017016"],["-105.6608786","36.5947539"],["-105.6606175","36.5937358"],["-105.660469","36.5929424"],["-105.6603699","36.5922701"],["-105.6603325","36.5916288"],["-105.6603181","36.5910616"],["-105.6603344","36.5904683"],["-105.6604238","36.5893094"],["-105.6606583","36.5869143"],["-105.6607546","36.5866012"],["-105.66095","36.5861583"],["-105.6612702","36.5857103"],["-105.6615845","36.5853362"],["-105.6618762","36.5850536"],["-105.6622877","36.5847733"],["-105.6626961","36.5845345"],["-105.6631977","36.5843095"],["-105.6637325","36.5840681"],["-105.6640816","36.5838851"],["-105.6644354","36.5836517"],["-105.6647662","36.5833785"],["-105.6650933","36.5830804"],["-105.6653097","36.5828432"],["-105.6655338","36.5825541"],["-105.6656953","36.5822876"],["-105.6659272","36.5817827"],["-105.6667029","36.5796194"],["-105.6669452","36.5789716"],["-105.6670571","36.5786967"],["-105.6671535","36.5784719"],["-105.6674608","36.5779681"],["-105.6678048","36.5774763"],["-105.6680002","36.5771695"],["-105.668422","36.5766608"],["-105.6692098","36.5758364"],["-105.6699088","36.5751083"],["-105.6703461","36.5746391"],["-105.6708609","36.5740098"],["-105.6713229","36.573382"],["-105.6716936","36.5728053"],["-105.6721158","36.5720337"],["-105.6723977","36.5714279"],["-105.6726343","36.5708445"],["-105.6728523","36.5701538"],["-105.6743289","36.5647944"],["-105.6745653","36.5635132"],["-105.6746408","36.5628832"],["-105.674657","36.562317"],["-105.6746587","36.5616954"],["-105.6746267","36.5608848"],["-105.6745227","36.5600736"],["-105.6743707","36.559306"],["-105.6742211","36.5586492"],["-105.670788","36.5463429"],["-105.6705945","36.5452335"],["-105.6705079","36.5442197"],["-105.6704586","36.5429254"],["-105.6704167","36.5420569"],["-105.6703122","36.5414975"],["-105.6700635","36.5407878"],["-105.6699206","36.540505"],["-105.6697711","36.5402458"],["-105.6695742","36.5399408"],["-105.6694115","36.5397231"],["-105.6691973","36.5394726"],["-105.6688755","36.5391357"],["-105.6682874","36.5385729"],["-105.6678562","36.5381477"],["-105.6675683","36.5378264"],["-105.6673448","36.5375149"],["-105.6671385","36.5371929"],["-105.6669741","36.5367564"],["-105.6668604","36.5362631"],["-105.6668038","36.5355899"],["-105.6668179","36.5349342"],["-105.6668455","36.5342662"],["-105.6668516","36.5339703"],["-105.6671006","36.5230405"],["-105.6670784","36.5217638"],["-105.6669831","36.5212234"],["-105.6667889","36.520751"],["-105.6665258","36.5203404"],["-105.6661","36.5198477"],["-105.6655661","36.5193336"],["-105.6651248","36.5190655"],["-105.6644806","36.518771"],["-105.6637234","36.5185293"],["-105.6628805","36.5182901"],["-105.6618341","36.5179931"],["-105.6613549","36.5177717"],["-105.6610672","36.5176384"],["-105.6606586","36.5173926"],["-105.6602388","36.5171254"],["-105.659799","36.5167615"],["-105.6587453","36.5158021"],["-105.6579537","36.5150464"],["-105.655237","36.5125578"],["-105.6428524","36.5009805"],["-105.6409966","36.4992421"],["-105.6125631","36.47288"],["-105.6115945","36.4719622"],["-105.6110051","36.4714422"],["-105.6106571","36.4711239"],["-105.6058152","36.4666069"],["-105.6013169","36.4624131"],["-105.6003272","36.4614978"],["-105.5987858","36.4600589"],["-105.5986873","36.4599412"],["-105.5985936","36.4598441"],["-105.597712","36.4589849"],["-105.5974506","36.4587324"],["-105.5963602","36.4577124"],["-105.5955877","36.457013"],["-105.595503","36.4569444"],["-105.5952938","36.4567955"],["-105.5847776","36.4470198"],["-105.580303","36.4428338"],["-105.5793224","36.4418628"],["-105.5785796","36.4409906"],["-105.5779011","36.4400662"],["-105.5774829","36.4394355"],["-105.577085","36.4387049"],["-105.5767282","36.4379966"],["-105.5763405","36.4371177"],["-105.5762122","36.4367562"],["-105.5760945","36.4364307"],["-105.5759588","36.43602"],["-105.5758869","36.4357291"],["-105.5758049","36.4353333"],["-105.5757084","36.434816"],["-105.5755678","36.4338787"],["-105.5755243","36.4335062"],["-105.5754991","36.4330673"],["-105.5754816","36.4326951"],["-105.5754463","36.4315026"],["-105.5754412","36.4310375"],["-105.5753741","36.4290696"],["-105.5753312","36.428629"],["-105.5751655","36.4281828"],["-105.5748197","36.4274712"],["-105.5743968","36.4266737"],["-105.5740083","36.425959"],["-105.5735134","36.4250645"],["-105.5726838","36.4240425"],["-105.5728404","36.4237682"],["-105.5727675","36.4234844"],["-105.5727242","36.4231407"],["-105.5727","36.422688"],["-105.5727554","36.4219587"],["-105.5727587","36.4216803"],["-105.5727333","36.4213413"],["-105.5726488","36.4209942"],["-105.5725122","36.420687"],["-105.572363","36.4203947"],["-105.5715012","36.4190199"],["-105.5711758","36.4184847"],["-105.5704684","36.4173912"],["-105.5700244","36.4166994"],["-105.5696567","36.4162131"],["-105.5692548","36.4158317"],["-105.5682276","36.414989"],["-105.5680713","36.4148266"],["-105.5678693","36.4144867"],["-105.5678077","36.4142986"],["-105.5677625","36.4139441"],["-105.5677893","36.4137555"],["-105.5678424","36.4135246"],["-105.5679381","36.4133173"],["-105.568088","36.4131074"],["-105.5683682","36.4127714"],["-105.5692756","36.4117633"],["-105.5700209","36.4109997"],["-105.5704181","36.4106276"],["-105.5705746","36.4104764"],["-105.5715544","36.4094588"],["-105.5718997","36.4090832"],["-105.5722311","36.4086925"],["-105.5725537","36.4082846"],["-105.5733604","36.4072817"],["-105.5734415","36.4071945"],["-105.5734993","36.4071102"],["-105.5735664","36.406941"],["-105.5736177","36.4067196"],["-105.5726755","36.4063374"],["-105.5736239","36.4067012"],["-105.5737208","36.4065025"],["-105.5738048","36.4062985"],["-105.5740415","36.4057891"],["-105.5740889","36.405659"],["-105.5741148","36.4055905"],["-105.5741442","36.4054721"],["-105.5741728","36.4052431"],["-105.5742038","36.4049398"],["-105.5742307","36.404593"],["-105.5742759","36.4041815"],["-105.5743794","36.403674"],["-105.5744539","36.4034307"],["-105.5745572","36.4031848"],["-105.5746963","36.4028712"],["-105.5749402","36.4024519"],["-105.575443","36.4016551"],["-105.5760858","36.4006421"],["-105.5765289","36.4000359"],["-105.5775006","36.3985946"],["-105.5796388","36.3951688"],["-105.5797786","36.3949396"],["-105.5809422","36.3930738"],["-105.5821522","36.3911171"],["-105.5824412","36.3906673"],["-105.5845617","36.3873508"],["-105.5864333","36.38462"],["-105.5871669","36.3835673"],["-105.5878076","36.3826415"],["-105.5892708","36.3805156"],["-105.5895679","36.3800761"],["-105.5903134","36.3790201"],["-105.5950287","36.3722252"],["-105.5957084","36.3712578"],["-105.5963402","36.3704051"],["-105.5968995","36.3696962"],["-105.5975677","36.3688909"],["-105.5981542","36.3682415"],["-105.5991562","36.3671977"],["-105.6002369","36.366163"],["-105.6006082","36.3658285"],["-105.6006748","36.3657749"],["-105.601604","36.3649912"],["-105.6022877","36.3644453"],["-105.6036503","36.3633948"],["-105.603833","36.3632541"],["-105.604556","36.3627287"],["-105.6063509","36.361387"],["-105.6068685","36.3609948"],["-105.6072835","36.3606899"],["-105.607722","36.3603522"],["-105.6081628","36.3599895"],["-105.6087791","36.3593772"],["-105.6091336","36.3590197"],["-105.6093025","36.3588512"],["-105.6096076","36.3585607"],["-105.6101809","36.358045"],["-105.6106966","36.3576048"],["-105.6112919","36.3571413"],["-105.6119543","36.3566697"],["-105.6124942","36.3563093"],["-105.6128607","36.3560889"],["-105.6132533","36.3558647"],["-105.6135754","36.3556832"],["-105.6146861","36.3551275"],["-105.6152693","36.3548558"],["-105.6157671","36.354651"],["-105.6280761","36.3501207"],["-105.629017","36.3498084"],["-105.6294032","36.3496992"],["-105.6297432","36.3496046"],["-105.6299804","36.3495346"],["-105.6307327","36.3492945"],["-105.6321934","36.348771"],["-105.6328514","36.3485324"],["-105.6329606","36.3485166"],["-105.6332032","36.3484296"],["-105.6350667","36.3477324"],["-105.6358779","36.3474267"],["-105.6390243","36.3462626"],["-105.6391426","36.3461961"],["-105.6440365","36.3443724"],["-105.6448633","36.3440728"],["-105.679364","36.331318"],["-105.7029811","36.3225797"],["-105.7041581","36.3221398"],["-105.7243876","36.3146314"],["-105.7252176","36.3143131"],["-105.7257171","36.3140954"],["-105.7261438","36.3138844"],["-105.7264784","36.3137063"],["-105.7267403","36.3135519"],["-105.7271055","36.3133205"],["-105.7273177","36.3131731"],["-105.7277057","36.312896"],["-105.7282952","36.3124581"],["-105.7285136","36.3122802"],["-105.7287117","36.3121077"],["-105.7289298","36.3119034"],["-105.7291879","36.3116326"],["-105.729408","36.3113785"],["-105.7296236","36.311102"],["-105.7298834","36.3107297"],["-105.7301164","36.3103707"],["-105.7304757","36.3097399"],["-105.7306225","36.3094226"],["-105.7307332","36.3091404"],["-105.7308286","36.3088595"],["-105.7309114","36.3085583"],["-105.7309819","36.3082769"],["-105.7310797","36.3077797"],["-105.7311276","36.3074191"],["-105.7311547","36.3071248"],["-105.7311461","36.3066953"],["-105.731122","36.3062704"],["-105.7310679","36.3056396"],["-105.731029","36.3052256"],["-105.7310173","36.3050325"],["-105.7310141","36.3047858"],["-105.7310401","36.3045512"],["-105.7310769","36.3043535"],["-105.7311395","36.3041284"],["-105.731229","36.3039157"],["-105.7313389","36.3036881"],["-105.7314964","36.3034248"],["-105.7318725","36.3028554"],["-105.732007","36.3026746"],["-105.7321481","36.3025416"],["-105.7323276","36.302396"],["-105.7325183","36.3022661"],["-105.7327177","36.3021536"],["-105.7330088","36.3020171"],["-105.7332329","36.3019457"],["-105.7333773","36.301909"],["-105.7335277","36.3018765"],["-105.7337056","36.3018566"],["-105.7338791","36.3018416"],["-105.7341066","36.3018437"],["-105.7343238","36.3018597"],["-105.734513","36.3018815"],["-105.7347212","36.3019261"],["-105.7349436","36.3019922"],["-105.7351745","36.3020769"],["-105.7353445","36.3021547"],["-105.7355005","36.3022379"],["-105.7356061","36.3023031"],["-105.7357809","36.3024378"],["-105.735938","36.3025826"],["-105.7360926","36.3027635"],["-105.7362833","36.3030241"],["-105.7364751","36.3032948"],["-105.7366113","36.3034649"],["-105.7367614","36.3036259"],["-105.7369781","36.3038156"],["-105.7371613","36.3039455"],["-105.7373532","36.3040639"],["-105.7375448","36.3041674"],["-105.7377899","36.3042715"],["-105.738089","36.3043749"],["-105.7393751","36.3047491"],["-105.7397103","36.3048334"],["-105.7399684","36.3048759"],["-105.7402092","36.3049012"],["-105.7404281","36.3049112"],["-105.7406173","36.3049124"],["-105.7408093","36.3048999"],["-105.7409833","36.3048834"],["-105.7411669","36.304859"],["-105.7413695","36.3048134"],["-105.7415964","36.3047566"],["-105.7417802","36.3046954"],["-105.7419865","36.304617"],["-105.7422209","36.3045032"],["-105.7426023","36.3042828"],["-105.7451101","36.3026578"],["-105.7452582","36.3025521"],["-105.7454076","36.30243"],["-105.7455442","36.3023098"],["-105.7457814","36.3020475"],["-105.7459009","36.3018718"],["-105.7460071","36.3017023"],["-105.7460799","36.3015658"],["-105.7461482","36.3013962"],["-105.7461877","36.3012662"],["-105.7462285","36.3010991"],["-105.7462618","36.3009265"],["-105.7462776","36.3007575"],["-105.7462722","36.3005546"],["-105.7462496","36.3003316"],["-105.7462014","36.3001205"],["-105.7461605","36.2999902"],["-105.7460968","36.2998371"],["-105.7459964","36.2996447"],["-105.7458247","36.2993596"],["-105.7456137","36.2990404"],["-105.7454746","36.2988157"],["-105.7453773","36.2986081"],["-105.7453181","36.2984565"],["-105.7452876","36.2982948"],["-105.7452649","36.2981495"],["-105.7452468","36.2979593"],["-105.7452569","36.297734"],["-105.7452836","36.2975873"],["-105.7453353","36.297429"],["-105.7454359","36.2971979"],["-105.7455517","36.297"],["-105.7457165","36.2967801"],["-105.745847","36.2966401"],["-105.7459758","36.2965266"],["-105.7461681","36.2963897"],["-105.7463509","36.2962729"],["-105.7465615","36.2961636"],["-105.7468371","36.2960544"],["-105.7471794","36.2959428"],["-105.7474532","36.2958596"],["-105.7478921","36.2956883"],["-105.7480679","36.295601"],["-105.7482439","36.2954915"],["-105.7483839","36.2953883"],["-105.7485356","36.295257"],["-105.7486859","36.29511"],["-105.7488362","36.2949232"],["-105.7489811","36.2946969"],["-105.7493832","36.2939918"],["-105.7496947","36.2935031"],["-105.7498232","36.2933637"],["-105.7499406","36.2932434"],["-105.7501236","36.2930849"],["-105.7502845","36.2929737"],["-105.7504437","36.2928754"],["-105.7506996","36.2927505"],["-105.7512401","36.2924903"],["-105.7514676","36.2923666"],["-105.751662","36.292232"],["-105.7518672","36.29205"],["-105.7523835","36.2915281"],["-105.7525399","36.2913924"],["-105.7527585","36.2912232"],["-105.7529785","36.2910755"],["-105.7531676","36.2909653"],["-105.7533634","36.2908729"],["-105.7535544","36.2907941"],["-105.7537085","36.2907365"],["-105.7540137","36.2906531"],["-105.7545342","36.2905225"],["-105.7566215","36.2900056"],["-105.7569793","36.2899008"],["-105.7572377","36.2898092"],["-105.7574494","36.2897246"],["-105.7577314","36.2895873"],["-105.7579245","36.2894834"],["-105.7581957","36.2893088"],["-105.7584365","36.2891432"],["-105.7586057","36.2890123"],["-105.7589778","36.2886703"],["-105.7591129","36.2885219"],["-105.7592534","36.2883516"],["-105.759378","36.2881843"],["-105.759998","36.2873425"],["-105.7622995","36.284274"],["-105.7625703","36.2839009"],["-105.7632635","36.2829632"],["-105.7639994","36.2819862"],["-105.76421","36.2817266"],["-105.7646315","36.2812884"],["-105.7648627","36.2810731"],["-105.7651039","36.2808742"],["-105.7653289","36.2807012"],["-105.7655325","36.2805644"],["-105.7659427","36.280315"],["-105.7715199","36.2770226"],["-105.7733323","36.2759415"],["-105.7779525","36.2732042"],["-105.77896","36.2726039"],["-105.7798698","36.2721309"],["-105.7816366","36.2712343"],["-105.782582","36.270819"],["-105.7844759","36.270062"],["-105.7918884","36.2671418"],["-105.7921739","36.2670189"],["-105.7924494","36.2668853"],["-105.7930993","36.2665218"],["-105.7957943","36.2649071"],["-105.7961804","36.2646868"],["-105.796479","36.2645324"],["-105.796757","36.2644027"],["-105.7972505","36.2642014"],["-105.7980702","36.2638944"],["-105.7986791","36.2636371"],["-105.7991171","36.2634439"],["-105.799791","36.2631393"],["-105.8055848","36.2604799"],["-105.8065487","36.2600004"],["-105.8070237","36.2597323"],["-105.8075229","36.2594362"],["-105.8080858","36.2590678"],["-105.8116261","36.2565006"],["-105.8119751","36.25623"],["-105.8122314","36.256017"],["-105.8127117","36.2555613"],["-105.8139204","36.254364"],["-105.8143466","36.2539561"],["-105.8150191","36.2533794"],["-105.8156004","36.2529031"],["-105.8161934","36.2524229"],["-105.8164754","36.2521709"],["-105.8167687","36.2518855"],["-105.8173251","36.2512903"],["-105.8176936","36.2509027"],["-105.8178717","36.2507295"],["-105.8180617","36.2505625"],["-105.8182846","36.2503905"],["-105.818511","36.2502312"],["-105.8187532","36.2500886"],["-105.8191404","36.2498927"],["-105.8197739","36.2496119"],["-105.820326","36.2493476"],["-105.8206866","36.2491337"],["-105.8209793","36.2489535"],["-105.823728","36.246989"],["-105.8243173","36.2465225"],["-105.8247439","36.246134"],["-105.8251914","36.2456826"],["-105.8257484","36.24509"],["-105.8262105","36.2446397"],["-105.8266498","36.2442514"],["-105.8270068","36.2439805"],["-105.8275565","36.24361"],["-105.8280068","36.2433488"],["-105.8292146","36.2427192"],["-105.8314319","36.2415925"],["-105.8322808","36.2411812"],["-105.8327545","36.241011"],["-105.8331783","36.2408943"],["-105.8340434","36.2406998"],["-105.834832","36.2405361"],["-105.8368518","36.2400525"],["-105.8371671","36.2399592"],["-105.8374987","36.2398385"],["-105.8377804","36.239711"],["-105.8381002","36.2395343"],["-105.8384284","36.2393162"],["-105.8387007","36.2391042"],["-105.8389803","36.2388481"],["-105.8395054","36.2382565"],["-105.8399958","36.2377957"],["-105.8403728","36.2374952"],["-105.8407524","36.2372268"],["-105.8412123","36.2369255"],["-105.8417372","36.2365829"],["-105.8424238","36.2361851"],["-105.8427854","36.2359883"],["-105.8481438","36.2333388"],["-105.8484589","36.2331688"],["-105.8487182","36.2330163"],["-105.8499612","36.2321786"],["-105.8502906","36.2319734"],["-105.8506391","36.2317749"],["-105.8511838","36.231529"],["-105.8553483","36.2298998"],["-105.8569078","36.2292354"],["-105.8575351","36.2289108"],["-105.8581627","36.2285215"],["-105.8597184","36.2274859"],["-105.8619272","36.2260141"],["-105.8624589","36.2256054"],["-105.8628541","36.2252784"],["-105.8631235","36.2250099"],["-105.8634335","36.2246866"],["-105.8638742","36.2241579"],["-105.8641535","36.2237698"],["-105.86546","36.2218584"],["-105.8658729","36.2212826"],["-105.8661963","36.220944"],["-105.8665188","36.2206267"],["-105.8668088","36.2203851"],["-105.8670906","36.2201643"],["-105.867438","36.219934"],["-105.8677697","36.2197302"],["-105.8680441","36.219573"],["-105.8682703","36.219452"],["-105.8684663","36.2193572"],["-105.8689869","36.2191359"],["-105.8695517","36.2189404"],["-105.8699326","36.2188332"],["-105.8702339","36.2187541"],["-105.8857863","36.2150361"],["-105.88607","36.2149838"],["-105.8863976","36.2149311"],["-105.8869757","36.2148693"],["-105.8873585","36.2148427"],["-105.8983015","36.214493"],["-105.8990765","36.2144496"],["-105.8995013","36.2144032"],["-105.8999882","36.2143294"],["-105.9004435","36.2142377"],["-105.9010923","36.214079"],["-105.9020545","36.2137868"],["-105.9026599","36.213587"],["-105.9028415","36.2135229"],["-105.9047429","36.2128732"],["-105.9065676","36.212277"],["-105.9074891","36.2120481"],["-105.9084082","36.2118968"],["-105.9108708","36.2115311"],["-105.9118001","36.2113937"],["-105.9126117","36.2112747"],["-105.9131334","36.2112121"],["-105.9133945","36.211192"],["-105.9142262","36.2112249"],["-105.9192524","36.2115884"],["-105.921799","36.2118187"],["-105.9255773","36.2122408"],["-105.9275101","36.2124553"],["-105.9280814","36.2125378"],["-105.928429","36.2126094"],["-105.9287492","36.2127126"],["-105.9292228","36.2129186"],["-105.929656","36.2131298"],["-105.9299531","36.2132628"],["-105.9302794","36.213364"],["-105.9306202","36.2134246"],["-105.9308474","36.2134379"],["-105.9311702","36.2134248"],["-105.9315361","36.2133694"],["-105.9354089","36.2124733"],["-105.9359053","36.2123409"],["-105.936192","36.2122473"],["-105.9365174","36.2121042"],["-105.9385539","36.2110611"],["-105.9394193","36.2106054"],["-105.9402729","36.2102012"],["-105.940669","36.2100749"],["-105.9410468","36.2100131"],["-105.9415161","36.2099499"],["-105.9419435","36.2098895"],["-105.9423025","36.2097973"],["-105.9434141","36.2094068"],["-105.9442213","36.2091297"],["-105.9447558","36.2089645"],["-105.9451198","36.2089056"],["-105.9454063","36.208877"],["-105.9457801","36.2088696"],["-105.9522945","36.2092265"],["-105.9528145","36.2092716"],["-105.9531219","36.2093239"],["-105.9536149","36.2094595"],["-105.9542585","36.2096434"],["-105.9546342","36.2097292"],["-105.9550036","36.209754"],["-105.9553043","36.2097402"],["-105.9560425","36.2096141"],["-105.956742","36.209458"],["-105.957349","36.2092973"],["-105.9577344","36.2091625"],["-105.9580136","36.209024"],["-105.9582172","36.208894"],["-105.9584182","36.2087363"],["-105.9586582","36.2084839"],["-105.9588595","36.2082057"],["-105.9592822","36.2074914"],["-105.959475","36.2072114"],["-105.9597101","36.2069432"],["-105.9599504","36.2067416"],["-105.9601543","36.206598"],["-105.9606695","36.2062953"],["-105.963639","36.2045803"],["-105.965481","36.2035267"],["-105.9660679","36.2032703"],["-105.9669172","36.2029796"],["-105.9673494","36.2028288"],["-105.9676295","36.2026884"],["-105.967943","36.2024853"],["-105.9682943","36.2022002"],["-105.968523","36.2019483"],["-105.9690001","36.2012863"],["-105.9692589","36.2008962"],["-105.9694609","36.2006476"],["-105.9706755","36.1995926"],["-105.9709175","36.1993629"],["-105.9710938","36.1991263"],["-105.9712596","36.1988764"],["-105.9713535","36.1986377"],["-105.9715157","36.1979905"],["-105.9715839","36.1977623"],["-105.9716619","36.1975772"],["-105.9718192","36.1973254"],["-105.9720285","36.1970776"],["-105.9723148","36.1968267"],["-105.9731297","36.1961884"],["-105.9741692","36.195336"],["-105.9766694","36.1932264"],["-105.977158","36.1928011"],["-105.9774113","36.1925623"],["-105.977578","36.1923635"],["-105.9777048","36.1921754"],["-105.9778192","36.1919264"],["-105.9779303","36.1915968"],["-105.9780239","36.191246"],["-105.9781283","36.190954"],["-105.9782384","36.1907148"],["-105.9784476","36.1903632"],["-105.9786299","36.1900505"],["-105.9787757","36.1897728"],["-105.9788638","36.1895215"],["-105.9790225","36.1888995"],["-105.9792363","36.1883159"],["-105.9797288","36.1874537"],["-105.9798789","36.1871382"],["-105.9799984","36.1867713"],["-105.9800512","36.1864996"],["-105.9801061","36.186109"],["-105.9801056","36.1858167"],["-105.9800777","36.1855439"],["-105.9799983","36.1851844"],["-105.979904","36.184866"],["-105.9797416","36.1845075"],["-105.9795685","36.184171"],["-105.9792727","36.1837174"],["-105.9790341","36.1833773"],["-105.9787474","36.18303"],["-105.9784118","36.1826824"],["-105.977908","36.1822623"],["-105.9758035","36.1806077"],["-105.9732933","36.1787577"],["-105.972553","36.1782046"],["-105.9724048","36.178076"],["-105.9721329","36.1778354"],["-105.9718689","36.1775952"],["-105.9715064","36.1772286"],["-105.9710515","36.1766725"],["-105.970693","36.1761209"],["-105.9703925","36.1756154"],["-105.9702388","36.175325"],["-105.9700953","36.1749816"],["-105.969942","36.1745664"],["-105.9698303","36.1742047"],["-105.9697787","36.1739393"],["-105.9697153","36.1736834"],["-105.9688671","36.1697738"],["-105.9688348","36.1696187"],["-105.9687811","36.1694445"],["-105.9677096","36.1645709"],["-105.9675818","36.1639865"],["-105.9673112","36.1627651"],["-105.9671481","36.1619329"],["-105.9670862","36.1615024"],["-105.9670639","36.1612347"],["-105.9670529","36.1607441"],["-105.9670714","36.160144"],["-105.9671198","36.1595569"],["-105.9672242","36.1589716"],["-105.967339","36.1584977"],["-105.9674962","36.1579562"],["-105.9677219","36.1573496"],["-105.9679268","36.1568686"],["-105.9683786","36.1560221"],["-105.9687565","36.155428"],["-105.9691794","36.1548618"],["-105.9695802","36.1544048"],["-105.9700143","36.1539595"],["-105.9705712","36.1534546"],["-105.9712476","36.152918"],["-105.9718434","36.1524858"],["-105.9722489","36.1522213"],["-105.9733495","36.1514987"],["-105.9742917","36.1508788"],["-105.9793188","36.1475765"],["-105.981116","36.146626"],["-105.9817345","36.1462646"],["-105.9877953","36.1422201"],["-105.9884236","36.1417637"],["-105.9895946","36.140846"],["-105.9913729","36.1394391"],["-105.9934162","36.1377729"],["-105.9940886","36.1372323"],["-105.9944541","36.136938"],["-105.9949182","36.1365603"],["-105.9953932","36.1361723"],["-105.9964527","36.1353045"],["-105.9973384","36.1346024"],["-105.999861","36.1325493"],["-106.0003259","36.1321761"],["-106.0091131","36.1250395"],["-106.0094346","36.1247867"],["-106.0097503","36.124521"],["-106.0103027","36.1240875"],["-106.0106094","36.1238337"],["-106.0170979","36.1186025"],["-106.0180346","36.1178491"],["-106.0201478","36.1161135"],["-106.0207351","36.1156326"],["-106.021909","36.1146782"],["-106.0229506","36.1138222"],["-106.0258472","36.1115052"],["-106.0264845","36.1109966"],["-106.0270575","36.1105525"],["-106.0278091","36.1099534"],["-106.0281733","36.1096438"],["-106.0288063","36.1091347"],["-106.0296682","36.1084517"],["-106.0300365","36.1081677"],["-106.0303901","36.1078969"],["-106.0321785","36.1064279"],["-106.032353","36.1062727"],["-106.0331263","36.105661"],["-106.0333903","36.1054495"],["-106.0336037","36.1052939"],["-106.034501","36.1044835"],["-106.0369328","36.1025525"],["-106.0373698","36.1022012"],["-106.0386388","36.1011471"],["-106.0408713","36.0993498"],["-106.0414504","36.0988621"],["-106.0420155","36.0983893"],["-106.0433619","36.0972918"],["-106.0438286","36.096955"],["-106.0442081","36.0967141"],["-106.0450003","36.0960107"],["-106.0459936","36.0950741"],["-106.046753","36.0943309"],["-106.0475137","36.0935012"],["-106.047832","36.0930789"],["-106.0481911","36.0925371"],["-106.0484132","36.0921708"],["-106.0489327","36.0912565"],["-106.0493498","36.0903194"],["-106.0500884","36.0880386"],["-106.0585552","36.0610512"],["-106.0589053","36.0597261"],["-106.0615724","36.0456322"],["-106.061717","36.0448895"],["-106.063034","36.0376096"],["-106.0632497","36.0364331"],["-106.0635626","36.0347986"],["-106.0642323","36.0311607"],["-106.0642819","36.0306396"],["-106.0642797","36.0302485"],["-106.0642826","36.0299589"],["-106.0642458","36.029524"],["-106.0641647","36.0285868"],["-106.0641566","36.0285017"],["-106.0638495","36.0252529"],["-106.0637472","36.0238071"],["-106.0637679","36.0234296"],["-106.0638171","36.0230161"],["-106.0638415","36.0228163"],["-106.0640782","36.0210232"],["-106.0642377","36.0198944"],["-106.0642734","36.019491"],["-106.0644742","36.0167769"],["-106.0645038","36.0163202"],["-106.0645862","36.0152623"],["-106.064636","36.0145084"],["-106.0646635","36.0142174"],["-106.0648196","36.0119253"],["-106.0649546","36.0100981"],["-106.0649794","36.0097546"],["-106.0651118","36.007889"],["-106.0651975","36.006873"],["-106.0651564","36.0067199"],["-106.0651536","36.0066738"],["-106.0651351","36.0064748"],["-106.0651074","36.0062833"],["-106.0649726","36.0057985"],["-106.064853","36.0055275"],["-106.0646728","36.0052355"],["-106.0643124","36.0045678"],["-106.0640615","36.0041488"],["-106.0637335","36.0035292"],["-106.0634642","36.0028029"],["-106.0631996","36.0021337"],["-106.063112","36.0018953"],["-106.0629885","36.0014804"],["-106.0629136","36.0011805"],["-106.0628918","36.0008756"],["-106.0628973","36.0005083"],["-106.0629438","36.0002256"],["-106.0630327","35.9999271"],["-106.0632271","35.9993314"],["-106.0633282","35.9990506"],["-106.0634212","35.9988466"],["-106.0635257","35.9986381"],["-106.0637259","35.9984508"],["-106.0641624","35.9978063"],["-106.0645612","35.997235"],["-106.0646329","35.9970517"],["-106.0647984","35.9968399"],["-106.0651943","35.9964347"],["-106.0655482","35.9961448"],["-106.0660766","35.9957939"],["-106.0666544","35.9954339"],["-106.0672496","35.9950779"],["-106.0675332","35.9948255"],["-106.0677028","35.9945978"],["-106.0678125","35.9943611"],["-106.0678602","35.9941542"],["-106.0681425","35.992461"],["-106.0682196","35.9922047"],["-106.0681927","35.9920054"],["-106.0681394","35.9917997"],["-106.0679736","35.9914623"],["-106.0675938","35.9909223"],["-106.0668814","35.9900769"],["-106.0667079","35.9898634"],["-106.0661239","35.9891762"],["-106.0657102","35.9887662"],["-106.0654344","35.9886096"],["-106.0648546","35.9882897"],["-106.0645768","35.9881976"],["-106.063656","35.9880458"],["-106.0635012","35.9880148"],["-106.0618482","35.987715"],["-106.0608598","35.9875088"],["-106.0576895","35.9867549"],["-106.0568362","35.9865481"],["-106.0560579","35.9863668"],["-106.0548429","35.9860919"],["-106.0540812","35.9858656"],["-106.0535572","35.9856914"],["-106.0529457","35.9854716"],["-106.0522704","35.9850934"],["-106.0515823","35.9846347"],["-106.0511126","35.984247"],["-106.0506193","35.9837211"],["-106.0495622","35.98248"],["-106.0486799","35.9814107"],["-106.0445359","35.9763941"],["-106.044478","35.9763248"],["-106.0444452","35.9762843"],["-106.0444321","35.9762701"],["-106.0416232","35.9729993"],["-106.0412466","35.972558"],["-106.0406141","35.9718155"],["-106.0400707","35.9711814"],["-106.0391203","35.9701552"],["-106.0389676","35.9700052"],["-106.0387913","35.9698447"],["-106.0384586","35.9695632"],["-106.0382635","35.9693897"],["-106.0380719","35.9692212"],["-106.0322706","35.964687"],["-106.0317212","35.9642559"],["-106.0289027","35.9620525"],["-106.0287377","35.9619251"],["-106.0253896","35.9593401"],["-106.024359","35.9585113"],["-106.0238832","35.958045"],["-106.0234142","35.9575555"],["-106.0228805","35.9569041"],["-106.0225034","35.9563701"],["-106.0221952","35.9558751"],["-106.0219202","35.9553576"],["-106.0216755","35.9548184"],["-106.0214437","35.9542312"],["-106.0213117","35.9538292"],["-106.0211858","35.9533351"],["-106.0210374","35.952455"],["-106.0209737","35.9517928"],["-106.0209471","35.951253"],["-106.0209282","35.9508638"],["-106.0209091","35.9504741"],["-106.0208986","35.9501417"],["-106.020558","35.9429977"],["-106.020485","35.941722"],["-106.0204805","35.9413446"],["-106.0203722","35.9397168"],["-106.0202837","35.9388901"],["-106.0201066","35.9380289"],["-106.0190654","35.9340662"],["-106.0188554","35.933259"],["-106.0185322","35.9321189"],["-106.0183155","35.9313634"],["-106.018093","35.9305634"],["-106.0178837","35.9296714"],["-106.0176528","35.9284778"],["-106.0175942","35.9278161"],["-106.0173413","35.9248208"],["-106.0172905","35.9239548"],["-106.0167526","35.917988"],["-106.0166024","35.9160477"],["-106.0166136","35.9153704"],["-106.0166542","35.9147495"],["-106.0167233","35.914134"],["-106.0168394","35.9134027"],["-106.0170278","35.9125325"],["-106.0182174","35.9080551"],["-106.0183738","35.9074804"],["-106.0185183","35.9069623"],["-106.0186682","35.9064919"],["-106.0191769","35.9045492"],["-106.019486","35.9033229"],["-106.0199978","35.9014019"],["-106.0201509","35.9008521"],["-106.0202424","35.9005112"],["-106.0207025","35.8988658"],["-106.0208864","35.8983332"],["-106.0210455","35.8979264"],["-106.0211553","35.897672"],["-106.021246","35.8974609"],["-106.0223413","35.8951562"],["-106.0227676","35.8941738"],["-106.0229605","35.8935705"],["-106.0230671","35.8930542"],["-106.0231349","35.8925301"],["-106.0231449","35.8917552"],["-106.0231027","35.8913915"],["-106.0230053","35.8909228"],["-106.0229063","35.8905996"],["-106.0228081","35.8903169"],["-106.0227128","35.8900825"],["-106.0224567","35.8895915"],["-106.0222361","35.8892449"],["-106.0219767","35.8888613"],["-106.021715","35.8885522"],["-106.0214165","35.8882298"],["-106.0207278","35.8876211"],["-106.0177825","35.8855711"],["-106.0160562","35.8841666"],["-106.0149287","35.8832441"],["-106.0115742","35.8804606"],["-106.0109593","35.8799349"],["-106.0105244","35.8795197"],["-106.0098853","35.878822"],["-106.0098023","35.878728"],["-106.0097536","35.8786684"],["-106.0097002","35.8786012"],["-106.0093708","35.878176"],["-106.0090574","35.8777152"],["-106.0027242","35.8670716"],["-106.0015264","35.8643904"],["-106.0009421","35.8630281"],["-105.9946719","35.8483025"],["-105.9943743","35.847658"],["-105.9939167","35.8467449"],["-105.9932613","35.8456363"],["-105.9925686","35.844589"],["-105.9918528","35.8436132"],["-105.9906852","35.8421623"],["-105.9890237","35.8402323"],["-105.9883702","35.8394022"],["-105.9792745","35.8270359"],["-105.9770758","35.8238143"],["-105.9753282","35.8214412"],["-105.9734441","35.8190744"],["-105.9699232","35.8142908"],["-105.9666082","35.809595"],["-105.9642672","35.8064254"],["-105.9495884","35.7865883"],["-105.9490316","35.7857257"],["-105.9485776","35.7849749"],["-105.9483401","35.7844487"],["-105.9481725","35.78394"],["-105.948065","35.7835225"],["-105.9480039","35.7831045"],["-105.9479687","35.7824014"],["-105.9479621","35.7807848"],["-105.9479066","35.7801864"],["-105.9478378","35.7796832"],["-105.9477643","35.779371"],["-105.9476785","35.7790863"],["-105.9474144","35.7784907"],["-105.9464079","35.7763167"],["-105.9441863","35.771429"],["-105.9439778","35.7708458"],["-105.9438704","35.7703928"],["-105.9438286","35.7699916"],["-105.9438061","35.7694893"],["-105.9438998","35.7687155"],["-105.9446396","35.7643794"],["-105.9446865","35.7637748"],["-105.9446642","35.7631165"],["-105.9445442","35.7624369"],["-105.9443482","35.7618231"],["-105.9439795","35.7610366"],["-105.9428394","35.7589924"],["-105.9421012","35.7576756"],["-105.9380633","35.7504924"],["-105.9373989","35.7492754"],["-105.9324737","35.7405058"],["-105.9322534","35.7400503"],["-105.9320686","35.7395773"],["-105.9319625","35.7392593"],["-105.931894","35.7389917"],["-105.9317971","35.7384992"],["-105.9317501","35.7380774"],["-105.931741","35.7377271"],["-105.931746","35.7373829"],["-105.9318365","35.7358847"],["-105.9319311","35.7345036"],["-105.9319925","35.7331496"],["-105.9320555","35.726175"],["-105.9320659","35.7252741"],["-105.9320828","35.7244135"],["-105.9321728","35.7236565"],["-105.9323451","35.7230012"],["-105.9324636","35.7226697"],["-105.9327559","35.7220355"],["-105.9333175","35.7210856"],["-105.937412","35.7143035"],["-105.9380895","35.7131921"],["-105.9406054","35.7096909"],["-105.940991","35.7092324"],["-105.9430536","35.7069272"],["-105.9437966","35.7061707"],["-105.9448062","35.7052264"],["-105.9457272","35.70441"],["-105.9466292","35.7036445"],["-105.9505504","35.7005746"],["-105.9508806","35.7002625"],["-105.9511848","35.6999653"],["-105.9514188","35.6997314"],["-105.9516173","35.6994892"],["-105.9517644","35.6992679"],["-105.9518719","35.699063"],["-105.9519721","35.6988029"],["-105.9520209","35.6986046"],["-105.9520578","35.6983885"],["-105.9520637","35.6982185"],["-105.9520614","35.698008"],["-105.9520362","35.6978018"],["-105.9519983","35.6976174"],["-105.9519595","35.6974533"],["-105.9518587","35.6972008"],["-105.9514072","35.6962306"],["-105.9511983","35.6958105"],["-105.9509446","35.6954243"],["-105.9507849","35.6952151"],["-105.9505741","35.6949786"],["-105.9502718","35.6946819"],["-105.9498539","35.6943093"],["-105.9473717","35.6922031"],["-105.9472196","35.6920924"],["-105.9471296","35.6920371"],["-105.946989","35.6919942"],["-105.9468406","35.6919605"],["-105.9464871","35.691889"],["-105.9459558","35.6917286"],["-105.9458598","35.6916664"],["-105.9457038","35.6915495"],["-105.9455664","35.6914142"],["-105.9452917","35.6911263"],["-105.9452409","35.6910086"],["-105.9437607","35.6894984"],["-105.9436149","35.6893147"],["-105.9435193","35.6891214"],["-105.9434799","35.6889877"],["-105.9434554","35.6888274"],["-105.9434398","35.6886234"],["-105.9434422","35.6884602"],["-105.9434488","35.6883627"],["-105.9434517","35.6882996"],["-105.9433793","35.6882388"],["-105.9426196","35.6880957"],["-105.9422564","35.6880188"],["-105.9421673","35.6879919"],["-105.9420702","35.6879602"],["-105.9418448","35.6878834"],["-105.9417676","35.6878544"],["-105.9417363","35.6878425"],["-105.9416674","35.687819"],["-105.9416102","35.6877993"],["-105.9414706","35.6877543"],["-105.9412391","35.6876894"],["-105.9410869","35.6876499"],["-105.939628","35.6873054"],["-105.939469","35.6872698"],["-105.9392848","35.6872295"],["-105.9391796","35.6872101"],["-105.9391335","35.6872053"],["-105.9390869","35.6872025"],["-105.9390377","35.6871966"],["-105.9389176","35.6871719"],["-105.9382326","35.6870092"],["-105.9381379","35.6869787"],["-105.9381343","35.6870383"],["-105.9381202","35.6870919"],["-105.9379818","35.68751"],["-105.937962","35.6875467"],["-105.9379465","35.6875659"],["-105.9379208","35.6875812"],["-105.9378804","35.6875865"],["-105.9378114","35.687579"],["-105.9377218","35.6875635"],["-105.9375352","35.687523"],["-105.9366892","35.6872972"],["-105.9368533","35.6867567"],["-105.9368875","35.686674"],["-105.9368853","35.6866227"],["-105.9368844","35.6865804"],["-105.9368723","35.6865472"],["-105.9368464","35.6865175"],["-105.9368089","35.6864947"],["-105.9367277","35.6864576"],["-105.936661","35.6864179"],["-105.9366153","35.6863739"],["-105.9365857","35.6863327"],["-105.9365706","35.6862784"],["-105.9365458","35.6860526"],["-105.9364539","35.6857985"],["-105.9363761","35.6855982"],["-105.9363164","35.6854892"],["-105.9360828","35.6851784"],["-105.9357784","35.6847779"],["-105.9357305","35.6847029"],["-105.9357088","35.6846313"],["-105.9357029","35.6845743"],["-105.9358487","35.6845552"],["-105.9359949","35.6845682"],["-105.9367829","35.684708"],["-105.9371423","35.6847637"],["-105.9376445","35.6848547"],["-105.9376474","35.6848008"],["-105.9376465","35.6847728"],["-105.9376481","35.6846087"],["-105.9376461","35.6843679"],["-105.9376803","35.6842401"],["-105.937741","35.6841006"],["-105.9378003","35.6839683"],["-105.9378625","35.6838267"],["-105.9379573","35.6835893"],["-105.9381513","35.6830686"],["-105.938195","35.6829187"],["-105.9382256","35.6828393"],["-105.9382546","35.6827471"],["-105.9382614","35.6825698"],["-105.9382595","35.6824641"],["-105.9382549","35.6823908"],["-105.9382186","35.6819574"],["-105.9382097","35.6818485"],["-105.9382002","35.6817703"],["-105.9382081","35.6817481"],["-105.938236","35.6817097"],["-105.9382461","35.6816986"],["-105.9382611","35.6816824"],["-105.9383022","35.6816528"],["-105.938423","35.6816194"],["-105.9394942","35.6816082"],["-105.9397772","35.6816193"],["-105.9400212","35.6816432"],["-105.941251","35.6818643"],["-105.9414726","35.6818972"],["-105.9415858","35.6818965"],["-105.9416625","35.6818877"],["-105.9417421","35.6818693"],["-105.9418822","35.6818316"],["-105.9420339","35.6817546"],["-105.9420817","35.6817172"],["-105.9421398","35.6816691"],["-105.9422132","35.681593"],["-105.9423502","35.6813872"],["-105.9424309","35.6813009"],["-105.9425387","35.6812264"],["-105.9426167","35.6811892"],["-105.9426965","35.6811627"],["-105.9427683","35.6811423"],["-105.9428572","35.6811301"],["-105.9429291","35.6811256"],["-105.9430152","35.6811369"],["-105.9432091","35.6811815"],["-105.9435029","35.6812458"],["-105.9439236","35.6813009"],["-105.9441802","35.6813208"],["-105.944456","35.6813398"],["-105.9447646","35.6813648"],["-105.9454438","35.6814887"],["-105.9459034","35.6815948"],["-105.9460632","35.6816098"],["-105.9461515","35.6815412"],["-105.9462063","35.681483"],["-105.9464191","35.6813164"],["-105.9471397","35.6807143"],["-105.9474003","35.680595"],["-105.9475892","35.6805186"],["-105.9478859","35.6804227"],["-105.9484606","35.680287"],["-105.948697","35.6802218"],["-105.9495563","35.6799664"],["-105.949797","35.6798812"],["-105.9500154","35.679792"],["-105.9508311","35.6793781"],["-105.9510695","35.6791832"],["-105.9523136","35.6786159"],["-105.9524606","35.6786207"],["-105.952644","35.6785421"],["-105.9529403","35.6783334"],["-105.9534784","35.6779542"],["-105.953633","35.6778431"],["-105.9537362","35.6777699"],["-105.9537827","35.6777388"],["-105.9538174","35.677709"],["-105.9538351","35.677683"],["-105.9538459","35.6776635"],["-105.9538667","35.6776099"],["-105.9538882","35.6775483"],["-105.9539025","35.6774756"],["-105.9539103","35.6773185"],["-105.9539136","35.6772352"],["-105.9536989","35.6761865"],["-105.9536496","35.6757274"],["-105.9536352","35.6754067"],["-105.9536393","35.6752142"],["-105.9536559","35.674968"],["-105.9536786","35.674741"],["-105.9537137","35.6745154"],["-105.9537578","35.6742921"],["-105.9538164","35.6740578"],["-105.953986","35.6735474"],["-105.9540858","35.6732985"],["-105.9542127","35.6730273"],["-105.9551514","35.671281"],["-105.9552638","35.6710696"],["-105.9553552","35.670899"],["-105.9554881","35.6706362"],["-105.9556002","35.6703923"],["-105.95571","35.6701202"],["-105.9558556","35.6697172"],["-105.9559561","35.6693616"],["-105.9559873","35.6692349"],["-105.9560387","35.6689993"],["-105.9560655","35.6688442"],["-105.9561295","35.6684325"],["-105.9561573","35.6681181"],["-105.956299","35.6658759"],["-105.9563446","35.66509"],["-105.9563963","35.6643793"],["-105.9565006","35.6624642"],["-105.95652","35.6621701"],["-105.9565335","35.6620234"],["-105.9566186","35.6606152"],["-105.9567061","35.6595512"],["-105.9567532","35.6589596"],["-105.956798","35.657991"],["-105.9568083","35.6574744"],["-105.9567367","35.6525644"],["-105.956727","35.6520123"],["-105.956725","35.6518911"],["-105.9567197","35.6515179"],["-105.9567038","35.6501977"],["-105.9566528","35.6470886"],["-105.9566476","35.6469704"],["-105.9566373","35.6464298"],["-105.9565276","35.638964"],["-105.9566331","35.6382858"],["-105.9567407","35.6379397"],["-105.956822","35.6377324"],["-105.9569207","35.6375514"],["-105.9571242","35.6372309"],["-105.9572708","35.6370345"],["-105.9574686","35.6367896"],["-105.960695","35.6336643"],["-105.9608326","35.6335417"],["-105.9609804","35.6334193"],["-105.9611359","35.6332998"],["-105.9613027","35.6331815"],["-105.9614695","35.6330706"],["-105.9616196","35.6329773"],["-105.9617753","35.6328852"],["-105.9619359","35.6327946"],["-105.962744","35.6323947"],["-105.9693202","35.6304759"],["-105.9694079","35.6304521"],["-105.972729","35.6295313"],["-105.9751961","35.6287416"],["-105.9758794","35.6284875"],["-105.9777018","35.6277667"],["-105.9813421","35.6262834"],["-105.9826204","35.6258161"],["-105.9833058","35.6255803"],["-105.9849539","35.6250776"],["-105.98593","35.6248053"],["-105.9880034","35.6243147"],["-105.9976854","35.6223074"],["-106.0000785","35.6217552"],["-106.0013043","35.6213993"],["-106.0037008","35.6206055"],["-106.0076778","35.6190136"],["-106.009534","35.6182253"],["-106.0112589","35.6173993"],["-106.0137443","35.6163083"],["-106.0160452","35.615421"],["-106.0231885","35.6131414"],["-106.0243901","35.6127002"],["-106.0253104","35.6123227"],["-106.0259867","35.6120087"],["-106.0265829","35.611722"],["-106.027837","35.6110616"],["-106.0290241","35.610358"],["-106.0295639","35.609995"],["-106.030023","35.6096784"],["-106.0303399","35.6094516"],["-106.0310953","35.6088771"],["-106.0331948","35.6071453"],["-106.0338537","35.6066042"],["-106.0345007","35.6060802"],["-106.0351333","35.6055689"],["-106.0363725","35.6046133"],["-106.0369386","35.6042139"],["-106.0375053","35.6038494"],["-106.0380605","35.6035128"],["-106.0400763","35.6024463"],["-106.0419599","35.6016222"],["-106.0425943","35.6013622"],["-106.0474027","35.5994246"],["-106.0510618","35.5979447"],["-106.0516517","35.5976619"],["-106.0521941","35.5973807"],["-106.0528605","35.5970102"],["-106.0534462","35.5966661"],["-106.0541552","35.5962087"],["-106.0587557","35.5931651"],["-106.1633678","35.5238168"],["-106.1653649","35.5226362"],["-106.1669671","35.5219174"],["-106.1686516","35.5214297"],["-106.1708595","35.5211057"],["-106.1730381","35.5210679"],["-106.191543","35.5220446"],["-106.1934409","35.5220972"],["-106.1972306","35.5219232"],["-106.2048382","35.521469"],["-106.2085031","35.5211317"],["-106.2123596","35.5206463"],["-106.2158302","35.5201414"],["-106.217595","35.5196797"],["-106.2194076","35.5190385"],["-106.221998","35.5178726"],["-106.2393696","35.5095591"],["-106.2410459","35.5087245"],["-106.2421395","35.5081112"],["-106.243348","35.5073449"],["-106.2444318","35.506498"],["-106.2457327","35.5053155"],["-106.2468365","35.5042292"],["-106.2602039","35.490914"],["-106.262041","35.4891581"],["-106.2634111","35.4879857"],["-106.2643778","35.4873075"],["-106.2658618","35.4864048"],["-106.2676511","35.4855317"],["-106.3606683","35.4472384"],["-106.3621162","35.4465436"],["-106.3639385","35.4454755"],["-106.3751175","35.4373377"],["-106.3897567","35.4266162"],["-106.3917278","35.4252909"],["-106.4048566","35.4181001"],["-106.4057892","35.4175692"],["-106.407041","35.4168213"],["-106.4143481","35.4128057"],["-106.4154842","35.4121096"],["-106.4166105","35.4113238"],["-106.4177245","35.4104308"],["-106.418918","35.409388"],["-106.4202059","35.4084275"],["-106.421622","35.4075457"],["-106.423152","35.4067467"],["-106.4437876","35.3977106"],["-106.4453045","35.3969537"],["-106.4473782","35.3957502"],["-106.4496521","35.394257"],["-106.5161559","35.3407658"],["-106.5172044","35.3398297"],["-106.5178793","35.3390799"],["-106.5316732","35.3214365"],["-106.531794","35.3212679"],["-106.531936","35.3210609"],["-106.5322437","35.3205761"],["-106.5325888","35.3199935"],["-106.5330183","35.3191589"],["-106.5332955","35.3185412"],["-106.5338212","35.3170362"],["-106.533909","35.3167192"],["-106.5340108","35.3163124"],["-106.5340644","35.3160569"],["-106.5341485","35.3156045"],["-106.5341839","35.3153917"],["-106.5342304","35.315037"],["-106.5342879","35.3144808"],["-106.5344918","35.3120784"],["-106.5345639","35.3113183"],["-106.5346399","35.3101"],["-106.534765","35.309434"],["-106.5351089","35.308196"],["-106.5353873","35.3073318"],["-106.5355023","35.3070053"],["-106.5357532","35.3064577"],["-106.5359583","35.3059669"],["-106.5363091","35.3052739"],["-106.5366854","35.3046463"],["-106.5374948","35.3034432"],["-106.5384441","35.3020913"],["-106.5389288","35.3013664"],["-106.5397016","35.3003142"],["-106.5430256","35.2955719"],["-106.5441151","35.2940188"],["-106.5453872","35.2922326"],["-106.5482885","35.2881031"],["-106.5496149","35.2861796"],["-106.5502866","35.2852316"],["-106.551126","35.2840677"],["-106.5521764","35.282649"],["-106.5529495","35.2815332"],["-106.5537169","35.2802988"],["-106.5546039","35.2783977"],["-106.55556","35.2761577"],["-106.5565061","35.273744"],["-106.5575123","35.2715167"],["-106.5583031","35.2698103"],["-106.5587832","35.2687068"],["-106.56001","35.2664804"],["-106.5608717","35.265197"],["-106.5618186","35.263802"],["-106.5623361","35.2630278"],["-106.563239","35.2616277"],["-106.563948","35.2604018"],["-106.5646859","35.2589228"],["-106.5652085","35.2570813"],["-106.5666272","35.2507245"],["-106.5671105","35.248742"],["-106.5713277","35.2305801"],["-106.5745406","35.2156231"],["-106.5753393","35.2122028"],["-106.5792669","35.1948774"],["-106.5795079","35.1938279"],["-106.5802563","35.1905069"],["-106.5810233","35.1873064"],["-106.5814141","35.1855528"],["-106.5818553","35.1836268"],["-106.5826674","35.180144"],["-106.58293","35.1791036"],["-106.5833642","35.1772073"],["-106.5839383","35.1746631"],["-106.5840249","35.1743144"],["-106.5842842","35.1730834"],["-106.5850191","35.1698549"],["-106.585184","35.1692254"],["-106.5884446","35.1546785"],["-106.5899071","35.1482802"],["-106.5901172","35.1474374"],["-106.5905125","35.1462076"],["-106.5907991","35.1456064"],["-106.5914872","35.1445564"],["-106.5919041","35.1440992"],["-106.5922421","35.1437539"],["-106.5927904","35.1433047"],["-106.5934669","35.1428247"],["-106.6179523","35.1277677"],["-106.6190818","35.1269054"],["-106.6196393","35.1264432"],["-106.6202804","35.1258008"],["-106.6204052","35.1256709"],["-106.6218575","35.1240168"],["-106.6221963","35.1235299"],["-106.6226308","35.1228523"],["-106.6229779","35.1222697"],["-106.6231744","35.1218485"],["-106.6239822","35.1199624"],["-106.6269293","35.1120151"],["-106.6275706","35.1103028"],["-106.6279155","35.1095191"],["-106.6283197","35.1085204"],["-106.6286342","35.1077349"],["-106.6288918","35.1071107"],["-106.6290262","35.1067809"],["-106.6298487","35.1045847"],["-106.6300745","35.1039002"],["-106.6303262","35.1030387"],["-106.6305453","35.102505"],["-106.6307738","35.1019238"],["-106.6310163","35.1013007"],["-106.6320748","35.0985275"],["-106.633612","35.0942005"],["-106.6344954","35.0918365"],["-106.6349991","35.0904724"],["-106.6353463","35.0897649"],["-106.6358611","35.0884224"],["-106.6360635","35.0879037"],["-106.6361745","35.0876708"],["-106.636278","35.0873331"],["-106.6364119","35.0868749"],["-106.6365904","35.0863197"],["-106.6367276","35.0858357"],["-106.6368843","35.085198"],["-106.6371212","35.0838329"],["-106.6373337","35.0828642"],["-106.6375745","35.0828821"],["-106.6376585","35.0828888"],["-106.6378116","35.0828962"],["-106.6379223","35.0828897"],["-106.6380355","35.0828842"],["-106.6381733","35.0828852"],["-106.6385841","35.0829362"],["-106.6388428","35.0829675"],["-106.6393028","35.0830117"],["-106.6398112","35.0830899"],["-106.6401556","35.083138"],["-106.6406865","35.0832171"],["-106.6410067","35.0832577"],["-106.6412769","35.0832918"],["-106.6414671","35.0833129"],["-106.6445881","35.0837138"],["-106.6453265","35.0837943"],["-106.6460828","35.0838756"],["-106.6478719","35.0840972"],["-106.6480576","35.0840906"],["-106.6504187","35.084408"],["-106.6502137","35.0854146"],["-106.6579621","35.0864054"],["-106.6585742","35.0864958"],["-106.6596913","35.0871482"],["-106.6601574","35.0873651"],["-106.6613256","35.0878726"],["-106.6618512","35.0881094"],["-106.6622663","35.0883181"],["-106.6625876","35.0884924"],["-106.6627884","35.0886237"],["-106.662984","35.0887453"],["-106.66356","35.0890745"],["-106.6637569","35.0891861"],["-106.6638294","35.0892725"],["-106.6639486","35.0893723"],["-106.66416","35.089561"],["-106.664509","35.0898645"],["-106.6647269","35.0899916"],["-106.6650019","35.0902615"],["-106.665429","35.090709"],["-106.6656403","35.0909337"],["-106.6659254","35.0911994"],["-106.6661027","35.0913351"],["-106.6662088","35.0914088"],["-106.666316","35.0914789"],["-106.6664501","35.0915714"],["-106.6667107","35.0917482"],["-106.6671606","35.0920646"],["-106.667311","35.0921723"],["-106.6674119","35.0922469"],["-106.6681837","35.0928537"],["-106.6683595","35.0929898"],["-106.6684684","35.093124"],["-106.6685688","35.0932054"],["-106.6686944","35.0933316"],["-106.6687749","35.093489"],["-106.6688209","35.0935931"],["-106.6688334","35.0936528"],["-106.6689045","35.0937212"],["-106.6689927","35.0937952"],["-106.6692222","35.0938899"],["-106.669433","35.0940051"],["-106.6698716","35.0943749"],["-106.6703258","35.0946742"],["-106.6706828","35.0948736"],["-106.6710144","35.0950441"],["-106.671177","35.0951246"],["-106.6713816","35.095204"],["-106.6713912","35.095292"],["-106.6713775","35.0953867"],["-106.6713351","35.0961215"],["-106.6713298","35.0962721"],["-106.6713276","35.0963751"],["-106.6713235","35.0964562"],["-106.6712731","35.097269"],["-106.6712283","35.0975602"],["-106.6712057","35.0976036"],["-106.6710817","35.0977363"],["-106.6709787","35.0979024"],["-106.670846","35.0981012"],["-106.6708093","35.0982738"],["-106.6707226","35.0984088"],["-106.670603","35.0986232"],["-106.6705754","35.099128"],["-106.670656","35.101171"],["-106.6706753","35.101608"],["-106.6707002","35.102247"],["-106.6707146","35.102671"],["-106.6707344","35.1033737"],["-106.6707305","35.1035816"],["-106.6707185","35.1037496"],["-106.6706449","35.1039203"],["-106.6706271","35.1045182"],["-106.6706277","35.1047425"],["-106.6706918","35.1055597"],["-106.6709036","35.1055339"],["-106.6712119","35.1054784"],["-106.672041","35.1053054"],["-106.6725132","35.1052219"],["-106.6730308","35.1051556"],["-106.6735192","35.1051168"],["-106.6740317","35.1050914"],["-106.6746305","35.1050355"],["-106.6985474","35.1070053"],["-106.7006132","35.1071142"],["-106.7013128","35.1071021"],["-106.7019366","35.1070591"],["-106.7025162","35.1069967"],["-106.7030774","35.1069137"],["-106.7038545","35.1067808"],["-106.7044717","35.1066423"],["-106.7052531","35.1064296"],["-106.7064946","35.105993"],["-106.7072151","35.1057034"],["-106.7082494","35.1052486"],["-106.7488534","35.084793"],["-106.7926305","35.0627899"],["-106.7929973","35.0626238"],["-106.7933826","35.06246"],["-106.7937975","35.0622913"],["-106.7945218","35.062021"],["-106.7958374","35.0615992"],["-106.7966159","35.061389"],["-106.7976309","35.0611675"],["-106.7987736","35.0609799"],["-106.8023132","35.060451"],["-106.8621516","35.0512599"],["-106.8831273","35.0465735"],["-106.887542","35.045577"],["-106.9082129","35.0408821"],["-106.9103609","35.0403856"],["-106.9542469","35.0304204"],["-106.9900351","35.0222933"],["-106.9923272","35.0217874"],["-106.9957163","35.0209965"],["-106.9973112","35.0205925"],["-107.0056544","35.0179288"],["-107.0467508","35.0048471"],["-107.0494286","35.00398"],["-107.0535768","35.0027042"],["-107.0573083","35.0014826"],["-107.0659908","34.9987117"],["-107.0678774","34.9981127"],["-107.1014395","34.9874327"],["-107.1036777","34.986717"],["-107.1271134","34.9792281"],["-107.1285639","34.9787917"],["-107.1299029","34.9784824"],["-107.1309752","34.978306"],["-107.1318736","34.9781854"],["-107.1325541","34.9781174"],["-107.1337877","34.9780606"],["-107.1347974","34.9780666"],["-107.1357976","34.9780993"],["-107.1367913","34.9781865"],["-107.1389639","34.978498"],["-107.2312286","34.99261"],["-107.2326648","34.9927931"],["-107.2341314","34.9929431"],["-107.2353914","34.993022"],["-107.2929376","34.9938617"],["-107.2958563","34.9941285"],["-107.2977934","34.9945688"],["-107.2986371","34.9948203"],["-107.2995544","34.9951447"],["-107.300458","34.9954986"],["-107.301058","34.9957483"],["-107.3018448","34.9961299"],["-107.3023267","34.9963842"],["-107.3028389","34.9966739"],["-107.3034412","34.9970456"],["-107.3042784","34.9976065"],["-107.3050867","34.9982226"],["-107.3064243","34.9992918"],["-107.319666","35.0101614"],["-107.3272928","35.0164615"],["-107.3286534","35.0178435"],["-107.3296225","35.0191111"],["-107.3305493","35.0203671"],["-107.3391383","35.0326267"],["-107.33992","35.0334177"],["-107.3409117","35.0341518"],["-107.3419908","35.0347287"],["-107.3427774","35.0350269"],["-107.3441066","35.0353719"],["-107.3610339","35.0388192"],["-107.3624166","35.0390306"],["-107.3635814","35.0390882"],["-107.3645908","35.0390241"],["-107.3655961","35.038889"],["-107.366583","35.0387004"],["-107.3675362","35.0383743"],["-107.3816738","35.0314938"],["-107.3880774","35.0283738"],["-107.3892693","35.0278324"],["-107.390137","35.0275052"],["-107.3909252","35.0272396"],["-107.3918841","35.0269662"],["-107.3928433","35.0267685"],["-107.3937578","35.0266182"],["-107.3947325","35.0264838"],["-107.395666","35.0263945"],["-107.3965731","35.0263258"],["-107.3978138","35.0263383"],["-107.447273","35.0274752"],["-107.4492414","35.0276699"],["-107.4512712","35.0279455"],["-107.4535646","35.0284187"],["-107.458743","35.0297909"],["-107.4732775","35.033886"],["-107.475188","35.0344305"],["-107.4779822","35.035237"],["-107.4870085","35.0378079"],["-107.488935","35.0383914"],["-107.4913174","35.0392474"],["-107.4932027","35.0400554"],["-107.4953868","35.0411453"],["-107.4978542","35.0424542"],["-107.4987818","35.0429444"],["-107.5182557","35.0534456"],["-107.5189912","35.0539134"],["-107.5198821","35.0545392"],["-107.5205196","35.055042"],["-107.5211913","35.0556244"],["-107.5221605","35.0565813"],["-107.5226103","35.0570929"],["-107.5230623","35.0576486"],["-107.5235016","35.0582423"],["-107.5240281","35.0590124"],["-107.5244527","35.0597026"],["-107.5248188","35.0604627"],["-107.5260849","35.063418"],["-107.5265582","35.0645055"],["-107.5269293","35.065379"],["-107.5272251","35.0660254"],["-107.5274955","35.0666058"],["-107.5277971","35.0671281"],["-107.5280979","35.0675958"],["-107.5284834","35.068125"],["-107.5288732","35.0686008"],["-107.5293301","35.0691114"],["-107.5297911","35.0695865"],["-107.5302862","35.0700671"],["-107.5307979","35.0705172"],["-107.5315665","35.0710711"],["-107.5324449","35.0716195"],["-107.5332916","35.0720746"],["-107.5342884","35.0725306"],["-107.5354973","35.0729728"],["-107.53676","35.0733375"],["-107.5379139","35.0735681"],["-107.5391327","35.0737352"],["-107.5405684","35.0738249"],["-107.5970959","35.0752866"],["-107.597623","35.075285"],["-107.6429438","35.076411"],["-107.6453595","35.0763202"],["-107.6464428","35.0762391"],["-107.6471366","35.0761712"],["-107.6485421","35.0760122"],["-107.6506299","35.0756642"],["-107.6758281","35.0707059"],["-107.6773215","35.070385"],["-107.6783196","35.0701281"],["-107.6793643","35.0697979"],["-107.6802472","35.0694671"],["-107.6811463","35.0691065"],["-107.6823245","35.0685302"],["-107.6835472","35.0678593"],["-107.6898891","35.0642455"],["-107.6909187","35.0637247"],["-107.6920948","35.0632255"],["-107.6930954","35.0628931"],["-107.6941679","35.0625962"],["-107.6953567","35.0623562"],["-107.6965295","35.0622073"],["-107.6980264","35.0621114"],["-107.6991424","35.0621188"],["-107.7002714","35.0621668"],["-107.7012922","35.0622954"],["-107.7027729","35.0625976"],["-107.7042191","35.0629355"],["-107.7053137","35.0631806"],["-107.7062436","35.0633841"],["-107.7184208","35.066094"],["-107.7211886","35.0664545"],["-107.7306797","35.0672297"],["-107.731749","35.0673402"],["-107.7324584","35.0674323"],["-107.7330228","35.0675186"],["-107.7336491","35.0676372"],["-107.7343719","35.0678008"],["-107.7353119","35.0680473"],["-107.7540875","35.0737953"],["-107.7549353","35.074083"],["-107.755751","35.074389"],["-107.7565355","35.0747341"],["-107.7575657","35.0752407"],["-107.7588634","35.0759759"],["-107.7602314","35.0769496"],["-107.7681385","35.083186"],["-107.7717981","35.0860128"],["-107.7740139","35.0875599"],["-107.8232031","35.1199869"],["-107.8255301","35.1215242"],["-107.8321209","35.1258555"],["-107.8351287","35.1278266"],["-107.8371983","35.1291909"],["-107.8384866","35.1301149"],["-107.8393801","35.1308591"],["-107.8402536","35.1317398"],["-107.8458768","35.1385339"],["-107.8472381","35.1401268"],["-107.8485484","35.1413069"],["-107.8495881","35.1420831"],["-107.850727","35.1428317"],["-107.8521854","35.1436222"],["-107.8538721","35.144444"],["-107.8648051","35.149603"],["-107.8657887","35.1500735"],["-107.8672171","35.1507289"],["-107.8687","35.1514321"],["-107.8713832","35.1527309"],["-107.8726844","35.1533735"],["-107.8737226","35.153886"],["-107.8793644","35.1567276"],["-107.8931368","35.163616"],["-107.8939057","35.1640298"],["-107.8946024","35.1644701"],["-107.8959483","35.1654947"],["-107.8967913","35.1663184"],["-107.8974252","35.1670069"],["-107.8979966","35.1677632"],["-107.8984994","35.1684819"],["-107.8991723","35.1697697"],["-107.8996114","35.1711317"],["-107.8997772","35.1718805"],["-107.899945","35.1729052"],["-107.9005316","35.177995"],["-107.9009272","35.1814636"],["-107.9011261","35.1827286"],["-107.9017","35.1843529"],["-107.902655","35.1858372"],["-107.9034217","35.1868017"],["-107.9052845","35.1886793"],["-107.9071178","35.1906195"],["-107.9127796","35.1965636"],["-107.9607449","35.2470146"],["-107.9637804","35.249996"],["-107.9736691","35.2592974"],["-107.9743427","35.2599974"],["-107.974988","35.2607079"],["-107.9758913","35.2617545"],["-107.9772965","35.2636784"],["-107.9780074","35.2648019"],["-107.9785638","35.2657679"],["-107.9794058","35.2673018"],["-107.9797278","35.2678709"],["-107.9800988","35.2685389"],["-107.980429","35.2692221"],["-107.9808114","35.2698939"],["-107.9813523","35.2708961"],["-107.9819238","35.2719821"],["-107.9833813","35.2747335"],["-107.9836462","35.2752788"],["-107.9840446","35.2763518"],["-107.9843029","35.2770744"],["-107.9848489","35.2793045"],["-107.9852252","35.28103"],["-107.9855403","35.2824266"],["-107.9893062","35.2998998"],["-107.99112","35.310577"],["-107.991579","35.3133095"],["-107.9917824","35.3141297"],["-107.9924231","35.3157369"],["-108.0061744","35.3401684"],["-108.0072208","35.3420356"],["-108.0080183","35.3431039"],["-108.0089246","35.3441498"],["-108.0100451","35.3452293"],["-108.0114799","35.3463506"],["-108.0127784","35.3472189"],["-108.0148394","35.3482566"],["-108.0176135","35.3494189"],["-108.0513138","35.3630637"],["-108.0556981","35.364844"],["-108.0658081","35.3688825"],["-108.0672569","35.3693162"],["-108.0695756","35.3698259"],["-108.1107809","35.3776055"],["-108.1121391","35.3778933"],["-108.1135743","35.3782635"],["-108.1165405","35.3792099"],["-108.1281155","35.3831314"],["-108.1295254","35.3835137"],["-108.1303628","35.3837004"],["-108.1316356","35.383911"],["-108.1614461","35.3882064"],["-108.1634899","35.3884557"],["-108.1653349","35.3885786"],["-108.1811263","35.3892347"],["-108.1839936","35.3893532"],["-108.1877496","35.3895212"],["-108.1898236","35.3896414"],["-108.1906975","35.3897463"],["-108.1916508","35.3899094"],["-108.2680303","35.4055967"],["-108.2711169","35.4062925"],["-108.2725077","35.4066821"],["-108.2740439","35.4071796"],["-108.276192","35.4080127"],["-108.3086759","35.4221644"],["-108.3131318","35.4240994"],["-108.3143613","35.4246443"],["-108.3158356","35.4252947"],["-108.3229325","35.428477"],["-108.3253298","35.4296668"],["-108.3626725","35.4459941"],["-108.3641301","35.4465963"],["-108.3659129","35.447312"],["-108.3865992","35.4556337"],["-108.3890287","35.4566354"],["-108.4074239","35.4651676"],["-108.4084463","35.4656961"],["-108.4091583","35.4661082"],["-108.4102626","35.4668776"],["-108.4211559","35.4751263"],["-108.4220631","35.4757715"],["-108.4229508","35.4763263"],["-108.4243632","35.4770782"],["-108.4255544","35.4776135"],["-108.4267423","35.4780736"],["-108.4278913","35.4784244"],["-108.4382762","35.4807878"],["-108.439311","35.4810294"],["-108.4609313","35.4859333"],["-108.4860311","35.4916191"],["-108.4870855","35.4918511"],["-108.4909919","35.4927128"],["-108.4919346","35.4929663"],["-108.4929633","35.4932667"],["-108.4939353","35.4935719"],["-108.4955226","35.4941255"],["-108.5319676","35.5079805"],["-108.5349054","35.5090652"],["-108.5380875","35.5102631"],["-108.5395368","35.5108153"],["-108.5400525","35.511016"],["-108.5470739","35.5135387"],["-108.5829025","35.5243912"],["-108.5976951","35.5288586"],["-108.599167","35.5292392"],["-108.6001309","35.5294336"],["-108.6013915","35.5296189"],["-108.6483816","35.5324704"],["-108.6500111","35.5325007"],["-108.651168","35.5324358"],["-108.6520946","35.5323523"],["-108.6532625","35.5321982"],["-108.6545557","35.5319464"],["-108.6554648","35.5317265"],["-108.6614151","35.5300901"],["-108.6642808","35.5292637"],["-108.6651268","35.5290568"],["-108.6658463","35.5289649"],["-108.6664568","35.5289436"],["-108.6671276","35.5289665"],["-108.6678998","35.5290586"],["-108.668555","35.5292107"],["-108.6691578","35.5294007"],["-108.6697314","35.5296712"],["-108.6702094","35.529917"],["-108.6705829","35.5301566"],["-108.673088","35.531722"],["-108.6737695","35.5321263"],["-108.6748088","35.5327785"],["-108.6755006","35.5331975"],["-108.676041","35.5334821"],["-108.6765059","35.5336972"],["-108.6771248","35.5339429"],["-108.6778215","35.5341822"],["-108.6784799","35.5343594"],["-108.67917","35.5344743"],["-108.6799532","35.534582"],["-108.6805981","35.5346221"],["-108.6811176","35.5346277"],["-108.6817897","35.5345895"],["-108.6825834","35.5345293"],["-108.7089461","35.532396"],["-108.7098547","35.5323547"],["-108.7105788","35.5323429"],["-108.711281","35.5323617"],["-108.7119078","35.5323871"],["-108.7127178","35.532459"],["-108.7140347","35.5326302"],["-108.7186706","35.5332737"],["-108.719529","35.5333398"],["-108.7203966","35.533378"],["-108.7212899","35.5333934"],["-108.7242128","35.5333853"],["-108.7305564","35.5333869"],["-108.7314148","35.5333488"],["-108.7321543","35.5332979"],["-108.7328741","35.5332145"],["-108.7333429","35.5331417"],["-108.7337717","35.5330603"],["-108.7342639","35.5329474"],["-108.7348163","35.5327963"],["-108.7374855","35.5319515"],["-108.7387451","35.5315584"],["-108.7391241","35.5314601"],["-108.7395658","35.5313558"],["-108.7400382","35.5312761"],["-108.7406063","35.5312092"],["-108.7415456","35.5311269"],["-108.7427268","35.5309954"],["-108.743211","35.5309179"],["-108.7443069","35.5306667"],["-108.7448157","35.5305224"],["-108.7453668","35.5303512"],["-108.7491258","35.5292047"],["-108.750627","35.5288319"],["-108.7513381","35.528747"],["-108.7519474","35.5286934"],["-108.7525374","35.5286613"],["-108.7547212","35.5286416"],["-108.7568305","35.5286414"],["-108.7582966","35.5285712"],["-108.7592161","35.5284859"],["-108.7604803","35.5283118"],["-108.761126","35.5281884"],["-108.7619068","35.5280147"],["-108.7640347","35.5274662"],["-108.794978","35.5183646"],["-108.7966443","35.5177343"],["-108.7982089","35.5170205"],["-108.8002469","35.516019"],["-108.8025501","35.5149046"],["-108.8042852","35.5142656"],["-108.8056071","35.5138501"],["-108.8068081","35.5135802"],["-108.808103","35.5133477"],["-108.8087961","35.5132533"],["-108.8094238","35.5131868"],["-108.8109469","35.513099"],["-108.8203647","35.5126969"],["-108.820807","35.5126569"],["-108.8212128","35.5126089"],["-108.8215786","35.512548"],["-108.8219556","35.5124732"],["-108.8222821","35.5123948"],["-108.8225842","35.5123124"],["-108.8229097","35.5122109"],["-108.8233271","35.5120713"],["-108.8236801","35.5119419"],["-108.8240484","35.5117897"],["-108.8243832","35.5116369"],["-108.8246803","35.5114851"],["-108.8249646","35.5113307"],["-108.8253005","35.5111266"],["-108.8256159","35.5109272"],["-108.8259761","35.5106695"],["-108.8263011","35.5104185"],["-108.8265916","35.5101659"],["-108.8268427","35.5099387"],["-108.8276582","35.5090974"],["-108.8280331","35.5087075"],["-108.8288492","35.5077998"],["-108.8336645","35.5026627"],["-108.8343861","35.5020078"],["-108.8350766","35.5014613"],["-108.8358915","35.5009762"],["-108.8367231","35.5005513"],["-108.8376792","35.5001502"],["-108.8385178","35.4998958"],["-108.8392714","35.4997128"],["-108.8495028","35.4978954"],["-108.8512654","35.497631"],["-108.8527918","35.4974601"],["-108.8583461","35.4970544"],["-108.8597584","35.496934"],["-108.8608031","35.4968056"],["-108.8618956","35.4966311"],["-108.8629187","35.4964219"],["-108.890526","35.4895438"],["-108.8920567","35.4891626"],["-108.8937259","35.4887412"],["-108.8990627","35.4873475"],["-108.9007174","35.4868314"],["-108.9031482","35.485931"],["-108.9055572","35.4848654"],["-108.9088491","35.4831062"],["-108.9302714","35.4709375"],["-108.9334162","35.469096"],["-108.9352115","35.467896"],["-108.936815","35.4666572"],["-108.9384441","35.4652856"],["-108.9472806","35.4567913"],["-108.9482853","35.455728"],["-108.9498894","35.4538146"],["-108.957955","35.4434638"],["-108.9589339","35.4423233"],["-108.9598637","35.4414104"],["-108.9611177","35.4403999"],["-108.9624135","35.4394926"],["-108.9870859","35.4227523"],["-108.9882727","35.4218118"],["-108.9894886","35.4206851"],["-108.9944067","35.4150399"],["-108.9953919","35.4138954"],["-108.9966014","35.4124763"],["-108.9978439","35.4109119"],["-108.9990358","35.4092733"],["-109.0044685","35.4001443"],["-109.0067091","35.3963538"],["-109.0076308","35.3947546"],["-109.0083979","35.3934466"],["-109.0097687","35.3911075"],["-109.0105555","35.3898011"],["-109.0113663","35.3884074"],["-109.0125548","35.3866607"],["-109.0137053","35.3853134"],["-109.0145827","35.3844735"],["-109.0158811","35.3834225"],["-109.0173305","35.3824577"],["-109.0195299","35.3813051"],["-109.0404754","35.371307"],["-109.04109","35.3709844"],["-109.0416905","35.370616"],["-109.0422222","35.3702289"],["-109.0427221","35.3698025"],["-109.0431166","35.3694117"],["-109.0434519","35.3690494"],["-109.0437212","35.3687117"],["-109.0439789","35.3683713"],["-109.0442042","35.3680117"],["-109.0444338","35.3676225"],["-109.0446647","35.3671167"],["-109.0453552","35.3655108"],["-109.0456407","35.3648724"],["-109.0458706","35.3644191"],["-109.0461555","35.3639223"],["-109.0464448","35.3634866"],["-109.0479231","35.3615395"],["-109.0483107","35.3610592"],["-109.0487152","35.3606072"],["-109.0491346","35.3601683"],["-109.0495126","35.3598029"],["-109.0499046","35.3594487"],["-109.0507325","35.3587589"],["-109.0511988","35.3583997"],["-109.0525686","35.3574171"],["-109.0530645","35.3570319"],["-109.0536192","35.3565712"],["-109.0541808","35.3560707"],["-109.0548105","35.3554674"],["-109.0554763","35.3546892"],["-109.0561896","35.3538114"],["-109.0571942","35.3523448"],["-109.0581248","35.3509596"],["-109.0588805","35.3498457"],["-109.0606343","35.3471995"],["-109.0631382","35.3437415"],["-109.0657554","35.3406856"],["-109.0672035","35.3392291"],["-109.0779568","35.3290392"],["-109.0810975","35.3262048"],["-109.0854716","35.3227989"],["-109.0878143","35.3210941"],["-109.0924891","35.3180456"],["-109.0950393","35.3165585"],["-109.097869","35.3149749"],["-109.1001109","35.3138249"],["-109.1055254","35.3113044"],["-109.1565688","35.289197"],["-109.1579095","35.2886106"],["-109.1747408","35.2815399"],["-109.1765307","35.280857"],["-109.177623","35.2805606"],["-109.1785567","35.2803931"],["-109.1794838","35.2802818"],["-109.1806608","35.2802174"],["-109.1823591","35.2803014"],["-109.2065158","35.2826949"],["-109.2100221","35.2828919"],["-109.2133182","35.2829817"],["-109.2155174","35.283012"],["-109.2164944","35.283013"],["-109.2228498","35.2830577"],["-109.2261575","35.2830304"],["-109.2324079","35.2830568"],["-109.2352438","35.2829642"],["-109.237775","35.2827095"],["-109.2397309","35.282426"],["-109.2405196","35.282266"],["-109.2423175","35.2817579"],["-109.255934","35.2774397"],["-109.2589615","35.2764645"],["-109.2602122","35.2760366"],["-109.261531","35.2755766"],["-109.2629366","35.2748802"],["-109.2643317","35.2739466"],["-109.2657756","35.2725911"],["-109.2699372","35.2682305"],["-109.2725209","35.2655777"],["-109.2738344","35.2643275"],["-109.2860406","35.2518987"],["-109.2869533","35.2510439"],["-109.2876469","35.2504163"],["-109.2881179","35.2499896"],["-109.289013","35.2492713"],["-109.2911439","35.2474943"],["-109.2997883","35.2407204"],["-109.3027386","35.2383698"],["-109.3034936","35.237828"],["-109.3162067","35.227745"],["-109.3172793","35.2268966"],["-109.3225418","35.2227583"],["-109.3238845","35.2217824"],["-109.3277465","35.219169"],["-109.3300778","35.2177156"],["-109.3312078","35.2170726"],["-109.3356444","35.214724"],["-109.3420404","35.2118474"],["-109.3447564","35.2108319"],["-109.3477338","35.2097898"],["-109.3504794","35.20893"],["-109.3533755","35.2081491"],["-109.3577733","35.2071098"],["-109.4344203","35.1908619"],["-109.4454233","35.1877539"],["-109.447219","35.1871374"],["-109.4497396","35.1862215"],["-109.4514879","35.1855246"],["-109.4534402","35.1846811"],["-109.455616","35.1836814"],["-109.4571343","35.1829409"],["-109.4610675","35.1808004"],["-109.462875","35.1797374"],["-109.5346953","35.1331665"],["-109.5365823","35.1320267"],["-109.5381306","35.1311754"],["-109.5395014","35.1304336"],["-109.5423126","35.1289671"],["-109.5457493","35.1273427"],["-109.548762","35.126033"],["-109.5501557","35.125498"],["-109.5516513","35.1249474"],["-109.6065971","35.1059085"],["-109.6098403","35.1049394"],["-109.6127501","35.104178"],["-109.6177857","35.1030876"],["-109.6206853","35.1026066"],["-109.6366664","35.100264"],["-109.6375746","35.1001411"],["-109.6385769","35.0999782"],["-109.6655907","35.0960386"],["-109.6680901","35.0956269"],["-109.6714685","35.0949779"],["-109.6740982","35.0943547"],["-109.6775076","35.0934384"],["-109.6861744","35.0908883"],["-109.712737","35.0830554"],["-109.7148287","35.0824366"],["-109.76363","35.0679838"],["-109.7697647","35.0659158"],["-109.7722266","35.0649377"],["-109.7753481","35.063587"],["-109.7778944","35.0623393"],["-109.781061","35.0606511"],["-109.7869014","35.0573098"],["-109.7876135","35.0569267"],["-109.7884477","35.0564416"],["-109.8373437","35.0284333"],["-109.8447727","35.0241643"],["-109.8459539","35.0235021"],["-109.8511995","35.0204209"],["-109.8604208","35.0148742"],["-109.8632887","35.0132096"],["-109.8657425","35.0118663"],["-109.8683632","35.0105646"],["-109.8713378","35.009193"],["-109.8768762","35.0068838"],["-109.8803176","35.0056627"],["-109.8857315","35.0039461"],["-109.8881415","35.0033094"],["-109.8912049","35.0025454"],["-109.8936453","35.001996"],["-109.9003345","35.0007409"],["-109.9012136","35.0005803"],["-109.9113282","34.998782"],["-109.9138574","34.998324"],["-109.9359803","34.9943832"],["-109.9444405","34.9932446"],["-109.9658091","34.9911546"],["-109.9698759","34.9909373"],["-109.9741122","34.990865"],["-109.9763763","34.990926"],["-109.9864851","34.9913602"],["-109.989133","34.9914137"],["-109.9913048","34.9913499"],["-109.9932581","34.9912534"],["-109.9964536","34.9909867"],["-109.9983451","34.9907429"],["-110.0002503","34.9904443"],["-110.0589786","34.9800642"],["-110.0609574","34.9797188"],["-110.0726117","34.977645"],["-110.0758551","34.9770199"],["-110.0778621","34.9765502"],["-110.0800742","34.9759606"],["-110.08124","34.9756006"],["-110.0829008","34.9750639"],["-110.0846989","34.9744075"],["-110.0880648","34.9730226"],["-110.0888541","34.9726533"],["-110.0905431","34.9718455"],["-110.0928255","34.9706448"],["-110.095058","34.9692798"],["-110.0972223","34.9678493"],["-110.0990205","34.9665396"],["-110.1008468","34.9650767"],["-110.1253652","34.9438448"],["-110.125961","34.9432585"],["-110.1265529","34.9426461"],["-110.1271018","34.9420175"],["-110.1276938","34.9413148"],["-110.1282228","34.9406121"],["-110.1287547","34.9398219"],["-110.1292157","34.9391111"],["-110.1295552","34.9385045"],["-110.1298772","34.9378849"],["-110.1303647","34.9368335"],["-110.1306793","34.9360345"],["-110.1316387","34.9333918"],["-110.1320994","34.9322346"],["-110.1325079","34.9312982"],["-110.1329918","34.9303314"],["-110.1335199","34.9293615"],["-110.134213","34.9282089"],["-110.1349545","34.9270913"],["-110.1360128","34.9256815"],["-110.1379735","34.9233875"],["-110.1395786","34.9217925"],["-110.1409323","34.9206191"],["-110.1423791","34.9194859"],["-110.1441594","34.9182335"],["-110.1458162","34.9171999"],["-110.1475333","34.9162422"],["-110.1488261","34.9155833"],["-110.150033","34.9150286"],["-110.1509889","34.9146217"],["-110.1519906","34.9142241"],["-110.1529214","34.9138829"],["-110.1543361","34.9134186"],["-110.1560561","34.9129152"],["-110.1582066","34.9123793"],["-110.1593606","34.9121438"],["-110.1606216","34.9119153"],["-110.1615672","34.911777"],["-110.1625984","34.9116418"],["-110.1696756","34.910943"],["-110.1715585","34.9107352"],["-110.1725387","34.9105844"],["-110.173517","34.9104143"],["-110.1744955","34.9102016"],["-110.1752402","34.9100228"],["-110.1761332","34.9097829"],["-110.1771928","34.9094516"],["-110.17798","34.9091804"],["-110.1794769","34.9086035"],["-110.1847598","34.9064849"],["-110.1855526","34.9061785"],["-110.1862523","34.9059401"],["-110.1872219","34.9056842"],["-110.1879383","34.9055186"],["-110.188665","34.9053962"],["-110.1894331","34.9052933"],["-110.1901503","34.9052204"],["-110.1910529","34.9051705"],["-110.1919522","34.9051817"],["-110.1928406","34.9052199"],["-110.1937842","34.905312"],["-110.2326072","34.9099069"],["-110.2348096","34.9102585"],["-110.2363436","34.9105664"],["-110.2375872","34.910851"],["-110.2394443","34.9113518"],["-110.240474","34.9116754"],["-110.2412854","34.911946"],["-110.2425295","34.912398"],["-110.2436798","34.9128543"],["-110.2453607","34.9136025"],["-110.2469301","34.9143566"],["-110.2481953","34.9150106"],["-110.2496593","34.9158232"],["-110.251181","34.916708"],["-110.2542028","34.9186453"],["-110.269538","34.9293115"],["-110.270161","34.9297491"],["-110.2719401","34.931008"],["-110.2727874","34.9316933"],["-110.2733907","34.932281"],["-110.2738496","34.9327787"],["-110.2755586","34.935068"],["-110.2765421","34.9362035"],["-110.2785277","34.9382616"],["-110.2791104","34.938843"],["-110.2798748","34.9394766"],["-110.2807315","34.9400834"],["-110.2814601","34.9405141"],["-110.28247","34.9410108"],["-110.31548","34.9546969"],["-110.3164264","34.9550247"],["-110.3171672","34.9552307"],["-110.3177385","34.9553475"],["-110.3183561","34.9554424"],["-110.3191253","34.9555254"],["-110.3202363","34.9555724"],["-110.320952","34.9555476"],["-110.3215644","34.9555"],["-110.322133","34.9554328"],["-110.3227659","34.9553268"],["-110.32359","34.9551712"],["-110.3255175","34.9548224"],["-110.3262492","34.9547228"],["-110.3269888","34.954647"],["-110.3276688","34.9545952"],["-110.3284022","34.9545679"],["-110.3300731","34.9545459"],["-110.3315174","34.9545558"],["-110.3329309","34.9545514"],["-110.3386908","34.9545813"],["-110.3393327","34.9545952"],["-110.3400896","34.9546526"],["-110.3415268","34.9548176"],["-110.4344646","34.9695051"],["-110.4382469","34.9698647"],["-110.4419622","34.9700998"],["-110.5092289","34.9731451"],["-110.5123441","34.9734052"],["-110.5139823","34.9735693"],["-110.5157871","34.9737933"],["-110.523755","34.9752451"],["-110.5271394","34.9760826"],["-110.5323643","34.9776731"],["-110.6156483","35.0060843"],["-110.6166043","35.0063441"],["-110.6177397","35.0066061"],["-110.6192579","35.0068444"],["-110.6205478","35.006976"],["-110.6220616","35.0070594"],["-110.6238719","35.006992"],["-110.6274671","35.0067694"],["-110.629149","35.006732"],["-110.6306254","35.0067801"],["-110.6323647","35.0069066"],["-110.6341679","35.0071495"],["-110.6354051","35.0073923"],["-110.637255","35.0078467"],["-110.6711076","35.0170541"],["-110.6731273","35.0176137"],["-110.673549","35.0177554"],["-110.6746598","35.018192"],["-110.6750276","35.0183559"],["-110.6754293","35.0185511"],["-110.676321","35.0190377"],["-110.6766745","35.0192527"],["-110.6773359","35.0196845"],["-110.6777012","35.0199511"],["-110.6780268","35.0201988"],["-110.6784337","35.0205237"],["-110.678884","35.0209358"],["-110.6793551","35.021412"],["-110.6799116","35.022017"],["-110.6802175","35.0223747"],["-110.6806775","35.0229646"],["-110.6811229","35.0236724"],["-110.681418","35.0241872"],["-110.6844359","35.0302295"],["-110.6846092","35.0305915"],["-110.6848562","35.0311122"],["-110.6854999","35.0323643"],["-110.6857197","35.0328031"],["-110.6859062","35.0331561"],["-110.6860885","35.0334865"],["-110.686327","35.0338832"],["-110.6865132","35.0341816"],["-110.686738","35.0345078"],["-110.6871721","35.0350629"],["-110.6873981","35.03533"],["-110.6876702","35.0356111"],["-110.6882688","35.0361895"],["-110.6886388","35.0365106"],["-110.6890261","35.0368201"],["-110.6893955","35.0370966"],["-110.6901197","35.0375568"],["-110.6903528","35.0376914"],["-110.6909162","35.0380027"],["-110.6913057","35.0382033"],["-110.6918699","35.0384426"],["-110.6927453","35.0387914"],["-110.6935802","35.0390507"],["-110.6944277","35.0392593"],["-110.6952612","35.0394103"],["-110.6964863","35.0395721"],["-110.6973552","35.0396211"],["-110.6985063","35.0396342"],["-110.7066873","35.0395496"],["-110.7085027","35.0394601"],["-110.7109188","35.0392364"],["-110.7174642","35.038372"],["-110.7201775","35.0381171"],["-110.7218433","35.0380394"],["-110.7239041","35.0379818"],["-110.7260335","35.0380336"],["-110.7276123","35.0381043"],["-110.7289259","35.0382161"],["-110.7310237","35.0384445"],["-110.7327783","35.0386907"],["-110.7339903","35.0389042"],["-110.7420261","35.0405916"],["-110.7470189","35.0417834"],["-110.7496759","35.0425095"],["-110.8821874","35.0813008"],["-110.9056169","35.0891059"],["-110.9086429","35.0900043"],["-110.9152196","35.09171"],["-110.9180733","35.0923155"],["-110.9216404","35.0929995"],["-110.9236973","35.0933547"],["-110.9554239","35.0980372"],["-110.9685787","35.0999451"],["-110.9693594","35.1000277"],["-110.9708417","35.1001602"],["-110.9714797","35.1001982"],["-110.9719498","35.1002194"],["-110.9756682","35.1003159"],["-110.9771631","35.1003678"],["-110.9792824","35.1005209"],["-110.9805905","35.100656"],["-110.9822779","35.100908"],["-110.984695","35.1013819"],["-111.0169004","35.1082826"],["-111.0270097","35.1099536"],["-111.072075","35.114844"],["-111.0913513","35.1177554"],["-111.0928965","35.1179694"],["-111.0941558","35.1180811"],["-111.0955768","35.1181152"],["-111.0963212","35.1181066"],["-111.0975093","35.1180233"],["-111.0984682","35.1179099"],["-111.1060165","35.1168575"],["-111.1080235","35.1166279"],["-111.1088719","35.1165838"],["-111.1097359","35.1165547"],["-111.1116417","35.1166514"],["-111.1491446","35.1201857"],["-111.1568646","35.121066"],["-111.1579729","35.1212539"],["-111.15852","35.1213515"],["-111.1590193","35.1214434"],["-111.1647032","35.122712"],["-111.1667063","35.1232513"],["-111.1687481","35.123853"],["-111.1707805","35.1245081"],["-111.18909","35.1312272"],["-111.2672725","35.1598757"],["-111.271568","35.1614299"],["-111.2723706","35.1616681"],["-111.2726938","35.1617514"],["-111.2730564","35.1618322"],["-111.2739166","35.1619951"],["-111.2741915","35.1620347"],["-111.2745252","35.1620732"],["-111.2754428","35.1621536"],["-111.2757189","35.1621677"],["-111.2763268","35.1621748"],["-111.2774367","35.1621443"],["-111.2787316","35.1619824"],["-111.2789945","35.1619366"],["-111.2792859","35.1618827"],["-111.2809633","35.1614524"],["-111.2881159","35.1587697"],["-111.2892141","35.1583741"],["-111.2902327","35.1581339"],["-111.2916098","35.1578943"],["-111.2932389","35.1577824"],["-111.294545","35.1578503"],["-111.2959834","35.1580356"],["-111.2971262","35.1582786"],["-111.2981281","35.1585687"],["-111.3044446","35.1610446"],["-111.4057632","35.2014199"],["-111.4070986","35.2019329"],["-111.4080771","35.2022244"],["-111.4091019","35.2024572"],["-111.4101654","35.2026682"],["-111.4110688","35.2028177"],["-111.412013","35.202923"],["-111.4131944","35.202986"],["-111.4145611","35.2030207"],["-111.4154931","35.2029811"],["-111.4166508","35.2028712"],["-111.4184374","35.2026079"],["-111.4223321","35.2019732"],["-111.4234663","35.201833"],["-111.4246602","35.2017385"],["-111.4260051","35.2017052"],["-111.4656061","35.2028371"],["-111.4662903","35.2028469"],["-111.4668439","35.2028235"],["-111.467309","35.2028001"],["-111.4686095","35.2026377"],["-111.4702432","35.2023426"],["-111.4715182","35.2021286"],["-111.4725381","35.2020033"],["-111.4733586","35.2019447"],["-111.4742104","35.201898"],["-111.4758592","35.2019248"],["-111.4767639","35.2019905"],["-111.4771657","35.2020349"],["-111.4780714","35.2021424"],["-111.4784536","35.2021975"],["-111.4791007","35.2023148"],["-111.480682","35.2026258"],["-111.4817764","35.2028443"],["-111.4833683","35.2031448"],["-111.499221","35.2061448"],["-111.5001165","35.2063007"],["-111.501272","35.2064792"],["-111.5024146","35.20662"],["-111.5092215","35.2073126"],["-111.5103911","35.207481"],["-111.5114722","35.2076795"],["-111.5124006","35.207864"],["-111.5556832","35.217606"],["-111.5584214","35.2181182"],["-111.5595581","35.218273"],["-111.5608923","35.2184473"],["-111.5620388","35.2185667"],["-111.5651913","35.2187757"],["-111.5669553","35.218828"],["-111.5684115","35.2188061"],["-111.5698331","35.2187707"],["-111.5723341","35.2186231"],["-111.5754704","35.2182782"],["-111.5777976","35.2179136"],["-111.5797885","35.2175177"],["-111.5814485","35.2171407"],["-111.5841203","35.2164209"],["-111.5861011","35.2157648"],["-111.5883289","35.2149366"],["-111.5904082","35.2141067"],["-111.592102","35.213311"],["-111.5939674","35.2123537"],["-111.5958437","35.2112982"],["-111.5974827","35.2102345"],["-111.599326","35.2089927"],["-111.6084042","35.2021288"],["-111.6112305","35.1999992"],["-111.6186893","35.1943537"],["-111.620569","35.1929457"],["-111.6216184","35.1921932"],["-111.6230091","35.1912998"],["-111.6242688","35.1905463"],["-111.6256082","35.189823"],["-111.6267649","35.1892425"],["-111.6270828","35.1890885"],["-111.6272672","35.1889906"],["-111.6297411","35.1877673"],["-111.6306547","35.1872986"],["-111.6315466","35.1868594"],["-111.6326772","35.186271"],["-111.6330737","35.1860461"],["-111.6342573","35.1853056"],["-111.6348563","35.1849051"],["-111.6354804","35.1844404"],["-111.6360996","35.1839562"],["-111.6366527","35.183501"],["-111.6371684","35.1830381"],["-111.6376257","35.1826076"],["-111.6381066","35.1821243"],["-111.638583","35.1816077"],["-111.6391111","35.1810143"],["-111.6395187","35.1804953"],["-111.640691","35.1789418"],["-111.6409961","35.1785793"],["-111.6414775","35.1780436"],["-111.6423165","35.1771666"],["-111.6429418","35.1766044"],["-111.6436216","35.1760485"],["-111.6440038","35.1757607"],["-111.6444831","35.1754188"],["-111.6449429","35.1751005"],["-111.6456429","35.1746583"],["-111.6461511","35.174372"],["-111.6466659","35.1740915"],["-111.6471569","35.1738418"],["-111.6476563","35.1736057"],["-111.6484504","35.1732503"],["-111.6489317","35.1730604"],["-111.6493543","35.1729107"],["-111.6505752","35.1725287"],["-111.6512676","35.1723419"],["-111.6524318","35.1720758"],["-111.6528697","35.1719937"],["-111.6541573","35.1717993"],["-111.6550685","35.1717131"],["-111.6557251","35.1716686"],["-111.6563627","35.1716428"],["-111.6569675","35.171631"],["-111.6576883","35.1716482"],["-111.6586443","35.1716958"],["-111.6594557","35.1717712"],["-111.6606022","35.1719264"],["-111.6609921","35.1719937"],["-111.6612254","35.1720545"],["-111.6617446","35.1721603"],["-111.6623973","35.1723097"],["-111.6632018","35.1725272"],["-111.6638475","35.1727176"],["-111.6644428","35.1729257"],["-111.6655519","35.1733562"],["-111.6662495","35.1736556"],["-111.6675353","35.1742357"],["-111.6688643","35.1748394"],["-111.6705488","35.1756046"],["-111.6711755","35.1758947"],["-111.6726692","35.1765752"],["-111.6741179","35.1771785"],["-111.6755345","35.177705"],["-111.677517","35.1783406"],["-111.6801766","35.1790522"],["-111.6905393","35.1812554"],["-111.694539","35.1820949"],["-111.7018214","35.1836566"],["-111.7037415","35.1841301"],["-111.7350988","35.1939132"],["-111.735916","35.1941685"],["-111.7366967","35.1944494"],["-111.7372831","35.1947254"],["-111.7377994","35.1950073"],["-111.7383467","35.1954071"],["-111.7391194","35.1959936"],["-111.7399304","35.1965211"],["-111.7408778","35.1970661"],["-111.7419059","35.1975594"],["-111.7432052","35.1980778"],["-111.7439387","35.1983264"],["-111.7448328","35.1985718"],["-111.7462298","35.1988825"],["-111.7483099","35.1991106"],["-111.7499977","35.1992853"],["-111.7522327","35.1995465"],["-111.7535671","35.1998052"],["-111.7550477","35.2001875"],["-111.763831","35.2029989"],["-111.7655739","35.2036032"],["-111.7664954","35.2040187"],["-111.7675283","35.2046121"],["-111.7684166","35.2052491"],["-111.7692608","35.2059929"],["-111.7699445","35.2067324"],["-111.7704556","35.207436"],["-111.7716779","35.2094033"],["-111.7721732","35.2101585"],["-111.7727823","35.210883"],["-111.7733928","35.2114396"],["-111.7740938","35.2119876"],["-111.7749675","35.2125577"],["-111.7760292","35.2130921"],["-111.7774324","35.2136097"],["-111.7810759","35.2148069"],["-111.7825216","35.2152968"],["-111.7834444","35.215647"],["-111.7847496","35.2162283"],["-111.7856316","35.2166863"],["-111.7865318","35.2172251"],["-111.7873638","35.2177647"],["-111.7884352","35.218574"],["-111.790412","35.2201357"],["-111.792134","35.221368"],["-111.7939064","35.2225419"],["-111.7957355","35.2236508"],["-111.79735","35.2245345"],["-111.8044665","35.2279426"],["-111.840141","35.2448001"],["-111.8422234","35.2456701"],["-111.8440251","35.2463664"],["-111.8459554","35.2470087"],["-111.8480279","35.247622"],["-111.8498843","35.2480945"],["-111.8517649","35.2485099"],["-111.8537517","35.2488691"],["-111.8558116","35.2491756"],["-111.8578034","35.2493989"],["-111.8596053","35.2495324"],["-111.8615408","35.2496222"],["-111.8631837","35.2496553"],["-111.8650753","35.2496128"],["-111.8670519","35.2495161"],["-111.8691311","35.2493369"],["-111.8710471","35.24911"],["-111.8730406","35.2487988"],["-111.8806207","35.2474242"],["-111.8820006","35.2472622"],["-111.8830218","35.2472192"],["-111.8839072","35.2472059"],["-111.885107","35.2472495"],["-111.8868234","35.247421"],["-111.8880208","35.2476081"],["-111.8889351","35.2477944"],["-111.8898723","35.2480146"],["-111.8909476","35.2483478"],["-111.8918735","35.248687"],["-111.8932045","35.2492422"],["-111.8952698","35.2502329"],["-111.8971847","35.251139"],["-111.8985121","35.2516629"],["-111.8999144","35.2520776"],["-111.9010635","35.252355"],["-111.9022804","35.2525974"],["-111.9034566","35.2527548"],["-111.9048916","35.2528647"],["-111.9068125","35.2529794"],["-111.9084925","35.253127"],["-111.9097777","35.2532954"],["-111.9110766","35.2535207"],["-111.9135881","35.2541256"],["-111.9218753","35.2561696"],["-111.9245945","35.2568213"],["-111.9257951","35.2570306"],["-111.9269686","35.2571797"],["-111.9281465","35.2572624"],["-111.9294276","35.2573015"],["-111.9306837","35.2572561"],["-111.9319876","35.2571646"],["-111.9330282","35.2570218"],["-111.9340564","35.2568386"],["-111.9352619","35.256587"],["-111.9447075","35.2543073"],["-111.9455972","35.2541055"],["-111.9679379","35.2488434"],["-111.9695505","35.2485379"],["-111.9709412","35.2483143"],["-111.9720723","35.2481702"],["-111.9733596","35.2480354"],["-111.97563","35.2478843"],["-111.9766721","35.2478607"],["-111.9777658","35.2478468"],["-111.9801677","35.2479309"],["-111.9814736","35.24803"],["-111.9830145","35.2481916"],["-111.9856867","35.2485969"],["-111.9872794","35.2489144"],["-111.9887343","35.2492531"],["-111.9902364","35.2496743"],["-111.9925529","35.2504329"],["-111.9981585","35.2524013"],["-112.0022506","35.2535271"],["-112.0467065","35.2641686"],["-112.048389","35.2645141"],["-112.0492834","35.2646649"],["-112.0507841","35.2648607"],["-112.0533404","35.2650799"],["-112.054427","35.2651125"],["-112.0561417","35.2651307"],["-112.0573726","35.2650709"],["-112.0586992","35.2649655"],["-112.0599047","35.2648379"],["-112.0609975","35.2647051"],["-112.0619637","35.2645551"],["-112.0629539","35.2643722"],["-112.0641329","35.2641235"],["-112.0651805","35.263872"],["-112.0664126","35.2635249"],["-112.0676625","35.2631238"],["-112.0688729","35.2627006"],["-112.0704442","35.2620606"],["-112.0758155","35.2597136"],["-112.0767252","35.2593746"],["-112.0776406","35.2590695"],["-112.0786124","35.2587899"],["-112.0795922","35.2585688"],["-112.0805679","35.2583735"],["-112.0816326","35.2582325"],["-112.0825946","35.2581343"],["-112.0835329","35.2580753"],["-112.0846539","35.2580635"],["-112.0955789","35.2585681"],["-112.0973832","35.2586116"],["-112.0986896","35.2586203"],["-112.1192906","35.2583777"],["-112.1231228","35.2583781"],["-112.1262095","35.2583227"],["-112.1404745","35.258162"],["-112.1419203","35.2582387"],["-112.1429903","35.258332"],["-112.1438477","35.2584485"],["-112.1446175","35.2585685"],["-112.1461959","35.2590393"],["-112.146975","35.2593221"],["-112.1478301","35.2596659"],["-112.1486542","35.260047"],["-112.1495514","35.260478"],["-112.1503204","35.2608571"],["-112.1508397","35.2611326"],["-112.1505591","35.2617299"],["-112.1503646","35.2622102"],["-112.1502536","35.2626105"],["-112.1501885","35.2630445"],["-112.1502047","35.2636532"],["-112.1502424","35.2645181"],["-112.1502354","35.265116"],["-112.1501676","35.2657829"],["-112.1499587","35.2667527"],["-112.1456548","35.2836206"],["-112.1452566","35.2846828"],["-112.1429623","35.2895808"],["-112.1422429","35.2911024"],["-112.1420065","35.2916954"],["-112.1418254","35.2922457"],["-112.1416674","35.2928318"],["-112.1415373","35.2934422"],["-112.1414478","35.2940347"],["-112.1414022","35.2945997"],["-112.1413732","35.2952367"],["-112.1414129","35.2964769"],["-112.1414848","35.2971031"],["-112.1415778","35.2976819"],["-112.1417031","35.2983174"],["-112.141872","35.2989808"],["-112.1420495","35.2995705"],["-112.1424668","35.3006613"],["-112.1483382","35.3149454"],["-112.1488678","35.3160508"],["-112.1491686","35.3165717"],["-112.1495583","35.3172106"],["-112.1505429","35.3185759"],["-112.1515883","35.3200257"],["-112.1523728","35.3213107"],["-112.1585904","35.333562"],["-112.1592478","35.3347819"],["-112.1602153","35.3362035"],["-112.1655424","35.3432384"],["-112.1657822","35.3436481"],["-112.1660053","35.3440672"],["-112.1661913","35.3444928"],["-112.1663385","35.3448943"],["-112.1664691","35.3453596"],["-112.1665836","35.3459807"],["-112.1666942","35.3472646"],["-112.1672652","35.3580149"],["-112.1672935","35.3587062"],["-112.1672727","35.3592549"],["-112.1672364","35.3598003"],["-112.1671844","35.3602978"],["-112.1671103","35.3607904"],["-112.1670248","35.3612431"],["-112.1669014","35.3617361"],["-112.1667506","35.3622801"],["-112.161925","35.3761924"],["-112.1616909","35.3769611"],["-112.1615896","35.3775501"],["-112.1615511","35.3782603"],["-112.1615633","35.378812"],["-112.1616439","35.3795066"],["-112.1617331","35.3799108"],["-112.1618278","35.380296"],["-112.1619584","35.3807458"],["-112.1621191","35.3811506"],["-112.1631484","35.3835682"],["-112.1685935","35.3964968"],["-112.1689374","35.3975605"],["-112.169171","35.3985831"],["-112.1693329","35.3996913"],["-112.1714319","35.4383687"],["-112.1715175","35.4399293"],["-112.1715964","35.4417854"],["-112.1716695","35.4437593"],["-112.1716347","35.4449683"],["-112.1714744","35.4467973"],["-112.170401","35.4551224"],["-112.1703549","35.4558854"],["-112.1703709","35.4566873"],["-112.1705116","35.4574283"],["-112.1724189","35.4640874"],["-112.1730887","35.4661855"],["-112.1739819","35.4685075"],["-112.1745136","35.4696941"],["-112.1750327","35.4707551"],["-112.1769452","35.4744749"],["-112.1771565","35.4749987"],["-112.1773142","35.4754745"],["-112.1774071","35.4759374"],["-112.1774812","35.476351"],["-112.1775216","35.4768154"],["-112.1775218","35.4772446"],["-112.1775023","35.477697"],["-112.177438","35.4781236"],["-112.1773402","35.4786128"],["-112.177169","35.4792899"],["-112.1752361","35.4861428"],["-112.1749734","35.4871294"],["-112.174842","35.4877464"],["-112.1746809","35.4887603"],["-112.1737383","35.5031381"],["-112.1734979","35.5065186"],["-112.1733393","35.5077717"],["-112.1731733","35.5086752"],["-112.1729646","35.5095691"],["-112.1727189","35.5105151"],["-112.1723798","35.5116447"],["-112.1640935","35.537188"],["-112.1629148","35.5410632"],["-112.1607152","35.5493723"],["-112.1600835","35.5517669"],["-112.1593674","35.5544385"],["-112.1579657","35.5597361"],["-112.1535022","35.5765773"],["-112.1530536","35.5782703"],["-112.1505482","35.5876735"],["-112.1500159","35.5896619"],["-112.1494042","35.5920237"],["-112.1491478","35.5930959"],["-112.1469103","35.6015434"],["-112.146345","35.6040921"],["-112.1455782","35.6084441"],["-112.144507","35.6155725"],["-112.1330489","35.6993598"],["-112.1315679","35.7102826"],["-112.1313358","35.712284"],["-112.1312825","35.7130793"],["-112.131212","35.7170947"],["-112.1311039","35.7328037"],["-112.131035","35.7423517"],["-112.1310592","35.7430247"],["-112.1308616","35.7616068"],["-112.1308241","35.7626831"],["-112.1307416","35.763636"],["-112.1305259","35.7653358"],["-112.1301787","35.7682092"],["-112.1297706","35.7720484"],["-112.1296098","35.7735389"],["-112.1294378","35.7750531"],["-112.1293537","35.7758929"],["-112.1292458","35.7773997"],["-112.1292385","35.778068"],["-112.1293247","35.7801627"],["-112.1308517","35.8021014"],["-112.1312529","35.8075737"],["-112.1320008","35.8184837"],["-112.1320623","35.8201887"],["-112.1320751","35.8226793"],["-112.13191","35.8356346"],["-112.131956","35.8385563"],["-112.132177","35.8412939"],["-112.1332357","35.8493115"],["-112.1335861","35.8520934"],["-112.1336769","35.8536954"],["-112.1337119","35.8551733"],["-112.1336747","35.856594"],["-112.1321176","35.880867"],["-112.131807","35.8838691"],["-112.1315939","35.8855366"],["-112.1312777","35.8876097"],["-112.130786","35.8907429"],["-112.1303163","35.8938029"],["-112.129817","35.8984848"],["-112.1296578","35.9012536"],["-112.1295611","35.9042921"],["-112.1297154","35.9109093"],["-112.1319161","35.9572453"],["-112.1319242","35.9581667"],["-112.1318835","35.959047"],["-112.1317751","35.9601707"],["-112.1316147","35.9612013"],["-112.1313927","35.962217"],["-112.1311078","35.9632001"],["-112.1308326","35.9640497"],["-112.1305741","35.9646984"],["-112.1304578","35.9649818"],["-112.1298599","35.9661828"],["-112.1297695","35.9662883"],["-112.1293418","35.9669428"],["-112.1292644","35.9671071"],["-112.1292014","35.9673553"],["-112.1291765","35.9675535"],["-112.129126","35.9676592"],["-112.1290436","35.9677376"],["-112.1289602","35.9677803"],["-112.1288761","35.9678023"],["-112.1288048","35.9678431"],["-112.1287546","35.9678999"],["-112.1287284","35.967968"],["-112.1287267","35.9680423"],["-112.1286816","35.9681676"],["-112.1285965","35.968624"],["-112.1285252","35.9688204"],["-112.1284217","35.969072"],["-112.1282827","35.9693471"],["-112.1278006","35.9703495"],["-112.1273809","35.9712471"],["-112.1273614","35.9714022"],["-112.1270648","35.9720178"],["-112.1270124","35.9721231"],["-112.1269298","35.9721698"],["-112.1265691","35.9729178"],["-112.1265756","35.9730175"],["-112.1261448","35.9739112"],["-112.1260521","35.9739846"],["-112.1260316","35.9740176"],["-112.1259813","35.9741203"],["-112.1256468","35.9748391"],["-112.125422","35.9753559"],["-112.1253443","35.9755808"],["-112.1252761","35.9757941"],["-112.1252314","35.9760468"],["-112.125207","35.9761969"],["-112.1251861","35.9763059"],["-112.1251696","35.9763468"],["-112.1251445","35.976381"],["-112.1251172","35.976412"],["-112.1250738","35.9764502"],["-112.1250151","35.9764907"],["-112.1249371","35.9765384"],["-112.1249222","35.9765456"],["-112.1248682","35.9765761"],["-112.1248231","35.9766191"],["-112.1247941","35.9766702"],["-112.1247826","35.9767172"],["-112.1247797","35.9767454"],["-112.1247378","35.9769804"],["-112.1246234","35.9774118"],["-112.1245234","35.9778428"],["-112.1242046","35.9789519"],["-112.1239097","35.9800334"],["-112.1236905","35.9809576"],["-112.1235158","35.9820386"],["-112.1233313","35.9834496"],["-112.1232691","35.9844435"],["-112.1232426","35.9850167"],["-112.1232305","35.9853907"],["-112.1232232","35.9856983"],["-112.1232275","35.9862339"],["-112.1233403","35.988771"],["-112.1233754","35.9902428"],["-112.1232167","35.9927272"],["-112.1228603","35.9945761"],["-112.1225592","35.9956891"],["-112.1222998","35.9966513"],["-112.1220186","35.9976977"],["-112.121834","35.9984406"],["-112.1216351","35.9992502"],["-112.121515","36.0000136"],["-112.1214625","36.0005054"],["-112.1214454","36.0008814"],["-112.1213982","36.0013798"],["-112.121384","36.001832"],["-112.1213646","36.0024436"],["-112.121371","36.0038866"],["-112.1212824","36.0048964"],["-112.1211658","36.0059725"],["-112.1210055","36.0069159"],["-112.1207264","36.0081669"],["-112.1203474","36.0107014"],["-112.1202837","36.0121206"],["-112.1203042","36.0132237"],["-112.1203779","36.0142115"],["-112.1204807","36.0150996"],["-112.1206995","36.0160262"],["-112.1210483","36.0170831"],["-112.1214344","36.0180062"],["-112.1217951","36.0188647"],["-112.1222262","36.0200109"],["-112.1223233","36.0203369"],["-112.1224249","36.020708"],["-112.1225832","36.0215155"],["-112.1227177","36.0225529"],["-112.1229714","36.0264673"],["-112.1230373","36.0286428"],["-112.123029","36.0322297"],["-112.1228407","36.0337373"],["-112.1226122","36.0351249"],["-112.1224105","36.0361653"],["-112.1216738","36.0394877"],["-112.1221087","36.0395874"],["-112.1225663","36.0396044"],["-112.1229509","36.0395744"],["-112.1232439","36.0395694"],["-112.1235656","36.0395764"],["-112.1237091","36.0395977"],["-112.1240786","36.0397173"],["-112.1245941","36.0399059"],["-112.1247853","36.0400316"],["-112.1248839","36.040111"],["-112.1251858","36.0403574"],["-112.1253443","36.0404547"],["-112.1254963","36.0405277"],["-112.1257914","36.0406195"],["-112.1260222","36.0406707"],["-112.1262493","36.0407355"],["-112.1264915","36.040848"],["-112.1267178","36.0409937"],["-112.1269028","36.0411534"],["-112.1271251","36.0414122"],["-112.1272332","36.041601"],["-112.1272925","36.0417762"],["-112.1273548","36.0420739"],["-112.1274026","36.0425752"],["-112.1258927","36.0427625"],["-112.1249455","36.0429944"],["-112.1236611","36.0436287"],["-112.1229887","36.0443015"],["-112.1224758","36.0453224"],["-112.1223731","36.0462138"],["-112.1224372","36.0478939"],["-112.122503","36.048305"],["-112.1228729","36.0489909"],["-112.1232585","36.0497431"],["-112.1233258","36.0500191"],["-112.1233305","36.0502035"],["-112.1233224","36.0503657"],["-112.1232727","36.0505498"],["-112.1232129","36.050665"],["-112.1231292","36.0508071"],["-112.1228713","36.0510569"],["-112.1225952","36.0512676"],["-112.1223286","36.0514335"],["-112.1224319","36.0516146"],["-112.1224848","36.0517102"],["-112.1225035","36.0517878"],["-112.1225138","36.0518873"],["-112.1224958","36.052069"],["-112.1224719","36.0522807"],["-112.1224756","36.0523987"],["-112.1224975","36.0524922"],["-112.1225397","36.0525844"],["-112.1226036","36.0526787"],["-112.1226977","36.0527931"],["-112.1228597","36.0530346"],["-112.1230825","36.0534067"],["-112.1231161","36.0534687"],["-112.1231386","36.0535125"],["-112.1231554","36.053559"],["-112.1229871","36.0536309"],["-112.122722","36.0537629"],["-112.1224678","36.0539061"],["-112.1221848","36.0541001"],["-112.1218831","36.0543469"],["-112.1216348","36.0545725"],["-112.1212177","36.0550001"],["-112.1211036","36.0551325"],["-112.120718","36.0556909"],["-112.1207175","36.0557578"],["-112.1206421","36.0558996"],["-112.1205809","36.0560147"],["-112.1204796","36.0562294"],["-112.1202882","36.0567091"],["-112.1201718","36.0573217"],["-112.1200255","36.0582952"],["-112.1198654","36.0591584"],["-112.1196812","36.0599685"],["-112.1195059","36.060603"],["-112.1193716","36.0609828"],["-112.1191877","36.0612848"],["-112.1189564","36.0616247"],["-112.1187194","36.0619429"],["-112.1184079","36.0623024"],["-112.1181566","36.0625252"],["-112.117796","36.0627993"],["-112.1172692","36.0631066"],["-112.1168896","36.0632989"],["-112.1165961","36.0634209"],["-112.1162551","36.0635425"],["-112.1158088","36.0636821"],["-112.1153727","36.0637597"],["-112.1149064","36.063795"],["-112.1144747","36.0638002"],["-112.1140242","36.0637626"],["-112.1135904","36.0637012"],["-112.1132393","36.0636252"],["-112.1128821","36.0635204"],["-112.1124957","36.0633868"],["-112.1121004","36.0632057"],["-112.1115646","36.0629205"],["-112.1112211","36.0627156"],["-112.1110412","36.0625834"],["-112.1108903","36.0624267"],["-112.1107634","36.0622639"],["-112.1106746","36.062102"],["-112.1105917","36.0619043"],["-112.1105607","36.0617243"],["-112.1105553","36.0615701"],["-112.1105585","36.0614315"],["-112.1105747","36.0612899"],["-112.1106324","36.0611157"],["-112.1111278","36.0597087"],["-112.1111611","36.0595747"],["-112.1111916","36.0593903"],["-112.1112109","36.0592007"],["-112.1112172","36.0587628"],["-112.1111925","36.0585654"],["-112.1111452","36.0584482"],["-112.1110819","36.0583492"],["-112.1109849","36.058255"],["-112.1103353","36.0577743"],["-112.109735","36.0572991"],["-112.1092592","36.0569387"],["-112.1091106","36.056821"],["-112.1088076","36.0566548"],["-112.1085899","36.0565881"],["-112.1084221","36.0565556"],["-112.1081796","36.0565574"],["-112.107943","36.0565776"],["-112.1076915","36.0566377"],["-112.1074928","36.056736"],["-112.1072915","36.0568713"],["-112.1070432","36.0570489"],["-112.1067519","36.0572436"],["-112.1065307","36.0573329"],["-112.106292","36.0573943"],["-112.1060311","36.0574127"],["-112.1057567","36.0573839"],["-112.1054491","36.0572996"],["-112.1050999","36.0570913"],["-112.1049166","36.0568953"],["-112.1048034","36.0566728"],["-112.1046991","36.056352"],["-112.1046341","36.0560906"],["-112.1045719","36.0557985"],["-112.1045199","36.0553629"],["-112.1045196","36.0549513"],["-112.1045481","36.0546409"],["-112.1045919","36.0543248"],["-112.1047026","36.0539642"],["-112.1048185","36.0536672"],["-112.1049551","36.05335"],["-112.1051467","36.0529712"],["-112.1053481","36.0526157"],["-112.1054563","36.052459"],["-112.1055717","36.0523025"],["-112.1060867","36.0516984"],["-112.1064029","36.051355"],["-112.1065606","36.0512047"],["-112.1067612","36.0510115"],["-112.1076679","36.0504403"],["-112.1087237","36.0498572"],["-112.109043","36.0496328"],["-112.1120821","36.048213"],["-112.1148115","36.0471763"],["-112.1159671","36.0467009"],["-112.1169787","36.0461638"],["-112.1179397","36.0455008"],["-112.1187768","36.0448578"],["-112.1193417","36.0442412"],["-112.1196866","36.0438431"],["-112.1199001","36.0435488"],["-112.1206977","36.0423753"],["-112.1210227","36.0416195"],["-112.1212666","36.0409602"],["-112.1214686","36.0403205"],["-112.1216398","36.039566"],["-112.1224181","36.0361311"],["-112.1226084","36.0351468"],["-112.1228473","36.0336944"],["-112.1230299","36.0322145"],["-112.1230398","36.0288325"],["-112.1229715","36.0264706"],["-112.1227199","36.0225757"],["-112.1225802","36.0214991"],["-112.1224256","36.0207102"],["-112.1223274","36.0203498"],["-112.122223","36.020002"],["-112.1217835","36.0188372"],["-112.1214331","36.0180038"],["-112.1210589","36.017111"],["-112.1206984","36.0160214"],["-112.1204769","36.0150795"],["-112.1203766","36.0141992"],["-112.1203034","36.0132068"],["-112.1202834","36.0121639"],["-112.1203477","36.0106971"],["-112.1207296","36.0081507"],["-112.1210099","36.0068943"],["-112.1211719","36.0059281"],["-112.1212801","36.0049216"],["-112.1213723","36.0038641"],["-112.1213645","36.0024446"],["-112.1213919","36.0018304"],["-112.1214872","36.0014495"],["-112.1218027","36.000664"],["-112.1218677","36.0004924"],["-112.1218934","36.0004014"],["-112.1219512","36.0001236"],["-112.121974","35.9998948"],["-112.1219749","35.9997454"],["-112.1219599","35.9996116"],["-112.1218494","35.9989241"],["-112.1218448","35.9987086"],["-112.1218713","35.9983288"],["-112.1220339","35.9976361"],["-112.1223468","35.9964822"],["-112.1225444","35.9957427"],["-112.1228705","35.9945303"],["-112.123218","35.992717"],["-112.1233751","35.9902527"],["-112.1233403","35.9887693"],["-112.1232274","35.9862391"],["-112.1232229","35.9857148"],["-112.12323","35.9853943"],["-112.1232434","35.9849967"],["-112.1232696","35.9844291"],["-112.1233279","35.9834839"],["-112.1235055","35.9821099"],["-112.1236901","35.9809601"],["-112.1238898","35.9801097"],["-112.1242159","35.9789122"],["-112.1245373","35.9778131"],["-112.1246475","35.9775929"],["-112.1246555","35.9775776"],["-112.1247038","35.9774848"],["-112.1247924","35.9772206"],["-112.1248258","35.9771314"],["-112.1248579","35.9770742"],["-112.1249031","35.9770236"],["-112.1249331","35.9770024"],["-112.1250753","35.9769397"],["-112.1251548","35.9769179"],["-112.1252197","35.9768806"],["-112.1252691","35.9768282"],["-112.1252948","35.9767671"],["-112.1252966","35.9767038"],["-112.1252905","35.9766658"],["-112.1252927","35.9764867"],["-112.125301","35.9763519"],["-112.1253363","35.9761247"],["-112.1253746","35.9759383"],["-112.1254734","35.9756205"],["-112.1255573","35.9753865"],["-112.126161","35.9740721"],["-112.1261787","35.9740255"],["-112.1261509","35.9739147"],["-112.1265813","35.9730193"],["-112.1266823","35.9729387"],["-112.1268495","35.9726184"],["-112.1270429","35.9721991"],["-112.1270181","35.972125"],["-112.1270683","35.972011"],["-112.1273685","35.9714041"],["-112.1275079","35.9712733"],["-112.1278185","35.9706033"],["-112.1279181","35.970389"],["-112.1279756","35.970267"],["-112.1284462","35.9692788"],["-112.1285475","35.9690724"],["-112.1286452","35.9688263"],["-112.1287061","35.9686372"],["-112.1287659","35.9684507"],["-112.1288412","35.9683267"],["-112.1289164","35.9682613"],["-112.128979","35.9682177"],["-112.1290672","35.9682069"],["-112.1291488","35.9681757"],["-112.1292127","35.9681253"],["-112.1292523","35.9680611"],["-112.1292637","35.9679849"],["-112.1292473","35.9679034"],["-112.1292764","35.9676005"],["-112.1293478","35.9673113"],["-112.1295234","35.9669167"],["-112.1297549","35.9664607"],["-112.1298627","35.9661866"],["-112.130452","35.9649939"],["-112.1305789","35.9646869"],["-112.1308269","35.9640652"],["-112.131112","35.9631859"],["-112.1313907","35.9622247"],["-112.1316244","35.9611495"],["-112.1317824","35.9601101"],["-112.1318831","35.9590529"],["-112.1319245","35.9581417"],["-112.1319164","35.9572452"],["-112.1297385","35.9114582"],["-112.1295612","35.9043063"],["-112.1296584","35.9012387"],["-112.1298213","35.8984316"],["-112.1303297","35.8937046"],["-112.1308322","35.8904584"],["-112.1312433","35.8878179"],["-112.131595","35.8855275"],["-112.1317845","35.8840575"],["-112.1321215","35.8808208"],["-112.1336726","35.8566451"],["-112.1337117","35.8551867"],["-112.1336793","35.853759"],["-112.1335809","35.8520358"],["-112.1332786","35.8496363"],["-112.1321838","35.8413568"],["-112.1319552","35.8385387"],["-112.1319103","35.8356051"],["-112.1320753","35.8226198"],["-112.1320615","35.820154"],["-112.1319984","35.8184355"],["-112.1312459","35.8074775"],["-112.1308541","35.8021365"],["-112.1293189","35.7800574"],["-112.1292381","35.778042"],["-112.129245","35.7774149"],["-112.1293488","35.7759457"],["-112.1294326","35.7750984"],["-112.1296027","35.7735997"],["-112.1297525","35.7722095"],["-112.1301695","35.7682965"],["-112.1305121","35.7654405"],["-112.1307415","35.7636384"],["-112.1308227","35.7627046"],["-112.1308617","35.7616025"],["-112.1310589","35.7430316"],["-112.1310348","35.7423443"],["-112.1311041","35.7327824"],["-112.1312096","35.7174353"],["-112.1312805","35.7131159"],["-112.131336","35.7122845"],["-112.1315764","35.7102154"],["-112.1330439","35.6993945"],["-112.1444274","35.6161183"],["-112.1455197","35.6087902"],["-112.1463465","35.6040853"],["-112.1468921","35.6016209"],["-112.1491508","35.5930845"],["-112.149402","35.5920312"],["-112.1500605","35.5894912"],["-112.1505998","35.5874707"],["-112.1530333","35.5783492"],["-112.153493","35.5766121"],["-112.1579877","35.5596536"],["-112.1594185","35.5542461"],["-112.1601136","35.5516572"],["-112.1607883","35.5490967"],["-112.1629171","35.5410553"],["-112.1641427","35.5370314"],["-112.1723689","35.5116795"],["-112.17271","35.5105465"],["-112.1729565","35.5096019"],["-112.173179","35.5086475"],["-112.1733417","35.5077581"],["-112.1734944","35.5065577"],["-112.1737321","35.5032242"],["-112.174682","35.4887497"],["-112.1748433","35.487738"],["-112.1749676","35.4871541"],["-112.1752396","35.4861303"],["-112.1771589","35.4793286"],["-112.1773439","35.4785968"],["-112.1774353","35.4781387"],["-112.1775012","35.4777097"],["-112.1775222","35.477245"],["-112.1775215","35.4768164"],["-112.1774828","35.476361"],["-112.1774019","35.4759101"],["-112.1773132","35.4754711"],["-112.1771545","35.474993"],["-112.1769455","35.4744747"],["-112.1749953","35.4706821"],["-112.1745043","35.4696743"],["-112.1739853","35.4685161"],["-112.1730819","35.4661655"],["-112.1723992","35.4640219"],["-112.170511","35.4574257"],["-112.1703709","35.4566874"],["-112.170355","35.4558865"],["-112.1703997","35.4551352"],["-112.1714766","35.4467781"],["-112.171637","35.4449155"],["-112.1716693","35.4437445"],["-112.1715964","35.4417866"],["-112.1715138","35.4398539"],["-112.171428","35.438298"],["-112.1693344","35.3997096"],["-112.1691677","35.3985651"],["-112.168942","35.3975774"],["-112.1685804","35.3964608"],["-112.1632173","35.3837305"],["-112.1621107","35.3811317"],["-112.1619578","35.3807437"],["-112.1618262","35.3802911"],["-112.1617342","35.3799164"],["-112.1616423","35.3794958"],["-112.1615631","35.3788074"],["-112.1615513","35.3782564"],["-112.1615883","35.3775571"],["-112.1616905","35.3769625"],["-112.1619183","35.3762132"],["-112.166748","35.3622882"],["-112.1668966","35.3617536"],["-112.1670219","35.3612555"],["-112.167116","35.3607576"],["-112.1671855","35.36029"],["-112.1672372","35.359793"],["-112.1672732","35.3592513"],["-112.1672938","35.3587096"],["-112.1672654","35.3580104"],["-112.1666952","35.3472808"],["-112.1665861","35.3459996"],["-112.1664694","35.3453616"],["-112.1663411","35.3449027"],["-112.166194","35.3444988"],["-112.1660094","35.3440765"],["-112.1657857","35.3436543"],["-112.1655509","35.3432509"],["-112.1602479","35.3362504"],["-112.1592579","35.3347974"],["-112.1585948","35.333571"],["-112.1523642","35.3212944"],["-112.1515763","35.3200079"],["-112.1504572","35.3184585"],["-112.1495672","35.3172243"],["-112.1491603","35.3165585"],["-112.1488614","35.3160391"],["-112.1483306","35.3149274"],["-112.1425067","35.3007595"],["-112.1420479","35.2995665"],["-112.1418658","35.2989581"],["-112.1417049","35.2983252"],["-112.1415826","35.2977106"],["-112.1414792","35.2970603"],["-112.1414135","35.2964834"],["-112.1413732","35.2952313"],["-112.1414004","35.2946268"],["-112.1414459","35.294049"],["-112.141536","35.2934492"],["-112.1416679","35.2928283"],["-112.1418179","35.2922706"],["-112.1420055","35.2916981"],["-112.1422394","35.29111"],["-112.142898","35.2897165"],["-112.145241","35.2847191"],["-112.1456509","35.2836341"],["-112.1499537","35.2667732"],["-112.1501699","35.2657686"],["-112.1502349","35.2651265"],["-112.1502423","35.2645074"],["-112.1502039","35.2636379"],["-112.1501881","35.263054"],["-112.1502538","35.2626087"],["-112.1503644","35.2622107"],["-112.1505645","35.2617185"],["-112.150886","35.261149"],["-112.1513007","35.2612733"],["-112.1518586","35.2614656"],["-112.1526685","35.2616733"],["-112.1536804","35.2618971"],["-112.1546681","35.2621407"],["-112.1555158","35.2623912"],["-112.1572918","35.262999"],["-112.1578474","35.2631679"],["-112.1594411","35.2635843"],["-112.1605407","35.263812"],["-112.1616729","35.2640108"],["-112.1628373","35.2641416"],["-112.1641923","35.2642323"],["-112.1661091","35.2642544"],["-112.1799798","35.2640529"],["-112.1809164","35.2639623"],["-112.1820225","35.2638124"],["-112.1831845","35.2635723"],["-112.1840577","35.2633483"],["-112.1847811","35.263118"],["-112.1854047","35.2628941"],["-112.1859808","35.2626554"],["-112.186566","35.2623971"],["-112.1939615","35.2587573"],["-112.1975287","35.2570037"],["-112.1992384","35.2561627"],["-112.2006906","35.2554445"],["-112.2017649","35.2548991"],["-112.2038875","35.2537775"],["-112.2058803","35.2524865"],["-112.2080264","35.2508709"],["-112.2094193","35.2497965"],["-112.2102241","35.2491536"],["-112.2129317","35.2469942"],["-112.2136286","35.2463987"],["-112.2143372","35.2457406"],["-112.2150742","35.2449827"],["-112.2154052","35.2445972"],["-112.2157841","35.2441307"],["-112.2163021","35.2434444"],["-112.2168584","35.2426386"],["-112.2182204","35.2408369"],["-112.2185118","35.240488"],["-112.2188598","35.2401366"],["-112.2192933","35.2397456"],["-112.2201015","35.2390452"],["-112.220645","35.2386757"],["-112.2215996","35.238085"],["-112.2228296","35.2374557"],["-112.2269236","35.2357323"],["-112.2275981","35.2354407"],["-112.2281601","35.235192"],["-112.2288688","35.2348151"],["-112.2295257","35.2344526"],["-112.2301925","35.2340325"],["-112.2309354","35.233532"],["-112.2316495","35.232997"],["-112.2324492","35.2323276"],["-112.233012","35.2318003"],["-112.2336576","35.2311422"],["-112.2343246","35.2303662"],["-112.2353273","35.2290464"],["-112.235929","35.228116"],["-112.2363611","35.2275236"],["-112.2366812","35.2271453"],["-112.2370958","35.2267208"],["-112.2375623","35.2263076"],["-112.2381017","35.2258949"],["-112.2386775","35.2255207"],["-112.239464","35.2250779"],["-112.2402211","35.2247573"],["-112.2409317","35.2245064"],["-112.2414774","35.2243391"],["-112.2421513","35.2241801"],["-112.2432759","35.2240177"],["-112.2445327","35.2239706"],["-112.2454757","35.2240266"],["-112.2467086","35.2242014"],["-112.2479894","35.2243959"],["-112.2491129","35.224536"],["-112.2499335","35.2245879"],["-112.2507218","35.2245662"],["-112.2515138","35.2244937"],["-112.2522966","35.2243586"],["-112.2530811","35.2241738"],["-112.2540254","35.2238657"],["-112.2556956","35.2232772"],["-112.2566803","35.2230139"],["-112.2575753","35.2228472"],["-112.2588653","35.2227081"],["-112.2646965","35.2223345"],["-112.2669238","35.2222422"],["-112.2681846","35.222255"],["-112.2694158","35.2222913"],["-112.2703309","35.2222994"],["-112.2711065","35.2222643"],["-112.272012","35.2221792"],["-112.2730314","35.2220236"],["-112.2740264","35.2218038"],["-112.2751206","35.2214834"],["-112.2760088","35.2211587"],["-112.277611","35.2205161"],["-112.278451","35.2201951"],["-112.2791187","35.2200005"],["-112.2797952","35.2198424"],["-112.280593","35.2196739"],["-112.2811852","35.2195864"],["-112.2818391","35.2195296"],["-112.2825595","35.2195082"],["-112.2834091","35.2195278"],["-112.284702","35.2196497"],["-112.2855451","35.2198015"],["-112.2866832","35.2200658"],["-112.288348","35.2206091"],["-112.2907468","35.2213852"],["-112.2924346","35.2218235"],["-112.2938737","35.2220478"],["-112.2952234","35.2220274"],["-112.2965364","35.2218789"],["-112.2976467","35.2216657"],["-112.2985726","35.221411"],["-112.2995282","35.2211038"],["-112.300304","35.2208343"],["-112.3012771","35.2205349"],["-112.3023524","35.2202567"],["-112.3037243","35.2200344"],["-112.3051385","35.2199588"],["-112.3062727","35.2199877"],["-112.3073055","35.2200883"],["-112.3090013","35.2203898"],["-112.3120231","35.2210508"],["-112.3155253","35.2218081"],["-112.3211","35.2229973"],["-112.3223224","35.2231922"],["-112.3233225","35.2232609"],["-112.3241013","35.2232958"],["-112.3249571","35.2232536"],["-112.3258556","35.2231802"],["-112.3268342","35.2230463"],["-112.3303537","35.2224456"],["-112.3317292","35.2221862"],["-112.332539","35.2219744"],["-112.3334511","35.2216694"],["-112.3346976","35.2211633"],["-112.3355582","35.2207343"],["-112.3359165","35.2205504"],["-112.3359648","35.2205256"],["-112.3363945","35.2203024"],["-112.336798","35.2200982"],["-112.3374154","35.2198049"],["-112.3381907","35.2194853"],["-112.3388913","35.2192372"],["-112.3395661","35.219029"],["-112.3404594","35.2188418"],["-112.3428328","35.2184333"],["-112.3455571","35.2179597"],["-112.3476198","35.2175592"],["-112.3486222","35.2172917"],["-112.3498603","35.2168491"],["-112.3513709","35.2162677"],["-112.3525663","35.215841"],["-112.3534761","35.2155576"],["-112.3541144","35.2154037"],["-112.3550733","35.2152232"],["-112.3557746","35.2151266"],["-112.3565456","35.2150384"],["-112.3573641","35.2149842"],["-112.3583323","35.2149642"],["-112.3591572","35.2149995"],["-112.360082","35.2150767"],["-112.3609942","35.215192"],["-112.3628383","35.2155734"],["-112.3688504","35.2169248"],["-112.3696543","35.2170495"],["-112.3706337","35.2171372"],["-112.371468","35.2171805"],["-112.3722542","35.2171583"],["-112.3732501","35.2170817"],["-112.3762296","35.2167266"],["-112.3798678","35.2163091"],["-112.3808343","35.2162288"],["-112.3876277","35.2159978"],["-112.3884655","35.2160002"],["-112.3890832","35.2160242"],["-112.3899295","35.2160914"],["-112.3908058","35.2162074"],["-112.3931589","35.2166206"],["-112.3940918","35.2167642"],["-112.3954111","35.2168371"],["-112.3964566","35.2168119"],["-112.3973308","35.2167431"],["-112.3979964","35.2166501"],["-112.3986496","35.2165297"],["-112.3992897","35.216393"],["-112.4000103","35.2162013"],["-112.400742","35.2159762"],["-112.4034084","35.2149169"],["-112.4050932","35.214257"],["-112.4061414","35.2139506"],["-112.407145","35.2137199"],["-112.4082232","35.2135593"],["-112.4092426","35.2134659"],["-112.4100343","35.213434"],["-112.4109508","35.2134613"],["-112.4132037","35.2136288"],["-112.4223972","35.2143982"],["-112.4236898","35.2144966"],["-112.4262665","35.2145995"],["-112.4286855","35.2146985"],["-112.4293838","35.2147664"],["-112.4301584","35.2148612"],["-112.4309946","35.214996"],["-112.4318111","35.2151625"],["-112.4328139","35.2154163"],["-112.4361199","35.216401"],["-112.4376857","35.2168817"],["-112.4388555","35.2172407"],["-112.4421934","35.2182373"],["-112.4476123","35.2194453"],["-112.4569302","35.2201562"],["-112.4596898","35.220358"],["-112.4610617","35.2205317"],["-112.4640081","35.221007"],["-112.4644658","35.2210735"],["-112.466191","35.2214039"],["-112.4673948","35.221616"],["-112.4682907","35.2217137"],["-112.4690782","35.2217684"],["-112.4698546","35.2217922"],["-112.4707717","35.2217719"],["-112.4718704","35.2216902"],["-112.4730124","35.2215305"],["-112.4745624","35.2211899"],["-112.4754383","35.2209455"],["-112.4761764","35.2207341"],["-112.478124","35.220199"],["-112.4801281","35.2197674"],["-112.4827763","35.219382"],["-112.4837758","35.2192859"],["-112.4852272","35.219204"],["-112.4868126","35.2191691"],["-112.4885395","35.2192406"],["-112.4902533","35.2193651"],["-112.4920494","35.2196128"],["-112.4937379","35.2199247"],["-112.4948995","35.2201324"],["-112.4978665","35.2205696"],["-112.4990527","35.2206864"],["-112.5012495","35.2208171"],["-112.5034587","35.2208959"],["-112.5227914","35.2211281"],["-112.5279506","35.2211247"],["-112.5415394","35.2211819"],["-112.5422258","35.221214"],["-112.5428442","35.2212685"],["-112.5438468","35.2214262"],["-112.5913013","35.2306171"],["-112.6487907","35.237375"],["-112.6515417","35.237823"],["-112.6571263","35.238981"],["-112.6604596","35.2397951"],["-112.6636372","35.2406507"],["-112.6677923","35.2419645"],["-112.6771371","35.2453504"],["-112.7119454","35.2581277"],["-112.7137076","35.2588159"],["-112.7151343","35.2594735"],["-112.7177913","35.2609302"],["-112.7199437","35.2622595"],["-112.7213902","35.2633223"],["-112.7224604","35.264164"],["-112.7270195","35.2681307"],["-112.7287092","35.269319"],["-112.7301592","35.2701507"],["-112.7311628","35.2706287"],["-112.7322574","35.271108"],["-112.7332856","35.2714629"],["-112.734421","35.2718021"],["-112.735414","35.2720677"],["-112.7369149","35.2723373"],["-112.7377836","35.2724546"],["-112.7389065","35.2725571"],["-112.7399548","35.272612"],["-112.7520673","35.2728302"],["-112.7538485","35.2728945"],["-112.7553252","35.2730072"],["-112.7567179","35.2731432"],["-112.7598101","35.2736035"],["-112.7618302","35.2740499"],["-112.813267","35.2886681"],["-112.815885","35.289496"],["-112.8183064","35.2903478"],["-112.8196095","35.2908504"],["-112.8212936","35.2915241"],["-112.8244227","35.2928974"],["-112.8261265","35.2937163"],["-112.8282852","35.2948319"],["-112.8303941","35.2959846"],["-112.847689","35.305869"],["-112.8551843","35.3101734"],["-112.8559703","35.3106205"],["-112.8571556","35.3113004"],["-112.8586843","35.3120982"],["-112.8606594","35.313036"],["-112.8624498","35.3137917"],["-112.8637949","35.3142983"],["-112.8652675","35.3147824"],["-112.8666391","35.315188"],["-112.8682508","35.3155974"],["-112.8710993","35.3161947"],["-112.9000568","35.3216588"],["-112.9113436","35.3228468"],["-112.9173231","35.323056"],["-112.9205578","35.3231298"],["-112.9249574","35.323027"],["-112.9345396","35.3223293"],["-112.9381633","35.3219147"],["-112.9473898","35.3204134"],["-112.9559257","35.3183977"],["-112.9607865","35.3170006"],["-112.9642118","35.3158633"],["-112.9943264","35.3053503"],["-112.9973784","35.3043256"],["-112.9985277","35.3039957"],["-112.9997661","35.3037"],["-113.0012188","35.3033833"],["-113.0028205","35.3030876"],["-113.0041514","35.3029002"],["-113.0052356","35.3027704"],["-113.0066006","35.302635"],["-113.0085336","35.3025302"],["-113.0115406","35.3024088"],["-113.0136172","35.3023004"],["-113.0146435","35.3021938"],["-113.0159354","35.3019959"],["-113.0171498","35.3017371"],["-113.0182333","35.301464"],["-113.0193395","35.3010951"],["-113.0204841","35.3006642"],["-113.0216175","35.3001323"],["-113.022841","35.299531"],["-113.0243553","35.2985228"],["-113.0287432","35.2953056"],["-113.0297202","35.2946193"],["-113.0303972","35.2942431"],["-113.031142","35.2938603"],["-113.0317819","35.2935721"],["-113.0324517","35.2933192"],["-113.0331343","35.2930908"],["-113.033873","35.2929106"],["-113.0347944","35.2927274"],["-113.0357953","35.2925812"],["-113.0365398","35.2925145"],["-113.0735112","35.2920378"],["-113.0752585","35.2919606"],["-113.0770654","35.2918148"],["-113.0788982","35.2915877"],["-113.0809577","35.2912486"],["-113.0822044","35.2909841"],["-113.0837598","35.2906127"],["-113.0856267","35.2901141"],["-113.086396","35.2898767"],["-113.0885687","35.2890972"],["-113.0901613","35.288452"],["-113.0937156","35.2868048"],["-113.0948445","35.2863453"],["-113.0960414","35.2860281"],["-113.0975315","35.2858277"],["-113.0989096","35.2858163"],["-113.0998393","35.2858882"],["-113.1086189","35.2875548"],["-113.1099835","35.2877027"],["-113.1113979","35.2877828"],["-113.1130049","35.2877379"],["-113.1146953","35.2875549"],["-113.116207","35.2872855"],["-113.1173865","35.2869853"],["-113.1183453","35.2866819"],["-113.119407","35.2862894"],["-113.1214895","35.2853523"],["-113.1225503","35.284774"],["-113.1237774","35.2840067"],["-113.1252286","35.2828769"],["-113.1262036","35.2819983"],["-113.1273781","35.2808918"],["-113.1286106","35.2798434"],["-113.1296457","35.2790917"],["-113.130454","35.2785761"],["-113.1308649","35.2783345"],["-113.1751411","35.2544329"],["-113.1867795","35.2481154"],["-113.1887413","35.2470474"],["-113.2092149","35.2360491"],["-113.2116255","35.2348384"],["-113.2130646","35.2342154"],["-113.2146018","35.2336305"],["-113.2349068","35.2266066"],["-113.2366542","35.2258657"],["-113.2384236","35.2250837"],["-113.2398281","35.2243873"],["-113.2643967","35.2109844"],["-113.2659704","35.2102371"],["-113.2669376","35.2098779"],["-113.2678996","35.2095806"],["-113.2690994","35.2092849"],["-113.2699576","35.2091273"],["-113.2708543","35.2090123"],["-113.2718569","35.208935"],["-113.2728293","35.2089029"],["-113.2737046","35.2089367"],["-113.2747478","35.2090192"],["-113.2783274","35.2094401"],["-113.2798459","35.2096046"],["-113.2810854","35.209686"],["-113.2823293","35.2097198"],["-113.2834429","35.2096977"],["-113.2845586","35.2096373"],["-113.2857178","35.2095385"],["-113.2868942","35.2093929"],["-113.2880847","35.2091834"],["-113.2890868","35.2089799"],["-113.2899575","35.2087714"],["-113.29093","35.2085053"],["-113.2919864","35.2081776"],["-113.2929709","35.2078373"],["-113.2938693","35.2074773"],["-113.2949425","35.2070074"],["-113.2961197","35.2064161"],["-113.2968748","35.2060114"],["-113.2980852","35.205292"],["-113.2990949","35.2046114"],["-113.3001767","35.2037919"],["-113.3017362","35.2025014"],["-113.3020415","35.2022014"],["-113.3026873","35.2014628"],["-113.3038391","35.2001571"],["-113.3074882","35.1959973"],["-113.309052","35.194261"],["-113.3099569","35.1934477"],["-113.3107044","35.1928739"],["-113.3115441","35.1923235"],["-113.3125457","35.1917468"],["-113.3137019","35.1912176"],["-113.3148932","35.1907757"],["-113.3160207","35.1904266"],["-113.3166778","35.1902493"],["-113.3172824","35.1901254"],["-113.3180023","35.1900034"],["-113.3188816","35.1898867"],["-113.3204388","35.1898053"],["-113.3222187","35.1898744"],["-113.3245497","35.1901932"],["-113.3283616","35.1908369"],["-113.330563","35.1910767"],["-113.3333906","35.1912521"],["-113.3383879","35.1912629"],["-113.3653248","35.1909973"],["-113.3654826","35.1909955"],["-113.3919872","35.1907211"],["-113.3950769","35.1908084"],["-113.3967191","35.1909392"],["-113.3979743","35.1911212"],["-113.3992827","35.1913572"],["-113.400531","35.1916364"],["-113.4018833","35.1920029"],["-113.4039644","35.1927122"],["-113.4083645","35.1944522"],["-113.4098202","35.1948846"],["-113.4106687","35.1949922"],["-113.411388","35.1950015"],["-113.4120629","35.1949652"],["-113.4133125","35.1947265"],["-113.4139814","35.1944827"],["-113.4146333","35.1941902"],["-113.4157231","35.1934859"],["-113.4190102","35.191078"],["-113.4199445","35.1905091"],["-113.4205035","35.1902401"],["-113.4211295","35.1900381"],["-113.4218887","35.1898664"],["-113.4226324","35.1897703"],["-113.4233092","35.1897387"],["-113.424267","35.1898051"],["-113.4261451","35.1900128"],["-113.4287099","35.1903199"],["-113.4305691","35.1905112"],["-113.4353207","35.1910075"],["-113.4366309","35.1910907"],["-113.4376794","35.1910484"],["-113.4387188","35.1909582"],["-113.4398248","35.1907671"],["-113.4407818","35.190547"],["-113.4416517","35.190249"],["-113.4424567","35.1899247"],["-113.449983","35.1866811"],["-113.4509711","35.186323"],["-113.4520832","35.1859598"],["-113.4533698","35.185583"],["-113.4546301","35.1852548"],["-113.456304","35.184919"],["-113.4579182","35.1846759"],["-113.4593637","35.1845075"],["-113.4614704","35.1843978"],["-113.4628355","35.1843727"],["-113.4652545","35.1844865"],["-113.4656941","35.1844922"],["-113.466419","35.1844631"],["-113.4667673","35.1844313"],["-113.4671936","35.1843708"],["-113.4678762","35.1842113"],["-113.4682342","35.1840894"],["-113.4686333","35.1839364"],["-113.4692697","35.1836435"],["-113.4698238","35.1833569"],["-113.4703303","35.1830873"],["-113.4718387","35.1823113"],["-113.4725243","35.1819846"],["-113.4731371","35.1817304"],["-113.4735078","35.181583"],["-113.4742159","35.1813202"],["-113.4760213","35.1807252"],["-113.4772639","35.1803904"],["-113.4788373","35.1800474"],["-113.4834863","35.1792138"],["-113.4849284","35.1790158"],["-113.486044","35.1789473"],["-113.4875578","35.1789617"],["-113.4921357","35.1790835"],["-113.4932693","35.1790307"],["-113.4941211","35.1789114"],["-113.494894","35.1787084"],["-113.4955573","35.1784459"],["-113.4965958","35.1778955"],["-113.4982663","35.1769273"],["-113.5000411","35.1759018"],["-113.5018003","35.1749164"],["-113.5025788","35.1745993"],["-113.5031815","35.1744335"],["-113.5038174","35.1743065"],["-113.5047117","35.1741526"],["-113.5057578","35.1739501"],["-113.5063998","35.1737599"],["-113.5070092","35.1735153"],["-113.5075691","35.1732237"],["-113.5089139","35.1724211"],["-113.5099308","35.1718757"],["-113.5105299","35.1716566"],["-113.5111014","35.1714811"],["-113.5117464","35.1713387"],["-113.5123642","35.1712506"],["-113.5129344","35.171197"],["-113.5135111","35.1711834"],["-113.5143804","35.1712243"],["-113.5153265","35.1713716"],["-113.5161365","35.1714983"],["-113.517019","35.171607"],["-113.517768","35.1716713"],["-113.5183884","35.1716818"],["-113.5189898","35.1716603"],["-113.5196099","35.171593"],["-113.5204291","35.1714711"],["-113.5215573","35.1711832"],["-113.5226078","35.1708035"],["-113.5237338","35.1702225"],["-113.5282585","35.1673819"],["-113.5296329","35.1666238"],["-113.5308417","35.1659846"],["-113.531674","35.1655279"],["-113.5324677","35.164971"],["-113.5344341","35.1634237"],["-113.535363","35.1628477"],["-113.535912","35.1625606"],["-113.5365176","35.1623157"],["-113.5373263","35.1620396"],["-113.538105","35.161833"],["-113.5387012","35.1617155"],["-113.5392628","35.1616421"],["-113.5398874","35.1616009"],["-113.5412725","35.1615733"],["-113.5433624","35.161535"],["-113.5441619","35.1614919"],["-113.5451369","35.1613937"],["-113.5463716","35.1612176"],["-113.5561586","35.1592572"],["-113.5573729","35.1590527"],["-113.5583461","35.1589495"],["-113.5593271","35.1588859"],["-113.5602754","35.1588452"],["-113.5614698","35.1588779"],["-113.5622789","35.1589413"],["-113.5632287","35.1590315"],["-113.5642403","35.1591829"],["-113.5654243","35.1594357"],["-113.5664125","35.1596722"],["-113.568204","35.1601601"],["-113.5709071","35.1608739"],["-113.5726762","35.1612995"],["-113.5751295","35.1617478"],["-113.5762684","35.1619168"],["-113.5776407","35.1620897"],["-113.579077","35.1622202"],["-113.580426","35.1623083"],["-113.5820015","35.162383"],["-113.5833933","35.1624"],["-113.5855434","35.1623423"],["-113.5892504","35.1620834"],["-113.6063931","35.160755"],["-113.6096036","35.1605878"],["-113.6137546","35.1604731"],["-113.6357396","35.1603203"],["-113.6363467","35.1603235"],["-113.6457406","35.1602845"],["-113.6476378","35.1603735"],["-113.6492259","35.1605245"],["-113.6518831","35.1609761"],["-113.6539029","35.1614273"],["-113.6561243","35.1618817"],["-113.657241","35.1620791"],["-113.6584628","35.1622406"],["-113.6602504","35.1624126"],["-113.6626386","35.1624914"],["-113.6643881","35.1624563"],["-113.6676617","35.1621954"],["-113.6940925","35.1594248"],["-113.6946002","35.1594041"],["-113.6950784","35.1593887"],["-113.6960788","35.1593737"],["-113.6976591","35.1594371"],["-113.6979687","35.1594606"],["-113.6986769","35.1595247"],["-113.7004186","35.1597575"],["-113.7740568","35.171308"],["-113.7772594","35.1719252"],["-113.7786594","35.1722635"],["-113.7802706","35.1727433"],["-113.7813616","35.1731184"],["-113.7828165","35.1736429"],["-113.784281","35.1742525"],["-113.8224131","35.1912687"],["-113.8245229","35.1920328"],["-113.8273072","35.192882"],["-113.8291036","35.1933156"],["-113.8328274","35.1939609"],["-113.8364742","35.1942765"],["-113.9018136","35.1977089"],["-113.9142279","35.1983943"],["-113.9158256","35.1985459"],["-113.9175608","35.1987939"],["-113.9191212","35.1990626"],["-113.9228206","35.1999105"],["-113.9913172","35.2165277"],["-113.9929078","35.2168333"],["-113.9949167","35.2171265"],["-113.9969002","35.2173577"],["-113.9980329","35.2174442"],["-113.9994117","35.2175171"],["-114.002941","35.217482"],["-114.009356","35.2173749"],["-114.0102642","35.2173542"],["-114.0228974","35.2171433"],["-114.0255018","35.2172351"],["-114.0265182","35.2173022"],["-114.0286932","35.2174394"],["-114.0303949","35.2175374"],["-114.0320786","35.2176035"],["-114.0335371","35.2175497"],["-114.0349799","35.2174444"],["-114.0365582","35.2172538"],["-114.0375053","35.217099"],["-114.0436113","35.2158021"],["-114.0452824","35.2153886"],["-114.046856","35.2149312"],["-114.0486398","35.2143544"],["-114.0510689","35.2133965"],["-114.0538339","35.2121198"],["-114.0550725","35.2114549"],["-114.0563035","35.2106904"],["-114.0575006","35.2098427"],["-114.0586109","35.2089273"],["-114.0597164","35.2078799"],["-114.0643864","35.20271"],["-114.0651443","35.2018526"],["-114.0658566","35.2009675"],["-114.0664008","35.2000214"],["-114.0667896","35.198954"],["-114.0670157","35.1980168"],["-114.0670591","35.1971727"],["-114.0671228","35.1961805"],["-114.0672978","35.1947235"],["-114.0678216","35.1915829"],["-114.0678928","35.1914409"],["-114.0679277","35.1913481"],["-114.0679727","35.191282"],["-114.0680232","35.1912459"],["-114.0680799","35.1912147"],["-114.0681306","35.1911962"],["-114.0682165","35.1911827"],["-114.0684497","35.1911829"],["-114.0685645","35.1911821"],["-114.0685914","35.1911839"],["-114.0689053","35.1912806"],["-114.069615","35.1915692"],["-114.0699883","35.1917653"],["-114.0702119","35.1919006"],["-114.0707188","35.1922458"],["-114.0712296","35.1926682"],["-114.0724789","35.1937838"],["-114.0740798","35.1951948"],["-114.0761261","35.1970447"],["-114.0768176","35.1976455"],["-114.0773344","35.198111"],["-114.0774676","35.1982798"],["-114.0781707","35.1988905"],["-114.0791449","35.1996635"],["-114.0809663","35.2009481"],["-114.0811785","35.201088"],["-114.0814243","35.2012481"],["-114.0816222","35.2013692"],["-114.0817992","35.2014655"],["-114.0822984","35.2017053"],["-114.0826891","35.2018633"],["-114.0830642","35.201999"],["-114.0835127","35.2021442"],["-114.0851014","35.2026392"],["-114.0858157","35.2029482"],["-114.0867768","35.2033921"],["-114.0876648","35.2037784"],["-114.0889492","35.2042113"],["-114.0953888","35.2062255"],["-114.096437","35.2065638"],["-114.097252","35.20686"],["-114.0989458","35.2075388"],["-114.1000158","35.2079314"],["-114.1042171","35.2093596"],["-114.1107817","35.2119675"],["-114.1118241","35.2124924"],["-114.11258","35.212941"],["-114.1130707","35.2132751"],["-114.1135402","35.2136677"],["-114.1160067","35.2162526"],["-114.1163044","35.2165128"],["-114.1175291","35.2174034"],["-114.1177609","35.2175527"],["-114.1179846","35.2176813"],["-114.1192078","35.2182857"],["-114.1210887","35.2191912"],["-114.1230098","35.2201482"],["-114.1234453","35.2203543"],["-114.1237501","35.2204988"],["-114.1241969","35.2207399"],["-114.1248264","35.2210942"],["-114.1254718","35.2214627"],["-114.1255161","35.2214902"],["-114.1266105","35.2222022"],["-114.1279529","35.2231875"],["-114.1334737","35.2273496"],["-114.134168","35.2279522"],["-114.1346303","35.2284507"],["-114.135108","35.2290296"],["-114.1357957","35.2300485"],["-114.1361397","35.230639"],["-114.1366401","35.2315135"],["-114.1370206","35.2321177"],["-114.1376808","35.233097"],["-114.1384241","35.2339911"],["-114.1389008","35.2345311"],["-114.1404922","35.2359789"],["-114.1421637","35.2374684"],["-114.1435403","35.2386537"],["-114.1444071","35.2394098"],["-114.1453266","35.2402934"],["-114.1467241","35.2418307"],["-114.1476231","35.2429671"],["-114.1501917","35.2465182"],["-114.1521597","35.2492433"],["-114.1893045","35.3004043"],["-114.1929756","35.3054611"],["-114.2027629","35.3189611"],["-114.2030234","35.3193282"],["-114.3325976","35.501258"],["-114.403601","35.6038242"],["-114.4050009","35.6056629"],["-114.4064023","35.6069852"],["-114.4081306","35.6082288"],["-114.4107869","35.6101031"],["-114.4114685","35.610649"],["-114.4120967","35.6112868"],["-114.4137519","35.6133945"],["-114.4338759","35.6403809"],["-114.4364985","35.6439279"],["-114.4484235","35.6598888"],["-114.4496057","35.6613489"],["-114.4511742","35.6628093"],["-114.4537919","35.664569"],["-114.4547542","35.6652891"],["-114.4555324","35.6659729"],["-114.456551","35.6670166"],["-114.4572139","35.6678428"],["-114.4649988","35.678691"],["-114.4666023","35.6813639"],["-114.4673582","35.682893"],["-114.4677675","35.6838158"],["-114.4680633","35.6845507"],["-114.4683061","35.6852489"],["-114.4685615","35.6859529"],["-114.468927","35.6872699"],["-114.4692121","35.6884417"],["-114.4694964","35.6896726"],["-114.4698419","35.6910207"],["-114.4702813","35.6921956"],["-114.4711332","35.6938864"],["-114.5153439","35.7757328"],["-114.5179194","35.7803594"],["-114.5195504","35.782855"],["-114.5203571","35.7839845"],["-114.5215115","35.785451"],["-114.5725534","35.8426476"],["-114.5733159","35.8433541"],["-114.574206","35.8440212"],["-114.575197","35.8446125"],["-114.5762747","35.8451156"],["-114.5779397","35.8456904"],["-114.5867408","35.8486237"],["-114.5879275","35.8491311"],["-114.5889817","35.8497362"],["-114.590403","35.8506951"],["-114.5910896","35.8511847"],["-114.5914637","35.8515228"],["-114.591792","35.8518867"],["-114.5920823","35.85229"],["-114.5931275","35.8542333"],["-114.594068","35.8559837"],["-114.5945127","35.8567536"],["-114.5948056","35.8571149"],["-114.5951458","35.857444"],["-114.5955317","35.8577424"],["-114.5965604","35.8583521"],["-114.5978913","35.8591433"],["-114.5993157","35.8601402"],["-114.6004867","35.8611883"],["-114.6013828","35.8621963"],["-114.6019535","35.8629338"],["-114.6097759","35.8734556"],["-114.6133531","35.8782715"],["-114.6158635","35.8816693"],["-114.6164129","35.8824114"],["-114.6182671","35.8849045"],["-114.622898","35.8912033"],["-114.6239994","35.8927299"],["-114.6244013","35.8933697"],["-114.6247265","35.8939972"],["-114.6250523","35.8947137"],["-114.6253384","35.8954303"],["-114.6256462","35.8964002"],["-114.6259471","35.8977684"],["-114.628645","35.9121511"],["-114.6293135","35.9150699"],["-114.62957","35.9159585"],["-114.630175","35.9177665"],["-114.6339441","35.9281827"],["-114.6348174","35.9302999"],["-114.6354634","35.9315811"],["-114.6360852","35.9327374"],["-114.6460526","35.9479796"],["-114.6464761","35.9485653"],["-114.6470062","35.9492426"],["-114.647817","35.9501403"],["-114.6487988","35.9510766"],["-114.649549","35.9517044"],["-114.650192","35.9521891"],["-114.6509476","35.9527064"],["-114.6615628","35.9594624"],["-114.6659269","35.9622329"],["-114.6737159","35.9671584"],["-114.6749104","35.9678683"],["-114.6759187","35.9683696"],["-114.6769895","35.9687803"],["-114.6776935","35.9690161"],["-114.6860024","35.9714951"],["-114.6865113","35.9716692"],["-114.6869078","35.9718246"],["-114.6872949","35.9719961"],["-114.6876928","35.972189"],["-114.6884084","35.972589"],["-114.6899229","35.9736213"],["-114.6908848","35.9741972"],["-114.6938309","35.975568"],["-114.6947358","35.9760802"],["-114.695677","35.9767835"],["-114.6964608","35.9775842"],["-114.69735","35.97856"],["-114.6980055","35.9792383"],["-114.6985687","35.9797024"],["-114.6991275","35.9800509"],["-114.6996091","35.9803215"],["-114.7049946","35.9828941"],["-114.7063429","35.98348"],["-114.7083736","35.9841762"],["-114.7098852","35.984634"],["-114.7108319","35.9849237"],["-114.7112768","35.9850861"],["-114.7117383","35.9852827"],["-114.7121933","35.9855191"],["-114.7130893","35.9860785"],["-114.7136316","35.9865425"],["-114.7141832","35.9871118"],["-114.714705","35.9878118"],["-114.7158654","35.9898473"],["-114.7202536","35.9977639"],["-114.7206097","35.9984672"],["-114.7216116","36.0006365"],["-114.721915","36.001264"],["-114.7221643","36.0017316"],["-114.7224621","36.0022531"],["-114.7227875","36.0027911"],["-114.7234797","36.0038069"],["-114.7238612","36.0043135"],["-114.724455","36.0050356"],["-114.7253673","36.0060787"],["-114.7263157","36.0070666"],["-114.7267563","36.0074551"],["-114.7271694","36.0077932"],["-114.7277367","36.0081919"],["-114.7280745","36.0083935"],["-114.728408","36.008584"],["-114.7286688","36.0087219"],["-114.7289151","36.0088461"],["-114.7292493","36.0090023"],["-114.7295824","36.0091392"],["-114.7299436","36.0092723"],["-114.7302939","36.0093904"],["-114.7310027","36.0095938"],["-114.7313877","36.0096838"],["-114.7321504","36.009813"],["-114.7349106","36.0101719"],["-114.735546","36.0102679"],["-114.7363511","36.0104343"],["-114.736751","36.0105391"],["-114.7371471","36.0106622"],["-114.7375656","36.010813"],["-114.7382361","36.0111028"],["-114.7446311","36.0141025"],["-114.7458763","36.0145677"],["-114.7463816","36.0147428"],["-114.7468421","36.0148864"],["-114.7472971","36.015012"],["-114.7479392","36.0151454"],["-114.7485096","36.0152474"],["-114.7490749","36.0153263"],["-114.7501104","36.0154077"],["-114.7507132","36.0154288"],["-114.7513981","36.0154355"],["-114.751996","36.0154099"],["-114.7523579","36.0153828"],["-114.7533526","36.0152639"],["-114.7540322","36.0151407"],["-114.7548443","36.0149466"],["-114.7553133","36.0148199"],["-114.7561653","36.0145517"],["-114.7569089","36.0142645"],["-114.7573804","36.0140531"],["-114.7578925","36.0137994"],["-114.7584144","36.0135089"],["-114.7589286","36.0132013"],["-114.7593471","36.0129257"],["-114.7616887","36.0111828"],["-114.7620839","36.0108951"],["-114.7623572","36.0107317"],["-114.7626624","36.0105695"],["-114.7630201","36.0104085"],["-114.7633877","36.0102714"],["-114.7637592","36.0101556"],["-114.7641309","36.0100627"],["-114.7645361","36.0099844"],["-114.7650268","36.0099308"],["-114.7653915","36.0099018"],["-114.7661344","36.0099227"],["-114.7665024","36.0099474"],["-114.7668178","36.0100027"],["-114.7671078","36.0100707"],["-114.7674892","36.0101824"],["-114.7693117","36.010846"],["-114.7699803","36.0110759"],["-114.7704492","36.0112097"],["-114.7709203","36.0113176"],["-114.7714622","36.0114"],["-114.771964","36.0114665"],["-114.7723951","36.0114974"],["-114.7727866","36.0115113"],["-114.7731654","36.011504"],["-114.7735141","36.0114853"],["-114.7742012","36.0114207"],["-114.77465","36.011357"],["-114.7748767","36.0113157"],["-114.7752274","36.0112417"],["-114.7756111","36.0111403"],["-114.7762644","36.0109338"],["-114.7765777","36.0108176"],["-114.7768936","36.01068"],["-114.7772268","36.0105196"],["-114.7776463","36.0102656"],["-114.7785493","36.0096375"],["-114.77901","36.0093055"],["-114.7793351","36.0090342"],["-114.7796528","36.0086671"],["-114.781451","36.0061172"],["-114.7818729","36.0055703"],["-114.7821466","36.0053222"],["-114.7827487","36.0048592"],["-114.7831143","36.0045912"],["-114.7834269","36.0043732"],["-114.7836683","36.0042341"],["-114.7840069","36.0040595"],["-114.7845076","36.0038445"],["-114.7851639","36.0036022"],["-114.7859263","36.0034238"],["-114.7864717","36.0033341"],["-114.7872638","36.0032931"],["-114.7895895","36.0032816"],["-114.7913283","36.0032836"],["-114.7918228","36.0032563"],["-114.7922968","36.0031829"],["-114.7927324","36.0031033"],["-114.7931076","36.0030072"],["-114.7934659","36.0028902"],["-114.7939145","36.0027117"],["-114.7948713","36.0022923"],["-114.7952665","36.0020821"],["-114.7957121","36.0017821"],["-114.7961148","36.0014083"],["-114.7964074","36.0011085"],["-114.7967196","36.0007354"],["-114.7972242","36.0000713"],["-114.7977319","35.9993789"],["-114.79867","35.9980385"],["-114.7988097","35.9978291"],["-114.7989166","35.9976381"],["-114.79902","35.9974471"],["-114.7991273","35.9972411"],["-114.7992923","35.9968901"],["-114.7995194","35.9963355"],["-114.7996624","35.9959397"],["-114.7997994","35.9955153"],["-114.7998833","35.9951401"],["-114.7999295","35.9947101"],["-114.7999574","35.9938837"],["-114.7999289","35.9932279"],["-114.7998826","35.992832"],["-114.7998042","35.9924751"],["-114.7996566","35.9919949"],["-114.7995794","35.9917606"],["-114.7993589","35.9911679"],["-114.7992386","35.9909158"],["-114.7990223","35.9905574"],["-114.7984409","35.9896732"],["-114.797333","35.9881003"],["-114.7956923","35.9855472"],["-114.793819","35.9825682"],["-114.7935726","35.9821938"],["-114.7934882","35.9820452"],["-114.7933934","35.9818603"],["-114.7932394","35.9815304"],["-114.7928079","35.9804453"],["-114.792546","35.9795505"],["-114.79242","35.9786202"],["-114.7923778","35.9778162"],["-114.7924017","35.9769511"],["-114.7926813","35.9756558"],["-114.7930728","35.9745954"],["-114.7937851","35.9730919"],["-114.8001802","35.9606738"],["-114.8042486","35.9528032"],["-114.8059829","35.9493427"],["-114.8100015","35.9417119"],["-114.8105863","35.9407674"],["-114.8113286","35.9397461"],["-114.8124248","35.9386191"],["-114.8132131","35.9379668"],["-114.8143626","35.9371531"],["-114.8155456","35.936495"],["-114.8168296","35.9358759"],["-114.8184853","35.9353651"],["-114.8199121","35.9350226"],["-114.8214822","35.9347872"],["-114.8234221","35.9346808"],["-114.8538474","35.9340805"],["-114.8552797","35.9341241"],["-114.8568284","35.9342146"],["-114.8587369","35.9344203"],["-114.8607611","35.9347366"],["-114.8626615","35.9351492"],["-114.8638468","35.9354393"],["-114.8653991","35.9358913"],["-114.8674853","35.9366239"],["-114.8693717","35.9373973"],["-114.8719626","35.9385494"],["-114.9010338","35.951891"],["-114.9028472","35.9527428"],["-114.9033622","35.9530155"],["-114.9038922","35.9533059"],["-114.9043212","35.9535429"],["-114.9048328","35.9538365"],["-114.9051818","35.9540589"],["-114.9059946","35.954624"],["-114.906955","35.95534"],["-114.9071785","35.9555312"],["-114.9074817","35.9558072"],["-114.9079337","35.9562512"],["-114.9087459","35.957106"],["-114.9090433","35.9574917"],["-114.9093398","35.9579114"],["-114.9098151","35.9586502"],["-114.9102397","35.9593702"],["-114.9105148","35.9599256"],["-114.9107369","35.960431"],["-114.9109557","35.960977"],["-114.9112559","35.9619431"],["-114.9117625","35.963809"],["-114.9141941","35.9733204"],["-114.9148543","35.9757544"],["-114.9151673","35.9766736"],["-114.9154217","35.9773201"],["-114.915708","35.977956"],["-114.9164462","35.979418"],["-114.9171846","35.9806806"],["-114.9181759","35.9821106"],["-114.9190319","35.9832133"],["-114.9195414","35.9838138"],["-114.9200994","35.9844372"],["-114.92083","35.9851998"],["-114.9213805","35.9857375"],["-114.923039","35.9872334"],["-114.9285758","35.9921442"],["-114.9305559","35.9937404"],["-114.9311472","35.9941386"],["-114.9321893","35.9946976"],["-114.9329302","35.9950678"],["-114.9389705","35.9975187"],["-114.9409881","35.9983497"],["-114.9423176","35.9988252"],["-114.9435323","35.9991894"],["-114.9446104","35.9994711"],["-114.9455912","35.999674"],["-114.946556","35.9998343"],["-114.9474882","35.9999507"],["-114.9484744","36.0000383"],["-114.9493887","36.0000826"],["-114.9503776","36.0001015"],["-114.9556856","36.000085"],["-114.9625189","36.0000836"],["-114.9705949","36.0000641"],["-114.9717723","36.0001163"],["-114.9726161","36.0001998"],["-114.9735624","36.000311"],["-114.9744954","36.0004635"],["-114.9753767","36.0006395"],["-114.9762782","36.0008524"],["-114.9770077","36.0010548"],["-114.977605","36.0012403"],["-114.9785928","36.001583"],["-114.9802048","36.002231"],["-114.9817907","36.003033"],["-114.9825228","36.0034621"],["-114.9832963","36.0039774"],["-114.984087","36.0045775"],["-114.9849034","36.0052268"],["-114.9856343","36.0058886"],["-114.9862668","36.0065249"],["-114.9868939","36.0071845"],["-114.9877794","36.0082973"],["-114.9881341","36.008832"],["-114.9887877","36.0099106"],["-114.990367","36.0125785"],["-114.9908778","36.0132997"],["-114.9912901","36.0137923"],["-114.9918855","36.0143861"],["-115.0096622","36.0293876"],["-115.0119977","36.0315388"],["-115.0156397","36.0349266"],["-115.0171363","36.0363245"],["-115.0190509","36.0381407"],["-115.019431","36.0385411"],["-115.0196893","36.0388325"],["-115.0199135","36.0391258"],["-115.0201164","36.0394213"],["-115.0202747","36.0396885"],["-115.0205409","36.0401995"],["-115.0209409","36.0411629"],["-115.0217134","36.0436033"],["-115.0231708","36.0479895"],["-115.0235556","36.0488869"],["-115.0239113","36.0496688"],["-115.0270368","36.0557949"],["-115.0282212","36.0579337"],["-115.0386015","36.0749857"],["-115.039285","36.0760553"],["-115.0396124","36.0765145"],["-115.0397657","36.076715"],["-115.0400964","36.0771468"],["-115.0410419","36.0781613"],["-115.041868","36.0789152"],["-115.0426348","36.0794874"],["-115.0431599","36.0798555"],["-115.0434992","36.0800742"],["-115.0438915","36.0803124"],["-115.0529325","36.0850539"],["-115.055422","36.0863403"],["-115.0563257","36.0867407"],["-115.0572778","36.0870971"],["-115.0582875","36.0873973"],["-115.0592198","36.0876077"],["-115.060753","36.0878368"],["-115.06477","36.0882966"],["-115.0653522","36.0883861"],["-115.0658287","36.0884795"],["-115.0666736","36.0886845"],["-115.0670956","36.088809"],["-115.0675103","36.0889493"],["-115.0681131","36.0892216"],["-115.068562","36.0894429"],["-115.0694155","36.0899294"],["-115.076989","36.0945625"],["-115.0778754","36.0951978"],["-115.0783661","36.0955858"],["-115.0786819","36.0958713"],["-115.0789159","36.0961069"],["-115.0791758","36.0963798"],["-115.0797192","36.0970316"],["-115.0803752","36.0978884"],["-115.0808045","36.0984901"],["-115.0811127","36.0990087"],["-115.0814566","36.0997819"],["-115.0817832","36.1007377"],["-115.0819625","36.1014103"],["-115.0820836","36.102079"],["-115.0821356","36.1028349"],["-115.0824329","36.1112761"],["-115.0826605","36.1150517"],["-115.0827312","36.1160609"],["-115.0827498","36.1171202"],["-115.0827444","36.1181545"],["-115.0827468","36.1188561"],["-115.0828008","36.1193891"],["-115.0829624","36.1204464"],["-115.0830655","36.1209637"],["-115.0832656","36.1217137"],["-115.0833631","36.1220072"],["-115.0837722","36.12286"],["-115.0841142","36.1234604"],["-115.0844063","36.1239131"],["-115.0847118","36.1243352"],["-115.0851909","36.12492"],["-115.0861372","36.1259725"],["-115.0869904","36.1269375"],["-115.0876566","36.1278256"],["-115.0881686","36.1286191"],["-115.08864","36.1294749"],["-115.0888912","36.1300177"],["-115.0890342","36.1303212"],["-115.0892098","36.1308111"],["-115.0894268","36.1315032"],["-115.0896689","36.1325974"],["-115.0900765","36.1348283"],["-115.0907205","36.1393024"],["-115.0910522","36.141824"],["-115.0911543","36.1439532"],["-115.0913536","36.1522401"],["-115.0915512","36.1591306"],["-115.0915664","36.1597832"],["-115.0916259","36.1602873"],["-115.0917065","36.1607543"],["-115.0918222","36.1612272"],["-115.0920287","36.161777"],["-115.092268","36.1622818"],["-115.0925667","36.1628083"],["-115.092936","36.1633658"],["-115.0932128","36.1637057"],["-115.0934905","36.1640203"],["-115.0940683","36.1645903"],["-115.0946285","36.1650553"],["-115.0950559","36.1653679"],["-115.0954805","36.1656449"],["-115.0964707","36.1661907"],["-115.09693","36.1663932"],["-115.0973486","36.1665662"],["-115.0979587","36.166776"],["-115.0986503","36.1669656"],["-115.0999313","36.1672611"],["-115.1009324","36.1674355"],["-115.1018235","36.1675558"],["-115.1024056","36.1676134"],["-115.1030051","36.1676559"],["-115.1090834","36.1678582"],["-115.1153996","36.1679962"],["-115.1202368","36.1679743"],["-115.120935","36.1679725"],["-115.122642","36.1679651"],["-115.1231038","36.1679802"],["-115.1234619","36.168002"],["-115.1238598","36.1680403"],["-115.124418","36.1681301"],["-115.1247997","36.1682061"],["-115.1254059","36.1683445"],["-115.1261987","36.1685733"],["-115.1265547","36.1686921"],["-115.1268916","36.1688248"],["-115.1271437","36.1689277"],["-115.1274907","36.1690791"],["-115.1326779","36.1715703"],["-115.1360165","36.1733431"],["-115.1372944","36.1739097"],["-115.1375571","36.1740165"],["-115.1377432","36.1740584"],["-115.1381872","36.17339"],["-115.1385632","36.1726866"],["-115.1391424","36.1717126"]] } }; const coordinates_1_1 = geojson_1_1.geometry.coordinates; for (const coord of coordinates_1_1) { bounds_1.extend(coord); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_1', type: 'line', source: { type: 'geojson', data: geojson_1_1 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#522A7A', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); var boundsSouthWest = bounds_1.getSouthWest(); var boundsNorthEast = bounds_1.getNorthEast(); initialMapBounds[1] = new mapboxgl.LngLatBounds(boundsSouthWest, boundsNorthEast); const visibleMapRoutes_1 = []; contentMaps[1].on('click', (e) => { if (!clickWasOnMarkerOrCard) { resetMarkersAndCards(1); } else { clickWasOnMarkerOrCard = false; } }); } var mapScriptCreated = 0; var mapCssCreated = 0; var mapScriptLoaded = 0; var mapCssLoaded = 0; var mapLoadList = []; function showLazyMap(fname) { if (mapScriptLoaded == 1 && mapCssLoaded == 1) { if (!mapLoadList.includes(fname)) { window[fname](); mapLoadList.push(fname); } } } (function fn() { var pics = document.querySelectorAll('.no-js-hide'); pics.forEach(function(pic) { pic.classList.toggle('no-js-hide'); }); var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); if ("IntersectionObserver" in window) { const config = { root: null, rootMargin: '1000px', threshold: 0 }; let lazyImageObserver = new IntersectionObserver(function(entries, observer) { entries.forEach(function(entry) { if (entry.isIntersecting) { let lazyImage = entry.target; if (lazyImage.dataset.src) {lazyImage.src = lazyImage.dataset.src;} if (lazyImage.dataset.srcset) {lazyImage.srcset = lazyImage.dataset.srcset;} if (lazyImage.dataset.map) { const fname = "initMapbox_"+lazyImage.dataset.map; if (mapScriptLoaded == 0) { let script = document.createElement('script'); script.async=true; script.defer=true; script.src = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.js"; script.onload = function(){ mapScriptLoaded = 1; showLazyMap(fname); } document.head.appendChild(script); mapScriptCreated = 1; let css = document.createElement('link'); css.rel = "stylesheet"; css.href = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.css"; css.onload = function(){ mapCssLoaded = 1; showLazyMap(fname); } document.head.appendChild(css); mapCssCreated = 1; } else { if (typeof window[fname] === 'function') { window[fname](); } showLazyMap(fname); } } lazyImage.classList.remove("no-js-hide"); lazyImage.classList.remove("lazeeload"); lazyImageObserver.unobserve(lazyImage); } }); }, config); lazyImages.forEach(function(lazyImage) { lazyImageObserver.observe(lazyImage); lazyImage.classList.add("lazeeload-activated"); }); } else { let active = false; const lazyLoad = function() { if (active === false) { active = true; setTimeout(function() { lazyImages.forEach(function(lazyImage) { if ((lazyImage.getBoundingClientRect().top <= window.innerHeight+1000 && lazyImage.getBoundingClientRect().bottom >= 0) && getComputedStyle(lazyImage).display !== "none") { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; if (lazyImage.dataset.onload) lazyImage.onload = lazyImage.dataset.onload; lazyImage.classList.remove("lazeeload"); lazyImages = lazyImages.filter(function(image) { return image !== lazyImage; }); if (lazyImages.length === 0) { document.removeEventListener("scroll", lazyLoad); window.removeEventListener("resize", lazyLoad); window.removeEventListener("orientationchange", lazyLoad); } } }); active = false; }, 200); } }; document.addEventListener("scroll", lazyLoad); window.addEventListener("resize", lazyLoad); window.addEventListener("orientationchange", lazyLoad); } var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); i=1; lazyImages.forEach(function(lazyImage) { if (!(lazyImage.classList.contains("lazeeload-activated"))) { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; lazyImage.classList.remove("lazeeload"); } }); })();