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: [-116.70201994657073, 33.21890640522551], 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'] = [-117.157953, 32.716568]; 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'] = [-116.539972, 33.832528]; 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'] = [ -117.14481621778907, 33.492975809144106]; 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'] = `Temecula Route`; markerData[1][2]['popupText'] = `160 miles (3 hours)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ -116.85561298558657, 33.468583213548534]; 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'] = `Julian Route`; markerData[1][3]['popupText'] = `260 miles (6 hours)`; markerData[1][3]['route'] = false; markerData[1][3]['card'] = false; const geojson_1_0 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-117.1568831","32.7168038"],["-117.1547119","32.7168118"],["-117.1547345","32.7198782"],["-117.1546329","32.720643"],["-117.1545605","32.7215671"],["-117.1545402","32.7218633"],["-117.1545014","32.7223549"],["-117.1545043","32.7225054"],["-117.1545182","32.7226285"],["-117.1545452","32.7227734"],["-117.1545975","32.7229473"],["-117.1546977","32.7231859"],["-117.1547932","32.7233578"],["-117.1549111","32.7235192"],["-117.1550089","32.72364"],["-117.1551214","32.7237544"],["-117.1553406","32.7239437"],["-117.1556138","32.7241069"],["-117.1558908","32.7242459"],["-117.1560336","32.7243041"],["-117.1562367","32.7243656"],["-117.1564425","32.7243945"],["-117.1565874","32.7244022"],["-117.1567175","32.7243914"],["-117.1568743","32.7243678"],["-117.157048","32.7243212"],["-117.1574246","32.7241509"],["-117.157834","32.7239705"],["-117.1586321","32.7236207"],["-117.159916","32.7230546"],["-117.1602517","32.7229617"],["-117.1613334","32.7227608"],["-117.1616297","32.7227657"],["-117.161952","32.7228043"],["-117.1622194","32.7228469"],["-117.1624425","32.72289"],["-117.162766","32.7229889"],["-117.1637783","32.7234003"],["-117.1641236","32.7236378"],["-117.1644604","32.7239037"],["-117.1649785","32.7244175"],["-117.1659871","32.7254889"],["-117.1664977","32.7260313"],["-117.1692925","32.7291598"],["-117.1696007","32.7294977"],["-117.169998","32.7299442"],["-117.1706221","32.7306497"],["-117.1712924","32.7313898"],["-117.1715178","32.7316673"],["-117.1727415","32.7330851"],["-117.1793508","32.740631"],["-117.1797756","32.7410457"],["-117.1801586","32.7413619"],["-117.180664","32.7417054"],["-117.1817154","32.7422161"],["-117.1868781","32.7446635"],["-117.1910032","32.746553"],["-117.192416","32.7472093"],["-117.1931492","32.7476049"],["-117.193748","32.7480046"],["-117.1946134","32.7486437"],["-117.1954417","32.7493681"],["-117.196244","32.7502205"],["-117.1971889","32.751292"],["-117.1981294","32.7523364"],["-117.1984852","32.7526672"],["-117.1988744","32.7529805"],["-117.2010767","32.7545774"],["-117.2014952","32.7548851"],["-117.2017983","32.7551309"],["-117.202013","32.7553212"],["-117.2023971","32.7557283"],["-117.202598","32.7559774"],["-117.202744","32.7561953"],["-117.2028914","32.7564294"],["-117.203028","32.7566837"],["-117.2031596","32.7569597"],["-117.2033495","32.7575467"],["-117.2034503","32.7579892"],["-117.2035866","32.7586188"],["-117.2061749","32.7686464"],["-117.2065782","32.7701641"],["-117.2067371","32.7708052"],["-117.2068865","32.771346"],["-117.2082736","32.7769689"],["-117.2084087","32.7776314"],["-117.2084362","32.778032"],["-117.2084468","32.7784726"],["-117.2084192","32.7790453"],["-117.2079619","32.7815963"],["-117.2070413","32.7867833"],["-117.206923","32.7876637"],["-117.2068768","32.7883054"],["-117.2068717","32.789264"],["-117.2069365","32.7901673"],["-117.207024","32.7909152"],["-117.207134","32.7915034"],["-117.2073324","32.7923319"],["-117.2076086","32.793286"],["-117.208215","32.7948834"],["-117.2086441","32.7956731"],["-117.2099764","32.7978593"],["-117.2110532","32.7997361"],["-117.2122157","32.8018921"],["-117.2129276","32.803102"],["-117.2134613","32.8038922"],["-117.2140188","32.8046679"],["-117.2147578","32.8056439"],["-117.2171853","32.8085393"],["-117.2183446","32.8099975"],["-117.2200714","32.8122295"],["-117.2214765","32.814139"],["-117.2234762","32.816619"],["-117.2247255","32.8180072"],["-117.2297881","32.8229455"],["-117.2305159","32.8236442"],["-117.2310162","32.8242228"],["-117.2314221","32.8247977"],["-117.2316408","32.825154"],["-117.2318573","32.8255576"],["-117.2320646","32.826006"],["-117.2322202","32.8264318"],["-117.232461","32.8272956"],["-117.2325254","32.8276654"],["-117.2325819","32.828291"],["-117.2326298","32.8312027"],["-117.2326518","32.8328017"],["-117.2327029","32.833187"],["-117.232761","32.8335589"],["-117.2329349","32.8341515"],["-117.2335076","32.83551"],["-117.2356106","32.8401498"],["-117.2360225","32.8411459"],["-117.2361758","32.8415998"],["-117.2362948","32.8421514"],["-117.2363538","32.8426049"],["-117.2363854","32.8430341"],["-117.236381","32.8434683"],["-117.2363268","32.844114"],["-117.2359201","32.8467751"],["-117.2357379","32.8477928"],["-117.235488","32.8485781"],["-117.2352042","32.8492759"],["-117.2349461","32.8497363"],["-117.2340916","32.8509815"],["-117.2320019","32.8539765"],["-117.2315315","32.8547098"],["-117.2311708","32.8553715"],["-117.2309631","32.8558552"],["-117.2308133","32.8562871"],["-117.2306714","32.8567743"],["-117.2305516","32.8573468"],["-117.229469","32.8681733"],["-117.2294342","32.8684165"],["-117.2293796","32.8690388"],["-117.2291564","32.8714598"],["-117.2289531","32.8736259"],["-117.2275995","32.8871642"],["-117.2274275","32.8887313"],["-117.2272967","32.8901737"],["-117.2270416","32.8927013"],["-117.2269457","32.893299"],["-117.2268555","32.8937328"],["-117.2267313","32.8942329"],["-117.2263631","32.8952841"],["-117.2243144","32.9003723"],["-117.223987","32.9012163"],["-117.2238342","32.9017476"],["-117.2237433","32.9024783"],["-117.2237181","32.9032559"],["-117.2237387","32.9037526"],["-117.2238034","32.9043668"],["-117.2239178","32.9048624"],["-117.2240523","32.9053148"],["-117.2242228","32.9057948"],["-117.2244174","32.9062434"],["-117.2246507","32.9067248"],["-117.2248941","32.9071604"],["-117.225393","32.9078387"],["-117.2261942","32.9087711"],["-117.2269834","32.9097634"],["-117.2277363","32.9107773"],["-117.2289369","32.9126777"],["-117.2296737","32.9139487"],["-117.2299042","32.9142856"],["-117.2301321","32.91457"],["-117.2304087","32.9148918"],["-117.230697","32.9151918"],["-117.231","32.9154844"],["-117.2312734","32.9157178"],["-117.2315644","32.9159555"],["-117.2316484","32.9160186"],["-117.2319877","32.9162623"],["-117.233941","32.9176219"],["-117.2347564","32.918228"],["-117.2352062","32.9186323"],["-117.2358517","32.9192656"],["-117.2364241","32.9199094"],["-117.2368652","32.9204241"],["-117.2371704","32.9208415"],["-117.2375353","32.9213832"],["-117.2378374","32.9218895"],["-117.2381303","32.922455"],["-117.2385614","32.9234308"],["-117.2393805","32.9257509"],["-117.2405214","32.9294363"],["-117.2407145","32.9302822"],["-117.24089","32.9311548"],["-117.2409922","32.9318664"],["-117.2411346","32.9332183"],["-117.2412115","32.9343624"],["-117.2413636","32.9366478"],["-117.2414567","32.9378043"],["-117.2417696","32.9403334"],["-117.2441088","32.9529901"],["-117.2451421","32.9583262"],["-117.2454628","32.9598238"],["-117.2457125","32.9606958"],["-117.2460912","32.9617417"],["-117.2508842","32.9744993"],["-117.2513286","32.9757007"],["-117.252779","32.9794422"],["-117.2543586","32.983683"],["-117.2545487","32.9842423"],["-117.2547535","32.9851555"],["-117.2559142","32.9924181"],["-117.256217","32.9942361"],["-117.2565161","32.9961499"],["-117.2566012","32.9967104"],["-117.2571005","32.9999005"],["-117.2575181","33.0023511"],["-117.2576738","33.0029011"],["-117.2578745","33.0034832"],["-117.2580992","33.0039877"],["-117.2583525","33.0044747"],["-117.2586568","33.0049548"],["-117.2590097","33.0054275"],["-117.2594238","33.0059241"],["-117.2597681","33.0062917"],["-117.2621516","33.0084477"],["-117.2638149","33.0098423"],["-117.2638375","33.0098607"],["-117.2640892","33.0100843"],["-117.2671486","33.0127417"],["-117.269004","33.0143107"],["-117.2700819","33.015294"],["-117.270715","33.015968"],["-117.2711307","33.0164869"],["-117.2717273","33.017352"],["-117.2722101","33.0182376"],["-117.2725715","33.019063"],["-117.2727771","33.0196839"],["-117.2729525","33.0203539"],["-117.2732181","33.0218354"],["-117.2734011","33.0226144"],["-117.2736336","33.0236345"],["-117.2739164","33.0245864"],["-117.2742136","33.0253638"],["-117.2745287","33.02604"],["-117.2748714","33.0266079"],["-117.2755712","33.0276692"],["-117.2779726","33.0312738"],["-117.279289","33.0332064"],["-117.2811654","33.036001"],["-117.2815346","33.0366193"],["-117.2828354","33.0385486"],["-117.2841073","33.040422"],["-117.2846644","33.0412914"],["-117.285052","33.0420725"],["-117.2853508","33.0427727"],["-117.2866032","33.0468327"],["-117.2876176","33.0502567"],["-117.2963198","33.0791967"],["-117.2975067","33.0830328"],["-117.2977948","33.0838038"],["-117.2980971","33.0844252"],["-117.2987579","33.0855129"],["-117.3080663","33.0998737"],["-117.3092837","33.1017112"],["-117.3127285","33.1069833"],["-117.3134429","33.1080704"],["-117.3142578","33.1093734"],["-117.3275031","33.1315158"],["-117.3278649","33.132345"],["-117.3281566","33.1330027"],["-117.328334","33.1334682"],["-117.3284157","33.1337917"],["-117.3284514","33.1341235"],["-117.3284565","33.134772"],["-117.3285356","33.1349651"],["-117.3308626","33.1341133"],["-117.3309521","33.1340801"],["-117.3310107","33.1340558"],["-117.3317089","33.1338308"],["-117.3317655","33.1338064"],["-117.3320227","33.133653"],["-117.3326526","33.1334528"],["-117.3330181","33.1333495"],["-117.3331242","33.1333223"],["-117.3336667","33.133172"],["-117.3354842","33.1325439"],["-117.3366703","33.134225"],["-117.3367326","33.1344061"],["-117.3372247","33.1352228"],["-117.3376149","33.1359947"],["-117.3380609","33.1369397"],["-117.3383086","33.1374197"],["-117.3404618","33.1413651"],["-117.3408633","33.1421038"],["-117.3412761","33.1427508"],["-117.3416074","33.1432412"],["-117.3419143","33.1436486"],["-117.3421815","33.143985"],["-117.342453","33.1442949"],["-117.3426979","33.1445605"],["-117.3428907","33.1447483"],["-117.3431643","33.1449743"],["-117.3439603","33.1458451"],["-117.344308","33.1462535"],["-117.3448192","33.1468449"],["-117.3450027","33.1470744"],["-117.3460505","33.1483939"],["-117.3461537","33.148527"],["-117.3463427","33.1487706"],["-117.3463762","33.1488154"],["-117.3464491","33.14891"],["-117.3471962","33.1499063"],["-117.3474157","33.1501853"],["-117.3481148","33.1510935"],["-117.3484824","33.1515513"],["-117.3486265","33.1517393"],["-117.3490638","33.152338"],["-117.3492623","33.1526163"],["-117.3495084","33.152968"],["-117.3496653","33.15319"],["-117.3496582","33.1532549"],["-117.3497081","33.1533351"],["-117.3497763","33.1533586"],["-117.3499125","33.1535666"],["-117.3501507","33.1538975"],["-117.3502426","33.1541079"],["-117.3504557","33.1544443"],["-117.3506058","33.1547469"],["-117.3506551","33.1548731"],["-117.3506931","33.1549948"],["-117.3507395","33.1552143"],["-117.3507677","33.1554517"],["-117.3507818","33.1556129"],["-117.3507812","33.155725"],["-117.3507764","33.155831"],["-117.3507582","33.1560108"],["-117.35072","33.1563363"],["-117.3506647","33.156803"],["-117.3506324","33.15707"],["-117.3506172","33.1572191"],["-117.3506137","33.1573146"],["-117.3506184","33.1574041"],["-117.3506288","33.1575037"],["-117.3506523","33.1576371"],["-117.3506892","33.1577732"],["-117.3507307","33.1578908"],["-117.3507731","33.1579759"],["-117.3508061","33.1580312"],["-117.3508117","33.1580401"],["-117.3508756","33.1581374"],["-117.3509441","33.1582268"],["-117.3507873","33.158285"],["-117.35007","33.158696"],["-117.3498483","33.1588344"],["-117.349606","33.158978"],["-117.3493697","33.1591043"],["-117.3476408","33.1601126"],["-117.3473721","33.1602688"],["-117.3457426","33.1612217"],["-117.3456781","33.1612602"],["-117.3456004","33.1613073"],["-117.3447185","33.1618149"],["-117.3446576","33.1618495"],["-117.343112","33.1627318"],["-117.3429317","33.1628364"],["-117.342861","33.1628755"],["-117.3428239","33.1629746"],["-117.3417662","33.1635974"],["-117.3418494","33.1637337"],["-117.3421488","33.1640699"],["-117.3423361","33.1643016"],["-117.3425202","33.1645676"],["-117.3430005","33.1653206"],["-117.3435256","33.1661718"],["-117.3440263","33.1671263"],["-117.3444683","33.1679521"],["-117.3450446","33.1689051"],["-117.3458455","33.170039"],["-117.3473727","33.1720817"],["-117.3484887","33.1735499"],["-117.3493268","33.1746616"],["-117.3509989","33.1768665"],["-117.3514404","33.1774724"],["-117.3521022","33.178287"],["-117.3529264","33.1792706"],["-117.3546559","33.1813384"],["-117.3592973","33.1868971"],["-117.3612971","33.1893137"],["-117.361848","33.1899918"],["-117.3623668","33.1906036"],["-117.3630792","33.1914454"],["-117.3648189","33.1934899"],["-117.3674739","33.1967154"],["-117.3685838","33.1981138"],["-117.3691302","33.1986564"],["-117.3696622","33.1990871"],["-117.3702176","33.1994567"],["-117.3709572","33.199864"],["-117.3718919","33.2003075"],["-117.3734081","33.2008754"],["-117.3765876","33.2019699"],["-117.3773831","33.2022158"],["-117.3778251","33.2023691"],["-117.3797423","33.2032526"],["-117.3802602","33.2035271"],["-117.3805598","33.2037699"],["-117.3809074","33.2042067"],["-117.3813112","33.2049634"],["-117.3814218","33.205181"],["-117.3817978","33.2059355"],["-117.3818811","33.2061616"],["-117.3819184","33.2063436"],["-117.3819356","33.2064988"],["-117.3819266","33.2066504"],["-117.3819103","33.2067835"],["-117.3818814","33.2069056"],["-117.3818279","33.2070495"],["-117.3817677","33.2071872"],["-117.3817129","33.2072794"],["-117.3816413","33.2073807"],["-117.3814511","33.2076106"],["-117.3810686","33.2080266"],["-117.3806514","33.2083322"],["-117.3767028","33.2111161"],["-117.3763243","33.2113701"],["-117.3760675","33.2115291"],["-117.3757394","33.2117071"],["-117.37538","33.2118715"],["-117.3748887","33.2120669"],["-117.3745367","33.2121764"],["-117.3741854","33.2122666"],["-117.3736239","33.2123769"],["-117.3731991","33.212432"],["-117.3728787","33.2124599"],["-117.3724889","33.2124696"],["-117.3682025","33.2123363"],["-117.3678611","33.2123439"],["-117.3674773","33.2123704"],["-117.3667662","33.2124796"],["-117.3660462","33.2126243"],["-117.359374","33.2141456"],["-117.3440671","33.2183035"],["-117.3370718","33.2205849"],["-117.3362304","33.2209074"],["-117.3356689","33.2211555"],["-117.3352176","33.2213691"],["-117.3348006","33.2215755"],["-117.3344932","33.2217376"],["-117.3320531","33.2231397"],["-117.3311956","33.2236199"],["-117.3309017","33.2237715"],["-117.3303245","33.2240438"],["-117.329948","33.2242138"],["-117.3292462","33.2245065"],["-117.3288438","33.224654"],["-117.3277608","33.225023"],["-117.318196","33.2277902"],["-117.3174914","33.2280325"],["-117.3168706","33.22826"],["-117.3161987","33.2285338"],["-117.3148606","33.229135"],["-117.3141781","33.2294746"],["-117.3051491","33.234372"],["-117.3027673","33.2358502"],["-117.301519","33.2367071"],["-117.2943742","33.2419642"],["-117.2938477","33.2423603"],["-117.2937183","33.2424483"],["-117.2936019","33.2425224"],["-117.2934582","33.2426059"],["-117.2933236","33.24268"],["-117.2931614","33.2427638"],["-117.2929528","33.2428626"],["-117.2925289","33.2430445"],["-117.2923323","33.243116"],["-117.2917984","33.243279"],["-117.2914689","33.2433583"],["-117.2911633","33.2434189"],["-117.2909295","33.2434553"],["-117.2905416","33.2434991"],["-117.2899556","33.2435576"],["-117.2898488","33.2435663"],["-117.28722","33.2437773"],["-117.2866067","33.2438447"],["-117.2863724","33.243882"],["-117.2860913","33.2439343"],["-117.2858916","33.2439777"],["-117.2856194","33.2440534"],["-117.2853022","33.2441542"],["-117.284958","33.2442773"],["-117.2846783","33.2443903"],["-117.2843241","33.2445524"],["-117.2791662","33.2471044"],["-117.2786761","33.2473263"],["-117.278404","33.2474281"],["-117.2782025","33.2474969"],["-117.2780461","33.2475453"],["-117.2779147","33.2475823"],["-117.2777269","33.2476299"],["-117.2754762","33.2480811"],["-117.2747539","33.2482248"],["-117.2739321","33.2484324"],["-117.2731723","33.248655"],["-117.2727858","33.2487884"],["-117.2656685","33.2514131"],["-117.2651209","33.2516158"],["-117.2649855","33.2516655"],["-117.2633083","33.2523086"],["-117.2606253","33.253371"],["-117.26026","33.2535031"],["-117.2599409","33.2536091"],["-117.2596435","33.2536908"],["-117.25934","33.2537636"],["-117.259053","33.2538214"],["-117.2587689","33.2538743"],["-117.2585253","33.2539132"],["-117.2583132","33.2539417"],["-117.258074","33.2539656"],["-117.2578495","33.2539833"],["-117.2539126","33.254166"],["-117.2527262","33.2542244"],["-117.2508689","33.2543085"],["-117.2506725","33.254308"],["-117.2504417","33.254301"],["-117.250159","33.2542806"],["-117.2499137","33.2542587"],["-117.2494087","33.2541853"],["-117.2492269","33.2541528"],["-117.248898","33.2540827"],["-117.2485673","33.2539982"],["-117.2470982","33.2536138"],["-117.2466358","33.2535002"],["-117.2463479","33.253447"],["-117.2460633","33.2534024"],["-117.2457446","33.253365"],["-117.2453991","33.2533464"],["-117.2450679","33.2533433"],["-117.2448275","33.2533467"],["-117.2443593","33.2533696"],["-117.2441029","33.2533986"],["-117.2438764","33.2534289"],["-117.2437442","33.2534495"],["-117.2435133","33.2534972"],["-117.2433394","33.2535388"],["-117.2431427","33.2535899"],["-117.2427431","33.2537054"],["-117.2424408","33.2538084"],["-117.2419984","33.253983"],["-117.2417983","33.2540815"],["-117.2416177","33.2541766"],["-117.241445","33.2542723"],["-117.2412872","33.2543645"],["-117.2409637","33.2545702"],["-117.2408003","33.2546868"],["-117.2406077","33.2548355"],["-117.2401239","33.2552452"],["-117.2378377","33.2572503"],["-117.2372517","33.2577839"],["-117.2371332","33.2579148"],["-117.2369958","33.2580786"],["-117.2368739","33.2582298"],["-117.2367229","33.2584288"],["-117.2366014","33.2586111"],["-117.2364805","33.2588095"],["-117.2363228","33.2591114"],["-117.2361721","33.259425"],["-117.2360375","33.2597845"],["-117.2359836","33.2599562"],["-117.2359434","33.260115"],["-117.2359091","33.260288"],["-117.2358764","33.2604718"],["-117.2358521","33.2606485"],["-117.2358353","33.2608334"],["-117.2358286","33.2609881"],["-117.2358243","33.2611516"],["-117.2358283","33.2613042"],["-117.2358423","33.2615246"],["-117.2358613","33.2617319"],["-117.2358996","33.2619685"],["-117.2359375","33.2621747"],["-117.2359887","33.2623908"],["-117.2360549","33.2626138"],["-117.2361262","33.2628286"],["-117.2362031","33.2630398"],["-117.2366956","33.2642686"],["-117.2367581","33.2644728"],["-117.2368195","33.2647086"],["-117.2368847","33.2650555"],["-117.2369161","33.2653089"],["-117.2369376","33.2655373"],["-117.236941","33.2657565"],["-117.2369394","33.2659604"],["-117.2369297","33.2661344"],["-117.2369007","33.2663971"],["-117.2368361","33.2669082"],["-117.2365736","33.2685735"],["-117.2364836","33.2690592"],["-117.2361061","33.2707977"],["-117.235856","33.271842"],["-117.2356212","33.2726703"],["-117.2354448","33.2731356"],["-117.2352356","33.2735901"],["-117.2348906","33.2742032"],["-117.23468","33.2745212"],["-117.234404","33.2748851"],["-117.2338522","33.2755236"],["-117.2332487","33.2760587"],["-117.2329659","33.2762925"],["-117.2326542","33.2765185"],["-117.2323182","33.276739"],["-117.2316699","33.2770976"],["-117.2298051","33.2779536"],["-117.229383","33.2781606"],["-117.2292303","33.2782427"],["-117.2290485","33.2783496"],["-117.2288708","33.2784609"],["-117.2286574","33.278599"],["-117.2283881","33.2787838"],["-117.2280739","33.2790171"],["-117.2277329","33.2793035"],["-117.2274341","33.2795777"],["-117.2271714","33.2798418"],["-117.2269637","33.2800699"],["-117.2267716","33.2803021"],["-117.2265612","33.2805753"],["-117.2263645","33.2808555"],["-117.2261826","33.2811521"],["-117.2260343","33.2814039"],["-117.2258203","33.2818268"],["-117.2257341","33.282026"],["-117.225627","33.2823159"],["-117.2254794","33.2827526"],["-117.2253945","33.283079"],["-117.2253377","33.2833465"],["-117.2253008","33.2835685"],["-117.2252788","33.2837228"],["-117.2252567","33.2839006"],["-117.2252433","33.2840691"],["-117.2252349","33.2842248"],["-117.2252294","33.2844309"],["-117.2252471","33.2850729"],["-117.22544","33.2877027"],["-117.2254554","33.2879618"],["-117.2254612","33.2881652"],["-117.2254557","33.2884016"],["-117.2253985","33.2891004"],["-117.2253825","33.2892203"],["-117.2253397","33.2894489"],["-117.2252909","33.2896625"],["-117.2252148","33.2899386"],["-117.2250639","33.2903918"],["-117.2249199","33.2907873"],["-117.2246641","33.2913181"],["-117.2244268","33.2917182"],["-117.2241962","33.2920662"],["-117.2240067","33.292342"],["-117.2238943","33.2924947"],["-117.2236912","33.292743"],["-117.2235977","33.2928465"],["-117.2233912","33.2930672"],["-117.2232696","33.2931937"],["-117.223115","33.2933361"],["-117.2226626","33.2937178"],["-117.2215281","33.2946144"],["-117.221274","33.2948171"],["-117.2210057","33.2950388"],["-117.2205812","33.2954569"],["-117.2202839","33.2957781"],["-117.2199983","33.2961353"],["-117.2195199","33.2968142"],["-117.2189292","33.2978241"],["-117.2186815","33.2982203"],["-117.2173989","33.300409"],["-117.2172168","33.3007034"],["-117.2171004","33.3008748"],["-117.2169324","33.3011017"],["-117.2167207","33.3013552"],["-117.216423","33.3016691"],["-117.2161811","33.301906"],["-117.2158391","33.3021855"],["-117.214192","33.303448"],["-117.2114484","33.305611"],["-117.2107682","33.3060923"],["-117.209914","33.3066231"],["-117.1986103","33.31277"],["-117.1976107","33.3132858"],["-117.1972236","33.3134683"],["-117.1965087","33.3137721"],["-117.1960983","33.3139224"],["-117.1956673","33.3140528"],["-117.1950821","33.3142119"],["-117.1946668","33.3142847"],["-117.1943135","33.314343"],["-117.1941512","33.3143618"],["-117.1940117","33.3143756"],["-117.1936598","33.3143969"],["-117.1932034","33.3144164"],["-117.1926868","33.3144253"],["-117.1921416","33.3144062"],["-117.1915082","33.3143523"],["-117.1903127","33.3142429"],["-117.1898874","33.3142094"],["-117.1894689","33.3141937"],["-117.1890527","33.3142034"],["-117.1886508","33.3142261"],["-117.1882293","33.3142625"],["-117.1877219","33.3143433"],["-117.1842651","33.3150708"],["-117.1832479","33.3152703"],["-117.1827986","33.3153197"],["-117.1823152","33.3153399"],["-117.1817773","33.3153493"],["-117.181173","33.315342"],["-117.1805423","33.3153329"],["-117.1799793","33.3153249"],["-117.179478","33.3153399"],["-117.1790728","33.31537"],["-117.1786762","33.3154243"],["-117.1782772","33.3154929"],["-117.1778593","33.3155857"],["-117.1774901","33.3156881"],["-117.1771094","33.315822"],["-117.1765849","33.316033"],["-117.1761039","33.3162638"],["-117.1756268","33.3165408"],["-117.1753325","33.3167389"],["-117.175037","33.3169628"],["-117.1746237","33.3173173"],["-117.1742447","33.3176821"],["-117.173962","33.3179935"],["-117.1730657","33.3191115"],["-117.172889","33.319337"],["-117.1726192","33.3196524"],["-117.1723079","33.3199547"],["-117.171988","33.3202291"],["-117.1714387","33.3206122"],["-117.171041","33.3208638"],["-117.1706768","33.3210726"],["-117.1695981","33.3215645"],["-117.1692816","33.3217027"],["-117.1680938","33.3222497"],["-117.1678211","33.3224052"],["-117.1675284","33.3225923"],["-117.1672885","33.3227624"],["-117.1670295","33.322958"],["-117.1666777","33.3232592"],["-117.1664423","33.323485"],["-117.1662606","33.3236729"],["-117.1659767","33.324007"],["-117.1657072","33.3243655"],["-117.1651295","33.3252203"],["-117.1647086","33.3257921"],["-117.1645313","33.3260188"],["-117.1643974","33.3261682"],["-117.1641875","33.3263954"],["-117.1638056","33.3267411"],["-117.1628412","33.3276376"],["-117.1626504","33.3278154"],["-117.1580808","33.3320716"],["-117.1580579","33.3320808"],["-117.1580213","33.3320986"],["-117.1580027","33.3321059"],["-117.1579837","33.332111"],["-117.157965","33.3321138"],["-117.1579459","33.3321147"],["-117.1579262","33.3321147"],["-117.1579103","33.3321116"],["-117.1578964","33.332109"],["-117.1578865","33.3321063"],["-117.1578698","33.3321011"],["-117.1578537","33.3320946"],["-117.1578371","33.332087"],["-117.1578232","33.3320781"],["-117.1578097","33.3320682"],["-117.1577971","33.3320589"],["-117.1577851","33.3320481"],["-117.1577644","33.3320251"],["-117.1577492","33.3320049"],["-117.1577349","33.3319823"],["-117.1577087","33.3319321"],["-117.1576807","33.3318652"],["-117.1576469","33.3317765"],["-117.1576189","33.3316887"],["-117.1575949","33.3315969"],["-117.1575779","33.3314823"],["-117.1575676","33.3313774"],["-117.1575658","33.3312836"],["-117.1575745","33.3311892"],["-117.1575898","33.3310875"],["-117.1576136","33.3309712"],["-117.1576528","33.33085"],["-117.1576949","33.330737"],["-117.157744","33.3306253"],["-117.1577849","33.3305535"],["-117.1578338","33.3304794"],["-117.1578873","33.3304179"],["-117.1579631","33.3303569"],["-117.1580353","33.3303156"],["-117.1581196","33.3302794"],["-117.1582172","33.330255"],["-117.1582985","33.3302436"],["-117.1583838","33.3302414"],["-117.1584391","33.3302472"],["-117.158531","33.3302639"],["-117.1585877","33.3302801"],["-117.1586389","33.3303014"],["-117.1586933","33.3303262"],["-117.158738","33.3303579"],["-117.1587965","33.3304045"],["-117.15885","33.3304567"],["-117.1588845","33.3305025"],["-117.1589135","33.3305468"],["-117.1589323","33.3306006"],["-117.1589445","33.3306661"],["-117.1589616","33.3308083"],["-117.1589838","33.3311411"],["-117.1589859","33.3315526"],["-117.1589941","33.3320262"],["-117.1590468","33.3329313"],["-117.1589697","33.3377003"],["-117.1589586","33.3387096"],["-117.1587402","33.3537157"],["-117.1587248","33.3566519"],["-117.1587697","33.3572623"],["-117.1588368","33.3579129"],["-117.1589264","33.3585772"],["-117.1590881","33.3594592"],["-117.1592533","33.3602225"],["-117.1595236","33.3611691"],["-117.159861","33.3621003"],["-117.1602269","33.3630351"],["-117.1605469","33.3637557"],["-117.1608133","33.3643196"],["-117.1610458","33.3647809"],["-117.1613221","33.3652476"],["-117.1616487","33.3657818"],["-117.1620332","33.3664056"],["-117.1624623","33.367059"],["-117.1630087","33.3677895"],["-117.1641332","33.3691242"],["-117.1646768","33.3697277"],["-117.1654118","33.3704593"],["-117.1679581","33.3727879"],["-117.1684573","33.3732986"],["-117.1693459","33.3742517"],["-117.1697904","33.3747528"],["-117.1702638","33.3753337"],["-117.1708378","33.3761368"],["-117.1714944","33.3771079"],["-117.171736","33.377487"],["-117.1725456","33.3790332"],["-117.1729474","33.3798389"],["-117.1732383","33.3805981"],["-117.1735862","33.3815963"],["-117.1737909","33.3822634"],["-117.1739673","33.3829385"],["-117.1741616","33.3839413"],["-117.1743286","33.3850207"],["-117.1744133","33.3858764"],["-117.1744633","33.3866823"],["-117.1744705","33.3877475"],["-117.1744389","33.3885786"],["-117.1743178","33.389763"],["-117.1741414","33.3908337"],["-117.1739105","33.3918989"],["-117.1737286","33.3925367"],["-117.1734108","33.3934742"],["-117.1729095","33.3946567"],["-117.1723923","33.3958133"],["-117.1719956","33.3966114"],["-117.1716445","33.3972497"],["-117.1708766","33.3985442"],["-117.1703077","33.3994283"],["-117.16973","33.4002878"],["-117.1689301","33.4013981"],["-117.1682427","33.4023087"],["-117.1639674","33.407468"],["-117.1628979","33.4088937"],["-117.1612257","33.4111804"],["-117.1596085","33.4133778"],["-117.1548047","33.4199986"],["-117.1517714","33.4242854"],["-117.1513117","33.4249336"],["-117.1510086","33.4253211"],["-117.1506356","33.4257719"],["-117.1502618","33.4261973"],["-117.1498011","33.4267038"],["-117.1493958","33.4271025"],["-117.1483492","33.4280248"],["-117.1455873","33.4303022"],["-117.1444059","33.4313353"],["-117.1431121","33.4326178"],["-117.142139","33.4337028"],["-117.1410747","33.435057"],["-117.1401365","33.4364481"],["-117.1396735","33.4372443"],["-117.1391944","33.4381036"],["-117.1387549","33.4390008"],["-117.1384566","33.4396697"],["-117.1380941","33.4405298"],["-117.1377627","33.4414665"],["-117.135892","33.4471944"],["-117.1354479","33.4486822"],["-117.1353315","33.4492481"],["-117.1352409","33.4497984"],["-117.135162","33.4504006"],["-117.1351279","33.4509377"],["-117.1351297","33.4517827"],["-117.1353966","33.454773"],["-117.1355265","33.4561327"],["-117.1357002","33.4577107"],["-117.1360974","33.4613742"],["-117.1362091","33.4629372"],["-117.1362269","33.4635817"],["-117.1361932","33.4642195"],["-117.1361442","33.464977"],["-117.1361133","33.4656303"],["-117.1361132","33.4663238"],["-117.1361618","33.4669919"],["-117.1363144","33.4682368"],["-117.1364241","33.4688437"],["-117.1365324","33.4693095"],["-117.1366588","33.4697883"],["-117.1368411","33.4703986"],["-117.137345","33.4718078"],["-117.1384095","33.4747332"],["-117.1387447","33.475694"],["-117.1392502","33.477032"],["-117.141189","33.4824712"],["-117.1426763","33.4866164"],["-117.1432241","33.4881021"],["-117.1444704","33.4915545"],["-117.1447428","33.4922816"],["-117.1449229","33.4926857"],["-117.14512","33.4930704"],["-117.1453316","33.493452"],["-117.1455598","33.4938207"],["-117.145747","33.4940947"],["-117.1459713","33.494401"],["-117.1461624","33.4946505"],["-117.1464999","33.4950459"],["-117.1467326","33.4952934"],["-117.1472967","33.4958649"],["-117.148727","33.4973463"],["-117.1489674","33.4976274"],["-117.149303","33.4980461"],["-117.1499722","33.4989159"],["-117.1505224","33.4997294"],["-117.1507907","33.5001508"],["-117.1510694","33.5006357"],["-117.1513261","33.5011225"],["-117.1516052","33.5016843"],["-117.1523292","33.503266"],["-117.1528231","33.5043511"],["-117.1573048","33.5141351"],["-117.1576933","33.5148399"],["-117.1579605","33.5152796"],["-117.1582146","33.5156728"],["-117.1602259","33.5187276"],["-117.1784564","33.5460151"],["-117.1794556","33.5472771"],["-117.1803399","33.5481911"],["-117.1812155","33.548935"],["-117.1820774","33.5496268"],["-117.1827476","33.5500731"],["-117.1835501","33.5505736"],["-117.1902609","33.5540144"],["-117.1922386","33.5550519"],["-117.192946","33.5554531"],["-117.1954305","33.5570041"],["-117.1958785","33.557316"],["-117.1967873","33.5579738"],["-117.1975522","33.5585418"],["-117.2344625","33.5866588"],["-117.2401406","33.5910131"],["-117.2406754","33.5915063"],["-117.2412627","33.5920768"],["-117.242559","33.5935077"],["-117.2660828","33.6192655"],["-117.2681591","33.6215743"],["-117.2711323","33.6250557"],["-117.2730517","33.6274531"],["-117.2761653","33.6316207"],["-117.279636","33.6365811"],["-117.2841707","33.6432717"],["-117.2891342","33.6506093"],["-117.2919601","33.6547671"],["-117.292447","33.6554446"],["-117.2932975","33.6565678"],["-117.2949296","33.6584931"],["-117.2965044","33.6602897"],["-117.2972496","33.6610856"],["-117.2983169","33.6621445"],["-117.3005995","33.6642326"],["-117.3019151","33.6652856"],["-117.3030854","33.6661706"],["-117.3043619","33.6671013"],["-117.305611","33.6679595"],["-117.3076096","33.6692481"],["-117.3106724","33.6709882"],["-117.3124818","33.6718756"],["-117.3151424","33.6730965"],["-117.3185976","33.6745462"],["-117.3194513","33.6750217"],["-117.3207671","33.6758668"],["-117.3217148","33.6765575"],["-117.3232228","33.6777113"],["-117.3238947","33.6771159"],["-117.3240225","33.676979"],["-117.3241038","33.6768695"],["-117.3241929","33.6767341"],["-117.3242588","33.6765914"],["-117.3243082","33.6764795"],["-117.3265979","33.6707808"],["-117.327683","33.6680296"],["-117.3277653","33.6680499"],["-117.3278475","33.6680738"],["-117.3289902","33.6684133"],["-117.3261794","33.6753146"],["-117.3249434","33.6750832"],["-117.3243086","33.6764789"],["-117.3242568","33.6765959"],["-117.3241932","33.6767334"],["-117.3241069","33.6768653"],["-117.3240244","33.6769767"],["-117.3238909","33.6771195"],["-117.3232368","33.6777215"],["-117.3251292","33.6791333"],["-117.3266244","33.6803442"],["-117.3344287","33.6889006"],["-117.3348137","33.6894512"],["-117.3355879","33.6905091"],["-117.3366618","33.6921171"],["-117.3369585","33.6925582"],["-117.3363323","33.6931613"],["-117.3361372","33.6933244"],["-117.3359092","33.6935101"],["-117.3357656","33.693631"],["-117.335709","33.6936786"],["-117.3356605","33.693717"],["-117.3355146","33.6937696"],["-117.334975","33.6942705"],["-117.3346207","33.6945867"],["-117.3345355","33.6947526"],["-117.3302421","33.6985688"],["-117.3299652","33.698841"],["-117.3297037","33.6991155"],["-117.3294289","33.6994268"],["-117.328708","33.7002757"],["-117.3283952","33.7006263"],["-117.328076","33.7009418"],["-117.3275255","33.7014145"],["-117.3268403","33.7019442"],["-117.3263838","33.7022838"],["-117.3258217","33.7027638"],["-117.3255473","33.7030309"],["-117.3253203","33.7032632"],["-117.3249842","33.7036547"],["-117.3245442","33.7043322"],["-117.3241467","33.7050027"],["-117.3237913","33.7055904"],["-117.323293","33.7062573"],["-117.3230496","33.7065592"],["-117.3228375","33.7068079"],["-117.3224885","33.7071509"],["-117.3222506","33.7073742"],["-117.3218807","33.7076742"],["-117.3215653","33.7079213"],["-117.3212816","33.70813"],["-117.320995","33.7083174"],["-117.3206237","33.7085431"],["-117.3203047","33.7087286"],["-117.3199037","33.7089353"],["-117.3192116","33.7092763"],["-117.3189698","33.7093701"],["-117.3186129","33.7094948"],["-117.318136","33.7096414"],["-117.317691","33.7097601"],["-117.3167897","33.709964"],["-117.3139663","33.7105076"],["-117.3135923","33.7106027"],["-117.3133192","33.7106866"],["-117.313024","33.7107915"],["-117.3127698","33.7108849"],["-117.3121644","33.7111191"],["-117.3112426","33.7114885"],["-117.3094805","33.71223"],["-117.3088209","33.712574"],["-117.3065554","33.7138599"],["-117.3059396","33.714164"],["-117.3055356","33.71433"],["-117.3015238","33.7158026"],["-117.3003979","33.7162579"],["-117.2998406","33.716524"],["-117.2994385","33.7167403"],["-117.2990738","33.7169831"],["-117.2982742","33.7175719"],["-117.2975721","33.7182244"],["-117.2967401","33.7191203"],["-117.2958528","33.7200849"],["-117.2945795","33.7214817"],["-117.2942721","33.7219074"],["-117.2938441","33.7226139"],["-117.2935994","33.7231029"],["-117.2933284","33.7236978"],["-117.2918497","33.7272667"],["-117.2907584","33.7297676"],["-117.2902215","33.7306244"],["-117.290018","33.7308751"],["-117.2897961","33.7311387"],["-117.2893639","33.7316157"],["-117.2886862","33.7323122"],["-117.2880087","33.7330095"],["-117.287311","33.7337342"],["-117.2866251","33.7344214"],["-117.286031","33.7351187"],["-117.2855838","33.7357144"],["-117.285228","33.7362687"],["-117.2844913","33.7376365"],["-117.2840577","33.738601"],["-117.2838107","33.739132"],["-117.2836211","33.7395122"],["-117.2831541","33.7404526"],["-117.2826528","33.7411896"],["-117.2823566","33.7415278"],["-117.2801731","33.7438987"],["-117.2798891","33.7442117"],["-117.2783335","33.7458753"],["-117.2778417","33.7464285"],["-117.2768484","33.747611"],["-117.2765319","33.7481359"],["-117.2764498","33.7482758"],["-117.2762957","33.7485643"],["-117.2760233","33.7491159"],["-117.2759337","33.7493675"],["-117.2758064","33.7498203"],["-117.2754192","33.7515002"],["-117.2752876","33.7521098"],["-117.2749109","33.7533263"],["-117.2745714","33.7540799"],["-117.2742636","33.7546271"],["-117.2741168","33.7548716"],["-117.2739094","33.7552147"],["-117.273722","33.755505"],["-117.2734796","33.7558488"],["-117.273091","33.7563364"],["-117.2724554","33.7570728"],["-117.2721609","33.7573882"],["-117.2717631","33.7577641"],["-117.2716567","33.7578614"],["-117.2712037","33.7582568"],["-117.2705397","33.7587717"],["-117.2688575","33.7599648"],["-117.2680629","33.760457"],["-117.2648838","33.7622168"],["-117.264231","33.7626414"],["-117.2637328","33.7630128"],["-117.2629241","33.7636496"],["-117.2625704","33.7639237"],["-117.2618468","33.7644725"],["-117.2613637","33.7647805"],["-117.260889","33.7650811"],["-117.2603449","33.7654122"],["-117.2577153","33.7670672"],["-117.2543892","33.7696519"],["-117.2540563","33.7698826"],["-117.2529775","33.7705455"],["-117.2524292","33.770853"],["-117.2513545","33.7715349"],["-117.2508662","33.7718881"],["-117.2503029","33.7723716"],["-117.2481054","33.7742492"],["-117.2476424","33.7747134"],["-117.247271","33.7751874"],["-117.2470119","33.7755688"],["-117.2465579","33.776343"],["-117.2461554","33.7769986"],["-117.2457368","33.7777277"],["-117.245391","33.7782495"],["-117.2451002","33.7786599"],["-117.2448562","33.7790251"],["-117.2433401","33.7811224"],["-117.2430443","33.781466"],["-117.2428714","33.7816156"],["-117.242622","33.7817771"],["-117.2421937","33.7820127"],["-117.2418782","33.7821385"],["-117.2416617","33.7822049"],["-117.2414192","33.7822591"],["-117.2410899","33.7823109"],["-117.2407042","33.782329"],["-117.2381344","33.782337"],["-117.2379969","33.7822919"],["-117.2379653","33.7822835"],["-117.2376907","33.782288"],["-117.2370527","33.7822915"],["-117.236878","33.782316"],["-117.2299577","33.782358"],["-117.2294901","33.7823495"],["-117.229331","33.7823491"],["-117.2291822","33.7823635"],["-117.2290927","33.7823838"],["-117.2290395","33.7823968"],["-117.2288593","33.7824237"],["-117.2286005","33.7824478"],["-117.2279705","33.7823879"],["-117.2277185","33.7823713"],["-117.2217435","33.7823784"],["-117.2215986","33.7823319"],["-117.2176418","33.7823343"],["-117.2173613","33.7824129"],["-117.2172662","33.782529"],["-117.2172211","33.7827538"],["-117.2171412","33.7829515"],["-117.2170396","33.7831259"],["-117.2168717","33.7833306"],["-117.2166155","33.7836151"],["-117.2161481","33.7841014"],["-117.2157908","33.7844852"],["-117.2156891","33.7846139"],["-117.2155634","33.7847899"],["-117.2154476","33.7849829"],["-117.2153967","33.7850852"],["-117.2153256","33.7852748"],["-117.2152857","33.7854233"],["-117.2152535","33.7856195"],["-117.2152426","33.7857844"],["-117.2152338","33.7866088"],["-117.2132437","33.7866264"],["-117.2125626","33.7866335"],["-117.2108652","33.7866359"],["-117.2106641","33.7866001"],["-117.1948397","33.7866452"],["-117.1901263","33.7866474"],["-117.1726313","33.7866896"],["-117.1715901","33.7866873"],["-117.1695209","33.7866813"],["-117.1563987","33.7867838"],["-117.1561354","33.801093"],["-117.1461738","33.8012553"],["-117.140558","33.8128765"],["-117.1402585","33.8134373"],["-117.1400621","33.8137174"],["-117.1398136","33.8139933"],["-117.1394776","33.8142938"],["-117.139058","33.8145689"],["-117.1385623","33.8148223"],["-117.1379014","33.8150444"],["-117.1353518","33.8157652"],["-117.1342464","33.8161208"],["-117.1335961","33.8163909"],["-117.1332582","33.8166083"],["-117.1328856","33.8168828"],["-117.1326146","33.8171399"],["-117.1324192","33.8173808"],["-117.1322909","33.8175571"],["-117.1321564","33.8177555"],["-117.1239084","33.8317681"],["-117.1234705","33.8325604"],["-117.123327","33.8329167"],["-117.1231824","33.8333138"],["-117.1230862","33.8337993"],["-117.1230382","33.8342211"],["-117.1230251","33.8345982"],["-117.1230561","33.8351021"],["-117.1231236","33.8355503"],["-117.1232718","33.8360518"],["-117.1237032","33.837238"],["-117.1237297","33.8374424"],["-117.1237419","33.8377031"],["-117.1231144","33.8377287"],["-117.1216233","33.8378853"],["-117.1205299","33.8380887"],["-117.1157073","33.8393419"],["-117.1147718","33.8395251"],["-117.1139492","33.8396415"],["-117.11273","33.8397242"],["-117.0671749","33.8400954"],["-117.0661541","33.8400514"],["-117.0649954","33.8399272"],["-117.0638719","33.8397442"],["-117.0629647","33.8395425"],["-117.0622012","33.839341"],["-117.0615495","33.8391352"],["-117.0607172","33.8388397"],["-117.0599893","33.8385472"],["-117.0590884","33.8381149"],["-117.0585109","33.8378144"],["-117.0575065","33.8372184"],["-117.0372192","33.8244154"],["-117.0368539","33.8242193"],["-117.0363015","33.8239627"],["-117.0356748","33.8237479"],["-117.0350846","33.8235967"],["-117.0345386","33.8235044"],["-117.0331715","33.823414"],["-117.0076582","33.8235622"],["-117.0062515","33.8235456"],["-117.0051467","33.8235218"],["-117.0042515","33.8235076"],["-117.0038335","33.8234879"],["-117.0035181","33.8234758"],["-117.0035092","33.8236291"],["-117.0035619","33.8335321"],["-117.0035491","33.8351685"],["-117.0035204","33.8425769"],["-117.0035724","33.8435267"],["-117.0036801","33.8441912"],["-117.003797","33.8448054"],["-117.0039372","33.8453746"],["-117.0040941","33.8459016"],["-117.0042809","33.8463717"],["-117.0045191","33.8469468"],["-117.0047464","33.8474961"],["-117.0049918","33.8479339"],["-117.0052279","33.8483078"],["-117.0054465","33.8486312"],["-117.0057836","33.8490675"],["-117.0060771","33.8494447"],["-117.0063432","33.8497967"],["-117.006849","33.8504104"],["-117.0070541","33.8506887"],["-117.0071796","33.8508874"],["-117.0072671","33.851061"],["-117.0073601","33.8512549"],["-117.0074857","33.8514914"],["-117.0076528","33.8518586"],["-117.0079127","33.8525382"],["-117.0080131","33.8528609"],["-117.0080479","33.8530038"],["-117.0081293","33.8532562"],["-117.0081977","33.8534929"],["-117.0083647","33.8539585"],["-117.0085801","33.85468"],["-117.008761","33.8551874"],["-117.0089516","33.8557482"],["-117.0092839","33.8567125"],["-117.0093716","33.8569489"],["-117.0094472","33.8572304"],["-117.0094865","33.8575327"],["-117.0095029","33.8579606"],["-117.0094976","33.858328"],["-117.0094641","33.8587029"],["-117.0093595","33.8592075"],["-117.0092153","33.8596848"],["-117.0090697","33.8600536"],["-117.0089464","33.8602679"],["-117.0086696","33.8606478"],["-117.0085041","33.8609398"],["-117.0083406","33.8612516"],["-117.0081462","33.8616687"],["-117.0079059","33.8622452"],["-117.0078386","33.8625233"],["-117.0078273","33.8627611"],["-117.0078411","33.8630395"],["-117.0078963","33.8633388"],["-117.0080479","33.8638607"],["-117.0081904","33.8643368"],["-117.0082432","33.8646151"],["-117.0082701","33.8648982"],["-117.008264","33.8652642"],["-117.0082149","33.8656006"],["-117.0081304","33.8659332"],["-117.0079812","33.8662766"],["-117.0078225","33.8665169"],["-117.0076156","33.8667079"],["-117.0073694","33.8669025"],["-117.0069816","33.8671382"],["-117.0065208","33.8673593"],["-117.0049476","33.8680138"],["-117.0045515","33.8681599"],["-117.0042407","33.8682315"],["-117.0039278","33.8682841"],["-117.0035974","33.8683039"],["-117.0021742","33.8682948"],["-117.0015728","33.8682977"],["-117.0012402","33.8683366"],["-117.0009254","33.8684002"],["-117.0006163","33.8684915"],["-117.0001844","33.8686692"],["-116.9978877","33.8697822"],["-116.9975734","33.8699287"],["-116.9961778","33.8706098"],["-116.9955678","33.8709326"],["-116.9951722","33.8711894"],["-116.9948388","33.871442"],["-116.9945221","33.8717242"],["-116.9942117","33.8720453"],["-116.9939045","33.8724282"],["-116.9926195","33.8742487"],["-116.9923342","33.8747287"],["-116.992086","33.8752162"],["-116.9919281","33.8756334"],["-116.9917936","33.876053"],["-116.991704","33.8764221"],["-116.9916306","33.8768511"],["-116.9911102","33.8805981"],["-116.9907773","33.8830365"],["-116.9906784","33.883732"],["-116.9902783","33.8867029"],["-116.9901317","33.8874311"],["-116.9899158","33.8880783"],["-116.9877452","33.8934408"],["-116.9876011","33.8938705"],["-116.98751","33.8942905"],["-116.9874451","33.8948028"],["-116.9874349","33.8953411"],["-116.9874756","33.8957825"],["-116.9876844","33.8969028"],["-116.9877313","33.8972179"],["-116.9877437","33.897494"],["-116.9877252","33.8977647"],["-116.9876752","33.8980367"],["-116.9875996","33.8982933"],["-116.9875017","33.8985446"],["-116.9873781","33.8987892"],["-116.9872164","33.8990337"],["-116.9870349","33.8992584"],["-116.9868341","33.8994652"],["-116.9866138","33.899672"],["-116.9861787","33.9000862"],["-116.9859847","33.9003018"],["-116.985806","33.9005422"],["-116.985663","33.9007844"],["-116.9855383","33.9010407"],["-116.9854466","33.9013044"],["-116.9853507","33.9017031"],["-116.9847764","33.9043609"],["-116.9846004","33.9048335"],["-116.9843203","33.9053375"],["-116.9809868","33.9102991"],["-116.9796349","33.91232"],["-116.9781219","33.9145686"],["-116.9777894","33.9151194"],["-116.9775509","33.9156219"],["-116.9773185","33.9162588"],["-116.9771885","33.9167863"],["-116.9771056","33.9173229"],["-116.9770816","33.9177399"],["-116.9770988","33.9211491"],["-116.9771566","33.9217199"],["-116.977156","33.9222933"],["-116.9771506","33.9235786"],["-116.9771617","33.9261296"],["-116.9771685","33.9263621"],["-116.9771602","33.9264732"],["-116.9768603","33.9265228"],["-116.9760311","33.9266582"],["-116.9744053","33.9268323"],["-116.9732602","33.9269488"],["-116.971001","33.927096"],["-116.9696266","33.9271914"],["-116.9684308","33.9272451"],["-116.9439641","33.9266749"],["-116.9251742","33.925954"],["-116.9198651","33.9257143"],["-116.9186681","33.9255784"],["-116.9101479","33.924255"],["-116.9089106","33.9242027"],["-116.9051616","33.9241762"],["-116.904179","33.9241773"],["-116.8622222","33.9242296"],["-116.860092","33.9244155"],["-116.8588753","33.9245783"],["-116.8576072","33.9248035"],["-116.8551687","33.9253355"],["-116.8540723","33.9256326"],["-116.8530648","33.926013"],["-116.8508381","33.9269625"],["-116.8500683","33.9271646"],["-116.8487851","33.9273886"],["-116.8472034","33.9276376"],["-116.8462276","33.9278086"],["-116.8329391","33.9309227"],["-116.831885","33.9311215"],["-116.8310019","33.9312588"],["-116.8303367","33.9313425"],["-116.8297983","33.9313919"],["-116.8293384","33.931417"],["-116.8284596","33.9314331"],["-116.8279355","33.9314214"],["-116.8272717","33.9313931"],["-116.8262525","33.9313458"],["-116.8243328","33.9312434"],["-116.8233338","33.9311644"],["-116.8227639","33.9310819"],["-116.8220685","33.9309428"],["-116.8214783","33.9307918"],["-116.820934","33.9306213"],["-116.8203449","33.9303986"],["-116.8197865","33.9301542"],["-116.8192121","33.9298496"],["-116.8186112","33.9294861"],["-116.8170537","33.9283136"],["-116.8113711","33.9239187"],["-116.8106387","33.9233872"],["-116.809936","33.9229119"],["-116.8093286","33.9225495"],["-116.8086451","33.9221704"],["-116.8080395","33.9218635"],["-116.807411","33.9215712"],["-116.8025807","33.9196054"],["-116.8014141","33.9192259"],["-116.8005093","33.9190109"],["-116.7996835","33.9188519"],["-116.7989254","33.9187418"],["-116.7982912","33.9186802"],["-116.7975828","33.9186364"],["-116.7947565","33.918621"],["-116.7728058","33.9186319"],["-116.7712232","33.9187015"],["-116.7690236","33.9190122"],["-116.7602874","33.920334"],["-116.7585282","33.9205131"],["-116.7517085","33.9209989"],["-116.7477455","33.9212798"],["-116.7471851","33.9213652"],["-116.7466629","33.9214656"],["-116.7461825","33.9215771"],["-116.7456823","33.9217321"],["-116.7432434","33.9226498"],["-116.7398256","33.923946"],["-116.7387032","33.9243483"],["-116.7383447","33.9244494"],["-116.7380833","33.9245106"],["-116.737789","33.924563"],["-116.7374196","33.9246158"],["-116.7369028","33.9246704"],["-116.7362769","33.9246837"],["-116.735723","33.9246569"],["-116.7348498","33.9245435"],["-116.7152205","33.9212624"],["-116.7137873","33.9210511"],["-116.7129441","33.9209729"],["-116.7120468","33.9209296"],["-116.7111343","33.9209208"],["-116.7100941","33.9209506"],["-116.7090681","33.9210361"],["-116.7078775","33.9211956"],["-116.7067985","33.921396"],["-116.7056551","33.9216746"],["-116.6986288","33.9237451"],["-116.6966531","33.9243124"],["-116.6962132","33.9244014"],["-116.6958517","33.9244533"],["-116.6955476","33.9244853"],["-116.6950649","33.9245038"],["-116.6947383","33.9245051"],["-116.6943141","33.9244852"],["-116.6939654","33.924459"],["-116.6932323","33.9243397"],["-116.6814482","33.9223092"],["-116.6800452","33.9221678"],["-116.6795106","33.9220912"],["-116.6790619","33.9219951"],["-116.6787094","33.921891"],["-116.6783709","33.9217786"],["-116.6778989","33.92157"],["-116.6774698","33.9213374"],["-116.6769994","33.9210303"],["-116.6766791","33.9207788"],["-116.6763979","33.9205268"],["-116.6755462","33.919609"],["-116.6730276","33.9168829"],["-116.6725777","33.9164494"],["-116.6721162","33.9160695"],["-116.671534","33.9156496"],["-116.6710235","33.9153301"],["-116.6704798","33.9150311"],["-116.6699248","33.9147705"],["-116.6693559","33.9145447"],["-116.6687658","33.9143446"],["-116.6682826","33.9142102"],["-116.6673667","33.9140025"],["-116.6634294","33.9132741"],["-116.6625649","33.9131028"],["-116.6618752","33.9129254"],["-116.6612357","33.9127272"],["-116.6606705","33.9125301"],["-116.6599749","33.9122481"],["-116.6592924","33.9119297"],["-116.6586029","33.9115585"],["-116.6580021","33.9111888"],["-116.6564932","33.9100901"],["-116.652528","33.9071471"],["-116.6516257","33.9064861"],["-116.651194","33.9062083"],["-116.6507387","33.9059354"],["-116.650174","33.9056349"],["-116.6494974","33.9053083"],["-116.6486459","33.9049596"],["-116.63635","33.9005299"],["-116.6345642","33.8999552"],["-116.6334839","33.8996114"],["-116.6304929","33.8986408"],["-116.6294613","33.8983196"],["-116.6288549","33.8981606"],["-116.6285094","33.8981073"],["-116.6282078","33.8980904"],["-116.6278983","33.8980936"],["-116.6275978","33.8981194"],["-116.6272867","33.8981761"],["-116.6269858","33.8982532"],["-116.6260864","33.8985543"],["-116.6257142","33.8986661"],["-116.6254117","33.8987406"],["-116.6251086","33.8987945"],["-116.6247845","33.8988325"],["-116.6244733","33.8988583"],["-116.6241836","33.8988662"],["-116.6238453","33.8988547"],["-116.6235443","33.8988346"],["-116.623183","33.898786"],["-116.6227871","33.8987128"],["-116.6224712","33.8986286"],["-116.6221735","33.89853"],["-116.6219048","33.8984191"],["-116.6216288","33.8982905"],["-116.6213648","33.8981508"],["-116.6211108","33.8979911"],["-116.620841","33.8978032"],["-116.6198795","33.8969763"],["-116.6195237","33.8967113"],["-116.6191669","33.8964804"],["-116.5903776","33.8795742"],["-116.5899632","33.8792846"],["-116.5893378","33.8787884"],["-116.5885724","33.8781999"],["-116.5759684","33.8689269"],["-116.5752709","33.8684602"],["-116.5745115","33.8680168"],["-116.5601845","33.8606749"],["-116.5597084","33.8603965"],["-116.5593428","33.8601433"],["-116.5590004","33.85987"],["-116.5586111","33.8595055"],["-116.5574286","33.8582544"],["-116.5573865","33.8582184"],["-116.5572914","33.8582127"],["-116.5572269","33.8581515"],["-116.5568438","33.8577494"],["-116.5562954","33.857171"],["-116.5541769","33.8549248"],["-116.5528389","33.8535217"],["-116.5475288","33.8479249"],["-116.5472938","33.8475993"],["-116.5471759","33.8473962"],["-116.5470796","33.847211"],["-116.5470237","33.8470562"],["-116.546996","33.8469914"],["-116.5469355","33.8468075"],["-116.5468582","33.8465437"],["-116.5468227","33.846379"],["-116.5467979","33.8462505"],["-116.546777","33.846008"],["-116.546765","33.8454389"],["-116.5467539","33.8448684"],["-116.546117","33.8448617"],["-116.5459401","33.8448704"],["-116.5456049","33.8448639"],["-116.5456039","33.8433864"],["-116.5455993","33.8430106"],["-116.5455862","33.8418896"],["-116.5455746","33.8407267"],["-116.5456046","33.8383625"],["-116.545559","33.8339916"],["-116.541261","33.83392"],["-116.5411988","33.8321837"]] } }; 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': '#522A7A', '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: [["-117.1569353","32.7168039"],["-117.1547124","32.7168114"],["-117.1547594","32.7217824"],["-117.154774","32.7220779"],["-117.1548129","32.7223417"],["-117.1549004","32.7226972"],["-117.1551737","32.7236115"],["-117.1556685","32.7251355"],["-117.1557947","32.7255998"],["-117.1558502","32.7258907"],["-117.1558875","32.7261711"],["-117.1559036","32.726513"],["-117.1559058","32.726782"],["-117.1558921","32.7270036"],["-117.1558687","32.7271916"],["-117.1558158","32.7274065"],["-117.1557508","32.7276009"],["-117.155601","32.7279235"],["-117.1550809","32.7288574"],["-117.1547096","32.7295369"],["-117.1545769","32.7298191"],["-117.1545127","32.7300205"],["-117.1544505","32.7302327"],["-117.1544031","32.7304731"],["-117.1543805","32.7306796"],["-117.1543654","32.7309177"],["-117.1543728","32.7312105"],["-117.1544111","32.7315041"],["-117.154457","32.7317011"],["-117.1545178","32.7319315"],["-117.1546077","32.7321774"],["-117.154713","32.7324145"],["-117.1551967","32.7332578"],["-117.1554006","32.7336231"],["-117.1555148","32.7338779"],["-117.1556442","32.7342321"],["-117.1557024","32.7345185"],["-117.1557481","32.7349111"],["-117.1557624","32.7351454"],["-117.1557549","32.7354034"],["-117.1557366","32.7358383"],["-117.1557351","32.7362103"],["-117.1557406","32.7366103"],["-117.1558157","32.7374755"],["-117.1558775","32.7379803"],["-117.1562338","32.7398746"],["-117.1563238","32.740576"],["-117.1563592","32.7410326"],["-117.1563719","32.7413563"],["-117.1563363","32.7420045"],["-117.1562167","32.7433575"],["-117.1562132","32.7437744"],["-117.1562286","32.7441504"],["-117.1564019","32.7455461"],["-117.1564627","32.7461165"],["-117.1564663","32.7464008"],["-117.1564448","32.7466286"],["-117.156398","32.7468808"],["-117.1562344","32.747379"],["-117.1558228","32.7485361"],["-117.1553013","32.7500693"],["-117.1552754","32.7502467"],["-117.1552698","32.7504115"],["-117.1552854","32.750639"],["-117.1553451","32.7508916"],["-117.155429","32.7511281"],["-117.1556218","32.7514599"],["-117.1558179","32.7516961"],["-117.1559717","32.7518487"],["-117.1563019","32.7521049"],["-117.1567713","32.7524206"],["-117.1571058","32.7526575"],["-117.1573524","32.7528513"],["-117.1575881","32.75307"],["-117.1577917","32.7532922"],["-117.1579734","32.7535256"],["-117.1581697","32.7538216"],["-117.1583213","32.7541036"],["-117.1584511","32.7544002"],["-117.1585481","32.7546833"],["-117.1587299","32.7553905"],["-117.1588243","32.755701"],["-117.1589337","32.7560062"],["-117.1590862","32.7563292"],["-117.1592587","32.7566523"],["-117.159439","32.7569395"],["-117.1596841","32.7572797"],["-117.1599601","32.7575939"],["-117.1602641","32.7578989"],["-117.1615665","32.7590632"],["-117.1621405","32.7595869"],["-117.1624342","32.7599205"],["-117.162728","32.760349"],["-117.1629162","32.7607523"],["-117.1629552","32.7612128"],["-117.162937","32.7614406"],["-117.1628432","32.7616549"],["-117.1626892","32.7618499"],["-117.1623568","32.7621412"],["-117.1613334","32.7628228"],["-117.1607591","32.7632002"],["-117.1601313","32.7635303"],["-117.1597001","32.7636816"],["-117.1593733","32.763776"],["-117.1579497","32.7641419"],["-117.154921","32.764943"],["-117.1540762","32.7652345"],["-117.1502751","32.7661896"],["-117.149095","32.7664925"],["-117.147602","32.7668777"],["-117.1468802","32.7670939"],["-117.146422","32.7672527"],["-117.1460166","32.7674043"],["-117.145686","32.7675396"],["-117.1433081","32.7685899"],["-117.1426775","32.7688523"],["-117.1421032","32.7690708"],["-117.140441","32.7696498"],["-117.1394287","32.7699538"],["-117.1382968","32.7702464"],["-117.1322185","32.7716204"],["-117.1312916","32.7718441"],["-117.13054","32.7720412"],["-117.1300091","32.7721995"],["-117.129481","32.7723817"],["-117.1287364","32.7726883"],["-117.1264312","32.7738153"],["-117.1222046","32.7760896"],["-117.1197893","32.7773991"],["-117.1186425","32.7778668"],["-117.1175709","32.7781631"],["-117.1169274","32.7782998"],["-117.1164329","32.778375"],["-117.1160224","32.7784182"],["-117.1155362","32.778457"],["-117.1151004","32.7784876"],["-117.1059744","32.778643"],["-117.1032757","32.7787925"],["-117.1024821","32.7788523"],["-117.101499","32.7789328"],["-117.0987057","32.7793967"],["-117.0973303","32.7796391"],["-117.0945717","32.7801304"],["-117.0932968","32.7803099"],["-117.0909316","32.7805074"],["-117.0900266","32.7805535"],["-117.086961","32.7806539"],["-117.0858135","32.7806166"],["-117.0829088","32.7802397"],["-117.0816417","32.7800669"],["-117.0789516","32.7797226"],["-117.0757096","32.7793034"],["-117.0749534","32.7792399"],["-117.0738022","32.779175"],["-117.0729432","32.7791739"],["-117.068678","32.7792449"],["-117.0678662","32.7792647"],["-117.0648079","32.7793746"],["-117.0644098","32.7793492"],["-117.063669","32.779266"],["-117.0630656","32.7791636"],["-117.0618846","32.7788084"],["-117.0599886","32.7782554"],["-117.0584262","32.7778736"],["-117.0531377","32.7769003"],["-117.0521019","32.7766717"],["-117.0506973","32.7762687"],["-117.0500235","32.7760284"],["-117.0494825","32.7758063"],["-117.047717","32.774971"],["-117.0462652","32.7742092"],["-117.0444245","32.7733045"],["-117.0439103","32.7730737"],["-117.0434713","32.7729186"],["-117.0429435","32.7727565"],["-117.0424015","32.7726497"],["-117.0417442","32.7725393"],["-117.0409506","32.7724995"],["-117.0401516","32.7725371"],["-117.0393326","32.7726849"],["-117.037745","32.7730663"],["-117.0361538","32.7734532"],["-117.0353027","32.7736579"],["-117.0345338","32.7738317"],["-117.0342082","32.7738869"],["-117.033843","32.7739277"],["-117.0335145","32.7739471"],["-117.0334149","32.7739503"],["-117.0333171","32.7739501"],["-117.0330931","32.7739463"],["-117.0327904","32.7739372"],["-117.0324813","32.7739153"],["-117.0320667","32.7738581"],["-117.0316188","32.7737748"],["-117.0311936","32.7736778"],["-117.0307558","32.7735357"],["-117.0300479","32.7732559"],["-117.0266492","32.7717432"],["-117.0261258","32.7714999"],["-117.0256714","32.771321"],["-117.0252262","32.7711661"],["-117.0246846","32.7710259"],["-117.0238775","32.7708951"],["-117.0233246","32.7708444"],["-117.0222328","32.7708116"],["-117.0210743","32.7709254"],["-117.0205014","32.7710327"],["-117.0197304","32.7712233"],["-117.0191306","32.7714256"],["-117.0185852","32.7716453"],["-117.0157053","32.7730928"],["-117.0153211","32.7732604"],["-117.0145853","32.77354"],["-117.0129373","32.7741551"],["-117.0114857","32.7746914"],["-117.0090363","32.7755631"],["-117.0042681","32.7772778"],["-117.0038093","32.7774589"],["-117.0032873","32.7777015"],["-117.0023035","32.7782362"],["-117.0012664","32.7787034"],["-117.0008918","32.778837"],["-117.000432","32.7789643"],["-116.9999298","32.7790843"],["-116.9993843","32.7791789"],["-116.9987006","32.7792337"],["-116.9966746","32.7791754"],["-116.9948251","32.7790877"],["-116.9866383","32.7788614"],["-116.9858664","32.7788783"],["-116.9855483","32.7789292"],["-116.98529","32.7789754"],["-116.9850122","32.7790391"],["-116.984705","32.7791222"],["-116.984358","32.7792369"],["-116.9837108","32.7795514"],["-116.983236","32.7798227"],["-116.9826695","32.7802633"],["-116.9824779","32.780442"],["-116.9823004","32.7806314"],["-116.9820854","32.7808852"],["-116.9818634","32.7811927"],["-116.9816311","32.7815793"],["-116.9804575","32.7836668"],["-116.980165","32.7841596"],["-116.9799663","32.7844595"],["-116.9797261","32.7847913"],["-116.9794143","32.7851919"],["-116.9789552","32.7857646"],["-116.9784813","32.7863915"],["-116.9781929","32.7869124"],["-116.977968","32.7873913"],["-116.9778443","32.7877712"],["-116.9776879","32.7885487"],["-116.9776653","32.7893935"],["-116.9776617","32.7912582"],["-116.9776253","32.7916615"],["-116.9775356","32.7923464"],["-116.9767333","32.7973702"],["-116.9766571","32.7977372"],["-116.9765419","32.7981493"],["-116.9763003","32.7987536"],["-116.976075","32.7992289"],["-116.9758286","32.7996209"],["-116.9755287","32.8000253"],["-116.9752093","32.8003839"],["-116.9747714","32.800847"],["-116.9742528","32.8012835"],["-116.9737941","32.8015939"],["-116.9733796","32.8018496"],["-116.9728575","32.8021178"],["-116.9722383","32.8024029"],["-116.9716856","32.8025787"],["-116.9712156","32.8027177"],["-116.9708397","32.8028049"],["-116.9702716","32.8028705"],["-116.9693578","32.8029317"],["-116.9673488","32.8029534"],["-116.9286118","32.8029696"],["-116.9273118","32.8029911"],["-116.9267151","32.8030524"],["-116.9262078","32.8031253"],["-116.9258124","32.8032007"],["-116.9252751","32.8033271"],["-116.9250274","32.8033972"],["-116.9247067","32.8035002"],["-116.9243664","32.8036172"],["-116.9239803","32.8037677"],["-116.9235858","32.8039431"],["-116.9232468","32.8041043"],["-116.9229149","32.8042921"],["-116.922581","32.8044904"],["-116.9222658","32.8046954"],["-116.9219554","32.8049078"],["-116.9213782","32.8053774"],["-116.921078","32.8056558"],["-116.920822","32.8059219"],["-116.9205766","32.8061951"],["-116.9203315","32.8065016"],["-116.9199366","32.8070504"],["-116.9196437","32.8075058"],["-116.9192431","32.8081606"],["-116.9175301","32.8109642"],["-116.9164618","32.8126916"],["-116.9161719","32.8131134"],["-116.9159062","32.8134441"],["-116.9155036","32.8139057"],["-116.9147871","32.8145995"],["-116.9135251","32.8157998"],["-116.9122928","32.8169746"],["-116.9116084","32.8176649"],["-116.9112757","32.8180495"],["-116.9109851","32.8184166"],["-116.9106371","32.8189468"],["-116.909836","32.8204274"],["-116.9093912","32.8211825"],["-116.9090651","32.8216649"],["-116.9086475","32.8222149"],["-116.9084317","32.8224577"],["-116.9080594","32.8228285"],["-116.9075537","32.8232775"],["-116.9068432","32.8238224"],["-116.9056378","32.8246957"],["-116.8985764","32.8300217"],["-116.8971052","32.8311948"],["-116.8954316","32.8326932"],["-116.8854194","32.8422091"],["-116.8841805","32.8431962"],["-116.8835803","32.8435812"],["-116.8830085","32.8438825"],["-116.8824977","32.8441082"],["-116.8818584","32.8443411"],["-116.8813124","32.8444962"],["-116.8776717","32.8452998"],["-116.8771586","32.8454495"],["-116.8763282","32.8457371"],["-116.8756594","32.8460328"],["-116.8750432","32.8463597"],["-116.8744746","32.8467277"],["-116.8740177","32.8470526"],["-116.8732668","32.8477102"],["-116.8709074","32.8499693"],["-116.8700029","32.8507952"],["-116.8693869","32.8512402"],["-116.868734","32.8516439"],["-116.8681009","32.8519745"],["-116.8669057","32.8524274"],["-116.8638957","32.853379"],["-116.8623441","32.853837"],["-116.8613607","32.8539992"],["-116.8604864","32.8540722"],["-116.8596229","32.8540877"],["-116.8584364","32.8540018"],["-116.8516385","32.8531775"],["-116.8500062","32.852986"],["-116.8490959","32.852897"],["-116.8482844","32.8528377"],["-116.8473202","32.8528038"],["-116.8464219","32.8528049"],["-116.8452157","32.8528335"],["-116.8435142","32.8529469"],["-116.8412703","32.853168"],["-116.8396993","32.8534006"],["-116.8391234","32.8535275"],["-116.8385081","32.8536955"],["-116.8372747","32.8541518"],["-116.834993","32.8550435"],["-116.8336271","32.8555326"],["-116.8320197","32.8559824"],["-116.8312922","32.8561217"],["-116.8306284","32.8562286"],["-116.8298935","32.8563291"],["-116.82825","32.85643"],["-116.8180101","32.8568496"],["-116.8177714","32.8568504"],["-116.8175551","32.856845"],["-116.8173192","32.8568342"],["-116.8170464","32.8568137"],["-116.8167802","32.8567855"],["-116.8165339","32.8567529"],["-116.8163155","32.8567168"],["-116.8160711","32.8566675"],["-116.8152834","32.8564554"],["-116.8148104","32.8562926"],["-116.8142758","32.8560768"],["-116.8136048","32.8557358"],["-116.8130622","32.8553832"],["-116.8127195","32.8551552"],["-116.8123938","32.8549143"],["-116.8121137","32.8546787"],["-116.8116246","32.8541837"],["-116.8110834","32.853469"],["-116.8085194","32.8498961"],["-116.808175","32.849478"],["-116.8078518","32.8491435"],["-116.8074598","32.848795"],["-116.8066296","32.8481112"],["-116.8065317","32.8480341"],["-116.8064204","32.8479526"],["-116.805381","32.8471947"],["-116.8033959","32.8457233"],["-116.802565","32.8451402"],["-116.8019872","32.8447968"],["-116.8012628","32.8444103"],["-116.8004873","32.8440849"],["-116.791026","32.8406989"],["-116.7878838","32.8396011"],["-116.7872993","32.8394526"],["-116.7867605","32.8393423"],["-116.7862573","32.8392691"],["-116.7856837","32.8392054"],["-116.7850773","32.8391596"],["-116.7845182","32.839154"],["-116.7840239","32.8391717"],["-116.7835403","32.8392058"],["-116.7830669","32.8392517"],["-116.7778479","32.8401123"],["-116.7771789","32.8401945"],["-116.7767405","32.8402171"],["-116.7762937","32.8402126"],["-116.7759632","32.840191"],["-116.7756467","32.8401576"],["-116.7750798","32.84007"],["-116.7719868","32.839597"],["-116.7629026","32.8382063"],["-116.7607321","32.8378096"],["-116.7506437","32.8350007"],["-116.7497744","32.8348074"],["-116.7488575","32.834637"],["-116.7479637","32.8345255"],["-116.746966","32.834438"],["-116.7459199","32.8344123"],["-116.7449821","32.8344293"],["-116.7431495","32.8345612"],["-116.7415291","32.8346811"],["-116.7404588","32.8347523"],["-116.7400303","32.8347669"],["-116.7396523","32.8347714"],["-116.7389794","32.834747"],["-116.7385387","32.8347148"],["-116.738152","32.8346777"],["-116.7374746","32.8345872"],["-116.7336463","32.8339828"],["-116.7321974","32.8337561"],["-116.7317358","32.8337012"],["-116.7313198","32.8336674"],["-116.7308734","32.8336502"],["-116.7303106","32.8336375"],["-116.7298233","32.8336431"],["-116.729227","32.8336687"],["-116.7275576","32.8337721"],["-116.7268853","32.8338039"],["-116.7263523","32.8338045"],["-116.7256639","32.8337672"],["-116.7230372","32.8335049"],["-116.7222952","32.8334756"],["-116.7217108","32.8334969"],["-116.7211452","32.8335394"],["-116.7205828","32.8336456"],["-116.72014","32.8337396"],["-116.7196923","32.8338649"],["-116.719224","32.8340306"],["-116.7185618","32.8343617"],["-116.7177131","32.8348398"],["-116.7170414","32.8352233"],["-116.7164479","32.8355423"],["-116.7158416","32.8358215"],["-116.7153058","32.8360366"],["-116.7148072","32.8362097"],["-116.7141596","32.8363974"],["-116.7109063","32.8370177"],["-116.7058439","32.837951"],["-116.7025272","32.8384799"],["-116.7020681","32.8385111"],["-116.7012919","32.8385423"],["-116.689566","32.8385849"],["-116.6860488","32.8385746"],["-116.6853902","32.8385391"],["-116.6816838","32.8381174"],["-116.6769666","32.837564"],["-116.6759136","32.8374979"],["-116.6750641","32.8374773"],["-116.6733247","32.8376672"],["-116.6698612","32.8381602"],["-116.6690566","32.8381988"],["-116.6682141","32.8382274"],["-116.6666336","32.8381799"],["-116.6659562","32.8381168"],["-116.665244","32.8380225"],["-116.6640065","32.8377909"],["-116.6622013","32.8374347"],["-116.6612136","32.8373343"],["-116.6606102","32.8373119"],["-116.6600411","32.8373146"],["-116.6595124","32.8373368"],["-116.6587261","32.8374087"],["-116.6546425","32.8380231"],["-116.6533493","32.8381776"],["-116.6524329","32.8382056"],["-116.651614","32.8381829"],["-116.6508293","32.8381302"],["-116.6501757","32.8380651"],["-116.6487146","32.837771"],["-116.6399443","32.8358072"],["-116.6391568","32.835591"],["-116.6384561","32.8353787"],["-116.633692","32.8337501"],["-116.6318843","32.8331"],["-116.6311621","32.8327361"],["-116.6306822","32.8324687"],["-116.6301837","32.8321375"],["-116.6295194","32.8316608"],["-116.6289702","32.8311479"],["-116.6285409","32.8307285"],["-116.6282223","32.8303903"],["-116.6278515","32.8299387"],["-116.6267846","32.8285029"],["-116.6261678","32.8277296"],["-116.6252921","32.8267504"],["-116.6249039","32.8263869"],["-116.6241944","32.8257854"],["-116.6235387","32.8253175"],["-116.6228785","32.8248907"],["-116.6223789","32.8246031"],["-116.6218912","32.8243504"],["-116.6212243","32.8240395"],["-116.6205638","32.8237646"],["-116.6199533","32.8235444"],["-116.6192976","32.8233592"],["-116.6175119","32.823042"],["-116.6168408","32.8229516"],["-116.6159529","32.8229392"],["-116.6150205","32.8229452"],["-116.6142892","32.8230038"],["-116.6132874","32.823129"],["-116.6112573","32.8234418"],["-116.6099368","32.823609"],["-116.6091595","32.8236855"],["-116.6081118","32.82376"],["-116.6059493","32.82377"],["-116.6046579","32.8237227"],["-116.60353","32.8236175"],["-116.6023352","32.8234723"],["-116.6012152","32.8232944"],["-116.5998895","32.8230132"],["-116.5983256","32.8226139"],["-116.5970572","32.8222603"],["-116.5954352","32.8217793"],["-116.5919938","32.8207822"],["-116.5859113","32.8190454"],["-116.5842619","32.8186313"],["-116.583625","32.8185143"],["-116.5822047","32.8183948"],["-116.5813067","32.8184231"],["-116.5799409","32.8185639"],["-116.5788922","32.8187765"],["-116.5776521","32.8190624"],["-116.57501","32.8196739"],["-116.5724901","32.8202593"],["-116.571256","32.8205735"],["-116.5703561","32.8209129"],["-116.5685712","32.8217043"],["-116.566986","32.8224096"],["-116.5665769","32.8225487"],["-116.5658952","32.8227141"],["-116.5644922","32.822962"],["-116.563986","32.8230295"],["-116.5564203","32.8230475"],["-116.555674","32.822981"],["-116.5548826","32.8228812"],["-116.5540187","32.8227054"],["-116.5530495","32.822417"],["-116.5521484","32.8220262"],["-116.5509053","32.8213712"],["-116.5483481","32.8197614"],["-116.5471358","32.8190376"],["-116.5463171","32.8186745"],["-116.5455598","32.8184186"],["-116.5448118","32.8182234"],["-116.5440688","32.8180904"],["-116.5433002","32.8179881"],["-116.5425193","32.8179285"],["-116.5416578","32.8179171"],["-116.5408278","32.8180014"],["-116.5400487","32.8180595"],["-116.5385832","32.8181831"],["-116.538033","32.8182159"],["-116.536938","32.8181719"],["-116.5366231","32.8181494"],["-116.5361151","32.818085"],["-116.535814","32.8180345"],["-116.5355396","32.8179789"],["-116.5352223","32.8178993"],["-116.5343205","32.8175936"],["-116.5329648","32.8171209"],["-116.5327421","32.8170916"],["-116.5326925","32.8173729"],["-116.5326179","32.8178858"],["-116.5323096","32.8199779"],["-116.5322183","32.8205115"],["-116.5321395","32.8208286"],["-116.5320817","32.8209912"],["-116.5319844","32.8212256"],["-116.5318253","32.821543"],["-116.5316347","32.8218917"],["-116.5313044","32.8223459"],["-116.531014","32.8226778"],["-116.5308973","32.822756"],["-116.5304901","32.8224122"],["-116.5299666","32.8220447"],["-116.5271845","32.8202995"],["-116.5257647","32.819424"],["-116.5253363","32.8196907"],["-116.5252393","32.8198368"],["-116.5251999","32.8200043"],["-116.5256793","32.8203616"],["-116.5258109","32.8204721"],["-116.5259065","32.820594"],["-116.5259701","32.8207242"],["-116.526338","32.8217191"],["-116.526347","32.8220701"],["-116.5260338","32.8231026"],["-116.5260172","32.8234576"],["-116.5260383","32.8235322"],["-116.5260755","32.8236406"],["-116.5262436","32.8241058"],["-116.5262584","32.8242979"],["-116.5262362","32.824445"],["-116.5261936","32.824546"],["-116.5261164","32.8247259"],["-116.5259562","32.8250043"],["-116.5258889","32.8251585"],["-116.525866","32.8253356"],["-116.5258841","32.8255973"],["-116.5259486","32.8260226"],["-116.5260417","32.8265191"],["-116.5261484","32.8269238"],["-116.5261484","32.8270295"],["-116.5260337","32.8273947"],["-116.5258346","32.8279054"],["-116.5257953","32.828036"],["-116.5258037","32.8281877"],["-116.5259362","32.8284965"],["-116.5261099","32.828606"],["-116.5266776","32.8286098"],["-116.5267519","32.8286236"],["-116.5268601","32.8286926"],["-116.5269363","32.8287875"],["-116.5273163","32.8286013"],["-116.5281199","32.8284413"],["-116.5282574","32.8283595"],["-116.5283392","32.8282428"],["-116.5283499","32.8281253"],["-116.5283371","32.8280682"],["-116.5283082","32.8279904"],["-116.5281734","32.8278849"],["-116.527903","32.827791"],["-116.5277765","32.8277166"],["-116.5276119","32.8275684"],["-116.5274596","32.827502"],["-116.5271158","32.8274929"],["-116.5269494","32.827432"],["-116.5268419","32.827312"],["-116.5267735","32.8271253"],["-116.5267361","32.8270758"],["-116.5266928","32.8270557"],["-116.5261829","32.8270135"],["-116.5261479","32.8269212"],["-116.5260401","32.8265135"],["-116.5259464","32.8260083"],["-116.525884","32.8255972"],["-116.5258657","32.8253383"],["-116.5258888","32.8251584"],["-116.5259564","32.8250041"],["-116.5261178","32.8247233"],["-116.5261954","32.8245418"],["-116.5262369","32.8244433"],["-116.5262587","32.8242974"],["-116.5262438","32.8241061"],["-116.5260783","32.8236486"],["-116.5260384","32.8235314"],["-116.5260171","32.8234593"],["-116.5260318","32.8231099"],["-116.5263504","32.8220569"],["-116.5263369","32.8217139"],["-116.5259703","32.8207254"],["-116.5259071","32.8205953"],["-116.5258105","32.8204716"],["-116.5256802","32.8203625"],["-116.5252021","32.8200066"],["-116.5252393","32.8198365"],["-116.5253338","32.8196933"],["-116.5256568","32.8193542"],["-116.5251549","32.8190035"],["-116.5249015","32.8188444"],["-116.5244288","32.8185932"],["-116.5241965","32.8184804"],["-116.5239811","32.8183916"],["-116.5233655","32.8181987"],["-116.5228079","32.8180841"],["-116.5208329","32.8178728"],["-116.5204619","32.8178162"],["-116.5201093","32.8177247"],["-116.5193841","32.8174473"],["-116.5093021","32.8129883"],["-116.5090152","32.8134129"],["-116.5088916","32.8136527"],["-116.5088128","32.8139049"],["-116.508624","32.8149886"],["-116.5086225","32.8152978"],["-116.5086643","32.8154433"],["-116.5087949","32.815674"],["-116.5089427","32.8158322"],["-116.5095145","32.8163289"],["-116.5096812","32.816533"],["-116.5097847","32.8167701"],["-116.5098161","32.8170203"],["-116.5097913","32.8175478"],["-116.5098059","32.8177125"],["-116.509859","32.8178694"],["-116.5100848","32.8183058"],["-116.5101595","32.8185688"],["-116.5101679","32.8187709"],["-116.5101379","32.8189486"],["-116.5100934","32.8190941"],["-116.5100315","32.8192061"],["-116.5099434","32.8193168"],["-116.5097503","32.8195007"],["-116.5092226","32.8198442"],["-116.5090997","32.8199472"],["-116.5089644","32.8201577"],["-116.5085143","32.8213626"],["-116.5084238","32.8215437"],["-116.5082849","32.8217224"],["-116.508004","32.8219349"],["-116.5076881","32.8220665"],["-116.5074678","32.8221068"],["-116.5071596","32.8221073"],["-116.5064867","32.8220344"],["-116.5060787","32.8220521"],["-116.5057097","32.8221429"],["-116.5053726","32.8222975"],["-116.5052014","32.822418"],["-116.504996","32.8226165"],["-116.504887","32.8227544"],["-116.5047572","32.8229897"],["-116.5044497","32.8239923"],["-116.5043302","32.8242185"],["-116.5041725","32.8243878"],["-116.503988","32.8245265"],["-116.5037756","32.8246309"],["-116.5036065","32.8246776"],["-116.5026207","32.8248663"],["-116.5022674","32.8249194"],["-116.5020018","32.8249211"],["-116.501677","32.8248713"],["-116.5010897","32.8246693"],["-116.5004149","32.8244321"],["-116.5001198","32.8243859"],["-116.499866","32.824408"],["-116.4995793","32.8244995"],["-116.4986042","32.8249581"],["-116.4982861","32.8250861"],["-116.4980944","32.8251258"],["-116.4977972","32.8251557"],["-116.4972793","32.8251728"],["-116.4970904","32.8252012"],["-116.4969117","32.8252534"],["-116.4966788","32.8253558"],["-116.4964904","32.8254764"],["-116.4963333","32.8256252"],["-116.4962036","32.8257866"],["-116.496096","32.826016"],["-116.4953133","32.8279713"],["-116.4952495","32.828217"],["-116.4952491","32.8284387"],["-116.4952971","32.828722"],["-116.4953787","32.8290173"],["-116.4955102","32.8292647"],["-116.4957717","32.8296982"],["-116.4958845","32.8299774"],["-116.4959308","32.830272"],["-116.4959205","32.8307568"],["-116.4959508","32.8309848"],["-116.4960193","32.8312444"],["-116.4961902","32.831694"],["-116.4962758","32.8319486"],["-116.4962929","32.8321801"],["-116.4962792","32.8323872"],["-116.4959776","32.8334009"],["-116.4959377","32.8336862"],["-116.4959707","32.8340771"],["-116.4960537","32.834446"],["-116.4961519","32.8347445"],["-116.4966148","32.835889"],["-116.4967144","32.8362058"],["-116.496745","32.8364259"],["-116.4967156","32.8367305"],["-116.4966548","32.8369033"],["-116.4965239","32.8371388"],["-116.4961865","32.8374586"],["-116.4959241","32.837627"],["-116.4954779","32.8378822"],["-116.4952538","32.8380434"],["-116.4951897","32.8381204"],["-116.4950687","32.8383585"],["-116.4950419","32.8384731"],["-116.4950499","32.8386454"],["-116.4952009","32.8391515"],["-116.4952597","32.8394083"],["-116.4952579","32.8396465"],["-116.4952047","32.8400864"],["-116.4952204","32.8404305"],["-116.4953329","32.8407824"],["-116.4955151","32.8412129"],["-116.4955995","32.8413815"],["-116.4956786","32.8416381"],["-116.4957079","32.8419798"],["-116.4956552","32.8422764"],["-116.4955054","32.8426027"],["-116.4953063","32.8428621"],["-116.4948254","32.8433222"],["-116.4946412","32.8435356"],["-116.4945614","32.8437185"],["-116.4945227","32.8439361"],["-116.4944914","32.8443724"],["-116.4944499","32.8446248"],["-116.494346","32.8448273"],["-116.4942196","32.8449848"],["-116.49407","32.8451234"],["-116.4935907","32.8455107"],["-116.4934087","32.8456372"],["-116.493138","32.8457823"],["-116.4928732","32.8458816"],["-116.4923114","32.8459922"],["-116.49025","32.8462735"],["-116.4898125","32.8462812"],["-116.4894973","32.8462126"],["-116.4887286","32.846006"],["-116.4884391","32.8459446"],["-116.4882355","32.84593"],["-116.4879539","32.8459424"],["-116.4876774","32.845992"],["-116.4874042","32.8460798"],["-116.4872568","32.8461498"],["-116.4870017","32.8463087"],["-116.4868232","32.8464648"],["-116.4861714","32.8471837"],["-116.4859931","32.8474334"],["-116.4858956","32.8476501"],["-116.4858447","32.8478574"],["-116.485774","32.8484719"],["-116.4857282","32.8487123"],["-116.4856132","32.8489942"],["-116.4855388","32.8491155"],["-116.4854463","32.849242"],["-116.4851778","32.8495178"],["-116.4850348","32.8496426"],["-116.4846787","32.8498249"],["-116.4839858","32.8501331"],["-116.4837112","32.8503159"],["-116.4824593","32.8515625"],["-116.4821593","32.8518108"],["-116.4820144","32.8518984"],["-116.4816493","32.8520796"],["-116.4813827","32.8521645"],["-116.4809839","32.8522402"],["-116.4797813","32.8523054"],["-116.4793537","32.8523313"],["-116.4792106","32.8523479"],["-116.4789868","32.8524054"],["-116.4787375","32.8524725"],["-116.4784996","32.85258"],["-116.4782813","32.852706"],["-116.4780303","32.8529057"],["-116.4778147","32.8531454"],["-116.4773874","32.8537197"],["-116.477125","32.8540246"],["-116.4768572","32.8542746"],["-116.4763904","32.8546062"],["-116.4759367","32.8548433"],["-116.4755565","32.8549888"],["-116.4749101","32.8551359"],["-116.4723796","32.8555172"],["-116.471527","32.8556307"],["-116.4711237","32.8556414"],["-116.4708661","32.8556283"],["-116.4704375","32.855566"],["-116.4691941","32.8552519"],["-116.4688627","32.8552049"],["-116.4686513","32.8551998"],["-116.4684303","32.855219"],["-116.4680335","32.8552986"],["-116.4677486","32.8553763"],["-116.4675012","32.8554666"],["-116.4672412","32.8555887"],["-116.4669724","32.8557608"],["-116.4664142","32.8562047"],["-116.4661698","32.8563631"],["-116.4659589","32.85647"],["-116.4651469","32.8567665"],["-116.4648595","32.8568912"],["-116.4645479","32.857071"],["-116.4643664","32.8572036"],["-116.4641357","32.8574124"],["-116.4639941","32.8575704"],["-116.463666","32.8581093"],["-116.4631225","32.8590468"],["-116.4618995","32.8612346"],["-116.4617708","32.8614253"],["-116.4616324","32.8615913"],["-116.4613949","32.861793"],["-116.4612206","32.8619057"],["-116.4610438","32.8619923"],["-116.4607112","32.8621128"],["-116.4604686","32.8621619"],["-116.460296","32.8621815"],["-116.4599102","32.8621792"],["-116.4595199","32.8621076"],["-116.4593138","32.862044"],["-116.4591358","32.8619663"],["-116.4589497","32.8618628"],["-116.4587055","32.8616844"],["-116.458502","32.8614726"],["-116.4582918","32.8611393"],["-116.458235","32.8609995"],["-116.4581628","32.860678"],["-116.4580209","32.8595728"],["-116.4578812","32.8586936"],["-116.4577873","32.8583603"],["-116.4576981","32.8581727"],["-116.4575235","32.8579105"],["-116.4572838","32.8576596"],["-116.4569755","32.8574247"],["-116.4559564","32.8568338"],["-116.455631","32.8565818"],["-116.455353","32.8563197"],["-116.4551862","32.8561267"],["-116.4549676","32.8558191"],["-116.4547576","32.8554031"],["-116.4544121","32.8545766"],["-116.4542033","32.8541701"],["-116.4540213","32.8538717"],["-116.4537118","32.8534915"],["-116.4535063","32.8532799"],["-116.453224","32.8530248"],["-116.4527896","32.8527109"],["-116.4516804","32.8520009"],["-116.4512906","32.851703"],["-116.4509911","32.8514139"],["-116.4504855","32.8507552"],["-116.4491363","32.8488585"],["-116.4486203","32.8482202"],["-116.4482","32.8478197"],["-116.4474946","32.8472059"],["-116.4467458","32.8465665"],["-116.4463539","32.8462757"],["-116.4456619","32.8459008"],["-116.4431808","32.8448157"],["-116.4428792","32.8447017"],["-116.4424549","32.844588"],["-116.4420054","32.8445133"],["-116.441623","32.8444853"],["-116.4412223","32.8444915"],["-116.4406015","32.8445705"],["-116.4400826","32.8446983"],["-116.439548","32.8449132"],["-116.4392413","32.8450748"],["-116.4388266","32.8453539"],["-116.4384757","32.8456627"],["-116.4379031","32.846227"],["-116.437605","32.846489"],["-116.4373483","32.8466673"],["-116.43686","32.8469635"],["-116.4363889","32.8471801"],["-116.4360739","32.847295"],["-116.4357526","32.847384"],["-116.435279","32.8474903"],["-116.4349736","32.8475346"],["-116.4342835","32.8475644"],["-116.4325994","32.8475474"],["-116.4317733","32.8475633"],["-116.4312812","32.8476128"],["-116.4306786","32.8477168"],["-116.4290502","32.8480593"],["-116.4270948","32.8484659"],["-116.4264735","32.848617"],["-116.4262575","32.8486981"],["-116.4258525","32.8489126"],["-116.4255745","32.8491137"],["-116.4252586","32.8494134"],["-116.4250959","32.8496309"],["-116.424595","32.8503944"],["-116.4242222","32.8508371"],["-116.4238558","32.8511778"],["-116.4233432","32.8515893"],["-116.4231789","32.8517614"],["-116.4230364","32.8519647"],["-116.4228074","32.8525141"],["-116.4227116","32.8528995"],["-116.4227087","32.8533969"],["-116.4227537","32.8536103"],["-116.4229385","32.8542325"],["-116.4231707","32.8553325"],["-116.423185","32.8555463"],["-116.4231788","32.8560889"],["-116.4231549","32.8563426"],["-116.4230971","32.8566812"],["-116.4229793","32.8571559"],["-116.422698","32.8578629"],["-116.4219","32.859523"],["-116.4216137","32.8600055"],["-116.4212256","32.860536"],["-116.4207982","32.8610426"],["-116.4205392","32.8613614"],["-116.4203901","32.861616"],["-116.4203087","32.8618199"],["-116.4202169","32.8621655"],["-116.4201981","32.8623176"],["-116.4201993","32.8626308"],["-116.420299","32.8631727"],["-116.4205162","32.8642463"],["-116.4205386","32.8645206"],["-116.4205322","32.8646482"],["-116.4205101","32.864848"],["-116.4204657","32.8651689"],["-116.4203894","32.8654129"],["-116.4201131","32.8658312"],["-116.4198921","32.8661476"],["-116.4193621","32.86678"],["-116.4191308","32.8670282"],["-116.4189377","32.8672306"],["-116.4187965","32.8673735"],["-116.418539","32.8676077"],["-116.4182783","32.867835"],["-116.4177364","32.8681796"],["-116.4165766","32.868907"],["-116.4161846","32.8691824"],["-116.416014","32.8693467"],["-116.415835","32.8695918"],["-116.4157479","32.8697632"],["-116.4156903","32.8699398"],["-116.4156586","32.8701201"],["-116.4156621","32.870313"],["-116.415763","32.8707018"],["-116.4162116","32.8715212"],["-116.4166566","32.8722985"],["-116.4176051","32.8739751"],["-116.4178125","32.8742818"],["-116.418226","32.874791"],["-116.4221807","32.8783557"],["-116.4233178","32.8793774"],["-116.4242824","32.8802398"],["-116.4249577","32.8807981"],["-116.4261399","32.8815603"],["-116.4363765","32.8877979"],["-116.4372377","32.888286"],["-116.4379787","32.8886097"],["-116.4386761","32.8888467"],["-116.4394845","32.8890493"],["-116.4413042","32.889473"],["-116.4417584","32.8896105"],["-116.4422866","32.8898014"],["-116.4429757","32.8901009"],["-116.4435643","32.8904208"],["-116.4440198","32.8907061"],["-116.4446958","32.8912172"],["-116.4458169","32.8920944"],["-116.4461431","32.8923359"],["-116.4464347","32.8924826"],["-116.4472742","32.8928202"],["-116.4475631","32.8929626"],["-116.4478089","32.8931247"],["-116.4480245","32.8933026"],["-116.4481373","32.8934055"],["-116.4483033","32.8936132"],["-116.4484705","32.8938902"],["-116.4485409","32.8940475"],["-116.4486224","32.8943386"],["-116.4486975","32.8947686"],["-116.4487688","32.8952821"],["-116.4488208","32.895668"],["-116.4488351","32.8957522"],["-116.4488484","32.8958141"],["-116.448864","32.8958766"],["-116.4488818","32.8959385"],["-116.448902","32.8960029"],["-116.4489244","32.8960667"],["-116.4489554","32.8961421"],["-116.4489839","32.8962037"],["-116.4490131","32.8962643"],["-116.4490491","32.8963322"],["-116.449092","32.8964096"],["-116.4491508","32.8965105"],["-116.4491991","32.8965883"],["-116.449323","32.8967741"],["-116.4494296","32.8969217"],["-116.449604","32.8971513"],["-116.4497813","32.8973347"],["-116.4499702","32.8974801"],["-116.4502333","32.8976314"],["-116.4504447","32.8977169"],["-116.4506596","32.8977757"],["-116.450819","32.8978066"],["-116.4509501","32.8978207"],["-116.4516755","32.897837"],["-116.4519733","32.8978667"],["-116.4523995","32.8979804"],["-116.4526626","32.8980985"],["-116.4529022","32.8982485"],["-116.4530898","32.8984094"],["-116.4533936","32.8988281"],["-116.454996","32.902039"],["-116.4553849","32.9027509"],["-116.4558504","32.9034729"],["-116.4573798","32.90554"],["-116.4575033","32.9056914"],["-116.4579552","32.9063234"],["-116.4586911","32.9073482"],["-116.4589953","32.9078392"],["-116.4593266","32.908503"],["-116.4594671","32.9088534"],["-116.4599709","32.9099675"],["-116.4603008","32.9104998"],["-116.4606703","32.9109533"],["-116.4610995","32.9113922"],["-116.4613394","32.9115969"],["-116.4615094","32.9117324"],["-116.461879","32.9119967"],["-116.4624612","32.9123397"],["-116.4650083","32.9137851"],["-116.4652824","32.9139734"],["-116.4656739","32.914283"],["-116.477022","32.924202"],["-116.4774998","32.924523"],["-116.4776769","32.9245895"],["-116.4779948","32.924664"],["-116.4782537","32.9246999"],["-116.478451","32.9247047"],["-116.4787541","32.9246796"],["-116.4791235","32.9245879"],["-116.4794198","32.9244623"],["-116.4798014","32.9242938"],["-116.4801993","32.9241177"],["-116.4804202","32.9240447"],["-116.4807109","32.9239813"],["-116.4810481","32.9239378"],["-116.4813298","32.9239169"],["-116.4815545","32.9239212"],["-116.481784","32.9239454"],["-116.4820185","32.9239856"],["-116.4822245","32.924028"],["-116.482423","32.9240934"],["-116.4826618","32.9241896"],["-116.4829676","32.9243476"],["-116.4832019","32.9244944"],["-116.4835139","32.9247631"],["-116.4837161","32.9249928"],["-116.4838474","32.9251686"],["-116.4839915","32.925419"],["-116.4840833","32.9256283"],["-116.4841458","32.9258383"],["-116.4843192","32.9267122"],["-116.4853011","32.9318505"],["-116.4853667","32.9321988"],["-116.485664","32.9337469"],["-116.4857524","32.9341391"],["-116.4859024","32.9345426"],["-116.485979","32.9346881"],["-116.4860894","32.9348715"],["-116.4862186","32.9350611"],["-116.4867762","32.9357439"],["-116.4873165","32.9363908"],["-116.4875374","32.9366878"],["-116.490223","32.9411844"],["-116.4903615","32.9414024"],["-116.4905173","32.941614"],["-116.490751","32.9418824"],["-116.4910213","32.9421622"],["-116.4936384","32.9444845"],["-116.4938186","32.9446226"],["-116.4940233","32.9447456"],["-116.4941819","32.9448174"],["-116.4944497","32.944903"],["-116.4947457","32.944984"],["-116.4949903","32.9450197"],["-116.4952762","32.9450293"],["-116.4961495","32.9449406"],["-116.4980321","32.9447279"],["-116.498544","32.9446843"],["-116.4987827","32.9446983"],["-116.4990486","32.9447367"],["-116.4992906","32.9447961"],["-116.4995459","32.9448947"],["-116.4997976","32.9450299"],["-116.4999518","32.9451326"],["-116.5001784","32.9453247"],["-116.5004156","32.945613"],["-116.5005564","32.9458875"],["-116.5006589","32.9461748"],["-116.5007317","32.9464513"],["-116.5007977","32.9466905"],["-116.5008942","32.9469547"],["-116.5009979","32.9471489"],["-116.5011072","32.9472987"],["-116.5012295","32.9474324"],["-116.5013555","32.9475499"],["-116.5015029","32.9476567"],["-116.5016665","32.9477622"],["-116.5018324","32.947847"],["-116.5019567","32.9478938"],["-116.5020748","32.9479373"],["-116.5025279","32.9480258"],["-116.5032362","32.9481168"],["-116.5034698","32.9481651"],["-116.5036602","32.9482197"],["-116.5039673","32.9483421"],["-116.5041692","32.9484654"],["-116.5043107","32.9485672"],["-116.5045257","32.9487522"],["-116.5046817","32.9489275"],["-116.5048456","32.9492027"],["-116.5048953","32.9493295"],["-116.5049469","32.9494773"],["-116.5049886","32.9496434"],["-116.5050117","32.9498736"],["-116.5050217","32.9503727"],["-116.5050517","32.9506418"],["-116.5050804","32.9507641"],["-116.5051148","32.9508828"],["-116.5051719","32.9510492"],["-116.5052345","32.9512256"],["-116.5052991","32.9513524"],["-116.5054063","32.9515351"],["-116.5055388","32.9517192"],["-116.5056638","32.9518728"],["-116.5058287","32.9520336"],["-116.5060018","32.9521931"],["-116.5062261","32.9523633"],["-116.5065964","32.9526273"],["-116.506926","32.9528649"],["-116.5071017","32.9530204"],["-116.5072347","32.9531607"],["-116.5073827","32.9533433"],["-116.5074998","32.9535072"],["-116.5076286","32.953741"],["-116.5076972","32.9538939"],["-116.5077636","32.9540652"],["-116.507825","32.9542874"],["-116.5079678","32.9549234"],["-116.5085594","32.9575454"],["-116.5086718","32.9579989"],["-116.5087208","32.9581624"],["-116.508811","32.9583587"],["-116.5089069","32.9585561"],["-116.5090056","32.9586945"],["-116.5091588","32.9588945"],["-116.5096067","32.9593856"],["-116.5098415","32.9596673"],["-116.5100374","32.9600016"],["-116.5124006","32.9650679"],["-116.5126465","32.9655928"],["-116.5128048","32.9659408"],["-116.5132031","32.9669049"],["-116.5132862","32.9672112"],["-116.5133608","32.9675588"],["-116.5134055","32.9680453"],["-116.5134795","32.9692508"],["-116.5135229","32.9696287"],["-116.5135734","32.969863"],["-116.5136677","32.9701328"],["-116.5138024","32.970405"],["-116.5138964","32.970568"],["-116.5140824","32.9708033"],["-116.5141389","32.9708708"],["-116.5143251","32.971085"],["-116.5174282","32.9745677"],["-116.5178609","32.9750231"],["-116.5180582","32.9751522"],["-116.5183831","32.9753146"],["-116.5186308","32.9753874"],["-116.5190038","32.9754436"],["-116.5196613","32.9755018"],["-116.5199077","32.9755459"],["-116.5201467","32.9756031"],["-116.5203617","32.9757019"],["-116.520569","32.9758366"],["-116.5207724","32.9760071"],["-116.5209808","32.976235"],["-116.5211551","32.9764032"],["-116.5214716","32.9766317"],["-116.5217718","32.9767926"],["-116.5222827","32.9769815"],["-116.5230258","32.9772203"],["-116.5234899","32.9774149"],["-116.5237766","32.9775751"],["-116.5241516","32.9778255"],["-116.5243763","32.977996"],["-116.5253541","32.9788223"],["-116.5256207","32.9790205"],["-116.5258861","32.9791727"],["-116.5261425","32.9792812"],["-116.5264727","32.9793793"],["-116.5273848","32.9795633"],["-116.527645","32.9796339"],["-116.5279299","32.9797895"],["-116.5287361","32.9803894"],["-116.5290223","32.9805293"],["-116.5292187","32.9805766"],["-116.5298453","32.9806833"],["-116.5301602","32.9807552"],["-116.5303564","32.9808256"],["-116.5306457","32.9809866"],["-116.5308803","32.9811648"],["-116.5311745","32.9815657"],["-116.5322135","32.9832543"],["-116.5329106","32.984406"],["-116.5330284","32.9847096"],["-116.5330776","32.9849477"],["-116.533108","32.9851743"],["-116.5330872","32.9857271"],["-116.5329648","32.987629"],["-116.5329481","32.9882101"],["-116.5329714","32.9885403"],["-116.5330248","32.9888768"],["-116.5331389","32.9893258"],["-116.5332944","32.9897785"],["-116.5334745","32.990182"],["-116.5336563","32.9905028"],["-116.5338319","32.9907856"],["-116.5340114","32.9910232"],["-116.5344504","32.9915186"],["-116.5347444","32.9918035"],["-116.5351067","32.9921038"],["-116.5354114","32.9923202"],["-116.536034","32.9927019"],["-116.5377321","32.9936984"],["-116.5381775","32.9938863"],["-116.5385935","32.9940191"],["-116.5389945","32.9940953"],["-116.5394521","32.994144"],["-116.5403963","32.99416"],["-116.5412891","32.9941721"],["-116.5417019","32.994182"],["-116.5419503","32.9941965"],["-116.5420666","32.9942085"],["-116.5422214","32.9942254"],["-116.5424236","32.9942568"],["-116.5427824","32.9943256"],["-116.5430204","32.9943815"],["-116.5432825","32.9944566"],["-116.5436589","32.9945936"],["-116.5441639","32.9947935"],["-116.544763","32.9951193"],["-116.5459312","32.9960414"],["-116.5533771","33.0025748"],["-116.5553196","33.0043336"],["-116.5556066","33.0046997"],["-116.5564369","33.0058793"],["-116.5576656","33.007667"],["-116.5587814","33.0093397"],["-116.5590972","33.0097435"],["-116.5592652","33.0099169"],["-116.5596283","33.0102094"],["-116.5598706","33.0103668"],["-116.5600736","33.0104782"],["-116.5603091","33.0105741"],["-116.5611969","33.0109232"],["-116.5611493","33.0110461"],["-116.5610985","33.0113234"],["-116.5611013","33.0117059"],["-116.5611854","33.012377"],["-116.5616818","33.0142055"],["-116.5617789","33.0144407"],["-116.5621404","33.0150159"],["-116.5624552","33.0155236"],["-116.562528","33.0157378"],["-116.5625506","33.0158809"],["-116.5625169","33.0163517"],["-116.5624285","33.016921"],["-116.5623846","33.017065"],["-116.5622578","33.0173554"],["-116.5620244","33.0177361"],["-116.5618168","33.0179969"],["-116.5616163","33.018203"],["-116.5613769","33.0184741"],["-116.561333","33.0185687"],["-116.5612803","33.0186887"],["-116.5612473","33.0188637"],["-116.5611949","33.0194477"],["-116.5611258","33.0201673"],["-116.5611423","33.0209889"],["-116.5611457","33.0216986"],["-116.5611586","33.0220882"],["-116.5612051","33.0223584"],["-116.5614171","33.0231323"],["-116.5617216","33.0239243"],["-116.5621097","33.0250767"],["-116.5622334","33.025646"],["-116.5622768","33.0261076"],["-116.5624438","33.0265598"],["-116.5626576","33.0268868"],["-116.5628133","33.0271293"],["-116.5628646","33.0272406"],["-116.5628879","33.0273564"],["-116.5628878","33.0275187"],["-116.5628504","33.0276505"],["-116.5626585","33.0280307"],["-116.5625427","33.0284101"],["-116.5625271","33.0286426"],["-116.5625936","33.028878"],["-116.5627093","33.0290812"],["-116.562991","33.0295055"],["-116.5630786","33.0296984"],["-116.5631316","33.0299328"],["-116.563161","33.0302053"],["-116.5631318","33.0304063"],["-116.5630875","33.0305588"],["-116.5630361","33.0306591"],["-116.5628952","33.0308059"],["-116.5626862","33.0309554"],["-116.5622856","33.0311556"],["-116.5619422","33.031377"],["-116.5616448","33.0316213"],["-116.561476","33.0318125"],["-116.5614211","33.0319778"],["-116.5614481","33.0324277"],["-116.5615041","33.0326021"],["-116.5616174","33.0327948"],["-116.5618787","33.0331543"],["-116.5621598","33.0335002"],["-116.5622406","33.0335643"],["-116.5627333","33.0338151"],["-116.5629699","33.0340067"],["-116.5631114","33.0342349"],["-116.5634074","33.0349207"],["-116.5634553","33.0351052"],["-116.5634039","33.0352679"],["-116.5632922","33.0353721"],["-116.5631555","33.0354394"],["-116.562921","33.035503"],["-116.5627194","33.035559"],["-116.5625803","33.0356334"],["-116.5623233","33.0360502"],["-116.562163","33.0363268"],["-116.5621609","33.0365001"],["-116.5622492","33.0366191"],["-116.5626423","33.0369085"],["-116.5628477","33.0370152"],["-116.5631018","33.0371705"],["-116.5632074","33.0372727"],["-116.5632438","33.0373977"],["-116.5632617","33.0375194"],["-116.5632657","33.0377647"],["-116.5632785","33.0380574"],["-116.5633158","33.0382524"],["-116.563423","33.0383676"],["-116.5636262","33.0385047"],["-116.5638985","33.0386805"],["-116.5641831","33.0388444"],["-116.5643394","33.0388682"],["-116.5645998","33.0388469"],["-116.5648786","33.0387984"],["-116.5651528","33.0387195"],["-116.565507","33.0386007"],["-116.5657494","33.0385641"],["-116.5659059","33.0385703"],["-116.5660941","33.0386353"],["-116.5669613","33.0390675"],["-116.5671982","33.0392287"],["-116.5674455","33.0394217"],["-116.5677288","33.0396637"],["-116.567832","33.039837"],["-116.5678616","33.0400088"],["-116.5678597","33.0401286"],["-116.5677976","33.0402566"],["-116.5676415","33.0403912"],["-116.5674787","33.040471"],["-116.5672822","33.0406048"],["-116.567151","33.040783"],["-116.567039","33.0409785"],["-116.5669558","33.0411856"],["-116.5669055","33.0415349"],["-116.5668012","33.0417921"],["-116.5666717","33.0419789"],["-116.5665528","33.0420926"],["-116.5664757","33.0421646"],["-116.5662851","33.0423196"],["-116.5660016","33.0427169"],["-116.5659455","33.0429208"],["-116.5659504","33.0431138"],["-116.5660018","33.0432849"],["-116.5660934","33.0435103"],["-116.5662032","33.043823"],["-116.5663368","33.0445376"],["-116.5664744","33.0448308"],["-116.5666738","33.045023"],["-116.5668398","33.0451713"],["-116.5670014","33.0453068"],["-116.5672617","33.0455793"],["-116.5673327","33.0457045"],["-116.5673977","33.0459853"],["-116.5674648","33.0461204"],["-116.5676489","33.0463289"],["-116.5679448","33.0465122"],["-116.5683785","33.0466528"],["-116.568732","33.0468334"],["-116.5690214","33.0470755"],["-116.5692444","33.0473761"],["-116.5693726","33.0476869"],["-116.569666","33.0487986"],["-116.5697796","33.0491076"],["-116.5699117","33.0493315"],["-116.570143","33.049581"],["-116.5705271","33.0498713"],["-116.5717882","33.0506688"],["-116.5722732","33.0509864"],["-116.572585","33.051235"],["-116.5728254","33.051467"],["-116.5730034","33.0516842"],["-116.5733527","33.0522092"],["-116.5742997","33.0537602"],["-116.5751336","33.0550594"],["-116.5761601","33.0565036"],["-116.5768678","33.0574135"],["-116.5776244","33.0582431"],["-116.577984","33.0586111"],["-116.5781868","33.0589678"],["-116.5787258","33.0604619"],["-116.5789202","33.0608869"],["-116.5791266","33.0612099"],["-116.5794215","33.0615777"],["-116.5827285","33.0649344"],["-116.5836937","33.0658239"],["-116.5843336","33.0663055"],["-116.5855669","33.0670475"],["-116.5972961","33.0736627"],["-116.5976472","33.0739008"],["-116.5979189","33.0741503"],["-116.5981349","33.0744081"],["-116.5983471","33.0747336"],["-116.5985085","33.075097"],["-116.5986133","33.0755515"],["-116.5986315","33.0759465"],["-116.5986339","33.0761925"],["-116.5986319","33.0763611"],["-116.5986099","33.0764428"],["-116.5923418","33.0765346"],["-116.5914635","33.0765443"],["-116.5911068","33.0765779"],["-116.5907801","33.0766692"],["-116.5904939","33.0768078"],["-116.5902986","33.0769552"],["-116.5901259","33.0771281"],["-116.5900097","33.0773222"],["-116.5899171","33.077545"],["-116.5898842","33.0778265"],["-116.5898793","33.0786165"],["-116.589864","33.0788638"],["-116.5898341","33.0790206"],["-116.5897951","33.0791484"],["-116.5896916","33.079322"],["-116.5894829","33.079603"],["-116.5893539","33.0798031"],["-116.5892846","33.0799548"],["-116.5892347","33.080109"],["-116.5892193","33.0802367"],["-116.5892158","33.0803417"],["-116.5892233","33.0804397"],["-116.5892659","33.0806505"],["-116.5894576","33.0812918"],["-116.589486","33.0814124"],["-116.5894932","33.0814963"],["-116.5894841","33.0815829"],["-116.5894579","33.0816711"],["-116.5893936","33.0817934"],["-116.589307","33.0819424"],["-116.5892644","33.082035"],["-116.5892397","33.0821135"],["-116.5892341","33.0821923"],["-116.5892499","33.0823127"],["-116.5892851","33.0824119"],["-116.5893416","33.0825105"],["-116.5895595","33.0827814"],["-116.5896957","33.0829834"],["-116.5898169","33.0832105"],["-116.5899718","33.083615"],["-116.5900925","33.0842545"],["-116.5902609","33.0847471"],["-116.5904116","33.0850875"],["-116.5905223","33.0853129"],["-116.5906491","33.0856138"],["-116.5907238","33.0857287"],["-116.5907976","33.0858216"],["-116.5909173","33.0859395"],["-116.5912693","33.0862344"],["-116.5915552","33.0864633"],["-116.5916477","33.0865563"],["-116.5917112","33.0866632"],["-116.5917404","33.0868153"],["-116.5917235","33.0873122"],["-116.5917439","33.0875308"],["-116.5917852","33.0876461"],["-116.5918954","33.0878355"],["-116.5919545","33.08789"],["-116.5920096","33.0879248"],["-116.5920791","33.0879537"],["-116.5921938","33.0879795"],["-116.5939333","33.0881546"],["-116.5942295","33.0882029"],["-116.5943123","33.0882338"],["-116.5943867","33.0882796"],["-116.5944562","33.0883363"],["-116.5945213","33.0884012"],["-116.5946199","33.0885472"],["-116.5947152","33.088792"],["-116.5947441","33.088958"],["-116.5947639","33.0893089"],["-116.5947987","33.0894411"],["-116.5948478","33.0895467"],["-116.5949954","33.0897398"],["-116.595171","33.0899125"],["-116.5953149","33.0900417"],["-116.5954838","33.0901868"],["-116.5957228","33.0903711"],["-116.5965455","33.0909419"],["-116.5966708","33.0910764"],["-116.5967462","33.0911995"],["-116.5967845","33.0913401"],["-116.5967931","33.091447"],["-116.5967853","33.0915485"],["-116.5967646","33.0916267"],["-116.5967342","33.0917074"],["-116.5966697","33.0918087"],["-116.5965593","33.0919158"],["-116.596216","33.0921554"],["-116.5960284","33.09234"],["-116.5957484","33.0927066"],["-116.5956986","33.092803"],["-116.5956775","33.0929045"],["-116.5956607","33.0931815"],["-116.5956407","33.093345"],["-116.5956053","33.0934801"],["-116.595534","33.0936384"],["-116.5954638","33.093789"],["-116.5953993","33.0938806"],["-116.5953127","33.0939666"],["-116.5951515","33.0940887"],["-116.5950339","33.094196"],["-116.5949349","33.0943229"],["-116.5948869","33.0944539"],["-116.5948319","33.0948533"],["-116.5947963","33.0950064"],["-116.5947505","33.0950995"],["-116.5946641","33.0952148"],["-116.5944702","33.0954363"],["-116.5943059","33.0956482"],["-116.5941215","33.0959349"],["-116.5940412","33.096121"],["-116.5939875","33.0963019"],["-116.5939438","33.0965845"],["-116.5939309","33.0967702"],["-116.5938559","33.0973024"],["-116.5937786","33.097488"],["-116.5936561","33.0975883"],["-116.5934794","33.0976431"],["-116.5932381","33.0976578"],["-116.5929845","33.0976493"],["-116.5926728","33.0976125"],["-116.5924325","33.0975449"],["-116.5922091","33.0974517"],["-116.5916845","33.0971838"],["-116.5912301","33.0969236"],["-116.5908439","33.0967369"],["-116.5905665","33.0965872"],["-116.5902721","33.096387"],["-116.5899915","33.0962133"],["-116.5894404","33.0958338"],["-116.5892196","33.0957559"],["-116.5890581","33.0957588"],["-116.5887058","33.0958481"],["-116.5884411","33.095909"],["-116.5882644","33.0958979"],["-116.5881196","33.0958448"],["-116.5880071","33.0957387"],["-116.5878141","33.0953199"],["-116.5877211","33.0950432"],["-116.5875909","33.0948351"],["-116.5874374","33.094693"],["-116.5872236","33.0945713"],["-116.5869831","33.0944885"],["-116.5867106","33.0944318"],["-116.5864558","33.0944083"],["-116.586228","33.0944041"],["-116.5860175","33.0943483"],["-116.5852695","33.0939753"],["-116.5848611","33.0938754"],["-116.5844845","33.0938408"],["-116.5842905","33.0937865"],["-116.5841338","33.0937021"],["-116.5838737","33.0934807"],["-116.5834574","33.0931832"],["-116.5831863","33.092914"],["-116.5829773","33.0926761"],["-116.5829022","33.0925457"],["-116.5828658","33.0923971"],["-116.5828735","33.0921829"],["-116.5828035","33.0920643"],["-116.5827357","33.0920224"],["-116.582483","33.0919318"],["-116.5823086","33.0918927"],["-116.5820688","33.0918617"],["-116.581945","33.0918287"],["-116.5817793","33.0917439"],["-116.5816457","33.09162"],["-116.5815684","33.0915231"],["-116.5814177","33.091376"],["-116.5812878","33.0912898"],["-116.5805041","33.090915"],["-116.580262","33.0907653"],["-116.5800756","33.0906039"],["-116.5798519","33.0902635"],["-116.5797279","33.0900281"],["-116.5796435","33.0899084"],["-116.5795536","33.0898418"],["-116.5794686","33.0897963"],["-116.5793637","33.0897483"],["-116.5792887","33.0896936"],["-116.5791518","33.0895342"],["-116.5790886","33.0894004"],["-116.5790876","33.0890423"],["-116.5790978","33.0888347"],["-116.5790413","33.0887104"],["-116.5789632","33.088631"],["-116.5785799","33.0883231"],["-116.5780407","33.0878629"],["-116.5778064","33.0876308"],["-116.5776187","33.0874444"],["-116.5772536","33.0871836"],["-116.5771388","33.0870854"],["-116.5770046","33.0869228"],["-116.5768837","33.08683"],["-116.5766462","33.0867353"],["-116.5761217","33.0866323"],["-116.575674","33.0864778"],["-116.5754617","33.0863483"],["-116.5748412","33.0858698"],["-116.5747359","33.0857706"],["-116.5746425","33.0855947"],["-116.5746323","33.0855067"],["-116.5746552","33.0853498"],["-116.5747219","33.0852379"],["-116.5750867","33.0849375"],["-116.5751988","33.084778"],["-116.5752192","33.0846903"],["-116.575203","33.0846081"],["-116.5751781","33.0845579"],["-116.575139","33.0845012"],["-116.5750303","33.0844071"],["-116.5747156","33.0842397"],["-116.5744386","33.084113"],["-116.5741391","33.0840014"],["-116.5740402","33.083985"],["-116.5737762","33.0839896"],["-116.5734766","33.0839522"],["-116.5726033","33.0837223"],["-116.5723308","33.0835923"],["-116.5721133","33.0833729"],["-116.5718154","33.082925"],["-116.5717197","33.0827232"],["-116.5717114","33.0825699"],["-116.5717483","33.0823866"],["-116.571827","33.0822469"],["-116.5719646","33.0819092"],["-116.5720407","33.0815788"],["-116.5721755","33.0813154"],["-116.5724733","33.0809507"],["-116.5725312","33.0808446"],["-116.5725464","33.0807384"],["-116.5725058","33.0805598"],["-116.5724088","33.080424"],["-116.5722497","33.0803293"],["-116.5720602","33.0802937"],["-116.5719002","33.0802944"],["-116.5716133","33.0803424"],["-116.5713888","33.080408"],["-116.571145","33.0804413"],["-116.5702754","33.0804756"],["-116.5701102","33.0804472"],["-116.5700211","33.0803878"],["-116.5697478","33.0801078"],["-116.5696163","33.0800229"],["-116.5694805","33.0799925"],["-116.5693459","33.0800106"],["-116.5692536","33.0800627"],["-116.5690469","33.0802519"],["-116.568728","33.0804843"],["-116.5685709","33.0805499"],["-116.568409","33.080576"],["-116.5681851","33.0805628"],["-116.5680886","33.0805413"],["-116.5679536","33.0804662"],["-116.567622","33.080209"],["-116.5673389","33.0798896"],["-116.5668295","33.079376"],["-116.5666574","33.0791454"],["-116.5665203","33.0788746"],["-116.5663653","33.0786921"],["-116.5661543","33.0785479"],["-116.5658717","33.0784318"],["-116.5655874","33.0783167"],["-116.5653564","33.0781961"],["-116.5651455","33.0780509"],["-116.5649862","33.0779105"],["-116.5648215","33.0776852"],["-116.5647168","33.0773948"],["-116.5647001","33.077235"],["-116.5647375","33.0769345"],["-116.5646791","33.0768217"],["-116.5646201","33.0767375"],["-116.5645267","33.076676"],["-116.5643915","33.0766385"],["-116.5641244","33.0766308"],["-116.5630996","33.0766629"],["-116.5627413","33.0766431"],["-116.5624792","33.0765926"],["-116.5622532","33.0764968"],["-116.5621312","33.0764147"],["-116.5619493","33.0762149"],["-116.5617725","33.0758826"],["-116.5616619","33.0756502"],["-116.5615182","33.0753941"],["-116.5613817","33.0751738"],["-116.5612671","33.0750705"],["-116.5611139","33.0750306"],["-116.5609109","33.0750407"],["-116.560626","33.0750959"],["-116.5604106","33.0751275"],["-116.560236","33.075086"],["-116.5601249","33.0750057"],["-116.5600475","33.0748864"],["-116.5599451","33.0745778"],["-116.5598921","33.0744457"],["-116.5598275","33.0743735"],["-116.5597331","33.0743101"],["-116.5596189","33.0742811"],["-116.5594858","33.0742927"],["-116.5593522","33.0743685"],["-116.5591359","33.0745097"],["-116.5590123","33.074567"],["-116.5588732","33.0745945"],["-116.5587225","33.0745884"],["-116.5585843","33.0745535"],["-116.5584497","33.0744773"],["-116.5583721","33.0744002"],["-116.5583219","33.0743114"],["-116.5582924","33.0742028"],["-116.5582876","33.0739872"],["-116.5582588","33.0738383"],["-116.5581773","33.0736874"],["-116.5580438","33.0735058"],["-116.5579653","33.0734235"],["-116.557875","33.0733362"],["-116.5577629","33.0732454"],["-116.5574777","33.0730615"],["-116.5573243","33.0729842"],["-116.5571826","33.0729455"],["-116.5570651","33.072932"],["-116.556919","33.0729388"],["-116.5566781","33.0729814"],["-116.5562874","33.0730587"],["-116.5561073","33.0730765"],["-116.5559545","33.0730584"],["-116.5558155","33.0729979"],["-116.5557289","33.0729226"],["-116.5556594","33.0727835"],["-116.5555894","33.0724643"],["-116.5555142","33.072295"],["-116.5554392","33.0722107"],["-116.5553414","33.0721426"],["-116.5552149","33.0720976"],["-116.5550694","33.0720852"],["-116.5548306","33.0721081"],["-116.5547066","33.0720978"],["-116.5545968","33.0720474"],["-116.5545384","33.0719828"],["-116.554477","33.0718552"],["-116.5544189","33.0717344"],["-116.5543261","33.0716504"],["-116.5541573","33.071574"],["-116.5540418","33.0715357"],["-116.5539429","33.0714804"],["-116.5538674","33.0714107"],["-116.5538274","33.0713372"],["-116.5537823","33.0710532"],["-116.5537435","33.0709724"],["-116.5536749","33.0709138"],["-116.5535891","33.0708639"],["-116.553428","33.0708437"],["-116.5532091","33.0708544"],["-116.5530497","33.070847"],["-116.5529224","33.0708157"],["-116.552768","33.0707421"],["-116.5522053","33.0703796"],["-116.5520742","33.0702814"],["-116.5520029","33.0701903"],["-116.5519511","33.0700948"],["-116.5519223","33.0699905"],["-116.5519169","33.069877"],["-116.5519482","33.0697663"],["-116.552037","33.0696369"],["-116.5521457","33.0695646"],["-116.5523112","33.0695135"],["-116.552588","33.0694702"],["-116.5527264","33.0694247"],["-116.5527976","33.0693586"],["-116.5528449","33.0692579"],["-116.5528705","33.069091"],["-116.5529219","33.06891"],["-116.5529886","33.0687715"],["-116.553092","33.0686546"],["-116.5532414","33.0685482"],["-116.5534738","33.068401"],["-116.5535775","33.0683031"],["-116.5536348","33.0682004"],["-116.553654","33.0680733"],["-116.5536427","33.0667868"],["-116.5536207","33.0665398"],["-116.5535744","33.0664312"],["-116.5534868","33.0663537"],["-116.5533779","33.0663128"],["-116.5532261","33.0663105"],["-116.5531031","33.0663653"],["-116.553008","33.0664873"],["-116.552905","33.0667793"],["-116.5528355","33.0669892"],["-116.5527524","33.0671344"],["-116.5524621","33.0675009"],["-116.5522845","33.0677062"],["-116.5520286","33.0678681"],["-116.551699","33.0680642"],["-116.5515376","33.0681484"],["-116.5513838","33.0681871"],["-116.5512041","33.0681852"],["-116.5506069","33.0681565"],["-116.5503354","33.0681671"],["-116.550057","33.0681917"],["-116.5498694","33.068195"],["-116.5497145","33.0681608"],["-116.5495828","33.0681028"],["-116.5494413","33.0680063"],["-116.5491745","33.0677766"],["-116.5487277","33.0674344"],["-116.5484985","33.0672761"],["-116.5483351","33.0672125"],["-116.5481629","33.067186"],["-116.5480086","33.0672144"],["-116.5478807","33.067282"],["-116.5477867","33.0673729"],["-116.5476863","33.0675222"],["-116.5474736","33.0679535"],["-116.5473509","33.0681359"],["-116.5472398","33.0682373"],["-116.5471198","33.0683422"],["-116.5469784","33.068488"],["-116.5468644","33.0686428"],["-116.5467344","33.06879"],["-116.5465432","33.0689567"],["-116.5460689","33.0693346"],["-116.5447021","33.0704526"],["-116.5443157","33.0707589"],["-116.5441294","33.0708449"],["-116.5439505","33.0708933"],["-116.5437568","33.0708921"],["-116.5435409","33.0708687"],["-116.5433409","33.0708477"],["-116.5431538","33.0708627"],["-116.5430014","33.0709141"],["-116.5427636","33.0710733"],["-116.5424911","33.0712645"],["-116.54222","33.071409"],["-116.5418041","33.0716"],["-116.5414721","33.071786"],["-116.541113","33.0719853"],["-116.5408565","33.0720949"],["-116.5405753","33.0721882"],["-116.5403242","33.072275"],["-116.5399987","33.0724455"],["-116.5389499","33.0730654"],["-116.5386955","33.0732526"],["-116.5385598","33.0733908"],["-116.5382809","33.0737513"],["-116.5381117","33.0739165"],["-116.5378679","33.0740774"],["-116.5372331","33.0744531"],["-116.5365418","33.0748618"],["-116.5358196","33.0752836"],["-116.5353706","33.0755435"],["-116.5348531","33.0758601"],["-116.5345502","33.0760793"],["-116.5343026","33.0763037"],["-116.5340083","33.0766226"],["-116.5332683","33.0774951"],["-116.5330249","33.0777425"],["-116.5328133","33.077909"],["-116.5325935","33.0780692"],["-116.5323613","33.0782014"],["-116.5320628","33.0783341"],["-116.5317519","33.0784458"],["-116.4812786","33.0944927"],["-116.4803214","33.0948212"],["-116.478187","33.0956452"],["-116.4689147","33.0993085"],["-116.4682533","33.0995406"],["-116.4678672","33.099648"],["-116.4671723","33.0997943"],["-116.4654887","33.099996"],["-116.4606958","33.1004781"],["-116.45942","33.1006385"],["-116.4585528","33.1009529"],["-116.4543613","33.1029293"],["-116.4539827","33.1031371"],["-116.4537838","33.1033481"],["-116.4537269","33.1034404"],["-116.4535339","33.1037578"],["-116.4532603","33.1040997"],["-116.4530121","33.1043441"],["-116.4527447","33.1045376"],["-116.4513884","33.1053992"],["-116.4511423","33.1056036"],["-116.4509987","33.105766"],["-116.4508845","33.1059608"],["-116.4508142","33.1061745"],["-116.4507654","33.1064289"],["-116.4508062","33.1070594"],["-116.450819","33.1075936"],["-116.4507852","33.1078067"],["-116.45067","33.1080374"],["-116.4505918","33.1081417"],["-116.4505179","33.1082057"],["-116.4503683","33.1082831"],["-116.4501419","33.108358"],["-116.4497","33.1085577"],["-116.4494959","33.1086753"],["-116.4492792","33.1088519"],["-116.4491879","33.1089617"],["-116.4491002","33.1091309"],["-116.4490797","33.1093673"],["-116.4491717","33.1097883"],["-116.4492364","33.1102087"],["-116.449199","33.1104094"],["-116.4490871","33.1105934"],["-116.4489215","33.1107042"],["-116.4486354","33.1108257"],["-116.4483058","33.1109873"],["-116.4480605","33.1110627"],["-116.4475892","33.1111288"],["-116.4469349","33.1111691"],["-116.4467519","33.1112065"],["-116.4466297","33.1112702"],["-116.4464745","33.1113902"],["-116.4463152","33.1116005"],["-116.4459275","33.1123135"],["-116.4457887","33.1125089"],["-116.4456789","33.1125921"],["-116.4454897","33.1126781"],["-116.4450028","33.1127829"],["-116.4448541","33.1128455"],["-116.4446738","33.1130057"],["-116.4442136","33.1135763"],["-116.4438919","33.1138792"],["-116.4430861","33.1145601"],["-116.4427894","33.1147606"],["-116.4425601","33.1148567"],["-116.4423206","33.1149166"],["-116.4420373","33.1149396"],["-116.4416895","33.1149391"],["-116.4414634","33.1149627"],["-116.4412296","33.1150131"],["-116.4410415","33.1150752"],["-116.4408395","33.1151758"],["-116.4403956","33.1154442"],["-116.4401096","33.1156016"],["-116.439799","33.1157188"],["-116.4394534","33.1158101"],["-116.4391057","33.115931"],["-116.4386558","33.1161696"],["-116.4382257","33.1165227"],["-116.4376789","33.1168837"],["-116.4349054","33.119101"],["-116.4346014","33.1194163"],["-116.4343565","33.1197405"],["-116.434244","33.1199496"],["-116.4341761","33.1201806"],["-116.4341606","33.1204705"],["-116.4341983","33.1206671"],["-116.4342781","33.1208383"],["-116.4344437","33.1210954"],["-116.4345864","33.1212573"],["-116.4349791","33.1215856"],["-116.4353243","33.1219623"],["-116.4355379","33.1223082"],["-116.4355564","33.1225122"],["-116.4354693","33.1228754"],["-116.4354942","33.1235371"],["-116.4355537","33.1237968"],["-116.4357437","33.1241755"],["-116.4357812","33.1243029"],["-116.4357812","33.1245196"],["-116.4357446","33.1246639"],["-116.4356078","33.1250464"],["-116.4355978","33.1253267"],["-116.4356648","33.1258761"],["-116.4356533","33.1261022"],["-116.4356176","33.1261961"],["-116.4354736","33.1264088"],["-116.435365","33.1265209"],["-116.4351413","33.1266879"],["-116.4348717","33.126851"],["-116.4346841","33.1270187"],["-116.4346","33.1271668"],["-116.4345201","33.1274234"],["-116.4345043","33.1276091"],["-116.4345348","33.1278914"],["-116.4346189","33.1282155"],["-116.4346206","33.1283068"],["-116.434545","33.1285305"],["-116.434433","33.1286507"],["-116.434295","33.1287192"],["-116.4339792","33.1287889"],["-116.4331165","33.1288999"],["-116.4315017","33.1292166"],["-116.4312338","33.1292293"],["-116.4311302","33.1292077"],["-116.4309137","33.1291235"],["-116.4304886","33.1289032"],["-116.4301064","33.1287307"],["-116.4298202","33.1286295"],["-116.4292957","33.1284899"],["-116.4289229","33.128414"],["-116.4285811","33.1283674"],["-116.4280447","33.1283463"],["-116.4275164","33.128374"],["-116.4180148","33.1298831"],["-116.415742","33.1302041"],["-116.4150768","33.1303661"],["-116.414744","33.130498"],["-116.4142942","33.1306999"],["-116.4140696","33.1307829"],["-116.4136421","33.1308723"],["-116.4123801","33.1310473"],["-116.4112664","33.1312038"],["-116.4107228","33.1312848"],["-116.4102526","33.1312989"],["-116.4084834","33.1312233"],["-116.4064574","33.1311082"],["-116.4050866","33.1310613"],["-116.4047634","33.1310843"],["-116.4044335","33.1311414"],["-116.404062","33.1312391"],["-116.4035749","33.1313907"],["-116.4032028","33.1315473"],["-116.4023747","33.1319672"],["-116.4021642","33.1320475"],["-116.4016618","33.1321285"],["-116.4011463","33.1321232"],["-116.3999139","33.1320066"],["-116.3993382","33.131965"],["-116.398962","33.1319639"],["-116.3986778","33.1319818"],["-116.3982213","33.1320359"],["-116.3976672","33.1320746"],["-116.3972441","33.1320795"],["-116.3968547","33.1320973"],["-116.3962263","33.1321775"],["-116.3954383","33.1323039"],["-116.3949337","33.1323943"],["-116.3946944","33.1324519"],["-116.3942689","33.132576"],["-116.3936246","33.1328363"],["-116.3912196","33.1338545"],["-116.3891631","33.1347219"],["-116.3884722","33.1349964"],["-116.3882355","33.1350494"],["-116.3881155","33.1350638"],["-116.3876321","33.1350915"],["-116.3864293","33.1351462"],["-116.3857162","33.1351397"],["-116.3840828","33.134751"],["-116.3836074","33.1346616"],["-116.3831819","33.1346596"],["-116.3826376","33.1347517"],["-116.3821397","33.1348674"],["-116.3817473","33.1349942"],["-116.3814573","33.1351217"],["-116.3810305","33.1353297"],["-116.3807301","33.1354551"],["-116.3803863","33.1355548"],["-116.3800417","33.1356341"],["-116.380027","33.1356598"],["-116.3800043","33.1357235"],["-116.3798206","33.1359092"],["-116.3790785","33.1366949"],["-116.3787379","33.1370188"],["-116.3782326","33.1374511"],["-116.3777424","33.1378086"],["-116.3773687","33.1380096"],["-116.3769129","33.1381778"],["-116.3746213","33.1387791"],["-116.3739263","33.1389064"],["-116.3729958","33.139045"],["-116.3725914","33.1391298"],["-116.3723462","33.1392054"],["-116.3719202","33.1393922"],["-116.3714328","33.1396366"],["-116.3712059","33.1397274"],["-116.3709776","33.1397676"],["-116.3706867","33.1397399"],["-116.3701933","33.1395632"],["-116.3700403","33.1395469"],["-116.3699038","33.1395803"],["-116.3695198","33.1397556"],["-116.3693341","33.1398898"],["-116.3689848","33.1403091"],["-116.3688424","33.140383"],["-116.3687207","33.1403984"],["-116.3685953","33.1403748"],["-116.3682456","33.140239"],["-116.3680867","33.1402194"],["-116.3679006","33.1402532"],["-116.3677933","33.1403226"],["-116.3677361","33.1403847"],["-116.3676212","33.1406077"],["-116.3672573","33.1414506"],["-116.367156","33.1416731"],["-116.3671105","33.141741"],["-116.3670605","33.1418126"],["-116.3669969","33.141879"],["-116.3669302","33.1419376"],["-116.3668542","33.1419847"],["-116.3667832","33.1420189"],["-116.3666944","33.1420564"],["-116.3666064","33.142081"],["-116.366521","33.1420881"],["-116.3664358","33.1420865"],["-116.3663638","33.1420722"],["-116.3662913","33.1420511"],["-116.3662226","33.1420123"],["-116.3661695","33.1419645"],["-116.3661288","33.1419039"],["-116.3661011","33.141819"],["-116.3660796","33.1417346"],["-116.3660552","33.1416732"],["-116.3660252","33.1416234"],["-116.3659871","33.1415842"],["-116.3659313","33.1415466"],["-116.3658684","33.1415223"],["-116.3657958","33.1415049"],["-116.3657045","33.1415049"],["-116.3656198","33.1415186"],["-116.3655435","33.1415425"],["-116.3654704","33.1415707"],["-116.3654006","33.1416157"],["-116.3653418","33.1416622"],["-116.3652699","33.1417403"],["-116.3652007","33.141838"],["-116.365156","33.1419121"],["-116.3651177","33.1419678"],["-116.3650796","33.1420186"],["-116.3650272","33.1420717"],["-116.3649512","33.1421295"],["-116.3648648","33.142177"],["-116.3647529","33.1422188"],["-116.3646399","33.1422467"],["-116.3645205","33.1422757"],["-116.3644077","33.1423041"],["-116.3642319","33.1423662"],["-116.3637534","33.1425429"],["-116.3636519","33.1425742"],["-116.3635664","33.1425942"],["-116.3634694","33.1426129"],["-116.363374","33.1426162"],["-116.3631188","33.1426014"],["-116.3630018","33.1425884"],["-116.3628814","33.1425694"],["-116.3627751","33.1425443"],["-116.3626134","33.1424909"],["-116.3624834","33.1424465"],["-116.3623976","33.1424218"],["-116.362326","33.1424099"],["-116.3622609","33.1424016"],["-116.3622037","33.1424046"],["-116.3621477","33.1424157"],["-116.3620869","33.1424399"],["-116.3620021","33.1424919"],["-116.3619238","33.1425515"],["-116.3618322","33.1426216"],["-116.3617557","33.1426613"],["-116.3616728","33.1426958"],["-116.3615827","33.1427268"],["-116.361479","33.1427563"],["-116.3613791","33.1427861"],["-116.361308","33.1428117"],["-116.361256","33.1428376"],["-116.3612078","33.1428738"],["-116.3611384","33.1429473"],["-116.3610122","33.1430959"],["-116.3609588","33.143142"],["-116.3608929","33.1431781"],["-116.3608017","33.143206"],["-116.3605393","33.1432691"],["-116.3604233","33.1433027"],["-116.3603203","33.1433364"],["-116.3602128","33.1433862"],["-116.3601037","33.1434485"],["-116.3599728","33.1435347"],["-116.3598604","33.1436184"],["-116.3597753","33.143683"],["-116.359713","33.1437227"],["-116.359655","33.1437574"],["-116.3595968","33.1437828"],["-116.3595224","33.1438038"],["-116.3593693","33.1438288"],["-116.3591686","33.1438671"],["-116.3590782","33.1438896"],["-116.3589885","33.1439184"],["-116.3588718","33.1439605"],["-116.3587674","33.1439974"],["-116.3586856","33.1440227"],["-116.3586045","33.1440429"],["-116.3583885","33.144091"],["-116.3580371","33.1441823"],["-116.3578926","33.1442169"],["-116.3574013","33.1442994"],["-116.3572932","33.1443225"],["-116.3571303","33.1443724"],["-116.3568966","33.1444689"],["-116.3563757","33.1447359"],["-116.3549927","33.1453964"],["-116.3534063","33.1459413"],["-116.3530676","33.1461045"],["-116.3522632","33.1466225"],["-116.3516286","33.1470482"],["-116.3511181","33.1474252"],["-116.3505105","33.1479161"],["-116.3500716","33.1483201"],["-116.3498735","33.1485845"],["-116.3497749","33.148806"],["-116.3494885","33.149752"],["-116.3493185","33.1504683"],["-116.3490003","33.1519933"],["-116.3488884","33.1522947"],["-116.3486523","33.1526874"],["-116.3485015","33.1528481"],["-116.3483565","33.1529191"],["-116.3482091","33.1529572"],["-116.3479446","33.1529811"],["-116.3472666","33.1530064"],["-116.3468196","33.1530766"],["-116.3465277","33.1532075"],["-116.3463912","33.1532977"],["-116.3462375","33.1534529"],["-116.3455265","33.1542965"],["-116.3453301","33.1546578"],["-116.3447945","33.1562423"],["-116.3445597","33.1567846"],["-116.3439994","33.1577942"],["-116.3437688","33.1581337"],["-116.343481","33.1584232"],["-116.3430319","33.158814"],["-116.342746","33.1590175"],["-116.3424445","33.1591849"],["-116.3419576","33.1593802"],["-116.3390876","33.1603321"],["-116.3386323","33.1605186"],["-116.3382726","33.1607294"],["-116.3378747","33.1610365"],["-116.3375838","33.1613417"],["-116.3373392","33.161694"],["-116.3361456","33.1635824"],["-116.3359057","33.1639941"],["-116.3357939","33.1642682"],["-116.3357121","33.1646156"],["-116.3356858","33.1651748"],["-116.335737","33.1675476"],["-116.3356548","33.1688738"],["-116.3354335","33.1711684"],["-116.335324","33.1717771"],["-116.3351341","33.1722958"],["-116.3343002","33.1740457"],["-116.3337044","33.1752998"],["-116.3333645","33.1760277"],["-116.3331854","33.176612"],["-116.3329952","33.177469"],["-116.3326098","33.1794168"],["-116.3325002","33.1801838"],["-116.3324698","33.180772"],["-116.3323825","33.1812668"],["-116.3322885","33.1815441"],["-116.3321321","33.1818658"],["-116.3316984","33.1825786"],["-116.3312708","33.1833285"],["-116.3311171","33.1837126"],["-116.3310275","33.1840454"],["-116.3308663","33.184805"],["-116.3307629","33.1867487"],["-116.3305265","33.1923588"],["-116.3304598","33.1929872"],["-116.3299716","33.2051729"],["-116.3299707","33.2063599"],["-116.3299728","33.2068203"],["-116.3299894","33.207925"],["-116.3300169","33.2081892"],["-116.3300791","33.2083546"],["-116.3301944","33.2086146"],["-116.3303344","33.2088615"],["-116.3304497","33.2090069"],["-116.3307453","33.2092994"],["-116.3320529","33.2102356"],["-116.332657","33.2106577"],["-116.3330596","33.2108573"],["-116.3333427","33.2109689"],["-116.3335292","33.2110478"],["-116.333556","33.211075"],["-116.3335638","33.2111058"],["-116.3336614","33.2111439"],["-116.3630278","33.2115167"],["-116.3643074","33.2115458"],["-116.364922","33.2116125"],["-116.3655485","33.2117448"],["-116.36595","33.2118569"],["-116.3662865","33.2119678"],["-116.366571","33.2120854"],["-116.3670158","33.2122896"],["-116.3675207","33.2125817"],["-116.3680205","33.2129147"],["-116.3683171","33.2131475"],["-116.3686624","33.2134663"],["-116.3694808","33.214352"],["-116.3702699","33.2152883"],["-116.3714388","33.2168348"],["-116.3721179","33.217853"],["-116.3726351","33.2186985"],["-116.3730967","33.2195251"],["-116.3735583","33.2204097"],["-116.3740198","33.2214689"],["-116.374266","33.2220829"],["-116.3745391","33.2227901"],["-116.3748208","33.223624"],["-116.3751473","33.224764"],["-116.3754618","33.2261013"],["-116.3757182","33.2275741"],["-116.37584","33.2285243"],["-116.375913","33.2294128"],["-116.3759376","33.2303067"],["-116.3759293","33.2315392"],["-116.3758764","33.2325099"],["-116.3757565","33.2336362"],["-116.3756124","33.2343622"],["-116.3754253","33.2350365"],["-116.3751617","33.2357458"],["-116.3748765","33.2362683"],["-116.3745431","33.2367933"],["-116.3743989","33.2370691"],["-116.3743034","33.237294"],["-116.3742421","33.2375874"],["-116.3742011","33.2378601"],["-116.374194","33.2381719"],["-116.374195","33.2384723"],["-116.3742593","33.2416723"],["-116.37492","33.2556437"],["-116.3748839","33.2557795"],["-116.3748414","33.2558746"],["-116.3747798","33.255998"],["-116.3746869","33.2560316"],["-116.3745967","33.25607"],["-116.3745129","33.2561197"],["-116.3744512","33.2561657"],["-116.3743911","33.2562252"],["-116.3743333","33.2562996"],["-116.3742877","33.2563859"],["-116.3742526","33.2565019"],["-116.3742454","33.2566231"],["-116.3742674","33.2567436"],["-116.3743165","33.2568555"],["-116.3743881","33.2569558"],["-116.3744588","33.2570258"],["-116.3744854","33.2570443"],["-116.3745519","33.25709"],["-116.374646","33.2571375"],["-116.3747514","33.2571723"],["-116.3749082","33.2571996"],["-116.3750794","33.2571953"],["-116.375229","33.2571636"],["-116.3753391","33.2571208"],["-116.3753866","33.2570934"],["-116.3754436","33.257059"],["-116.3755285","33.2569882"],["-116.3756006","33.2569049"],["-116.3756588","33.2568159"],["-116.3758177","33.2567478"],["-116.3759053","33.2567028"],["-116.3759838","33.2566637"],["-116.3760779","33.2566281"],["-116.3762436","33.2565692"],["-116.3776475","33.2565643"],["-116.3788575","33.2565657"],["-116.3921287","33.2564583"],["-116.3969761","33.2564752"],["-116.3977445","33.2564688"],["-116.3985234","33.2564636"],["-116.3993822","33.2564695"],["-116.3994088","33.2540631"],["-116.39944","33.2537526"],["-116.3995076","33.2534993"],["-116.3997226","33.2530624"],["-116.3998977","33.2528301"],["-116.400167","33.2525579"],["-116.4004037","33.2523766"],["-116.4007029","33.2522078"],["-116.4009219","33.2521134"],["-116.4018391","33.2518106"],["-116.4024888","33.2516068"],["-116.4050051","33.2508123"],["-116.4053165","33.2507012"],["-116.4055829","33.2505331"],["-116.4057894","33.2503455"],["-116.4059402","33.2501407"],["-116.4059952","33.2500494"],["-116.4060867","33.2498211"],["-116.4061268","33.2496637"],["-116.4061399","33.2494076"],["-116.4060874","33.2491488"],["-116.4059935","33.2489256"],["-116.4058273","33.2486771"],["-116.405738","33.248582"],["-116.4054646","33.2483395"],["-116.4046867","33.2476729"],["-116.4039811","33.2470539"],["-116.4032522","33.246349"],["-116.401743","33.2448145"],["-116.4015314","33.2445289"],["-116.4014692","33.2443457"],["-116.4014678","33.2442029"],["-116.401502","33.2440414"],["-116.4016284","33.2438134"],["-116.4017893","33.2436614"],["-116.4020345","33.2435256"],["-116.4031971","33.2431272"],["-116.4048911","33.2425729"],["-116.4050326","33.2425062"],["-116.4051642","33.242405"],["-116.4052462","33.2422825"],["-116.4052978","33.2421478"],["-116.4053155","33.2419969"],["-116.405281","33.2418535"],["-116.4052175","33.2417297"],["-116.4050973","33.2415842"],["-116.4049545","33.24148"],["-116.4047355","33.2413974"],["-116.4041359","33.2412882"],["-116.4038293","33.2412108"],["-116.4035623","33.2410834"],["-116.4033191","33.2408723"],["-116.4031776","33.2406889"],["-116.4031079","33.2404998"],["-116.4030655","33.2402051"],["-116.4030091","33.2395878"],["-116.4030641","33.2393157"],["-116.403248","33.2390081"],["-116.4033839","33.2388609"],["-116.4035418","33.238745"],["-116.4036792","33.2386727"],["-116.4038632","33.2386085"],["-116.4040417","33.238569"],["-116.4043551","33.238551"],["-116.4059187","33.2385516"],["-116.4062117","33.2385094"],["-116.4063583","33.2384448"],["-116.4064447","33.2383341"],["-116.4064916","33.2381789"],["-116.4064473","33.2379688"],["-116.4062367","33.2375893"],["-116.4061986","33.237454"],["-116.4061996","33.2373579"],["-116.4062598","33.2372464"],["-116.4063638","33.237154"],["-116.4065863","33.2370318"],["-116.4067086","33.2370094"],["-116.4068562","33.2370393"],["-116.4070531","33.2371375"],["-116.4074613","33.2373996"],["-116.4076219","33.23748"],["-116.4077633","33.2375154"],["-116.407929","33.2375184"],["-116.4080974","33.2374692"],["-116.4082195","33.2373532"],["-116.4082958","33.2371797"],["-116.4083304","33.2370385"],["-116.4083157","33.2368041"],["-116.4082195","33.2363715"],["-116.4082156","33.2361895"],["-116.4082655","33.2360255"],["-116.408386","33.2358698"],["-116.4085137","33.2357652"],["-116.4087085","33.2356517"],["-116.408927","33.2355914"],["-116.4091277","33.2355977"],["-116.4095886","33.2357349"],["-116.4098029","33.2357535"],["-116.4100181","33.2357186"],["-116.4101806","33.2356299"],["-116.4103108","33.2355066"],["-116.410387","33.2353465"],["-116.4104053","33.2352155"],["-116.4103703","33.235082"],["-116.4103081","33.2349281"],["-116.4102005","33.234719"],["-116.410153","33.2345701"],["-116.4101632","33.2344308"],["-116.4101884","33.2343058"],["-116.4102451","33.234167"],["-116.4103512","33.2340585"],["-116.4105183","33.2339781"],["-116.4108284","33.2339128"],["-116.4109661","33.2338771"],["-116.4110406","33.2338494"],["-116.4111101","33.2338148"],["-116.4111626","33.2337745"],["-116.4112144","33.2337277"],["-116.4112508","33.233678"],["-116.4112896","33.2336018"],["-116.4113063","33.2335484"],["-116.4113148","33.2334988"],["-116.4113147","33.2334487"],["-116.4113087","33.23341"],["-116.4112979","33.233372"],["-116.411285","33.2333333"],["-116.4112692","33.2333005"],["-116.4112501","33.2332681"],["-116.4112142","33.2332216"],["-116.4111716","33.2331744"],["-116.4111201","33.2331288"],["-116.4110657","33.2330879"],["-116.4110108","33.2330515"],["-116.4108125","33.2329376"],["-116.4107247","33.2328845"],["-116.4106276","33.2328126"],["-116.410547","33.2327379"],["-116.4104795","33.2326637"],["-116.4104283","33.2325903"],["-116.4104016","33.2325415"],["-116.4103823","33.2324918"],["-116.4103694","33.2324308"],["-116.4103658","33.2323678"],["-116.4103698","33.2322888"],["-116.4103849","33.2322126"],["-116.4104148","33.232139"],["-116.4104573","33.2320676"],["-116.4105229","33.2319947"],["-116.4106369","33.2318916"],["-116.4107726","33.231779"],["-116.4109558","33.2316531"],["-116.4111684","33.2315289"],["-116.4114373","33.2313817"],["-116.4115615","33.2312985"],["-116.4116259","33.2312421"],["-116.4116746","33.2311825"],["-116.4117114","33.2311229"],["-116.4117346","33.2310618"],["-116.4117509","33.2309918"],["-116.4117603","33.230928"],["-116.4117615","33.2308592"],["-116.4117487","33.230794"],["-116.4117274","33.2307418"],["-116.4116933","33.2306799"],["-116.4116404","33.2306054"],["-116.4115701","33.2305205"],["-116.4114764","33.2304274"],["-116.4113392","33.2303052"],["-116.4112674","33.2302517"],["-116.4111644","33.2301883"],["-116.4110375","33.2301103"],["-116.4109567","33.2300564"],["-116.4108996","33.2300085"],["-116.4108518","33.229961"],["-116.410818","33.229904"],["-116.4107993","33.2298601"],["-116.4107847","33.2298105"],["-116.4107751","33.2297688"],["-116.4107696","33.2297103"],["-116.4107717","33.2296534"],["-116.4107792","33.2295899"],["-116.4107906","33.2295413"],["-116.4108169","33.2294755"],["-116.4108568","33.2294085"],["-116.4109232","33.2293216"],["-116.4116898","33.2284838"],["-116.4118646","33.2282795"],["-116.4119518","33.2281577"],["-116.4120159","33.2280326"],["-116.4120545","33.2279197"],["-116.4120775","33.2278251"],["-116.4120968","33.2277226"],["-116.4121083","33.2276055"],["-116.4121103","33.2273742"],["-116.412113","33.2270595"],["-116.4121183","33.226781"],["-116.4121275","33.2265903"],["-116.4121403","33.2265052"],["-116.4121591","33.2264237"],["-116.4121856","33.2263456"],["-116.4122271","33.2262627"],["-116.4122737","33.2261869"],["-116.4123344","33.2261088"],["-116.4124129","33.2260226"],["-116.4124896","33.2259515"],["-116.4125829","33.2258758"],["-116.4126785","33.2258111"],["-116.4127902","33.2257485"],["-116.4128756","33.2257086"],["-116.4129428","33.2256808"],["-116.4130192","33.2256576"],["-116.413125","33.225635"],["-116.4132381","33.2256211"],["-116.4133496","33.2256155"],["-116.4134603","33.2256204"],["-116.4136625","33.2256461"],["-116.4139369","33.225686"],["-116.4142393","33.2257286"],["-116.4142971","33.2257315"],["-116.4143528","33.2257328"],["-116.414401","33.2257302"],["-116.414449","33.2257265"],["-116.4145011","33.2257196"],["-116.41456","33.2257056"],["-116.4146358","33.2256802"],["-116.4147178","33.2256457"],["-116.4147945","33.2256054"],["-116.4148658","33.2255609"],["-116.4149336","33.2255058"],["-116.4150072","33.2254415"],["-116.4151159","33.2253153"],["-116.415413","33.224939"],["-116.4155131","33.2248207"],["-116.4155949","33.2247294"],["-116.4156711","33.2246552"],["-116.4157357","33.2245981"],["-116.4158078","33.2245519"],["-116.415881","33.2245139"],["-116.4159596","33.2244914"],["-116.4160417","33.2244777"],["-116.4161357","33.2244725"],["-116.4162352","33.2244792"],["-116.4163168","33.2244893"],["-116.416431","33.2245162"],["-116.4165169","33.224543"],["-116.4165687","33.2245629"],["-116.4166244","33.224589"],["-116.4167141","33.2246424"],["-116.4168349","33.2247342"],["-116.417012","33.2248869"],["-116.4172133","33.2250611"],["-116.4172894","33.2251129"],["-116.4173862","33.2251658"],["-116.4175065","33.2252189"],["-116.4176095","33.2252562"],["-116.4177065","33.2252815"],["-116.4178107","33.2253034"],["-116.4179079","33.2253156"],["-116.4180239","33.2253248"],["-116.418111","33.2253256"],["-116.4182047","33.2253193"],["-116.4183112","33.2253077"],["-116.4184345","33.2252871"],["-116.4185764","33.2252555"],["-116.4188394","33.2251785"],["-116.4190368","33.2251185"],["-116.4191387","33.2250971"],["-116.419248","33.2250839"],["-116.4193633","33.2250804"],["-116.4194956","33.2250867"],["-116.4196382","33.2251017"],["-116.4199106","33.2251416"],["-116.4203762","33.2252165"],["-116.4207335","33.2252688"],["-116.4209897","33.2252871"],["-116.4210816","33.2252956"],["-116.421138","33.2253055"],["-116.421188","33.2253173"],["-116.4212431","33.2253323"],["-116.4213264","33.2253633"],["-116.4214191","33.2253978"],["-116.4215276","33.2254373"],["-116.4216104","33.2254599"],["-116.4216851","33.2254702"],["-116.421769","33.2254734"],["-116.4218778","33.2254627"],["-116.4219816","33.2254495"],["-116.4220986","33.2254279"],["-116.4231665","33.2251921"],["-116.423456","33.2251215"],["-116.4235986","33.2250772"],["-116.4237293","33.2250267"],["-116.4238599","33.2249632"],["-116.4239748","33.2248933"],["-116.4240939","33.2248014"],["-116.424244","33.2246639"],["-116.4243816","33.2245288"],["-116.4244609","33.2244266"],["-116.4244964","33.2243612"],["-116.4245173","33.2243037"],["-116.4245266","33.2242512"],["-116.4245283","33.2241847"],["-116.4245212","33.2241308"],["-116.4244994","33.2240646"],["-116.4244623","33.2240021"],["-116.424409","33.2239381"],["-116.4243449","33.2238818"],["-116.4242778","33.2238364"],["-116.4241844","33.2237939"],["-116.4240913","33.2237658"],["-116.4239866","33.223743"],["-116.4238528","33.2237272"],["-116.4236359","33.2237103"],["-116.4234953","33.2236962"],["-116.4233597","33.2236763"],["-116.4231804","33.2236433"],["-116.4230168","33.2236054"],["-116.4228729","33.2235591"],["-116.4227492","33.2235092"],["-116.4226097","33.2234427"],["-116.42246","33.2233622"],["-116.4222001","33.2231914"],["-116.4206111","33.2221025"],["-116.4204704","33.2219596"],["-116.420382","33.2217839"],["-116.4203676","33.2216017"],["-116.4204366","33.221394"],["-116.4206105","33.2211984"],["-116.4207843","33.2210436"],["-116.4209209","33.2208696"],["-116.42102","33.2206285"],["-116.4211207","33.2202627"],["-116.4212255","33.2200543"],["-116.4213415","33.2199015"],["-116.4214975","33.2197849"],["-116.4217031","33.2196906"],["-116.4219886","33.2196414"],["-116.4223113","33.2196077"],["-116.4225593","33.2195322"],["-116.42272","33.2194262"],["-116.4228735","33.2192217"],["-116.4232027","33.2187076"],["-116.4234437","33.2184621"],["-116.4236039","33.2183612"],["-116.4238962","33.2182241"],["-116.4240976","33.2180671"],["-116.4242479","33.2179177"],["-116.4243697","33.2176849"],["-116.4244866","33.2174238"],["-116.4245561","33.2171458"],["-116.4246301","33.2168054"],["-116.4247235","33.2164178"],["-116.4248512","33.2160419"],["-116.4249406","33.215796"],["-116.4250502","33.2153827"],["-116.4251152","33.2150623"],["-116.4250911","33.2148235"],["-116.4250021","33.21464"],["-116.4248753","33.2144952"],["-116.424635","33.2143174"],["-116.4242976","33.2140957"],["-116.423994","33.2138284"],["-116.423793","33.2135981"],["-116.4237319","33.2134877"],["-116.4236943","33.213386"],["-116.4236849","33.2132716"],["-116.4237112","33.2131612"],["-116.4237912","33.213037"],["-116.4239128","33.2129348"],["-116.4240497","33.2128783"],["-116.4242321","33.2128668"],["-116.4245803","33.2129793"],["-116.4261686","33.2137598"],["-116.4265165","33.2138897"],["-116.4267482","33.2139184"],["-116.4270105","33.213896"],["-116.427233","33.2138258"],["-116.4274965","33.2136884"],["-116.4279511","33.2133282"],["-116.4282781","33.2131063"],["-116.4284796","33.2130101"],["-116.428824","33.2128865"],["-116.4297635","33.2126249"],["-116.4299895","33.2125361"],["-116.4301209","33.2124498"],["-116.4302339","33.2123175"],["-116.4302877","33.2121734"],["-116.4302873","33.2120457"],["-116.4302347","33.2118756"],["-116.4300113","33.2114689"],["-116.4299719","33.2113072"],["-116.4299727","33.2112018"],["-116.4300227","33.2109968"],["-116.4300827","33.2108762"],["-116.4302336","33.2107071"],["-116.4303924","33.2105665"],["-116.4306785","33.2103878"],["-116.430818","33.210328"],["-116.430951","33.2102937"],["-116.43116","33.2102728"],["-116.4313559","33.2103026"],["-116.4315492","33.2104006"],["-116.4318479","33.210621"],["-116.4321271","33.2107438"],["-116.4323502","33.2107901"],["-116.4326225","33.210785"],["-116.4330601","33.2106996"],["-116.433511","33.2106324"],["-116.4340386","33.2105987"],["-116.4346175","33.2105913"],["-116.4350254","33.2106122"],["-116.4354383","33.2106579"],["-116.4362397","33.210808"],["-116.4392603","33.2114423"],["-116.4397132","33.2114916"],["-116.440202","33.2114799"],["-116.4416091","33.2113667"],["-116.4421542","33.2112849"],["-116.4424549","33.2112162"],["-116.4429703","33.2110644"],["-116.4431451","33.2110306"],["-116.4434372","33.211042"],["-116.4436745","33.2111067"],["-116.4442081","33.2113237"],["-116.4444775","33.2114054"],["-116.4448083","33.211449"],["-116.4450215","33.211459"],["-116.445166","33.2114492"],["-116.4453117","33.2114327"],["-116.4455853","33.2113673"],["-116.4459348","33.2112222"],["-116.4462075","33.2110431"],["-116.4465928","33.2106797"],["-116.4468126","33.2105114"],["-116.4469202","33.2104398"],["-116.447248","33.2102953"],["-116.4479449","33.2101556"],["-116.4507586","33.2097657"],["-116.4514196","33.2097276"],["-116.4518264","33.2097963"],["-116.4522335","33.2099277"],["-116.4524947","33.210055"],["-116.4527394","33.2102023"],["-116.4529753","33.2103951"],["-116.453168","33.2106169"],["-116.4533481","33.2109272"],["-116.4543752","33.2132187"],["-116.4545091","33.2136764"],["-116.454511","33.2139131"],["-116.4544496","33.2141286"],["-116.4543215","33.2143833"],["-116.4541279","33.2146383"],["-116.4539014","33.2148454"],["-116.4536557","33.2149918"],["-116.4533806","33.2151074"],["-116.4531537","33.2151717"],["-116.4528298","33.2152149"],["-116.4521691","33.2152085"],["-116.451894","33.2152431"],["-116.4516376","33.2153196"],["-116.4513862","33.2154471"],["-116.4512624","33.2155444"],["-116.4510605","33.2157534"],["-116.4509304","33.2159775"],["-116.4508623","33.2162516"],["-116.4508608","33.2164326"],["-116.4508943","33.2165642"],["-116.4509968","33.216806"],["-116.4511391","33.2169775"],["-116.4513846","33.2171674"],["-116.4520952","33.2175895"],["-116.452388","33.2178191"],["-116.4528802","33.2182604"],["-116.4531786","33.2186011"],["-116.4534902","33.2189982"],["-116.453833","33.2193598"],["-116.4542674","33.2197388"],["-116.4544645","33.2198818"],["-116.4549044","33.2201233"],["-116.4553273","33.2203128"],["-116.4557656","33.2204474"],["-116.4562617","33.2205465"],["-116.4566395","33.2205986"],["-116.4572426","33.2206352"],["-116.4578516","33.2206174"],["-116.4582595","33.2205747"],["-116.4610835","33.2201222"],["-116.461963","33.2199341"],["-116.462369","33.2197938"],["-116.4628329","33.219588"],["-116.4633589","33.2192708"],["-116.4651793","33.2180976"],["-116.4654998","33.2178251"],["-116.4655829","33.2177115"],["-116.4656517","33.2175718"],["-116.4657114","33.2173744"],["-116.4657187","33.2171528"],["-116.4656784","33.2169099"],["-116.4655269","33.2166192"],["-116.4650231","33.2158096"],["-116.4649444","33.2155984"],["-116.4649214","33.2154129"],["-116.464933","33.2152973"],["-116.4650263","33.2149491"],["-116.4651116","33.2147771"],["-116.4652249","33.2146137"],["-116.4654462","33.2143649"],["-116.4656723","33.2142281"],["-116.4660225","33.2141202"],["-116.4662977","33.2141096"],["-116.4665151","33.2141383"],["-116.4669195","33.214252"],["-116.4673775","33.2143374"],["-116.4678247","33.2143865"],["-116.4682549","33.2143946"],["-116.4685362","33.2143567"],["-116.4687717","33.2142921"],["-116.4689944","33.2141837"],["-116.4693283","33.2139828"],["-116.4695924","33.213886"],["-116.4698055","33.2138619"],["-116.4700646","33.2138761"],["-116.4702117","33.2139124"],["-116.4704489","33.2140176"],["-116.4710945","33.2144301"],["-116.4713161","33.2145454"],["-116.4715138","33.2146173"],["-116.4717658","33.2146739"],["-116.4720208","33.214704"],["-116.4722389","33.2147043"],["-116.4726736","33.2146649"],["-116.4730789","33.2146039"],["-116.4735745","33.2144752"],["-116.4746485","33.2141021"],["-116.4755873","33.2138061"],["-116.4763207","33.2136257"],["-116.4770607","33.2134601"],["-116.4773851","33.2133457"],["-116.4776285","33.2132099"],["-116.4778708","33.2130087"],["-116.4786214","33.2122441"],["-116.4787596","33.2120454"],["-116.4788408","33.2118631"],["-116.4788651","33.2116475"],["-116.4788497","33.211419"],["-116.4788117","33.2112956"],["-116.4787369","33.2111449"],["-116.4786714","33.2109172"],["-116.4786694","33.2107974"],["-116.4787021","33.2106242"],["-116.478798","33.2104269"],["-116.4788856","33.2103185"],["-116.4790545","33.2101714"],["-116.4791895","33.2100984"],["-116.4793471","33.2100413"],["-116.4796024","33.2099972"],["-116.4799202","33.210031"],["-116.4835378","33.2107922"],["-116.4843458","33.2109194"],["-116.4852445","33.2109991"],["-116.4861163","33.2110232"],["-116.4866677","33.2109997"],["-116.4872639","33.2109483"],["-116.4884121","33.2108111"],["-116.4894269","33.2107003"],["-116.490595","33.2105814"],["-116.49203","33.210516"],["-116.5027884","33.2104682"],["-116.5032089","33.2104525"],["-116.5040113","33.2104622"],["-116.5077087","33.2104432"],["-116.508299","33.2104414"],["-116.5317442","33.2103059"],["-116.534187","33.210304"],["-116.5397097","33.2102585"],["-116.5399114","33.2102575"],["-116.54126","33.210246"],["-116.542262","33.2102857"],["-116.5430546","33.210354"],["-116.5436676","33.2104481"],["-116.5442483","33.2105585"],["-116.544861","33.210705"],["-116.5455005","33.2108722"],["-116.546185","33.211074"],["-116.5494775","33.2121915"],["-116.5508102","33.2126206"],["-116.5513175","33.2127549"],["-116.5518639","33.2128772"],["-116.552525","33.2130024"],["-116.5535818","33.2131379"],["-116.5553552","33.2133257"],["-116.5562798","33.2134034"],["-116.5566873","33.2134103"],["-116.5575144","33.2133528"],["-116.5583436","33.2132552"],["-116.558963","33.2131572"],["-116.5597843","33.2129743"],["-116.5611911","33.2126117"],["-116.5617967","33.2124853"],["-116.5622954","33.2124251"],["-116.5625774","33.2124078"],["-116.5629275","33.2124008"],["-116.5634695","33.2124259"],["-116.5637946","33.2124607"],["-116.5643915","33.2125713"],["-116.5647068","33.2126476"],["-116.5650346","33.2127514"],["-116.5653785","33.2128794"],["-116.5663458","33.2133874"],["-116.5729947","33.2174225"],["-116.5735969","33.2177454"],["-116.5742428","33.2180233"],["-116.5748203","33.2182156"],["-116.5756624","33.2184612"],["-116.5762006","33.2185818"],["-116.5766729","33.2186634"],["-116.5771652","33.2187195"],["-116.5776114","33.2187521"],["-116.5782736","33.2187406"],["-116.5788783","33.2186914"],["-116.5793469","33.2186247"],["-116.5798991","33.2185071"],["-116.5804493","33.2183495"],["-116.5809479","33.2181774"],["-116.5830459","33.2173181"],["-116.5836698","33.2171071"],["-116.5840563","33.2170114"],["-116.5846513","33.2169103"],["-116.5852151","33.2168439"],["-116.5858984","33.2168216"],["-116.5878629","33.2168488"],["-116.5893054","33.2168727"],["-116.5898969","33.2169141"],["-116.5903343","33.2169723"],["-116.590905","33.2170979"],["-116.5914082","33.2172366"],["-116.5917856","33.2173675"],["-116.5924127","33.2176465"],["-116.5933559","33.2182045"],["-116.5949226","33.2192218"],["-116.5953519","33.2194594"],["-116.595743","33.2196302"],["-116.5962106","33.219795"],["-116.5967942","33.2199561"],["-116.5978106","33.2201441"],["-116.5997026","33.2204178"],["-116.6006778","33.2205418"],["-116.601325","33.2205649"],["-116.6022516","33.2205041"],["-116.6029439","33.2204456"],["-116.6031796","33.2204122"],["-116.6033484","33.2203813"],["-116.6036623","33.2202917"],["-116.6039248","33.2201893"],["-116.6042569","33.2200299"],["-116.6047737","33.2197947"],["-116.6054625","33.2207218"],["-116.6058775","33.221218"],["-116.6060686","33.221412"],["-116.6063847","33.2216493"],["-116.6066093","33.2217878"],["-116.609793","33.223289"],["-116.6120032","33.2245812"],["-116.612333","33.2247571"],["-116.6128964","33.2249668"],["-116.6152865","33.2257677"],["-116.6160051","33.2260925"],["-116.6195552","33.2279857"],["-116.6199654","33.2281741"],["-116.6204567","33.2283405"],["-116.6208001","33.2284341"],["-116.6213389","33.2285283"],["-116.6216194","33.2285567"],["-116.6219787","33.2285641"],["-116.6222986","33.2285466"],["-116.6229152","33.2284751"],["-116.6241543","33.2282441"],["-116.6256939","33.2279485"],["-116.626367","33.2278608"],["-116.6266754","33.2278541"],["-116.6271209","33.2278918"],["-116.6277491","33.2280154"],["-116.6281045","33.2281249"],["-116.6284831","33.2282812"],["-116.6289004","33.2285049"],["-116.6292443","33.228759"],["-116.6298299","33.2292217"],["-116.6304181","33.2296725"],["-116.6309404","33.2299785"],["-116.631386","33.2301796"],["-116.6317918","33.2303477"],["-116.6330594","33.2308093"],["-116.6346844","33.2313826"],["-116.635338","33.2315598"],["-116.6383861","33.2319187"],["-116.6419434","33.2323291"],["-116.6428969","33.2324725"],["-116.6432938","33.2325841"],["-116.644004","33.2328579"],["-116.6449418","33.2332559"],["-116.6454697","33.2334612"],["-116.6471911","33.2339787"],["-116.6481532","33.2343877"],["-116.6494195","33.235001"],["-116.6513361","33.2359495"],["-116.652817","33.2366706"],["-116.6535305","33.2369792"],["-116.6540605","33.2371391"],["-116.6548285","33.2373242"],["-116.6553902","33.2374779"],["-116.6557238","33.2376008"],["-116.6564402","33.2379625"],["-116.6575864","33.2385884"],["-116.6583118","33.2390525"],["-116.6590093","33.2395648"],["-116.6594697","33.2399451"],["-116.6598445","33.2401848"],["-116.660126","33.2403331"],["-116.6606093","33.2405067"],["-116.662968","33.2411248"],["-116.6646809","33.2415936"],["-116.6655839","33.2418732"],["-116.6660473","33.242059"],["-116.6663715","33.2422381"],["-116.6667525","33.2424958"],["-116.6670446","33.242779"],["-116.6679403","33.243763"],["-116.6684926","33.2441908"],["-116.6698065","33.2450481"],["-116.6715865","33.246393"],["-116.6719813","33.2467201"],["-116.6722926","33.2470681"],["-116.6740117","33.249312"],["-116.6827742","33.243985"],["-116.6831808","33.243765"],["-116.6837132","33.2434989"],["-116.6876952","33.2416629"],["-116.6879223","33.2415472"],["-116.6882128","33.241377"],["-116.6888372","33.2409652"],["-116.6904581","33.2398689"],["-116.6906306","33.2397362"],["-116.6908079","33.2395794"],["-116.690978","33.2394167"],["-116.691421","33.2388749"],["-116.6921852","33.2379093"],["-116.6927036","33.2372564"],["-116.6929236","33.2369645"],["-116.6930679","33.23676"],["-116.6931956","33.2365407"],["-116.6933554","33.2362397"],["-116.6936427","33.2356603"],["-116.6940734","33.2348174"],["-116.6942871","33.2344125"],["-116.6943786","33.2342667"],["-116.6944708","33.2341301"],["-116.6945783","33.2339952"],["-116.694726","33.2338328"],["-116.6950532","33.233506"],["-116.6970969","33.231551"],["-116.697569","33.2311166"],["-116.7002182","33.228791"],["-116.700378","33.2286283"],["-116.7005073","33.2284818"],["-116.7006615","33.2282803"],["-116.7008341","33.2280111"],["-116.7052045","33.2207222"],["-116.7055837","33.2200329"],["-116.7058883","33.2194573"],["-116.7062914","33.2186857"],["-116.7065543","33.2182389"],["-116.7066686","33.2180625"],["-116.7068","33.2178774"],["-116.7069401","33.2177113"],["-116.7070868","33.2175528"],["-116.7072636","33.2173833"],["-116.7074409","33.2172252"],["-116.7080721","33.2167187"],["-116.7085123","33.2163708"],["-116.7087451","33.2161865"],["-116.7089618","33.2159988"],["-116.7090825","33.2158752"],["-116.7091843","33.2157544"],["-116.7092759","33.2156331"],["-116.7093883","33.2154631"],["-116.7094761","33.2153025"],["-116.7095769","33.2150724"],["-116.7096558","33.2148358"],["-116.7097925","33.2143164"],["-116.7113073","33.2080878"],["-116.7113605","33.2078315"],["-116.7114097","33.2075668"],["-116.7114356","33.2073886"],["-116.7114585","33.207174"],["-116.7114705","33.2069465"],["-116.7114621","33.2065749"],["-116.7114123","33.2061625"],["-116.7112297","33.2052181"],["-116.710438","33.2011747"],["-116.710373","33.2007985"],["-116.7103459","33.2006006"],["-116.71033","33.2004543"],["-116.7103193","33.2002702"],["-116.7102978","33.1997967"],["-116.7103426","33.1997896"],["-116.7103981","33.1997985"],["-116.7104843","33.1998239"],["-116.710589","33.1998629"],["-116.710783","33.1999498"],["-116.7130255","33.2009929"],["-116.7133661","33.2011335"],["-116.7142522","33.2014447"],["-116.7144982","33.2015171"],["-116.7150947","33.2016758"],["-116.7154165","33.2017518"],["-116.7157502","33.201824"],["-116.7161078","33.2018894"],["-116.7185904","33.2022762"],["-116.718894","33.2023319"],["-116.7192519","33.2024102"],["-116.7195819","33.2024891"],["-116.719955","33.2025857"],["-116.7205719","33.2027741"],["-116.7208713","33.2028748"],["-116.7212588","33.2030156"],["-116.7217145","33.2032042"],["-116.722164","33.203402"],["-116.7225823","33.2036043"],["-116.7229803","33.2038062"],["-116.7232739","33.2039694"],["-116.7238161","33.2043099"],["-116.72415","33.2045351"],["-116.7249381","33.2051331"],["-116.7261221","33.2060867"],["-116.7263112","33.2062245"],["-116.7264905","33.2063477"],["-116.7266456","33.2064463"],["-116.7270328","33.2066597"],["-116.7272837","33.2067842"],["-116.7276681","33.2069484"],["-116.729232","33.2075678"],["-116.7295391","33.207702"],["-116.729756","33.2078144"],["-116.7301535","33.2080392"],["-116.7303023","33.2081292"],["-116.730488","33.2082517"],["-116.7308576","33.2085271"],["-116.731239","33.2088375"],["-116.7316865","33.2092483"],["-116.7320679","33.2096199"],["-116.7323563","33.2099107"],["-116.7326402","33.2101963"],["-116.7329639","33.2104824"],["-116.7331803","33.2106549"],["-116.7333686","33.2107901"],["-116.73355","33.2109025"],["-116.7337274","33.2110006"],["-116.733891","33.2110766"],["-116.7340612","33.2111464"],["-116.7342631","33.2112101"],["-116.7344581","33.211262"],["-116.7346842","33.2113097"],["-116.735801","33.2114699"],["-116.7360376","33.2115109"],["-116.7362629","33.2115602"],["-116.736492","33.2116217"],["-116.7367642","33.2117103"],["-116.7370494","33.211809"],["-116.7372764","33.2119078"],["-116.7374899","33.2120116"],["-116.7378066","33.2121842"],["-116.738109","33.2123834"],["-116.7383326","33.2125491"],["-116.7385298","33.2127182"],["-116.738753","33.212932"],["-116.73901","33.2132223"],["-116.7392151","33.2134971"],["-116.7396461","33.2140927"],["-116.7399058","33.214419"],["-116.7401255","33.2146545"],["-116.7403892","33.214901"],["-116.74094","33.2153346"],["-116.7418759","33.215946"],["-116.7429288","33.2165973"],["-116.743498","33.2168998"],["-116.7446409","33.2173766"],["-116.7450644","33.2175675"],["-116.7453512","33.2177216"],["-116.7456577","33.2179256"],["-116.746098","33.2182698"],["-116.7471556","33.2193287"],["-116.7473746","33.2195113"],["-116.7479327","33.2199203"],["-116.7506598","33.2218263"],["-116.7516832","33.2225596"],["-116.7523872","33.2230965"],["-116.7528289","33.2234681"],["-116.7532482","33.2238665"],["-116.7537313","33.2243588"],["-116.754413","33.2251499"],["-116.7554654","33.2264405"],["-116.7563452","33.2273875"],["-116.7580977","33.2290767"],["-116.7585782","33.2296072"],["-116.7587793","33.2298977"],["-116.7590436","33.230411"],["-116.7592388","33.2309328"],["-116.7593246","33.2312748"],["-116.7594896","33.2323875"],["-116.7595499","33.2327782"],["-116.7596781","33.2333006"],["-116.7599294","33.2339149"],["-116.7603046","33.2345899"],["-116.7606026","33.2350072"],["-116.7609898","33.2354589"],["-116.7614354","33.2359026"],["-116.7619177","33.2363132"],["-116.7624025","33.2366581"],["-116.7627084","33.2368489"],["-116.7630337","33.2370432"],["-116.7635082","33.2372766"],["-116.763995","33.2374777"],["-116.7645275","33.2376639"],["-116.7650835","33.2378428"],["-116.7661827","33.238161"],["-116.7681846","33.238605"],["-116.7688647","33.2387385"],["-116.7688899","33.2388159"],["-116.7688985","33.2389374"],["-116.7689114","33.2390838"],["-116.768918","33.2392216"],["-116.7689153","33.2393383"],["-116.7689077","33.2394386"],["-116.7688793","33.2395881"],["-116.7688182","33.2397588"],["-116.7687529","33.239885"],["-116.7686752","33.2399986"],["-116.7686022","33.2400834"],["-116.7683995","33.2402854"],["-116.7681354","33.240451"],["-116.7677284","33.2405919"],["-116.7672713","33.2407141"],["-116.7666945","33.240824"],["-116.7661858","33.2408826"],["-116.7656334","33.2409144"],["-116.7654098","33.2409626"],["-116.7652956","33.2410111"],["-116.7651678","33.2410913"],["-116.7650351","33.2412337"],["-116.7648743","33.2414746"],["-116.7646301","33.2416702"],["-116.7638856","33.2419751"],["-116.7637075","33.2420731"],["-116.7635298","33.2422311"],["-116.7634231","33.2424039"],["-116.763362","33.2425974"],["-116.7633619","33.2428457"],["-116.7634414","33.2430848"],["-116.7638873","33.2439112"],["-116.7640328","33.2442413"],["-116.7643272","33.2451609"],["-116.7643674","33.245571"],["-116.7642717","33.2460898"],["-116.7642699","33.2463305"],["-116.7643326","33.246536"],["-116.7644773","33.246804"],["-116.7645737","33.2470837"],["-116.7647763","33.2478017"],["-116.7648548","33.2480829"],["-116.7655725","33.2497401"],["-116.7657958","33.2501473"],["-116.7660303","33.2504416"],["-116.7661383","33.2506468"],["-116.7661414","33.2508633"],["-116.7660872","33.2510196"],["-116.7659699","33.2511527"],["-116.7658975","33.2512094"],["-116.7657951","33.2512593"],["-116.7655834","33.2513203"],["-116.7653343","33.2513101"],["-116.7651837","33.2512542"],["-116.7650131","33.2511559"],["-116.7648916","33.2510892"],["-116.7646853","33.2510291"],["-116.7644002","33.2510219"],["-116.764189","33.251072"],["-116.7639786","33.251187"],["-116.7637925","33.2513826"],["-116.7637164","33.2516062"],["-116.76345","33.252768"],["-116.7633112","33.2530018"],["-116.7631344","33.2531232"],["-116.7630083","33.2531687"],["-116.762873","33.2531872"],["-116.7626559","33.2531668"],["-116.7623844","33.2530641"],["-116.761536","33.2526211"],["-116.7612137","33.2524894"],["-116.7610516","33.2524473"],["-116.7606715","33.2523953"],["-116.7600027","33.2523866"],["-116.7597538","33.252416"],["-116.7595973","33.2524625"],["-116.7594065","33.2525724"],["-116.7592245","33.252766"],["-116.7591775","33.2528664"],["-116.7591346","33.2530532"],["-116.7591464","33.2533346"],["-116.7592389","33.2539117"],["-116.7593593","33.2543212"],["-116.7595376","33.2547378"],["-116.759711","33.2549886"],["-116.7598595","33.2551315"],["-116.7618577","33.2567787"],["-116.762094","33.257032"],["-116.7621534","33.257134"],["-116.7622123","33.2573335"],["-116.7623784","33.2576567"],["-116.7626573","33.2580608"],["-116.7627411","33.2582213"],["-116.7628","33.2584031"],["-116.7628203","33.2586857"],["-116.7628966","33.2589366"],["-116.7630389","33.2591678"],["-116.7634255","33.2595661"],["-116.7637707","33.2598816"],["-116.7640975","33.2601626"],["-116.7643077","33.2604349"],["-116.7644216","33.2607448"],["-116.7645426","33.2609222"],["-116.7646952","33.2610532"],["-116.7649999","33.2612778"],["-116.7651652","33.2615257"],["-116.7652962","33.2619403"],["-116.7654302","33.2622147"],["-116.7656298","33.2624727"],["-116.7659548","33.2628082"],["-116.7661029","33.2630709"],["-116.7663172","33.2636649"],["-116.766519","33.2640238"],["-116.7672405","33.2649515"],["-116.7674686","33.2651854"],["-116.7677298","33.2653421"],["-116.7681632","33.2655024"],["-116.7683296","33.2655975"],["-116.7684497","33.2657209"],["-116.7688253","33.2662616"],["-116.769032","33.2664357"],["-116.7692835","33.2665368"],["-116.76947","33.266558"],["-116.7696372","33.2665347"],["-116.7698123","33.2664624"],["-116.7699502","33.2663554"],["-116.7700751","33.2661441"],["-116.7701006","33.2660482"],["-116.7700432","33.2657104"],["-116.7695719","33.2642111"],["-116.769391","33.2636617"],["-116.7693819","33.2634656"],["-116.7694334","33.263323"],["-116.7695325","33.2631967"],["-116.7696651","33.2630996"],["-116.7697433","33.2630646"],["-116.7699427","33.2630255"],["-116.7701054","33.2630314"],["-116.7702051","33.2630522"],["-116.7703978","33.2631585"],["-116.7716405","33.2640932"],["-116.7719006","33.2642392"],["-116.7721844","33.2643521"],["-116.7724392","33.2644118"],["-116.7728296","33.2644505"],["-116.7732493","33.2644187"],["-116.7736439","33.2643164"],["-116.7746422","33.2638981"],["-116.7748148","33.2638404"],["-116.7749903","33.2638144"],["-116.7752402","33.2638167"],["-116.7755383","33.2638915"],["-116.7757922","33.2640435"],["-116.7761935","33.2644304"],["-116.7763212","33.2645119"],["-116.7765644","33.2645879"],["-116.7771388","33.2646736"],["-116.7774352","33.2647999"],["-116.7775548","33.2648926"],["-116.7776691","33.2650196"],["-116.7789929","33.2669556"],["-116.7792537","33.2671369"],["-116.7794236","33.2671801"],["-116.7796442","33.2672013"],["-116.779834","33.2672459"],["-116.7799565","33.2673001"],["-116.7801463","33.2674371"],["-116.7803831","33.2677235"],["-116.7805712","33.2678463"],["-116.780723","33.2678932"],["-116.7808728","33.2679043"],["-116.7810688","33.267879"],["-116.7813055","33.2677705"],["-116.7816232","33.2674666"],["-116.7818252","33.2673178"],["-116.7820399","33.2672491"],["-116.7822031","33.2672404"],["-116.7823547","33.2672631"],["-116.7824897","33.2673104"],["-116.7825497","33.2673458"],["-116.7826274","33.2673918"],["-116.7827783","33.2675722"],["-116.7828396","33.2678292"],["-116.7830389","33.269482"],["-116.7830252","33.2696903"],["-116.7829504","33.2698523"],["-116.7828456","33.2699852"],["-116.7826665","33.2701583"],["-116.7825945","33.2702751"],["-116.7825493","33.2704044"],["-116.7825497","33.2705433"],["-116.7826031","33.2706918"],["-116.7827118","33.2708462"],["-116.7829375","33.2710765"],["-116.7830389","33.2712311"],["-116.7830727","33.2713195"],["-116.7830942","33.2715251"],["-116.7830776","33.2716568"],["-116.7829891","33.2718832"],["-116.7828689","33.2720342"],["-116.7827802","33.2721123"],["-116.7825528","33.2722697"],["-116.7824135","33.2724354"],["-116.7823566","33.2725429"],["-116.7823231","33.2727346"],["-116.7823982","33.2730378"],["-116.7827061","33.2735873"],["-116.7828488","33.2737384"],["-116.782949","33.2738055"],["-116.7833528","33.2740133"],["-116.7835632","33.2742013"],["-116.783649","33.2743324"],["-116.7836948","33.2744705"],["-116.7837777","33.2749731"],["-116.7837645","33.2752081"],["-116.783684","33.2754611"],["-116.7835002","33.2757779"],["-116.7834494","33.2759664"],["-116.7834524","33.2760882"],["-116.7835459","33.2763085"],["-116.78365","33.2764642"],["-116.7837076","33.2765979"],["-116.783759","33.2767558"],["-116.783788","33.2769547"],["-116.7837592","33.2771273"],["-116.7836991","33.2772789"],["-116.7834953","33.2775688"],["-116.7833496","33.2777065"],["-116.7832585","33.2778228"],["-116.7832132","33.2779515"],["-116.7832062","33.2781425"],["-116.7832612","33.2783395"],["-116.7834047","33.2784797"],["-116.7836522","33.2786013"],["-116.7843487","33.2788136"],["-116.7849643","33.2790572"],["-116.7856099","33.2794064"],["-116.7859684","33.2796607"],["-116.7863645","33.2799973"],["-116.7867404","33.2803839"],["-116.7870545","33.2808053"],["-116.787342","33.2812442"],["-116.7877106","33.2816642"],["-116.7888915","33.2826941"],["-116.7896402","33.2832908"],["-116.7908544","33.2842256"],["-116.7912195","33.2843973"],["-116.791576","33.2844707"],["-116.7927761","33.28454"],["-116.7930481","33.2845803"],["-116.7932024","33.2846379"],["-116.7933842","33.2847399"],["-116.7935122","33.2848538"],["-116.7936643","33.2850848"],["-116.793849","33.2855645"],["-116.7939323","33.285689"],["-116.7940506","33.2857794"],["-116.7941701","33.2858385"],["-116.7943171","33.2858752"],["-116.794447","33.2858793"],["-116.794843","33.2858553"],["-116.7951366","33.2859122"],["-116.7952948","33.28598"],["-116.7958081","33.2863021"],["-116.7963098","33.286682"],["-116.7966233","33.2870032"],["-116.7974064","33.2878816"],["-116.7976321","33.2880356"],["-116.7977623","33.2880849"],["-116.797925","33.2881074"],["-116.7980467","33.2880985"],["-116.7982597","33.2880401"],["-116.7984044","33.2879633"],["-116.7989555","33.2876127"],["-116.7991996","33.2874963"],["-116.7995194","33.2873736"],["-116.7997639","33.2872607"],["-116.7999709","33.2871069"],["-116.8001793","33.286866"],["-116.8003721","33.2864638"],["-116.8005054","33.2863274"],["-116.8006196","33.2862608"],["-116.8007183","33.2862283"],["-116.800921","33.2862029"],["-116.8011299","33.2862144"],["-116.8013268","33.2862584"],["-116.8015567","33.286352"],["-116.8017726","33.2865121"],["-116.8022355","33.2870947"],["-116.8023664","33.2872095"],["-116.8024719","33.287262"],["-116.8026749","33.2873091"],["-116.8028853","33.2872975"],["-116.8031038","33.2872225"],["-116.8034886","33.2869413"],["-116.8037163","33.2868607"],["-116.8038842","33.2868439"],["-116.8041153","33.2868771"],["-116.8042952","33.2869541"],["-116.8044276","33.2870592"],["-116.8045473","33.2872206"],["-116.8046019","33.2873671"],["-116.8046243","33.2875876"],["-116.8047057","33.2879889"],["-116.8048349","33.2882771"],["-116.8049883","33.2885084"],["-116.805077","33.2886034"],["-116.8051738","33.2886678"],["-116.8053514","33.288743"],["-116.805574","33.2887743"],["-116.805682","33.2887677"],["-116.806025","33.2886983"],["-116.8061629","33.2886867"],["-116.8063422","33.2887099"],["-116.8064888","33.2887638"],["-116.8066587","33.2888928"],["-116.8071347","33.2894645"],["-116.807474","33.2899231"],["-116.8076373","33.290096"],["-116.8078912","33.2902559"],["-116.8081247","33.2903309"],["-116.8083814","33.2903494"],["-116.8086261","33.2903175"],["-116.8087679","33.2902716"],["-116.8089976","33.2901428"],["-116.8103182","33.289073"],["-116.8125399","33.2872528"],["-116.8129275","33.2870182"],["-116.8133431","33.2868448"],["-116.8137685","33.2867276"],["-116.8142407","33.2866678"],["-116.8145211","33.2866615"],["-116.8150741","33.2867125"],["-116.8154773","33.286809"],["-116.8156987","33.2868827"],["-116.8161718","33.2871061"],["-116.8189354","33.2885712"],["-116.819481","33.2889101"],["-116.8202343","33.2894667"],["-116.8206305","33.2897186"],["-116.8211385","33.2899468"],["-116.8213826","33.2900177"],["-116.8216883","33.2900857"],["-116.8220227","33.2901281"],["-116.8222852","33.2901407"],["-116.8228716","33.2901038"],["-116.8245869","33.289971"],["-116.8249013","33.2899793"],["-116.8250959","33.290003"],["-116.8254019","33.2900654"],["-116.8257156","33.2901693"],["-116.8260122","33.2903054"],["-116.8262982","33.2904847"],["-116.8265066","33.2906477"],["-116.8268092","33.2909628"],["-116.8270561","33.2912873"],["-116.8274358","33.2917383"],["-116.8278163","33.2920805"],["-116.8281185","33.2922875"],["-116.8285968","33.2925605"],["-116.8288491","33.2926539"],["-116.8290366","33.2926882"],["-116.8293686","33.2926954"],["-116.829674","33.2926448"],["-116.829953","33.2925398"],["-116.8302484","33.292394"],["-116.830436","33.292326"],["-116.8305951","33.2923023"],["-116.8308257","33.2923058"],["-116.8309639","33.2923295"],["-116.8311737","33.2923975"],["-116.8340929","33.2936446"],["-116.8343923","33.293808"],["-116.8345024","33.293918"],["-116.834615","33.2941089"],["-116.8346799","33.2943164"],["-116.8347504","33.2944415"],["-116.8348967","33.2945962"],["-116.834983","33.2946496"],["-116.8351343","33.2947269"],["-116.8355042","33.2948541"],["-116.8356379","33.29493"],["-116.8357325","33.2950088"],["-116.8358502","33.2951556"],["-116.8358971","33.2953212"],["-116.8358915","33.2955694"],["-116.8357675","33.2959427"],["-116.8357555","33.2962007"],["-116.8359107","33.2967505"],["-116.83641","33.2976175"],["-116.8365648","33.2978041"],["-116.8367575","33.2979387"],["-116.8369032","33.2979956"],["-116.8371249","33.2980241"],["-116.8373382","33.297995"],["-116.8376343","33.2978707"],["-116.8377548","33.2977901"],["-116.8378911","33.2976402"],["-116.8380156","33.2974002"],["-116.8380424","33.2972894"],["-116.8380593","33.2970089"],["-116.8381029","33.2968633"],["-116.8382595","33.2966611"],["-116.838471","33.2965135"],["-116.8387525","33.2964335"],["-116.8390426","33.2964403"],["-116.8393482","33.2965349"],["-116.8396237","33.296669"],["-116.8398772","33.2968435"],["-116.8400708","33.2970251"],["-116.840218","33.2972361"],["-116.8404552","33.29772"],["-116.8405271","33.2978571"],["-116.8405818","33.2979531"],["-116.8406677","33.2980272"],["-116.8409354","33.2981852"],["-116.8411021","33.2982384"],["-116.8414599","33.2983112"],["-116.8416369","33.2983718"],["-116.8418136","33.2984703"],["-116.8419058","33.2985414"],["-116.8420449","33.2987112"],["-116.8427158","33.3001367"],["-116.8428095","33.300418"],["-116.8428404","33.3006183"],["-116.8428381","33.3008029"],["-116.8427848","33.3011912"],["-116.8427919","33.3013469"],["-116.8428599","33.3015077"],["-116.8429845","33.3016365"],["-116.8430723","33.3017005"],["-116.8431807","33.3017498"],["-116.8433295","33.3017901"],["-116.8435011","33.3017968"],["-116.843838","33.3017497"],["-116.844113","33.3017363"],["-116.8443816","33.3017696"],["-116.845799","33.3021086"],["-116.8461149","33.3022559"],["-116.8462504","33.3023832"],["-116.8463651","33.3026006"],["-116.8464428","33.3029957"],["-116.8465224","33.3031832"],["-116.8466505","33.3033045"],["-116.8468333","33.3033908"],["-116.8470753","33.3034258"],["-116.8472771","33.3033933"],["-116.8475969","33.3032988"],["-116.8478009","33.3032697"],["-116.8480059","33.3032776"],["-116.8481846","33.3033165"],["-116.8483698","33.303394"],["-116.848539","33.3034978"],["-116.8492654","33.3040797"],["-116.8494607","33.3041793"],["-116.8496932","33.3042466"],["-116.8499571","33.3042752"],["-116.8503244","33.3042314"],["-116.8505887","33.3041509"],["-116.8507182","33.3041283"],["-116.8509857","33.3041333"],["-116.8511956","33.3041857"],["-116.8513745","33.304263"],["-116.8514721","33.3043272"],["-116.8515713","33.3044206"],["-116.85168","33.3045669"],["-116.8518203","33.3048964"],["-116.8519385","33.3050777"],["-116.8521143","33.30522"],["-116.8522453","33.3052939"],["-116.8524179","33.305357"],["-116.8526559","33.3053904"],["-116.8529311","33.3053674"],["-116.8534756","33.305241"],["-116.8537423","33.3052077"],["-116.8540456","33.3052159"],["-116.854243","33.3052594"],["-116.8545353","33.3053976"],["-116.8549705","33.3057536"],["-116.8551267","33.3058608"],["-116.8553718","33.3059498"],["-116.8556199","33.3059776"],["-116.8561576","33.3060019"],["-116.8564565","33.3060725"],["-116.8566162","33.3061449"],["-116.8568544","33.3063037"],["-116.857087","33.3065566"],["-116.8571747","33.3067715"],["-116.8571922","33.3068828"],["-116.8571971","33.3071697"],["-116.8572777","33.3074004"],["-116.8573928","33.3075283"],["-116.8575319","33.3076319"],["-116.8577132","33.3077106"],["-116.8581243","33.3077885"],["-116.8583967","33.3078747"],["-116.8585961","33.3079696"],["-116.8587734","33.3080831"],["-116.8589017","33.308191"],["-116.8591473","33.3084457"],["-116.8593041","33.3086926"],["-116.8595514","33.3091756"],["-116.8596778","33.3093625"],["-116.8597867","33.309484"],["-116.8599222","33.3095882"],["-116.8602142","33.3097721"],["-116.8604246","33.3099205"],["-116.8605706","33.3100657"],["-116.8608882","33.3104581"],["-116.8611069","33.3106086"],["-116.861305","33.310668"],["-116.8616545","33.3107386"],["-116.8617524","33.3107715"],["-116.8619278","33.3108791"],["-116.8620592","33.3110076"],["-116.862155","33.3111834"],["-116.8621656","33.311231"],["-116.8621819","33.3113614"],["-116.8621925","33.3117586"],["-116.86224","33.3118967"],["-116.8622831","33.3119761"],["-116.8623405","33.3120452"],["-116.8624593","33.3121343"],["-116.8625886","33.3121834"],["-116.8627739","33.3122079"],["-116.8642383","33.3122979"],["-116.8644676","33.3123477"],["-116.8647286","33.3124713"],["-116.8649163","33.3126152"],["-116.8650676","33.3128048"],["-116.8651269","33.3129882"],["-116.8650192","33.3130127"],["-116.8647203","33.313038"],["-116.8642586","33.3131941"],["-116.8639797","33.3132918"],["-116.8637665","33.3133665"],["-116.8636221","33.3133594"],["-116.8635551","33.3133384"],["-116.8634604","33.313266"],["-116.8633994","33.3131106"],["-116.8632487","33.3122821"],["-116.8627741","33.3122075"],["-116.8625909","33.3121839"],["-116.8624606","33.312135"],["-116.86234","33.3120452"],["-116.8622826","33.3119757"],["-116.8622388","33.3118942"],["-116.8621919","33.3117548"],["-116.8621817","33.31136"],["-116.8621652","33.3112277"],["-116.8621551","33.3111834"],["-116.8620601","33.3110086"],["-116.8619282","33.3108796"],["-116.8617541","33.3107726"],["-116.8616543","33.3107385"],["-116.8612975","33.3106664"],["-116.8611033","33.310607"],["-116.8608852","33.3104551"],["-116.8605718","33.3100667"],["-116.8604254","33.3099212"],["-116.8602226","33.3097777"],["-116.8599234","33.3095895"],["-116.8597878","33.3094849"],["-116.8596783","33.3093631"],["-116.8595485","33.3091699"],["-116.8593003","33.3086862"],["-116.859147","33.3084455"],["-116.8588972","33.3081864"],["-116.8587721","33.3080824"],["-116.858594","33.3079685"],["-116.8583963","33.3078745"],["-116.8581315","33.3077902"],["-116.8577169","33.3077114"],["-116.8575318","33.3076319"],["-116.8573934","33.307529"],["-116.8572792","33.3074024"],["-116.8571974","33.3071739"],["-116.857192","33.3068841"],["-116.8571744","33.3067711"],["-116.8570878","33.3065574"],["-116.8568545","33.3063038"],["-116.8566197","33.3061468"],["-116.8564549","33.3060721"],["-116.8561651","33.3060026"],["-116.8556041","33.3059767"],["-116.8553719","33.30595"],["-116.8551244","33.3058595"],["-116.8549739","33.305756"],["-116.8545332","33.3053959"],["-116.8542429","33.3052596"],["-116.8540461","33.3052159"],["-116.8537387","33.3052084"],["-116.8534731","33.3052416"],["-116.852929","33.3053678"],["-116.8526559","33.3053903"],["-116.852419","33.3053572"],["-116.8522443","33.3052935"],["-116.8521171","33.3052217"],["-116.8519383","33.3050776"],["-116.8518197","33.3048943"],["-116.8516797","33.3045658"],["-116.8515697","33.3044186"],["-116.8514706","33.3043261"],["-116.8513747","33.304263"],["-116.8511928","33.304185"],["-116.8509852","33.3041335"],["-116.8507159","33.3041282"],["-116.8505923","33.3041498"],["-116.8503225","33.3042317"],["-116.8499605","33.3042752"],["-116.849695","33.304247"],["-116.8494628","33.3041803"],["-116.8492625","33.3040774"],["-116.848541","33.3034992"],["-116.8483692","33.3033937"],["-116.848184","33.3033161"],["-116.8480039","33.3032774"],["-116.847803","33.3032695"],["-116.8475979","33.3032984"],["-116.8472749","33.3033938"],["-116.8470719","33.3034257"],["-116.846837","33.3033917"],["-116.8466524","33.3033058"],["-116.8465211","33.3031816"],["-116.8464424","33.3029952"],["-116.8463659","33.3026023"],["-116.8462507","33.3023838"],["-116.8461158","33.3022567"],["-116.8458007","33.3021091"],["-116.8443903","33.3017713"],["-116.844111","33.3017369"],["-116.843843","33.3017493"],["-116.8435021","33.3017967"],["-116.8433305","33.3017904"],["-116.8431814","33.30175"],["-116.8430712","33.3017001"],["-116.8429853","33.3016369"],["-116.8428598","33.3015077"],["-116.8427918","33.3013473"],["-116.8427842","33.3011957"],["-116.8428384","33.3008003"],["-116.84284","33.3006174"],["-116.8428088","33.3004144"],["-116.8427116","33.3001265"],["-116.8420454","33.2987119"],["-116.841907","33.2985426"],["-116.8418138","33.2984708"],["-116.8416389","33.2983728"],["-116.8414655","33.2983125"],["-116.8411044","33.298239"],["-116.8409346","33.2981846"],["-116.8406653","33.2980255"],["-116.8405822","33.2979529"],["-116.8405267","33.2978561"],["-116.8404543","33.2977182"],["-116.8402165","33.2972336"],["-116.8400714","33.2970258"],["-116.8398795","33.2968453"],["-116.8396209","33.2966676"],["-116.8393433","33.2965331"],["-116.8390418","33.2964401"],["-116.8387507","33.2964338"],["-116.8384711","33.2965137"],["-116.8382592","33.2966614"],["-116.8381035","33.2968622"],["-116.838059","33.2970104"],["-116.8380428","33.297286"],["-116.8380142","33.2974031"],["-116.8378914","33.2976396"],["-116.8377555","33.2977894"],["-116.8376365","33.2978696"],["-116.8373398","33.2979945"],["-116.8371275","33.298024"],["-116.8369051","33.2979961"],["-116.8367587","33.2979393"],["-116.8365672","33.2978064"],["-116.8364138","33.2976236"],["-116.8359103","33.2967499"],["-116.8357545","33.2961933"],["-116.8357682","33.2959399"],["-116.8358927","33.2955633"],["-116.8358969","33.2953188"],["-116.8358493","33.2951544"],["-116.8357346","33.2950105"],["-116.8356377","33.29493"],["-116.835506","33.2948548"],["-116.8351333","33.2947267"],["-116.8349848","33.2946507"],["-116.8348949","33.2945942"],["-116.8347523","33.2944439"],["-116.8346791","33.2943141"],["-116.8346151","33.2941098"],["-116.8345025","33.2939179"],["-116.8343912","33.293807"],["-116.8340892","33.2936433"],["-116.8311804","33.2924002"],["-116.8309643","33.2923296"],["-116.8308279","33.2923061"],["-116.8305956","33.2923022"],["-116.8304363","33.2923258"],["-116.8302459","33.292395"],["-116.8299518","33.2925402"],["-116.8296719","33.2926453"],["-116.8293674","33.2926954"],["-116.8290399","33.2926887"],["-116.8288455","33.2926529"],["-116.8285991","33.2925616"],["-116.8281205","33.2922888"],["-116.8278101","33.2920756"],["-116.8274372","33.29174"],["-116.827051","33.2912812"],["-116.8268076","33.2909607"],["-116.8265097","33.2906507"],["-116.826303","33.2904879"],["-116.8260137","33.2903061"],["-116.8257202","33.2901712"],["-116.8253961","33.2900639"],["-116.8250948","33.2900025"],["-116.8249011","33.2899792"],["-116.8245948","33.2899718"],["-116.8228045","33.2901088"],["-116.8222847","33.2901396"],["-116.8220168","33.2901278"],["-116.8216842","33.2900851"],["-116.8213906","33.2900197"],["-116.8211426","33.2899483"],["-116.8206277","33.2897169"],["-116.8202369","33.289469"],["-116.8194695","33.2889018"],["-116.8189298","33.2885678"],["-116.816191","33.2871157"],["-116.8156935","33.2868804"],["-116.8154739","33.2868077"],["-116.8150667","33.2867115"],["-116.8145295","33.2866634"],["-116.8142355","33.2866683"],["-116.8137684","33.2867277"],["-116.8133348","33.2868477"],["-116.8129319","33.2870159"],["-116.8125437","33.2872504"],["-116.8101929","33.2891756"],["-116.8089978","33.2901427"],["-116.8087677","33.2902716"],["-116.8086258","33.2903176"],["-116.8083797","33.2903494"],["-116.8081245","33.2903306"],["-116.8078892","33.290255"],["-116.8076385","33.2900973"],["-116.8074729","33.2899215"],["-116.8071371","33.2894678"],["-116.8066598","33.2888939"],["-116.8064886","33.288764"],["-116.8063408","33.2887094"],["-116.8061616","33.2886868"],["-116.8060252","33.2886981"],["-116.8056797","33.288768"],["-116.805575","33.2887741"],["-116.8053527","33.2887434"],["-116.8051718","33.2886666"],["-116.8050773","33.2886034"],["-116.8049894","33.2885099"],["-116.8048343","33.2882756"],["-116.8047043","33.287984"],["-116.8046241","33.2875874"],["-116.8046019","33.2873675"],["-116.8045472","33.2872197"],["-116.8044267","33.2870582"],["-116.8042943","33.2869536"],["-116.8041156","33.2868769"],["-116.8038841","33.286844"],["-116.8037144","33.2868613"],["-116.8034854","33.2869432"],["-116.8031011","33.2872242"],["-116.8028872","33.2872972"],["-116.8026721","33.2873088"],["-116.8024734","33.2872621"],["-116.8023682","33.2872104"],["-116.8022331","33.2870917"],["-116.8017756","33.2865155"],["-116.8015584","33.2863528"],["-116.8013265","33.2862581"],["-116.8011318","33.2862147"],["-116.8009204","33.2862029"],["-116.8007173","33.2862286"],["-116.8006205","33.2862604"],["-116.8005071","33.2863261"],["-116.8003734","33.2864615"],["-116.8001797","33.2868652"],["-116.7999724","33.2871057"],["-116.7997656","33.2872599"],["-116.7995293","33.2873696"],["-116.7992006","33.2874958"],["-116.7989578","33.2876115"],["-116.7984046","33.2879631"],["-116.7982564","33.2880412"],["-116.7980469","33.2880984"],["-116.7979259","33.2881074"],["-116.7977628","33.2880849"],["-116.7976333","33.2880362"],["-116.7974075","33.2878831"],["-116.7966378","33.2870191"],["-116.7963156","33.286687"],["-116.7957914","33.2862908"],["-116.7952962","33.2859806"],["-116.7951351","33.2859117"],["-116.7948454","33.2858556"],["-116.794463","33.285878"],["-116.794318","33.2858753"],["-116.794168","33.2858379"],["-116.7940509","33.2857799"],["-116.7939323","33.2856892"],["-116.7938495","33.2855654"],["-116.7936635","33.2850833"],["-116.7935122","33.2848539"],["-116.7933859","33.2847407"],["-116.7931996","33.2846365"],["-116.7930501","33.2845809"],["-116.7927731","33.2845398"],["-116.7915628","33.2844695"],["-116.7912249","33.2843988"],["-116.7908533","33.2842245"],["-116.7896161","33.2832718"],["-116.7888908","33.2826936"],["-116.7877105","33.2816641"],["-116.7873432","33.2812452"],["-116.7870595","33.2808127"],["-116.7867431","33.2803875"],["-116.7863631","33.2799956"],["-116.7859713","33.2796632"],["-116.7856165","33.2794105"],["-116.7849625","33.2790563"],["-116.7843454","33.2788125"],["-116.7836468","33.2785995"],["-116.7834051","33.27848"],["-116.783262","33.2783404"],["-116.7832059","33.2781403"],["-116.7832132","33.2779525"],["-116.7832586","33.2778226"],["-116.7833505","33.2777055"],["-116.7834964","33.2775672"],["-116.7836991","33.2772792"],["-116.7837591","33.2771279"],["-116.7837878","33.2769525"],["-116.7837589","33.2767548"],["-116.7837072","33.276596"],["-116.7836511","33.276466"],["-116.7835462","33.2763097"],["-116.7834521","33.2760879"],["-116.7834492","33.2759658"],["-116.7835002","33.2757775"],["-116.7836841","33.2754608"],["-116.7837652","33.2752043"],["-116.7837775","33.2749724"],["-116.7836938","33.2744666"],["-116.7836496","33.2743334"],["-116.7835616","33.2741999"],["-116.78335","33.2740119"],["-116.7829521","33.2738071"],["-116.7828494","33.2737384"],["-116.7827053","33.2735863"],["-116.7823968","33.2730345"],["-116.7823234","33.2727345"],["-116.7823567","33.272542"],["-116.7824136","33.2724351"],["-116.7825524","33.2722702"],["-116.7827798","33.2721124"],["-116.7828691","33.272034"],["-116.7829881","33.2718852"],["-116.7830768","33.2716591"],["-116.783094","33.2715255"],["-116.7830725","33.2713199"],["-116.7830395","33.2712318"],["-116.7829369","33.2710757"],["-116.7827149","33.27085"],["-116.7826024","33.2706906"],["-116.7825496","33.270542"],["-116.7825492","33.270406"],["-116.7825941","33.2702761"],["-116.7826681","33.2701566"],["-116.7828453","33.2699855"],["-116.7829503","33.2698522"],["-116.7830254","33.26969"],["-116.7830384","33.2694769"],["-116.7828385","33.2678215"],["-116.7827771","33.2675708"],["-116.7826263","33.2673906"],["-116.7825484","33.267345"],["-116.7824905","33.2673104"],["-116.7823556","33.2672633"],["-116.7822047","33.2672404"],["-116.7820406","33.267249"],["-116.7818236","33.2673185"],["-116.781621","33.2674686"],["-116.7813082","33.2677685"],["-116.7810678","33.2678794"],["-116.780873","33.2679041"],["-116.7807223","33.267893"],["-116.7805698","33.2678458"],["-116.7803843","33.2677246"],["-116.7801484","33.2674395"],["-116.7799575","33.2673006"],["-116.7798344","33.2672461"],["-116.7796458","33.2672015"],["-116.7794211","33.2671798"],["-116.7792541","33.2671369"],["-116.778993","33.2669557"],["-116.7776729","33.2650242"],["-116.7775568","33.2648944"],["-116.777432","33.2647982"],["-116.7771402","33.2646739"],["-116.7765655","33.2645879"],["-116.7763209","33.2645118"],["-116.7761886","33.2644261"],["-116.7757893","33.264041"],["-116.7755388","33.2638919"],["-116.7752391","33.2638167"],["-116.7749896","33.2638147"],["-116.7748146","33.2638405"],["-116.7746407","33.2638988"],["-116.7736419","33.2643169"],["-116.7732424","33.2644199"],["-116.7728288","33.2644503"],["-116.7724339","33.264411"],["-116.7721856","33.2643523"],["-116.7718962","33.2642373"],["-116.771641","33.2640934"],["-116.7703997","33.26316"],["-116.7702053","33.2630524"],["-116.7701079","33.2630316"],["-116.7699404","33.2630256"],["-116.7697451","33.2630641"],["-116.7696664","33.2630988"],["-116.7695341","33.2631953"],["-116.7694337","33.2633231"],["-116.7693819","33.2634664"],["-116.7693908","33.2636608"],["-116.7695955","33.2642844"],["-116.7700442","33.2657133"],["-116.7701003","33.2660485"],["-116.7700759","33.2661423"],["-116.769951","33.2663544"],["-116.7698118","33.2664627"],["-116.7696393","33.2665342"],["-116.7694706","33.2665578"],["-116.769284","33.266537"],["-116.7690299","33.2664346"],["-116.7688258","33.2662625"],["-116.7684476","33.2657176"],["-116.7683293","33.2655974"],["-116.7681645","33.265503"],["-116.7677359","33.2653447"],["-116.7674697","33.2651863"],["-116.7672427","33.2649543"],["-116.7665161","33.2640201"],["-116.7663167","33.2636638"],["-116.766103","33.2630716"],["-116.7659556","33.2628091"],["-116.7656307","33.2624729"],["-116.7654291","33.2622129"],["-116.7652962","33.2619404"],["-116.7651652","33.2615254"],["-116.7649998","33.2612774"],["-116.7646962","33.2610542"],["-116.764543","33.2609225"],["-116.7644214","33.2607442"],["-116.7643086","33.260436"],["-116.7641001","33.2601647"],["-116.7637646","33.2598764"],["-116.763423","33.2595638"],["-116.763039","33.2591676"],["-116.7628966","33.2589361"],["-116.7628203","33.2586848"],["-116.7627996","33.2583997"],["-116.7627412","33.2582214"],["-116.762659","33.2580636"],["-116.7623735","33.2576483"],["-116.7622122","33.257334"],["-116.7621541","33.2571356"],["-116.7620947","33.2570329"],["-116.7618577","33.2567783"],["-116.7598581","33.2551304"],["-116.7597112","33.2549885"],["-116.7595381","33.2547392"],["-116.7593574","33.2543169"],["-116.759239","33.2539115"],["-116.7591459","33.2533295"],["-116.7591345","33.2530536"],["-116.7591776","33.252866"],["-116.759224","33.2527668"],["-116.7594055","33.2525731"],["-116.7595947","33.2524636"],["-116.7597542","33.2524158"],["-116.7599999","33.252386"],["-116.7606673","33.252395"],["-116.7610464","33.2524466"],["-116.7612126","33.252489"],["-116.7615218","33.2526141"],["-116.7623725","33.253058"],["-116.7626561","33.2531667"],["-116.7628744","33.2531871"],["-116.7630088","33.2531686"],["-116.7631337","33.2531237"],["-116.7633101","33.253003"],["-116.7634506","33.2527649"],["-116.763716","33.2516068"],["-116.7637926","33.2513823"],["-116.7639779","33.2511875"],["-116.7641911","33.2510711"],["-116.7644004","33.2510218"],["-116.7646847","33.2510292"],["-116.7648914","33.2510891"],["-116.765015","33.251157"],["-116.7651847","33.2512547"],["-116.7653348","33.2513103"],["-116.7655824","33.2513204"],["-116.7657929","33.2512601"],["-116.7658979","33.2512091"],["-116.7659707","33.2511519"],["-116.7660872","33.2510202"],["-116.7661413","33.2508643"],["-116.7661388","33.2506487"],["-116.76603","33.2504413"],["-116.7657991","33.2501518"],["-116.765576","33.2497482"],["-116.7648514","33.2480742"],["-116.7647746","33.2477945"],["-116.7645794","33.2471031"],["-116.7644759","33.2468017"],["-116.7643333","33.2465372"],["-116.7642699","33.2463302"],["-116.7642728","33.2460826"],["-116.7643669","33.2455765"],["-116.7643268","33.24516"],["-116.7640314","33.2442375"],["-116.7638939","33.2439234"],["-116.7634407","33.2430839"],["-116.7633623","33.2428499"],["-116.7633621","33.2425956"],["-116.7634225","33.2424053"],["-116.7635308","33.2422298"],["-116.7637076","33.2420731"],["-116.7638846","33.2419754"],["-116.7646302","33.2416699"],["-116.7648753","33.2414735"],["-116.7650365","33.2412316"],["-116.7651679","33.2410912"],["-116.7652954","33.2410111"],["-116.7654079","33.2409632"],["-116.7656346","33.2409143"],["-116.7661911","33.2408823"],["-116.7667013","33.2408228"],["-116.7672802","33.2407121"],["-116.7677378","33.240589"],["-116.7681339","33.2404516"],["-116.7684022","33.2402833"],["-116.7686042","33.2400812"],["-116.7686767","33.2399966"],["-116.7687527","33.2398852"],["-116.7688182","33.239759"],["-116.768879","33.2395886"],["-116.7689075","33.239439"],["-116.7689155","33.2393331"],["-116.7689179","33.2392225"],["-116.7689116","33.2390876"],["-116.7688983","33.2389354"],["-116.7688897","33.2388172"],["-116.7688657","33.2387389"],["-116.7681862","33.2386051"],["-116.7661863","33.2381617"],["-116.7650532","33.2378333"],["-116.7645596","33.2376748"],["-116.7640167","33.2374858"],["-116.7635158","33.2372797"],["-116.7630287","33.2370403"],["-116.7627255","33.2368591"],["-116.7623877","33.2366486"],["-116.7619243","33.236318"],["-116.7614239","33.2358921"],["-116.760977","33.2354454"],["-116.7606079","33.2350141"],["-116.7603024","33.2345862"],["-116.7599239","33.2339037"],["-116.7596797","33.2333057"],["-116.759548","33.2327685"],["-116.759493","33.2324126"],["-116.7593245","33.2312727"],["-116.7592364","33.2309246"],["-116.7590412","33.2304048"],["-116.7587783","33.2298957"],["-116.7585798","33.2296097"],["-116.7581077","33.2290866"],["-116.7563385","33.2273812"],["-116.7554483","33.2264202"],["-116.7543844","33.2251154"],["-116.7537314","33.224359"],["-116.7532247","33.2238436"],["-116.7528501","33.2234873"],["-116.7523917","33.2231002"],["-116.7516775","33.2225552"],["-116.7505681","33.2217622"],["-116.7478924","33.2198916"],["-116.747401","33.2195318"],["-116.7471479","33.2193213"],["-116.7461034","33.2182749"],["-116.7456572","33.2179253"],["-116.7453548","33.2177237"],["-116.7450639","33.2175673"],["-116.7446325","33.2173727"],["-116.7434959","33.2168988"],["-116.7429306","33.2165984"],["-116.7418952","33.2159584"],["-116.7409351","33.215331"],["-116.7403946","33.2149054"],["-116.7401183","33.2146474"],["-116.7399034","33.2144162"],["-116.7396478","33.214095"],["-116.7392175","33.2135005"],["-116.7390078","33.2132193"],["-116.7387545","33.2129331"],["-116.7385265","33.2127148"],["-116.7383336","33.2125498"],["-116.7381213","33.212392"],["-116.7378016","33.2121811"],["-116.7374849","33.2120091"],["-116.7372763","33.2119077"],["-116.7370504","33.2118096"],["-116.7367853","33.2117174"],["-116.7365015","33.2116246"],["-116.7362654","33.2115606"],["-116.7360428","33.2115119"],["-116.7357809","33.2114666"],["-116.7346759","33.2113081"],["-116.7344568","33.2112617"],["-116.734257","33.2112083"],["-116.7340631","33.2111469"],["-116.7338948","33.2110783"],["-116.7337254","33.2109994"],["-116.7335499","33.2109025"],["-116.7333674","33.2107899"],["-116.733178","33.2106532"],["-116.7329497","33.2104705"],["-116.7326418","33.2101976"],["-116.7323825","33.2099379"],["-116.732074","33.2096262"],["-116.7316876","33.2092496"],["-116.7312487","33.2088457"],["-116.7308618","33.2085303"],["-116.730483","33.2082487"],["-116.730318","33.2081387"],["-116.7301398","33.2080312"],["-116.7297625","33.2078181"],["-116.7295459","33.2077051"],["-116.7292504","33.2075755"],["-116.7277008","33.2069618"],["-116.7272815","33.2067831"],["-116.7270313","33.2066591"],["-116.7266496","33.2064487"],["-116.7264927","33.206349"],["-116.7263077","33.2062221"],["-116.7261273","33.2060908"],["-116.7249299","33.2051263"],["-116.7241418","33.2045289"],["-116.7238143","33.2043088"],["-116.7232838","33.2039752"],["-116.7229755","33.2038037"],["-116.7225696","33.2035982"],["-116.7221718","33.2034056"],["-116.7217086","33.2032015"],["-116.7212638","33.2030173"],["-116.7208925","33.2028819"],["-116.720592","33.2027805"],["-116.7199447","33.2025829"],["-116.7195746","33.2024875"],["-116.7192207","33.202403"],["-116.7189178","33.2023366"],["-116.718606","33.2022792"],["-116.7161462","33.2018962"],["-116.7157234","33.2018186"],["-116.7153965","33.2017474"],["-116.7150888","33.2016745"],["-116.7145158","33.201522"],["-116.7142675","33.2014494"],["-116.7133845","33.2011408"],["-116.712985","33.2009756"],["-116.7107686","33.1999429"],["-116.710588","33.1998622"],["-116.710487","33.1998249"],["-116.7103975","33.1997981"],["-116.710342","33.1997895"],["-116.7102978","33.1997979"],["-116.7103184","33.2002527"],["-116.7103301","33.2004518"],["-116.7103461","33.2006015"],["-116.7103754","33.2008133"],["-116.7104448","33.2012114"],["-116.711225","33.2051938"],["-116.7114143","33.2061732"],["-116.7114623","33.2065787"],["-116.7114709","33.2069465"],["-116.7114575","33.2071886"],["-116.7114355","33.2073911"],["-116.7114067","33.2075842"],["-116.7113649","33.2078097"],["-116.7113054","33.2080978"],["-116.7097844","33.2143492"],["-116.7096525","33.2148461"],["-116.7095753","33.2150762"],["-116.7094751","33.2153045"],["-116.7093877","33.2154637"],["-116.7092777","33.2156303"],["-116.7091787","33.2157613"],["-116.7090785","33.2158798"],["-116.7089613","33.2159995"],["-116.70875","33.2161824"],["-116.7084882","33.2163895"],["-116.7081303","33.216673"],["-116.7074312","33.2172333"],["-116.707252","33.217394"],["-116.7070942","33.2175455"],["-116.7069495","33.2177008"],["-116.7068009","33.2178763"],["-116.7066704","33.2180601"],["-116.7065499","33.2182462"],["-116.7062845","33.2186978"],["-116.7059041","33.219427"],["-116.7055809","33.2200385"],["-116.7052109","33.2207114"],["-116.700846","33.2279922"],["-116.7006617","33.22828"],["-116.7005077","33.2284812"],["-116.7003826","33.2286233"],["-116.7002131","33.2287958"],["-116.6975794","33.2311072"],["-116.6971115","33.2315373"],["-116.6950582","33.233501"],["-116.6947236","33.2338353"],["-116.6945756","33.2339982"],["-116.694471","33.2341298"],["-116.6943795","33.2342655"],["-116.6942843","33.234417"],["-116.6940821","33.2348006"],["-116.6936442","33.2356574"],["-116.6933588","33.2362332"],["-116.6931918","33.2365474"],["-116.6930655","33.2367635"],["-116.6929285","33.2369578"],["-116.6927013","33.2372594"],["-116.6921679","33.2379313"],["-116.6913976","33.2389044"],["-116.6909813","33.2394131"],["-116.6908067","33.2395804"],["-116.6906387","33.2397294"],["-116.6904605","33.2398672"],["-116.6888122","33.240982"],["-116.6881912","33.2413903"],["-116.6879117","33.2415529"],["-116.687684","33.2416682"],["-116.683686","33.2435121"],["-116.6832145","33.2437475"],["-116.682788","33.2439772"],["-116.6738332","33.2494255"],["-116.6725682","33.2502345"],["-116.672235","33.2504622"],["-116.6717476","33.2508383"],["-116.6714","33.2511345"],["-116.6710569","33.2514452"],["-116.670711","33.2517917"],["-116.6703947","33.252143"],["-116.6701043","33.2524954"],["-116.6698348","33.2528551"],["-116.6695858","33.2532274"],["-116.6693085","33.2536975"],["-116.6689957","33.2543289"],["-116.6687045","33.2550453"],["-116.6681349","33.2566032"],["-116.6679463","33.2570821"],["-116.6678405","33.2572738"],["-116.6677053","33.2574803"],["-116.667564","33.2576569"],["-116.6674162","33.2578083"],["-116.6672446","33.2579579"],["-116.66222","33.261844"],["-116.6616017","33.2623475"],["-116.6564754","33.2668932"],["-116.656031","33.2673013"],["-116.655821","33.2675457"],["-116.6556898","33.2677386"],["-116.6555833","33.2679202"],["-116.6554834","33.2681288"],["-116.6553791","33.2684518"],["-116.6552909","33.2687684"],["-116.6552101","33.2689923"],["-116.6551246","33.2691618"],["-116.6550258","33.2693371"],["-116.6548494","33.2695805"],["-116.6546432","33.2698033"],["-116.6544409","33.2699744"],["-116.6542762","33.2700932"],["-116.6541071","33.2702003"],["-116.6539691","33.2702768"],["-116.6535954","33.2704429"],["-116.650791","33.271515"],["-116.6503526","33.2716481"],["-116.6498531","33.2717622"],["-116.6486022","33.271951"],["-116.6470663","33.2721815"],["-116.6466566","33.2722999"],["-116.646402","33.272397"],["-116.6461291","33.2725292"],["-116.6458625","33.272694"],["-116.6456252","33.2728744"],["-116.6447879","33.2736084"],["-116.6423128","33.2758207"],["-116.6417664","33.2762859"],["-116.6415475","33.2764517"],["-116.6412978","33.2766355"],["-116.6409977","33.2768393"],["-116.6406884","33.2770274"],["-116.6403332","33.2772224"],["-116.6399821","33.2773955"],["-116.6396456","33.2775482"],["-116.639244","33.2777062"],["-116.638734","33.2778818"],["-116.6382618","33.2780242"],["-116.6378501","33.2781307"],["-116.6374692","33.2782077"],["-116.6370609","33.2782737"],["-116.6361751","33.2783709"],["-116.6351468","33.2784787"],["-116.6345008","33.2785554"],["-116.6342554","33.2786112"],["-116.6340782","33.2786731"],["-116.6339238","33.2787491"],["-116.6338164","33.2788203"],["-116.6337249","33.2788945"],["-116.6336169","33.278996"],["-116.6335043","33.2791234"],["-116.6333844","33.2793105"],["-116.6333095","33.2794649"],["-116.6332699","33.2795858"],["-116.6332534","33.2796806"],["-116.6332469","33.2797909"],["-116.6332466","33.2799266"],["-116.6332578","33.2800915"],["-116.6333811","33.2807729"],["-116.6334653","33.281209"],["-116.6335305","33.2814685"],["-116.6335903","33.2816429"],["-116.6336593","33.2818178"],["-116.6337363","33.2819798"],["-116.6338851","33.2822599"],["-116.6339786","33.2824324"],["-116.6341214","33.2827142"],["-116.6342501","33.2829914"],["-116.6344678","33.2835663"],["-116.6345453","33.2837593"],["-116.634614","33.2839144"],["-116.6347124","33.284089"],["-116.634845","33.2842788"],["-116.635032","33.2844839"],["-116.6352696","33.2846969"],["-116.6354565","33.2848346"],["-116.6356085","33.2849254"],["-116.6357981","33.2850245"],["-116.6360675","33.285135"],["-116.6363558","33.2852246"],["-116.6365792","33.2852706"],["-116.6368354","33.2853079"],["-116.6371146","33.285344"],["-116.6373943","33.2853815"],["-116.6375641","33.2854174"],["-116.6377294","33.2854675"],["-116.6378894","33.2855379"],["-116.6380855","33.2856622"],["-116.6383076","33.2858213"],["-116.6385369","33.2859833"],["-116.6387529","33.286111"],["-116.6389708","33.2862038"],["-116.6391634","33.2862568"],["-116.6395474","33.2863187"],["-116.6421833","33.2866285"],["-116.6428319","33.2866672"],["-116.643827","33.2866983"],["-116.6442081","33.286721"],["-116.644391","33.2867557"],["-116.6445998","33.2868224"],["-116.6449294","33.2869757"],["-116.6453364","33.2871777"],["-116.6456914","33.2873182"],["-116.6460068","33.2873983"],["-116.6528378","33.2885077"],["-116.6535259","33.2885968"],["-116.6538995","33.2886204"],["-116.6541974","33.2886322"],["-116.6545496","33.2886261"],["-116.654841","33.2886068"],["-116.6551457","33.2885741"],["-116.6555172","33.2885171"],["-116.6557802","33.288472"],["-116.6559557","33.2884315"],["-116.6561957","33.2883704"],["-116.6564685","33.2882872"],["-116.6568021","33.2881657"],["-116.6572066","33.2879997"],["-116.6576526","33.2877608"],["-116.6579708","33.2875793"],["-116.6582255","33.2874115"],["-116.658937","33.2869094"],["-116.6592173","33.2867477"],["-116.6596288","33.2865876"],["-116.6627997","33.2854158"],["-116.6630924","33.2853416"],["-116.6633768","33.2852939"],["-116.6636032","33.2852697"],["-116.6738442","33.2848887"],["-116.6745578","33.2848854"],["-116.6748587","33.2849245"],["-116.6751585","33.2849853"],["-116.6754732","33.2850795"],["-116.675832","33.2852239"],["-116.6833322","33.2886889"],["-116.6835254","33.2887939"],["-116.6836817","33.2888953"],["-116.6838484","33.2890267"],["-116.6840221","33.2891929"],["-116.6841752","33.2893613"],["-116.6842898","33.2895051"],["-116.684391","33.2896596"],["-116.6844925","33.2898813"],["-116.6845536","33.2900336"],["-116.6845954","33.2901642"],["-116.6846272","33.2903109"],["-116.684665","33.2905544"],["-116.6847737","33.2916172"],["-116.6848099","33.291836"],["-116.684872","33.2920581"],["-116.6849527","33.292275"],["-116.6850269","33.2924339"],["-116.685152","33.2926496"],["-116.6856681","33.2934709"],["-116.6859965","33.2939567"],["-116.6864943","33.2945841"],["-116.6872444","33.2954717"],["-116.6879094","33.296269"],["-116.6884598","33.2970717"],["-116.6905251","33.300505"],["-116.6909274","33.3012486"],["-116.6910868","33.3017272"],["-116.6911668","33.3021288"],["-116.6911935","33.3025964"],["-116.6911482","33.3038152"],["-116.6911495","33.3042742"],["-116.6911815","33.3045878"],["-116.6912821","33.3049965"],["-116.6914361","33.3054084"],["-116.6916307","33.3058062"],["-116.692422","33.3070532"],["-116.6925777","33.3073435"],["-116.6926537","33.3075292"],["-116.6927357","33.3077857"],["-116.6928278","33.3082812"],["-116.6928298","33.3088065"],["-116.6926723","33.3106365"],["-116.6925887","33.3117893"],["-116.692598","33.3123886"],["-116.6927246","33.313224"],["-116.6929577","33.3141191"],["-116.6933417","33.3151756"],["-116.6937044","33.3160096"],["-116.6939688","33.3165436"],["-116.6941531","33.3167753"],["-116.6946553","33.3172649"],["-116.6950228","33.3175204"],["-116.6960173","33.3181266"],["-116.69638","33.3183289"],["-116.6966197","33.3184191"],["-116.696852","33.318466"],["-116.6973031","33.3185307"],["-116.6974679","33.3185714"],["-116.6976117","33.3186284"],["-116.6977838","33.3187311"],["-116.6978664","33.3187982"],["-116.6979802","33.318908"],["-116.6980685","33.3190596"],["-116.6983423","33.3197035"],["-116.6989419","33.3212037"],["-116.6991028","33.3215129"],["-116.6992104","33.3216628"],["-116.6993431","33.3217855"],["-116.6994676","33.3218741"],["-116.7009483","33.3227108"],["-116.7011362","33.3228306"],["-116.7012769","33.3229886"],["-116.7014131","33.3232379"],["-116.701671","33.3240333"],["-116.7023588","33.3267525"],["-116.7024866","33.3271611"],["-116.7026112","33.3274751"],["-116.7027627","33.3278426"],["-116.7028525","33.3280041"],["-116.703024","33.3282143"],["-116.7036185","33.3288428"],["-116.703819","33.3290168"],["-116.7041186","33.3291902"],["-116.7050998","33.329676"],["-116.7060793","33.3300755"],["-116.7071096","33.3304644"],["-116.707499","33.330563"],["-116.7084294","33.330709"],["-116.7087449","33.3307757"],["-116.7089549","33.3308414"],["-116.7091952","33.330935"],["-116.7095113","33.3310796"],["-116.7097932","33.3312315"],["-116.7099755","33.3313462"],["-116.7101475","33.3314853"],["-116.7107091","33.3320166"],["-116.7120925","33.3330511"],["-116.7128021","33.3334897"],["-116.7135475","33.3338849"],["-116.7139667","33.3340533"],["-116.7156058","33.3344763"],["-116.7159862","33.3346038"],["-116.7162","33.3347183"],["-116.7163875","33.3348582"],["-116.7166956","33.3351411"],["-116.7169168","33.3354153"],["-116.7177256","33.3366347"],["-116.7179471","33.3370297"],["-116.7182168","33.3377778"],["-116.7184202","33.3381659"],["-116.7186171","33.3383737"],["-116.7189596","33.3386116"],["-116.7210253","33.3399844"],["-116.7214525","33.3403501"],["-116.7221187","33.340963"],["-116.7223313","33.3411345"],["-116.7228049","33.3414411"],["-116.7241469","33.3421521"],["-116.7246867","33.3424726"],["-116.7266688","33.3437911"],["-116.7274003","33.3443644"],["-116.7282121","33.3450556"],["-116.7296521","33.3461271"],["-116.7301659","33.3465584"],["-116.7308354","33.3471942"],["-116.7310553","33.3473905"],["-116.7311563","33.3474677"],["-116.7315618","33.3477213"],["-116.7320356","33.3479873"],["-116.7327687","33.3483603"],["-116.7331066","33.3484973"],["-116.7344022","33.3489208"],["-116.7349544","33.3491673"],["-116.7365729","33.3501299"],["-116.7370859","33.3505079"],["-116.7380832","33.3512793"],["-116.7388538","33.3517629"],["-116.7392619","33.3520085"],["-116.7395898","33.3521682"],["-116.7398474","33.3522713"],["-116.7400244","33.3523281"],["-116.7406374","33.3525155"],["-116.74095","33.3526199"],["-116.7412166","33.3527244"],["-116.7420718","33.3531502"],["-116.7437926","33.3540282"],["-116.7441533","33.3542356"],["-116.7443951","33.3544419"],["-116.7445633","33.3546422"],["-116.7447378","33.3549286"],["-116.7448444","33.3552469"],["-116.7453868","33.3586281"],["-116.7455028","33.3592925"],["-116.7458326","33.3605109"],["-116.7465041","33.3626387"],["-116.7479798","33.3671766"],["-116.748014","33.367431"],["-116.7479935","33.3676887"],["-116.7478389","33.3684986"],["-116.7477827","33.3686982"],["-116.7475645","33.3692281"],["-116.7474534","33.3697019"],["-116.747352","33.370006"],["-116.7472432","33.3702356"],["-116.7471685","33.3704374"],["-116.7470966","33.3707903"],["-116.747081","33.3712022"],["-116.7471072","33.3715011"],["-116.747129","33.3717471"],["-116.747112","33.3721137"],["-116.7469667","33.373257"],["-116.7468095","33.373762"],["-116.746381","33.3746716"],["-116.7461827","33.3749519"],["-116.7458252","33.3752034"],["-116.7451445","33.3755421"],["-116.7449794","33.3756744"],["-116.7448344","33.3759119"],["-116.744815","33.3761063"],["-116.7448599","33.3763208"],["-116.7449778","33.3765307"],["-116.7455658","33.3773865"],["-116.7457956","33.377596"],["-116.7460095","33.3776887"],["-116.7466973","33.3778544"],["-116.747933","33.3780926"],["-116.7494535","33.3783583"],["-116.750007","33.3784662"],["-116.7503603","33.3785934"],["-116.7520142","33.3793272"],["-116.7524992","33.3795296"],["-116.752792","33.379614"],["-116.7531082","33.3796665"],["-116.7556668","33.3799787"],["-116.7560484","33.3800625"],["-116.7565539","33.3801979"],["-116.7570234","33.3803339"],["-116.757422","33.3804709"],["-116.7579265","33.3806792"],["-116.7589265","33.3811239"],["-116.7592943","33.3812764"],["-116.7600131","33.3815135"],["-116.7612558","33.3818956"],["-116.762725","33.3823443"],["-116.7631481","33.3824231"],["-116.7641844","33.3824887"],["-116.7644454","33.382503"],["-116.7647415","33.3825189"],["-116.7650032","33.3825546"],["-116.7653296","33.3826338"],["-116.7656431","33.3827563"],["-116.766139","33.3830101"],["-116.7666389","33.3832861"],["-116.7670397","33.3835083"],["-116.7673146","33.383607"],["-116.7675733","33.3836652"],["-116.7682728","33.3837747"],["-116.774832","33.3846739"],["-116.7752742","33.3847627"],["-116.7756489","33.384883"],["-116.7765002","33.3852182"],["-116.7768502","33.385335"],["-116.7773123","33.3854193"],["-116.7780044","33.3855052"],["-116.7790999","33.3856748"],["-116.7801739","33.3859125"],["-116.7806349","33.3859487"],["-116.7813949","33.3858538"],["-116.7872631","33.3849996"],["-116.7887298","33.3847947"],["-116.7889971","33.3847713"],["-116.7892213","33.3847771"],["-116.7893613","33.3847959"],["-116.7895148","33.3848336"],["-116.7896661","33.3848817"],["-116.7898051","33.3849425"],["-116.7899484","33.3850297"],["-116.790143","33.3851772"],["-116.790962","33.3859418"],["-116.7914638","33.3864519"],["-116.791711","33.3866765"],["-116.7919342","33.3868675"],["-116.7921649","33.3870879"],["-116.792379","33.3873016"],["-116.7925776","33.3875313"],["-116.794056","33.3894225"],["-116.7946144","33.3900731"],["-116.796133","33.3916507"],["-116.7964729","33.3921009"],["-116.7986742","33.3960281"],["-116.798783","33.3962025"],["-116.7990558","33.3965643"],["-116.7993107","33.3968744"],["-116.7996487","33.3972588"],["-116.799968","33.3975844"],["-116.8004173","33.3979805"],["-116.8057016","33.402276"],["-116.8063492","33.4027996"],["-116.8089876","33.404615"],["-116.8098503","33.40518"],["-116.8116558","33.4062327"],["-116.8121864","33.4065752"],["-116.8125207","33.4068399"],["-116.8129943","33.4073231"],["-116.8133164","33.4075757"],["-116.8137128","33.407816"],["-116.814169","33.4081395"],["-116.8146279","33.4084231"],["-116.8151434","33.4087014"],["-116.8157231","33.409043"],["-116.8159781","33.4092233"],["-116.8162628","33.4093947"],["-116.8164864","33.4094947"],["-116.8174336","33.4097877"],["-116.8177577","33.4098342"],["-116.8180309","33.4098333"],["-116.81831","33.4098566"],["-116.8185431","33.4099156"],["-116.818687","33.4099713"],["-116.8189452","33.4101208"],["-116.8204789","33.4112936"],["-116.8209238","33.4117269"],["-116.8239563","33.415336"],["-116.8243115","33.4157021"],["-116.8244554","33.4157961"],["-116.8246559","33.4158904"],["-116.8248744","33.4159591"],["-116.8256239","33.4160578"],["-116.8266389","33.4161989"],["-116.8268468","33.4162612"],["-116.8270597","33.4163512"],["-116.8272783","33.4164672"],["-116.8276301","33.4167128"],["-116.8279804","33.4170522"],["-116.8284585","33.4176018"],["-116.8288356","33.4180508"],["-116.8291769","33.4185749"],["-116.8297218","33.4195078"],["-116.8299373","33.4197806"],["-116.8300825","33.4199236"],["-116.8301784","33.4200097"],["-116.8319892","33.4213703"],["-116.8343829","33.4231296"],["-116.8349523","33.423528"],["-116.8350568","33.4236181"],["-116.8352479","33.4238269"],["-116.8353778","33.4240625"],["-116.8357161","33.4249595"],["-116.8360921","33.4258054"],["-116.8362661","33.4261465"],["-116.8363821","33.4263254"],["-116.836584","33.4265952"],["-116.8367478","33.4268322"],["-116.8367612","33.4268517"],["-116.8368272","33.4269835"],["-116.8369425","33.4272783"],["-116.8373057","33.4284232"],["-116.8374153","33.4288014"],["-116.837494","33.4290569"],["-116.8375931","33.4293195"],["-116.8377277","33.4295681"],["-116.8380545","33.4300245"],["-116.8383084","33.4303107"],["-116.8385526","33.4305362"],["-116.8387839","33.4307369"],["-116.8391292","33.430992"],["-116.8395538","33.4312275"],["-116.8406387","33.4317151"],["-116.8409113","33.4318796"],["-116.8411772","33.4320975"],["-116.8414566","33.432356"],["-116.8416623","33.4326176"],["-116.8418261","33.4329082"],["-116.8421026","33.4335093"],["-116.8422241","33.4337038"],["-116.8424849","33.433984"],["-116.842819","33.4341645"],["-116.843245","33.4343273"],["-116.8436579","33.4343449"],["-116.8439849","33.4342974"],["-116.8442569","33.4342393"],["-116.8445293","33.4340945"],["-116.8448613","33.4338374"],["-116.8456484","33.4331619"],["-116.8462001","33.4328838"],["-116.8466538","33.432722"],["-116.8470602","33.4326434"],["-116.8474795","33.4326351"],["-116.8479326","33.4326696"],["-116.8483446","33.4327415"],["-116.8486563","33.4328485"],["-116.848914","33.4329971"],["-116.8491724","33.4332288"],["-116.8493608","33.4335064"],["-116.849471","33.4338256"],["-116.8495003","33.4342239"],["-116.8494068","33.4345623"],["-116.8492699","33.4350079"],["-116.8491482","33.4354565"],["-116.84915","33.435729"],["-116.8492135","33.4364445"],["-116.8493705","33.436825"],["-116.849543","33.4371554"],["-116.8497351","33.4373871"],["-116.8500397","33.4377226"],["-116.8508808","33.4385065"],["-116.851669","33.4390541"],["-116.852127","33.4392912"],["-116.8528428","33.4396033"],["-116.8538466","33.4399409"],["-116.854972","33.440249"],["-116.8558976","33.4403664"],["-116.856986","33.4404261"],["-116.8573789","33.440497"],["-116.8577576","33.4405697"],["-116.8583348","33.4406586"],["-116.8587965","33.4407355"],["-116.8593405","33.4408711"],["-116.8603234","33.4411577"],["-116.8607393","33.4412983"],["-116.8611887","33.4414513"],["-116.8617264","33.4416441"],["-116.8615957","33.4419441"],["-116.8613811","33.4422795"],["-116.8611798","33.4425531"],["-116.8608662","33.4428357"],["-116.8588763","33.4444408"],["-116.8584067","33.4448164"],["-116.8580729","33.4451161"],["-116.8578201","33.4453916"],["-116.857585","33.4456824"],["-116.8574248","33.445949"],["-116.8572654","33.4462626"],["-116.8571197","33.4466588"],["-116.8570256","33.4470625"],["-116.8569741","33.4474367"],["-116.8569738","33.4478333"],["-116.8570006","33.44816"],["-116.8571472","33.4487039"],["-116.8573101","33.4492272"],["-116.85743","33.4495995"],["-116.8579672","33.4512601"],["-116.8580151","33.4514065"],["-116.8594143","33.4557552"],["-116.8596651","33.4565929"],["-116.8597996","33.4570629"],["-116.8598393","33.457345"],["-116.8598471","33.4576686"],["-116.8598413","33.4580947"],["-116.8597513","33.4586095"],["-116.8596222","33.4592393"],["-116.8595657","33.4595599"],["-116.8595527","33.459989"],["-116.8595491","33.4604312"],["-116.859506","33.4608235"],["-116.8594239","33.4611359"],["-116.8593277","33.4613675"],["-116.8592065","33.4616095"],["-116.8589999","33.4619074"],["-116.8588883","33.4620311"],["-116.8588061","33.4621261"],["-116.8582495","33.462631"],["-116.8568741","33.46385"],["-116.856328","33.4643401"],["-116.8561517","33.4645272"],["-116.8560049","33.4646976"],["-116.8558007","33.4649906"],["-116.8556954","33.4651759"],["-116.8556216","33.4653463"],["-116.8555565","33.4655055"],["-116.8554298","33.4659747"],["-116.8553866","33.4662533"],["-116.8553227","33.4671224"],["-116.855246","33.4679919"],["-116.8551576","33.4686279"],["-116.8548074","33.4699284"],["-116.8543926","33.4709271"],["-116.8534293","33.4728587"],["-116.8531237","33.4733247"],["-116.8528128","33.4737138"],["-116.8522466","33.47433"],["-116.8519859","33.4746782"],["-116.8517289","33.4751229"],["-116.851476","33.4755727"],["-116.8511662","33.4760378"],["-116.8509427","33.4763256"],["-116.8506868","33.4766266"],["-116.8502517","33.4770768"],["-116.848638","33.4784999"],["-116.846043","33.480613"],["-116.8448187","33.4816007"],["-116.8444493","33.481873"],["-116.8440923","33.4821503"],["-116.8436991","33.4823564"],["-116.8432748","33.4825619"],["-116.8428196","33.4827235"],["-116.8422553","33.4828767"],["-116.8417409","33.4829841"],["-116.8363841","33.4841149"],["-116.8353496","33.4843517"],["-116.8348658","33.4845108"],["-116.8337536","33.4850656"],["-116.8316026","33.4862121"],["-116.8311183","33.4864975"],["-116.8306842","33.4868287"],["-116.8277679","33.4893052"],["-116.8270721","33.489814"],["-116.8265324","33.4901642"],["-116.8258613","33.4904964"],["-116.8248207","33.4909984"],["-116.824419","33.4912147"],["-116.82386","33.4915971"],["-116.8225968","33.4926504"],["-116.8213922","33.4936598"],["-116.8206629","33.4941853"],["-116.8203714","33.4943357"],["-116.8197197","33.494655"],["-116.8187368","33.495004"],["-116.8178238","33.4952923"],["-116.8153954","33.4960013"],["-116.8137701","33.4964795"],["-116.813019","33.4967621"],["-116.8123013","33.4970953"],["-116.8115154","33.4974814"],["-116.8108186","33.4978956"],["-116.8095367","33.4987808"],["-116.8091323","33.4990302"],["-116.8086781","33.4991974"],["-116.8082161","33.499296"],["-116.8075337","33.4993521"],["-116.806639","33.4994019"],["-116.8055376","33.4994531"],["-116.8045913","33.4994929"],["-116.8041545","33.499516"],["-116.8034033","33.49955"],["-116.8027622","33.4995735"],["-116.8019365","33.499631"],["-116.8015185","33.499687"],["-116.8011135","33.4997694"],["-116.8005551","33.4999482"],["-116.8000908","33.5001135"],["-116.7997546","33.5002676"],["-116.799374","33.5004524"],["-116.7990329","33.5006623"],["-116.7985932","33.5009656"],["-116.7981573","33.5013659"],["-116.7976369","33.5019325"],["-116.7970144","33.5029437"],["-116.7958533","33.5054606"],["-116.7951589","33.5068668"],["-116.7946805","33.5075431"],["-116.7931008","33.5093855"],["-116.7911811","33.5116406"],["-116.7890236","33.51419"],["-116.7877517","33.5156617"],["-116.7872716","33.5163203"],["-116.7863919","33.5178251"],["-116.7859299","33.5185519"],["-116.7852687","33.5194685"],["-116.7845374","33.5202719"],["-116.7836248","33.5209867"],["-116.7824176","33.5216434"],["-116.779025","33.5229586"],["-116.7774236","33.5236521"],["-116.7765522","33.5241036"],["-116.7733619","33.5258849"],["-116.7721381","33.5267766"],["-116.7714529","33.5273879"],["-116.7704905","33.528424"],["-116.7656361","33.5337823"],["-116.7648144","33.5345049"],["-116.7639957","33.5349812"],["-116.7630752","33.5353518"],["-116.760834","33.5359056"],["-116.7598092","33.5361659"],["-116.7595312","33.536279"],["-116.7586844","33.5367292"],["-116.7582534","33.5370182"],["-116.7578751","33.5373634"],["-116.75749","33.5378014"],["-116.7569189","33.5385682"],["-116.7566825","33.5388501"],["-116.7563308","33.5391643"],["-116.7559774","33.5394055"],["-116.7555845","33.5396292"],["-116.755166","33.5398108"],["-116.7548023","33.5399372"],["-116.7541975","33.5400708"],["-116.7488275","33.541058"],["-116.7478947","33.5411705"],["-116.7471524","33.5412152"],["-116.7463013","33.541195"],["-116.7443938","33.5410989"],["-116.7438873","33.5411063"],["-116.7435426","33.5411424"],["-116.743126","33.5412051"],["-116.7423222","33.5413982"],["-116.7381453","33.5426511"],["-116.7212006","33.5477487"],["-116.7151215","33.5495768"],["-116.7138042","33.5499872"],["-116.707701","33.5517862"],["-116.7065003","33.5520928"],["-116.7000178","33.5533375"],["-116.6992993","33.5534757"],["-116.6911176","33.5550125"],["-116.6903222","33.5551256"],["-116.6898631","33.5551712"],["-116.689419","33.5551907"],["-116.6451789","33.5550392"],["-116.6446367","33.5550573"],["-116.6442944","33.5550845"],["-116.6440791","33.5551146"],["-116.6438455","33.5551624"],["-116.6432372","33.5553084"],["-116.6429191","33.5553975"],["-116.6426186","33.5555053"],["-116.6421761","33.5556826"],["-116.6414326","33.5560559"],["-116.6295725","33.5627419"],["-116.6284241","33.5632514"],["-116.6278096","33.5633518"],["-116.6272572","33.5633504"],["-116.6264207","33.5632596"],["-116.6256706","33.5629694"],["-116.6249108","33.5625389"],["-116.6241268","33.5620767"],["-116.6237222","33.5617711"],["-116.6232369","33.5615029"],["-116.6214244","33.560702"],["-116.6209044","33.5604361"],["-116.6203879","33.560081"],["-116.6196152","33.5595007"],["-116.6190781","33.559208"],["-116.6185739","33.5589676"],["-116.6180435","33.5586333"],["-116.6167296","33.5576025"],["-116.6158646","33.5572043"],["-116.6152818","33.557026"],["-116.6147219","33.5569299"],["-116.6141562","33.5569508"],["-116.613487","33.5570465"],["-116.6128178","33.5572284"],["-116.612128","33.5574375"],["-116.6114445","33.5577823"],["-116.6106729","33.5583559"],["-116.6103398","33.5585735"],["-116.6099493","33.5586851"],["-116.6095598","33.5587819"],["-116.6087532","33.558871"],["-116.6082809","33.558969"],["-116.6072048","33.5594043"],["-116.6068357","33.5594954"],["-116.6064701","33.5595348"],["-116.6060563","33.5595071"],["-116.605601","33.559425"],["-116.605189","33.5594086"],["-116.6048426","33.559386"],["-116.6045288","33.5594504"],["-116.6042722","33.5595341"],["-116.6040322","33.5596552"],["-116.6037353","33.5598678"],["-116.6025707","33.5610576"],["-116.6022028","33.5614597"],["-116.6021139","33.5616263"],["-116.6020455","33.5618188"],["-116.6020135","33.5621024"],["-116.602067","33.5623396"],["-116.6021458","33.5625214"],["-116.6022654","33.562687"],["-116.6024084","33.5628257"],["-116.6026706","33.563041"],["-116.6028778","33.5632551"],["-116.6030139","33.5634869"],["-116.6030641","33.5637098"],["-116.6030882","33.5639438"],["-116.6030998","33.5643831"],["-116.6031509","33.5646427"],["-116.603245","33.5648415"],["-116.6034621","33.5650902"],["-116.6040751","33.5656371"],["-116.6042419","33.5658789"],["-116.6043191","33.5661173"],["-116.6043318","33.5663737"],["-116.6042791","33.5666778"],["-116.6041691","33.5669662"],["-116.6040486","33.5671662"],["-116.6038577","33.5673816"],["-116.6036351","33.5675767"],["-116.6033806","33.567726"],["-116.6030629","33.5678585"],["-116.602682","33.5679373"],["-116.6024099","33.5679616"],["-116.6020382","33.5679394"],["-116.6011723","33.5678464"],["-116.6001837","33.5677331"],["-116.5996276","33.5676431"],["-116.5992415","33.5675116"],["-116.5989104","33.5673858"],["-116.5986508","33.5672955"],["-116.5984377","33.5672548"],["-116.598176","33.5672403"],["-116.5977785","33.5672641"],["-116.5974393","33.5672756"],["-116.5971457","33.5672502"],["-116.5965433","33.5671524"],["-116.5962905","33.5671291"],["-116.5961423","33.5671329"],["-116.5959564","33.5671583"],["-116.5957557","33.5671984"],["-116.5955135","33.5672788"],["-116.5952399","33.5674076"],["-116.5927258","33.5686817"],["-116.5923416","33.5688939"],["-116.5921294","33.5690207"],["-116.5918185","33.5692423"],["-116.5916191","33.5693909"],["-116.5915079","33.5694731"],["-116.5914112","33.5695245"],["-116.5903012","33.568791"],["-116.5897333","33.5684491"],["-116.5890161","33.5680614"],["-116.5883243","33.5677344"],["-116.5807664","33.5643458"],["-116.5792659","33.5637785"],["-116.5776476","33.5633009"],["-116.5769654","33.563104"],["-116.5713467","33.5615941"],["-116.5705658","33.5613889"],["-116.5698686","33.5612556"],["-116.5695563","33.5612233"],["-116.5691529","33.5612089"],["-116.5686732","33.5612431"],["-116.5681782","33.5613132"],["-116.5676207","33.5614889"],["-116.5671067","33.5617188"],["-116.5667421","33.5619308"],["-116.5663794","33.562204"],["-116.5659916","33.5626024"],["-116.5656121","33.5630756"],["-116.565371","33.5633214"],["-116.5651153","33.5635069"],["-116.564838","33.5636441"],["-116.5645049","33.5637416"],["-116.5641418","33.5637965"],["-116.5637337","33.5637942"],["-116.5634205","33.5637176"],["-116.5631126","33.5636201"],["-116.56273","33.5634193"],["-116.5619058","33.5629487"],["-116.561044","33.5624581"],["-116.5606763","33.5622968"],["-116.5603792","33.5622189"],["-116.5600589","33.5621611"],["-116.559701","33.5621271"],["-116.5589604","33.5621305"],["-116.5541149","33.5622787"],["-116.5531019","33.5622771"],["-116.5523933","33.5622258"],["-116.5512948","33.5620765"],["-116.548881","33.5617092"],["-116.5440905","33.5611345"],["-116.5427898","33.561057"],["-116.5412158","33.561075"],["-116.5407233","33.561106"],["-116.5402896","33.5611812"],["-116.5398635","33.5612832"],["-116.5391566","33.5615972"],["-116.5368966","33.5627628"],["-116.5360539","33.5632377"],["-116.535484","33.5636996"],["-116.53515","33.563995"],["-116.5337167","33.5651309"],["-116.5330224","33.5656359"],["-116.532322","33.5660342"],["-116.5316592","33.5663082"],["-116.5310357","33.5665097"],["-116.5303926","33.5666534"],["-116.529873","33.5667615"],["-116.5296","33.5668336"],["-116.5293691","33.5669095"],["-116.5290556","33.5670482"],["-116.5285353","33.5673202"],["-116.5274282","33.5680205"],["-116.5267068","33.5685201"],["-116.5262519","33.5689144"],["-116.5254112","33.5697759"],["-116.5251754","33.5699798"],["-116.5249315","33.5701257"],["-116.5245915","33.5702492"],["-116.5242231","33.5703215"],["-116.5239421","33.5703424"],["-116.5235918","33.5703139"],["-116.5226279","33.5701315"],["-116.5220811","33.5700903"],["-116.5215782","33.5701134"],["-116.5191401","33.5705314"],["-116.518775","33.5706217"],["-116.5184178","33.5707542"],["-116.5180129","33.5709538"],["-116.5176569","33.5711147"],["-116.5173688","33.5712003"],["-116.5170473","33.5712668"],["-116.516702","33.5712824"],["-116.5164036","33.5712865"],["-116.5161174","33.5712671"],["-116.5158344","33.5711946"],["-116.5155608","33.5711106"],["-116.515315","33.571019"],["-116.5150707","33.570896"],["-116.5148668","33.5707512"],["-116.5146707","33.5705872"],["-116.5142767","33.5701577"],["-116.5138775","33.5696995"],["-116.5137016","33.5694267"],["-116.5134539","33.5688265"],["-116.5133672","33.5686766"],["-116.5132387","33.5685081"],["-116.5130813","33.5683337"],["-116.5129021","33.5682092"],["-116.5126261","33.568063"],["-116.5123092","33.5679579"],["-116.5113973","33.5677932"],["-116.5110987","33.5677826"],["-116.5107974","33.5678125"],["-116.5105885","33.5678744"],["-116.5103611","33.5679994"],["-116.509469","33.5685889"],["-116.5091808","33.5687259"],["-116.50895","33.5687944"],["-116.5086859","33.5688447"],["-116.5083938","33.5688599"],["-116.5079893","33.5688006"],["-116.507486","33.5686988"],["-116.5070676","33.5686108"],["-116.5067169","33.5685677"],["-116.5062458","33.5685481"],["-116.5046279","33.5685513"],["-116.5041401","33.568591"],["-116.5037551","33.5686642"],["-116.5034364","33.5687652"],["-116.50312","33.5688869"],["-116.5027846","33.5690791"],["-116.5023992","33.5693187"],["-116.5020541","33.5695034"],["-116.5018247","33.5695875"],["-116.5015441","33.5696518"],["-116.5012154","33.5696833"],["-116.5008361","33.5697118"],["-116.500311","33.5698091"],["-116.4998327","33.5699247"],["-116.4988359","33.5701681"],["-116.4984588","33.5703103"],["-116.4980436","33.5705052"],["-116.4963637","33.571684"],["-116.4954261","33.5723511"],["-116.494999","33.5726483"],["-116.4944803","33.5730065"],["-116.4942211","33.5731406"],["-116.4939955","33.5732353"],["-116.4937894","33.573307"],["-116.4935541","33.5733391"],["-116.4933069","33.5733576"],["-116.4930317","33.5733474"],["-116.4926443","33.5732721"],["-116.4918424","33.5730721"],["-116.4915621","33.5730352"],["-116.4912721","33.5730331"],["-116.4909863","33.5730706"],["-116.4906798","33.5731723"],["-116.4904872","33.5732611"],["-116.4902808","33.573409"],["-116.4900263","33.5735974"],["-116.4897827","33.573715"],["-116.4893732","33.5738634"],["-116.4880924","33.574282"],["-116.4877233","33.5744281"],["-116.4874569","33.5745834"],["-116.4871647","33.5747812"],["-116.4867322","33.5751157"],["-116.4863416","33.5754037"],["-116.4860939","33.5755624"],["-116.4858155","33.575677"],["-116.4855095","33.5757798"],["-116.4852143","33.5758321"],["-116.4848703","33.575867"],["-116.4842511","33.57589"],["-116.4839097","33.5759473"],["-116.4836951","33.5760076"],["-116.4834759","33.576105"],["-116.4833014","33.5762121"],["-116.4831396","33.5763259"],["-116.4829111","33.5765665"],["-116.4825142","33.5771547"],["-116.4823394","33.5773445"],["-116.4821541","33.5775069"],["-116.4819502","33.577618"],["-116.4816364","33.5777519"],["-116.4804555","33.5781938"],["-116.4799683","33.5783465"],["-116.4797972","33.578375"],["-116.4795044","33.5784203"],["-116.4791629","33.5784676"],["-116.4788187","33.5784889"],["-116.4783948","33.5784735"],["-116.4776984","33.5783812"],["-116.4772986","33.5783085"],["-116.4769334","33.5782401"],["-116.476655","33.5782079"],["-116.4763775","33.5781916"],["-116.4761023","33.5782325"],["-116.4758184","33.5783087"],["-116.4755147","33.5784415"],["-116.4739155","33.5793819"],["-116.4732952","33.5797528"],["-116.4730474","33.5798707"],["-116.4728148","33.5799544"],["-116.4726095","33.58"],["-116.4724337","33.5800317"],["-116.472192","33.5800295"],["-116.4717704","33.5800087"],["-116.468827","33.5795692"],["-116.4684306","33.579552"],["-116.4681569","33.5795633"],["-116.4678603","33.5795809"],["-116.4675285","33.5796065"],["-116.4671022","33.5796912"],["-116.4665086","33.5798583"],["-116.4577254","33.5826391"],["-116.4557031","33.583284"],["-116.454254","33.5837351"],["-116.4531694","33.584054"],["-116.4491317","33.5848916"],["-116.4488601","33.5849358"],["-116.4485354","33.5849752"],["-116.4482091","33.5849554"],["-116.4478315","33.5849052"],["-116.4473796","33.5848201"],["-116.447093","33.5847701"],["-116.4468975","33.5847515"],["-116.4466213","33.5847543"],["-116.4462955","33.5848129"],["-116.446017","33.5848899"],["-116.4454347","33.5851394"],["-116.4450308","33.5852931"],["-116.444805","33.5853362"],["-116.4445829","33.5853494"],["-116.4443345","33.5853188"],["-116.4441239","33.5852585"],["-116.4438726","33.5851421"],["-116.4434371","33.5848658"],["-116.4431792","33.5847289"],["-116.4428625","33.5846213"],["-116.4387836","33.5836157"],["-116.4378081","33.5833428"],["-116.4364332","33.582932"],["-116.4360544","33.5828241"],["-116.4358324","33.5827807"],["-116.4354681","33.582765"],["-116.4352068","33.5827687"],["-116.4349559","33.5828012"],["-116.43467","33.5828532"],["-116.4343012","33.582972"],["-116.4339389","33.5831593"],["-116.433222","33.5835818"],["-116.4328659","33.583762"],["-116.4326463","33.5838471"],["-116.4324128","33.5839295"],["-116.4321338","33.5839949"],["-116.4317665","33.5840451"],["-116.4309981","33.5841428"],["-116.4301784","33.584271"],["-116.4298377","33.5843362"],["-116.429479","33.5844198"],["-116.4292378","33.5844894"],["-116.4288435","33.5846262"],["-116.4283518","33.5848362"],["-116.4280978","33.5849555"],["-116.4276025","33.5852652"],["-116.4269801","33.5857666"],["-116.426452","33.5863001"],["-116.4253377","33.5875143"],["-116.4251677","33.5877318"],["-116.4250771","33.5878921"],["-116.4250506","33.5879575"],["-116.4250292","33.5880198"],["-116.4249954","33.5882993"],["-116.4249957","33.5884781"],["-116.4250098","33.5886672"],["-116.4250292","33.5888745"],["-116.4250276","33.5890662"],["-116.4250038","33.5892577"],["-116.4249328","33.5894456"],["-116.4248596","33.5896062"],["-116.4247383","33.5897787"],["-116.4245516","33.5899884"],["-116.424292","33.5902553"],["-116.4241558","33.5904204"],["-116.4240397","33.5905824"],["-116.4239414","33.5907795"],["-116.4238338","33.5910185"],["-116.4220262","33.5954865"],["-116.4216595","33.5964914"],["-116.4216048","33.5966823"],["-116.4215557","33.5969238"],["-116.4215056","33.5972686"],["-116.4214551","33.5976857"],["-116.4214391","33.5980099"],["-116.4214402","33.5983756"],["-116.4214682","33.5987145"],["-116.4215395","33.5992474"],["-116.4217028","33.6000145"],["-116.4217352","33.6002264"],["-116.4217376","33.6003855"],["-116.4217264","33.6005325"],["-116.4216783","33.6007106"],["-116.4216169","33.6008683"],["-116.42151","33.6010382"],["-116.4213846","33.6011941"],["-116.421236","33.6013197"],["-116.4209545","33.6015128"],["-116.4201156","33.6020128"],["-116.4196859","33.6022824"],["-116.4194933","33.6024438"],["-116.4193389","33.6026306"],["-116.4192419","33.6027982"],["-116.4191631","33.6029962"],["-116.4191152","33.6032353"],["-116.4190961","33.6034356"],["-116.4190978","33.6036283"],["-116.4191506","33.6043166"],["-116.4191932","33.6047292"],["-116.4192545","33.6050557"],["-116.419331","33.6052694"],["-116.4194113","33.6054365"],["-116.4195321","33.6056012"],["-116.4196928","33.6057845"],["-116.4200406","33.6061688"],["-116.4201517","33.6063135"],["-116.4202425","33.606454"],["-116.4203244","33.6066238"],["-116.4203865","33.6068102"],["-116.4204069","33.6069522"],["-116.4204065","33.6071119"],["-116.4203872","33.6072771"],["-116.420326","33.6074706"],["-116.4202105","33.6077339"],["-116.4200774","33.6079458"],["-116.4199259","33.6081139"],["-116.4197426","33.6082496"],["-116.4195501","33.6083619"],["-116.4193728","33.6084447"],["-116.4191254","33.6085164"],["-116.4188309","33.6085678"],["-116.418273","33.6085662"],["-116.4178102","33.6085125"],["-116.4173742","33.6085497"],["-116.4171802","33.6085778"],["-116.4170227","33.6086262"],["-116.4168521","33.6086914"],["-116.4166701","33.6087844"],["-116.41653","33.6088804"],["-116.4163641","33.6090241"],["-116.4162845","33.6091115"],["-116.4161888","33.6092198"],["-116.416096","33.6093606"],["-116.4160181","33.6095277"],["-116.4159557","33.6097155"],["-116.415863","33.6103116"],["-116.4158407","33.6108636"],["-116.4157787","33.6111155"],["-116.4156837","33.6113431"],["-116.4155808","33.611548"],["-116.4153758","33.6118431"],["-116.415066","33.6122216"],["-116.4149022","33.6124366"],["-116.4147864","33.6126133"],["-116.4147108","33.6127795"],["-116.4146588","33.6129652"],["-116.414644","33.6131408"],["-116.414641","33.6132394"],["-116.4146539","33.6133405"],["-116.4146849","33.6134903"],["-116.4147339","33.6136467"],["-116.4149431","33.6140269"],["-116.4151925","33.6143815"],["-116.415281","33.6146358"],["-116.4152877","33.6149334"],["-116.4152489","33.6151846"],["-116.4145635","33.616653"],["-116.4144066","33.6169329"],["-116.4142052","33.6171997"],["-116.4138057","33.6174846"],["-116.413356","33.6177595"],["-116.4129762","33.6180286"],["-116.4126862","33.6183074"],["-116.4125184","33.6185023"],["-116.4123654","33.6187268"],["-116.4122045","33.6190381"],["-116.4120654","33.6193414"],["-116.4120007","33.619687"],["-116.4119175","33.6202937"],["-116.4118546","33.6210499"],["-116.4117818","33.6213312"],["-116.4116939","33.6215154"],["-116.4114776","33.6218252"],["-116.4112446","33.6220857"],["-116.4110227","33.6222731"],["-116.4107155","33.6224625"],["-116.4103659","33.6226019"],["-116.4100615","33.6226759"],["-116.4097686","33.6227137"],["-116.4093994","33.6227152"],["-116.4087291","33.6227145"],["-116.4085066","33.6227639"],["-116.4083011","33.6228422"],["-116.408002","33.6230507"],["-116.4074173","33.6235245"],["-116.4069204","33.6238818"],["-116.4063413","33.6242016"],["-116.4058524","33.6244397"],["-116.405305","33.624627"],["-116.4047234","33.6247985"],["-116.4043119","33.6249313"],["-116.404075","33.6250864"],["-116.4038195","33.6253011"],["-116.4037147","33.6254964"],["-116.4036621","33.6256917"],["-116.4036412","33.6258149"],["-116.4036299","33.6259991"],["-116.403592","33.6267307"],["-116.4035205","33.6275891"],["-116.4035106","33.6280356"],["-116.4034712","33.628793"],["-116.4033944","33.6291167"],["-116.4032993","33.6294348"],["-116.4031813","33.6297213"],["-116.4030158","33.6299909"],["-116.4028171","33.6303044"],["-116.4026492","33.6306243"],["-116.4025959","33.6307787"],["-116.4025678","33.6310124"],["-116.4025612","33.631153"],["-116.4025587","33.6313095"],["-116.4025978","33.6314784"],["-116.4027053","33.6317907"],["-116.402805","33.6319764"],["-116.4030031","33.6322088"],["-116.4032516","33.6324183"],["-116.4034762","33.6325921"],["-116.4036582","33.6327564"],["-116.4038356","33.6329341"],["-116.4039357","33.633135"],["-116.4040341","33.633395"],["-116.4040573","33.6336348"],["-116.4040469","33.6337612"],["-116.4040191","33.6338994"],["-116.4039534","33.634076"],["-116.4039077","33.634171"],["-116.4038282","33.6343063"],["-116.4036039","33.6346027"],["-116.4034841","33.6347788"],["-116.4034002","33.6349316"],["-116.403365","33.6350192"],["-116.403318","33.6351652"],["-116.4033006","33.6352631"],["-116.4032923","33.6354111"],["-116.4032908","33.6359"],["-116.4032738","33.6360945"],["-116.4032176","33.636382"],["-116.4031024","33.6367137"],["-116.4030213","33.6368719"],["-116.4029189","33.6370416"],["-116.4028111","33.637205"],["-116.4027116","33.6373339"],["-116.4025714","33.6374947"],["-116.4019961","33.6380946"],["-116.4018283","33.6383103"],["-116.4016599","33.6385331"],["-116.4015107","33.6387578"],["-116.4012713","33.6391523"],["-116.4011601","33.6393641"],["-116.4009396","33.6398222"],["-116.4008239","33.6400651"],["-116.4006965","33.6402934"],["-116.4005132","33.6405708"],["-116.400308","33.6408348"],["-116.4000619","33.6411316"],["-116.3997823","33.6414007"],["-116.3994231","33.6417291"],["-116.3992573","33.6418923"],["-116.3991867","33.6420159"],["-116.3991107","33.6421901"],["-116.3990749","33.6423724"],["-116.3990756","33.6425925"],["-116.3991107","33.6427722"],["-116.3991776","33.6429529"],["-116.3995783","33.643911"],["-116.3996292","33.6440432"],["-116.3996716","33.6441737"],["-116.3996941","33.6442831"],["-116.3997024","33.6444106"],["-116.3996839","33.6446782"],["-116.3996623","33.6449399"],["-116.3996624","33.64507"],["-116.399683","33.645203"],["-116.3997085","33.6453014"],["-116.3997618","33.6454236"],["-116.3998432","33.645575"],["-116.3999901","33.6457991"],["-116.4001357","33.6460205"],["-116.4001824","33.6461379"],["-116.4002347","33.6463109"],["-116.400251","33.646411"],["-116.4002466","33.6465427"],["-116.4001727","33.6467946"],["-116.399851","33.6474603"],["-116.3998063","33.6475787"],["-116.3997818","33.6476778"],["-116.3997623","33.6478295"],["-116.3997636","33.647966"],["-116.3997699","33.6481064"],["-116.3998495","33.6484059"],["-116.3999165","33.6485509"],["-116.3999771","33.6486638"],["-116.4000579","33.6487602"],["-116.4001587","33.6488723"],["-116.4002888","33.6489546"],["-116.4003874","33.6489998"],["-116.4005924","33.6490639"],["-116.4007175","33.6490786"],["-116.4008378","33.6490881"],["-116.4009385","33.6490799"],["-116.4010452","33.649064"],["-116.4011392","33.6490428"],["-116.4011842","33.6490311"],["-116.4013027","33.6489775"],["-116.4014018","33.6489203"],["-116.4014992","33.6488562"],["-116.4015915","33.6487727"],["-116.401725","33.6486185"],["-116.4021022","33.6481449"],["-116.4023055","33.6479212"],["-116.4025125","33.6477157"],["-116.4027508","33.6474857"],["-116.4032003","33.6470884"],["-116.4035232","33.6468625"],["-116.4038268","33.6466657"],["-116.4044083","33.6463291"],["-116.4050337","33.6460513"],["-116.4056948","33.6457959"],["-116.406023","33.6457034"],["-116.4066949","33.6455319"],["-116.4071501","33.6454805"],["-116.4072876","33.645494"],["-116.4074225","33.6455251"],["-116.4075545","33.6455686"],["-116.4076752","33.645624"],["-116.4078382","33.6457295"],["-116.4078722","33.6457593"],["-116.4079488","33.6458522"],["-116.4080033","33.6459371"],["-116.4080562","33.6460442"],["-116.4081033","33.6462095"],["-116.4080968","33.6463541"],["-116.4080728","33.646459"],["-116.4080356","33.6465752"],["-116.4079966","33.6466685"],["-116.4078663","33.6468367"],["-116.4077073","33.6470294"],["-116.4070283","33.6477496"],["-116.4062021","33.6486626"],["-116.4057088","33.6492072"],["-116.405452","33.6494644"],["-116.4053166","33.649584"],["-116.4052216","33.6496594"],["-116.4051328","33.6497254"],["-116.4050317","33.6497885"],["-116.4049318","33.6498366"],["-116.404788","33.6498824"],["-116.4045537","33.6499301"],["-116.4042264","33.6499966"],["-116.4037983","33.650092"],["-116.4033124","33.6502826"],["-116.4031056","33.6503847"],["-116.402941","33.6504891"],["-116.4027873","33.650612"],["-116.4025871","33.6508041"],["-116.4024098","33.6509976"],["-116.4021751","33.6513084"],["-116.4019248","33.6516506"],["-116.4018379","33.6517397"],["-116.4017568","33.6518148"],["-116.4016542","33.6518784"],["-116.4013957","33.6519666"],["-116.4012669","33.6519865"],["-116.4011158","33.6519928"],["-116.4009061","33.6519737"],["-116.4007377","33.6519207"],["-116.4005882","33.6518394"],["-116.4004409","33.6517355"],["-116.4002472","33.6516049"],["-116.4000229","33.6514918"],["-116.3998525","33.6514412"],["-116.3996818","33.6514375"],["-116.3994909","33.6514409"],["-116.3992193","33.6514669"],["-116.3990596","33.6514636"],["-116.398899","33.6514396"],["-116.3987899","33.6514059"],["-116.39869","33.6513645"],["-116.3985662","33.65129"],["-116.3984383","33.6511815"],["-116.3982221","33.6509713"],["-116.3981035","33.6508613"],["-116.3980004","33.6508075"],["-116.3978829","33.6507633"],["-116.3977635","33.6507273"],["-116.3976282","33.6507027"],["-116.3971679","33.6506352"],["-116.3970237","33.650585"],["-116.3968923","33.6505236"],["-116.3967704","33.6504576"],["-116.3966881","33.6503966"],["-116.3965925","33.6503238"],["-116.396516","33.6502438"],["-116.3964267","33.6501668"],["-116.3962949","33.6500243"],["-116.396135","33.6498785"],["-116.3960229","33.6497877"],["-116.3959189","33.6497125"],["-116.3958232","33.6496585"],["-116.3957052","33.649621"],["-116.3956094","33.6495984"],["-116.395486","33.6495872"],["-116.3953594","33.6495987"],["-116.3952392","33.6496251"],["-116.3951351","33.6496527"],["-116.3950513","33.6496945"],["-116.3949679","33.6497418"],["-116.3948922","33.6497929"],["-116.3948049","33.6498782"],["-116.3947379","33.6499844"],["-116.3946961","33.6500806"],["-116.39466","33.6502017"],["-116.3946552","33.6503277"],["-116.3946728","33.6504135"],["-116.3946969","33.6505048"],["-116.3947382","33.6505926"],["-116.3948073","33.6506771"],["-116.3948682","33.6507354"],["-116.3949322","33.6507995"],["-116.3950073","33.6508482"],["-116.3951077","33.6508953"],["-116.3952373","33.6509396"],["-116.3953574","33.650961"],["-116.3954999","33.6509627"],["-116.3957215","33.6509362"],["-116.3959027","33.6509093"],["-116.3960402","33.6508988"],["-116.396183","33.6509063"],["-116.3963019","33.6509282"],["-116.3964232","33.6509542"],["-116.3965409","33.6510087"],["-116.3966687","33.6510758"],["-116.3977148","33.6517866"],["-116.3983694","33.652233"],["-116.3988864","33.6525837"],["-116.3991343","33.6527365"],["-116.3994116","33.6528899"],["-116.3997419","33.6530649"],["-116.4006484","33.6535208"],["-116.4011079","33.6537472"],["-116.4012208","33.653832"],["-116.4012696","33.6538911"],["-116.4014073","33.6540164"],["-116.4014681","33.6541106"],["-116.4015184","33.6542621"],["-116.4016092","33.6545631"],["-116.4017538","33.6548417"],["-116.4018323","33.6549378"],["-116.4019078","33.6550095"],["-116.4020014","33.6550819"],["-116.4021436","33.6551725"],["-116.4022492","33.6552163"],["-116.4023401","33.6552425"],["-116.4024465","33.6552645"],["-116.4026147","33.6553213"],["-116.4027631","33.6553656"],["-116.4030798","33.6554177"],["-116.4032253","33.65547"],["-116.4033196","33.6555097"],["-116.4034371","33.6555741"],["-116.4035133","33.6556569"],["-116.4035779","33.6557371"],["-116.4036226","33.6558246"],["-116.4036577","33.6559183"],["-116.4036809","33.6560039"],["-116.4036789","33.6560637"],["-116.4036662","33.6561476"],["-116.4036467","33.6562256"],["-116.4036005","33.6563259"],["-116.4035365","33.6564154"],["-116.4034464","33.6565088"],["-116.4033441","33.6565814"],["-116.4032139","33.6566374"],["-116.4030905","33.6566757"],["-116.4029892","33.6566979"],["-116.4028714","33.6566979"],["-116.4027327","33.6566921"],["-116.4026293","33.6566646"],["-116.4025261","33.6566331"],["-116.4024111","33.6565817"],["-116.4023214","33.6565045"],["-116.402192","33.6563649"],["-116.4020899","33.656215"],["-116.4019793","33.6560541"],["-116.4017635","33.655815"],["-116.4016308","33.6557174"],["-116.4014385","33.6555921"],["-116.4012194","33.6554809"],["-116.4009568","33.6554073"],["-116.4002765","33.6553362"],["-116.3998916","33.655279"],["-116.3997126","33.6552304"],["-116.3995224","33.6551628"],["-116.399379","33.6550924"],["-116.3992318","33.6549934"],["-116.3990933","33.6548816"],["-116.3988629","33.6546469"],["-116.3986828","33.6544575"],["-116.3985665","33.6543656"],["-116.398436","33.6542852"],["-116.3982732","33.6542275"],["-116.3981138","33.6541929"],["-116.3978723","33.6541743"],["-116.397527","33.6542174"],["-116.3963565","33.6544474"],["-116.3960958","33.6545285"],["-116.3959257","33.6546226"],["-116.395747","33.6547713"],["-116.3956245","33.6549452"],["-116.3955655","33.6550905"],["-116.3955391","33.6552116"],["-116.3955374","33.6553448"],["-116.3955599","33.6554905"],["-116.395618","33.6556258"],["-116.395699","33.6557477"],["-116.3958136","33.6558685"],["-116.3959686","33.6559899"],["-116.3962048","33.6560938"],["-116.3963988","33.6561526"],["-116.3965782","33.6561743"],["-116.396747","33.6561574"],["-116.3971657","33.65609"],["-116.3975309","33.6560592"],["-116.3977572","33.656089"],["-116.3979747","33.6561493"],["-116.3982637","33.6563039"],["-116.398424","33.6564478"],["-116.3985319","33.656586"],["-116.3985989","33.6567835"],["-116.398652","33.6570685"],["-116.3986516","33.6573474"],["-116.3986734","33.657529"],["-116.3987373","33.6576958"],["-116.3988406","33.6578371"],["-116.3989858","33.6579717"],["-116.3991541","33.6580722"],["-116.3993398","33.6581362"],["-116.3995019","33.6581546"],["-116.3996431","33.658166"],["-116.399832","33.6581606"],["-116.4000351","33.658158"],["-116.4002115","33.6581598"],["-116.4003046","33.6581757"],["-116.4004265","33.6582074"],["-116.4005807","33.6582749"],["-116.4006943","33.6583519"],["-116.4007632","33.6584208"],["-116.4008123","33.6584791"],["-116.4008688","33.6585797"],["-116.4009171","33.6587203"],["-116.4009281","33.6588298"],["-116.4009283","33.6589139"],["-116.4009144","33.6589739"],["-116.4008929","33.6590485"],["-116.4008259","33.6591745"],["-116.4007441","33.6592724"],["-116.4006535","33.6593487"],["-116.4005689","33.6594037"],["-116.4004874","33.6594473"],["-116.4003905","33.6594824"],["-116.4002658","33.6595108"],["-116.4000991","33.6595157"],["-116.3999544","33.6595126"],["-116.3998157","33.6594806"],["-116.3997189","33.6594359"],["-116.3996021","33.6593577"],["-116.3994943","33.6592786"],["-116.3994026","33.6591911"],["-116.399058","33.6589048"],["-116.3988703","33.658781"],["-116.3986726","33.6587046"],["-116.3985102","33.6586664"],["-116.3983465","33.6586593"],["-116.3982066","33.6586711"],["-116.3980945","33.6586895"],["-116.397971","33.6587264"],["-116.397829","33.6587822"],["-116.3977076","33.6588692"],["-116.3975937","33.658961"],["-116.3975064","33.659056"],["-116.3974462","33.6591561"],["-116.3974015","33.659289"],["-116.3973722","33.6593936"],["-116.3973683","33.659528"],["-116.3973865","33.6596473"],["-116.3974098","33.6597405"],["-116.3974613","33.6598375"],["-116.397541","33.6599354"],["-116.3976349","33.6600334"],["-116.3977301","33.6601048"],["-116.3978799","33.6602006"],["-116.3984662","33.6604813"],["-116.398648","33.6605797"],["-116.3987663","33.6606488"],["-116.3988595","33.6607178"],["-116.3989483","33.6607996"],["-116.3990185","33.6608764"],["-116.3990808","33.6609499"],["-116.3991639","33.6611311"],["-116.3991926","33.6612646"],["-116.3991989","33.6613593"],["-116.3991859","33.6614852"],["-116.3991619","33.6616857"],["-116.3990182","33.6627321"],["-116.3989739","33.6630429"],["-116.3989653","33.6631843"],["-116.3989642","33.6633321"],["-116.3990415","33.6635535"],["-116.3991058","33.6636822"],["-116.3991847","33.6638058"],["-116.3993269","33.663956"],["-116.3994458","33.6640463"],["-116.3996049","33.6641404"],["-116.3997287","33.6641929"],["-116.3998629","33.6642399"],["-116.4000643","33.6642917"],["-116.4003947","33.6643628"],["-116.4006545","33.6644346"],["-116.400813","33.6645177"],["-116.4009939","33.664642"],["-116.4011487","33.6647636"],["-116.4013612","33.664973"],["-116.4015229","33.6651369"],["-116.4017456","33.6653047"],["-116.4019668","33.6654251"],["-116.4021354","33.6654966"],["-116.4023063","33.6655565"],["-116.4024973","33.6655975"],["-116.4026774","33.6656196"],["-116.4028893","33.6656333"],["-116.4031096","33.6656407"],["-116.4038472","33.6656288"],["-116.4040351","33.6656512"],["-116.4041507","33.6656841"],["-116.4042863","33.6657228"],["-116.404404","33.6657795"],["-116.4045046","33.6658461"],["-116.4046147","33.665922"],["-116.4047087","33.6659996"],["-116.4047737","33.6660788"],["-116.4048549","33.6661757"],["-116.4049371","33.6663113"],["-116.4050817","33.6665816"],["-116.4051925","33.666753"],["-116.405305","33.6668701"],["-116.4054139","33.6669579"],["-116.4055936","33.6670681"],["-116.4058106","33.6671903"],["-116.40609","33.6672987"],["-116.4065387","33.6675013"],["-116.406928","33.6676746"],["-116.4070626","33.6677634"],["-116.4072178","33.6678897"],["-116.4073171","33.668009"],["-116.4074136","33.668126"],["-116.4087722","33.6700813"],["-116.4090929","33.6706464"],["-116.4091261","33.6707201"],["-116.4091751","33.670849"],["-116.4092291","33.6710478"],["-116.4092759","33.6712777"],["-116.4092977","33.6715532"],["-116.4092937","33.6717792"],["-116.4092828","33.6720646"],["-116.4092019","33.6724344"],["-116.4091088","33.6728031"],["-116.4089396","33.6732924"],["-116.4013433","33.6926597"],["-116.4010931","33.6932882"],["-116.4004386","33.6950124"],["-116.4001112","33.6957989"],["-116.399949","33.6961855"],["-116.3985962","33.6997286"],["-116.3982113","33.7006223"],["-116.3974557","33.7025733"],["-116.3970395","33.7035816"],["-116.3967403","33.7043576"],["-116.3922248","33.7160153"],["-116.3919676","33.7166705"],["-116.3908866","33.7194417"],["-116.3908114","33.7196422"],["-116.3907982","33.7196871"],["-116.3907794","33.7197617"],["-116.3907653","33.719831"],["-116.3907606","33.7198565"],["-116.3907528","33.7199001"],["-116.3907491","33.7199907"],["-116.3907766","33.7203096"],["-116.3907996","33.7204395"],["-116.3908163","33.7206284"],["-116.3909335","33.7208531"],["-116.3909974","33.7209464"],["-116.3910438","33.7210148"],["-116.3911096","33.7211372"],["-116.3911397","33.7211973"],["-116.3911733","33.7212678"],["-116.3912054","33.7213399"],["-116.3912465","33.7215012"],["-116.3914172","33.7215132"],["-116.3915328","33.7215218"],["-116.391813","33.721532"],["-116.3930584","33.7215794"],["-116.3946013","33.7216527"],["-116.3948505","33.7216723"],["-116.3951575","33.7217124"],["-116.395476","33.721767"],["-116.3958454","33.7218477"],["-116.3962602","33.7219602"],["-116.3967398","33.7221252"],["-116.3971062","33.7222782"],["-116.39754","33.7224981"],["-116.3979619","33.7227428"],["-116.3983123","33.7229923"],["-116.3984534","33.7230971"],["-116.3985252","33.7231543"],["-116.3987017","33.7232978"],["-116.3989292","33.7235148"],["-116.399233","33.7238458"],["-116.4000737","33.7248642"],["-116.4004042","33.7252779"],["-116.4019605","33.7274564"],["-116.4026012","33.7283537"],["-116.4027669","33.7285797"],["-116.4029923","33.7289133"],["-116.4048255","33.7314509"],["-116.4054989","33.7323851"],["-116.4058014","33.7327976"],["-116.4059776","33.733042"],["-116.4062689","33.7334538"],["-116.4065768","33.7338913"],["-116.4072498","33.7348059"],["-116.4090809","33.7374279"],["-116.4094192","33.7378759"],["-116.4099516","33.7385684"],["-116.4105774","33.7393654"],["-116.4115797","33.7405617"],["-116.4118805","33.7408987"],["-116.4121038","33.7411525"],["-116.412389","33.7414736"],["-116.4125696","33.7416689"],["-116.413227","33.7424145"],["-116.4133635","33.7425662"],["-116.4135745","33.7428045"],["-116.4138903","33.7431753"],["-116.4152689","33.7446878"],["-116.4155456","33.7449139"],["-116.4157115","33.7450407"],["-116.4158316","33.7451277"],["-116.4160829","33.7452919"],["-116.4164061","33.7454818"],["-116.4173331","33.7459017"],["-116.4193663","33.7468869"],["-116.4199154","33.7471603"],["-116.4202504","33.7473154"],["-116.4206524","33.7475178"],["-116.4208601","33.7476211"],["-116.4218377","33.7481458"],["-116.4241932","33.7495804"],["-116.4246042","33.7498089"],["-116.4249855","33.7499757"],["-116.4268982","33.7507195"],["-116.4275882","33.7510161"],["-116.4280236","33.7512773"],["-116.4286048","33.7517377"],["-116.4309679","33.7540303"],["-116.4315691","33.7546141"],["-116.4320502","33.7550693"],["-116.4329526","33.7558489"],["-116.4338919","33.756548"],["-116.4374574","33.7590086"],["-116.4383067","33.7595668"],["-116.439149","33.7601307"],["-116.4404333","33.761034"],["-116.4409362","33.7614007"],["-116.4412063","33.7616446"],["-116.4417521","33.7622042"],["-116.4420571","33.7625733"],["-116.4423065","33.762918"],["-116.4431685","33.7642765"],["-116.4436866","33.7651129"],["-116.4440073","33.7656134"],["-116.445481","33.7679928"],["-116.4460085","33.7689669"],["-116.446138","33.7692903"],["-116.4464852","33.7702688"],["-116.4467375","33.7710673"],["-116.4469968","33.7718579"],["-116.4470233","33.7719298"],["-116.4472869","33.7725932"],["-116.4474595","33.7729499"],["-116.4476265","33.7732071"],["-116.4478631","33.7735164"],["-116.4483514","33.7740888"],["-116.4491245","33.7747458"],["-116.4492728","33.7748371"],["-116.4497492","33.7751274"],["-116.4504088","33.7754836"],["-116.4506662","33.7755649"],["-116.451208","33.7758549"],["-116.4515882","33.7760424"],["-116.4518792","33.7761532"],["-116.4520109","33.7762408"],["-116.4524982","33.776384"],["-116.4531532","33.7764899"],["-116.4542298","33.7766272"],["-116.4547585","33.7767373"],["-116.4554614","33.7769323"],["-116.4560969","33.7771669"],["-116.4567833","33.7774626"],["-116.4577677","33.7779113"],["-116.4579457","33.7779795"],["-116.4581032","33.7780317"],["-116.4592313","33.7784135"],["-116.4600829","33.7786833"],["-116.4606996","33.7788513"],["-116.4621853","33.7792547"],["-116.4625104","33.7793443"],["-116.4686248","33.781054"],["-116.4688201","33.7811052"],["-116.4689282","33.7811326"],["-116.4697366","33.7813991"],["-116.4702679","33.7816044"],["-116.4707591","33.781833"],["-116.4709853","33.7819517"],["-116.4734808","33.7833848"],["-116.4735865","33.783413"],["-116.4737151","33.7834392"],["-116.4739308","33.7835552"],["-116.4742823","33.7837453"],["-116.47456","33.7838953"],["-116.474953","33.7841118"],["-116.4753686","33.7843407"],["-116.4757238","33.7845464"],["-116.4760968","33.7847717"],["-116.47671","33.7851361"],["-116.4770679","33.7853435"],["-116.4799979","33.7870308"],["-116.4817036","33.7880161"],["-116.4826254","33.7885415"],["-116.4832314","33.7889019"],["-116.4835114","33.7891043"],["-116.4837651","33.7893022"],["-116.4839747","33.7894754"],["-116.4841938","33.789656"],["-116.4843714","33.7898"],["-116.4849383","33.7901552"],["-116.4859547","33.7906052"],["-116.4862921","33.7907466"],["-116.4865116","33.7908424"],["-116.4869611","33.7910099"],["-116.4875991","33.7912518"],["-116.4885801","33.7915673"],["-116.4950102","33.7933123"],["-116.4954022","33.7934139"],["-116.5013866","33.7948984"],["-116.5019052","33.7950328"],["-116.5091363","33.7969733"],["-116.5101044","33.7973438"],["-116.5104683","33.7975374"],["-116.5105058","33.7975587"],["-116.5108117","33.7977572"],["-116.5110798","33.7979446"],["-116.5114595","33.7982401"],["-116.5117838","33.7985206"],["-116.5125167","33.7992322"],["-116.5133571","33.8000583"],["-116.5137506","33.8003876"],["-116.5141126","33.8006302"],["-116.5144525","33.800804"],["-116.5149205","33.8010108"],["-116.5150722","33.80107"],["-116.5153104","33.8011436"],["-116.5155389","33.8012044"],["-116.5157895","33.8012635"],["-116.5160561","33.8013089"],["-116.5163752","33.8013546"],["-116.5167041","33.8013708"],["-116.5173355","33.8013767"],["-116.5193982","33.8013761"],["-116.5194251","33.8060962"],["-116.5194047","33.8063282"],["-116.5193696","33.8064723"],["-116.5193154","33.8065991"],["-116.5192462","33.8067352"],["-116.5191736","33.8068527"],["-116.5190588","33.8069853"],["-116.5188056","33.8072162"],["-116.5184643","33.8074897"],["-116.5183038","33.8076706"],["-116.5182079","33.8078075"],["-116.5181265","33.8079351"],["-116.5180395","33.8081508"],["-116.5180344","33.8089103"],["-116.5180431","33.8113131"],["-116.5180408","33.8118335"],["-116.5180406","33.8121406"],["-116.518037","33.8159173"],["-116.5182493","33.8159269"],["-116.5194565","33.8159261"],["-116.5201561","33.8159261"],["-116.5205952","33.8159251"],["-116.5238209","33.8159364"],["-116.5259147","33.8159352"],["-116.5261736","33.8159349"],["-116.5267969","33.8159334"],["-116.5278941","33.8159388"],["-116.5279751","33.8159381"],["-116.5280207","33.8159389"],["-116.5280516","33.8159502"],["-116.5281514","33.8159874"],["-116.5282836","33.815989"],["-116.5301343","33.8159673"],["-116.53022","33.8159121"],["-116.5303423","33.8159081"],["-116.5308801","33.8159033"],["-116.5314789","33.815905"],["-116.5330183","33.8158951"],["-116.53311","33.8158948"],["-116.5369039","33.8158755"],["-116.5369334","33.8290581"],["-116.5369898","33.8321112"]] } }; 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': '#0b7172', '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"); } }); })();