function genImgContent(p,m){p=JSON.parse(p);if(Array.isArray(p[0])){let d='carousel'+Math.random().toString(36).substr(2,9);b='';for(let i=0;i`;} let c=``;return c;}else{return genImg(p,m);}} function genImg(p,m){var c=m?'w-100 h-100 object-fit-cover':'img-fluid w-100';var a=p[0];var u=`https://cdn.lazytrips.com/photos/`+a.slice(0,2)+'/'+a.slice(2,4)+'/'+a;var r=``+p[1]+``;return r;} function getNewLngLat(m,o,f){var p=m.project(new mapboxgl.LngLat(o[0],o[1]));p.x+=f.x;p.y+=f.y;return m.unproject(p);} function onMapZoom(m){if(contentMaps[m]){contentMaps[m].on('zoom',function(){Object.keys(markerData[m]).forEach(function(i){var p=markerData[m][i];if(!mDev()&&p.cardInstance){var o={x:p.c.card.oX,y:p.c.card.oY};var n=getNewLngLat(contentMaps[m],p.lonLat,o);p.cardInstance.setLngLat([n.lng,n.lat]);}});});}} async function fetchRoute(d,m,i,c){const p={routeId:d};const r=await fetch('/api/request-route',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify(p)});if(r.ok){const j=await r.json();if(j.response&&j.response.route){const d=JSON.parse(j.response.route);markerData[m][i].c.route.json=d;updateMapWithRoute(m,i,d,c);}}} function updateMapWithRoute(m,i,r,c){const l='iconRoute_'+m+'_'+i;const g={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:r}};if(contentMaps[m].getLayer(l)){contentMaps[m].setLayoutProperty(l,'visibility','visible');contentMaps[m].getSource(l).setData(g);}else{contentMaps[m].addLayer({id:l,type:'line',source:{type:'geojson',data:g},layout:{'line-join':'round','line-cap':'round'},paint:{'line-color':c,'line-width':5,'line-opacity':0.8}});}} function hideRouteLayer(m,i){const l='iconRoute_'+m+'_'+i;if(contentMaps[m].getLayer(l)){contentMaps[m].setLayoutProperty(l,'visibility','none');}} window.toggleMapIconClick=function(m,i,e=true){if(markerData[m][i].a){return;} for(const[key,icon]of Object.entries(markerData[m])){if(parseInt(key)===i){continue;} if(icon.popupInstance){icon.popupInstance.remove();delete icon.popupInstance;} if(icon.c?.route&&contentMaps[m].getLayer('iconRoute_'+m+'_'+key)){hideRouteLayer(m,key);} if(icon.marker){icon.marker.getElement().classList.remove('markerSpanSelect');} if(icon.cardInstance){icon.cardInstance.remove();delete icon.cardInstance;} if(icon.cardOverlay){var o=icon.cardOverlay;if(o&&o.parentNode){o.parentNode.removeChild(o);delete icon.cardOverlay;}} icon.a=false;} if(!markerData[m][i].a){markerData[m][i].marker.getElement().classList.add('markerSpanSelect');if(markerData[m][i].c?.popup){const t=markerData[m][i].c.popup.title;const p=markerData[m][i].c.popup.text;let popupHTML='
';if(t){popupHTML+='

'+t+'

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

'+p+'

';} popupHTML+='
';var popup=new mapboxgl.Popup({anchor:'bottom',closeButton:false,closeOnClick:false,className:'pointer'}).setLngLat(markerData[m][i].lonLat).setHTML(popupHTML).addTo(contentMaps[m]);markerData[m][i].popupInstance=popup;popup._content.addEventListener('click',function(){toggleMapIconClick(m,i);});markerData[m][i].marker.getElement().style.display='none';} if(markerData[m][i].c?.route){const layerId='iconRoute_'+m+'_'+i;if(contentMaps[m].getLayer(layerId)){contentMaps[m].setLayoutProperty(layerId,'visibility','visible');}else{fetchRoute(markerData[m][i].c.route.id,m,i,markerData[m][i].c.route.color);}} if(markerData[m][i].c?.card){var cardContent={n:markerData[m][i].c.card.title,d:markerData[m][i].c.card.d,t:markerData[m][i].c.card.t,p:markerData[m][i].c.card.p,};if(markerData[m][i].c.card.hasOwnProperty('link')){cardContent.l=markerData[m][i].c.card.link;} if(markerData[m][i].c.card.hasOwnProperty('linkText')){cardContent.s=markerData[m][i].c.card.linkText;} if(!mDev()){var cardContentHtml=createCardContentHtml(cardContent,false);var offsets={x:markerData[m][i].c.card.oX,y:markerData[m][i].c.card.oY};var newLngLat=getNewLngLat(contentMaps[m],markerData[m][i]['lonLat'],offsets);var cardPopup=new mapboxgl.Popup({anchor:'bottom',closeButton:false,closeOnClick:false,className:'mapPopupCard'}).setHTML(cardContentHtml).setLngLat([newLngLat.lng,newLngLat.lat]).addTo(contentMaps[m]);markerData[m][i].cardInstance=cardPopup;setTimeout(()=>{if(markerData[m][i].cardInstance&&markerData[m][i].cardInstance.isOpen()){markerData[m][i].c.card.height=markerData[m][i].cardInstance.getElement().offsetHeight;}},10);}else{var cardMobile=document.createElement('div');cardMobile.className='mapPopupCardMobile';cardMobile.innerHTML=createCardContentHtml(cardContent,true);var mapContainer=contentMaps[m].getContainer();mapContainer.appendChild(cardMobile);markerData[m][i].cardOverlay=cardMobile;}} markerData[m][i].a=true;if(e){updateMapBounds(m,i);}}else{resetMarkersAndCards(m);}} window.resetMarkersAndCards=function(m){Object.keys(markerData[m]).forEach((i)=>{if(markerData[m][i].marker){markerData[m][i].marker.getElement().classList.remove('markerSpanSelect');} if(markerData[m][i].popupInstance){markerData[m][i].popupInstance.remove();delete markerData[m][i].popupInstance;} if(markerData[m][i].c&&markerData[m][i].c.route){if(contentMaps[m].getLayer('iconRoute_'+m+'_'+i)){hideRouteLayer(m,i);}} if(markerData[m][i].c&&markerData[m][i].c.card){if(markerData[m][i].cardInstance){markerData[m][i].cardInstance.remove();delete markerData[m][i].cardInstance;}} if(markerData[m][i].cardOverlay){var o=markerData[m][i].cardOverlay;if(o&&o.parentNode){o.parentNode.removeChild(o);delete markerData[m][i].cardOverlay;}} markerData[m][i].marker.getElement().style.display='block';markerData[m][i].a=false;});} function formatTime(t){const h=Math.floor(t / 60);const m=t%60;return`⏱️ ${h > 0 ? h + " hour" + (h > 1 ? "s" : "") : ""}${h > 0 && m > 0 ? ", " : ""}${m > 0 ? m + " minute" + (m > 1 ? "s" : "") : ""}`;} function createCardContentHtml(c,m){cC='';if(m){cC=' d-flex flex-row';} let h='
';if(c.p){p=genImgContent(c.p,m);h+='
'+p+'
';} if(c.n||c.d||c.t||c.l){h+='
';if(c.n){h+='
'+c.n+'
';} if(c.d){h+='
';} if(c.d){h+='
🚗 '+c.d+'
';} if(c.t){h+='
'+formatTime(c.t)+'
';} if(!m){h+='
';} if(c.l){var z=c.s||'Read more';p='';if(m){p=' pt-2';} h+='';}} if(m){h+='
';} h+='
';return h;} document.addEventListener('shown.bs.modal',function(e){if(e.target.id.startsWith('contentMapModal_')){let m=e.target.id.replace('contentMapModal_','');let t=window.contentMaps[m];if(t){setTimeout(()=>{e.target.style.borderBottom='1px solid #eee';setTimeout(()=>{e.target.style.borderBottom='';},1);},1);}}});window.addEventListener('resize',function(){document.querySelectorAll('[id^="contentMapModal_"]').forEach(p=>{if(p.classList.contains('show')){let m=p.id.replace('contentMapModal_','');let t=window.contentMaps[m];if(t){setTimeout(()=>{t.style.borderBottom='1px solid #eee';setTimeout(()=>{t.style.borderBottom='';},1);},1);}}});});function mDev(){return window.innerWidth<=768||window.innerHeight<=600;} async function updateMapBounds(m,n){const map=contentMaps[m];const oldBounds=contentMaps[m].getBounds();var T=contentMaps[m].getBounds();const D=contentMaps[m].getContainer().getBoundingClientRect();const x=markerData[m][n];const lngDiff=oldBounds.getNorthEast().lng-oldBounds.getSouthWest().lng;const latDiff=oldBounds.getNorthEast().lat-oldBounds.getSouthWest().lat;const lngPerPx=lngDiff / D.width;const latPerPx=latDiff / D.height;const U=[];var B=new mapboxgl.LngLatBounds(T.toArray());var R=new mapboxgl.LngLatBounds(T.toArray());if(!mDev()&&markerData[m][n].c.card&&markerData[m][n].a){const cP=new Promise(async(resolve)=>{const h=await new Promise(resolveHeight=>{const hInt=setInterval(()=>{let chk=markerData[m][n].c.card.height;if(chk){clearInterval(hInt);resolveHeight(chk);}},100);});const w=300;var p=15;const z=contentMaps[m].getZoom();var a=0;if(z<7){a=(8-z)*10;} const oX=markerData[m][n].c.card.oX;const oY=markerData[m][n].c.card.oY;const P=map.project(new mapboxgl.LngLat(x.lonLat[0],x.lonLat[1]));const tG=P.y+oY-h if(tG{const jR=await new Promise(resolve=>{const intervalId=setInterval(()=>{if(x.c.route.json&&Array.isArray(x.c.route.json)&&x.c.route.json.length>0){clearInterval(intervalId);resolve(true);}},100);});if(jR){const paddingRoutePixels=20;let extendWest=false,extendEast=false,extendNorth=false,extendSouth=false;x.c.route.json.forEach(coord=>{if(coord[0]R.getEast())extendEast=true;if(coord[1]>R.getNorth())extendNorth=true;if(coord[1]status)){T.extend(B.getSouthWest());T.extend(B.getNorthEast());T.extend(R.getSouthWest());T.extend(R.getNorthEast());map.fitBounds(T,{padding:0,duration:600,easing:(t)=>t*(2-t)});}}const markerConfig={'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:'☆',},'grey':{className:'mapMarkerNum markerSpanGrey',size:false,offset:[0,0],span:true,best:false,text:false,},};function addMarkersToMap(m,f=null){Object.values(markerData[m]).forEach((i,n)=>{if(f!==null&&n'+t+'';} if(mC.width&&mC.height){el.style.width=mC.width+'px';el.style.height=mC.height+'px';} var marker=new mapboxgl.Marker(el,{offset:mC.offset}).setLngLat(i.lonLat).addTo(window.contentMaps[m]);marker.markerType=i.iconType;if(f!==null){} i.marker=marker;window.bounds[m].extend(i.lonLat);if(i.c){marker.getElement().addEventListener('click',function(){event.stopPropagation();toggleMapIconClick(m,n,true);});}});}if(typeof window.contentMaps==='undefined'){window.contentMaps={};window.initialMapBounds={};} if(typeof window.bounds==='undefined'){window.bounds={};} 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:[-106.065757,38.821237],zoom:5,cooperativeGestures:true});window.contentMaps[1]=contentMap_1;if(typeof window.bounds[1]==='undefined'){window.bounds[1]=new mapboxgl.LngLatBounds();} markerData[1][0]={"lonLat":[-104.988022,39.741245],"type":"start"};markerData[1][1]={"lonLat":[-107.812287,37.937499],"type":"finish"};markerData[1][2]={"lonLat":[-106.37962403227439,39.6446266231487],"type":"star","c":{"popup":{"title":"Vail Route","text":"370 miles (6 hours 30 minutes)"}}};markerData[1][3]={"lonLat":[-106.16739163148515,38.53670823029185],"type":"star","c":{"popup":{"title":"Colorado Springs Route","text":"400 miles (7 hours 20 minutes)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-104.9878886","39.7411185"],["-104.9876527","39.7412879"],["-104.987636","39.7412988"],["-104.9876234","39.7413009"],["-104.9873972","39.7412884"],["-104.9873945","39.7408"],["-104.9873994","39.7395964"],["-104.9873914","39.7369035"],["-104.9873917","39.7368319"],["-104.9874289","39.7290834"],["-104.9890844","39.7290828"],["-104.9895037","39.7290792"],["-104.9896018","39.729075"],["-104.9896963","39.7290692"],["-104.9898111","39.7290551"],["-104.9899045","39.7290413"],["-104.9900116","39.729025"],["-104.990117","39.7290078"],["-104.9905874","39.7289346"],["-104.9909021","39.7288987"],["-104.9910447","39.7288951"],["-104.9915437","39.7289067"],["-104.9918496","39.7289196"],["-104.9921927","39.728935"],["-104.9927449","39.7289313"],["-104.9928661","39.7289309"],["-104.9940523","39.7289231"],["-104.9941714","39.7289229"],["-104.9963056","39.728909"],["-104.998126","39.728909"],["-104.9985089","39.728908"],["-104.9994402","39.7289077"],["-104.9995731","39.7288983"],["-104.9996455","39.7288886"],["-104.9997483","39.7288675"],["-104.9998345","39.7288402"],["-104.9999234","39.7287934"],["-104.9999955","39.7287396"],["-105.0000359","39.7287006"],["-105.0000699","39.7286628"],["-105.0001193","39.7285911"],["-105.0001595","39.7285162"],["-105.0001913","39.7284325"],["-105.0001956","39.7279783"],["-105.0001983","39.7272446"],["-105.0001905","39.7267201"],["-105.0001861","39.7264859"],["-105.0001861","39.7261769"],["-105.0002506","39.7260484"],["-105.0002841","39.7259967"],["-105.0003166","39.7259581"],["-105.0003534","39.7259279"],["-105.0003927","39.725902"],["-105.0004515","39.7258705"],["-105.0005079","39.7258452"],["-105.0005796","39.7258178"],["-105.0006639","39.7257963"],["-105.0010412","39.7257701"],["-105.0047679","39.7257639"],["-105.0068638","39.7258131"],["-105.0085729","39.7258687"],["-105.0091115","39.7258557"],["-105.0114561","39.725761"],["-105.0172767","39.7254495"],["-105.0184219","39.7254336"],["-105.0201728","39.7254707"],["-105.0233707","39.7255854"],["-105.0240197","39.7255944"],["-105.0302308","39.7255429"],["-105.0306615","39.7255459"],["-105.031141","39.7255449"],["-105.0335703","39.7256493"],["-105.0347921","39.7256633"],["-105.0370138","39.7256797"],["-105.0467882","39.7257342"],["-105.0473224","39.7257473"],["-105.0482797","39.7257905"],["-105.0487757","39.7258091"],["-105.0495051","39.7258071"],["-105.053761","39.7258067"],["-105.0577596","39.7257739"],["-105.0798767","39.7256263"],["-105.0811225","39.7256101"],["-105.0820246","39.7256088"],["-105.0880369","39.7255895"],["-105.0899766","39.7255898"],["-105.0996421","39.7255499"],["-105.1005991","39.7255477"],["-105.1581271","39.7254057"],["-105.1636802","39.7254049"],["-105.1651465","39.7254021"],["-105.1659913","39.7254017"],["-105.1707532","39.7253983"],["-105.1728595","39.7253974"],["-105.1776836","39.725387"],["-105.1797745","39.7254596"],["-105.1799756","39.7254805"],["-105.1801887","39.7255085"],["-105.1810819","39.7256493"],["-105.181364","39.7256869"],["-105.1816078","39.7257063"],["-105.1818178","39.7257141"],["-105.1822267","39.7256877"],["-105.1826214","39.7256082"],["-105.1829598","39.7254872"],["-105.1831333","39.7254019"],["-105.1832981","39.7253048"],["-105.1834444","39.725194"],["-105.1835449","39.7251069"],["-105.183656","39.7250019"],["-105.183755","39.7249031"],["-105.1838757","39.7247257"],["-105.1839806","39.7245629"],["-105.1840911","39.7243448"],["-105.1843586","39.7238137"],["-105.1851088","39.7222763"],["-105.1852056","39.7220907"],["-105.185264","39.7219961"],["-105.1853692","39.7218444"],["-105.1854509","39.7217424"],["-105.1855529","39.7216433"],["-105.1856659","39.7215379"],["-105.1857584","39.7214593"],["-105.1861947","39.7211351"],["-105.187438","39.7202213"],["-105.187786","39.7199541"],["-105.1885247","39.7193463"],["-105.1896482","39.7182799"],["-105.1901328","39.7177468"],["-105.1905929","39.7172014"],["-105.2003094","39.7046109"],["-105.201058","39.7036116"],["-105.2022245","39.7020824"],["-105.2029075","39.7012557"],["-105.2033106","39.7008099"],["-105.2037872","39.7003079"],["-105.2073079","39.6967585"],["-105.207522","39.6965612"],["-105.2077088","39.6964047"],["-105.207865","39.6962873"],["-105.2080163","39.6961861"],["-105.2081765","39.6960868"],["-105.2083488","39.695995"],["-105.2085346","39.6959049"],["-105.2087435","39.6958183"],["-105.2089711","39.6957347"],["-105.2092028","39.6956594"],["-105.2094433","39.6955915"],["-105.209692","39.6955384"],["-105.2099056","39.6955024"],["-105.2101143","39.6954772"],["-105.2103151","39.6954615"],["-105.2105336","39.6954496"],["-105.2107152","39.6954514"],["-105.2109163","39.6954593"],["-105.2111368","39.6954762"],["-105.2113667","39.6955041"],["-105.2116083","39.6955444"],["-105.2118324","39.6955873"],["-105.2120988","39.6956464"],["-105.212392","39.6957196"],["-105.2133765","39.6959695"],["-105.2136361","39.6960236"],["-105.2138845","39.69607"],["-105.214129","39.6961095"],["-105.2143656","39.6961411"],["-105.2146264","39.6961699"],["-105.2148902","39.6961874"],["-105.2151803","39.6961999"],["-105.2154897","39.6962058"],["-105.217425","39.6961831"],["-105.2180785","39.6961899"],["-105.2184067","39.6962009"],["-105.2187321","39.6962248"],["-105.2190286","39.6962558"],["-105.219336","39.6962987"],["-105.2196067","39.6963448"],["-105.2198898","39.696401"],["-105.2202203","39.6964755"],["-105.2205849","39.6965665"],["-105.2258932","39.6981197"],["-105.2261586","39.6981932"],["-105.2263784","39.6982441"],["-105.2268184","39.6983302"],["-105.2272683","39.6983857"],["-105.2278417","39.69842"],["-105.2358745","39.6985585"],["-105.2361253","39.6985738"],["-105.2363575","39.6985972"],["-105.236563","39.6986251"],["-105.236769","39.6986631"],["-105.237236","39.6987762"],["-105.2374911","39.6988603"],["-105.2377019","39.6989442"],["-105.2378706","39.6990272"],["-105.2380413","39.6991159"],["-105.2382061","39.6992071"],["-105.2383921","39.6993214"],["-105.2385632","39.6994427"],["-105.2387277","39.6995748"],["-105.2389529","39.6997775"],["-105.2392856","39.7001046"],["-105.239884","39.7007017"],["-105.2400349","39.7008428"],["-105.2402001","39.7009835"],["-105.2405395","39.7012271"],["-105.2407114","39.7013379"],["-105.2409051","39.7014465"],["-105.2410744","39.7015333"],["-105.2414089","39.7016851"],["-105.2415829","39.7017519"],["-105.2451704","39.7028473"],["-105.24561","39.7029528"],["-105.2522037","39.7043197"],["-105.25282","39.7044418"],["-105.2531543","39.7045036"],["-105.2534539","39.704546"],["-105.2537741","39.7045846"],["-105.2541321","39.7046198"],["-105.2544612","39.7046453"],["-105.2547646","39.7046563"],["-105.2550692","39.7046459"],["-105.2556743","39.7046148"],["-105.2594004","39.7040829"],["-105.2596877","39.7040452"],["-105.2603667","39.7039955"],["-105.2607381","39.7039993"],["-105.2610578","39.7039948"],["-105.2616497","39.7040109"],["-105.2620441","39.7040413"],["-105.2624156","39.7040745"],["-105.2628691","39.7041276"],["-105.263284","39.7041868"],["-105.264511","39.7043694"],["-105.2652927","39.7044789"],["-105.2748537","39.7058968"],["-105.2752434","39.7059661"],["-105.2756475","39.7060551"],["-105.276021","39.7061479"],["-105.2763655","39.7062456"],["-105.27671","39.7063598"],["-105.2775515","39.7066749"],["-105.2818946","39.7084898"],["-105.2824145","39.708689"],["-105.2826743","39.7087753"],["-105.2829722","39.7088643"],["-105.2832575","39.7089364"],["-105.2835063","39.7089926"],["-105.2837982","39.709047"],["-105.2840671","39.7090836"],["-105.2848406","39.7091483"],["-105.2877217","39.7092917"],["-105.2888648","39.70935"],["-105.2902164","39.7094394"],["-105.2909389","39.7095209"],["-105.2917683","39.709639"],["-105.2930312","39.7098655"],["-105.2937483","39.7100295"],["-105.3097025","39.7141721"],["-105.3100427","39.7142457"],["-105.3103097","39.7142967"],["-105.3106072","39.7143398"],["-105.3108832","39.7143676"],["-105.3111607","39.714386"],["-105.3114644","39.7143825"],["-105.3117542","39.714368"],["-105.3120527","39.7143358"],["-105.3123123","39.7142952"],["-105.3129188","39.7141571"],["-105.3131584","39.7140804"],["-105.3133699","39.7140025"],["-105.3135977","39.7139107"],["-105.3137875","39.7138251"],["-105.3140089","39.7137152"],["-105.3142421","39.7136021"],["-105.3144437","39.713478"],["-105.3147","39.7132994"],["-105.3149359","39.7131193"],["-105.3156231","39.7125011"],["-105.3167697","39.7114611"],["-105.3177955","39.7105839"],["-105.319167","39.7094533"],["-105.3212746","39.7079022"],["-105.3288431","39.702909"],["-105.3290813","39.7027541"],["-105.3297664","39.7023595"],["-105.3300492","39.7022136"],["-105.3304236","39.7020677"],["-105.3308513","39.7019289"],["-105.3312559","39.7018195"],["-105.3316487","39.701734"],["-105.3320446","39.7016709"],["-105.3324183","39.7016336"],["-105.3328034","39.7016061"],["-105.3332288","39.7016085"],["-105.333581","39.7016263"],["-105.333917","39.7016625"],["-105.3342782","39.7017207"],["-105.3346408","39.7017886"],["-105.3350036","39.7018815"],["-105.3410826","39.7037458"],["-105.3416058","39.7039259"],["-105.3423294","39.7042304"],["-105.3427166","39.7044125"],["-105.3429035","39.7045098"],["-105.3433971","39.7047914"],["-105.3439553","39.7051528"],["-105.3442381","39.705357"],["-105.3445074","39.7055651"],["-105.3448524","39.705868"],["-105.3453022","39.7062777"],["-105.3456938","39.706681"],["-105.3468615","39.7078614"],["-105.3473149","39.7083198"],["-105.3476082","39.7085966"],["-105.3478849","39.7088485"],["-105.3481628","39.7090938"],["-105.3484327","39.709314"],["-105.3490181","39.7097368"],["-105.3493006","39.7099304"],["-105.349971","39.7103444"],["-105.3503798","39.7105743"],["-105.3508962","39.7108319"],["-105.3514493","39.7110934"],["-105.3519288","39.7112954"],["-105.3524274","39.7114754"],["-105.3529236","39.7116438"],["-105.3540145","39.7119785"],["-105.3544629","39.7120958"],["-105.3548932","39.7121895"],["-105.3553383","39.7122702"],["-105.3557669","39.712341"],["-105.3561423","39.7123887"],["-105.3565061","39.7124214"],["-105.357145","39.7124574"],["-105.3582579","39.7124825"],["-105.3644145","39.712579"],["-105.3647691","39.7126036"],["-105.365155","39.7126443"],["-105.3655156","39.7127026"],["-105.3658522","39.7127855"],["-105.3662462","39.7129169"],["-105.3667735","39.7131197"],["-105.3671071","39.7132792"],["-105.3673603","39.7134169"],["-105.3676217","39.7135721"],["-105.3680663","39.7138663"],["-105.3692042","39.714644"],["-105.369509","39.7148405"],["-105.3697604","39.7149796"],["-105.3703046","39.7152514"],["-105.3705865","39.7153717"],["-105.3708525","39.7154731"],["-105.3711058","39.7155574"],["-105.3714439","39.7156492"],["-105.3718133","39.715732"],["-105.3721214","39.7157855"],["-105.3724462","39.7158279"],["-105.3734717","39.7158968"],["-105.3738508","39.7158764"],["-105.3741684","39.7158527"],["-105.3745096","39.7158174"],["-105.3747863","39.7157833"],["-105.3750751","39.7157391"],["-105.3753663","39.7156741"],["-105.3757811","39.7155691"],["-105.3771921","39.7151949"],["-105.3781275","39.7149681"],["-105.3784748","39.7149089"],["-105.3788223","39.7148714"],["-105.379202","39.714842"],["-105.3795287","39.714837"],["-105.3804409","39.7149085"],["-105.3808478","39.7149836"],["-105.3812903","39.7150757"],["-105.3817232","39.715187"],["-105.3833894","39.7156371"],["-105.383993","39.7157724"],["-105.3844578","39.7158435"],["-105.3850353","39.7159112"],["-105.385894","39.7159692"],["-105.386364","39.7159838"],["-105.3868392","39.715971"],["-105.3878411","39.7159155"],["-105.3916737","39.7155595"],["-105.392085","39.7155374"],["-105.3928376","39.7155235"],["-105.3931972","39.7155323"],["-105.3936977","39.7155721"],["-105.3940647","39.7156152"],["-105.3944126","39.715662"],["-105.394745","39.7157239"],["-105.3950852","39.7157976"],["-105.3954633","39.7158891"],["-105.3958007","39.7159847"],["-105.3961587","39.7160997"],["-105.3964286","39.7161912"],["-105.3967267","39.7163027"],["-105.397008","39.7164233"],["-105.3975861","39.7167069"],["-105.3979531","39.7169087"],["-105.3983474","39.717151"],["-105.4008056","39.7187904"],["-105.4010986","39.7189659"],["-105.4013932","39.7191225"],["-105.4016885","39.7192641"],["-105.4019764","39.7193935"],["-105.4023349","39.7195278"],["-105.4027126","39.7196454"],["-105.403035","39.7197389"],["-105.4117593","39.7218822"],["-105.4121817","39.7220144"],["-105.4134175","39.7224331"],["-105.4140097","39.7226563"],["-105.4162356","39.7235678"],["-105.4169329","39.7238921"],["-105.420711","39.7259444"],["-105.4210684","39.7261502"],["-105.4212963","39.7262973"],["-105.421731","39.7266187"],["-105.4219554","39.7268097"],["-105.4221893","39.7270323"],["-105.4224223","39.7272782"],["-105.4229601","39.7278925"],["-105.4232005","39.7281611"],["-105.4234058","39.7283747"],["-105.4235859","39.7285407"],["-105.4237682","39.7286857"],["-105.4239907","39.7288475"],["-105.4246837","39.7293112"],["-105.4249556","39.729513"],["-105.4251672","39.7296682"],["-105.4253972","39.7298433"],["-105.4255749","39.7300169"],["-105.4257599","39.7302072"],["-105.4259317","39.7303936"],["-105.4260983","39.7305942"],["-105.4262464","39.7307859"],["-105.4263982","39.7310102"],["-105.426539","39.7312659"],["-105.4266972","39.7315915"],["-105.4268646","39.7319624"],["-105.4270209","39.732295"],["-105.4271686","39.7325914"],["-105.427514","39.733234"],["-105.4276975","39.7335575"],["-105.4278691","39.733806"],["-105.4280095","39.7339999"],["-105.4283046","39.7343592"],["-105.4288638","39.7350361"],["-105.4312481","39.738004"],["-105.4313815","39.7381844"],["-105.4314743","39.7383391"],["-105.4315683","39.7385132"],["-105.4317095","39.7388296"],["-105.4320252","39.7394755"],["-105.4324855","39.7403789"],["-105.4327648","39.7409344"],["-105.4328505","39.7411393"],["-105.4329039","39.7413069"],["-105.4329507","39.7414939"],["-105.4329668","39.7416897"],["-105.4329828","39.7423816"],["-105.4330049","39.7426038"],["-105.433043","39.7428234"],["-105.4330954","39.7430332"],["-105.4331487","39.7431728"],["-105.433223","39.7433103"],["-105.4332984","39.7434318"],["-105.4333594","39.7435095"],["-105.433431","39.7435935"],["-105.4335123","39.7436807"],["-105.4336032","39.7437649"],["-105.4337184","39.7438604"],["-105.4338224","39.7439349"],["-105.4339459","39.7440174"],["-105.4340629","39.7440908"],["-105.4341892","39.7441589"],["-105.4371688","39.7455271"],["-105.4374309","39.7456217"],["-105.4376028","39.7456773"],["-105.4377482","39.7457202"],["-105.4378905","39.7457585"],["-105.4379854","39.7457812"],["-105.4380845","39.7458012"],["-105.4381609","39.7458141"],["-105.4382789","39.7458324"],["-105.4383929","39.7458439"],["-105.4385141","39.7458538"],["-105.4386476","39.7458601"],["-105.4387591","39.7458627"],["-105.4388794","39.74586"],["-105.4389761","39.7458553"],["-105.4390872","39.7458474"],["-105.4391706","39.7458391"],["-105.4392909","39.7458219"],["-105.4394764","39.7457853"],["-105.4396413","39.74574"],["-105.4397811","39.7456977"],["-105.4399253","39.7456474"],["-105.4401168","39.7455692"],["-105.4402804","39.7454911"],["-105.4404415","39.7454084"],["-105.4421143","39.7444467"],["-105.4427235","39.7440999"],["-105.4428944","39.7440114"],["-105.4430236","39.7439591"],["-105.4431831","39.7439041"],["-105.443341","39.7438596"],["-105.4434988","39.7438229"],["-105.4436455","39.7437956"],["-105.4437708","39.7437782"],["-105.4439095","39.7437629"],["-105.4440327","39.7437552"],["-105.4441697","39.7437524"],["-105.4443128","39.7437582"],["-105.4444515","39.7437702"],["-105.4445828","39.7437899"],["-105.4447377","39.743821"],["-105.4449124","39.7438628"],["-105.4451472","39.7439351"],["-105.4453457","39.7439993"],["-105.4461078","39.7442724"],["-105.4465608","39.7444316"],["-105.4467169","39.7444788"],["-105.446884","39.7445236"],["-105.4470426","39.7445621"],["-105.4471881","39.7445913"],["-105.4473426","39.7446155"],["-105.4474871","39.7446287"],["-105.4476362","39.744637"],["-105.4477741","39.7446394"],["-105.4479518","39.7446296"],["-105.448123","39.7446142"],["-105.4483006","39.744591"],["-105.4484798","39.744555"],["-105.448673","39.7445036"],["-105.448877","39.7444396"],["-105.4492316","39.7443114"],["-105.450885","39.743696"],["-105.4511898","39.7435886"],["-105.4515021","39.7434997"],["-105.4516686","39.743458"],["-105.4518691","39.7434192"],["-105.4520446","39.7433884"],["-105.452214","39.7433636"],["-105.4523905","39.7433434"],["-105.4525579","39.7433315"],["-105.4527213","39.7433264"],["-105.4528845","39.7433233"],["-105.4530635","39.74333"],["-105.4532555","39.7433433"],["-105.4534451","39.7433633"],["-105.4536081","39.7433881"],["-105.453784","39.7434214"],["-105.4539701","39.7434615"],["-105.4541864","39.7435177"],["-105.4543777","39.7435732"],["-105.4545785","39.7436474"],["-105.4548041","39.7437407"],["-105.4550612","39.7438578"],["-105.4553845","39.7440218"],["-105.4581048","39.7455017"],["-105.4584206","39.7456666"],["-105.458735","39.7458233"],["-105.4590669","39.7459703"],["-105.4595446","39.746151"],["-105.4597542","39.746218"],["-105.4599815","39.7462852"],["-105.4602805","39.746364"],["-105.4605951","39.7464371"],["-105.4609515","39.7465031"],["-105.4613791","39.7465706"],["-105.4630166","39.7467963"],["-105.4635494","39.7468638"],["-105.4637172","39.7468797"],["-105.4638772","39.7468898"],["-105.4640341","39.7468945"],["-105.4641761","39.7468907"],["-105.4643232","39.7468783"],["-105.4644631","39.7468598"],["-105.4646134","39.746835"],["-105.4647562","39.7468043"],["-105.4648902","39.7467711"],["-105.4650305","39.7467296"],["-105.465175","39.7466829"],["-105.4653307","39.7466233"],["-105.4654888","39.7465543"],["-105.4657645","39.7464006"],["-105.4658849","39.7463238"],["-105.4660136","39.7462293"],["-105.4665632","39.7457657"],["-105.4667786","39.7456034"],["-105.4669586","39.7454808"],["-105.4670957","39.7454022"],["-105.4672346","39.7453352"],["-105.4673721","39.7452824"],["-105.4675346","39.7452253"],["-105.4676985","39.7451812"],["-105.4678766","39.7451398"],["-105.46804","39.7451121"],["-105.468214","39.7450983"],["-105.4683996","39.7450896"],["-105.4686009","39.7450876"],["-105.4687612","39.7451008"],["-105.4689557","39.7451228"],["-105.4693561","39.7451919"],["-105.4697125","39.7452528"],["-105.4703566","39.7453596"],["-105.4705918","39.745385"],["-105.4708886","39.7453972"],["-105.4713596","39.7453792"],["-105.4716822","39.7453503"],["-105.4816311","39.7439029"],["-105.4819222","39.7438768"],["-105.4821739","39.7438654"],["-105.4824315","39.7438595"],["-105.4826967","39.7438668"],["-105.4829922","39.7438838"],["-105.4832973","39.7439198"],["-105.4835695","39.743964"],["-105.4838379","39.7440181"],["-105.4840899","39.7440806"],["-105.4862903","39.7446767"],["-105.4864774","39.7447145"],["-105.486668","39.7447431"],["-105.4868603","39.7447655"],["-105.4870922","39.7447822"],["-105.487312","39.7447902"],["-105.4875457","39.7447945"],["-105.4877921","39.7447871"],["-105.4880107","39.7447689"],["-105.4882345","39.74474"],["-105.4884628","39.7446991"],["-105.4886945","39.7446475"],["-105.4888887","39.7445983"],["-105.4890901","39.7445327"],["-105.4894663","39.74439"],["-105.4896641","39.7443086"],["-105.4955828","39.7414945"],["-105.4958881","39.7413516"],["-105.4961905","39.74122"],["-105.4965492","39.741078"],["-105.4969737","39.7409279"],["-105.4975503","39.7407417"],["-105.4979867","39.7406355"],["-105.4991143","39.7404166"],["-105.4994498","39.7403701"],["-105.4998194","39.7403294"],["-105.5002131","39.7403017"],["-105.5006566","39.7402816"],["-105.5010393","39.7402736"],["-105.5055598","39.740423"],["-105.5058519","39.7404438"],["-105.5061104","39.7404671"],["-105.5063458","39.7404974"],["-105.5066174","39.740542"],["-105.5069164","39.7406083"],["-105.5072419","39.7406986"],["-105.5088511","39.741199"],["-105.509122","39.7412767"],["-105.5093441","39.7413292"],["-105.5095817","39.7413735"],["-105.5098287","39.7414141"],["-105.5100668","39.7414434"],["-105.5103147","39.7414663"],["-105.5105334","39.7414783"],["-105.5107547","39.7414847"],["-105.5129919","39.7414571"],["-105.5135864","39.7414382"],["-105.5137702","39.7414259"],["-105.5139421","39.7414105"],["-105.5141854","39.7413773"],["-105.514644","39.7412949"],["-105.5153816","39.7411346"],["-105.5157995","39.7410458"],["-105.5160129","39.7410117"],["-105.5162433","39.7409846"],["-105.5169722","39.7409268"],["-105.5181402","39.7408576"],["-105.518417","39.7408499"],["-105.5186677","39.7408461"],["-105.5189991","39.7408496"],["-105.5193038","39.7408601"],["-105.5196512","39.7408788"],["-105.5199867","39.7409084"],["-105.5203038","39.7409437"],["-105.5206511","39.7409934"],["-105.5209084","39.7410346"],["-105.5211883","39.7410869"],["-105.5214825","39.7411495"],["-105.5217831","39.7412202"],["-105.5220936","39.7412991"],["-105.5224979","39.7414181"],["-105.5257524","39.7424157"],["-105.5269337","39.7427526"],["-105.5272137","39.7428179"],["-105.5276296","39.742898"],["-105.5281747","39.7429813"],["-105.531457","39.7434427"],["-105.5317491","39.7434996"],["-105.532048","39.7435641"],["-105.5322882","39.7436234"],["-105.5325126","39.7436845"],["-105.5339191","39.7440991"],["-105.5344341","39.7442348"],["-105.5363374","39.744653"],["-105.5368219","39.7447663"],["-105.5371883","39.7448619"],["-105.5376259","39.7449867"],["-105.5381304","39.74515"],["-105.5386148","39.745336"],["-105.5401948","39.7459713"],["-105.5405633","39.7460981"],["-105.5419522","39.7465071"],["-105.5426172","39.7466751"],["-105.5434907","39.7469102"],["-105.5438575","39.7470276"],["-105.5441967","39.7471434"],["-105.5445304","39.7472663"],["-105.5451519","39.7475194"],["-105.5454183","39.7476359"],["-105.5461398","39.747992"],["-105.5469152","39.7484226"],["-105.5471959","39.7485999"],["-105.5474944","39.7488034"],["-105.5479358","39.7491214"],["-105.548235","39.7493584"],["-105.5494707","39.7503848"],["-105.5497109","39.7505829"],["-105.5499582","39.7507676"],["-105.5501453","39.7508893"],["-105.5502935","39.7509805"],["-105.5504416","39.7510657"],["-105.5505591","39.7511289"],["-105.5506719","39.7511811"],["-105.5509618","39.7513038"],["-105.5511879","39.7513871"],["-105.5515522","39.7515058"],["-105.5520703","39.7516637"],["-105.5524805","39.7517919"],["-105.5527072","39.751874"],["-105.5529168","39.7519566"],["-105.5530914","39.752038"],["-105.5532347","39.7521169"],["-105.5536088","39.7523538"],["-105.5537393","39.7524501"],["-105.5538717","39.7525531"],["-105.5540398","39.7527045"],["-105.5546156","39.7532819"],["-105.5556332","39.7543201"],["-105.5558815","39.754552"],["-105.5560835","39.7547263"],["-105.5562489","39.7548483"],["-105.556478","39.7549951"],["-105.5566474","39.7550934"],["-105.5569084","39.7552225"],["-105.5571193","39.7553134"],["-105.5573617","39.7554043"],["-105.5575687","39.755472"],["-105.5577576","39.7555231"],["-105.5579481","39.7555637"],["-105.558135","39.7555985"],["-105.5583206","39.7556282"],["-105.55849","39.7556493"],["-105.5586734","39.7556655"],["-105.559009","39.7556803"],["-105.5591647","39.7556817"],["-105.5593001","39.7556778"],["-105.5594549","39.7556712"],["-105.5606365","39.7555759"],["-105.5608335","39.7555658"],["-105.5610172","39.7555583"],["-105.5611431","39.7555594"],["-105.5612796","39.7555631"],["-105.5614251","39.7555705"],["-105.5615497","39.7555799"],["-105.561687","39.7555926"],["-105.5618303","39.75561"],["-105.5619982","39.7556372"],["-105.5621998","39.7556798"],["-105.5624334","39.7557384"],["-105.5626599","39.7558047"],["-105.5628511","39.7558716"],["-105.5630789","39.7559613"],["-105.5705099","39.759209"],["-105.5712242","39.7595568"],["-105.5761475","39.7621725"],["-105.5766254","39.7623907"],["-105.577105","39.7625895"],["-105.5773814","39.762695"],["-105.5776663","39.7627929"],["-105.5780477","39.7629143"],["-105.5784114","39.763022"],["-105.5787908","39.7631217"],["-105.5792015","39.7632163"],["-105.5796641","39.7633091"],["-105.580131","39.7633867"],["-105.5814806","39.7635392"],["-105.5901088","39.7643981"],["-105.590597","39.7644254"],["-105.5911807","39.76444"],["-105.5913558","39.7644378"],["-105.5975516","39.7641287"],["-105.5984907","39.7641105"],["-105.5987719","39.7641184"],["-105.5990108","39.7641292"],["-105.5994365","39.764162"],["-105.5996914","39.7641886"],["-105.6059665","39.7651374"],["-105.6125716","39.7654788"],["-105.6130438","39.7655146"],["-105.6138964","39.7656014"],["-105.6177107","39.7661906"],["-105.6211026","39.7665789"],["-105.6215066","39.7665922"],["-105.6226614","39.7666103"],["-105.6232259","39.7665964"],["-105.6238058","39.7665724"],["-105.6246028","39.7665072"],["-105.6278956","39.7661537"],["-105.6280581","39.7661297"],["-105.6284467","39.7660604"],["-105.6292699","39.7658755"],["-105.629852","39.7657141"],["-105.6301342","39.7656209"],["-105.6303707","39.7655357"],["-105.6306029","39.7654455"],["-105.6312593","39.7651775"],["-105.631606","39.7650353"],["-105.6322143","39.7647924"],["-105.6324845","39.7646965"],["-105.6327756","39.7645997"],["-105.6330578","39.7645136"],["-105.6333184","39.7644412"],["-105.6335266","39.7643883"],["-105.6340347","39.7642775"],["-105.6458777","39.762091"],["-105.647093","39.7617931"],["-105.6523212","39.760414"],["-105.6528548","39.7602251"],["-105.653141","39.760111"],["-105.6534224","39.75999"],["-105.6536817","39.7598708"],["-105.6541684","39.7596256"],["-105.6544005","39.759498"],["-105.6546202","39.7593682"],["-105.6548413","39.7592303"],["-105.655178","39.7590032"],["-105.655417","39.7588294"],["-105.6556714","39.7586305"],["-105.6559277","39.7584222"],["-105.6562176","39.7581614"],["-105.6563134","39.7580717"],["-105.6566164","39.7577716"],["-105.656921","39.7574353"],["-105.6575444","39.756694"],["-105.6597599","39.754035"],["-105.6600597","39.7536957"],["-105.660298","39.7534403"],["-105.6605398","39.7532124"],["-105.6608943","39.7529173"],["-105.6615653","39.7524345"],["-105.661823","39.7522785"],["-105.6620646","39.7521419"],["-105.662673","39.7518589"],["-105.6632741","39.7516106"],["-105.6780989","39.7457011"],["-105.6784416","39.7455541"],["-105.6792124","39.7452018"],["-105.6799328","39.7448374"],["-105.6822915","39.7435801"],["-105.6825898","39.7433984"],["-105.683157","39.7430151"],["-105.6833615","39.7428521"],["-105.6835717","39.7426686"],["-105.6837786","39.7424817"],["-105.6839738","39.7422729"],["-105.6841475","39.7420707"],["-105.6842831","39.7418985"],["-105.6844039","39.7417322"],["-105.6845158","39.741562"],["-105.6846492","39.741349"],["-105.6848266","39.7410343"],["-105.6861747","39.7385523"],["-105.686604","39.7378312"],["-105.6867742","39.7375861"],["-105.6869065","39.7374101"],["-105.6870625","39.7372213"],["-105.6873474","39.736904"],["-105.6907791","39.7334115"],["-105.6911507","39.7330196"],["-105.691451","39.7326765"],["-105.6916662","39.7324033"],["-105.6919479","39.7320007"],["-105.6920658","39.731811"],["-105.6922719","39.7314479"],["-105.6923391","39.7313195"],["-105.6924246","39.7311474"],["-105.6924862","39.7310105"],["-105.6926266","39.7306685"],["-105.6952508","39.7237159"],["-105.6954511","39.7231483"],["-105.6955259","39.722893"],["-105.6955824","39.7226756"],["-105.6956333","39.7224654"],["-105.6956929","39.7221825"],["-105.6957496","39.7218834"],["-105.6958184","39.7214837"],["-105.6972001","39.7119349"],["-105.6972971","39.7112262"],["-105.697349","39.7109601"],["-105.6974041","39.7107052"],["-105.6974734","39.7104516"],["-105.6975502","39.7102192"],["-105.6976215","39.7100293"],["-105.6977007","39.7098464"],["-105.6978082","39.7096496"],["-105.6979214","39.7094645"],["-105.698037","39.7092961"],["-105.6981573","39.7091366"],["-105.6983035","39.7089542"],["-105.6984759","39.7087615"],["-105.6986196","39.7086127"],["-105.6987557","39.7084805"],["-105.6991627","39.7081219"],["-105.7029449","39.7050822"],["-105.7040862","39.7042153"],["-105.7048467","39.7036773"],["-105.7056496","39.7031641"],["-105.7063855","39.7026687"],["-105.707077","39.7021219"],["-105.707637","39.7016789"],["-105.7083533","39.7011175"],["-105.7085504","39.7009734"],["-105.7087508","39.7008419"],["-105.7089472","39.7007178"],["-105.7092231","39.700559"],["-105.7093898","39.7004708"],["-105.7096388","39.7003509"],["-105.710001","39.7001934"],["-105.710221","39.70011"],["-105.7105838","39.6999871"],["-105.7111419","39.6998165"],["-105.7144688","39.6988828"],["-105.7149289","39.6987791"],["-105.7180514","39.6982615"],["-105.7189141","39.6981303"],["-105.7191615","39.6980773"],["-105.719429","39.6980125"],["-105.7199307","39.6978727"],["-105.7201731","39.69779"],["-105.720399","39.6977082"],["-105.7206498","39.6976072"],["-105.7209669","39.6974613"],["-105.7212893","39.6973011"],["-105.722954","39.6964025"],["-105.7235172","39.696096"],["-105.7253829","39.6950801"],["-105.7259382","39.694812"],["-105.7262998","39.6946734"],["-105.726637","39.6945626"],["-105.7269795","39.6944705"],["-105.7272764","39.6944039"],["-105.7274846","39.6943667"],["-105.7276679","39.6943406"],["-105.7279107","39.6943139"],["-105.7282527","39.6942892"],["-105.7285867","39.6942748"],["-105.7289496","39.694267"],["-105.729324","39.6942842"],["-105.7297967","39.6943349"],["-105.7312557","39.6945434"],["-105.7329396","39.6947979"],["-105.7339259","39.6949466"],["-105.7396597","39.6958208"],["-105.7456881","39.6967309"],["-105.7462414","39.6967978"],["-105.7466354","39.696822"],["-105.7471306","39.6968426"],["-105.7475631","39.6968534"],["-105.7479926","39.6968428"],["-105.7560245","39.6965654"],["-105.7569464","39.6964759"],["-105.7601507","39.6960238"],["-105.7606973","39.6959535"],["-105.7610159","39.695928"],["-105.7613428","39.695913"],["-105.7616126","39.6959086"],["-105.7619967","39.6959229"],["-105.7623891","39.6959536"],["-105.7628169","39.6960048"],["-105.7634456","39.696109"],["-105.7647984","39.6963423"],["-105.7650837","39.6963783"],["-105.7655328","39.6964081"],["-105.7657912","39.6964185"],["-105.7661873","39.6964111"],["-105.7667445","39.6963725"],["-105.7673061","39.6962948"],["-105.7678171","39.6961994"],["-105.7691755","39.6958768"],["-105.7707471","39.6954878"],["-105.7716279","39.6952879"],["-105.7719635","39.6952313"],["-105.7723116","39.695185"],["-105.7727255","39.6951433"],["-105.7753308","39.6950333"],["-105.7852803","39.6944617"],["-105.7857213","39.6944319"],["-105.7862464","39.6944268"],["-105.7867994","39.6944641"],["-105.7873073","39.694532"],["-105.787822","39.6946397"],["-105.7883413","39.6947865"],["-105.7888869","39.6949819"],["-105.7900202","39.6954075"],["-105.7904364","39.6955428"],["-105.7909981","39.695682"],["-105.791479","39.6957776"],["-105.7918986","39.6958377"],["-105.7923221","39.6958775"],["-105.7927869","39.6958998"],["-105.7931622","39.6958966"],["-105.7935859","39.6958737"],["-105.793996","39.6958318"],["-105.7943966","39.6957729"],["-105.7948064","39.695692"],["-105.7952399","39.6955863"],["-105.796714","39.6951196"],["-105.8003018","39.6939552"],["-105.8013443","39.6936162"],["-105.8019866","39.6934191"],["-105.8031924","39.6931354"],["-105.8079189","39.6920961"],["-105.8086284","39.6919732"],["-105.8091946","39.6919008"],["-105.8097566","39.6918662"],["-105.8102958","39.691884"],["-105.8108155","39.6919328"],["-105.8112837","39.6920019"],["-105.8137729","39.6924331"],["-105.8208504","39.6934615"],["-105.8223865","39.6936943"],["-105.8233001","39.6939254"],["-105.8240079","39.6941802"],["-105.824912","39.6945876"],["-105.831909","39.6980487"],["-105.8334164","39.6987752"],["-105.8340759","39.6990491"],["-105.8346997","39.6992911"],["-105.83531","39.6995073"],["-105.8411652","39.701419"],["-105.8424293","39.7017953"],["-105.8431424","39.7019576"],["-105.8436412","39.7020567"],["-105.844051","39.702105"],["-105.8444769","39.7021272"],["-105.8451432","39.7021307"],["-105.846232","39.7021065"],["-105.8607163","39.7016873"],["-105.861718","39.7016484"],["-105.8624639","39.7015692"],["-105.8631166","39.7014669"],["-105.8637963","39.7013074"],["-105.8641926","39.7011808"],["-105.8645523","39.7010471"],["-105.8655235","39.7005807"],["-105.8733346","39.6963235"],["-105.8738626","39.6960341"],["-105.8747464","39.6954891"],["-105.8753553","39.6950545"],["-105.8759683","39.694595"],["-105.8767089","39.6940007"],["-105.8770051","39.6937338"],["-105.8779426","39.6929142"],["-105.8806815","39.6904042"],["-105.8814272","39.689708"],["-105.8834099","39.6876704"],["-105.8862489","39.6846986"],["-105.8870692","39.6838545"],["-105.8874197","39.6835191"],["-105.8876874","39.6832895"],["-105.8879833","39.6830658"],["-105.8885179","39.6827124"],["-105.8892275","39.682369"],["-105.88953","39.6822497"],["-105.8898009","39.6821514"],["-105.890401","39.6819794"],["-105.8910726","39.681844"],["-105.8914836","39.6817853"],["-105.891889","39.6817513"],["-105.8923077","39.6817303"],["-105.8931405","39.6817243"],["-105.8960992","39.6817522"],["-105.8964859","39.6817414"],["-105.8970304","39.6817005"],["-105.897275","39.6816719"],["-105.8975915","39.6816082"],["-105.8979463","39.6815268"],["-105.8983113","39.6814274"],["-105.8988828","39.6811893"],["-105.9000779","39.6805937"],["-105.901981","39.6796416"],["-105.9026181","39.6794111"],["-105.9030402","39.6792952"],["-105.9034068","39.6792168"],["-105.9034704","39.6792057"],["-105.9042656","39.679079"],["-105.9050611","39.6790044"],["-105.906498","39.6789963"],["-105.9140446","39.6791653"],["-105.9213002","39.6792997"],["-105.9310084","39.6791243"],["-105.9345622","39.6790404"],["-105.9351654","39.6789832"],["-105.9360318","39.6788324"],["-105.9362066","39.6787983"],["-105.936416","39.6787473"],["-105.9368392","39.6786056"],["-105.9379243","39.6781893"],["-105.939688","39.677483"],["-105.9404061","39.6772238"],["-105.9408399","39.6770933"],["-105.9413517","39.6769652"],["-105.9417979","39.6768705"],["-105.9427567","39.6767606"],["-105.9433021","39.6767364"],["-105.9439215","39.6767288"],["-105.9444093","39.6767665"],["-105.9465571","39.6770148"],["-105.9472962","39.6770725"],["-105.9481","39.6771105"],["-105.9503273","39.6771334"],["-105.9528993","39.6771094"],["-105.953544","39.6770768"],["-105.9539757","39.6770202"],["-105.9545122","39.6769055"],["-105.9550293","39.6767633"],["-105.9556573","39.6765111"],["-105.9594366","39.674676"],["-105.9599216","39.6744919"],["-105.9605075","39.6743088"],["-105.9610524","39.6741972"],["-105.9615837","39.6741387"],["-105.9679731","39.6738432"],["-105.9685675","39.6738037"],["-105.9690179","39.6737494"],["-105.9694969","39.6736594"],["-105.9700687","39.6735179"],["-105.9706064","39.6733127"],["-105.9710438","39.6731023"],["-105.9715386","39.6727891"],["-105.9719566","39.6724671"],["-105.9726757","39.6718788"],["-105.9743896","39.6704556"],["-105.9749729","39.6699293"],["-105.9753443","39.6695366"],["-105.9755833","39.6692449"],["-105.9758273","39.6689046"],["-105.9760466","39.668544"],["-105.9766146","39.6674504"],["-105.9768878","39.666971"],["-105.9771753","39.6665741"],["-105.9775074","39.6662165"],["-105.9778292","39.6658896"],["-105.9783978","39.6653794"],["-105.9794333","39.6645026"],["-105.9802918","39.6637986"],["-105.9816278","39.6628035"],["-105.9820574","39.6625673"],["-105.9825582","39.6623205"],["-105.9832703","39.662053"],["-105.9860717","39.6610883"],["-105.986777","39.6608159"],["-105.9876526","39.660414"],["-105.9882775","39.6600891"],["-105.9889498","39.6596983"],["-105.9910446","39.6583581"],["-105.9915801","39.6580395"],["-105.992075","39.6578089"],["-105.9927659","39.6575405"],["-105.9944676","39.6570439"],["-105.9950659","39.6568579"],["-105.9956202","39.656656"],["-105.9968588","39.6560629"],["-105.9974132","39.6557554"],["-105.9980777","39.6553949"],["-105.9986947","39.6550874"],["-105.9993328","39.6548084"],["-106.0000278","39.6545338"],["-106.0008176","39.6542755"],["-106.001633","39.6540517"],["-106.0028376","39.6537766"],["-106.0038231","39.6535768"],["-106.0046196","39.6534739"],["-106.0058091","39.6534107"],["-106.0090586","39.6533317"],["-106.0096553","39.653283"],["-106.0107575","39.6530867"],["-106.0135851","39.6525289"],["-106.0145274","39.6523226"],["-106.0150561","39.6521418"],["-106.0156125","39.6519003"],["-106.0162376","39.6515395"],["-106.0176875","39.650602"],["-106.018298","39.6502893"],["-106.0188117","39.650087"],["-106.0194822","39.6498969"],["-106.0212335","39.6494608"],["-106.021694","39.6493105"],["-106.0220516","39.6491684"],["-106.0225807","39.6488948"],["-106.0233069","39.648436"],["-106.0268207","39.6461459"],["-106.0272921","39.6458752"],["-106.0277086","39.6456799"],["-106.0281467","39.6455255"],["-106.0285086","39.6454214"],["-106.02894","39.6453298"],["-106.0298891","39.6452258"],["-106.0335124","39.6449025"],["-106.0341384","39.6448169"],["-106.035051","39.6446206"],["-106.0355354","39.6444643"],["-106.0360908","39.6442435"],["-106.0371387","39.6437641"],["-106.0454407","39.639849"],["-106.0465001","39.6393109"],["-106.0474182","39.6387812"],["-106.0480221","39.6383941"],["-106.0485494","39.6380223"],["-106.0492043","39.6375238"],["-106.0522464","39.6350256"],["-106.0526629","39.6347518"],["-106.0530192","39.6345418"],["-106.0536495","39.6342458"],["-106.0645809","39.6298404"],["-106.066813","39.6289372"],["-106.0680654","39.6284113"],["-106.0691554","39.6279033"],["-106.0696943","39.6275992"],["-106.0705727","39.6270402"],["-106.071037","39.6266645"],["-106.0713617","39.626366"],["-106.0717604","39.6259451"],["-106.0721916","39.6254072"],["-106.0726925","39.6246617"],["-106.0729941","39.624057"],["-106.0732456","39.6234566"],["-106.0733963","39.6229465"],["-106.0734986","39.622451"],["-106.0735719","39.6219161"],["-106.0735839","39.6215167"],["-106.0735727","39.6210832"],["-106.0735064","39.6203733"],["-106.0731145","39.6182887"],["-106.0729701","39.6174655"],["-106.0729407","39.6170525"],["-106.0729298","39.6166561"],["-106.0729697","39.6161922"],["-106.0730291","39.615787"],["-106.0731241","39.6153988"],["-106.0732589","39.6150234"],["-106.0734165","39.6146566"],["-106.0736167","39.6142835"],["-106.073843","39.6139201"],["-106.0741325","39.6135133"],["-106.0744275","39.6131661"],["-106.0747524","39.6128295"],["-106.0751377","39.6125014"],["-106.0755342","39.6121932"],["-106.0759113","39.6119491"],["-106.0763822","39.611659"],["-106.0774718","39.6110545"],["-106.0785554","39.6104257"],["-106.0790534","39.610111"],["-106.0794109","39.6098544"],["-106.0797357","39.6095772"],["-106.0800151","39.6092988"],["-106.0802957","39.6089902"],["-106.0805539","39.6086706"],["-106.0808183","39.608312"],["-106.0811839","39.6078"],["-106.082446","39.6060733"],["-106.0829319","39.6054723"],["-106.0833427","39.6050195"],["-106.0837865","39.6046115"],["-106.0842727","39.6042098"],["-106.0847945","39.6038324"],["-106.0883626","39.6015359"],["-106.0889204","39.6011563"],["-106.0892332","39.6008957"],["-106.0896082","39.600555"],["-106.0900002","39.6001746"],["-106.0904441","39.5996871"],["-106.0915078","39.5984703"],["-106.0920676","39.5978178"],["-106.0927818","39.5969987"],["-106.0936317","39.595995"],["-106.0941753","39.5953581"],["-106.0947035","39.594774"],["-106.0951535","39.5943199"],["-106.0962872","39.593169"],["-106.097344","39.5923434"],["-106.0978576","39.5919728"],["-106.0983586","39.591642"],["-106.0988884","39.5913119"],["-106.1065954","39.5870485"],["-106.1071724","39.5867015"],["-106.1076376","39.5863781"],["-106.1080636","39.58603"],["-106.1085519","39.5856005"],["-106.1089298","39.5851637"],["-106.1092554","39.5847093"],["-106.1095629","39.5842197"],["-106.1098276","39.5836903"],["-106.1110243","39.5808635"],["-106.1115021","39.5796884"],["-106.1119116","39.5785448"],["-106.1132366","39.5743131"],["-106.113466","39.5737362"],["-106.1136692","39.5733309"],["-106.1138922","39.5729429"],["-106.1141506","39.5725447"],["-106.1147935","39.571725"],["-106.1154831","39.5710615"],["-106.1161978","39.5704705"],["-106.1170996","39.5699037"],["-106.1182525","39.5692872"],["-106.1192167","39.5687867"],["-106.1198232","39.5685271"],["-106.1208019","39.5681996"],["-106.1218667","39.5678494"],["-106.1229977","39.5674715"],["-106.124118","39.5670046"],["-106.125035","39.5665758"],["-106.1257744","39.566159"],["-106.1264617","39.5657343"],["-106.1271416","39.5652669"],["-106.1280375","39.5645734"],["-106.1285126","39.5641528"],["-106.1290086","39.5636891"],["-106.1293581","39.563285"],["-106.1296534","39.5628731"],["-106.129791","39.5626303"],["-106.1299235","39.5622997"],["-106.1300748","39.5618721"],["-106.1301523","39.5614667"],["-106.130178","39.561142"],["-106.1301733","39.5606075"],["-106.1300867","39.5596848"],["-106.130119","39.5588421"],["-106.1301689","39.5583081"],["-106.1302863","39.5579479"],["-106.1305233","39.5574586"],["-106.1309153","39.5568264"],["-106.1317598","39.5556603"],["-106.1322669","39.5550443"],["-106.1327037","39.5546225"],["-106.1332164","39.5542294"],["-106.1342611","39.5535174"],["-106.1349247","39.5530365"],["-106.1352595","39.552732"],["-106.1357072","39.5522666"],["-106.1361083","39.5517117"],["-106.1366788","39.5508076"],["-106.1376638","39.5491441"],["-106.1384865","39.5477422"],["-106.1389396","39.5469296"],["-106.1391532","39.5464309"],["-106.1392602","39.5459966"],["-106.1393157","39.5456591"],["-106.1393469","39.5452064"],["-106.1393454","39.5442641"],["-106.1393781","39.5439199"],["-106.1394668","39.5435756"],["-106.139578","39.5432057"],["-106.1397038","39.5428985"],["-106.139963","39.5423904"],["-106.1404063","39.5417683"],["-106.1409401","39.5411938"],["-106.1414192","39.5407039"],["-106.1419781","39.5400618"],["-106.1423179","39.5396311"],["-106.1425435","39.5393124"],["-106.1427284","39.5389711"],["-106.1429034","39.5386137"],["-106.1430404","39.5382057"],["-106.1431409","39.5378115"],["-106.1431693","39.5374768"],["-106.1431875","39.5371984"],["-106.1431833","39.5369973"],["-106.1431654","39.5367371"],["-106.1431028","39.5363984"],["-106.1429681","39.5358946"],["-106.1427872","39.5354775"],["-106.1425528","39.5350294"],["-106.142161","39.534482"],["-106.1410768","39.5331156"],["-106.1406681","39.532605"],["-106.1400931","39.5319001"],["-106.1395446","39.5312486"],["-106.1391105","39.5307071"],["-106.1387347","39.5301901"],["-106.1384531","39.5297478"],["-106.1383028","39.5294364"],["-106.1381357","39.5289591"],["-106.1380429","39.5284651"],["-106.1380315","39.5281489"],["-106.1380879","39.5276851"],["-106.1381476","39.5273378"],["-106.1382268","39.5270163"],["-106.1383493","39.526657"],["-106.1385896","39.5262394"],["-106.1388404","39.5258144"],["-106.1390766","39.5254851"],["-106.139431","39.5250816"],["-106.1397982","39.5247579"],["-106.1401484","39.5244955"],["-106.141154","39.523827"],["-106.1416747","39.5234855"],["-106.1436416","39.522216"],["-106.1438786","39.522064"],["-106.1443512","39.5217017"],["-106.1449147","39.5211801"],["-106.1452551","39.5207934"],["-106.1456194","39.5202855"],["-106.1458733","39.5198234"],["-106.146011","39.519501"],["-106.1461447","39.5190815"],["-106.1462443","39.5186275"],["-106.1462925","39.518186"],["-106.1462905","39.5177686"],["-106.1462472","39.5173477"],["-106.1461652","39.5168825"],["-106.1458157","39.5156199"],["-106.1454362","39.5143818"],["-106.1450958","39.5132625"],["-106.144316","39.5107392"],["-106.1439976","39.509678"],["-106.143864","39.5091193"],["-106.1437936","39.5087629"],["-106.1437477","39.5082469"],["-106.1437544","39.5078795"],["-106.1437839","39.5075803"],["-106.1438323","39.5073161"],["-106.1439013","39.5070391"],["-106.1440604","39.5066182"],["-106.1442453","39.5062446"],["-106.1445053","39.5058381"],["-106.1447578","39.5055274"],["-106.1450255","39.5052566"],["-106.1454428","39.5049003"],["-106.145826","39.5046238"],["-106.1462036","39.5044117"],["-106.1470221","39.5040662"],["-106.147326","39.503959"],["-106.147667","39.5038654"],["-106.1480883","39.5037665"],["-106.1485356","39.5036906"],["-106.1490405","39.5036233"],["-106.1495494","39.5035779"],["-106.1506657","39.5035445"],["-106.1563568","39.5034869"],["-106.1574591","39.5034513"],["-106.1580592","39.5033879"],["-106.1587626","39.5032873"],["-106.1594332","39.5031557"],["-106.1600017","39.5030245"],["-106.1604803","39.5028892"],["-106.1613239","39.5026045"],["-106.162735","39.5020984"],["-106.1633029","39.5019262"],["-106.163775","39.5018304"],["-106.1642032","39.5017691"],["-106.1646589","39.5017396"],["-106.1652306","39.501733"],["-106.1660529","39.5017862"],["-106.1671248","39.5018743"],["-106.1679375","39.501975"],["-106.168536","39.5020859"],["-106.1690288","39.5022217"],["-106.1695165","39.5023861"],["-106.1700745","39.5026129"],["-106.1717989","39.5033896"],["-106.172567","39.5037223"],["-106.1732776","39.5039666"],["-106.1736605","39.5040675"],["-106.1739587","39.504125"],["-106.1742345","39.5041632"],["-106.177201","39.5043748"],["-106.1778012","39.50443"],["-106.1782146","39.5045011"],["-106.1786484","39.5046049"],["-106.1792084","39.5047882"],["-106.1797916","39.505031"],["-106.1805351","39.5053737"],["-106.1812314","39.5056779"],["-106.1816414","39.505816"],["-106.182022","39.5059113"],["-106.1829591","39.5060615"],["-106.1885248","39.5068642"],["-106.1891302","39.5069368"],["-106.1899727","39.506989"],["-106.1907432","39.5069789"],["-106.1914926","39.5069361"],["-106.1956377","39.506428"],["-106.1962469","39.5063753"],["-106.196708","39.5063854"],["-106.197158","39.5064208"],["-106.1975495","39.5064819"],["-106.1980283","39.5066057"],["-106.198585","39.5067773"],["-106.1992302","39.5070086"],["-106.199712","39.5071984"],["-106.2000702","39.5073727"],["-106.2005418","39.5076664"],["-106.2008445","39.5079123"],["-106.2010528","39.5081289"],["-106.2012349","39.5083786"],["-106.2015311","39.5088826"],["-106.2019506","39.5095947"],["-106.2025639","39.5106209"],["-106.2053071","39.5148398"],["-106.2056659","39.5153108"],["-106.2061619","39.5157911"],["-106.2064051","39.5159944"],["-106.2067666","39.5162355"],["-106.2071422","39.5164624"],["-106.20753","39.5166741"],["-106.207964","39.5168922"],["-106.2093917","39.5175571"],["-106.2098547","39.5177989"],["-106.2102058","39.5180402"],["-106.2105916","39.5183656"],["-106.210812","39.5185857"],["-106.2113076","39.5192512"],["-106.2122929","39.5206659"],["-106.2142802","39.5236021"],["-106.2150762","39.5248216"],["-106.2155295","39.5255558"],["-106.2157323","39.5259087"],["-106.2158756","39.5262022"],["-106.216017","39.5264759"],["-106.2161093","39.5267252"],["-106.216165","39.5269359"],["-106.2162309","39.5271828"],["-106.2162802","39.5274533"],["-106.2163238","39.5277049"],["-106.2163752","39.5279173"],["-106.2163802","39.5281354"],["-106.2163763","39.5283563"],["-106.2163525","39.5285912"],["-106.2163216","39.5288468"],["-106.2162107","39.5294474"],["-106.2160766","39.5301033"],["-106.2158794","39.5310784"],["-106.2157083","39.5319608"],["-106.2155406","39.5327317"],["-106.215389","39.5333981"],["-106.215262","39.5340021"],["-106.2151739","39.534429"],["-106.2149402","39.5356461"],["-106.214845","39.5361754"],["-106.2147968","39.5365246"],["-106.2147646","39.5368232"],["-106.2147511","39.5373281"],["-106.2147624","39.5375449"],["-106.2147797","39.5377689"],["-106.2148596","39.538223"],["-106.2150003","39.5387701"],["-106.2150956","39.5390854"],["-106.2152048","39.5393514"],["-106.2154619","39.5399037"],["-106.215848","39.5405741"],["-106.2173067","39.5430953"],["-106.2178841","39.5440877"],["-106.2197554","39.547301"],["-106.2198982","39.5475291"],["-106.2200372","39.547729"],["-106.2203137","39.548083"],["-106.2204804","39.5482618"],["-106.2230763","39.5509068"],["-106.223465","39.5512988"],["-106.225621","39.5534349"],["-106.2263122","39.554198"],["-106.2266922","39.5546737"],["-106.2276358","39.5559375"],["-106.2279688","39.5563418"],["-106.2281264","39.5565182"],["-106.228288","39.5566925"],["-106.2284655","39.5568545"],["-106.2286829","39.5570378"],["-106.2291606","39.5573861"],["-106.2293965","39.5575412"],["-106.2296411","39.557691"],["-106.229954","39.5578563"],["-106.2303121","39.5580344"],["-106.23083","39.5582847"],["-106.2316048","39.5586901"],["-106.2319712","39.5589078"],["-106.2322658","39.5591171"],["-106.2323937","39.5592176"],["-106.2325456","39.5593532"],["-106.2326786","39.559498"],["-106.2328158","39.5596608"],["-106.2329309","39.5598047"],["-106.2330373","39.5599679"],["-106.2331953","39.5602743"],["-106.2332836","39.5604523"],["-106.2333567","39.560635"],["-106.2334417","39.5608909"],["-106.233722","39.5618135"],["-106.233789","39.5620132"],["-106.2338716","39.5622266"],["-106.2339604","39.562407"],["-106.2340728","39.5626067"],["-106.2341984","39.5628122"],["-106.234315","39.5629945"],["-106.2344681","39.5632052"],["-106.2346164","39.5633942"],["-106.234782","39.5635899"],["-106.2349614","39.5637781"],["-106.2353278","39.5641179"],["-106.2355606","39.5643181"],["-106.235921","39.5646171"],["-106.236562","39.5651774"],["-106.2372922","39.5657535"],["-106.2376994","39.566088"],["-106.2380256","39.5663953"],["-106.2383422","39.5667139"],["-106.2387562","39.5672842"],["-106.2397565","39.5686986"],["-106.2399975","39.5689995"],["-106.2403457","39.5693595"],["-106.2406898","39.569701"],["-106.2470195","39.5750473"],["-106.247246","39.5752522"],["-106.2474838","39.5754925"],["-106.2477293","39.5757558"],["-106.2480935","39.5761933"],["-106.2482605","39.5764206"],["-106.2484284","39.5766744"],["-106.2485741","39.5769064"],["-106.2487184","39.5771643"],["-106.2489583","39.5776628"],["-106.2490638","39.577928"],["-106.2491541","39.5782148"],["-106.2492273","39.5784692"],["-106.249267","39.5787147"],["-106.24928","39.5789446"],["-106.2492654","39.5791646"],["-106.2492408","39.5793876"],["-106.2492098","39.5795828"],["-106.2491592","39.5797812"],["-106.2491001","39.5799612"],["-106.2490244","39.5801386"],["-106.2489317","39.5803186"],["-106.2488161","39.5805146"],["-106.2486883","39.5806881"],["-106.2484952","39.5809213"],["-106.248017","39.5814675"],["-106.2477688","39.5817402"],["-106.2475403","39.5820007"],["-106.2473181","39.5823097"],["-106.2471751","39.582541"],["-106.2470458","39.582777"],["-106.2469526","39.5829938"],["-106.2468696","39.583231"],["-106.2464253","39.5846681"],["-106.2463006","39.5850243"],["-106.2460016","39.5858207"],["-106.2457431","39.5864543"],["-106.2452168","39.5877059"],["-106.2450139","39.5882234"],["-106.2449149","39.5885411"],["-106.244848","39.5888201"],["-106.2448117","39.5890547"],["-106.244794","39.5892921"],["-106.2448051","39.5895284"],["-106.244833","39.5897646"],["-106.2448863","39.5899861"],["-106.2449417","39.5901966"],["-106.2450185","39.5904154"],["-106.2451232","39.5906324"],["-106.2452154","39.5908048"],["-106.2452907","39.5909379"],["-106.245354","39.5910389"],["-106.2455895","39.5913486"],["-106.2457285","39.5915054"],["-106.2458795","39.5916578"],["-106.2460371","39.5917986"],["-106.2461989","39.5919352"],["-106.2463548","39.5920595"],["-106.2466692","39.5922819"],["-106.2472407","39.5926463"],["-106.2484532","39.5933542"],["-106.2490157","39.5936586"],["-106.2499438","39.594124"],["-106.2504065","39.5943365"],["-106.2507754","39.5944964"],["-106.2511219","39.5946231"],["-106.251427","39.5947234"],["-106.2516988","39.5948005"],["-106.2524885","39.5949626"],["-106.2527309","39.5950034"],["-106.2529713","39.5950393"],["-106.2536111","39.5950803"],["-106.2539569","39.5950923"],["-106.2607965","39.5948669"],["-106.2613316","39.5948607"],["-106.2619499","39.5948918"],["-106.2622545","39.5949192"],["-106.2625874","39.5949621"],["-106.2629383","39.5950252"],["-106.2632688","39.5950981"],["-106.2636191","39.5951933"],["-106.2639749","39.5953093"],["-106.2643116","39.5954295"],["-106.2646768","39.5955722"],["-106.2655017","39.595926"],["-106.2685859","39.597336"],["-106.2688829","39.5974954"],["-106.2695213","39.597866"],["-106.2699419","39.598121"],["-106.2701071","39.5982408"],["-106.2703096","39.5984017"],["-106.2707625","39.5988329"],["-106.2712817","39.5993709"],["-106.2719011","39.6001242"],["-106.2728034","39.6012999"],["-106.2736593","39.6024817"],["-106.2742937","39.6034123"],["-106.2748003","39.6043157"],["-106.2763323","39.6075163"],["-106.2766662","39.6082516"],["-106.2769113","39.6088524"],["-106.2771245","39.6094458"],["-106.2774585","39.6105962"],["-106.2778584","39.6118457"],["-106.279077","39.6146203"],["-106.279309","39.6152211"],["-106.2794473","39.6158235"],["-106.2794895","39.6162315"],["-106.2794684","39.6167719"],["-106.2794078","39.6173436"],["-106.2793135","39.6178567"],["-106.2788597","39.6199323"],["-106.2786582","39.6208401"],["-106.2782565","39.6225707"],["-106.2782067","39.6227425"],["-106.278031","39.6233834"],["-106.2779582","39.623639"],["-106.2776441","39.6248901"],["-106.2776012","39.6251378"],["-106.2775504","39.6255204"],["-106.2775383","39.6256649"],["-106.2775232","39.6259178"],["-106.2775249","39.6260254"],["-106.2775418","39.6261481"],["-106.277567","39.6262772"],["-106.2776031","39.6264226"],["-106.277647","39.6265751"],["-106.2777068","39.6267493"],["-106.2777679","39.6268937"],["-106.2778398","39.6270493"],["-106.2779215","39.6272056"],["-106.2780049","39.627359"],["-106.27809","39.6274932"],["-106.2781848","39.6276334"],["-106.2782812","39.6277642"],["-106.2783784","39.6278905"],["-106.2784995","39.6280343"],["-106.2786376","39.6281826"],["-106.2787888","39.6283356"],["-106.2789559","39.6284925"],["-106.2791288","39.6286379"],["-106.2792915","39.6287652"],["-106.279449","39.628876"],["-106.2796276","39.6289972"],["-106.279802","39.6291077"],["-106.2799732","39.6292105"],["-106.2801507","39.6293068"],["-106.2803277","39.6293948"],["-106.2805279","39.6294843"],["-106.2807184","39.6295624"],["-106.2809313","39.6296419"],["-106.2811575","39.6297203"],["-106.2814333","39.6298068"],["-106.2856398","39.6310155"],["-106.286324","39.6312329"],["-106.2865828","39.6313281"],["-106.2868521","39.6314367"],["-106.287102","39.6315471"],["-106.2875471","39.6317658"],["-106.2877797","39.6319"],["-106.2880315","39.6320547"],["-106.2883179","39.6322389"],["-106.2908729","39.6340479"],["-106.2937369","39.6360535"],["-106.2939186","39.6361897"],["-106.294138","39.6363638"],["-106.2943245","39.6365203"],["-106.2944827","39.6366591"],["-106.2956054","39.6377119"],["-106.29591","39.6379789"],["-106.2962553","39.6382578"],["-106.296435","39.6383909"],["-106.2967889","39.6386376"],["-106.2972511","39.6389173"],["-106.2974873","39.6390467"],["-106.2977328","39.6391711"],["-106.2991945","39.6398294"],["-106.2994288","39.6399426"],["-106.2998715","39.6401822"],["-106.3001096","39.640326"],["-106.3003054","39.6404544"],["-106.3005941","39.6406544"],["-106.3008727","39.6408586"],["-106.3030277","39.6424174"],["-106.3032219","39.6425467"],["-106.3033822","39.6426446"],["-106.3035435","39.6427357"],["-106.304195","39.6430398"],["-106.3079237","39.6446734"],["-106.3104519","39.6457639"],["-106.3112867","39.6461299"],["-106.3117343","39.646314"],["-106.3120146","39.6464234"],["-106.3125306","39.6466042"],["-106.3127606","39.646676"],["-106.3130002","39.6467405"],["-106.3133024","39.6468066"],["-106.3136166","39.6468613"],["-106.3138908","39.6469015"],["-106.314173","39.6469337"],["-106.3144766","39.6469604"],["-106.3196378","39.6471629"],["-106.3205694","39.6472046"],["-106.3220538","39.647265"],["-106.3226122","39.6472617"],["-106.3252783","39.6473397"],["-106.3260759","39.6473223"],["-106.3274058","39.6472433"],["-106.3283259","39.6471652"],["-106.3286979","39.6471212"],["-106.3290845","39.6470681"],["-106.3301955","39.6468864"],["-106.3310283","39.6467229"],["-106.3314006","39.646666"],["-106.3324749","39.646418"],["-106.3331879","39.6462356"],["-106.3411566","39.6444402"],["-106.3417391","39.6443213"],["-106.3583186","39.64163"],["-106.3587476","39.6415743"],["-106.3602287","39.6414378"],["-106.3606234","39.641414"],["-106.3611511","39.6413951"],["-106.3615951","39.6413845"],["-106.3625003","39.6413961"],["-106.3633114","39.6414302"],["-106.3637043","39.6414697"],["-106.3652322","39.6416255"],["-106.3660813","39.641752"],["-106.3674763","39.6420216"],["-106.373865","39.6434559"],["-106.3760351","39.6441955"],["-106.3765365","39.6443528"],["-106.3767278","39.6444039"],["-106.3769265","39.6444557"],["-106.3771357","39.6445083"],["-106.3772746","39.6445473"],["-106.377335","39.6445733"],["-106.3774258","39.6446187"],["-106.3775143","39.644694"],["-106.3775597","39.6447428"],["-106.3775533","39.6447804"],["-106.3775689","39.6448305"],["-106.3776153","39.6448779"],["-106.3776679","39.6449042"],["-106.3777157","39.6449088"],["-106.3777815","39.6448916"],["-106.3778282","39.6448617"],["-106.3778625","39.6448219"],["-106.3778666","39.6447793"],["-106.3778263","39.6446634"],["-106.3778219","39.6444816"],["-106.3778457","39.6443928"],["-106.3779876","39.6440399"],["-106.3780512","39.6439363"],["-106.3781005","39.6438785"],["-106.3781682","39.6438242"],["-106.3782676","39.6437621"],["-106.3783337","39.6437224"],["-106.3783647","39.6436969"],["-106.3783995","39.6436579"],["-106.3784267","39.6435983"],["-106.378431","39.6435335"],["-106.3784125","39.6434709"],["-106.3783729","39.6434149"],["-106.378331","39.6433808"],["-106.3782589","39.6433449"],["-106.378174","39.643327"],["-106.378083","39.6433279"],["-106.3780038","39.6433488"],["-106.3779256","39.6433923"],["-106.3778701","39.6434519"],["-106.3778421","39.643521"],["-106.3778371","39.6435734"],["-106.3778513","39.6436219"],["-106.3778726","39.6436614"],["-106.3779449","39.643832"],["-106.3779695","39.6439185"],["-106.3779845","39.6440357"],["-106.3778475","39.6443878"],["-106.3778168","39.6444771"],["-106.3777236","39.6445907"],["-106.3776216","39.6446873"],["-106.3775649","39.6447435"],["-106.3775531","39.6447803"],["-106.3775692","39.6448304"],["-106.3776153","39.6448781"],["-106.3776683","39.6449042"],["-106.3777157","39.6449088"],["-106.3777824","39.6448912"],["-106.3778281","39.6448617"],["-106.3778625","39.6448221"],["-106.3778701","39.644785"],["-106.3779031","39.6447816"],["-106.3779391","39.6447787"],["-106.3780382","39.6447551"],["-106.3781428","39.6447459"],["-106.3782848","39.6447674"],["-106.3788513","39.6448787"],["-106.3794343","39.6449724"],["-106.3813623","39.6451954"],["-106.3818558","39.6452806"],["-106.3821986","39.6453103"],["-106.3826258","39.6453954"],["-106.3832965","39.6455218"],["-106.3843957","39.6456658"],["-106.3847219","39.645695"],["-106.3850524","39.6457186"],["-106.3856924","39.6457442"],["-106.3860889","39.6457544"],["-106.3864651","39.6457483"],["-106.3872092","39.6457221"],["-106.3875584","39.6456955"],["-106.3882514","39.6456254"],["-106.3889133","39.6455288"],["-106.3892536","39.6454692"],["-106.3895917","39.6454019"],["-106.390138","39.6452793"],["-106.3906855","39.6451408"],["-106.3908948","39.6450817"],["-106.3912114","39.6449871"],["-106.3915565","39.6448753"],["-106.3919294","39.6447445"],["-106.3923141","39.6445988"],["-106.3931711","39.6442381"],["-106.397732","39.6421673"],["-106.3983276","39.6418797"],["-106.3986133","39.6417365"],["-106.3988577","39.6416034"],["-106.3994558","39.6412573"],["-106.4126735","39.6335035"],["-106.4134522","39.6330249"],["-106.4139806","39.6326713"],["-106.4143538","39.6324121"],["-106.4146729","39.6321861"],["-106.4151679","39.6318016"],["-106.415636","39.6314269"],["-106.4161528","39.6310051"],["-106.4165038","39.6307344"],["-106.4167894","39.630515"],["-106.4170752","39.6303207"],["-106.4176421","39.6299499"],["-106.4179162","39.6297713"],["-106.4182047","39.6295816"],["-106.4185164","39.6293829"],["-106.4189556","39.6291179"],["-106.4193872","39.6288519"],["-106.4200708","39.6284167"],["-106.4205908","39.6280422"],["-106.4209047","39.6278051"],["-106.4217336","39.6271264"],["-106.4220379","39.626849"],["-106.4224349","39.6264831"],["-106.4240206","39.6250932"],["-106.4242394","39.6248907"],["-106.4244716","39.6246771"],["-106.4247767","39.6243804"],["-106.4254073","39.6237078"],["-106.425705","39.6233596"],["-106.4261984","39.6228089"],["-106.4263464","39.6226565"],["-106.4264732","39.6225184"],["-106.4266095","39.6223751"],["-106.4267608","39.6222311"],["-106.4269194","39.6220843"],["-106.4272965","39.6217862"],["-106.4274686","39.6216567"],["-106.427886","39.6213802"],["-106.4283568","39.6211344"],["-106.4285908","39.6210277"],["-106.4288657","39.6209128"],["-106.4291097","39.620816"],["-106.4294557","39.6206934"],["-106.4307086","39.6202725"],["-106.4316396","39.6199351"],["-106.4321539","39.6197352"],["-106.4328889","39.6194214"],["-106.434809","39.6184246"],["-106.4353317","39.6181029"],["-106.4357164","39.617856"],["-106.4364382","39.6173549"],["-106.4375588","39.6165433"],["-106.4378678","39.6163266"],["-106.4380438","39.6162086"],["-106.4382294","39.6160894"],["-106.4383907","39.615993"],["-106.4385557","39.6159076"],["-106.4387041","39.6158303"],["-106.439049","39.6156814"],["-106.4392093","39.6156193"],["-106.4393862","39.6155619"],["-106.4396012","39.6155006"],["-106.4408919","39.6152309"],["-106.4411282","39.6151796"],["-106.441455","39.6150824"],["-106.4416225","39.6150301"],["-106.441787","39.6149755"],["-106.4419272","39.6149203"],["-106.4420569","39.614859"],["-106.4422022","39.6147854"],["-106.4424968","39.6146203"],["-106.4428397","39.6143873"],["-106.4429933","39.6142695"],["-106.4431256","39.6141459"],["-106.4432849","39.6139892"],["-106.4435054","39.613734"],["-106.4437442","39.613415"],["-106.4450699","39.6115021"],["-106.445665","39.6106797"],["-106.4459496","39.6103121"],["-106.4461938","39.6100009"],["-106.4464566","39.6096984"],["-106.4465787","39.6095541"],["-106.4467217","39.6094017"],["-106.4468703","39.6092658"],["-106.4471797","39.6090251"],["-106.4473447","39.6089164"],["-106.4475431","39.6088084"],["-106.4477865","39.6086942"],["-106.4480046","39.6086104"],["-106.4481725","39.6085616"],["-106.4485106","39.6084627"],["-106.4486902","39.6084173"],["-106.448877","39.6083757"],["-106.4493141","39.6083219"],["-106.449518","39.6083006"],["-106.4497325","39.6083017"],["-106.4499257","39.6083108"],["-106.4501271","39.6083246"],["-106.4503333","39.6083468"],["-106.4505202","39.6083765"],["-106.4507171","39.6084173"],["-106.4509811","39.6084847"],["-106.4515374","39.608631"],["-106.4523467","39.6088438"],["-106.4533789","39.6091212"],["-106.455212","39.6096058"],["-106.4557794","39.6097476"],["-106.4561258","39.6098402"],["-106.4564268","39.6099323"],["-106.4568932","39.6100997"],["-106.4571178","39.6101873"],["-106.4573145","39.6102794"],["-106.4575072","39.610387"],["-106.4576595","39.6104818"],["-106.4578131","39.6105856"],["-106.4581034","39.610831"],["-106.4582365","39.6109531"],["-106.4583758","39.611113"],["-106.4584951","39.6112483"],["-106.4586032","39.6114126"],["-106.4587124","39.6115885"],["-106.4588295","39.6118162"],["-106.4589253","39.6120521"],["-106.4589983","39.6122898"],["-106.4590306","39.6124621"],["-106.4590556","39.6126174"],["-106.4590678","39.6127927"],["-106.4590723","39.6129742"],["-106.4590594","39.6132459"],["-106.4590396","39.6135808"],["-106.459024","39.6139257"],["-106.4590151","39.6142576"],["-106.4590349","39.6144825"],["-106.4590619","39.614673"],["-106.4590892","39.6148521"],["-106.4591459","39.615055"],["-106.4592796","39.6153913"],["-106.4593497","39.6155494"],["-106.459464","39.6157406"],["-106.4596042","39.6159251"],["-106.4597735","39.61611"],["-106.4600993","39.6164109"],["-106.4602699","39.6165336"],["-106.4604573","39.616652"],["-106.4606079","39.6167459"],["-106.4607407","39.6168222"],["-106.4610177","39.6169693"],["-106.4612082","39.61706"],["-106.4615518","39.6172006"],["-106.4630781","39.6177662"],["-106.4676292","39.6193105"],["-106.4702621","39.6201382"],["-106.4716761","39.6204716"],["-106.4750462","39.6210691"],["-106.4764493","39.6212158"],["-106.4788803","39.621385"],["-106.4808549","39.6215684"],["-106.4813811","39.6216433"],["-106.4817357","39.6217155"],["-106.4820472","39.6217996"],["-106.4823095","39.6218796"],["-106.4825742","39.6219773"],["-106.4828729","39.6221001"],["-106.4831866","39.6222391"],["-106.4870855","39.6242307"],["-106.4873134","39.6243379"],["-106.487442","39.6243955"],["-106.4875702","39.6244481"],["-106.4877815","39.6245453"],["-106.488157","39.6246752"],["-106.4885676","39.6247966"],["-106.4890208","39.6249045"],["-106.4900951","39.6250566"],["-106.4911729","39.6251969"],["-106.4918324","39.6253206"],["-106.492215","39.6254067"],["-106.4925744","39.6255213"],["-106.4931889","39.6257721"],["-106.4934615","39.6259278"],["-106.4937611","39.6261141"],["-106.4940603","39.6263267"],["-106.4943161","39.626512"],["-106.4948102","39.626984"],["-106.495024","39.6272262"],["-106.4953807","39.6276499"],["-106.4959812","39.6283199"],["-106.4966698","39.6288929"],["-106.4973907","39.6293067"],["-106.4981875","39.6296392"],["-106.4994979","39.6300208"],["-106.5035819","39.6311463"],["-106.5116382","39.63337"],["-106.5138564","39.6339883"],["-106.514515","39.6341988"],["-106.516073","39.6348003"],["-106.5177175","39.6355252"],["-106.5219126","39.6378406"],["-106.5235939","39.6387485"],["-106.5246034","39.6392246"],["-106.5261637","39.6397833"],["-106.526987","39.640004"],["-106.5277668","39.6401953"],["-106.5287962","39.640391"],["-106.5304139","39.6405712"],["-106.53191","39.6406721"],["-106.532716","39.6406894"],["-106.5341287","39.6405943"],["-106.535386","39.6404339"],["-106.5365204","39.6402306"],["-106.5377575","39.639937"],["-106.5417427","39.6386854"],["-106.5430991","39.6382775"],["-106.5437949","39.6381472"],["-106.5445252","39.6380761"],["-106.5453045","39.6380875"],["-106.5459537","39.6381651"],["-106.5465912","39.6382935"],["-106.54712","39.6384552"],["-106.5477006","39.6386924"],["-106.549123","39.6394224"],["-106.553391","39.6416832"],["-106.5541705","39.64205"],["-106.5547927","39.6422865"],["-106.5554414","39.6424992"],["-106.5561095","39.6426812"],["-106.5564284","39.6427575"],["-106.5567596","39.6428286"],["-106.5581214","39.6430315"],["-106.558527","39.6430664"],["-106.5597559","39.6431226"],["-106.5695632","39.6428885"],["-106.5709311","39.6429008"],["-106.5717584","39.6429651"],["-106.5724555","39.6430811"],["-106.5733686","39.6433081"],["-106.5752145","39.6437628"],["-106.57735","39.6442915"],["-106.5791001","39.6447624"],["-106.5799491","39.6451158"],["-106.5808124","39.6456787"],["-106.5813628","39.6461544"],["-106.5821697","39.6469111"],["-106.5830385","39.6476968"],["-106.5839412","39.6483048"],["-106.5846869","39.6486383"],["-106.5852913","39.6488886"],["-106.5857841","39.6490478"],["-106.5862434","39.6491851"],["-106.5872218","39.6494498"],["-106.5892369","39.6500165"],["-106.5906612","39.6504224"],["-106.591441","39.6506407"],["-106.5928122","39.6510221"],["-106.5933585","39.6511948"],["-106.5937563","39.6513338"],["-106.6016429","39.65448"],["-106.6022046","39.654692"],["-106.6024376","39.6547642"],["-106.6029321","39.6548886"],["-106.6033588","39.6549753"],["-106.6037775","39.6550386"],["-106.6042408","39.6550845"],["-106.6046875","39.6551089"],["-106.6051291","39.6551056"],["-106.6055114","39.6550917"],["-106.605966","39.6550495"],["-106.6063546","39.6549929"],["-106.6075069","39.6547683"],["-106.6079307","39.6546829"],["-106.6085565","39.654554"],["-106.608965","39.654493"],["-106.6094024","39.6544491"],["-106.609839","39.6544251"],["-106.6103105","39.654418"],["-106.6107787","39.6544369"],["-106.6112531","39.6544763"],["-106.6115958","39.654515"],["-106.6121797","39.6546169"],["-106.6198348","39.6563929"],["-106.6204944","39.6565253"],["-106.6209944","39.6566056"],["-106.6214147","39.6566567"],["-106.6218468","39.6566912"],["-106.6222483","39.6567082"],["-106.6226638","39.6567125"],["-106.6229943","39.6567008"],["-106.6232818","39.6566835"],["-106.6235855","39.6566572"],["-106.6240838","39.6565874"],["-106.6262148","39.6562348"],["-106.6267083","39.6561549"],["-106.6271753","39.6560936"],["-106.6274482","39.6560688"],["-106.6277882","39.656047"],["-106.6281055","39.6560413"],["-106.6283593","39.6560459"],["-106.6290091","39.6561014"],["-106.6293226","39.6561525"],["-106.6300035","39.6563191"],["-106.6302794","39.6564066"],["-106.6306865","39.6565676"],["-106.6314064","39.6568964"],["-106.6349783","39.6586431"],["-106.6357817","39.6590544"],["-106.6362343","39.6592626"],["-106.637193","39.6597281"],["-106.6376404","39.6599623"],["-106.638006","39.6601688"],["-106.638379","39.6603953"],["-106.6387257","39.6606202"],["-106.6390993","39.6608795"],["-106.6394609","39.6611423"],["-106.6398351","39.6614345"],["-106.6401495","39.6616923"],["-106.6404607","39.6619636"],["-106.6408113","39.6622923"],["-106.6412366","39.6627212"],["-106.6415826","39.6631033"],["-106.6418934","39.6634752"],["-106.6423159","39.664027"],["-106.6425575","39.6643733"],["-106.6428485","39.6648361"],["-106.6430957","39.6652685"],["-106.6432888","39.6656366"],["-106.643441","39.6659527"],["-106.6435384","39.6661683"],["-106.6436456","39.6664288"],["-106.6437509","39.6667102"],["-106.644117","39.6678338"],["-106.6448883","39.6702397"],["-106.6449915","39.6705256"],["-106.6451546","39.6709472"],["-106.6453555","39.6714046"],["-106.6455651","39.6718553"],["-106.6457173","39.6721631"],["-106.6458461","39.6724266"],["-106.6470811","39.6745748"],["-106.6474202","39.6752146"],["-106.6475208","39.6754364"],["-106.6475623","39.6755782"],["-106.6476163","39.6757544"],["-106.6476783","39.6759872"],["-106.6477432","39.6763188"],["-106.6477805","39.6767825"],["-106.6478071","39.6773916"],["-106.6478318","39.6780174"],["-106.6478531","39.6783233"],["-106.6478989","39.6786342"],["-106.6479675","39.6789384"],["-106.6480606","39.6792336"],["-106.6481787","39.6795241"],["-106.6483216","39.6798121"],["-106.6484907","39.6800968"],["-106.648673","39.6803566"],["-106.6488747","39.6806047"],["-106.6490848","39.6808325"],["-106.6493303","39.6810624"],["-106.6495993","39.6812812"],["-106.6498756","39.6814775"],["-106.6501629","39.6816578"],["-106.6504915","39.6818405"],["-106.6508287","39.6820026"],["-106.6511825","39.6821513"],["-106.6514881","39.6822617"],["-106.6517754","39.6823483"],["-106.6520817","39.6824251"],["-106.6525539","39.6825115"],["-106.6558256","39.6829849"],["-106.6569616","39.6831598"],["-106.6573855","39.6832579"],["-106.6578277","39.6833809"],["-106.6581795","39.6834934"],["-106.6584757","39.6836084"],["-106.6587273","39.6837206"],["-106.6589669","39.6838425"],["-106.6592029","39.6839775"],["-106.6594212","39.6841173"],["-106.6596275","39.6842623"],["-106.6598167","39.6844115"],["-106.6600214","39.684588"],["-106.6601952","39.6847523"],["-106.6603643","39.6849311"],["-106.6606054","39.6852199"],["-106.6607547","39.6854391"],["-106.6609555","39.6857713"],["-106.6623881","39.6885479"],["-106.6633039","39.6903138"],["-106.6644116","39.6924558"],["-106.6646007","39.692775"],["-106.6647792","39.6930434"],["-106.6649532","39.6932793"],["-106.6651417","39.693507"],["-106.66535","39.6937383"],["-106.6655745","39.6939635"],["-106.6658157","39.6941863"],["-106.6660581","39.6943903"],["-106.6663799","39.6946326"],["-106.6667899","39.6949089"],["-106.6672658","39.6951843"],["-106.6685507","39.695838"],["-106.6710251","39.6970536"],["-106.6752571","39.6991613"],["-106.6770493","39.6999991"],["-106.6779603","39.700313"],["-106.6784544","39.7004415"],["-106.6789176","39.7005377"],["-106.679334","39.700605"],["-106.6797316","39.7006535"],["-106.6802066","39.7006892"],["-106.6818066","39.7007342"],["-106.6846532","39.7008114"],["-106.6853048","39.7008664"],["-106.6858635","39.7009661"],["-106.6861957","39.7010609"],["-106.6866763","39.7012448"],["-106.6869847","39.7014022"],["-106.6872582","39.7015729"],["-106.6875001","39.7017518"],["-106.6877191","39.7019447"],["-106.6879173","39.7021537"],["-106.6881025","39.7023873"],["-106.6886461","39.7032814"],["-106.6903412","39.7061747"],["-106.6913021","39.7077887"],["-106.6915524","39.7081362"],["-106.6918411","39.7084911"],["-106.6921282","39.7088088"],["-106.6924505","39.7091295"],["-106.6927715","39.7094182"],["-106.6931232","39.7097037"],["-106.6935125","39.7099917"],["-106.6939166","39.7102624"],["-106.6943481","39.7105199"],["-106.6948821","39.7108019"],["-106.6954931","39.7110765"],["-106.6960365","39.7112931"],["-106.6965416","39.7114638"],["-106.6971253","39.711628"],["-106.6976763","39.7117608"],["-106.6982743","39.7118744"],["-106.6989094","39.7119641"],["-106.6994928","39.7120207"],["-106.6999962","39.7120461"],["-106.700521","39.7120532"],["-106.7013531","39.7120045"],["-106.7025042","39.7118561"],["-106.704248","39.7116179"],["-106.706059","39.7113638"],["-106.7072112","39.7112364"],["-106.7112308","39.7109386"],["-106.7125121","39.7108498"],["-106.712957","39.7107983"],["-106.7133818","39.710737"],["-106.7137451","39.7106626"],["-106.7141031","39.7105678"],["-106.7146383","39.7104041"],["-106.7150766","39.7102296"],["-106.7156007","39.7099745"],["-106.7190367","39.7080334"],["-106.7200952","39.7074664"],["-106.7207045","39.7072043"],["-106.7213728","39.7069631"],["-106.7224829","39.706661"],["-106.7258375","39.7058555"],["-106.7265117","39.7056614"],["-106.7269861","39.7054869"],["-106.7275858","39.7052241"],["-106.7280001","39.7050154"],["-106.7285082","39.7047116"],["-106.72909","39.7043325"],["-106.7340411","39.70084"],["-106.7344504","39.7005207"],["-106.7351475","39.7000544"],["-106.736123","39.6994819"],["-106.7380721","39.6984951"],["-106.7420356","39.696557"],["-106.7437875","39.695644"],["-106.7444808","39.6952068"],["-106.7449896","39.6948429"],["-106.7457686","39.6942044"],["-106.7464893","39.6935142"],["-106.7542599","39.6856404"],["-106.7546602","39.6852845"],["-106.7551829","39.6848922"],["-106.7556023","39.6846221"],["-106.756258","39.6842661"],["-106.7567147","39.6840611"],["-106.7579459","39.6836011"],["-106.7658465","39.6807149"],["-106.7663947","39.680552"],["-106.7668426","39.6804445"],["-106.7673522","39.6803482"],["-106.7678337","39.680283"],["-106.7684074","39.6802336"],["-106.7690108","39.6802133"],["-106.7697899","39.6802503"],["-106.7706089","39.6803392"],["-106.7717207","39.6804842"],["-106.7724788","39.6805756"],["-106.7728819","39.6805977"],["-106.7733605","39.6806"],["-106.7741079","39.6805403"],["-106.7746039","39.6804608"],["-106.7749881","39.6803733"],["-106.7754155","39.6802474"],["-106.7759499","39.6800532"],["-106.7762786","39.6799069"],["-106.7767806","39.6796333"],["-106.7772117","39.6793473"],["-106.7775715","39.6790553"],["-106.7781275","39.6785112"],["-106.7788126","39.6778151"],["-106.7792591","39.6774131"],["-106.7796233","39.6771343"],["-106.7799182","39.6769408"],["-106.7803899","39.6766673"],["-106.7809366","39.6764204"],["-106.7815548","39.676193"],["-106.78194","39.6760818"],["-106.7833821","39.675799"],["-106.7963258","39.6735789"],["-106.7983264","39.6732135"],["-106.7994619","39.6729417"],["-106.8002658","39.672717"],["-106.800899","39.672514"],["-106.801646","39.6722499"],["-106.802552","39.6718919"],["-106.8127569","39.6674534"],["-106.8172862","39.6654925"],["-106.8183205","39.665139"],["-106.8196011","39.6647191"],["-106.8208821","39.6642898"],["-106.8214605","39.6640564"],["-106.8220991","39.6637656"],["-106.8225695","39.6635292"],["-106.8232661","39.6631294"],["-106.8344883","39.6556826"],["-106.8352562","39.6551902"],["-106.8356373","39.6549831"],["-106.8359896","39.6548184"],["-106.8364025","39.6546517"],["-106.8369281","39.6544794"],["-106.8374842","39.6543389"],["-106.8380214","39.6542429"],["-106.8386991","39.6541707"],["-106.8392917","39.6541489"],["-106.840029","39.6541857"],["-106.8406235","39.654257"],["-106.8420047","39.6545145"],["-106.8432487","39.6547456"],["-106.8443603","39.6549291"],["-106.8448217","39.6549676"],["-106.8454261","39.6549793"],["-106.8458368","39.6549517"],["-106.8462688","39.6549033"],["-106.8466569","39.6548384"],["-106.8470501","39.6547495"],["-106.8476731","39.654561"],["-106.8490165","39.6540117"],["-106.8509505","39.653196"],["-106.8520086","39.6527985"],["-106.8527291","39.652619"],["-106.8532033","39.6525339"],["-106.8537694","39.6524714"],["-106.8541557","39.652449"],["-106.8546533","39.652446"],["-106.8550325","39.6524692"],["-106.8566417","39.6527018"],["-106.8618218","39.6535581"],["-106.8648148","39.6540263"],["-106.8658537","39.6541002"],["-106.8668774","39.6541253"],["-106.8673843","39.6541085"],["-106.8679829","39.6540711"],["-106.8686095","39.6540114"],["-106.8702793","39.6537688"],["-106.873899","39.6531998"],["-106.8782559","39.652327"],["-106.8793067","39.6521184"],["-106.8797535","39.6520475"],["-106.8801833","39.6519941"],["-106.8806484","39.6519535"],["-106.8811241","39.6519308"],["-106.8816538","39.6519231"],["-106.8821436","39.6519421"],["-106.8826502","39.6519801"],["-106.883101","39.6520297"],["-106.8839174","39.6521599"],["-106.8876005","39.6527979"],["-106.8880742","39.6528676"],["-106.8884698","39.6529111"],["-106.888801","39.6529313"],["-106.8892023","39.6529394"],["-106.8895839","39.6529308"],["-106.8900114","39.6529115"],["-106.8904476","39.6528758"],["-106.8908272","39.652833"],["-106.8912331","39.6527753"],["-106.8923969","39.6525413"],["-106.8929933","39.652423"],["-106.8942066","39.6521784"],["-106.8945341","39.6521251"],["-106.8948485","39.6520867"],["-106.8951523","39.6520622"],["-106.8954618","39.6520487"],["-106.8957636","39.6520512"],["-106.896045","39.6520628"],["-106.896363","39.6520919"],["-106.8968431","39.652157"],["-106.8981051","39.6523952"],["-106.8988393","39.6525292"],["-106.8999885","39.6527369"],["-106.9022472","39.6530329"],["-106.9032471","39.6531723"],["-106.9039391","39.6532953"],["-106.9060503","39.6537583"],["-106.9075507","39.6540844"],["-106.9094028","39.6544931"],["-106.9098412","39.6545687"],["-106.9101813","39.6546105"],["-106.9105039","39.6546366"],["-106.9108425","39.6546513"],["-106.9111791","39.6546471"],["-106.9114894","39.6546307"],["-106.9118082","39.6546015"],["-106.9121775","39.6545498"],["-106.9130098","39.6543843"],["-106.9140452","39.6541659"],["-106.9146041","39.6540589"],["-106.9150153","39.6540082"],["-106.9154339","39.653973"],["-106.9158699","39.6539528"],["-106.9163272","39.6539477"],["-106.9166624","39.653962"],["-106.9173945","39.6540263"],["-106.9197919","39.6542714"],["-106.9210072","39.6543823"],["-106.9217099","39.65442"],["-106.9223983","39.6544417"],["-106.923059","39.6544468"],["-106.9262359","39.6542972"],["-106.9341962","39.653914"],["-106.9352354","39.6538877"],["-106.9368789","39.653918"],["-106.9383173","39.6539444"],["-106.9398588","39.6539789"],["-106.9404605","39.6539564"],["-106.9411688","39.6539093"],["-106.9484204","39.6531397"],["-106.9495534","39.6530177"],["-106.950404","39.6528972"],["-106.9523749","39.6526674"],["-106.9562163","39.6522365"],["-106.9568919","39.6521966"],["-106.9574924","39.6521815"],["-106.9581291","39.6522089"],["-106.9588124","39.6522651"],["-106.9593031","39.6523229"],["-106.9597816","39.6524022"],["-106.9601491","39.6524811"],["-106.9605223","39.6525748"],["-106.9613862","39.6528358"],["-106.9625545","39.6532426"],["-106.9670056","39.6548416"],["-106.9691459","39.6556025"],["-106.9699015","39.6558231"],["-106.9705281","39.6559756"],["-106.9711486","39.6561"],["-106.9718237","39.6562129"],["-106.9725177","39.656298"],["-106.9731695","39.6563535"],["-106.9738329","39.6563851"],["-106.9745089","39.6563957"],["-106.975197","39.6563703"],["-106.9758212","39.6563284"],["-106.9765012","39.6562582"],["-106.9771716","39.6561602"],["-106.9780977","39.6559802"],["-106.979148","39.6557151"],["-106.980062","39.655425"],["-106.9910615","39.6510837"],["-106.9946579","39.6496784"],["-106.995132","39.6495356"],["-106.9956487","39.6494077"],["-106.9964678","39.6492436"],["-106.9973168","39.6491366"],["-106.9979742","39.6490917"],["-107.0090406","39.6488877"],["-107.0102023","39.6487997"],["-107.0113392","39.6486554"],["-107.012057","39.6485302"],["-107.0128544","39.648357"],["-107.0135021","39.6481957"],["-107.0174075","39.6469643"],["-107.0217772","39.6455817"],["-107.0238455","39.6449767"],["-107.0246427","39.6448215"],["-107.025378","39.6447187"],["-107.0262078","39.6446498"],["-107.0271046","39.6446171"],["-107.0277312","39.6446357"],["-107.0282983","39.6446693"],["-107.0288401","39.6447227"],["-107.0294145","39.6448073"],["-107.0324986","39.6454271"],["-107.0451266","39.6479931"],["-107.0463141","39.6481849"],["-107.0478773","39.6483585"],["-107.0495421","39.6484634"],["-107.0513958","39.6485769"],["-107.0526234","39.6486619"],["-107.0584305","39.6489659"],["-107.0589738","39.6490064"],["-107.0599156","39.6490339"],["-107.0603751","39.6490212"],["-107.0608408","39.6489966"],["-107.0612488","39.6489604"],["-107.061715","39.64891"],["-107.0621477","39.6488448"],["-107.0625379","39.6487732"],["-107.0628517","39.6487061"],["-107.0631324","39.6486316"],["-107.0634805","39.6485247"],["-107.0664115","39.6475604"],["-107.069791","39.6465731"],["-107.070291","39.6464597"],["-107.070741","39.646378"],["-107.0712713","39.646299"],["-107.0740966","39.645958"],["-107.0762811","39.6456973"],["-107.076766","39.6456178"],["-107.0771605","39.6455363"],["-107.0776317","39.6454148"],["-107.0780786","39.6452778"],["-107.0784014","39.6451664"],["-107.0787126","39.6450444"],["-107.0791311","39.6448575"],["-107.0796959","39.644567"],["-107.0803381","39.6441849"],["-107.0809363","39.643806"],["-107.081812","39.6431549"],["-107.0829163","39.6423205"],["-107.0835703","39.641887"],["-107.0847759","39.641173"],["-107.086258","39.6403457"],["-107.0869459","39.6400135"],["-107.0877857","39.6396376"],["-107.0891263","39.6390872"],["-107.0924547","39.637758"],["-107.0992772","39.6347201"],["-107.0996224","39.6345472"],["-107.1001381","39.634267"],["-107.1004893","39.6340556"],["-107.1007525","39.6338706"],["-107.1010739","39.6336287"],["-107.1013104","39.6334336"],["-107.1015798","39.6331866"],["-107.1018429","39.6329215"],["-107.1020566","39.6326807"],["-107.1022758","39.6324056"],["-107.1024617","39.6321431"],["-107.1026704","39.6318153"],["-107.1028543","39.6314836"],["-107.103033","39.6310884"],["-107.1031666","39.6307244"],["-107.1032601","39.6304125"],["-107.1033425","39.6300362"],["-107.1034009","39.6295891"],["-107.1034276","39.6292026"],["-107.1034462","39.6287612"],["-107.103467","39.6283379"],["-107.1034858","39.6281059"],["-107.1035155","39.6279135"],["-107.1035825","39.6277096"],["-107.1036638","39.6275263"],["-107.1037602","39.6273407"],["-107.1038898","39.6271483"],["-107.1040915","39.6269094"],["-107.1042344","39.6267682"],["-107.1043974","39.6266294"],["-107.1046717","39.6264222"],["-107.1048893","39.6262724"],["-107.105207","39.626097"],["-107.1055034","39.6259807"],["-107.1057045","39.6259155"],["-107.1059478","39.6258555"],["-107.1062288","39.6258043"],["-107.1064786","39.6257677"],["-107.1066836","39.6257498"],["-107.1069006","39.6257387"],["-107.1074059","39.6257492"],["-107.1080674","39.6257751"],["-107.1084814","39.6257894"],["-107.1087748","39.6257813"],["-107.1091522","39.6257556"],["-107.1109098","39.625539"],["-107.111453","39.6254687"],["-107.1130527","39.6252537"],["-107.1135362","39.6251619"],["-107.1139099","39.6250782"],["-107.1143811","39.6249271"],["-107.1148707","39.6247591"],["-107.1153076","39.6246056"],["-107.1156853","39.6244705"],["-107.1160257","39.6243657"],["-107.1163563","39.6242837"],["-107.1166717","39.6242374"],["-107.116997","39.6242155"],["-107.117295","39.6242286"],["-107.1176139","39.6242669"],["-107.1178581","39.6243252"],["-107.1181719","39.624419"],["-107.1190414","39.6247582"],["-107.1194208","39.6248885"],["-107.1196725","39.6249541"],["-107.1199075","39.6249938"],["-107.1201575","39.6250157"],["-107.1204786","39.6250293"],["-107.120914","39.6249929"],["-107.1212031","39.6249446"],["-107.1214401","39.6248738"],["-107.1217439","39.6247716"],["-107.1219789","39.6246554"],["-107.1221925","39.6245311"],["-107.1223696","39.6244104"],["-107.1225431","39.6242764"],["-107.1226817","39.6241346"],["-107.1228298","39.6239544"],["-107.1230256","39.6236469"],["-107.1234497","39.6229079"],["-107.1236547","39.6226051"],["-107.123899","39.622323"],["-107.1241525","39.6220482"],["-107.1244031","39.6217903"],["-107.1246279","39.6215465"],["-107.1248527","39.6212873"],["-107.1251288","39.6209302"],["-107.1252873","39.6206623"],["-107.1256069","39.6199717"],["-107.1257882","39.6196077"],["-107.1259848","39.6193609"],["-107.1262009","39.6191428"],["-107.1264377","39.6189661"],["-107.1266465","39.6188408"],["-107.1268689","39.6187274"],["-107.1270889","39.6186356"],["-107.1273412","39.6185529"],["-107.1277087","39.6184706"],["-107.1281201","39.6183837"],["-107.1286861","39.6182563"],["-107.1291366","39.6181478"],["-107.1295092","39.6180374"],["-107.12977","39.6179315"],["-107.1300778","39.6178055"],["-107.1305351","39.6175636"],["-107.1308443","39.6173747"],["-107.1318938","39.6166937"],["-107.1323537","39.6164456"],["-107.1326936","39.6162925"],["-107.1330582","39.6161468"],["-107.1335029","39.6160018"],["-107.1339056","39.6158986"],["-107.1344088","39.6157988"],["-107.1348639","39.6157367"],["-107.1353113","39.6156901"],["-107.1358492","39.6156721"],["-107.1368612","39.6156596"],["-107.1373384","39.6156419"],["-107.1377258","39.6155929"],["-107.1380572","39.6155353"],["-107.1383555","39.6154635"],["-107.1385905","39.6153901"],["-107.1388024","39.6153"],["-107.1390606","39.6151698"],["-107.1394482","39.6149602"],["-107.1399816","39.6146546"],["-107.1405315","39.6143227"],["-107.1413733","39.6137815"],["-107.1417065","39.6135758"],["-107.1423152","39.6131537"],["-107.1430056","39.6126368"],["-107.1445334","39.6114404"],["-107.1450478","39.6111008"],["-107.1453304","39.610949"],["-107.1456429","39.6107948"],["-107.1459058","39.6106825"],["-107.1461982","39.6105704"],["-107.1465918","39.6104435"],["-107.1471963","39.6102654"],["-107.1476428","39.6101694"],["-107.1481216","39.6100845"],["-107.1488064","39.6099634"],["-107.1496589","39.6098224"],["-107.1505033","39.6096727"],["-107.151866","39.6094043"],["-107.1526374","39.6091677"],["-107.1538051","39.6087706"],["-107.1543017","39.6085845"],["-107.1546913","39.6083914"],["-107.1548716","39.6082798"],["-107.1550156","39.6081696"],["-107.1551858","39.6080109"],["-107.155395","39.6077939"],["-107.1555648","39.6075351"],["-107.155706","39.6072403"],["-107.1557839","39.6069705"],["-107.1558509","39.6066512"],["-107.155916","39.6061891"],["-107.1560533","39.6055596"],["-107.1561513","39.6053077"],["-107.1562427","39.6051064"],["-107.1563464","39.6049487"],["-107.1564788","39.6047816"],["-107.1566218","39.6046281"],["-107.1568944","39.6043918"],["-107.1570879","39.6042531"],["-107.1573463","39.6040985"],["-107.1578007","39.6038841"],["-107.1584077","39.6036246"],["-107.1592495","39.6032946"],["-107.1629835","39.6021579"],["-107.1636835","39.602014"],["-107.1656907","39.6016629"],["-107.1673914","39.6013062"],["-107.1687387","39.6009822"],["-107.1700424","39.6006437"],["-107.1705449","39.6004903"],["-107.1709873","39.6002834"],["-107.1712977","39.6001012"],["-107.1715123","39.5999541"],["-107.1717697","39.599731"],["-107.1725375","39.5990575"],["-107.1732761","39.5984003"],["-107.1739585","39.5977944"],["-107.1741634","39.5976243"],["-107.1744992","39.5973174"],["-107.1750441","39.5966988"],["-107.1757827","39.5958052"],["-107.1760731","39.5955287"],["-107.1764189","39.5952106"],["-107.176796","39.5948726"],["-107.1771173","39.5945656"],["-107.1781017","39.5934636"],["-107.1787686","39.5927088"],["-107.1791143","39.5923283"],["-107.1794851","39.5919552"],["-107.179735","39.5917519"],["-107.1799648","39.5915859"],["-107.1803336","39.5913648"],["-107.1807082","39.5911601"],["-107.1811729","39.5909324"],["-107.1816923","39.5907351"],["-107.1821815","39.590554"],["-107.182746","39.5903543"],["-107.1833337","39.5901661"],["-107.1849091","39.5895202"],["-107.1875521","39.5883535"],["-107.1886554","39.5876399"],["-107.1896116","39.587136"],["-107.1905356","39.5868596"],["-107.1914209","39.5866953"],["-107.1922347","39.5866799"],["-107.1931566","39.5868146"],["-107.1938012","39.5868639"],["-107.194559","39.5869058"],["-107.1948471","39.5869177"],["-107.1949963","39.5869156"],["-107.1951166","39.586912"],["-107.1952532","39.5869036"],["-107.1954126","39.5868903"],["-107.1955421","39.5868747"],["-107.1956849","39.5868545"],["-107.1958316","39.5868272"],["-107.1959706","39.5867956"],["-107.1961048","39.5867617"],["-107.1962254","39.5867252"],["-107.1963694","39.5866792"],["-107.1964784","39.5866385"],["-107.196558","39.5866081"],["-107.1966351","39.5865761"],["-107.1966972","39.5865482"],["-107.196816","39.5864918"],["-107.1970461","39.5863682"],["-107.1971645","39.5862987"],["-107.1972622","39.5862501"],["-107.1973842","39.5861851"],["-107.1977988","39.5858751"],["-107.1979596","39.5857349"],["-107.1980906","39.585567"],["-107.1982372","39.5852836"],["-107.1983496","39.5850082"],["-107.1984555","39.5845948"],["-107.1985907","39.5841509"],["-107.1987008","39.5838419"],["-107.1988343","39.583562"],["-107.1990073","39.5832911"],["-107.199217","39.5830427"],["-107.199455","39.5828557"],["-107.1997168","39.5826716"],["-107.2000831","39.5824844"],["-107.2007975","39.5822066"],["-107.2015898","39.5819127"],["-107.2020584","39.5817104"],["-107.202365","39.5815476"],["-107.2026651","39.581365"],["-107.2029779","39.5811453"],["-107.2032865","39.5809127"],["-107.2035592","39.5806314"],["-107.2038295","39.5803401"],["-107.2040402","39.5800715"],["-107.2043421","39.5795741"],["-107.2045337","39.5792503"],["-107.2047608","39.5789068"],["-107.2050492","39.578602"],["-107.2053116","39.5783843"],["-107.2056858","39.5781562"],["-107.2077471","39.577007"],["-107.2083442","39.5767558"],["-107.2085777","39.5766774"],["-107.2091583","39.5765478"],["-107.2094991","39.576516"],["-107.2098604","39.5765051"],["-107.2103372","39.5765225"],["-107.2151372","39.5768684"],["-107.215527","39.5769184"],["-107.2159072","39.5769831"],["-107.2162995","39.5770596"],["-107.2165847","39.5771234"],["-107.2173399","39.577304"],["-107.2176361","39.5773646"],["-107.2178717","39.577403"],["-107.2182904","39.5774412"],["-107.2186794","39.5774269"],["-107.2190471","39.5773861"],["-107.2195011","39.5773184"],["-107.2204853","39.5771574"],["-107.2210101","39.5770636"],["-107.2214748","39.576942"],["-107.2218373","39.5768168"],["-107.2221311","39.5766806"],["-107.2223832","39.5765266"],["-107.222605","39.576383"],["-107.2228016","39.5762201"],["-107.2229689","39.5760725"],["-107.2231189","39.5759035"],["-107.2233882","39.5755458"],["-107.2234939","39.5753532"],["-107.2235512","39.5752144"],["-107.2236051","39.575031"],["-107.2236614","39.5747976"],["-107.2237182","39.5744742"],["-107.2237617","39.5736483"],["-107.2237799","39.5732432"],["-107.2237937","39.5729552"],["-107.2238326","39.5726877"],["-107.2239214","39.5723541"],["-107.2240098","39.5720761"],["-107.2241424","39.5717881"],["-107.2243177","39.5714488"],["-107.2244816","39.5712199"],["-107.2246925","39.5709947"],["-107.22497","39.5707736"],["-107.2252792","39.5705718"],["-107.2260427","39.57024"],["-107.2279317","39.5694521"],["-107.2284187","39.5692157"],["-107.2286814","39.5690601"],["-107.2290284","39.5688225"],["-107.2306012","39.5676432"],["-107.2309637","39.5674121"],["-107.2312511","39.5672736"],["-107.2315255","39.56716"],["-107.2333966","39.5665444"],["-107.2340428","39.566295"],["-107.2344955","39.5660584"],["-107.2350401","39.5657207"],["-107.2363454","39.564792"],["-107.2366336","39.5645541"],["-107.2368455","39.5643598"],["-107.237061","39.5641438"],["-107.237514","39.5636671"],["-107.2377217","39.5633976"],["-107.2379679","39.5630723"],["-107.2388433","39.5616998"],["-107.2391742","39.5611822"],["-107.2395196","39.5606888"],["-107.2396742","39.5605231"],["-107.239903","39.5603148"],["-107.2403823","39.5599654"],["-107.2408354","39.5596416"],["-107.241288","39.5593083"],["-107.2416274","39.5589794"],["-107.2421796","39.5584056"],["-107.2425423","39.5580872"],["-107.2429238","39.5578501"],["-107.2433587","39.5576707"],["-107.2437506","39.5575463"],["-107.2440115","39.5574945"],["-107.244261","39.5574659"],["-107.2445601","39.5574531"],["-107.2448047","39.5574665"],["-107.2450889","39.5574915"],["-107.2453512","39.5575376"],["-107.2456639","39.5576186"],["-107.2459685","39.5577258"],["-107.2462288","39.5578444"],["-107.2464256","39.5579496"],["-107.2466335","39.5580802"],["-107.2468681","39.5582503"],["-107.2471172","39.5584788"],["-107.2473666","39.5587474"],["-107.2478755","39.5593539"],["-107.2483024","39.5598473"],["-107.248546","39.5600836"],["-107.2487588","39.5602675"],["-107.2489405","39.5604064"],["-107.249151","39.5605391"],["-107.2493928","39.5606814"],["-107.249778","39.5608607"],["-107.2501612","39.5609996"],["-107.250551","39.561111"],["-107.2508816","39.5611795"],["-107.2512492","39.5612332"],["-107.2542907","39.5615284"],["-107.2546353","39.5615751"],["-107.255167","39.5616737"],["-107.2558596","39.5618252"],["-107.2567152","39.5620417"],["-107.2574735","39.5622564"],["-107.2578467","39.5623754"],["-107.2582194","39.5624971"],["-107.2588386","39.5627046"],["-107.259445","39.5628475"],["-107.260022","39.5629172"],["-107.261312","39.5629931"],["-107.2616556","39.5629923"],["-107.2620411","39.5629919"],["-107.2631654","39.5629637"],["-107.263606","39.562971"],["-107.264118","39.5630023"],["-107.2659404","39.5631978"],["-107.266254","39.563265"],["-107.2664807","39.5633325"],["-107.2666968","39.5634148"],["-107.2668849","39.5634954"],["-107.2670385","39.5635779"],["-107.2671941","39.5636746"],["-107.267348","39.5637891"],["-107.2674829","39.5638993"],["-107.267703","39.5641187"],["-107.2679038","39.564392"],["-107.2683747","39.5650424"],["-107.2687247","39.5655135"],["-107.2689413","39.5657806"],["-107.2690704","39.5659029"],["-107.2692546","39.566053"],["-107.2694498","39.5662"],["-107.2696767","39.5663478"],["-107.2699073","39.5664701"],["-107.2701857","39.566603"],["-107.2704571","39.5666977"],["-107.270735","39.5667764"],["-107.2709942","39.5668366"],["-107.2712817","39.5668824"],["-107.2716272","39.5669126"],["-107.2719585","39.5669277"],["-107.2722874","39.5669126"],["-107.2726736","39.5668576"],["-107.2730508","39.5667894"],["-107.2734303","39.5666756"],["-107.2742415","39.5663576"],["-107.2750076","39.5660069"],["-107.2753151","39.5658564"],["-107.275539","39.5657272"],["-107.2757335","39.5655839"],["-107.2759038","39.5654521"],["-107.276077","39.5652938"],["-107.2761891","39.5651637"],["-107.2763303","39.5649758"],["-107.2765384","39.5646585"],["-107.2766903","39.5644084"],["-107.276854","39.5641383"],["-107.2770338","39.5638261"],["-107.2771908","39.5635391"],["-107.2773567","39.5632672"],["-107.2775143","39.5629992"],["-107.2777514","39.5626642"],["-107.278072","39.5622937"],["-107.2784446","39.5618818"],["-107.2789997","39.5613138"],["-107.2792529","39.5611"],["-107.2794951","39.5609263"],["-107.2797871","39.5607478"],["-107.2801095","39.5605896"],["-107.2803838","39.5604804"],["-107.2806738","39.5603928"],["-107.2809406","39.5603292"],["-107.2811849","39.5602847"],["-107.2814045","39.5602599"],["-107.2816479","39.5602378"],["-107.2818517","39.5602286"],["-107.2821255","39.5602386"],["-107.2824498","39.5602617"],["-107.2827395","39.5603028"],["-107.2830386","39.5603663"],["-107.2833796","39.5604695"],["-107.2861468","39.5614134"],["-107.2866329","39.561555"],["-107.2869576","39.5616195"],["-107.2872631","39.5616588"],["-107.2875305","39.5616783"],["-107.2877745","39.5616811"],["-107.2880531","39.5616629"],["-107.2883225","39.561628"],["-107.2886063","39.5615795"],["-107.2888771","39.5615144"],["-107.2891733","39.5614295"],["-107.2894174","39.561365"],["-107.2899412","39.5612054"],["-107.2902965","39.5611117"],["-107.2905623","39.5610567"],["-107.2908514","39.5610092"],["-107.2911982","39.5609609"],["-107.291725","39.5609532"],["-107.2919769","39.5609593"],["-107.2922755","39.5609895"],["-107.2926416","39.5610365"],["-107.2936803","39.5612255"],["-107.2943567","39.5613564"],["-107.2947215","39.5614234"],["-107.295099","39.5614918"],["-107.297498","39.5619226"],["-107.2979283","39.5619935"],["-107.2983695","39.5620615"],["-107.2995053","39.5621915"],["-107.3000042","39.5622264"],["-107.3005222","39.5622441"],["-107.3009843","39.5622496"],["-107.301433","39.5622418"],["-107.3017966","39.5622263"],["-107.3023745","39.5621837"],["-107.3036416","39.5620328"],["-107.304869","39.5618547"],["-107.3096173","39.5610973"],["-107.309911","39.5610383"],["-107.3102665","39.5609554"],["-107.3106468","39.5608276"],["-107.3110849","39.5606322"],["-107.311488","39.5604141"],["-107.3118458","39.5601747"],["-107.312188","39.559901"],["-107.3127332","39.5594124"],["-107.3132204","39.5589141"],["-107.3136325","39.5584274"],["-107.3139771","39.5579458"],["-107.3142551","39.5574888"],["-107.3157803","39.5547388"],["-107.316344","39.5537834"],["-107.3166952","39.5532957"],["-107.3170742","39.5528384"],["-107.3175514","39.5523492"],["-107.3182111","39.5517613"],["-107.3186773","39.5513959"],["-107.3191078","39.5511019"],["-107.3198088","39.5506797"],["-107.3220721","39.5494547"],["-107.3228003","39.5490794"],["-107.3232608","39.5489147"],["-107.3236747","39.5488248"],["-107.3239462","39.5487978"],["-107.3241935","39.548786"],["-107.3246884","39.5488191"],["-107.3253046","39.5489023"],["-107.3261762","39.5491357"],["-107.3270886","39.5494155"],["-107.3273405","39.5495095"],["-107.3274759","39.5495714"],["-107.3275291","39.5496271"],["-107.3275511","39.5496724"],["-107.3275659","39.5497597"],["-107.3274049","39.5498131"],["-107.3272037","39.5498386"],["-107.3270163","39.549818"],["-107.3267912","39.5497424"],["-107.3267229","39.5497202"],["-107.3266297","39.5498755"],["-107.3266297","39.5499508"],["-107.3266632","39.5500147"],["-107.3266827","39.5500777"],["-107.3266804","39.5501341"],["-107.3266644","39.550157"],["-107.3266329","39.5501987"],["-107.3265781","39.550234"],["-107.3259107","39.5502041"],["-107.3252385","39.5501875"],["-107.32498","39.5502115"],["-107.3249499","39.5507498"],["-107.3249315","39.5514095"],["-107.3270024","39.5514412"],["-107.3270565","39.5508346"],["-107.3270666","39.5506189"],["-107.3271075","39.5505407"],["-107.3271273","39.5504917"],["-107.3271515","39.5504531"],["-107.3271866","39.5504192"],["-107.3272304","39.5504074"],["-107.3272729","39.5503865"],["-107.3273075","39.5503586"],["-107.3273304","39.5503238"],["-107.3273404","39.5502859"],["-107.3273367","39.5502458"],["-107.327344","39.5502008"],["-107.3273705","39.5501521"],["-107.3274134","39.550095"],["-107.3275974","39.5499564"],["-107.327672","39.5499021"],["-107.3277824","39.549881"],["-107.3279206","39.5498773"],["-107.3280574","39.5498943"],["-107.3281688","39.5499217"],["-107.3284651","39.5500719"],["-107.3287631","39.5502349"],["-107.3290561","39.550409"],["-107.3296165","39.5507524"],["-107.3299296","39.5509578"],["-107.3302186","39.5511653"],["-107.3305557","39.5514091"],["-107.3311994","39.5518748"],["-107.3341193","39.5542913"],["-107.3349212","39.5549896"],["-107.335386","39.5554356"],["-107.3358761","39.5559548"],["-107.3364097","39.55657"],["-107.3368897","39.5571395"],["-107.3371679","39.5574651"],["-107.3374168","39.5577213"],["-107.3377147","39.557996"],["-107.338033","39.558247"],["-107.3383287","39.5584535"],["-107.3386525","39.5586514"],["-107.3389991","39.558844"],["-107.3393136","39.5589972"],["-107.3396971","39.5591605"],["-107.3401056","39.5593134"],["-107.3405902","39.559464"],["-107.3411786","39.5596079"],["-107.3416999","39.5596999"],["-107.3524702","39.5609698"],["-107.353309","39.5610403"],["-107.3540247","39.5610867"],["-107.3549441","39.561117"],["-107.3558608","39.5611339"],["-107.3565111","39.5611295"],["-107.3576137","39.5610933"],["-107.3605526","39.560865"],["-107.3610703","39.5608476"],["-107.3615537","39.5608675"],["-107.3620046","39.5609119"],["-107.3631456","39.561085"],["-107.3677905","39.5618353"],["-107.3681468","39.5618802"],["-107.3685603","39.5619176"],["-107.3688883","39.5619349"],["-107.3693423","39.5619252"],["-107.369785","39.5618947"],["-107.3703411","39.5618162"],["-107.3719746","39.5614376"],["-107.3734429","39.5610922"],["-107.3749032","39.5607528"],["-107.3752666","39.5607025"],["-107.3756472","39.5606707"],["-107.3759686","39.5606588"],["-107.3762798","39.560667"],["-107.3766973","39.5606983"],["-107.3790584","39.5610143"],["-107.3801518","39.561149"],["-107.3808987","39.5612111"],["-107.3815533","39.5612459"],["-107.3822602","39.5612696"],["-107.3831901","39.5612523"],["-107.384053","39.5612091"],["-107.384865","39.5611419"],["-107.3856018","39.5610593"],["-107.3863435","39.5609448"],["-107.3870116","39.5608272"],["-107.3876521","39.560689"],["-107.3883762","39.5605136"],["-107.389051","39.5603252"],["-107.3898196","39.5600852"],["-107.3907459","39.5597476"],["-107.3918823","39.5592759"],["-107.3928072","39.5588835"],["-107.3936305","39.5585472"],["-107.3944899","39.5582574"],["-107.3956361","39.5579327"],["-107.3965705","39.5576796"],["-107.3969809","39.5575966"],["-107.3972934","39.5575603"],["-107.3977247","39.5575359"],["-107.3981193","39.5575491"],["-107.3984437","39.5575762"],["-107.3987778","39.557631"],["-107.3991183","39.5577101"],["-107.3994196","39.5578052"],["-107.3997631","39.5579382"],["-107.4011678","39.5586124"],["-107.4046155","39.5602991"],["-107.4050476","39.5605411"],["-107.4054179","39.5607807"],["-107.4057431","39.5610281"],["-107.4061036","39.5613434"],["-107.4074933","39.5626541"],["-107.4082047","39.5632246"],["-107.4086614","39.5635423"],["-107.4091807","39.5638401"],["-107.4095873","39.5640394"],["-107.4100969","39.5642471"],["-107.4105516","39.5644096"],["-107.4109765","39.5645368"],["-107.4114941","39.5646653"],["-107.4157066","39.5655246"],["-107.4168301","39.5657076"],["-107.4176901","39.5658152"],["-107.4183344","39.5658711"],["-107.4204339","39.5659787"],["-107.4215571","39.5660377"],["-107.4219712","39.5660835"],["-107.4223314","39.5661349"],["-107.4226062","39.5661882"],["-107.4228918","39.5662528"],["-107.4232732","39.5663574"],["-107.4235476","39.5664447"],["-107.4238191","39.5665456"],["-107.4242013","39.5667063"],["-107.4246931","39.5669489"],["-107.4251097","39.5671998"],["-107.4255435","39.5675014"],["-107.4259188","39.5678211"],["-107.4262156","39.5681086"],["-107.4265438","39.5685091"],["-107.4271934","39.5694058"],["-107.4275316","39.5698472"],["-107.4277713","39.5700945"],["-107.4280446","39.5703351"],["-107.4282469","39.5704897"],["-107.428438","39.5706191"],["-107.4287473","39.5707945"],["-107.4340707","39.573239"],["-107.4363643","39.5742731"],["-107.4369855","39.5745003"],["-107.4374701","39.5746555"],["-107.4379601","39.5747866"],["-107.4385232","39.5749141"],["-107.4391223","39.5750185"],["-107.4397041","39.5750924"],["-107.4402329","39.5751382"],["-107.4409699","39.575172"],["-107.441622","39.5751603"],["-107.4480109","39.5748974"],["-107.4490031","39.5748363"],["-107.4494136","39.5747889"],["-107.4497522","39.5747355"],["-107.4501467","39.5746569"],["-107.4505949","39.5745568"],["-107.4510115","39.5744434"],["-107.4514525","39.5743071"],["-107.4519334","39.5741288"],["-107.4526024","39.5738349"],["-107.4531976","39.5735223"],["-107.4536561","39.573241"],["-107.4542657","39.5728023"],["-107.454621","39.5725162"],["-107.4553331","39.5719112"],["-107.4556438","39.5716605"],["-107.4559068","39.5714683"],["-107.4561929","39.5712992"],["-107.4565027","39.5711378"],["-107.4568172","39.5710094"],["-107.4571377","39.5709051"],["-107.4574556","39.570823"],["-107.4577345","39.5707721"],["-107.4580503","39.57073"],["-107.4584264","39.5707093"],["-107.4587992","39.5707213"],["-107.4592789","39.570773"],["-107.4596209","39.5708396"],["-107.4600007","39.5709454"],["-107.4605948","39.5711633"],["-107.4639534","39.5724776"],["-107.4646608","39.572714"],["-107.4652957","39.5729005"],["-107.4659515","39.5730644"],["-107.4666706","39.5732181"],["-107.4673779","39.5733497"],["-107.4680432","39.573444"],["-107.4688278","39.5735253"],["-107.4694556","39.573579"],["-107.4701119","39.5736055"],["-107.470909","39.5736185"],["-107.471615","39.5735938"],["-107.4723139","39.5735512"],["-107.4730273","39.5734866"],["-107.4737126","39.573397"],["-107.47447","39.5732714"],["-107.4782014","39.5725289"],["-107.4800369","39.5721386"],["-107.4807223","39.5719499"],["-107.4813429","39.5717368"],["-107.4819091","39.5715092"],["-107.4824153","39.5712773"],["-107.4829169","39.571008"],["-107.4835748","39.5706044"],["-107.4875455","39.5679347"],["-107.4884663","39.5673287"],["-107.4887941","39.5671436"],["-107.4891267","39.5669712"],["-107.4896747","39.5667246"],["-107.4902723","39.5665035"],["-107.4907473","39.5663553"],["-107.4912648","39.5662196"],["-107.4917614","39.5661134"],["-107.4922544","39.5660339"],["-107.4927771","39.5659711"],["-107.4932951","39.5659307"],["-107.4936863","39.5659158"],["-107.4948614","39.5659267"],["-107.5080304","39.5662455"],["-107.5091697","39.5662569"],["-107.5096294","39.5662359"],["-107.5102102","39.5661873"],["-107.5133272","39.5658482"],["-107.5142013","39.5657728"],["-107.5148143","39.565756"],["-107.5152083","39.5657674"],["-107.5155603","39.565787"],["-107.5159119","39.5658219"],["-107.5164085","39.5658881"],["-107.5170049","39.5660016"],["-107.517499","39.5661214"],["-107.5179082","39.5662409"],["-107.518335","39.5663867"],["-107.5187517","39.5665513"],["-107.519179","39.5667433"],["-107.5198677","39.5671091"],["-107.5233375","39.5690341"],["-107.5239357","39.5693371"],["-107.5243705","39.5695377"],["-107.524842","39.5697278"],["-107.5253404","39.5699032"],["-107.5258721","39.5700691"],["-107.5263573","39.5701984"],["-107.5267614","39.5702945"],["-107.5272175","39.5703876"],["-107.5277118","39.5704707"],["-107.528138","39.5705293"],["-107.528582","39.5705751"],["-107.5291137","39.5706111"],["-107.5297178","39.5706354"],["-107.5304167","39.5706197"],["-107.5311745","39.5705774"],["-107.5329587","39.5703842"],["-107.5399908","39.5695316"],["-107.5407778","39.5694113"],["-107.5415262","39.5692813"],["-107.5421267","39.5691563"],["-107.5427845","39.5690002"],["-107.5435812","39.5687872"],["-107.5443363","39.5685584"],["-107.545047","39.568321"],["-107.5457521","39.5680584"],["-107.5463862","39.5678016"],["-107.5470074","39.5675239"],["-107.5475994","39.567235"],["-107.5481875","39.5669265"],["-107.5487585","39.5665976"],["-107.5493033","39.5662495"],["-107.5497575","39.5659287"],["-107.550257","39.5655356"],["-107.550758","39.5650975"],["-107.5519822","39.5638587"],["-107.554966","39.560774"],["-107.5553422","39.560424"],["-107.5557682","39.5600665"],["-107.5562085","39.5597277"],["-107.5567033","39.5593797"],["-107.5571738","39.5590807"],["-107.5575774","39.5588486"],["-107.5580149","39.5586146"],["-107.5584622","39.5583958"],["-107.5591176","39.5581123"],["-107.5598604","39.5578275"],["-107.5605221","39.5576059"],["-107.5611342","39.5574338"],["-107.5617067","39.5572862"],["-107.5621341","39.5571908"],["-107.627147","39.5456479"],["-107.6381781","39.5443083"],["-107.6395334","39.5441994"],["-107.6408966","39.5441276"],["-107.6424168","39.5440786"],["-107.6436144","39.5440898"],["-107.6449073","39.5441201"],["-107.6458097","39.5441583"],["-107.6483966","39.5443577"],["-107.6636415","39.5458723"],["-107.664736","39.5459289"],["-107.6658954","39.5458749"],["-107.6671571","39.5456817"],["-107.6682782","39.5454181"],["-107.6692759","39.5450849"],["-107.6701442","39.5447028"],["-107.6741161","39.5426501"],["-107.6806245","39.5392581"],["-107.6823709","39.5383297"],["-107.68568","39.5365956"],["-107.6873869","39.5357272"],["-107.6893856","39.5347062"],["-107.6917245","39.5336919"],["-107.6934472","39.5330765"],["-107.6966217","39.5324167"],["-107.700236","39.5321607"],["-107.7040222","39.5321115"],["-107.7111522","39.5321806"],["-107.7159396","39.5321345"],["-107.7181051","39.5319106"],["-107.7189018","39.5317498"],["-107.7196366","39.5316279"],["-107.7245193","39.5306966"],["-107.7267759","39.5303565"],["-107.728353","39.5302157"],["-107.7294444","39.5301968"],["-107.730372","39.5302203"],["-107.7360508","39.5302868"],["-107.7375382","39.5302331"],["-107.7387924","39.5301258"],["-107.7402003","39.5298624"],["-107.7508432","39.5259297"],["-107.7519422","39.5256599"],["-107.752944","39.5254524"],["-107.7541201","39.5253202"],["-107.7553595","39.5252052"],["-107.757025","39.5253195"],["-107.7658662","39.5263883"],["-107.7678024","39.5264603"],["-107.7690985","39.5263536"],["-107.7710229","39.5259792"],["-107.7721241","39.5257013"],["-107.7729863","39.5254662"],["-107.7742019","39.5251715"],["-107.7793233","39.5236424"],["-107.7812726","39.5230901"],["-107.7882695","39.5210844"],["-107.7891813","39.5208653"],["-107.791116","39.5205237"],["-107.7916711","39.5204496"],["-107.7923235","39.5203819"],["-107.7937166","39.5202911"],["-107.7943594","39.5202736"],["-107.8452833","39.5205472"],["-107.8462106","39.5205212"],["-107.8465507","39.5204992"],["-107.8469079","39.5204615"],["-107.8472016","39.5204236"],["-107.8475367","39.5203727"],["-107.8479208","39.5202985"],["-107.848304","39.5202097"],["-107.8487362","39.5200904"],["-107.8491607","39.5199556"],["-107.8842744","39.5074555"],["-107.8851572","39.5071877"],["-107.8862694","39.5068777"],["-107.8890032","39.5062333"],["-107.8979398","39.5045447"],["-107.8990392","39.5042998"],["-107.8999921","39.5040705"],["-107.9150222","39.499836"],["-107.9158432","39.4996329"],["-107.9163978","39.4995165"],["-107.9168798","39.4994328"],["-107.9173507","39.4993652"],["-107.9178695","39.4993062"],["-107.9184406","39.4992602"],["-107.9190478","39.4992361"],["-107.9196282","39.4992225"],["-107.9201245","39.4992336"],["-107.9205756","39.4992511"],["-107.9211452","39.4992964"],["-107.9217725","39.4993629"],["-107.9223836","39.4994525"],["-107.9230875","39.4995843"],["-107.9247358","39.4999775"],["-107.9264644","39.5003972"],["-107.9288044","39.5009716"],["-107.9294852","39.5011033"],["-107.9300294","39.50119"],["-107.9305417","39.501256"],["-107.9311248","39.5013089"],["-107.9316345","39.5013426"],["-107.9322901","39.501356"],["-107.9328484","39.5013384"],["-107.9334121","39.5013036"],["-107.9339207","39.5012619"],["-107.9344024","39.5012056"],["-107.9348512","39.5011319"],["-107.9355289","39.5009987"],["-107.9362","39.5008377"],["-107.9367241","39.5006918"],["-107.9373256","39.5004901"],["-107.9379175","39.500262"],["-107.9384961","39.5000048"],["-107.9390122","39.4997555"],["-107.9394806","39.4995003"],["-107.9399647","39.4992087"],["-107.940768","39.4986797"],["-107.9508284","39.491902"],["-107.9518422","39.4912751"],["-107.9548239","39.4896107"],["-107.970813","39.4808392"],["-107.9720155","39.4801795"],["-107.9729291","39.4797154"],["-107.9736063","39.4794165"],["-107.974121","39.4792164"],["-107.9745812","39.4790551"],["-107.9750715","39.4789039"],["-107.9757292","39.4787253"],["-107.9763624","39.4785842"],["-107.977219","39.4784345"],["-107.9778306","39.4783542"],["-108.0166012","39.4750219"],["-108.0173306","39.4749259"],["-108.0179502","39.4748123"],["-108.0186052","39.4746586"],["-108.0192121","39.4744842"],["-108.019739","39.4743012"],["-108.0202344","39.4741027"],["-108.0209571","39.4737762"],["-108.0387223","39.465071"],["-108.0395947","39.4646364"],["-108.0402556","39.4642924"],["-108.0406977","39.4640417"],["-108.0412531","39.4636995"],["-108.0419252","39.4632572"],["-108.0425484","39.462808"],["-108.0429995","39.4624537"],["-108.0434297","39.4620927"],["-108.0439856","39.461591"],["-108.0444105","39.4611882"],["-108.0447168","39.4608772"],["-108.0451803","39.4603694"],["-108.0458505","39.4595617"],["-108.0463405","39.4588981"],["-108.046691","39.4583763"],["-108.0471701","39.4575598"],["-108.0482566","39.4556535"],["-108.0484509","39.4553372"],["-108.0488018","39.4548259"],["-108.0490908","39.4544473"],["-108.0493792","39.4541011"],["-108.0497039","39.4537473"],["-108.0500332","39.4534183"],["-108.0576739","39.4463734"],["-108.0580498","39.4460456"],["-108.0584142","39.4457186"],["-108.058745","39.445389"],["-108.0608681","39.4434119"],["-108.0696224","39.4353215"],["-108.0705421","39.4344283"],["-108.0712261","39.4337196"],["-108.0719405","39.4329262"],["-108.0734775","39.431203"],["-108.0742279","39.4304388"],["-108.0748644","39.429809"],["-108.0763351","39.4284748"],["-108.0770451","39.4278795"],["-108.0779435","39.4271741"],["-108.0789899","39.4264055"],["-108.0800569","39.4256643"],["-108.0869356","39.4211353"],["-108.0881688","39.4202819"],["-108.0892","39.419458"],["-108.0902256","39.4185454"],["-108.0910352","39.41775"],["-108.091608","39.4171361"],["-108.0920698","39.4166045"],["-108.0928191","39.4156176"],["-108.0947504","39.4129741"],["-108.0952809","39.4122892"],["-108.0959488","39.4116043"],["-108.0964574","39.4111888"],["-108.0971134","39.4107445"],["-108.0991557","39.4095795"],["-108.1158459","39.400255"],["-108.1167865","39.3997924"],["-108.117736","39.3993612"],["-108.1224091","39.3973388"],["-108.1236","39.3967898"],["-108.1241545","39.3964987"],["-108.1246497","39.3962038"],["-108.1251241","39.3958916"],["-108.1256295","39.3955289"],["-108.1261533","39.3951103"],["-108.127083","39.394269"],["-108.1286858","39.392771"],["-108.129352","39.3921909"],["-108.1297896","39.3918695"],["-108.130255","39.391573"],["-108.1307754","39.3912815"],["-108.1312726","39.3910577"],["-108.133819","39.3901533"],["-108.141526","39.3875233"],["-108.1483221","39.3851912"],["-108.1493688","39.3847536"],["-108.1502074","39.3843444"],["-108.1511084","39.3838261"],["-108.1520221","39.3832299"],["-108.1530399","39.3824733"],["-108.1537291","39.3819149"],["-108.1545447","39.3812575"],["-108.1551731","39.3807128"],["-108.1558011","39.3801501"],["-108.1564163","39.3796395"],["-108.1570808","39.3791352"],["-108.1588225","39.3779694"],["-108.1646986","39.3741523"],["-108.1666128","39.3728774"],["-108.1674464","39.3722711"],["-108.1683385","39.3715062"],["-108.1687011","39.37113"],["-108.1689829","39.3707878"],["-108.1692273","39.3704358"],["-108.1695407","39.3699118"],["-108.1696945","39.3695402"],["-108.1699238","39.3688085"],["-108.1700547","39.3682375"],["-108.1701217","39.3677465"],["-108.1701594","39.3671502"],["-108.1703578","39.358825"],["-108.1704496","39.3576353"],["-108.1705527","39.3571364"],["-108.1707155","39.35664"],["-108.1708751","39.3562701"],["-108.1710893","39.3558584"],["-108.171315","39.3554922"],["-108.1715441","39.3551904"],["-108.1719489","39.3547334"],["-108.1722739","39.3544151"],["-108.1727513","39.3540128"],["-108.1731457","39.3537341"],["-108.1735865","39.3534603"],["-108.1742676","39.3531104"],["-108.1751327","39.3527598"],["-108.1796173","39.3512295"],["-108.180791","39.3507981"],["-108.1814301","39.3505095"],["-108.1822949","39.3500686"],["-108.1881557","39.3468494"],["-108.1894618","39.3460701"],["-108.189894","39.3457487"],["-108.190337","39.3453632"],["-108.1907276","39.3449509"],["-108.1910688","39.3445349"],["-108.1913585","39.3441064"],["-108.1916015","39.3436706"],["-108.1918929","39.3430149"],["-108.19469","39.3346867"],["-108.1949231","39.3341416"],["-108.1951662","39.3336622"],["-108.1953659","39.3333413"],["-108.1955927","39.3330334"],["-108.1959974","39.3325597"],["-108.1963718","39.3321939"],["-108.1968559","39.3317891"],["-108.1975975","39.3312485"],["-108.2047243","39.3262194"],["-108.2060426","39.3252474"],["-108.2066025","39.3247949"],["-108.2072385","39.3242262"],["-108.2077337","39.3237428"],["-108.2082535","39.3231914"],["-108.2087874","39.3225635"],["-108.2092947","39.3219026"],["-108.2097648","39.3212197"],["-108.210194","39.320512"],["-108.2106044","39.3197429"],["-108.2204681","39.2990122"],["-108.2229965","39.2937459"],["-108.2235287","39.2927463"],["-108.2242085","39.2915677"],["-108.2246503","39.2908277"],["-108.2253821","39.2896757"],["-108.2260329","39.2887543"],["-108.2268409","39.2876369"],["-108.2277635","39.2864471"],["-108.2286159","39.2854025"],["-108.2293049","39.2846401"],["-108.2296843","39.2842938"],["-108.2300714","39.2839862"],["-108.2307606","39.2835374"],["-108.2312186","39.2832733"],["-108.2316185","39.2830818"],["-108.2320106","39.2829235"],["-108.2323946","39.2827818"],["-108.2329094","39.2826259"],["-108.233797","39.2824035"],["-108.2433434","39.2801705"],["-108.2442575","39.2799055"],["-108.2449069","39.2796599"],["-108.245394","39.2794388"],["-108.2458727","39.2791908"],["-108.2463358","39.2789041"],["-108.2468273","39.2785456"],["-108.2473296","39.2781176"],["-108.247826","39.277595"],["-108.2482619","39.2770334"],["-108.2485122","39.276614"],["-108.2488292","39.2759693"],["-108.2527934","39.2667058"],["-108.2529944","39.2663262"],["-108.253129","39.2661204"],["-108.2533845","39.2657807"],["-108.2539135","39.2651848"],["-108.2542853","39.264795"],["-108.2549313","39.2641939"],["-108.2582352","39.2612432"],["-108.258568","39.260911"],["-108.2588666","39.2605292"],["-108.2590448","39.2602098"],["-108.2592001","39.2598289"],["-108.2593244","39.2592311"],["-108.2596367","39.2563158"],["-108.2596918","39.2556868"],["-108.2597025","39.2552672"],["-108.2596755","39.2548976"],["-108.2596165","39.254546"],["-108.2595259","39.2541867"],["-108.259398","39.2538175"],["-108.2592328","39.253459"],["-108.2590466","39.2531261"],["-108.2588037","39.2527663"],["-108.2582162","39.2520013"],["-108.2576149","39.2512031"],["-108.2571997","39.2504974"],["-108.2569548","39.249995"],["-108.2568019","39.2495791"],["-108.2566395","39.2490398"],["-108.2565473","39.2486481"],["-108.2564871","39.2482743"],["-108.2564381","39.2477245"],["-108.2563884","39.2465482"],["-108.2563274","39.2458571"],["-108.2562311","39.2452922"],["-108.2560136","39.2444317"],["-108.2554609","39.2425158"],["-108.2552283","39.2416723"],["-108.2551925","39.2413736"],["-108.2551947","39.2409626"],["-108.2552432","39.240651"],["-108.2553105","39.240413"],["-108.2553989","39.2401811"],["-108.2555556","39.2398766"],["-108.2557568","39.2395785"],["-108.2559637","39.2393441"],["-108.2561926","39.2391182"],["-108.25646","39.2389051"],["-108.256706","39.2387396"],["-108.2569588","39.2385961"],["-108.2572903","39.238442"],["-108.2577402","39.2382822"],["-108.2582031","39.2381596"],["-108.2585477","39.2380957"],["-108.2589125","39.2380508"],["-108.2592247","39.2380255"],["-108.259547","39.2380107"],["-108.2599563","39.2380178"],["-108.2603658","39.2380397"],["-108.2608441","39.238086"],["-108.2613338","39.2381528"],["-108.2618684","39.2382425"],["-108.2627289","39.2384229"],["-108.2633371","39.2385496"],["-108.2643553","39.2387663"],["-108.2649086","39.2388571"],["-108.265293","39.2388921"],["-108.2656654","39.2389063"],["-108.2660011","39.2388987"],["-108.2664066","39.2388672"],["-108.2668793","39.2388054"],["-108.2673822","39.2387008"],["-108.2679525","39.238528"],["-108.2683962","39.2383588"],["-108.2687795","39.2381739"],["-108.2691236","39.237972"],["-108.2694622","39.2377534"],["-108.2698095","39.2374668"],["-108.2702532","39.2370387"],["-108.2716185","39.235575"],["-108.2719816","39.2351371"],["-108.2721926","39.2347778"],["-108.2723558","39.2344166"],["-108.2724386","39.2341377"],["-108.2724987","39.233805"],["-108.2725105","39.2335225"],["-108.2724908","39.2332272"],["-108.2724171","39.2328444"],["-108.272288","39.2324675"],["-108.2721647","39.2322174"],["-108.2719955","39.2319421"],["-108.2717344","39.2316274"],["-108.2714631","39.2313629"],["-108.2711941","39.2311429"],["-108.2708824","39.2309336"],["-108.270463","39.2307088"],["-108.2701012","39.2305592"],["-108.2697352","39.2304353"],["-108.2692565","39.2303044"],["-108.2682639","39.2301097"],["-108.2667371","39.2298381"],["-108.2658226","39.2296309"],["-108.26531","39.2294448"],["-108.264716","39.2291729"],["-108.2639242","39.2287726"],["-108.2630901","39.228359"],["-108.2625799","39.228171"],["-108.2617343","39.2279183"],["-108.2605031","39.2275759"],["-108.2594252","39.2272708"],["-108.2588702","39.2270584"],["-108.2582783","39.22672"],["-108.2579529","39.2264751"],["-108.2575625","39.2260857"],["-108.2572761","39.2257164"],["-108.2570923","39.2253861"],["-108.2569265","39.2250306"],["-108.2563727","39.2235097"],["-108.2561178","39.222751"],["-108.256052","39.2223221"],["-108.2560496","39.2219761"],["-108.2562102","39.2202405"],["-108.2563414","39.21876"],["-108.2564695","39.2167271"],["-108.2564535","39.2114093"],["-108.2565079","39.2109461"],["-108.2566017","39.2106237"],["-108.2567161","39.2103216"],["-108.2569414","39.2099081"],["-108.257253","39.2094921"],["-108.2576076","39.2091365"],["-108.2579653","39.2088437"],["-108.2583257","39.2086138"],["-108.2586899","39.2084215"],["-108.2591168","39.2082359"],["-108.2607938","39.2076395"],["-108.2614146","39.207389"],["-108.261716","39.2072351"],["-108.2619989","39.2070629"],["-108.2624511","39.206724"],["-108.2629314","39.2062951"],["-108.2646121","39.2046082"],["-108.265126","39.2040392"],["-108.2657415","39.2032832"],["-108.2664755","39.2023318"],["-108.2671317","39.2014272"],["-108.2674125","39.2008995"],["-108.2675376","39.2006027"],["-108.2676344","39.2003224"],["-108.2677149","39.2000108"],["-108.2677984","39.1995875"],["-108.2678821","39.1991107"],["-108.2679705","39.1986139"],["-108.2680603","39.1982227"],["-108.2681718","39.1979035"],["-108.2683023","39.1976321"],["-108.2684302","39.1974184"],["-108.2685916","39.1972023"],["-108.2687333","39.1970395"],["-108.2689176","39.1968508"],["-108.2691615","39.1966464"],["-108.2693305","39.1965176"],["-108.269767","39.1962747"],["-108.2702651","39.1960566"],["-108.2707999","39.1958726"],["-108.2713999","39.1957292"],["-108.2718536","39.1956954"],["-108.2725255","39.1956929"],["-108.2743582","39.1957804"],["-108.2755832","39.1958403"],["-108.2766564","39.1958857"],["-108.2777895","39.195929"],["-108.2781599","39.1959137"],["-108.2785165","39.1958711"],["-108.2790058","39.1957872"],["-108.2793798","39.1956829"],["-108.2797129","39.1955579"],["-108.2799744","39.195437"],["-108.2802231","39.1952959"],["-108.2804834","39.1951274"],["-108.2807033","39.1949459"],["-108.2808987","39.1947702"],["-108.2810795","39.194577"],["-108.2813353","39.1942325"],["-108.2815121","39.1939232"],["-108.2816412","39.1936384"],["-108.281748","39.193295"],["-108.2818108","39.1929593"],["-108.2818324","39.1925413"],["-108.2817886","39.1921302"],["-108.2816449","39.1916029"],["-108.2812642","39.1907564"],["-108.280919","39.1900083"],["-108.2807317","39.1895674"],["-108.2805875","39.1891157"],["-108.2805224","39.1886713"],["-108.2805209","39.1874309"],["-108.2806429","39.1835716"],["-108.2806639","39.1833701"],["-108.2807175","39.1832031"],["-108.2807823","39.1830202"],["-108.2809119","39.1827285"],["-108.2810947","39.1824347"],["-108.2815125","39.1819318"],["-108.2826144","39.1807346"],["-108.2833839","39.1799266"],["-108.2839142","39.1794387"],["-108.2844871","39.1789379"],["-108.2849693","39.1785337"],["-108.2855074","39.1781108"],["-108.2860244","39.1777507"],["-108.2869403","39.1772163"],["-108.287876","39.1767082"],["-108.2887789","39.1762417"],["-108.2911451","39.1750973"],["-108.291894","39.174703"],["-108.2923732","39.1743835"],["-108.292834","39.1740023"],["-108.2933268","39.173508"],["-108.293878","39.1728609"],["-108.2956216","39.1707675"],["-108.2964997","39.1697775"],["-108.2974671","39.1687759"],["-108.2984477","39.167807"],["-108.2989729","39.1672532"],["-108.2992967","39.166845"],["-108.2995785","39.1664135"],["-108.2998195","39.1659561"],["-108.3000222","39.1654947"],["-108.3001382","39.1651279"],["-108.3002302","39.1647667"],["-108.3003241","39.1642406"],["-108.3011923","39.1565537"],["-108.3013162","39.1558235"],["-108.3014504","39.1553259"],["-108.3016285","39.1548293"],["-108.3018758","39.1542921"],["-108.3021689","39.153774"],["-108.3024414","39.1533667"],["-108.3027535","39.1529636"],["-108.3031654","39.1525075"],["-108.3035944","39.152086"],["-108.304006","39.1517374"],["-108.3044376","39.1514158"],["-108.3049464","39.1510708"],["-108.3054549","39.150782"],["-108.3058841","39.1505592"],["-108.3062881","39.1503699"],["-108.3066987","39.1502046"],["-108.30708","39.1500619"],["-108.3075562","39.1499111"],["-108.3087479","39.1495934"],["-108.3118316","39.1487933"],["-108.3124682","39.1485873"],["-108.3129783","39.1483686"],["-108.3134462","39.1481051"],["-108.3138566","39.1478202"],["-108.3141775","39.1475489"],["-108.3144269","39.1472899"],["-108.3146295","39.1470526"],["-108.3149384","39.14659"],["-108.3152042","39.1459886"],["-108.3153289","39.1455102"],["-108.3154178","39.14476"],["-108.3155887","39.1429795"],["-108.3156432","39.1424523"],["-108.3157341","39.1417809"],["-108.3158708","39.1412542"],["-108.31615","39.1405626"],["-108.316379","39.1401475"],["-108.3165798","39.1398367"],["-108.3169722","39.1393291"],["-108.3175443","39.1387279"],["-108.3179334","39.1384029"],["-108.3184634","39.1380189"],["-108.3193977","39.137404"],["-108.3204982","39.1366824"],["-108.3208614","39.1363957"],["-108.3211681","39.136117"],["-108.321426","39.1358403"],["-108.3216286","39.1355768"],["-108.3218587","39.1352305"],["-108.3220617","39.134848"],["-108.3222715","39.1343192"],["-108.3225912","39.133422"],["-108.3227522","39.1329966"],["-108.322884","39.1327297"],["-108.3231009","39.1323804"],["-108.3233331","39.1320844"],["-108.3237418","39.1316621"],["-108.3244772","39.1309511"],["-108.3247462","39.1306501"],["-108.3249194","39.1303879"],["-108.3250536","39.1301207"],["-108.3251279","39.1298861"],["-108.3251656","39.129617"],["-108.3251728","39.1293537"],["-108.3251477","39.1290928"],["-108.3250816","39.1288465"],["-108.3249726","39.1285935"],["-108.3248128","39.1283293"],["-108.324499","39.1279129"],["-108.323913","39.1271923"],["-108.3233424","39.126488"],["-108.323056","39.1260411"],["-108.3228723","39.1256099"],["-108.3228169","39.1254233"],["-108.3227752","39.1252066"],["-108.3227473","39.1249544"],["-108.3227412","39.1247482"],["-108.3227628","39.1244512"],["-108.3228062","39.1242233"],["-108.3228812","39.1239517"],["-108.32311","39.1232719"],["-108.3234527","39.1223338"],["-108.3237078","39.1216805"],["-108.3238451","39.1214109"],["-108.3240168","39.1211363"],["-108.3242575","39.1208415"],["-108.3246171","39.1204984"],["-108.3249414","39.1202606"],["-108.3257241","39.1198065"],["-108.3282444","39.1184434"],["-108.3286126","39.1182768"],["-108.3290487","39.1181196"],["-108.3295564","39.1179881"],["-108.3300249","39.1179217"],["-108.3304641","39.1178936"],["-108.3308018","39.1179027"],["-108.3311468","39.1179343"],["-108.3315673","39.1180001"],["-108.3326076","39.1182607"],["-108.3363529","39.1192321"],["-108.337014","39.1193759"],["-108.3374415","39.1194354"],["-108.3378709","39.1194825"],["-108.3382908","39.1195066"],["-108.3387076","39.1195006"],["-108.3391192","39.1194842"],["-108.3396026","39.1194379"],["-108.3400565","39.1193686"],["-108.340579","39.1192563"],["-108.3409656","39.1191567"],["-108.3421463","39.1187725"],["-108.3450255","39.1178334"],["-108.3458507","39.1176076"],["-108.3465359","39.1174391"],["-108.3472691","39.1172868"],["-108.3479089","39.1171673"],["-108.3487558","39.117039"],["-108.3495427","39.1169462"],["-108.3505766","39.1168655"],["-108.3517514","39.1168088"],["-108.3525031","39.1168135"],["-108.3532073","39.1168348"],["-108.3539798","39.1168722"],["-108.354824","39.1169576"],["-108.3559894","39.1171117"],["-108.3571189","39.117308"],["-108.3580591","39.1175173"],["-108.3588864","39.1177331"],["-108.3597069","39.1179891"],["-108.3645459","39.1196679"],["-108.3651325","39.1198434"],["-108.3660355","39.1200681"],["-108.3667877","39.1202036"],["-108.3693184","39.1204905"],["-108.3700035","39.1205434"],["-108.3723874","39.1206705"],["-108.373516","39.1206997"],["-108.3743346","39.1206885"],["-108.3750986","39.1206558"],["-108.3759336","39.1205703"],["-108.3766738","39.1204609"],["-108.4256422","39.1088224"],["-108.428082","39.1082835"],["-108.4310909","39.1077849"],["-108.4321926","39.1077201"],["-108.4383197","39.1074793"],["-108.4387603","39.1074411"],["-108.4392443","39.1073782"],["-108.4398474","39.1072783"],["-108.4402061","39.107215"],["-108.440475","39.1071676"],["-108.4407621","39.1071186"],["-108.4409661","39.1070822"],["-108.4411971","39.1070305"],["-108.4415238","39.1069413"],["-108.441903","39.1068372"],["-108.4423906","39.1067151"],["-108.4442829","39.1063118"],["-108.4451925","39.1061395"],["-108.4459571","39.1059991"],["-108.4461555","39.1059362"],["-108.4463537","39.1058622"],["-108.4465375","39.1057759"],["-108.4466988","39.1056813"],["-108.4468198","39.1055955"],["-108.4469373","39.105502"],["-108.4470613","39.1053869"],["-108.4471579","39.1052764"],["-108.4472576","39.105151"],["-108.4473379","39.1050238"],["-108.4474183","39.1048736"],["-108.4474657","39.1047574"],["-108.4475008","39.1046377"],["-108.4475258","39.1045035"],["-108.4475395","39.1043678"],["-108.4475395","39.1042742"],["-108.4475359","39.1041899"],["-108.4475284","39.1040913"],["-108.4475111","39.103966"],["-108.4474848","39.1038235"],["-108.4474285","39.1035711"],["-108.4473506","39.1032519"],["-108.4471935","39.1026405"],["-108.4471696","39.1025004"],["-108.4471515","39.1023592"],["-108.447146","39.102223"],["-108.4471492","39.1020973"],["-108.4471661","39.1019016"],["-108.4472012","39.1017102"],["-108.4472493","39.101529"],["-108.4473713","39.1012204"],["-108.4475621","39.100866"],["-108.4479753","39.1001802"],["-108.4483523","39.0994927"],["-108.4485031","39.0991674"],["-108.4486012","39.0989146"],["-108.4486968","39.0986104"],["-108.448808","39.098079"],["-108.4490155","39.0969893"],["-108.4490926","39.0966372"],["-108.4492231","39.0962069"],["-108.4493838","39.0958042"],["-108.4495251","39.0955255"],["-108.4497368","39.0951792"],["-108.4500219","39.0947974"],["-108.4502128","39.0945645"],["-108.4503726","39.0943989"],["-108.4506326","39.0941628"],["-108.4515136","39.0934232"],["-108.4526115","39.0925085"],["-108.4537007","39.0916017"],["-108.4574631","39.0885233"],["-108.4577198","39.0883074"],["-108.457854","39.0881933"],["-108.4579976","39.088068"],["-108.4580589","39.0880158"],["-108.459324","39.0870101"],["-108.4598013","39.0866492"],["-108.460052","39.0864702"],["-108.4603292","39.086304"],["-108.4605511","39.0861813"],["-108.460898","39.0860152"],["-108.4612683","39.0858603"],["-108.4616299","39.0857338"],["-108.4620403","39.085611"],["-108.4627122","39.0854491"],["-108.4683476","39.0841126"],["-108.4685795","39.0840572"],["-108.4805865","39.0811129"],["-108.4821351","39.0806772"],["-108.4841634","39.0801319"],["-108.4866175","39.0795427"],["-108.4922184","39.0782131"],["-108.4928918","39.0780745"],["-108.4932114","39.0780261"],["-108.4935013","39.0779965"],["-108.4937838","39.0779793"],["-108.4941268","39.0779678"],["-108.4964003","39.0779399"],["-108.4964762","39.0779389"],["-108.4966877","39.0779383"],["-108.4973607","39.0779117"],["-108.4975996","39.0778909"],["-108.4978218","39.0778655"],["-108.4980615","39.0778275"],["-108.4984177","39.0777445"],["-108.4988485","39.0776349"],["-108.499203","39.0774917"],["-108.4994759","39.0773738"],["-108.4998215","39.0771879"],["-108.5000179","39.0770745"],["-108.5000873","39.0770314"],["-108.5005482","39.0767433"],["-108.5011479","39.0763869"],["-108.5015251","39.0762019"],["-108.5018148","39.0760728"],["-108.5019918","39.0760033"],["-108.5022754","39.0759153"],["-108.5132705","39.0734052"],["-108.5142447","39.0731779"],["-108.5218146","39.0714458"],["-108.5229349","39.0712169"],["-108.523545","39.0711151"],["-108.5269763","39.0706313"],["-108.5275119","39.0705486"],["-108.528871","39.0702813"],["-108.5428233","39.0669686"],["-108.5430693","39.0668956"],["-108.5432555","39.0668323"],["-108.543418","39.0667715"],["-108.5449827","39.0660718"],["-108.5458422","39.0656922"],["-108.5460986","39.0655985"],["-108.5463583","39.0655217"],["-108.5465951","39.0654601"],["-108.5468181","39.065418"],["-108.5470657","39.0653803"],["-108.5473002","39.065359"],["-108.5477681","39.0653465"],["-108.5524275","39.0653462"],["-108.5524289","39.0652648"],["-108.5524243","39.0648771"],["-108.5524137","39.0645493"],["-108.5524132","39.0643831"],["-108.550854","39.0643876"],["-108.5503141","39.0644224"],["-108.5500903","39.0644533"],["-108.5496921","39.0645298"],["-108.5487176","39.0647542"],["-108.5478754","39.0649481"],["-108.5471484","39.0651217"],["-108.5465666","39.0652771"],["-108.5462786","39.0653619"],["-108.5459289","39.0654968"],["-108.5451813","39.0658184"],["-108.5432445","39.0666791"],["-108.543084","39.0667354"],["-108.5428465","39.066814"],["-108.542754","39.0668397"],["-108.5295013","39.069987"],["-108.5283369","39.0702539"],["-108.5233814","39.0710058"],["-108.5225811","39.0711403"],["-108.5219403","39.0712684"],["-108.5206347","39.0715552"],["-108.5196986","39.0717022"],["-108.519221","39.071784"],["-108.5187253","39.0718779"],["-108.5169313","39.0722658"],["-108.5157983","39.0725083"],["-108.5154879","39.0725165"],["-108.5153443","39.0724623"],["-108.515296","39.0723397"],["-108.5152839","39.0720586"],["-108.5152555","39.0719324"],["-108.5152319","39.0690298"],["-108.5152159","39.0689303"],["-108.5151719","39.0687795"],["-108.5151542","39.0652738"],["-108.5151139","39.0642607"],["-108.5150952","39.0631291"],["-108.5150932","39.062909"],["-108.5150937","39.0628264"],["-108.5150952","39.0627462"],["-108.5151019","39.0613057"],["-108.5151166","39.0571636"],["-108.5151441","39.0522349"],["-108.515179","39.0505886"],["-108.5151835","39.0504558"],["-108.5152774","39.0476984"],["-108.5153058","39.0459944"],["-108.5153133","39.0457114"],["-108.5153349","39.0447666"],["-108.5153441","39.0443685"],["-108.5153491","39.043027"],["-108.5153269","39.0424223"],["-108.5152844","39.0303815"],["-108.5153129","39.0302102"],["-108.5153165","39.0301353"],["-108.5153177","39.0300951"],["-108.5153079","39.0300255"],["-108.5152942","39.0299331"],["-108.5152265","39.0298251"],["-108.514466","39.0295057"],["-108.5121101","39.0285839"],["-108.5096826","39.027738"],["-108.5090928","39.0275957"],["-108.507083","39.0269256"],["-108.5046037","39.0260801"],["-108.499612","39.0242168"],["-108.4903127","39.0214714"],["-108.4893858","39.0211864"],["-108.4875169","39.0205672"],["-108.4865567","39.0202155"],["-108.4829756","39.0186557"],["-108.482062","39.018202"],["-108.4812204","39.0177639"],["-108.4808686","39.0175455"],["-108.4804861","39.0173266"],["-108.47535","39.0146229"],["-108.4733788","39.0135673"],["-108.4715162","39.0125206"],["-108.4706313","39.0119628"],["-108.469823","39.0114262"],["-108.4692824","39.0110454"],["-108.4688154","39.0106976"],["-108.4683689","39.0103552"],["-108.4676723","39.0097746"],["-108.4671409","39.0093037"],["-108.4665535","39.0087552"],["-108.4646848","39.0067793"],["-108.4527249","38.9939044"],["-108.452172","38.9933879"],["-108.4465905","38.9873178"],["-108.4461956","38.9868853"],["-108.4426372","38.9830033"],["-108.442219","38.9825019"],["-108.4416442","38.9818661"],["-108.4409479","38.9811555"],["-108.4298526","38.9704971"],["-108.4283048","38.9690068"],["-108.4278708","38.9685457"],["-108.4274113","38.9680185"],["-108.4269761","38.9674639"],["-108.4265174","38.9668337"],["-108.4258501","38.9659142"],["-108.4138383","38.9500842"],["-108.4130722","38.9491388"],["-108.4126602","38.9486857"],["-108.4122832","38.9482947"],["-108.4118804","38.9479026"],["-108.4114356","38.9474944"],["-108.4101265","38.9464026"],["-108.3846959","38.9257966"],["-108.383536","38.9248374"],["-108.3832659","38.9245779"],["-108.3829565","38.9242517"],["-108.3826979","38.9239445"],["-108.382227","38.9232926"],["-108.3567242","38.8846395"],["-108.3562479","38.8839475"],["-108.355946","38.8835501"],["-108.3555419","38.8830539"],["-108.3548963","38.8823329"],["-108.3541898","38.8816331"],["-108.3536574","38.8811604"],["-108.3529988","38.8806149"],["-108.3524949","38.8802307"],["-108.352064","38.8799216"],["-108.3515697","38.8795935"],["-108.3121374","38.85589"],["-108.3117805","38.8556488"],["-108.3114227","38.8553827"],["-108.3110516","38.8550803"],["-108.3106724","38.8547345"],["-108.3097767","38.8538151"],["-108.3006199","38.8441872"],["-108.2996362","38.8431789"],["-108.299172","38.8427262"],["-108.2987644","38.8422835"],["-108.2984723","38.8419442"],["-108.2982372","38.8416029"],["-108.2980591","38.8413038"],["-108.2978219","38.8408262"],["-108.2976609","38.8404235"],["-108.2975751","38.8401006"],["-108.2975346","38.8398899"],["-108.2974909","38.8394629"],["-108.2975338","38.8387508"],["-108.2982547","38.831432"],["-108.2983181","38.8305608"],["-108.2983208","38.8302357"],["-108.2983033","38.8299514"],["-108.2982775","38.8296678"],["-108.2960792","38.8154373"],["-108.2960111","38.8150763"],["-108.2959416","38.814796"],["-108.2958426","38.8144871"],["-108.2957245","38.8142071"],["-108.2956069","38.8139582"],["-108.2954938","38.8137379"],["-108.2953443","38.8135027"],["-108.2951989","38.8132923"],["-108.2950292","38.8130589"],["-108.2947978","38.8127977"],["-108.294581","38.8125697"],["-108.2943775","38.8123832"],["-108.2941599","38.8122057"],["-108.2939404","38.8120359"],["-108.2937166","38.8118695"],["-108.293495","38.8117231"],["-108.2932174","38.8115657"],["-108.2929377","38.8114231"],["-108.2926668","38.8113134"],["-108.2923791","38.8112061"],["-108.2921127","38.8111219"],["-108.2918815","38.8110565"],["-108.2915978","38.8109828"],["-108.2913561","38.8109298"],["-108.2910842","38.8108819"],["-108.2907502","38.8108351"],["-108.2903314","38.8107921"],["-108.2899589","38.8107821"],["-108.289574","38.810791"],["-108.2892701","38.8108073"],["-108.2889496","38.8108417"],["-108.2886707","38.8108783"],["-108.2884422","38.8109182"],["-108.2882124","38.8109678"],["-108.2861788","38.8114946"],["-108.2857677","38.8115719"],["-108.2853556","38.8116267"],["-108.284915","38.8116666"],["-108.2845804","38.8116848"],["-108.2840654","38.8116806"],["-108.2835252","38.8116451"],["-108.282946","38.8115578"],["-108.2826963","38.8114999"],["-108.2822172","38.8113683"],["-108.2819868","38.8112948"],["-108.2817542","38.811202"],["-108.2810166","38.8108832"],["-108.2805286","38.8105702"],["-108.2801293","38.8102759"],["-108.2796868","38.8098171"],["-108.279238","38.8093026"],["-108.2787568","38.808733"],["-108.2780239","38.8078999"],["-108.2771176","38.8069125"],["-108.2760695","38.8058479"],["-108.2752876","38.805109"],["-108.2745826","38.8044871"],["-108.2739852","38.8039885"],["-108.2724551","38.8027964"],["-108.2447848","38.7832424"],["-108.2426854","38.7817815"],["-108.2420122","38.7813496"],["-108.2410285","38.7808541"],["-108.2332216","38.7773301"],["-108.2327455","38.777078"],["-108.2322087","38.7767674"],["-108.2317774","38.776474"],["-108.2311417","38.7759915"],["-108.2305832","38.7754806"],["-108.2302263","38.7751066"],["-108.2298696","38.7747056"],["-108.2293473","38.7739756"],["-108.2290856","38.7734864"],["-108.2286485","38.7726011"],["-108.2282744","38.7718523"],["-108.2279913","38.7713602"],["-108.2276201","38.7708151"],["-108.2272939","38.7704268"],["-108.2270394","38.7701467"],["-108.2267792","38.7698985"],["-108.2264809","38.7696462"],["-108.2261283","38.7693837"],["-108.2255212","38.768988"],["-108.2249825","38.7686884"],["-108.2245182","38.7684732"],["-108.2238057","38.7681805"],["-108.2225612","38.7677807"],["-108.2179212","38.7665662"],["-108.1735602","38.7550195"],["-108.1722408","38.7546421"],["-108.1714543","38.7543539"],["-108.16502","38.7514665"],["-108.1645183","38.7512591"],["-108.1641799","38.7511392"],["-108.1639187","38.7510579"],["-108.1636153","38.7509795"],["-108.1633565","38.7509196"],["-108.1629862","38.7508491"],["-108.1625207","38.7507763"],["-108.1620594","38.7507282"],["-108.1617238","38.7507062"],["-108.1614706","38.7506994"],["-108.1611934","38.7506974"],["-108.1609579","38.7507036"],["-108.1606922","38.7507199"],["-108.1603675","38.7507532"],["-108.1599751","38.7508024"],["-108.1596388","38.7508585"],["-108.15916","38.750972"],["-108.1587064","38.751087"],["-108.1583611","38.7512061"],["-108.1579887","38.7513469"],["-108.1575989","38.7515147"],["-108.1572038","38.7517051"],["-108.1568192","38.7518818"],["-108.1565344","38.7517465"],["-108.1564109","38.7517093"],["-108.1563205","38.7516994"],["-108.1561816","38.7516933"],["-108.1559016","38.7516993"],["-108.1535649","38.7517981"],["-108.153105","38.7518131"],["-108.1528951","38.7518108"],["-108.1527382","38.7517976"],["-108.1524539","38.7517466"],["-108.1521879","38.7516824"],["-108.1519331","38.7515978"],["-108.151603","38.7514388"],["-108.1514052","38.7513147"],["-108.1512144","38.7511845"],["-108.1509879","38.7510037"],["-108.1507471","38.7507821"],["-108.150266","38.7503076"],["-108.1497905","38.7498386"],["-108.149455","38.7495256"],["-108.1492305","38.7493461"],["-108.1489493","38.7491547"],["-108.1482105","38.7486935"],["-108.1479851","38.7485735"],["-108.1478429","38.748513"],["-108.1476687","38.7484498"],["-108.1471741","38.7483108"],["-108.1459894","38.7480125"],["-108.1454448","38.7479075"],["-108.1448521","38.7478015"],["-108.1445552","38.7477551"],["-108.1438831","38.7476586"],["-108.1434375","38.7475977"],["-108.142782","38.7475183"],["-108.1420981","38.7474981"],["-108.1418282","38.7475068"],["-108.1415145","38.7475308"],["-108.1411538","38.7475725"],["-108.1408342","38.7476201"],["-108.1405277","38.7476961"],["-108.1399435","38.7478684"],["-108.1394675","38.748007"],["-108.1389397","38.7481644"],["-108.1386808","38.7482255"],["-108.1384617","38.7482722"],["-108.1382627","38.7482886"],["-108.1293628","38.7482741"],["-108.1284305","38.7482629"],["-108.1274815","38.7482527"],["-108.1270966","38.7482797"],["-108.1268916","38.7483089"],["-108.1261575","38.7484518"],["-108.1235923","38.7489451"],["-108.1232646","38.7490007"],["-108.123055","38.7490275"],["-108.1228277","38.7490415"],["-108.1226407","38.7490424"],["-108.1224368","38.7490301"],["-108.1221499","38.7489996"],["-108.1219688","38.7489658"],["-108.1217973","38.7489248"],["-108.1215337","38.7488449"],["-108.1213799","38.7487901"],["-108.121226","38.748725"],["-108.1210026","38.748612"],["-108.1207901","38.748483"],["-108.1204995","38.7482828"],["-108.1198482","38.7478444"],["-108.1166449","38.74571"],["-108.1162008","38.7454196"],["-108.1157351","38.7451102"],["-108.1114633","38.742301"],["-108.1108757","38.7418662"],["-108.1101491","38.741301"],["-108.1100732","38.7412197"],["-108.1100511","38.741171"],["-108.1100042","38.7409951"],["-108.089466","38.7410047"],["-108.0891122","38.7410179"],["-108.0889311","38.7410405"],["-108.0887717","38.7410806"],["-108.088609","38.7411401"],["-108.0884858","38.7412027"],["-108.0883697","38.7412753"],["-108.0882246","38.7413816"],["-108.0880484","38.7415154"],["-108.0879055","38.7415967"],["-108.0877584","38.7416547"],["-108.0875994","38.741695"],["-108.0874196","38.7417173"],["-108.0872282","38.7417185"],["-108.0870455","38.7417045"],["-108.0868665","38.7416736"],["-108.0867016","38.7416293"],["-108.0865428","38.7415683"],["-108.0863782","38.7414754"],["-108.0862702","38.7414024"],["-108.086094","38.7412593"],["-108.0859452","38.7411421"],["-108.0858183","38.7410686"],["-108.0856793","38.7410178"],["-108.085537","38.7409865"],["-108.0853859","38.7409674"],["-108.085071","38.7409643"],["-108.0833374","38.7409723"],["-108.0830276","38.7409639"],["-108.0827823","38.7409489"],["-108.0825473","38.7409039"],["-108.082256","38.7408399"],["-108.0820256","38.7407818"],["-108.0818573","38.740735"],["-108.0815246","38.7406146"],["-108.0813239","38.7405459"],["-108.0812502","38.7405244"],["-108.0811454","38.7404818"],["-108.0810353","38.7404479"],["-108.0809322","38.7404185"],["-108.0808004","38.7403848"],["-108.0806586","38.7403572"],["-108.0805201","38.7403356"],["-108.0801116","38.7402947"],["-108.0794506","38.7402843"],["-108.0775875","38.7402373"],["-108.0779824","38.7390276"],["-108.0780619","38.7388127"],["-108.078141","38.7385296"],["-108.0781743","38.7381811"],["-108.0781694","38.7379634"],["-108.0781465","38.7377102"],["-108.0780759","38.7374229"],["-108.0779243","38.7370405"],["-108.0777279","38.7367241"],["-108.0775272","38.7364684"],["-108.0770927","38.7360544"],["-108.0753166","38.7344765"],["-108.0726541","38.7320976"],["-108.0710154","38.7306229"],["-108.0708036","38.7304775"],["-108.0701108","38.7300602"],["-108.0693722","38.7295764"],["-108.0690508","38.7293436"],["-108.0686201","38.7289863"],["-108.0680092","38.7284635"],["-108.06616","38.726873"],["-108.0657657","38.726535"],["-108.0653756","38.726205"],["-108.0646763","38.7255995"],["-108.0450591","38.7082552"],["-108.0445366","38.7078388"],["-108.0437595","38.7073515"],["-108.0201036","38.6941727"],["-108.0190531","38.6935416"],["-108.0187159","38.6933044"],["-108.0184181","38.6930784"],["-108.0164472","38.6912482"],["-108.0133541","38.6883267"],["-108.0128508","38.6878252"],["-108.0124761","38.6873808"],["-108.0119099","38.6866086"],["-108.0029632","38.673841"],["-108.0008201","38.6708773"],["-107.9993444","38.6687718"],["-107.9986779","38.6678161"],["-107.9942953","38.6615765"],["-107.9936938","38.6605619"],["-107.9934583","38.6600274"],["-107.9933435","38.6597055"],["-107.9889344","38.6448699"],["-107.9875617","38.6387927"],["-107.9872321","38.6372864"],["-107.9861063","38.6322357"],["-107.9858147","38.6307723"],["-107.9856999","38.6297388"],["-107.9855126","38.6278172"],["-107.9852281","38.6247208"],["-107.9848906","38.6210879"],["-107.9848018","38.6204212"],["-107.9847059","38.6200324"],["-107.9845997","38.6196731"],["-107.9843667","38.6191549"],["-107.9836941","38.6181649"],["-107.983076","38.617493"],["-107.9751833","38.6095001"],["-107.9747697","38.6090277"],["-107.9745443","38.608729"],["-107.9743641","38.6084566"],["-107.9741903","38.6081426"],["-107.9740406","38.6078195"],["-107.9738868","38.6074126"],["-107.9737887","38.6069913"],["-107.9737086","38.6064133"],["-107.9736561","38.6059111"],["-107.9729912","38.5971148"],["-107.9729321","38.5965062"],["-107.9727749","38.5957625"],["-107.9726074","38.595264"],["-107.9723681","38.5948305"],["-107.9720511","38.5941778"],["-107.971487","38.5930957"],["-107.9701705","38.590634"],["-107.9697356","38.5897994"],["-107.9577232","38.5670878"],["-107.9513233","38.5548283"],["-107.9504237","38.5532901"],["-107.9488937","38.5508502"],["-107.9474565","38.5486223"],["-107.9464438","38.5470771"],["-107.9420687","38.540289"],["-107.9393411","38.5359585"],["-107.9387642","38.5350299"],["-107.9366828","38.5317364"],["-107.9362316","38.5311372"],["-107.9357525","38.5305479"],["-107.9351614","38.5299043"],["-107.9343634","38.5291108"],["-107.9226247","38.5189929"],["-107.9197583","38.5167554"],["-107.9177609","38.515181"],["-107.9146196","38.5127123"],["-107.9129212","38.5112153"],["-107.9108414","38.5092963"],["-107.9057672","38.5041909"],["-107.9052966","38.5038022"],["-107.9046695","38.5031613"],["-107.9046039","38.5030923"],["-107.9043542","38.5028591"],["-107.9040475","38.5025759"],["-107.9035275","38.5021173"],["-107.9029371","38.5015941"],["-107.8904478","38.4903566"],["-107.8899354","38.4898825"],["-107.8891309","38.48925"],["-107.8879474","38.4881158"],["-107.8854028","38.4858414"],["-107.8819959","38.4825578"],["-107.8794351","38.4802782"],["-107.8792953","38.4801273"],["-107.877782","38.47876"],["-107.8777206","38.4787008"],["-107.8767836","38.4778497"],["-107.8762819","38.477409"],["-107.8761983","38.4773015"],["-107.876156","38.4772542"],["-107.8760876","38.4772018"],["-107.8759943","38.4771114"],["-107.8756209","38.4768106"],["-107.8705897","38.4722431"],["-107.8701662","38.4718769"],["-107.8699766","38.4717242"],["-107.869733","38.4715068"],["-107.8695014","38.4712977"],["-107.8692351","38.4710482"],["-107.8689667","38.4708081"],["-107.8687189","38.4705883"],["-107.8684347","38.4703136"],["-107.8681521","38.4700854"],["-107.8676842","38.4696774"],["-107.8676452","38.4696315"],["-107.8675721","38.4695701"],["-107.8675067","38.4695033"],["-107.8674632","38.4694583"],["-107.8673016","38.4693049"],["-107.8671108","38.4691324"],["-107.8669364","38.4689412"],["-107.8668133","38.4687961"],["-107.8667247","38.4686696"],["-107.8666162","38.4684849"],["-107.8664684","38.4681152"],["-107.8664119","38.4679385"],["-107.866377","38.4677803"],["-107.8663718","38.4675773"],["-107.8663693","38.4674185"],["-107.8663832","38.4655199"],["-107.8663708","38.4620907"],["-107.8663228","38.4529302"],["-107.8663264","38.4518166"],["-107.86635","38.4508343"],["-107.8664137","38.4491109"],["-107.8668713","38.4430585"],["-107.8669083","38.4421857"],["-107.8669058","38.4409739"],["-107.8668421","38.4397336"],["-107.8666988","38.4376358"],["-107.8666653","38.4374039"],["-107.8665417","38.4359524"],["-107.8664129","38.4342454"],["-107.8663603","38.4337314"],["-107.8662502","38.4332826"],["-107.8661223","38.4329656"],["-107.8658928","38.4325439"],["-107.8656529","38.4321857"],["-107.8654312","38.4320241"],["-107.8650882","38.4315671"],["-107.8644761","38.4308046"],["-107.8628482","38.4288958"],["-107.8621478","38.4280652"],["-107.8481791","38.4119384"],["-107.840551","38.4031682"],["-107.8383299","38.400626"],["-107.8378385","38.4000617"],["-107.8358043","38.3976798"],["-107.8138055","38.3722664"],["-107.8118362","38.3699921"],["-107.8090009","38.3667725"],["-107.8079512","38.3655225"],["-107.8053082","38.3624717"],["-107.803836","38.3607478"],["-107.8029372","38.3596941"],["-107.7938665","38.3493086"],["-107.7902472","38.3450055"],["-107.7894562","38.3438547"],["-107.7890753","38.343223"],["-107.7883195","38.3416428"],["-107.7872976","38.3396268"],["-107.7850044","38.3352986"],["-107.7844009","38.3341397"],["-107.7839126","38.3333214"],["-107.780823","38.3288422"],["-107.7800321","38.3277256"],["-107.7789234","38.3260775"],["-107.7768408","38.3230673"],["-107.7763067","38.3221663"],["-107.7758231","38.3212023"],["-107.7754852","38.3202274"],["-107.7751632","38.3180452"],["-107.7744055","38.3112376"],["-107.7741878","38.3104547"],["-107.7739021","38.3095768"],["-107.7731934","38.3076922"],["-107.7730846","38.3070511"],["-107.773044","38.3063925"],["-107.7734424","38.3017151"],["-107.7734268","38.3008919"],["-107.7732129","38.2998548"],["-107.7729274","38.2983205"],["-107.7727613","38.2976141"],["-107.7722506","38.2962547"],["-107.7706181","38.2921304"],["-107.770279","38.2914667"],["-107.7699521","38.2909632"],["-107.7692277","38.2902461"],["-107.7667409","38.2881124"],["-107.7658306","38.2869973"],["-107.7652588","38.2860104"],["-107.7649527","38.2852396"],["-107.7647464","38.2843899"],["-107.7646482","38.2836216"],["-107.764695","38.2826042"],["-107.7652444","38.2786859"],["-107.7654691","38.2776798"],["-107.7661045","38.2763532"],["-107.7663671","38.2757048"],["-107.7664518","38.2752746"],["-107.7664733","38.2746847"],["-107.7663963","38.274161"],["-107.7662335","38.2736645"],["-107.7659825","38.273185"],["-107.7655482","38.2724625"],["-107.7641654","38.270156"],["-107.763675","38.2694166"],["-107.762886","38.2685603"],["-107.7620091","38.267702"],["-107.7607611","38.266481"],["-107.7600162","38.2657454"],["-107.7593966","38.2649913"],["-107.7580542","38.2632327"],["-107.7575564","38.2625384"],["-107.7572552","38.2619726"],["-107.7570405","38.2614375"],["-107.7568988","38.2608235"],["-107.7568607","38.2602802"],["-107.756898","38.2596872"],["-107.7570963","38.2583909"],["-107.7582642","38.2518092"],["-107.7585573","38.2504916"],["-107.7590844","38.2486607"],["-107.7592436","38.2478751"],["-107.7592526","38.2473696"],["-107.7591702","38.2468613"],["-107.7590599","38.2464827"],["-107.7588616","38.2461287"],["-107.7585742","38.2457546"],["-107.7583293","38.2455061"],["-107.7579654","38.245213"],["-107.7575849","38.2449925"],["-107.7571795","38.244796"],["-107.7567537","38.2446564"],["-107.7562629","38.2445336"],["-107.7512734","38.2439197"],["-107.7502239","38.2437267"],["-107.7492319","38.2434848"],["-107.7483617","38.2432154"],["-107.7474835","38.2428745"],["-107.745562","38.2420118"],["-107.7413259","38.2400232"],["-107.7405811","38.2396149"],["-107.7399149","38.2391747"],["-107.7392425","38.2386386"],["-107.7384655","38.2378784"],["-107.7371602","38.2364413"],["-107.7363267","38.2354836"],["-107.7357051","38.2349061"],["-107.7348169","38.2341941"],["-107.7337546","38.2335445"],["-107.7327025","38.2329248"],["-107.7316806","38.2323331"],["-107.7310605","38.2318578"],["-107.7304889","38.2313591"],["-107.7300848","38.230933"],["-107.7297616","38.2303918"],["-107.7292617","38.2294686"],["-107.7272591","38.2257598"],["-107.7268539","38.2248902"],["-107.7267398","38.2243386"],["-107.7267402","38.2238701"],["-107.7268356","38.2235392"],["-107.7269158","38.2233197"],["-107.7271559","38.2227995"],["-107.7277498","38.2217769"],["-107.7280283","38.2212542"],["-107.7281476","38.220819"],["-107.7281722","38.220383"],["-107.7281747","38.2199452"],["-107.7275433","38.2164739"],["-107.7270724","38.213372"],["-107.7270296","38.2126699"],["-107.7270782","38.2121704"],["-107.7272193","38.2117012"],["-107.7274197","38.211243"],["-107.7277585","38.2106756"],["-107.7282581","38.2101178"],["-107.7290875","38.2092638"],["-107.7315537","38.2068084"],["-107.732151","38.2061126"],["-107.7326421","38.2053065"],["-107.7343458","38.2016692"],["-107.7349376","38.2005439"],["-107.735407","38.199969"],["-107.7359605","38.1994359"],["-107.7369745","38.1987466"],["-107.7380482","38.1982293"],["-107.7392248","38.1977006"],["-107.7405015","38.1971293"],["-107.7412102","38.1967384"],["-107.7416793","38.1963636"],["-107.7421363","38.1959244"],["-107.7429025","38.1950003"],["-107.7436889","38.193938"],["-107.744448","38.1927848"],["-107.7448971","38.1917621"],["-107.7455151","38.1900723"],["-107.746123","38.1882419"],["-107.7464679","38.1871573"],["-107.746499","38.1868146"],["-107.7465116","38.1865412"],["-107.7464787","38.1862096"],["-107.7463221","38.1855582"],["-107.7461345","38.1851743"],["-107.7457163","38.1846721"],["-107.745081","38.1840548"],["-107.7445293","38.1833847"],["-107.744272","38.1829097"],["-107.7441213","38.1824782"],["-107.7440394","38.1820364"],["-107.743978","38.1814457"],["-107.743912","38.1807747"],["-107.7438463","38.1802896"],["-107.7437201","38.1798766"],["-107.7435566","38.179526"],["-107.7432775","38.1789976"],["-107.7429243","38.1783337"],["-107.7424566","38.1774003"],["-107.7421839","38.1766005"],["-107.7420152","38.1757823"],["-107.7419563","38.1751366"],["-107.7419547","38.1745258"],["-107.7420642","38.1738205"],["-107.7422061","38.1731527"],["-107.7424032","38.1724981"],["-107.7454656","38.1665956"],["-107.7470011","38.1636187"],["-107.7474473","38.1629898"],["-107.7477297","38.1626309"],["-107.748059","38.1622905"],["-107.7484836","38.1618937"],["-107.7493527","38.1612339"],["-107.7515094","38.1598717"],["-107.7518529","38.159585"],["-107.7521364","38.1592986"],["-107.7523838","38.1589621"],["-107.7526237","38.1584951"],["-107.7528042","38.1579898"],["-107.7528623","38.1577016"],["-107.7528778","38.1574455"],["-107.7528764","38.1571975"],["-107.75284","38.156894"],["-107.7527803","38.1566195"],["-107.7526853","38.1563079"],["-107.752516","38.1559408"],["-107.7522392","38.1555287"],["-107.7517932","38.1549835"],["-107.7510943","38.1542349"],["-107.7503234","38.1534481"],["-107.749095","38.1522507"],["-107.7490258","38.1520789"],["-107.7489695","38.1519713"],["-107.7488779","38.1518492"],["-107.7488561","38.151781"],["-107.7488687","38.1517346"],["-107.7489091","38.1516905"],["-107.7492281","38.1515367"],["-107.749723","38.1514685"],["-107.7501791","38.1514291"],["-107.7509681","38.1514116"],["-107.7517825","38.1514034"],["-107.7546669","38.1514175"],["-107.7549681","38.1514123"],["-107.7563462","38.1514241"],["-107.756964","38.1514126"],["-107.7608032","38.1514288"],["-107.7614531","38.1514069"],["-107.7620626","38.151369"],["-107.7632586","38.1512583"],["-107.7636808","38.1512252"],["-107.763968","38.1512471"],["-107.7642615","38.1513046"],["-107.7645263","38.1513928"],["-107.7648142","38.1515121"],["-107.7650819","38.1516658"],["-107.7655106","38.152048"],["-107.7663764","38.152925"],["-107.7668252","38.1533218"],["-107.7673224","38.1537564"],["-107.7678176","38.1542199"],["-107.7681434","38.1546631"],["-107.7684427","38.1551602"],["-107.7686378","38.1557958"],["-107.7689291","38.1564307"],["-107.7691875","38.1567413"],["-107.7702789","38.1575495"],["-107.7709116","38.1579882"],["-107.7715976","38.1584439"],["-107.7723802","38.1588368"],["-107.7728947","38.159009"],["-107.7735203","38.1591163"],["-107.7739485","38.1591529"],["-107.7783746","38.1592065"],["-107.7815533","38.1591846"],["-107.7866586","38.1591962"],["-107.7874675","38.1591906"],["-107.7889937","38.1592069"],["-107.7905483","38.1592554"],["-107.7924036","38.1593842"],["-107.8024488","38.1591653"],["-107.8030667","38.1590703"],["-107.8042076","38.158754"],["-107.8051154","38.1583678"],["-107.8059455","38.1578947"],["-107.8068294","38.1571373"],["-107.8077118","38.1560447"],["-107.8079902","38.15541"],["-107.8089075","38.1528514"],["-107.8091692","38.1520111"],["-107.8092937","38.1513899"],["-107.8093603","38.1508701"],["-107.8094566","38.150455"],["-107.8095488","38.1501161"],["-107.8098876","38.1492757"],["-107.8107342","38.1474122"],["-107.8113206","38.1462856"],["-107.8126449","38.1442072"],["-107.813371","38.1430757"],["-107.8140275","38.142051"],["-107.8143406","38.1416049"],["-107.8147521","38.1410596"],["-107.8152308","38.1404788"],["-107.8156049","38.1400932"],["-107.8161791","38.1396084"],["-107.8165824","38.1393492"],["-107.8206008","38.1369911"],["-107.8217245","38.1362641"],["-107.8222913","38.135793"],["-107.8226855","38.1353815"],["-107.8231932","38.1348702"],["-107.8265798","38.1315207"],["-107.8269511","38.1310374"],["-107.8271895","38.1306789"],["-107.827444","38.1302454"],["-107.8277086","38.1297813"],["-107.8280717","38.129316"],["-107.8284413","38.12902"],["-107.8295243","38.1282566"],["-107.8308952","38.1272958"],["-107.8316508","38.1266621"],["-107.8322667","38.1258984"],["-107.8326865","38.1253531"],["-107.8332423","38.1246673"],["-107.8339799","38.1237175"],["-107.8343732","38.1233324"],["-107.834794","38.1230125"],["-107.8353191","38.1226889"],["-107.8362852","38.1222512"],["-107.8367581","38.1220858"],["-107.8373446","38.1219535"],["-107.8377899","38.1218809"],["-107.8384366","38.1218481"],["-107.8405387","38.12187"],["-107.8410732","38.1218548"],["-107.8415406","38.1218038"],["-107.8419133","38.1217298"],["-107.8423269","38.1216401"],["-107.8432878","38.1213151"],["-107.8491264","38.1192267"],["-107.8500371","38.118821"],["-107.8533621","38.1170512"],["-107.8541908","38.1166407"],["-107.8544615","38.1165301"],["-107.8547011","38.1164537"],["-107.8551167","38.1163683"],["-107.8554501","38.1163168"],["-107.8556923","38.1163028"],["-107.8562057","38.1163069"],["-107.8564938","38.1163279"],["-107.8568217","38.1163689"],["-107.8571423","38.1164339"],["-107.8575035","38.1165432"],["-107.8578912","38.1166731"],["-107.85829","38.1168183"],["-107.8586278","38.1169427"],["-107.8600931","38.117475"],["-107.8605709","38.1176507"],["-107.8610624","38.117828"],["-107.8620846","38.1181898"],["-107.8626526","38.11838"],["-107.8631799","38.1185128"],["-107.8636165","38.1185679"],["-107.8639738","38.1185602"],["-107.8643031","38.1185399"],["-107.8649134","38.1184137"],["-107.865204","38.1183243"],["-107.8654249","38.1182327"],["-107.8656088","38.1181255"],["-107.865851","38.1179735"],["-107.86606","38.1178065"],["-107.8663416","38.1175444"],["-107.8665255","38.1173029"],["-107.8666509","38.1170892"],["-107.8667581","38.1168568"],["-107.8668516","38.1165936"],["-107.8669104","38.116285"],["-107.8669133","38.1160216"],["-107.8668494","38.1156462"],["-107.8667067","38.1152611"],["-107.8665587","38.1149912"],["-107.8662495","38.1146075"],["-107.8660617","38.114406"],["-107.8658426","38.1141934"],["-107.8656464","38.1140023"],["-107.8654726","38.1138196"],["-107.8652874","38.113649"],["-107.8651676","38.1135188"],["-107.8649825","38.1133393"],["-107.8646244","38.1129705"],["-107.8643975","38.1126825"],["-107.8642959","38.1125096"],["-107.8642024","38.112343"],["-107.8641012","38.112112"],["-107.864048","38.1119141"],["-107.864016","38.1116833"],["-107.8639978","38.1113135"],["-107.8640277","38.1111301"],["-107.8640874","38.1108706"],["-107.8641503","38.1106868"],["-107.864229","38.1104884"],["-107.864469","38.1100961"],["-107.8650081","38.1093476"],["-107.8651845","38.109119"],["-107.8653866","38.1088421"],["-107.865585","38.1085704"],["-107.8658124","38.1082599"],["-107.8660079","38.1079892"],["-107.8662048","38.1077297"],["-107.8665072","38.1073171"],["-107.8667808","38.1069365"],["-107.8669771","38.1066625"],["-107.8688646","38.1041023"],["-107.8692137","38.1036128"],["-107.8694496","38.1032088"],["-107.8704601","38.1010936"],["-107.8706011","38.1008452"],["-107.8707814","38.1005983"],["-107.8709751","38.1003506"],["-107.8711453","38.1001944"],["-107.8714407","38.099949"],["-107.8717087","38.0997681"],["-107.8720381","38.0995726"],["-107.8723372","38.0994466"],["-107.8726142","38.0993398"],["-107.8733251","38.0991436"],["-107.8748849","38.0987587"],["-107.8757992","38.0985259"],["-107.8763087","38.0983678"],["-107.8765719","38.0982576"],["-107.8768799","38.0981015"],["-107.877187","38.0978905"],["-107.8774023","38.0977268"],["-107.877615","38.0975253"],["-107.8783731","38.0966479"],["-107.8786366","38.0963437"],["-107.8791616","38.0956853"],["-107.8797279","38.0950127"],["-107.8800563","38.0947204"],["-107.8802825","38.0945359"],["-107.8805228","38.0943746"],["-107.88076","38.0942353"],["-107.8809701","38.0941327"],["-107.8811907","38.0940678"],["-107.881568","38.0939951"],["-107.8819124","38.0939694"],["-107.8823619","38.0939944"],["-107.8828001","38.0940758"],["-107.8832114","38.0941615"],["-107.8844688","38.0944437"],["-107.885427","38.0945834"],["-107.8859921","38.09464"],["-107.8866094","38.0946907"],["-107.8884685","38.0948131"],["-107.8895238","38.0949414"],["-107.8906018","38.0951924"],["-107.8915373","38.0954262"],["-107.8921046","38.0955732"],["-107.9000845","38.0975512"],["-107.9005041","38.0976735"],["-107.900793","38.0977808"],["-107.9010833","38.09791"],["-107.9013367","38.098034"],["-107.9017418","38.0982478"],["-107.9028613","38.0987855"],["-107.903303","38.0989424"],["-107.9036463","38.0990267"],["-107.9039892","38.0990821"],["-107.9048309","38.0991868"],["-107.9052039","38.0992441"],["-107.9058535","38.0993857"],["-107.9062025","38.0994799"],["-107.907268","38.099751"],["-107.9079314","38.0998669"],["-107.9084656","38.0999343"],["-107.909221","38.1000015"],["-107.9095211","38.1000119"],["-107.9097984","38.1000167"],["-107.9101827","38.1000093"],["-107.91063","38.0999918"],["-107.9113291","38.0999432"],["-107.9117633","38.0999235"],["-107.9122403","38.0999129"],["-107.9126119","38.0999446"],["-107.9137103","38.1000689"],["-107.9142322","38.1001573"],["-107.9153415","38.1004429"],["-107.9156306","38.1005301"],["-107.9160275","38.1006376"],["-107.9165417","38.1007912"],["-107.9175804","38.1010706"],["-107.9187466","38.1013427"],["-107.9198625","38.1015646"],["-107.9202353","38.1016333"],["-107.9214798","38.1018764"],["-107.9240031","38.1023596"],["-107.9247258","38.1024382"],["-107.9250533","38.1024436"],["-107.9271851","38.1024243"],["-107.9277529","38.1024322"],["-107.9282398","38.1024609"],["-107.9286411","38.1024999"],["-107.9290202","38.1025669"],["-107.9299802","38.1027698"],["-107.9308752","38.1029675"],["-107.9314737","38.1030919"],["-107.933341","38.1034893"],["-107.9339715","38.1036235"],["-107.9347148","38.103792"],["-107.9351697","38.1039107"],["-107.9355725","38.1040516"],["-107.9359991","38.104252"],["-107.9362407","38.1043754"],["-107.9363871","38.1044694"],["-107.9365793","38.1045804"],["-107.9369459","38.1048308"],["-107.9371145","38.1049606"],["-107.9375116","38.1052676"],["-107.9379326","38.1055788"],["-107.9383003","38.1057875"],["-107.9384734","38.1058702"],["-107.9387103","38.1059579"],["-107.9389232","38.1060222"],["-107.9391833","38.1060949"],["-107.9393715","38.1061367"],["-107.9398728","38.1061864"],["-107.9400976","38.1061878"],["-107.940501","38.1061804"],["-107.9461535","38.1059952"],["-107.946495","38.1059958"],["-107.946726","38.1060065"],["-107.9469242","38.1060213"],["-107.9471274","38.106046"],["-107.9473605","38.1060817"],["-107.9480557","38.1062179"],["-107.9485064","38.1062918"],["-107.948839","38.1063003"],["-107.9490899","38.1062871"],["-107.9493264","38.1062395"],["-107.9496916","38.1061452"],["-107.9500783","38.1060046"],["-107.9504203","38.1058736"],["-107.950854","38.1056807"],["-107.9512339","38.1055308"],["-107.9515403","38.1054363"],["-107.9518621","38.1053554"],["-107.9522898","38.1052833"],["-107.9531226","38.105211"],["-107.9542262","38.1051183"],["-107.9544974","38.1050963"],["-107.9547686","38.1050547"],["-107.9551328","38.104974"],["-107.9555522","38.1048343"],["-107.955728","38.1047552"],["-107.9559046","38.104671"],["-107.9561305","38.1045532"],["-107.9564747","38.1043634"],["-107.9567091","38.1042429"],["-107.9568716","38.1041541"],["-107.9570597","38.1040737"],["-107.9572589","38.1039939"],["-107.9574602","38.103914"],["-107.9576798","38.1038273"],["-107.9579129","38.1037579"],["-107.9582219","38.1036791"],["-107.9591852","38.1034742"],["-107.9593646","38.1034437"],["-107.9596416","38.1033753"],["-107.9615688","38.1029655"],["-107.9618252","38.1029169"],["-107.9623883","38.1027612"],["-107.9626198","38.1026794"],["-107.9627949","38.1026089"],["-107.9630627","38.1024918"],["-107.96493","38.101685"],["-107.9652213","38.1015483"],["-107.966252","38.1010982"],["-107.9664935","38.1010099"],["-107.9668694","38.1008546"],["-107.9672719","38.1006848"],["-107.9688528","38.1000234"],["-107.9726572","38.0980583"],["-107.9734903","38.0978129"],["-107.9737952","38.0977825"],["-107.9742201","38.0978062"],["-107.9746266","38.0978627"],["-107.9750174","38.0979585"],["-107.9752806","38.0980623"],["-107.975621","38.09814"],["-107.976066","38.0981902"],["-107.9766593","38.0981756"],["-107.9801851","38.0981055"],["-107.981929","38.0980795"],["-107.9824979","38.0980327"],["-107.9828649","38.0979693"],["-107.9831337","38.0978849"],["-107.9833769","38.0977941"],["-107.9838386","38.0975319"],["-107.9852663","38.096685"],["-107.985968","38.0963435"],["-107.9863823","38.0962077"],["-107.986793","38.0961205"],["-107.98714","38.0961012"],["-107.9876417","38.0961053"],["-107.9882293","38.0960934"],["-107.9889136","38.0960755"],["-107.9893439","38.0960108"],["-107.9897844","38.0958737"],["-107.9904739","38.0955968"],["-107.9909331","38.0954254"],["-107.9912981","38.0952731"],["-107.9916662","38.0951048"],["-107.9921875","38.0948055"],["-107.9928456","38.0942654"],["-107.9935416","38.09369"],["-107.9961488","38.0915004"],["-107.9965164","38.0912265"],["-107.9968552","38.0909826"],["-107.9972795","38.0906745"],["-107.9976829","38.0903747"],["-107.99816","38.0900544"],["-107.9986075","38.0898257"],["-107.9990716","38.0896812"],["-108.000056","38.0894792"],["-108.0003553","38.0893985"],["-108.0006368","38.0892979"],["-108.0008701","38.0891697"],["-108.0010758","38.0890149"],["-108.0012994","38.0888055"],["-108.0015507","38.0885533"],["-108.0018027","38.0883184"],["-108.0021107","38.0880235"],["-108.0025424","38.0875789"],["-108.0027418","38.0873998"],["-108.0037283","38.0868199"],["-108.0042294","38.0865033"],["-108.0047424","38.0861509"],["-108.005848","38.0853604"],["-108.0060673","38.0851959"],["-108.0063143","38.0850237"],["-108.0066155","38.0848251"],["-108.0069723","38.0846334"],["-108.0073124","38.0844559"],["-108.0075756","38.0842578"],["-108.0078098","38.0840685"],["-108.007971","38.0838964"],["-108.0082433","38.0836103"],["-108.0089074","38.0829402"],["-108.0092723","38.0826461"],["-108.0098046","38.0822733"],["-108.0101521","38.0820934"],["-108.0106781","38.0817835"],["-108.0109784","38.0815452"],["-108.0112326","38.0812687"],["-108.0114539","38.0809398"],["-108.011654","38.0805851"],["-108.0118626","38.0802378"],["-108.0120853","38.0799892"],["-108.0123763","38.0797369"],["-108.0126974","38.0795217"],["-108.0146179","38.0783327"],["-108.0151032","38.0780191"],["-108.0153221","38.0778449"],["-108.015538","38.0776316"],["-108.0158058","38.0773178"],["-108.0160444","38.0770492"],["-108.0163957","38.0766535"],["-108.0165257","38.0764969"],["-108.0169379","38.0760217"],["-108.017102","38.0758086"],["-108.0172949","38.0755474"],["-108.0176494","38.0749564"],["-108.0179031","38.0745771"],["-108.0180624","38.0743945"],["-108.018335","38.0741775"],["-108.0187464","38.0739192"],["-108.0193395","38.0735732"],["-108.0202592","38.0730558"],["-108.0220666","38.0722173"],["-108.0224116","38.0719828"],["-108.0227106","38.0717242"],["-108.0230234","38.0713816"],["-108.0233355","38.0710026"],["-108.0249448","38.0689916"],["-108.0252047","38.0686312"],["-108.0253542","38.0683715"],["-108.0255117","38.0681007"],["-108.0257366","38.0676726"],["-108.0259603","38.0671113"],["-108.0261318","38.066626"],["-108.0264166","38.0658194"],["-108.0265806","38.0653567"],["-108.0267612","38.0646584"],["-108.0268631","38.0639832"],["-108.0269151","38.0634268"],["-108.0269767","38.06294"],["-108.0270365","38.0626557"],["-108.0270881","38.0624442"],["-108.027141","38.0622988"],["-108.0271933","38.0621313"],["-108.0272654","38.0619205"],["-108.0273334","38.0617141"],["-108.0274479","38.0614269"],["-108.0275492","38.061161"],["-108.0276234","38.0609343"],["-108.0278034","38.0604051"],["-108.0278678","38.0602691"],["-108.0279334","38.0600525"],["-108.0280044","38.0598765"],["-108.0280755","38.0597196"],["-108.0281589","38.0595465"],["-108.0282371","38.0593782"],["-108.0283174","38.0592312"],["-108.0285806","38.0588588"],["-108.0287115","38.0586891"],["-108.0289565","38.0584136"],["-108.0292581","38.058032"],["-108.0294089","38.0578513"],["-108.0295348","38.0576986"],["-108.0297061","38.0574946"],["-108.02988","38.0572939"],["-108.0300113","38.0571377"],["-108.0301101","38.0570056"],["-108.0301924","38.0568863"],["-108.0304137","38.056571"],["-108.0305132","38.0564211"],["-108.0305967","38.0562924"],["-108.0308031","38.0559769"],["-108.0308813","38.0558474"],["-108.0309316","38.0557459"],["-108.0310587","38.0555554"],["-108.0311274","38.0554523"],["-108.0312139","38.0552933"],["-108.0313285","38.0551041"],["-108.0314988","38.0548161"],["-108.0315976","38.0546623"],["-108.0317344","38.0544449"],["-108.0318605","38.0542376"],["-108.0319845","38.0540212"],["-108.0320716","38.0538862"],["-108.0321679","38.0537425"],["-108.0328917","38.0526082"],["-108.0330725","38.0522588"],["-108.0332078","38.0520116"],["-108.0333747","38.0516187"],["-108.033523","38.0512655"],["-108.0336337","38.0509822"],["-108.0338284","38.0505538"],["-108.0340027","38.0501641"],["-108.0341372","38.0498035"],["-108.0343081","38.0494268"],["-108.0344389","38.0491655"],["-108.0345614","38.0489062"],["-108.0348908","38.0482318"],["-108.0354647","38.0472005"],["-108.0356431","38.046923"],["-108.0359653","38.0463865"],["-108.0361542","38.0460342"],["-108.0363874","38.045575"],["-108.036817","38.0446547"],["-108.0372189","38.0437969"],["-108.0375433","38.0432396"],["-108.0376364","38.0430615"],["-108.0377437","38.0429076"],["-108.0379194","38.042663"],["-108.0380869","38.0424384"],["-108.0383694","38.042112"],["-108.0386128","38.0418307"],["-108.0388218","38.0415886"],["-108.0390613","38.0412948"],["-108.0392973","38.0409743"],["-108.0396385","38.040493"],["-108.039893","38.0400468"],["-108.0400213","38.0398201"],["-108.0401015","38.0396699"],["-108.0401774","38.0395222"],["-108.0402609","38.0393406"],["-108.040374","38.0390868"],["-108.0404913","38.0388185"],["-108.0405938","38.0385455"],["-108.0408078","38.03801"],["-108.0409112","38.0377579"],["-108.0409791","38.0374868"],["-108.0410519","38.0373063"],["-108.0411573","38.0370665"],["-108.0413748","38.0365654"],["-108.0415094","38.0362891"],["-108.0416803","38.0359691"],["-108.0420606","38.0353899"],["-108.0424745","38.0349628"],["-108.0428605","38.0346438"],["-108.0432387","38.0343564"],["-108.0435888","38.0340716"],["-108.0438912","38.0338161"],["-108.0444668","38.0333839"],["-108.0448235","38.0330896"],["-108.0455602","38.0324193"],["-108.046297","38.0316014"],["-108.0464553","38.0314275"],["-108.046637","38.0311758"],["-108.0468187","38.0309132"],["-108.0469952","38.0306342"],["-108.0474902","38.0298362"],["-108.0481203","38.0289072"],["-108.0489466","38.0275279"],["-108.0491351","38.0272304"],["-108.049398","38.0268475"],["-108.0495524","38.0266439"],["-108.0496976","38.0264681"],["-108.0498336","38.0263153"],["-108.0503116","38.0258775"],["-108.0506909","38.0255626"],["-108.0511196","38.0252711"],["-108.0523451","38.024365"],["-108.0537793","38.0233563"],["-108.0543488","38.02296"],["-108.0549838","38.0225579"],["-108.0554861","38.0222673"],["-108.0560809","38.0219878"],["-108.0568692","38.021663"],["-108.0572497","38.0215341"],["-108.0577853","38.0213737"],["-108.0590022","38.0211296"],["-108.0597779","38.0210046"],["-108.0605379","38.0208878"],["-108.061122","38.0208076"],["-108.0610775","38.0206423"],["-108.0609019","38.0202097"],["-108.0607735","38.0199661"],["-108.0606623","38.0197997"],["-108.06047","38.019646"],["-108.0601193","38.0194519"],["-108.058978","38.0189469"],["-108.0584796","38.0187776"],["-108.0580046","38.0187078"],["-108.0576239","38.018713"],["-108.0570473","38.0186986"],["-108.0567083","38.0186663"],["-108.0562484","38.0185772"],["-108.0557405","38.0183743"],["-108.0550821","38.0179963"],["-108.0546163","38.0176864"],["-108.0544079","38.0175304"],["-108.054253","38.0174079"],["-108.0541843","38.0173442"],["-108.0540907","38.0172488"],["-108.0539196","38.0170582"],["-108.0536597","38.0166952"],["-108.0522858","38.0143547"],["-108.0519722","38.0138868"],["-108.0517054","38.013564"],["-108.0513041","38.0131501"],["-108.0499777","38.0121319"],["-108.0475145","38.0102745"],["-108.0467208","38.009586"],["-108.0456565","38.0084365"],["-108.0452375","38.0080509"],["-108.0447946","38.0078302"],["-108.0442444","38.0075695"],["-108.0437622","38.007036"],["-108.0435463","38.0067734"],["-108.0433207","38.0065749"],["-108.0428154","38.006372"],["-108.0420453","38.0061892"],["-108.0415338","38.0060496"],["-108.0410833","38.0058134"],["-108.040767","38.0056351"],["-108.0403976","38.0054894"],["-108.0396223","38.0052591"],["-108.0391475","38.0050124"],["-108.0385831","38.0044217"],["-108.0380487","38.0037327"],["-108.0377135","38.0031698"],["-108.0373558","38.002496"],["-108.0370585","38.0018729"],["-108.0367621","38.0013199"],["-108.0365037","38.0008915"],["-108.0359946","38.000429"],["-108.0355124","38.0000176"],["-108.0343375","37.998896"],["-108.0340888","37.9985915"],["-108.0338896","37.9983101"],["-108.033491","37.9976634"],["-108.0331882","37.9971287"],["-108.0330414","37.9969042"],["-108.0328447","37.9966447"],["-108.0325401","37.9963739"],["-108.0321522","37.996123"],["-108.0307174","37.9955134"],["-108.0301993","37.9953121"],["-108.0295709","37.9950284"],["-108.0293623","37.9948916"],["-108.029048","37.9946447"],["-108.028391","37.9941719"],["-108.0279978","37.9939782"],["-108.0276447","37.9938644"],["-108.0272889","37.9938013"],["-108.0268816","37.993782"],["-108.0263967","37.9938236"],["-108.0257737","37.9939335"],["-108.0251694","37.9940117"],["-108.0247745","37.9940367"],["-108.0243418","37.9940078"],["-108.0231905","37.9939185"],["-108.0224829","37.9939196"],["-108.0214007","37.9939984"],["-108.0209339","37.9939826"],["-108.0205417","37.993918"],["-108.0198201","37.993707"],["-108.0179871","37.9931307"],["-108.0173849","37.9929734"],["-108.016755","37.9928574"],["-108.0160658","37.992774"],["-108.0155517","37.9927661"],["-108.0150686","37.9927822"],["-108.0146229","37.9928163"],["-108.0138917","37.9928987"],["-108.0103361","37.9933155"],["-108.0085945","37.993494"],["-108.0073738","37.9935645"],["-108.0068136","37.99364"],["-108.0047815","37.9941939"],["-108.0037967","37.9944543"],["-108.0033857","37.994527"],["-108.0028828","37.9945639"],["-108.0023214","37.9945605"],["-108.0015767","37.9945328"],["-108.0009452","37.9945394"],["-108.0002219","37.9945477"],["-107.9997804","37.9944671"],["-107.9994409","37.9943412"],["-107.9986374","37.9939065"],["-107.9980257","37.9936586"],["-107.9972414","37.9933562"],["-107.9963118","37.9929556"],["-107.9953915","37.9925427"],["-107.9946991","37.9921582"],["-107.9943143","37.9918556"],["-107.9939097","37.9913785"],["-107.9930139","37.9902306"],["-107.9927379","37.9898487"],["-107.9926141","37.989573"],["-107.9925306","37.9893245"],["-107.9924632","37.9889778"],["-107.992396","37.9886379"],["-107.9922813","37.9883415"],["-107.9920581","37.9880043"],["-107.9917308","37.9876174"],["-107.9914408","37.9871787"],["-107.9912072","37.9868083"],["-107.9907649","37.9859556"],["-107.9904054","37.9852834"],["-107.9901571","37.9847679"],["-107.9899515","37.984199"],["-107.9897312","37.9835478"],["-107.9895785","37.9831478"],["-107.9892087","37.9825436"],["-107.9887167","37.9818385"],["-107.9884113","37.981373"],["-107.9882373","37.9810163"],["-107.9881202","37.9807123"],["-107.9880187","37.9802984"],["-107.9878395","37.9794227"],["-107.987723","37.9790337"],["-107.9874997","37.9786679"],["-107.9872742","37.9783174"],["-107.9869192","37.9778879"],["-107.9863637","37.9773153"],["-107.9859617","37.9769605"],["-107.9855516","37.9766491"],["-107.9847938","37.9762123"],["-107.9835237","37.9755224"],["-107.9832217","37.9753086"],["-107.9827125","37.9748687"],["-107.9821473","37.9743772"],["-107.9817352","37.974041"],["-107.9814164","37.973778"],["-107.9807858","37.9734215"],["-107.9800979","37.9730661"],["-107.9797811","37.9728842"],["-107.9792617","37.9725106"],["-107.9761092","37.9701434"],["-107.9753328","37.9696416"],["-107.9741153","37.9689114"],["-107.9733662","37.9685447"],["-107.972605","37.9682328"],["-107.9717944","37.9679379"],["-107.9711895","37.9677163"],["-107.9707937","37.9675239"],["-107.9702858","37.9671825"],["-107.9699356","37.9670021"],["-107.9696284","37.9668992"],["-107.9693091","37.9668318"],["-107.967935","37.9667294"],["-107.967364","37.9666146"],["-107.9666922","37.9664052"],["-107.966287","37.9662977"],["-107.9657089","37.9662815"],["-107.9645366","37.9661789"],["-107.9631454","37.9661476"],["-107.9621232","37.9660119"],["-107.9615486","37.9658486"],["-107.9609818","37.9655624"],["-107.9604803","37.9654064"],["-107.9599586","37.9653575"],["-107.9594732","37.9653792"],["-107.9586072","37.9654662"],["-107.9582969","37.9654717"],["-107.9580307","37.9654467"],["-107.9577166","37.9653851"],["-107.9570589","37.9652066"],["-107.9564418","37.965064"],["-107.9559267","37.9649575"],["-107.9554295","37.9648891"],["-107.9548621","37.9647957"],["-107.9543916","37.9646777"],["-107.9540322","37.9645193"],["-107.9532285","37.964043"],["-107.9524421","37.9635399"],["-107.9519753","37.9633001"],["-107.9515906","37.9631354"],["-107.9506945","37.9629023"],["-107.9497929","37.9626367"],["-107.9492421","37.9624248"],["-107.9485684","37.9620491"],["-107.9462801","37.9603138"],["-107.9461093","37.9601551"],["-107.9459142","37.9599074"],["-107.9455333","37.9591354"],["-107.9452493","37.9587591"],["-107.9450983","37.9586249"],["-107.9449427","37.958534"],["-107.9447663","37.9584539"],["-107.9444286","37.9583395"],["-107.9436755","37.9581156"],["-107.9429028","37.9579012"],["-107.9424518","37.9577938"],["-107.9421297","37.9577309"],["-107.9408481","37.9575153"],["-107.9397941","37.9573634"],["-107.9384582","37.9571947"],["-107.9378687","37.957092"],["-107.9343653","37.9563949"],["-107.9340238","37.9563154"],["-107.9338225","37.9562565"],["-107.9335808","37.9561739"],["-107.933351","37.9560762"],["-107.9329683","37.9558683"],["-107.9308931","37.9546793"],["-107.9291505","37.9536707"],["-107.9284626","37.953218"],["-107.9279839","37.9528042"],["-107.9264521","37.9513113"],["-107.9260468","37.9509544"],["-107.925625","37.9506203"],["-107.9253109","37.9503844"],["-107.9250681","37.9502158"],["-107.9244633","37.9498105"],["-107.9236712","37.9492793"],["-107.9231762","37.9489807"],["-107.9225633","37.9487253"],["-107.9220122","37.9485338"],["-107.9214846","37.9484069"],["-107.9208816","37.9482846"],["-107.9202115","37.9481989"],["-107.9191464","37.9481278"],["-107.9179129","37.9480603"],["-107.9134454","37.9480883"],["-107.9125844","37.9480221"],["-107.9114167","37.9479117"],["-107.9105328","37.9478652"],["-107.9093572","37.9478655"],["-107.9088009","37.9478391"],["-107.9081811","37.9477621"],["-107.9070644","37.9476021"],["-107.904149","37.9473261"],["-107.9031943","37.9471942"],["-107.9022448","37.946977"],["-107.9016395","37.9468941"],["-107.9012426","37.9468702"],["-107.9007763","37.9468846"],["-107.8975514","37.9472773"],["-107.8950267","37.9477023"],["-107.8945357","37.9477644"],["-107.8936871","37.9478123"],["-107.8914336","37.947881"],["-107.8908403","37.9478773"],["-107.8905287","37.9478355"],["-107.8901762","37.9477487"],["-107.889337","37.947505"],["-107.888986","37.9474377"],["-107.8886252","37.9474147"],["-107.8881593","37.9474637"],["-107.8872752","37.9476063"],["-107.8844765","37.9481416"],["-107.8821388","37.9488019"],["-107.8801521","37.9493446"],["-107.8776228","37.9499612"],["-107.8770197","37.9501035"],["-107.875472","37.9503629"],["-107.8743159","37.9504648"],["-107.8730002","37.950522"],["-107.8727245","37.9505006"],["-107.8719384","37.9504635"],["-107.8717376","37.950449"],["-107.871617","37.950411"],["-107.871531","37.9503716"],["-107.871454","37.9503377"],["-107.8713961","37.9502873"],["-107.8713209","37.9502657"],["-107.8712412","37.9502756"],["-107.871209","37.9502942"],["-107.8711514","37.9503268"],["-107.8708549","37.9504645"],["-107.8706864","37.9505067"],["-107.8705082","37.9505386"],["-107.8703196","37.9505697"],["-107.8700541","37.9506175"],["-107.8687495","37.9507405"],["-107.8659724","37.9510264"],["-107.8647499","37.9511276"],["-107.8593711","37.9514007"],["-107.8583953","37.9514051"],["-107.8578345","37.9513578"],["-107.8562096","37.9510382"],["-107.8530227","37.9503636"],["-107.8524704","37.9502008"],["-107.8519449","37.9500183"],["-107.8509515","37.9495962"],["-107.8496508","37.9490257"],["-107.8490083","37.9487604"],["-107.8484983","37.9485831"],["-107.8480146","37.9484477"],["-107.847602","37.9483564"],["-107.8438068","37.9478105"],["-107.8353059","37.9465873"],["-107.83329","37.9462631"],["-107.8323568","37.946042"],["-107.8283355","37.9449042"],["-107.8264824","37.9443482"],["-107.8257001","37.9440472"],["-107.8243333","37.9434489"],["-107.8237995","37.943172"],["-107.8231531","37.942792"],["-107.8221966","37.9422012"],["-107.8219188","37.9419874"],["-107.8215502","37.94167"],["-107.8213843","37.9415121"],["-107.8213127","37.9414263"],["-107.8211751","37.9413101"],["-107.8211226","37.9412446"],["-107.8210783","37.9411784"],["-107.8210724","37.941153"],["-107.8210599","37.9411302"],["-107.8210471","37.9411094"],["-107.8210007","37.9410799"],["-107.8209565","37.9410686"],["-107.8209266","37.9410681"],["-107.8208999","37.9410679"],["-107.8205819","37.9408904"],["-107.8204328","37.9408213"],["-107.8195165","37.9400823"],["-107.8186888","37.9394334"],["-107.8182874","37.9391799"],["-107.8181499","37.9391114"],["-107.8178861","37.9390041"],["-107.8174575","37.9388754"]]}};const coordinates_1_0=geojson_1_0.geometry.coordinates;for(const coord of coordinates_1_0){window.bounds[1].extend(coord);contentMap_1.fitBounds(window.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(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});const geojson_1_1={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-104.987887","39.7411184"],["-104.9876522","39.7412883"],["-104.9876358","39.7412989"],["-104.9876234","39.7413009"],["-104.9873987","39.7412903"],["-104.9873943","39.7408148"],["-104.9874041","39.7407218"],["-104.9875755","39.7406709"],["-104.9881252","39.7402794"],["-104.9884773","39.7405176"],["-104.9885929","39.7405805"],["-104.9886676","39.7406119"],["-104.9887308","39.740626"],["-104.9887917","39.7406363"],["-104.9888877","39.7406428"],["-104.9889495","39.7406402"],["-104.9890275","39.7406331"],["-104.9891102","39.7406194"],["-104.9891885","39.740597"],["-104.9892615","39.7405705"],["-104.9893303","39.7405361"],["-104.9893951","39.7404977"],["-104.9894609","39.7404472"],["-104.9896272","39.7403071"],["-104.9897007","39.7402485"],["-104.9897457","39.7402181"],["-104.9897905","39.7401937"],["-104.9898364","39.7401723"],["-104.9898835","39.7401544"],["-104.9899256","39.7401416"],["-104.9899601","39.7401343"],["-104.9900125","39.7401273"],["-104.9901295","39.7401182"],["-104.9902487","39.7401151"],["-104.9903205","39.7401149"],["-104.9904607","39.7401143"],["-104.9906229","39.7401161"],["-104.9923002","39.7401267"],["-104.9924971","39.7401289"],["-104.9952616","39.7401409"],["-104.9953531","39.7401405"],["-104.9978512","39.7401621"],["-104.9989079","39.7401925"],["-104.9990545","39.7401966"],["-104.9999756","39.7402137"],["-105.0001451","39.7402149"],["-105.0002984","39.7402104"],["-105.0011272","39.7401707"],["-105.0013168","39.7401662"],["-105.001439","39.7401694"],["-105.0015769","39.7401633"],["-105.001737","39.7401629"],["-105.0026925","39.7401612"],["-105.0041746","39.7401735"],["-105.0052425","39.7402351"],["-105.0094129","39.7403633"],["-105.0105587","39.7404663"],["-105.0113574","39.7405495"],["-105.011551","39.7405758"],["-105.0119566","39.7405957"],["-105.0121901","39.740618"],["-105.0123637","39.7406576"],["-105.0125774","39.7407178"],["-105.0126723","39.7407491"],["-105.0127577","39.7407835"],["-105.0128344","39.7408172"],["-105.0129084","39.740858"],["-105.0129821","39.740903"],["-105.0130541","39.7409582"],["-105.0131549","39.7410652"],["-105.0132854","39.7412299"],["-105.0134009","39.7413915"],["-105.0135039","39.7415355"],["-105.0135583","39.7416078"],["-105.0136144","39.7416733"],["-105.0136777","39.7417337"],["-105.0137707","39.7417981"],["-105.0138756","39.7418663"],["-105.013987","39.7419159"],["-105.0140589","39.7419419"],["-105.0141224","39.7419585"],["-105.0141915","39.7419719"],["-105.0142724","39.7419804"],["-105.0143547","39.7419835"],["-105.0144096","39.7419786"],["-105.0144919","39.7419652"],["-105.0145807","39.741936"],["-105.0146483","39.7419035"],["-105.014709","39.741857"],["-105.0147615","39.7418055"],["-105.0148207","39.741742"],["-105.0148804","39.741665"],["-105.0149392","39.7415604"],["-105.0149893","39.741446"],["-105.0150266","39.7413451"],["-105.0150521","39.7412333"],["-105.0150689","39.7411052"],["-105.0150689","39.7409904"],["-105.0150447","39.7408495"],["-105.0149775","39.7406337"],["-105.014776","39.7400411"],["-105.0145594","39.7393851"],["-105.0144069","39.7388857"],["-105.0143428","39.7386408"],["-105.0143012","39.7384563"],["-105.0142753","39.7383033"],["-105.0142525","39.7381215"],["-105.0142524","39.7379258"],["-105.0142532","39.7377034"],["-105.0142666","39.7374367"],["-105.0142919","39.7371555"],["-105.0143614","39.7368911"],["-105.0144284","39.7366714"],["-105.0145112","39.7364335"],["-105.0146509","39.7360619"],["-105.0147141","39.735912"],["-105.014831","39.7356638"],["-105.0150201","39.7352857"],["-105.0152293","39.7348811"],["-105.0154272","39.7344839"],["-105.0154906","39.734332"],["-105.0155527","39.734167"],["-105.0156123","39.7339985"],["-105.015664","39.7338371"],["-105.0157393","39.7335622"],["-105.0157692","39.7334359"],["-105.0158186","39.7331705"],["-105.0158397","39.7330112"],["-105.0158524","39.7328742"],["-105.0158636","39.7327095"],["-105.0158809","39.7323106"],["-105.0158819","39.732189"],["-105.0158788","39.7320686"],["-105.0158686","39.7319367"],["-105.0158506","39.7317826"],["-105.0157341","39.7312716"],["-105.0156745","39.7310447"],["-105.0155136","39.7305236"],["-105.0154133","39.7302294"],["-105.0153052","39.7299194"],["-105.0151814","39.7295471"],["-105.0149208","39.7288039"],["-105.0147258","39.7283068"],["-105.0144148","39.7274621"],["-105.0143095","39.7271875"],["-105.0142082","39.7269404"],["-105.0140384","39.7265628"],["-105.0139452","39.726378"],["-105.013808","39.7261441"],["-105.013477","39.7256234"],["-105.0133","39.7253693"],["-105.0129688","39.7249273"],["-105.0127929","39.7247135"],["-105.0126081","39.7245001"],["-105.012413","39.7242903"],["-105.0122104","39.7240859"],["-105.0120439","39.7239231"],["-105.0118623","39.7237567"],["-105.0110375","39.7230628"],["-105.0102911","39.7225227"],["-105.0099818","39.7223001"],["-105.0094394","39.7218947"],["-105.0092856","39.7217729"],["-105.009096","39.7216117"],["-105.0088817","39.7214185"],["-105.0085576","39.7211137"],["-105.0082471","39.7208139"],["-105.0065711","39.7192439"],["-105.0060834","39.7188036"],["-105.0057354","39.7185126"],["-105.0053945","39.7182508"],["-105.00519","39.7181033"],["-105.0031467","39.7167147"],["-105.0029363","39.7165602"],["-105.0027883","39.7164472"],["-105.0026465","39.7163336"],["-105.0024591","39.7161684"],["-105.0023722","39.7160856"],["-105.0022262","39.7159387"],["-105.0021528","39.7158579"],["-105.0019798","39.7156552"],["-105.0018081","39.7154309"],["-105.0017342","39.7153276"],["-105.0005788","39.713548"],["-105.0000464","39.7126787"],["-104.9992641","39.7113457"],["-104.9984146","39.7098887"],["-104.9982221","39.7095167"],["-104.9970357","39.7069353"],["-104.9969306","39.7067195"],["-104.9968852","39.7066344"],["-104.9967845","39.7064603"],["-104.996638","39.7062345"],["-104.9965894","39.7061656"],["-104.9965087","39.7060593"],["-104.9964334","39.7059639"],["-104.9963142","39.7058198"],["-104.9962201","39.705713"],["-104.9961296","39.7056144"],["-104.995978","39.7054583"],["-104.995899","39.7053845"],["-104.9957716","39.7052732"],["-104.9956561","39.7051757"],["-104.99552","39.7050648"],["-104.995384","39.704961"],["-104.9950458","39.7047286"],["-104.9948921","39.7046356"],["-104.9946086","39.7044775"],["-104.9943264","39.7043328"],["-104.9940561","39.704207"],["-104.9939153","39.704149"],["-104.9937904","39.7041023"],["-104.9934846","39.7039978"],["-104.9905636","39.70308"],["-104.9902429","39.7029764"],["-104.9899931","39.7028744"],["-104.9897669","39.7027682"],["-104.9895495","39.7026549"],["-104.9891457","39.7024171"],["-104.9889272","39.7022673"],["-104.988678","39.7020841"],["-104.987263","39.7009948"],["-104.9867311","39.7005891"],["-104.9861898","39.7001779"],["-104.9856541","39.699738"],["-104.9796121","39.6944191"],["-104.9766183","39.6917186"],["-104.9759806","39.6912387"],["-104.9752223","39.6907257"],["-104.9746387","39.690412"],["-104.9647537","39.6855732"],["-104.964541","39.6854883"],["-104.9642656","39.685386"],["-104.9639962","39.6852928"],["-104.9637055","39.6852022"],["-104.9634225","39.6851209"],["-104.962879","39.6849853"],["-104.9623757","39.6848839"],["-104.961886","39.6848103"],["-104.9616427","39.6847807"],["-104.9612868","39.684749"],["-104.9608118","39.6847162"],["-104.9604197","39.6847062"],["-104.950504","39.6846806"],["-104.948124","39.6845389"],["-104.9474857","39.6844643"],["-104.9467967","39.6843621"],["-104.9403804","39.6828511"],["-104.9396047","39.6826258"],["-104.9390407","39.6824229"],["-104.9386128","39.682246"],["-104.938149","39.6820346"],["-104.9378933","39.6819013"],["-104.9376031","39.6817422"],["-104.9373078","39.6815741"],["-104.9371337","39.6814676"],["-104.936983","39.6813705"],["-104.9368038","39.6812464"],["-104.9365113","39.6810355"],["-104.9362229","39.6808052"],["-104.936064","39.6806706"],["-104.9358658","39.680495"],["-104.9356873","39.6803259"],["-104.9354225","39.680055"],["-104.9349798","39.679562"],["-104.9311812","39.6752466"],["-104.9309821","39.6749958"],["-104.9239989","39.6649431"],["-104.9236878","39.6644539"],["-104.9234886","39.664108"],["-104.9231348","39.6634281"],["-104.9228994","39.6629196"],["-104.9224071","39.661817"],["-104.9182352","39.6525005"],["-104.9180667","39.6521674"],["-104.9178761","39.6518136"],["-104.9134791","39.6442329"],["-104.9118026","39.6413194"],["-104.9107776","39.6396178"],["-104.9098843","39.6381943"],["-104.9094327","39.6375528"],["-104.9086206","39.6364821"],["-104.9077831","39.6353571"],["-104.9075399","39.6349806"],["-104.9072742","39.6345249"],["-104.9069666","39.6339457"],["-104.9065034","39.6328717"],["-104.9061342","39.6319336"],["-104.9057742","39.6310338"],["-104.9054845","39.6304384"],["-104.9050048","39.6295642"],["-104.9043491","39.6283208"],["-104.8996141","39.6201079"],["-104.8973716","39.6160983"],["-104.8966344","39.614821"],["-104.8962707","39.6141956"],["-104.8918143","39.6064982"],["-104.8909829","39.6050637"],["-104.8905293","39.6042945"],["-104.8865865","39.597539"],["-104.8854305","39.5956736"],["-104.8850546","39.5950378"],["-104.8823551","39.5901487"],["-104.8759522","39.5790336"],["-104.8758347","39.5788111"],["-104.8756859","39.578515"],["-104.8756587","39.5784565"],["-104.8755701","39.5782596"],["-104.8754547","39.5779858"],["-104.8752727","39.577487"],["-104.8742405","39.5742185"],["-104.8739308","39.5732476"],["-104.8735215","39.5719322"],["-104.8733511","39.5714129"],["-104.8732434","39.5709898"],["-104.8731368","39.5705047"],["-104.8729219","39.5693761"],["-104.8728578","39.5689955"],["-104.8727952","39.5686113"],["-104.8726939","39.5679261"],["-104.8725394","39.5669247"],["-104.8722492","39.5651059"],["-104.8713238","39.5598702"],["-104.8706856","39.5560778"],["-104.8706309","39.5556763"],["-104.870499","39.5548387"],["-104.8698876","39.551278"],["-104.8696887","39.549775"],["-104.8695728","39.5485739"],["-104.8689912","39.541785"],["-104.8688525","39.5396356"],["-104.8675637","39.5237226"],["-104.8675401","39.5232418"],["-104.8675263","39.5229351"],["-104.8675194","39.5227755"],["-104.867477","39.5220452"],["-104.8673568","39.5194229"],["-104.8673532","39.5192003"],["-104.8673574","39.5190273"],["-104.8673974","39.5185444"],["-104.8674387","39.5182591"],["-104.8675358","39.5177996"],["-104.8676151","39.5175077"],["-104.8676815","39.517291"],["-104.8678087","39.5169481"],["-104.8680107","39.5164908"],["-104.8735569","39.5055334"],["-104.8738548","39.5049278"],["-104.873938","39.5047328"],["-104.8740343","39.5044993"],["-104.8742515","39.5038617"],["-104.8743329","39.5035789"],["-104.8744032","39.5033062"],["-104.8744666","39.5030142"],["-104.8745117","39.502745"],["-104.8745515","39.5024618"],["-104.8745787","39.5022119"],["-104.8745984","39.5019674"],["-104.8746096","39.5017487"],["-104.8746165","39.5015514"],["-104.8746143","39.5011865"],["-104.8745875","39.5007333"],["-104.8745648","39.5005241"],["-104.8745314","39.5002699"],["-104.872762","39.4877464"],["-104.8726956","39.4871828"],["-104.8726418","39.486512"],["-104.872603","39.4858571"],["-104.8725751","39.4851442"],["-104.8725908","39.4772328"],["-104.8726031","39.4740322"],["-104.8728242","39.471414"],["-104.8729846","39.4701595"],["-104.8747249","39.4596185"],["-104.8753766","39.4554916"],["-104.8755041","39.4538836"],["-104.8756938","39.4507167"],["-104.8757468","39.4496835"],["-104.875766","39.448752"],["-104.875717","39.4434029"],["-104.8757199","39.442813"],["-104.8757558","39.4424884"],["-104.8758025","39.4421563"],["-104.8758547","39.4418573"],["-104.8759186","39.4415984"],["-104.8760021","39.4413062"],["-104.8760947","39.4410329"],["-104.8761991","39.4407631"],["-104.876301","39.4405231"],["-104.8764085","39.4402969"],["-104.8765485","39.440041"],["-104.8776557","39.4381925"],["-104.8780539","39.4375178"],["-104.8782899","39.437064"],["-104.8784174","39.4367869"],["-104.8785477","39.4364646"],["-104.8787449","39.4359318"],["-104.8788385","39.4356413"],["-104.8789154","39.435361"],["-104.8789852","39.4350569"],["-104.879044","39.4347464"],["-104.8791004","39.434384"],["-104.8794346","39.4318998"],["-104.8794565","39.431641"],["-104.8794653","39.4313594"],["-104.8794613","39.431066"],["-104.8794411","39.4307758"],["-104.8794079","39.4304665"],["-104.8793646","39.4301791"],["-104.8793102","39.4298861"],["-104.8792476","39.4296373"],["-104.8791777","39.4293924"],["-104.8791173","39.4292131"],["-104.8790397","39.4289998"],["-104.8789573","39.4287915"],["-104.8788548","39.428557"],["-104.8787567","39.4283515"],["-104.8786556","39.4281555"],["-104.8785554","39.4279776"],["-104.878394","39.427719"],["-104.8782292","39.4274643"],["-104.8742177","39.4215405"],["-104.8662027","39.4097"],["-104.8657808","39.4089821"],["-104.8654816","39.4084609"],["-104.8650762","39.4076755"],["-104.8645916","39.4066659"],["-104.8609995","39.3983395"],["-104.8608128","39.3978314"],["-104.8605086","39.3968836"],["-104.8604106","39.396531"],["-104.8602237","39.3957513"],["-104.8601478","39.3953827"],["-104.8600416","39.3947457"],["-104.8599346","39.393917"],["-104.8598922","39.3934568"],["-104.8598612","39.3929288"],["-104.8598401","39.3924415"],["-104.8598378","39.3921203"],["-104.8598447","39.3917923"],["-104.8598624","39.3913321"],["-104.8598896","39.3908734"],["-104.8599352","39.3903573"],["-104.8599953","39.3898466"],["-104.8601487","39.3889033"],["-104.8602907","39.3881245"],["-104.8604615","39.3871792"],["-104.8605474","39.3865808"],["-104.8605877","39.3861522"],["-104.8606119","39.3857039"],["-104.860624","39.3853374"],["-104.8606094","39.3835189"],["-104.8605795","39.382032"],["-104.8605813","39.3816725"],["-104.8605945","39.3812852"],["-104.8606222","39.3809441"],["-104.8606565","39.3806596"],["-104.8606997","39.3804018"],["-104.8608193","39.3798306"],["-104.8609563","39.3793117"],["-104.8610417","39.3790676"],["-104.8612213","39.3785883"],["-104.861345","39.3783068"],["-104.861491","39.3779936"],["-104.8617496","39.377484"],["-104.8623112","39.3764207"],["-104.8626864","39.3756382"],["-104.862841","39.3752573"],["-104.863092","39.374514"],["-104.8639877","39.3715917"],["-104.8646381","39.3694812"],["-104.8648299","39.3688672"],["-104.8649807","39.3684059"],["-104.8666938","39.3633511"],["-104.8668333","39.3628826"],["-104.8670095","39.3621638"],["-104.86717","39.3614663"],["-104.8675271","39.3599855"],["-104.8677339","39.3592875"],["-104.8681283","39.3581767"],["-104.868524","39.3572298"],["-104.8687064","39.3568363"],["-104.8690455","39.3561693"],["-104.869312","39.3556681"],["-104.8713096","39.3519602"],["-104.8714812","39.3515731"],["-104.871734","39.350951"],["-104.8730733","39.3473095"],["-104.8736066","39.3458523"],["-104.8749386","39.3421276"],["-104.8751816","39.3414729"],["-104.8907348","39.2985402"],["-104.8913548","39.2973137"],["-104.895388","39.2902196"],["-104.8956563","39.2896721"],["-104.8958197","39.2892182"],["-104.8959385","39.2887141"],["-104.8977749","39.2777088"],["-104.8978647","39.2770146"],["-104.8978371","39.2760041"],["-104.897364","39.2722157"],["-104.8972577","39.2714838"],["-104.8971469","39.2708592"],["-104.8967784","39.2692376"],["-104.8964543","39.268112"],["-104.8956906","39.2659794"],["-104.8954511","39.2653863"],["-104.8952201","39.2648232"],["-104.8946181","39.2635992"],["-104.8942905","39.2629932"],["-104.8933446","39.2613615"],["-104.8921685","39.2595171"],["-104.8902598","39.2569042"],["-104.8884462","39.2545121"],["-104.8844311","39.2491245"],["-104.8841065","39.2487241"],["-104.8833047","39.2478516"],["-104.8829451","39.2475058"],["-104.8824681","39.2470717"],["-104.8802845","39.2451752"],["-104.8795208","39.2444919"],["-104.8791897","39.2441228"],["-104.8790066","39.243901"],["-104.8788452","39.2436948"],["-104.8786728","39.2434483"],["-104.8785028","39.2431974"],["-104.8783577","39.2429678"],["-104.8782557","39.2427849"],["-104.8780359","39.242351"],["-104.8779294","39.2421027"],["-104.8778407","39.2418564"],["-104.8776951","39.2414071"],["-104.8776343","39.2411851"],["-104.8775829","39.2409293"],["-104.877499","39.2403117"],["-104.877482","39.2400752"],["-104.8774702","39.2397461"],["-104.877478","39.2348297"],["-104.8775416","39.2335648"],["-104.8780298","39.2295337"],["-104.8784544","39.2263255"],["-104.8786725","39.2247499"],["-104.8789682","39.2225817"],["-104.8790249","39.2218174"],["-104.879004","39.2213993"],["-104.8789431","39.2209094"],["-104.8788797","39.2204938"],["-104.878766","39.220085"],["-104.8786529","39.2197122"],["-104.8785507","39.2194205"],["-104.8784318","39.219137"],["-104.8783043","39.2188594"],["-104.8781612","39.218575"],["-104.877825","39.2180192"],["-104.8776239","39.2177409"],["-104.8774136","39.2174677"],["-104.8772084","39.2172215"],["-104.8769697","39.2169528"],["-104.8767428","39.2167155"],["-104.876458","39.2164539"],["-104.8761223","39.2161572"],["-104.8741031","39.2144192"],["-104.8737279","39.2141132"],["-104.8730566","39.2136102"],["-104.8726794","39.2133444"],["-104.8723453","39.2131213"],["-104.8719344","39.2128582"],["-104.860778","39.206239"],["-104.8604286","39.2059924"],["-104.8601431","39.2057711"],["-104.8598727","39.2055514"],["-104.8596443","39.2053561"],["-104.8594281","39.2051504"],["-104.8592098","39.2049228"],["-104.8588436","39.2045023"],["-104.8586932","39.204311"],["-104.8585166","39.2040677"],["-104.8582914","39.2037358"],["-104.8527336","39.1950374"],["-104.8523989","39.1944959"],["-104.8521633","39.1940959"],["-104.8519926","39.193778"],["-104.8515795","39.1929309"],["-104.8514578","39.1926396"],["-104.851303","39.1922451"],["-104.8510076","39.1913986"],["-104.8508842","39.1909711"],["-104.8507793","39.1905267"],["-104.8506314","39.1897846"],["-104.8505815","39.1894367"],["-104.8505415","39.1890851"],["-104.8505054","39.1886407"],["-104.8504789","39.1881181"],["-104.8504442","39.1867055"],["-104.8504539","39.185199"],["-104.8503392","39.1800706"],["-104.8503201","39.1790786"],["-104.850305","39.1776629"],["-104.8503011","39.1773683"],["-104.85031","39.1769119"],["-104.8503792","39.175794"],["-104.8505105","39.1744876"],["-104.8506222","39.173733"],["-104.8509845","39.1720426"],["-104.8514193","39.1704894"],["-104.8519237","39.1689638"],["-104.8611926","39.1440879"],["-104.8616026","39.1427954"],["-104.8619078","39.1416724"],["-104.8619995","39.1412458"],["-104.8621407","39.140614"],["-104.862233","39.1400797"],["-104.8624372","39.1388658"],["-104.8644025","39.1270733"],["-104.8646357","39.1257515"],["-104.865868","39.1184916"],["-104.865925","39.1180655"],["-104.8659625","39.1176436"],["-104.8659794","39.1171068"],["-104.8659809","39.1165874"],["-104.8659581","39.1160314"],["-104.8659086","39.1154909"],["-104.8649624","39.1069554"],["-104.8639307","39.0977986"],["-104.863608","39.0957734"],["-104.8631842","39.0939981"],["-104.8611037","39.0851573"],["-104.8583156","39.0731551"],["-104.8580876","39.0722334"],["-104.8566498","39.0661096"],["-104.8564861","39.0655398"],["-104.8562698","39.0649207"],["-104.8560797","39.0644462"],["-104.8558583","39.0639352"],["-104.8554379","39.0631101"],["-104.8421142","39.0407938"],["-104.8411559","39.0390919"],["-104.8404251","39.0375463"],["-104.8399697","39.0364616"],["-104.8378249","39.0311112"],["-104.8373931","39.0301156"],["-104.8367614","39.0289707"],["-104.8363073","39.0282055"],["-104.8347372","39.0255033"],["-104.8346092","39.0252855"],["-104.8318352","39.0205625"],["-104.8314074","39.0198719"],["-104.824595","39.0096838"],["-104.8240725","39.0089576"],["-104.8233544","39.0080276"],["-104.8208488","39.0048756"],["-104.8202508","39.0040643"],["-104.819897","39.0035294"],["-104.8196195","39.0030689"],["-104.8193123","39.0025283"],["-104.8190706","39.0020717"],["-104.8188555","39.0016055"],["-104.8186273","39.0010862"],["-104.812841","38.985201"],["-104.8119238","38.9831191"],["-104.8049275","38.968982"],["-104.8018936","38.9628848"],["-104.8017298","38.9625123"],["-104.8016113","38.9621686"],["-104.8015105","38.961859"],["-104.8014545","38.9616256"],["-104.8013946","38.9613577"],["-104.8013468","38.961099"],["-104.801312","38.9608439"],["-104.8012819","38.9604845"],["-104.8012693","38.9600792"],["-104.8012852","38.9596884"],["-104.8013176","38.9593481"],["-104.8013935","38.9589187"],["-104.8014729","38.9585802"],["-104.8015675","38.9582539"],["-104.8016607","38.9579719"],["-104.8017529","38.9577181"],["-104.8018552","38.9574793"],["-104.801952","38.9572765"],["-104.8021644","38.9568856"],["-104.8022119","38.9568045"],["-104.8022854","38.9566844"],["-104.8024297","38.9564681"],["-104.8026035","38.9562186"],["-104.8027858","38.9559745"],["-104.8029731","38.9557467"],["-104.8031582","38.9555438"],["-104.8033628","38.9553351"],["-104.8035508","38.9551546"],["-104.8037969","38.9549291"],["-104.8040701","38.9547043"],["-104.8043722","38.9544665"],["-104.8046458","38.9542775"],["-104.8052237","38.9539128"],["-104.8102042","38.9509437"],["-104.8107232","38.9506055"],["-104.8109958","38.9504"],["-104.811278","38.950166"],["-104.8115373","38.9499408"],["-104.811972","38.949531"],["-104.8121779","38.9493129"],["-104.8123826","38.9490829"],["-104.812567","38.9488616"],["-104.8127346","38.9486483"],["-104.812879","38.9484541"],["-104.8129873","38.948293"],["-104.8131721","38.9479851"],["-104.8132886","38.9477809"],["-104.8134113","38.9475442"],["-104.8135874","38.9471732"],["-104.8137696","38.9466945"],["-104.8138544","38.9464224"],["-104.8139228","38.9461795"],["-104.8139752","38.9459513"],["-104.8140086","38.9457825"],["-104.8140368","38.945628"],["-104.8140762","38.945308"],["-104.8141107","38.9449688"],["-104.8141204","38.9447571"],["-104.8141198","38.9443905"],["-104.8141102","38.9441834"],["-104.8140855","38.9439041"],["-104.8140517","38.9436695"],["-104.8133344","38.9394912"],["-104.8132632","38.9390605"],["-104.8131678","38.9385499"],["-104.8130232","38.9377575"],["-104.8128837","38.9370017"],["-104.8127851","38.9361177"],["-104.8127443","38.9353856"],["-104.8127362","38.9348588"],["-104.8127645","38.9341779"],["-104.8128472","38.9333117"],["-104.812969","38.9325379"],["-104.813189","38.931194"],["-104.8148934","38.9200989"],["-104.8150012","38.9195706"],["-104.8151414","38.9190299"],["-104.8153283","38.9184632"],["-104.8155731","38.9179139"],["-104.8158362","38.9174173"],["-104.8161678","38.9168855"],["-104.8165021","38.9164346"],["-104.8167506","38.9161384"],["-104.8170119","38.9158528"],["-104.8174306","38.9154532"],["-104.8180325","38.9149554"],["-104.8224386","38.9116152"],["-104.823153","38.9110457"],["-104.8237615","38.9105236"],["-104.8242314","38.9100638"],["-104.824568","38.9096777"],["-104.8249216","38.9092565"],["-104.825208","38.9088534"],["-104.8254251","38.9085106"],["-104.8256289","38.9081537"],["-104.8258611","38.9076967"],["-104.8260975","38.9071885"],["-104.8263756","38.9065397"],["-104.8307895","38.8957268"],["-104.8313774","38.8943385"],["-104.8318461","38.8932699"],["-104.834505","38.8881197"],["-104.8347741","38.8875931"],["-104.8349661","38.887168"],["-104.8351586","38.8867184"],["-104.8353606","38.8861996"],["-104.8355096","38.8857561"],["-104.8356393","38.8853334"],["-104.8357338","38.8849728"],["-104.8359252","38.8840262"],["-104.8359835","38.8836624"],["-104.8360766","38.8827643"],["-104.8360949","38.8822741"],["-104.8360992","38.881827"],["-104.8360939","38.8815928"],["-104.8360708","38.8811185"],["-104.8360299","38.8806441"],["-104.8359957","38.8803638"],["-104.8358448","38.879451"],["-104.8350891","38.8760794"],["-104.8342835","38.8719891"],["-104.8338142","38.8697274"],["-104.8337366","38.8693154"],["-104.833706","38.8691"],["-104.8336893","38.8689591"],["-104.8336753","38.8688127"],["-104.8336513","38.8683946"],["-104.8336306","38.866721"],["-104.833617","38.8649893"],["-104.8336243","38.8647366"],["-104.8336423","38.8645195"],["-104.8336752","38.8642394"],["-104.8337119","38.8639856"],["-104.8337481","38.8637903"],["-104.8338518","38.8633788"],["-104.8340946","38.8624637"],["-104.834282","38.8616835"],["-104.8343664","38.8610462"],["-104.8344126","38.8603821"],["-104.8344272","38.8594797"],["-104.8344129","38.8588728"],["-104.8343672","38.8584191"],["-104.8342956","38.8579771"],["-104.8342212","38.8576452"],["-104.8341497","38.8573957"],["-104.8340536","38.8571245"],["-104.8338702","38.8566697"],["-104.8336208","38.85614"],["-104.8333712","38.8556337"],["-104.8331553","38.8551949"],["-104.8330199","38.8548811"],["-104.8328546","38.8544234"],["-104.8327832","38.8541538"],["-104.8327258","38.8537909"],["-104.832645","38.8531278"],["-104.8325317","38.8521356"],["-104.8323676","38.8511477"],["-104.832196","38.850343"],["-104.8318642","38.8491339"],["-104.8312489","38.8472158"],["-104.8311096","38.8466267"],["-104.8302877","38.8423864"],["-104.8302105","38.8417839"],["-104.8302152","38.8411762"],["-104.8302702","38.8397889"],["-104.8303705","38.8373832"],["-104.8304227","38.8367768"],["-104.8304982","38.8363111"],["-104.8305568","38.8360439"],["-104.8306146","38.8358658"],["-104.8306839","38.8356733"],["-104.8307837","38.8354294"],["-104.8309367","38.8351111"],["-104.8310954","38.8348298"],["-104.8312356","38.834601"],["-104.8314052","38.8343716"],["-104.8316328","38.8341053"],["-104.8318529","38.8338614"],["-104.8320909","38.8336359"],["-104.8334967","38.8324082"],["-104.8336675","38.8322132"],["-104.8337892","38.8320815"],["-104.8338979","38.831968"],["-104.8341915","38.8316006"],["-104.8344097","38.8312755"],["-104.8345437","38.8310347"],["-104.8346615","38.8307937"],["-104.8347868","38.8304834"],["-104.8348801","38.8302325"],["-104.8349973","38.8298458"],["-104.8351018","38.8294425"],["-104.8362315","38.8247093"],["-104.8364029","38.823904"],["-104.8364481","38.8236083"],["-104.8364885","38.8230444"],["-104.8364713","38.8225183"],["-104.8364001","38.8221665"],["-104.8363234","38.8218839"],["-104.8362188","38.8215992"],["-104.8360996","38.8213133"],["-104.8360043","38.8211254"],["-104.8358087","38.8208049"],["-104.8356874","38.820635"],["-104.8355455","38.8204495"],["-104.8353655","38.820231"],["-104.8351852","38.8200385"],["-104.8350504","38.8199044"],["-104.8348677","38.8197463"],["-104.8323644","38.8177513"],["-104.8315431","38.8171189"],["-104.8312238","38.8169051"],["-104.8309649","38.8167527"],["-104.8305035","38.8165105"],["-104.8298313","38.81617"],["-104.8292588","38.8159295"],["-104.8286578","38.8157057"],["-104.8279599","38.8154926"],["-104.8271996","38.8153186"],["-104.8264481","38.8151697"],["-104.8257903","38.8150893"],["-104.8203307","38.814813"],["-104.8191312","38.8147229"],["-104.8181973","38.8145953"],["-104.817111","38.8143753"],["-104.8161623","38.814111"],["-104.8154076","38.8138478"],["-104.8146456","38.8135435"],["-104.813867","38.8131684"],["-104.8130916","38.8127646"],["-104.8118844","38.812015"],["-104.8105872","38.8111009"],["-104.8095273","38.8103542"],["-104.808489","38.8096096"],["-104.8049377","38.807041"],["-104.8046229","38.8067902"],["-104.8042851","38.8065043"],["-104.8037092","38.8059884"],["-104.8032234","38.8055319"],["-104.8028038","38.8050898"],["-104.8022927","38.804506"],["-104.8018382","38.8039439"],["-104.8014666","38.8034378"],["-104.8011854","38.8030195"],["-104.8008444","38.8024819"],["-104.8003778","38.8016166"],["-104.7989293","38.7987584"],["-104.7968562","38.7946951"],["-104.7966044","38.7942242"],["-104.7962031","38.7934282"],["-104.7957396","38.7925647"],["-104.7953193","38.7918852"],["-104.7945663","38.790849"],["-104.7940983","38.7902482"],["-104.7846045","38.7789484"],["-104.784223","38.7784422"],["-104.7839688","38.7780791"],["-104.7836082","38.7775204"],["-104.783261","38.7769261"],["-104.7830446","38.7765116"],["-104.782749","38.7758881"],["-104.7824752","38.7752079"],["-104.7821209","38.774317"],["-104.7814535","38.7727997"],["-104.781041","38.7719716"],["-104.7806236","38.7711965"],["-104.7801267","38.7703425"],["-104.7793506","38.7690935"],["-104.7784342","38.7678346"],["-104.777643","38.7668274"],["-104.7772589","38.7663667"],["-104.7766018","38.7656046"],["-104.7759185","38.764856"],["-104.7752934","38.7642477"],["-104.774882","38.7638573"],["-104.7730588","38.7622099"],["-104.7719903","38.7613821"],["-104.7664568","38.7573305"],["-104.7651933","38.7564"],["-104.7646955","38.7559805"],["-104.7640856","38.7554257"],["-104.7322554","38.724028"],["-104.7317071","38.7234881"],["-104.7309452","38.7226238"],["-104.7305562","38.7221222"],["-104.7302455","38.7216993"],["-104.7299229","38.7212186"],["-104.7296561","38.7207799"],["-104.7293947","38.7203282"],["-104.7289546","38.7194036"],["-104.7287364","38.7189074"],["-104.7285695","38.7185204"],["-104.728239","38.7177638"],["-104.7266623","38.7140466"],["-104.7259521","38.7123599"],["-104.7236577","38.7067614"],["-104.723441","38.7061256"],["-104.7231654","38.705062"],["-104.7218183","38.6993971"],["-104.7215442","38.6982209"],["-104.7208164","38.695162"],["-104.7207013","38.6947242"],["-104.7204807","38.6939919"],["-104.7203259","38.6935784"],["-104.7195275","38.6917833"],["-104.7149309","38.6817959"],["-104.7141243","38.6800512"],["-104.7134165","38.6786419"],["-104.7132032","38.6782875"],["-104.7129193","38.6778505"],["-104.7125445","38.6773194"],["-104.7034875","38.6656325"],["-104.70237","38.6641278"],["-104.7015051","38.6626279"],["-104.7004133","38.6600505"],["-104.6970279","38.6514341"],["-104.6957011","38.648138"],["-104.6943223","38.6445326"],["-104.6938121","38.6424897"],["-104.6924312","38.6361952"],["-104.6921949","38.6350833"],["-104.6920173","38.6341451"],["-104.6916399","38.6324587"],["-104.691252","38.6306264"],["-104.6901579","38.625448"],["-104.6899913","38.6247072"],["-104.6896356","38.6231121"],["-104.6894884","38.6224171"],["-104.6888531","38.6195305"],["-104.6885055","38.6183006"],["-104.68815","38.6173813"],["-104.6875276","38.6160849"],["-104.6870723","38.6153477"],["-104.686091","38.6139749"],["-104.6824994","38.6091365"],["-104.6789543","38.6039939"],["-104.6774651","38.6016114"],["-104.6756462","38.5982959"],["-104.6737166","38.5946775"],["-104.6714775","38.5905223"],["-104.6712336","38.5900408"],["-104.6705109","38.5886967"],["-104.6701763","38.5880529"],["-104.6696078","38.5870204"],["-104.6692205","38.5863269"],["-104.6679118","38.5839546"],["-104.6673882","38.583092"],["-104.6670177","38.5825946"],["-104.6574237","38.5723748"],["-104.6568286","38.5716682"],["-104.6565087","38.5711899"],["-104.6562429","38.5707319"],["-104.6540161","38.5662148"],["-104.6533026","38.5646875"],["-104.6495285","38.5562427"],["-104.6487403","38.5544702"],["-104.6449882","38.5465787"],["-104.6434965","38.5436604"],["-104.6387595","38.5343592"],["-104.6376509","38.5321641"],["-104.6305575","38.518154"],["-104.6299172","38.5166793"],["-104.6297338","38.5161092"],["-104.6294557","38.5150951"],["-104.6291292","38.5134285"],["-104.6266177","38.5003184"],["-104.6263268","38.499276"],["-104.6260451","38.4984731"],["-104.6226473","38.4912065"],["-104.6209744","38.4877023"],["-104.6191977","38.4839262"],["-104.6174168","38.4801929"],["-104.6150746","38.4750482"],["-104.6138306","38.4714883"],["-104.6132368","38.4697858"],["-104.6120497","38.4665065"],["-104.6090732","38.4597548"],["-104.6082613","38.4579414"],["-104.6077152","38.4566759"],["-104.607281","38.4556515"],["-104.6069985","38.4548743"],["-104.6067343","38.4540514"],["-104.6065145","38.4531974"],["-104.606302","38.4515336"],["-104.6059857","38.4481208"],["-104.6059845","38.4471208"],["-104.6065752","38.4376814"],["-104.6075689","38.429968"],["-104.607857","38.4277819"],["-104.6080535","38.4264229"],["-104.6082572","38.425207"],["-104.6086226","38.4239259"],["-104.6164298","38.40337"],["-104.6171496","38.4014618"],["-104.6191455","38.3961195"],["-104.6195679","38.394799"],["-104.6198918","38.3933598"],["-104.6200298","38.3920465"],["-104.6200647","38.3910329"],["-104.6199664","38.3900002"],["-104.6191252","38.3849436"],["-104.6189904","38.3840291"],["-104.618968","38.3835427"],["-104.6189692","38.3825668"],["-104.6190226","38.3817974"],["-104.6198261","38.375656"],["-104.619963","38.374581"],["-104.6207329","38.3686336"],["-104.6208333","38.3677119"],["-104.6208705","38.3671417"],["-104.6208896","38.3663662"],["-104.6209151","38.3630792"],["-104.6208778","38.3613749"],["-104.6200294","38.3457396"],["-104.6199625","38.3448151"],["-104.6199635","38.3420822"],["-104.6199427","38.3395226"],["-104.6199208","38.3389603"],["-104.6198725","38.3385841"],["-104.6197551","38.3378799"],["-104.6196709","38.3374104"],["-104.6195486","38.3369126"],["-104.6191582","38.3356359"],["-104.6163473","38.3269853"],["-104.6160901","38.3261104"],["-104.6159253","38.3253847"],["-104.6158094","38.3247704"],["-104.6157636","38.3244268"],["-104.61574","38.3241427"],["-104.6157158","38.3238183"],["-104.6156652","38.323138"],["-104.6156191","38.3215766"],["-104.6155499","38.3180764"],["-104.6155182","38.3171788"],["-104.6153653","38.3153097"],["-104.6152891","38.3146748"],["-104.6150461","38.3130499"],["-104.6149342","38.3124077"],["-104.6125714","38.3016318"],["-104.612281","38.3000913"],["-104.6121711","38.299416"],["-104.6120544","38.2989313"],["-104.6118941","38.2983788"],["-104.6117279","38.2979674"],["-104.6115163","38.2975508"],["-104.6104493","38.295901"],["-104.6098886","38.2950492"],["-104.6096266","38.2946464"],["-104.6082625","38.2921116"],["-104.6073789","38.2904444"],["-104.6072353","38.2901413"],["-104.6068003","38.2889859"],["-104.6056301","38.2857286"],["-104.6054944","38.2853201"],["-104.6054025","38.2849429"],["-104.6053459","38.2845781"],["-104.6053202","38.2842143"],["-104.6053059","38.2837118"],["-104.605292","38.2819435"],["-104.6053331","38.2806648"],["-104.6053439","38.2802368"],["-104.6053332","38.279924"],["-104.6052895","38.279567"],["-104.6052337","38.2792682"],["-104.6051726","38.2790083"],["-104.6051117","38.2787949"],["-104.6050485","38.2785915"],["-104.6049919","38.2784279"],["-104.604913","38.2782363"],["-104.6047343","38.2778637"],["-104.6045726","38.2775273"],["-104.6043644","38.277085"],["-104.6042486","38.2767956"],["-104.6041833","38.2766004"],["-104.6041382","38.2764263"],["-104.6040987","38.2762469"],["-104.604055","38.2759652"],["-104.6040398","38.2755652"],["-104.6040225","38.2747213"],["-104.6040208","38.2741318"],["-104.6040338","38.2738159"],["-104.6040611","38.2736441"],["-104.6040917","38.2734931"],["-104.604138","38.2733187"],["-104.6042063","38.2730965"],["-104.6043382","38.272882"],["-104.6044263","38.272744"],["-104.6045462","38.2726509"],["-104.6046572","38.2725997"],["-104.6047733","38.2725688"],["-104.6049554","38.2725538"],["-104.6100775","38.2724281"],["-104.610099","38.2712505"],["-104.6100961","38.2709907"],["-104.6100095","38.2706416"],["-104.604047","38.2707503"],["-104.6040515","38.2717434"],["-104.6040745","38.2724448"],["-104.6040648","38.2727113"],["-104.6040366","38.2729174"],["-104.6040333","38.2729863"],["-104.6039489","38.2732704"],["-104.6038991","38.2734957"],["-104.6038706","38.2736834"],["-104.6038551","38.2740043"],["-104.6038876","38.2757076"],["-104.6039302","38.2762735"],["-104.6041618","38.2769309"],["-104.6042904","38.2772235"],["-104.6047547","38.2781647"],["-104.6048348","38.2783521"],["-104.6049201","38.2785672"],["-104.6049853","38.2787735"],["-104.6050535","38.2790158"],["-104.6051016","38.2792092"],["-104.6051447","38.2794068"],["-104.6051743","38.279597"],["-104.6051992","38.2798163"],["-104.6052168","38.2801071"],["-104.6052154","38.2804758"],["-104.6051758","38.2815798"],["-104.6051712","38.2830636"],["-104.605202","38.2844173"],["-104.6052584","38.2849673"],["-104.6053187","38.2852614"],["-104.6054136","38.2855672"],["-104.6067268","38.2892458"],["-104.6070971","38.2902554"],["-104.607257","38.2906134"],["-104.609403","38.2946215"],["-104.6099886","38.2955037"],["-104.6109302","38.2968994"],["-104.6111993","38.2973507"],["-104.6113924","38.2976941"],["-104.6115297","38.2979712"],["-104.6116813","38.2983614"],["-104.6118121","38.2987467"],["-104.6119351","38.2992042"],["-104.6120291","38.2996972"],["-104.6124133","38.3021079"],["-104.6125914","38.303678"],["-104.6127501","38.3052214"],["-104.6128514","38.3064258"],["-104.6128871","38.3066205"],["-104.6129259","38.3067378"],["-104.6129874","38.306866"],["-104.6130709","38.3069885"],["-104.6132086","38.3071546"],["-104.6133197","38.3072482"],["-104.6134697","38.3073624"],["-104.6136026","38.3074582"],["-104.6137437","38.3075156"],["-104.6139275","38.3075818"],["-104.6141999","38.3076663"],["-104.6160412","38.3078073"],["-104.616285","38.3078268"],["-104.6174585","38.3079124"],["-104.6176236","38.3079219"],["-104.6181621","38.307955"],["-104.6184383","38.3079738"],["-104.6196175","38.3080614"],["-104.6200507","38.3080933"],["-104.6205108","38.3081321"],["-104.6215048","38.3082673"],["-104.630233","38.3096059"],["-104.6304638","38.3096336"],["-104.6305602","38.3096514"],["-104.6412442","38.3112119"],["-104.641888","38.3113072"],["-104.6424693","38.3113906"],["-104.6513912","38.3127337"],["-104.6525571","38.3129201"],["-104.6541426","38.3131674"],["-104.6547409","38.3133222"],["-104.6552268","38.3134753"],["-104.655664","38.3136266"],["-104.656133","38.3138162"],["-104.6574118","38.3144765"],["-104.6582081","38.3148038"],["-104.6598436","38.3153691"],["-104.6604369","38.3155599"],["-104.6608955","38.3156717"],["-104.6611923","38.3157318"],["-104.6615593","38.3157966"],["-104.6620041","38.3158537"],["-104.6627758","38.3159117"],["-104.6633741","38.3159305"],["-104.6708189","38.3160039"],["-104.6711497","38.3160177"],["-104.6718188","38.3160728"],["-104.6722598","38.3161243"],["-104.6726558","38.3161851"],["-104.6730297","38.3162582"],["-104.6733712","38.3163373"],["-104.7424863","38.3353108"],["-104.7725707","38.3435411"],["-104.773347","38.343717"],["-104.9389319","38.3717461"],["-104.940083","38.3719646"],["-104.940555","38.3720899"],["-104.9409113","38.3722126"],["-104.9413376","38.3723596"],["-104.9418671","38.3725661"],["-104.9422876","38.3727505"],["-104.9427434","38.3729916"],["-104.9431596","38.373234"],["-104.9435828","38.3735068"],["-104.9441354","38.3738928"],["-104.983062","38.4024857"],["-104.9834502","38.4027509"],["-104.9838031","38.4029654"],["-104.984111","38.4031415"],["-104.984417","38.4033008"],["-104.9848965","38.4035264"],["-104.9853236","38.4037077"],["-104.9856846","38.4038512"],["-104.9864606","38.4040978"],["-105.1633763","38.450118"],["-105.1638218","38.4502067"],["-105.1642501","38.4502758"],["-105.1646323","38.4503255"],["-105.1650949","38.4503659"],["-105.1655273","38.4503915"],["-105.1660143","38.4504048"],["-105.1664894","38.4503903"],["-105.1669036","38.4503708"],["-105.1673376","38.4503334"],["-105.1676744","38.4502953"],["-105.1680055","38.4502466"],["-105.1683216","38.4501913"],["-105.1686509","38.4501231"],["-105.1692989","38.4499652"],["-105.169651","38.4498602"],["-105.170272","38.4496497"],["-105.1756366","38.4477173"],["-105.175965","38.4476184"],["-105.1762861","38.4475307"],["-105.176708","38.4474289"],["-105.1771761","38.4473222"],["-105.1772545","38.4472803"],["-105.1773038","38.4472339"],["-105.1774767","38.44719"],["-105.1776694","38.4471594"],["-105.1779446","38.4471253"],["-105.1783004","38.4470916"],["-105.1797084","38.4470437"],["-105.1814873","38.4470566"],["-105.1846863","38.4470332"],["-105.18485","38.4470331"],["-105.1853161","38.4470321"],["-105.1876817","38.4470347"],["-105.1910752","38.4470155"],["-105.1921228","38.4470196"],["-105.1924186","38.4470181"],["-105.1924696","38.4470178"],["-105.1934276","38.447016"],["-105.1935129","38.4470319"],["-105.1935911","38.4470522"],["-105.1937049","38.4470657"],["-105.1944155","38.4470669"],["-105.1948461","38.4470619"],["-105.1949448","38.4470511"],["-105.1950427","38.4470344"],["-105.195175","38.4470122"],["-105.1965448","38.4470089"],["-105.1968041","38.447009"],["-105.199806","38.4470041"],["-105.2002628","38.4470036"],["-105.2013915","38.4469943"],["-105.2021187","38.4470071"],["-105.2024775","38.4470362"],["-105.2028248","38.4470815"],["-105.2031687","38.4471433"],["-105.2037683","38.4472691"],["-105.2040362","38.4473765"],["-105.2043302","38.4474868"],["-105.205344","38.4477638"],["-105.2059249","38.4478835"],["-105.2061463","38.4479073"],["-105.2063569","38.4479342"],["-105.2068644","38.4479949"],["-105.2070724","38.4480056"],["-105.2078984","38.4480445"],["-105.209391","38.4480375"],["-105.2123256","38.4480377"],["-105.2148822","38.4480228"],["-105.217433","38.4480411"],["-105.2175127","38.4482485"],["-105.2176476","38.4482598"],["-105.2181219","38.4481726"],["-105.2194293","38.4481726"],["-105.2198781","38.4481861"],["-105.2200843","38.4482099"],["-105.2202722","38.4482222"],["-105.2203979","38.448234"],["-105.2205384","38.4497536"],["-105.222566","38.4497732"],["-105.2253366","38.4497839"],["-105.2254154","38.4505515"],["-105.2253703","38.45073"],["-105.2251227","38.4510599"],["-105.2252111","38.4511678"],["-105.2253645","38.4513671"],["-105.2254427","38.4515682"],["-105.2254463","38.4522323"],["-105.2255528","38.4526104"],["-105.2273125","38.4526236"],["-105.2274086","38.4521791"],["-105.2274174","38.4516753"],["-105.2274226","38.4511257"],["-105.2274173","38.4499279"],["-105.227431","38.448535"],["-105.2274326","38.447565"],["-105.227431","38.4473551"],["-105.227427","38.4471384"],["-105.2274301","38.4470206"],["-105.2275139","38.4468224"],["-105.2275428","38.4467958"],["-105.2275628","38.4467755"],["-105.2275796","38.4467437"],["-105.2275844","38.4467088"],["-105.2275764","38.4466739"],["-105.2275552","38.4466433"],["-105.2275261","38.4466117"],["-105.2275176","38.4464791"],["-105.2274838","38.4463961"],["-105.22748","38.446322"],["-105.2274389","38.4462306"],["-105.2272848","38.4460258"],["-105.2271755","38.4458674"],["-105.2350892","38.4421031"],["-105.2428235","38.4384204"],["-105.2436524","38.4380065"],["-105.2439399","38.437855"],["-105.2442289","38.4376726"],["-105.2445824","38.4374295"],["-105.2448402","38.4372503"],["-105.2450361","38.4371209"],["-105.2452876","38.4369615"],["-105.2455252","38.4368277"],["-105.2457938","38.4366963"],["-105.2460374","38.4365956"],["-105.2462978","38.4365013"],["-105.2467437","38.4363617"],["-105.2478049","38.436058"],["-105.2483161","38.4359225"],["-105.2486206","38.4358615"],["-105.2498111","38.4356855"],["-105.2522292","38.4353541"],["-105.2525123","38.4353263"],["-105.2527124","38.4353139"],["-105.2528764","38.4353188"],["-105.2530034","38.4353327"],["-105.2531351","38.4353576"],["-105.2532999","38.435396"],["-105.2534854","38.4354625"],["-105.2536367","38.4355367"],["-105.2537521","38.435605"],["-105.2538737","38.4356912"],["-105.2539697","38.4357715"],["-105.2540795","38.435889"],["-105.2541561","38.4359981"],["-105.25422","38.4361127"],["-105.2542744","38.4362343"],["-105.2543144","38.4363632"],["-105.2543329","38.4365038"],["-105.2543372","38.4366874"],["-105.254323","38.4368325"],["-105.25429","38.4370324"],["-105.2523735","38.4447753"],["-105.2521176","38.4458678"],["-105.2520521","38.4462746"],["-105.2519809","38.4469096"],["-105.2519592","38.4474156"],["-105.2519556","38.4475734"],["-105.25205","38.4496218"],["-105.252054","38.4500815"],["-105.252046","38.4503905"],["-105.2520272","38.4507375"],["-105.2519807","38.4511232"],["-105.2518053","38.4520454"],["-105.2517597","38.4524792"],["-105.2517432","38.4527595"],["-105.2517475","38.4530106"],["-105.2517746","38.4533204"],["-105.251813","38.4535772"],["-105.2518677","38.4538316"],["-105.2522556","38.4553002"],["-105.2525108","38.4563535"],["-105.2531482","38.4594391"],["-105.2537999","38.4633367"],["-105.253877","38.4636357"],["-105.2539766","38.4639312"],["-105.2541089","38.4642304"],["-105.2547666","38.4654582"],["-105.2569209","38.469439"],["-105.2571601","38.4699097"],["-105.2574002","38.4704289"],["-105.2576711","38.4710885"],["-105.2589157","38.4742737"],["-105.2591693","38.4748967"],["-105.2592896","38.4751361"],["-105.2594019","38.4753283"],["-105.2595451","38.4755406"],["-105.2605763","38.4766969"],["-105.2632615","38.4795956"],["-105.2637837","38.4801113"],["-105.2639331","38.4802464"],["-105.2642657","38.4805268"],["-105.2675494","38.4833155"],["-105.2683571","38.4839872"],["-105.2686078","38.4841498"],["-105.2692544","38.4844957"],["-105.2780651","38.4888353"],["-105.2783788","38.4890157"],["-105.2786404","38.4891955"],["-105.278839","38.4893474"],["-105.2790113","38.4894894"],["-105.2791651","38.4896307"],["-105.2793299","38.4898058"],["-105.2801015","38.4907314"],["-105.2802335","38.490884"],["-105.2803594","38.491014"],["-105.2805124","38.491157"],["-105.2806908","38.4913007"],["-105.2808855","38.4914449"],["-105.2810559","38.4915545"],["-105.2812215","38.4916501"],["-105.281415","38.4917476"],["-105.2816573","38.4918593"],["-105.2819425","38.491981"],["-105.2822866","38.4921371"],["-105.282608","38.4922927"],["-105.2828594","38.492429"],["-105.2830947","38.4925769"],["-105.2832872","38.4927188"],["-105.283518","38.4929196"],["-105.284022","38.4933735"],["-105.2842413","38.4935479"],["-105.2844661","38.4937149"],["-105.2847788","38.4939241"],["-105.2858494","38.4945591"],["-105.2871033","38.495264"],["-105.2873631","38.4953952"],["-105.2876381","38.4955114"],["-105.2878825","38.4955946"],["-105.2881389","38.4956719"],["-105.2883794","38.4957282"],["-105.2886136","38.4957754"],["-105.2888773","38.4958137"],["-105.2891454","38.4958406"],["-105.2894085","38.4958574"],["-105.2896419","38.4958627"],["-105.2898792","38.495856"],["-105.2900988","38.4958421"],["-105.2903014","38.495818"],["-105.2905144","38.4957855"],["-105.2907948","38.4957248"],["-105.2913261","38.4955784"],["-105.2924968","38.4952454"],["-105.2928187","38.4951698"],["-105.2930694","38.495122"],["-105.29329","38.4950897"],["-105.293578","38.4950612"],["-105.2938592","38.4950447"],["-105.2940794","38.4950416"],["-105.2943736","38.4950548"],["-105.2958361","38.4951746"],["-105.3087743","38.4963093"],["-105.3091657","38.49633"],["-105.3105411","38.4963475"],["-105.3214399","38.4961509"],["-105.3216262","38.4961499"],["-105.3221254","38.4961492"],["-105.322782","38.4961671"],["-105.3240196","38.4962346"],["-105.3249447","38.4963048"],["-105.3290477","38.4966508"],["-105.3502118","38.498449"],["-105.3506485","38.4984675"],["-105.3509433","38.4984638"],["-105.3512222","38.4984561"],["-105.3516798","38.4984194"],["-105.3519663","38.4983851"],["-105.3522719","38.4983325"],["-105.3525601","38.4982778"],["-105.3528222","38.4982164"],["-105.3530906","38.4981395"],["-105.3536261","38.49796"],["-105.3548269","38.4975401"],["-105.355054","38.497468"],["-105.3553049","38.4973951"],["-105.3555337","38.4973491"],["-105.355781","38.4973213"],["-105.3560217","38.4973118"],["-105.3562207","38.497322"],["-105.3564537","38.4973495"],["-105.3566741","38.4973957"],["-105.356869","38.4974497"],["-105.3570768","38.4975266"],["-105.3572665","38.4976126"],["-105.3577377","38.4978652"],["-105.3579331","38.4979568"],["-105.3581148","38.4980311"],["-105.3583079","38.4980965"],["-105.3584968","38.4981355"],["-105.3586855","38.4981661"],["-105.3588914","38.4981856"],["-105.3590839","38.4981962"],["-105.3592587","38.4981903"],["-105.35944","38.4981705"],["-105.359613","38.4981404"],["-105.359785","38.4981018"],["-105.3599681","38.4980436"],["-105.3601298","38.4979768"],["-105.3602833","38.4979063"],["-105.3604269","38.4978214"],["-105.360569","38.4977204"],["-105.3607201","38.4975996"],["-105.3608368","38.4974749"],["-105.3609365","38.4973321"],["-105.3610138","38.4971828"],["-105.3611116","38.4968645"],["-105.3611936","38.4965994"],["-105.3613368","38.496187"],["-105.361415","38.4960303"],["-105.3615289","38.4958539"],["-105.361651","38.4957043"],["-105.361777","38.495575"],["-105.3620536","38.495337"],["-105.3624362","38.4950157"],["-105.3627532","38.494747"],["-105.3629244","38.494588"],["-105.3630513","38.4944506"],["-105.3631492","38.4943228"],["-105.3632353","38.4941982"],["-105.3633173","38.4940522"],["-105.3633863","38.4939008"],["-105.3634442","38.4937387"],["-105.3634817","38.4935877"],["-105.3635103","38.4934145"],["-105.3635752","38.4929861"],["-105.3636128","38.4927783"],["-105.3636725","38.4925738"],["-105.363747","38.4923656"],["-105.3638409","38.4921798"],["-105.3639324","38.4920214"],["-105.3640547","38.4918443"],["-105.3641687","38.4917064"],["-105.3642957","38.4915698"],["-105.3644744","38.4914009"],["-105.364664","38.4912473"],["-105.3663163","38.4900168"],["-105.3674821","38.4891665"],["-105.3680368","38.4888153"],["-105.3689426","38.4883088"],["-105.3703301","38.4875454"],["-105.3707407","38.4873352"],["-105.3725471","38.4866982"],["-105.3758997","38.4856408"],["-105.3767308","38.485426"],["-105.3770752","38.4853452"],["-105.3773948","38.4852799"],["-105.3792807","38.4849723"],["-105.3799614","38.4849001"],["-105.380542","38.4848548"],["-105.3810976","38.4848213"],["-105.3817363","38.4847938"],["-105.382355","38.4847753"],["-105.3829186","38.4847869"],["-105.3838509","38.4848334"],["-105.384989","38.4849415"],["-105.3860198","38.4850708"],["-105.3893035","38.4855557"],["-105.3902174","38.4856654"],["-105.3904825","38.4856861"],["-105.3911222","38.4857197"],["-105.3914341","38.4857247"],["-105.3924417","38.4856961"],["-105.392699","38.4856794"],["-105.3938804","38.4855544"],["-105.39903","38.4848215"],["-105.400037","38.4846919"],["-105.4002563","38.4846768"],["-105.4004436","38.4846726"],["-105.400645","38.4846795"],["-105.400896","38.4847181"],["-105.4012683","38.4847968"],["-105.4021762","38.4849893"],["-105.4024207","38.4850285"],["-105.4026243","38.4850536"],["-105.4028145","38.4850674"],["-105.4030131","38.4850713"],["-105.4032586","38.4850585"],["-105.4060444","38.4847591"],["-105.4063988","38.4847147"],["-105.4066395","38.4846748"],["-105.4108127","38.4836986"],["-105.4111885","38.4835964"],["-105.4145115","38.48253"],["-105.4149719","38.482365"],["-105.4152125","38.4822607"],["-105.4168199","38.4814935"],["-105.4173459","38.4812811"],["-105.4175497","38.4812175"],["-105.4178015","38.4811508"],["-105.4225015","38.4802446"],["-105.4229506","38.4801487"],["-105.4233487","38.4800461"],["-105.4236831","38.4799458"],["-105.4239783","38.479849"],["-105.4244487","38.4796761"],["-105.4257637","38.4791515"],["-105.4261227","38.4790043"],["-105.4263848","38.4788813"],["-105.4266234","38.4787356"],["-105.4268","38.4785974"],["-105.4269793","38.4784446"],["-105.427237","38.4781885"],["-105.4274582","38.477988"],["-105.4276655","38.4778133"],["-105.4279194","38.4776255"],["-105.4282917","38.4773774"],["-105.4285255","38.4772514"],["-105.4286885","38.4771793"],["-105.4288436","38.4771173"],["-105.4290088","38.4770662"],["-105.4291801","38.4770184"],["-105.4294004","38.4769815"],["-105.4299471","38.4769533"],["-105.4314628","38.4769143"],["-105.4325556","38.476881"],["-105.4330435","38.4768384"],["-105.4354982","38.4765613"],["-105.4359464","38.476503"],["-105.4362383","38.4764533"],["-105.4370067","38.4762472"],["-105.4394434","38.4755666"],["-105.4396953","38.4754882"],["-105.4399481","38.475394"],["-105.4402556","38.4752618"],["-105.4406157","38.4750946"],["-105.441082","38.4748562"],["-105.4413929","38.4746786"],["-105.4415864","38.4745429"],["-105.4417312","38.4744114"],["-105.4418655","38.4742629"],["-105.4420133","38.4740507"],["-105.4421853","38.4737716"],["-105.4423483","38.4734993"],["-105.4424866","38.4732809"],["-105.4426124","38.4731014"],["-105.442701","38.4730005"],["-105.4427988","38.4729046"],["-105.4429018","38.4728256"],["-105.4430227","38.4727406"],["-105.4431999","38.4726427"],["-105.4434282","38.4725442"],["-105.4437314","38.4724313"],["-105.4440451","38.4723291"],["-105.4443919","38.4722216"],["-105.4445968","38.4721705"],["-105.4448397","38.4721343"],["-105.4450937","38.4721129"],["-105.4467024","38.4721174"],["-105.4473853","38.4720956"],["-105.447689","38.472063"],["-105.4479442","38.4720291"],["-105.448181","38.4719766"],["-105.4484293","38.4719106"],["-105.4486635","38.4718365"],["-105.4492849","38.4716065"],["-105.4495577","38.471497"],["-105.4497839","38.4713892"],["-105.4499489","38.4712959"],["-105.4501168","38.4711763"],["-105.4502475","38.4710745"],["-105.4503504","38.4709768"],["-105.4504499","38.470872"],["-105.4505461","38.4707601"],["-105.4506322","38.4706378"],["-105.4507112","38.4705132"],["-105.450777","38.470386"],["-105.450839","38.4702269"],["-105.4509018","38.4700146"],["-105.4511002","38.4689693"],["-105.4511938","38.4685186"],["-105.4512649","38.4682575"],["-105.4513452","38.4680027"],["-105.4520317","38.4661519"],["-105.4524983","38.4649139"],["-105.4526199","38.4646292"],["-105.4527222","38.4644207"],["-105.4528473","38.4641976"],["-105.4529814","38.4639819"],["-105.4531131","38.463793"],["-105.4532728","38.4635744"],["-105.4546469","38.4619092"],["-105.4556215","38.4607581"],["-105.455821","38.4605553"],["-105.4559875","38.4603973"],["-105.456322","38.4601285"],["-105.4565108","38.4599972"],["-105.45675","38.4598459"],["-105.4569646","38.4597228"],["-105.4571629","38.459625"],["-105.4573783","38.4595289"],["-105.4575834","38.4594458"],["-105.4578283","38.4593623"],["-105.4581918","38.4592623"],["-105.4585262","38.4591876"],["-105.459568","38.4589947"],["-105.4639247","38.4583864"],["-105.4704051","38.4578017"],["-105.4707699","38.4577753"],["-105.4710162","38.4577695"],["-105.4713207","38.4577767"],["-105.4722368","38.4578301"],["-105.4766906","38.4581062"],["-105.4777567","38.4581514"],["-105.4783453","38.4581354"],["-105.4827212","38.4577808"],["-105.4831854","38.4577337"],["-105.4834391","38.4576901"],["-105.4837091","38.4576347"],["-105.4841806","38.4575112"],["-105.4847464","38.4573528"],["-105.4853204","38.4571867"],["-105.4856347","38.4570891"],["-105.4858973","38.4569828"],["-105.4861366","38.4568716"],["-105.4863205","38.4567726"],["-105.48655","38.4566342"],["-105.4868213","38.4564537"],["-105.4873655","38.4560492"],["-105.489318","38.4545715"],["-105.4895946","38.4543777"],["-105.4898562","38.4542021"],["-105.4900313","38.4541002"],["-105.4902504","38.4539971"],["-105.4904949","38.4539032"],["-105.490764","38.4538218"],["-105.491151","38.4537327"],["-105.4946118","38.4530293"],["-105.4947635","38.4530051"],["-105.4949337","38.4529936"],["-105.4952707","38.4529881"],["-105.4955892","38.453025"],["-105.4958667","38.4530843"],["-105.4961203","38.4531633"],["-105.4963206","38.4532418"],["-105.4965177","38.4533403"],["-105.4967541","38.4534901"],["-105.4970049","38.4536575"],["-105.4972822","38.4538573"],["-105.4975628","38.4540356"],["-105.4979576","38.4542702"],["-105.4983458","38.4544492"],["-105.4986236","38.4545649"],["-105.498875","38.454656"],["-105.4994707","38.4548275"],["-105.5011956","38.4553136"],["-105.5016576","38.4554282"],["-105.5019698","38.4554894"],["-105.5022192","38.455528"],["-105.5024693","38.455552"],["-105.5026537","38.4555644"],["-105.5028603","38.4555708"],["-105.5030757","38.4555736"],["-105.5033088","38.4555639"],["-105.5035765","38.4555407"],["-105.5038179","38.4555128"],["-105.5044052","38.4554189"],["-105.5046767","38.4553786"],["-105.5049028","38.4553592"],["-105.5051056","38.4553541"],["-105.5054011","38.4553694"],["-105.5056274","38.4553938"],["-105.5058417","38.4554321"],["-105.5060571","38.4554884"],["-105.5062853","38.4555655"],["-105.5065503","38.4556782"],["-105.5072305","38.4560344"],["-105.5073875","38.456106"],["-105.5075418","38.4561701"],["-105.5076991","38.4562154"],["-105.5078861","38.4562601"],["-105.5083482","38.4563414"],["-105.5105508","38.4566729"],["-105.510794","38.4567046"],["-105.5111337","38.4567332"],["-105.5112561","38.4567288"],["-105.5113909","38.4567226"],["-105.511536","38.4567113"],["-105.5116877","38.4566884"],["-105.5118522","38.4566532"],["-105.5119902","38.4566195"],["-105.5121224","38.4565755"],["-105.5122536","38.4565258"],["-105.5123756","38.4564713"],["-105.5125645","38.4563675"],["-105.5129838","38.4560672"],["-105.5134292","38.4557421"],["-105.5136994","38.4555521"],["-105.5138692","38.4554491"],["-105.5140349","38.4553604"],["-105.514213","38.4552802"],["-105.5143965","38.4552097"],["-105.5148005","38.4550723"],["-105.5149532","38.4550178"],["-105.5150687","38.4549683"],["-105.5151808","38.4549093"],["-105.5152879","38.4548407"],["-105.5153881","38.4547679"],["-105.5154937","38.4546808"],["-105.5155957","38.454578"],["-105.5161531","38.4538867"],["-105.5175961","38.452062"],["-105.5183002","38.4511623"],["-105.5188033","38.4505233"],["-105.5190027","38.4503173"],["-105.51918","38.4501578"],["-105.5194452","38.4499817"],["-105.5199491","38.4496903"],["-105.5201292","38.4495765"],["-105.5204332","38.4493422"],["-105.5205979","38.4491893"],["-105.5207152","38.4490723"],["-105.5208286","38.4489426"],["-105.5223382","38.4470914"],["-105.5226422","38.4467434"],["-105.5229808","38.4463874"],["-105.5233222","38.4461081"],["-105.5237211","38.4458529"],["-105.5247309","38.4452963"],["-105.5249578","38.4452018"],["-105.5251503","38.4451398"],["-105.5253482","38.4450935"],["-105.5255689","38.4450589"],["-105.5257575","38.4450446"],["-105.5259457","38.4450393"],["-105.526125","38.4450457"],["-105.5263169","38.4450665"],["-105.5265212","38.4451059"],["-105.5267429","38.4451508"],["-105.5269592","38.4451926"],["-105.5271412","38.4452091"],["-105.5273285","38.4452074"],["-105.5275278","38.4451916"],["-105.5277069","38.4451635"],["-105.5278777","38.4451155"],["-105.5280685","38.4450474"],["-105.5282306","38.4449661"],["-105.5283746","38.4448698"],["-105.5285273","38.4447378"],["-105.5286257","38.4446401"],["-105.5287268","38.4445168"],["-105.5287956","38.4444021"],["-105.5288546","38.4442706"],["-105.5294422","38.4428441"],["-105.5295903","38.4425548"],["-105.5297386","38.4423528"],["-105.5298793","38.4422061"],["-105.5300172","38.4420898"],["-105.5301741","38.4419903"],["-105.530397","38.4418788"],["-105.5307259","38.4417451"],["-105.5314284","38.4414782"],["-105.5316771","38.4413948"],["-105.5319173","38.4413301"],["-105.532176","38.4412733"],["-105.5323762","38.4412495"],["-105.5325762","38.4412336"],["-105.5327606","38.4412236"],["-105.5329248","38.4412261"],["-105.5330879","38.4412336"],["-105.5333659","38.4412648"],["-105.5336215","38.4413109"],["-105.5339864","38.4414065"],["-105.5363319","38.442171"],["-105.5365055","38.4422122"],["-105.5366939","38.4422404"],["-105.5369601","38.442265"],["-105.5374622","38.4422924"],["-105.5379438","38.4423096"],["-105.5383136","38.4423129"],["-105.5385868","38.4422928"],["-105.5387878","38.4422658"],["-105.538991","38.4422277"],["-105.5391932","38.4421702"],["-105.5394059","38.4420959"],["-105.5396056","38.4420089"],["-105.5397842","38.4419249"],["-105.5399683","38.4418094"],["-105.5401291","38.441699"],["-105.5402922","38.4415741"],["-105.5404161","38.4414523"],["-105.5405257","38.4413379"],["-105.5406256","38.4412063"],["-105.5407172","38.4410739"],["-105.5407742","38.4409623"],["-105.540841","38.4408175"],["-105.5408902","38.4406859"],["-105.5409399","38.4405164"],["-105.5409599","38.440386"],["-105.5409743","38.4402254"],["-105.5409821","38.4401083"],["-105.5409727","38.4399958"],["-105.5409526","38.4398702"],["-105.5409181","38.43973"],["-105.540884","38.4396363"],["-105.540832","38.4395241"],["-105.5407619","38.4393822"],["-105.5406648","38.4392376"],["-105.5405681","38.4391292"],["-105.5403579","38.4389288"],["-105.5401904","38.4388141"],["-105.5397749","38.4385529"],["-105.5396471","38.438464"],["-105.539551","38.4383825"],["-105.5394601","38.4382981"],["-105.5393397","38.4381531"],["-105.5392387","38.4379951"],["-105.539161","38.4378482"],["-105.5391252","38.4377537"],["-105.5390973","38.4376514"],["-105.5390763","38.4375502"],["-105.5390621","38.4374363"],["-105.5390609","38.4373488"],["-105.5390653","38.4372188"],["-105.5390879","38.4370718"],["-105.5391167","38.4369563"],["-105.5391661","38.4368389"],["-105.5396191","38.4359252"],["-105.53986","38.4354867"],["-105.5400661","38.4351528"],["-105.5401722","38.4349718"],["-105.540244","38.4348393"],["-105.5402934","38.4346989"],["-105.5403119","38.4345633"],["-105.5403148","38.4344381"],["-105.5402611","38.4339154"],["-105.5402619","38.433797"],["-105.5402742","38.4336789"],["-105.5403059","38.4335508"],["-105.5403542","38.4334454"],["-105.5404281","38.4333345"],["-105.5405503","38.4331976"],["-105.5406811","38.4330568"],["-105.5410467","38.432676"],["-105.5411913","38.4325004"],["-105.5413118","38.4323256"],["-105.5415476","38.43195"],["-105.5421987","38.4308846"],["-105.5424079","38.43056"],["-105.5425392","38.4303923"],["-105.5426683","38.430267"],["-105.5428067","38.4301548"],["-105.5430001","38.4300178"],["-105.5432578","38.4298551"],["-105.5435094","38.4297166"],["-105.5437617","38.4295962"],["-105.5439472","38.4295143"],["-105.5441576","38.4294444"],["-105.5444219","38.4293705"],["-105.5446857","38.4293231"],["-105.545021","38.4292761"],["-105.5453427","38.4292581"],["-105.5459632","38.4292752"],["-105.5473375","38.4293538"],["-105.5475842","38.4293826"],["-105.5478675","38.4294408"],["-105.5481263","38.4294993"],["-105.548648","38.4296338"],["-105.5488732","38.4296879"],["-105.5490906","38.4297278"],["-105.5493126","38.4297611"],["-105.5495406","38.4297798"],["-105.5497794","38.4297886"],["-105.5501474","38.4297825"],["-105.5508802","38.4297617"],["-105.5511555","38.429745"],["-105.5513523","38.4297164"],["-105.5515709","38.4296663"],["-105.5518057","38.4295922"],["-105.55199","38.4295156"],["-105.5521676","38.4294253"],["-105.5523373","38.429318"],["-105.5524893","38.4291928"],["-105.5526155","38.4290773"],["-105.5527466","38.4289249"],["-105.5529714","38.4285573"],["-105.5538184","38.4270423"],["-105.5539137","38.4268869"],["-105.554011","38.426772"],["-105.5541076","38.4266681"],["-105.5542143","38.4265644"],["-105.5543446","38.4264734"],["-105.5544814","38.4263907"],["-105.5546154","38.4263234"],["-105.5547912","38.4262434"],["-105.5549705","38.4261847"],["-105.5551625","38.4261344"],["-105.5553277","38.4261066"],["-105.5555094","38.4260867"],["-105.5557128","38.4260798"],["-105.5559584","38.4260942"],["-105.5564535","38.4261439"],["-105.5566658","38.4261552"],["-105.5568556","38.42615"],["-105.5570746","38.4261284"],["-105.557272","38.4260951"],["-105.5574888","38.4260475"],["-105.5577174","38.4259785"],["-105.5579205","38.4258954"],["-105.5581018","38.4257996"],["-105.558279","38.4256899"],["-105.5584429","38.4255771"],["-105.5586216","38.4254245"],["-105.5588135","38.425248"],["-105.5589531","38.4251059"],["-105.5590844","38.424959"],["-105.5595197","38.4243616"],["-105.5596655","38.4241691"],["-105.5597791","38.4240302"],["-105.5598828","38.4239206"],["-105.560043","38.423777"],["-105.5601914","38.423661"],["-105.5603446","38.423553"],["-105.5605222","38.4234384"],["-105.5606859","38.4233504"],["-105.5608769","38.4232651"],["-105.5610973","38.4231894"],["-105.5613338","38.423132"],["-105.5616105","38.4230981"],["-105.561985","38.4230908"],["-105.5626398","38.4230991"],["-105.5630867","38.4231107"],["-105.5633322","38.423134"],["-105.563536","38.4231734"],["-105.5637153","38.4232191"],["-105.5639247","38.4233022"],["-105.5641074","38.4233946"],["-105.5642927","38.4235116"],["-105.5644854","38.4236493"],["-105.5646828","38.4238127"],["-105.5648809","38.4240024"],["-105.5651072","38.4242551"],["-105.5653158","38.4244879"],["-105.5654893","38.4246503"],["-105.5656683","38.4247768"],["-105.5659447","38.4249271"],["-105.5662204","38.4250635"],["-105.5665042","38.4251912"],["-105.5667789","38.4252976"],["-105.56705","38.4253728"],["-105.567314","38.4254245"],["-105.5675402","38.4254461"],["-105.5677815","38.4254483"],["-105.5680319","38.4254322"],["-105.5682899","38.4253929"],["-105.5684928","38.4253389"],["-105.5687137","38.4252631"],["-105.5689558","38.4251521"],["-105.5691541","38.4250359"],["-105.569313","38.4249229"],["-105.5695512","38.4247335"],["-105.5711908","38.4233354"],["-105.5715511","38.4229776"],["-105.5717019","38.4228038"],["-105.5719296","38.4225098"],["-105.5722639","38.4220467"],["-105.5725113","38.4217067"],["-105.5727742","38.4213632"],["-105.5729916","38.4211047"],["-105.5732205","38.4208601"],["-105.573568","38.420494"],["-105.5737328","38.4202966"],["-105.5738567","38.4201089"],["-105.5739451","38.4199318"],["-105.5740021","38.4198019"],["-105.5740439","38.4196829"],["-105.5740825","38.4195212"],["-105.574743","38.415476"],["-105.5749906","38.4139429"],["-105.5750439","38.4137214"],["-105.5751069","38.4135161"],["-105.5751921","38.4133188"],["-105.5753032","38.4131079"],["-105.5757864","38.4124074"],["-105.5761334","38.411912"],["-105.5766186","38.4112294"],["-105.5767861","38.4110255"],["-105.5770015","38.4107947"],["-105.5772242","38.4105731"],["-105.5774798","38.4103438"],["-105.5777033","38.4101607"],["-105.577911","38.4100105"],["-105.5781234","38.4098693"],["-105.5783271","38.4097442"],["-105.5785628","38.4096175"],["-105.5787389","38.4095393"],["-105.5790082","38.4094353"],["-105.5792603","38.409362"],["-105.5795547","38.409296"],["-105.5797366","38.4092646"],["-105.5799199","38.4092436"],["-105.5801733","38.4092306"],["-105.5804028","38.4092323"],["-105.5807962","38.4092558"],["-105.581349","38.4093021"],["-105.5845901","38.4095483"],["-105.5854925","38.4095577"],["-105.5865209","38.4095399"],["-105.5887667","38.4094061"],["-105.5933215","38.4091092"],["-105.5936351","38.4090995"],["-105.5938484","38.4091065"],["-105.5940664","38.4091267"],["-105.5942641","38.4091535"],["-105.5944419","38.4091852"],["-105.5946372","38.4092315"],["-105.5948778","38.4093002"],["-105.5953303","38.4094819"],["-105.5958101","38.4096825"],["-105.5961583","38.4098223"],["-105.596395","38.4098961"],["-105.5966273","38.4099587"],["-105.5968461","38.4100048"],["-105.5970864","38.4100471"],["-105.5973346","38.4100784"],["-105.5975915","38.410101"],["-105.597789","38.4101088"],["-105.5979409","38.4101113"],["-105.6031703","38.4096432"],["-105.6035692","38.4095993"],["-105.6039155","38.4095525"],["-105.6043329","38.4094814"],["-105.6050967","38.4093193"],["-105.6054674","38.4092153"],["-105.6058366","38.4091034"],["-105.6064188","38.4088944"],["-105.6067481","38.4087601"],["-105.6070743","38.4086179"],["-105.6074007","38.4084626"],["-105.607708","38.4083043"],["-105.608243","38.4079893"],["-105.6087173","38.4076734"],["-105.6089403","38.4075074"],["-105.6091004","38.4073828"],["-105.6092901","38.40723"],["-105.6094602","38.4070841"],["-105.6096494","38.4069102"],["-105.6120722","38.4046251"],["-105.6125519","38.4041483"],["-105.6128847","38.4037756"],["-105.6131024","38.4035015"],["-105.6134725","38.4029718"],["-105.6136329","38.4026896"],["-105.6158457","38.3983632"],["-105.6160322","38.3980388"],["-105.6162404","38.3977193"],["-105.6165204","38.3973405"],["-105.6168556","38.3969404"],["-105.6171514","38.3966197"],["-105.61746","38.396342"],["-105.6178619","38.3960035"],["-105.6187351","38.3952615"],["-105.6196933","38.3944498"],["-105.620535","38.393736"],["-105.6208015","38.3935319"],["-105.6210478","38.3933752"],["-105.6212787","38.3932419"],["-105.6215033","38.3931317"],["-105.6217473","38.3930282"],["-105.6219754","38.3929466"],["-105.6222034","38.3928858"],["-105.6224346","38.3928335"],["-105.6226377","38.3927944"],["-105.6228582","38.3927611"],["-105.6230962","38.3927356"],["-105.6233518","38.3927228"],["-105.6236328","38.392727"],["-105.625768","38.392891"],["-105.6260709","38.3929398"],["-105.6263098","38.393001"],["-105.6265413","38.3930775"],["-105.6268303","38.3931978"],["-105.6270395","38.393311"],["-105.6272275","38.3934321"],["-105.6274418","38.393609"],["-105.6292333","38.3953307"],["-105.6297632","38.3958306"],["-105.6299465","38.3959768"],["-105.6300878","38.3960771"],["-105.6302185","38.3961436"],["-105.6303821","38.396222"],["-105.630536","38.3962917"],["-105.6307202","38.3963531"],["-105.6308854","38.396402"],["-105.6310507","38.396442"],["-105.6312104","38.3964732"],["-105.6313562","38.396494"],["-105.631521","38.3965101"],["-105.6316942","38.3965166"],["-105.6318547","38.3965116"],["-105.6320184","38.3965024"],["-105.6321662","38.3964867"],["-105.6324281","38.3964444"],["-105.632585","38.3964034"],["-105.6329407","38.3962873"],["-105.6332706","38.3961579"],["-105.6337015","38.3959797"],["-105.6343322","38.3956749"],["-105.6346621","38.3955022"],["-105.6350634","38.3952667"],["-105.6354452","38.3950242"],["-105.6358473","38.394747"],["-105.6363291","38.3943864"],["-105.6379029","38.3931332"],["-105.6382278","38.3928968"],["-105.6386023","38.392671"],["-105.6390668","38.392407"],["-105.6396747","38.3920692"],["-105.6400587","38.391872"],["-105.6423415","38.3908796"],["-105.6427811","38.3907029"],["-105.643072","38.3906002"],["-105.6433661","38.3905121"],["-105.6436393","38.3904491"],["-105.6438876","38.3904055"],["-105.6441837","38.3903632"],["-105.6445276","38.3903267"],["-105.6448926","38.3903108"],["-105.6451","38.3903143"],["-105.6453568","38.3903277"],["-105.6455703","38.3903427"],["-105.6458731","38.3903781"],["-105.6461813","38.3904262"],["-105.6467868","38.3905351"],["-105.6476395","38.3906564"],["-105.647975","38.3906937"],["-105.6483684","38.390731"],["-105.6496646","38.3908019"],["-105.6500234","38.3908055"],["-105.6503561","38.3907942"],["-105.650826","38.3907612"],["-105.6511659","38.3907221"],["-105.6514702","38.390678"],["-105.6520728","38.3905469"],["-105.6524007","38.39046"],["-105.6527411","38.3903514"],["-105.6531101","38.3902226"],["-105.6536244","38.389992"],["-105.6538953","38.3898549"],["-105.6541669","38.389702"],["-105.6547162","38.3893511"],["-105.6549972","38.3891443"],["-105.6553813","38.3888089"],["-105.6561212","38.3880875"],["-105.6580446","38.3860792"],["-105.6582703","38.3858584"],["-105.6585158","38.3856394"],["-105.6588283","38.3853782"],["-105.6591338","38.3851526"],["-105.659477","38.3849335"],["-105.6598728","38.3846961"],["-105.6607825","38.3841572"],["-105.6611253","38.383927"],["-105.6617204","38.3834916"],["-105.6621279","38.3831454"],["-105.6701597","38.3757286"],["-105.671541","38.3744366"],["-105.6718661","38.3740749"],["-105.6723054","38.3735235"],["-105.6727484","38.3729598"],["-105.6728994","38.3727717"],["-105.6730522","38.3726287"],["-105.6732204","38.3724841"],["-105.6733855","38.3723797"],["-105.6735801","38.372294"],["-105.6737873","38.3722259"],["-105.673996","38.372174"],["-105.6742515","38.3721438"],["-105.6746179","38.3721271"],["-105.6751237","38.3721234"],["-105.6755495","38.3721365"],["-105.6759935","38.3721637"],["-105.6764102","38.3722054"],["-105.6767224","38.3722477"],["-105.676993","38.3722985"],["-105.6772245","38.3723524"],["-105.6774787","38.3724362"],["-105.6777982","38.3725654"],["-105.6780451","38.3726964"],["-105.678226","38.3728105"],["-105.6783844","38.3729177"],["-105.6786961","38.3731445"],["-105.678855","38.3732501"],["-105.6790198","38.3733327"],["-105.679186","38.3734"],["-105.6793662","38.3734543"],["-105.6795659","38.3735035"],["-105.6797819","38.37354"],["-105.6800418","38.3735562"],["-105.6802418","38.3735544"],["-105.6804348","38.3735426"],["-105.6806253","38.3735131"],["-105.680838","38.3734643"],["-105.681016","38.3734072"],["-105.6812082","38.3733309"],["-105.6814038","38.3732333"],["-105.6816147","38.3731016"],["-105.683057","38.3721374"],["-105.683267","38.3720107"],["-105.6834758","38.3718961"],["-105.6837171","38.3717763"],["-105.6840709","38.3716185"],["-105.6844537","38.3714698"],["-105.6848335","38.3713365"],["-105.6852387","38.3712149"],["-105.6859364","38.3710439"],["-105.6862378","38.3709904"],["-105.686526","38.3709485"],["-105.6868136","38.3709112"],["-105.6870895","38.3708877"],["-105.6873217","38.3708742"],["-105.687601","38.3708663"],["-105.687788","38.3708643"],["-105.6879813","38.3708703"],["-105.6881663","38.3708791"],["-105.688451","38.3709029"],["-105.6893039","38.3709955"],["-105.6896259","38.3710407"],["-105.6902576","38.3711523"],["-105.6907053","38.3712553"],["-105.6924658","38.3717342"],["-105.6927521","38.3718042"],["-105.6929987","38.3718546"],["-105.6932489","38.3718973"],["-105.6937344","38.3719425"],["-105.6939663","38.3719505"],["-105.6942169","38.3719481"],["-105.6944513","38.3719351"],["-105.6947044","38.3719102"],["-105.6949477","38.371879"],["-105.6957302","38.3717503"],["-105.69761","38.3714257"],["-105.6983009","38.3712877"],["-105.6985743","38.371215"],["-105.6988208","38.3711341"],["-105.6990681","38.3710369"],["-105.699314","38.3709186"],["-105.6995357","38.3708061"],["-105.6998424","38.3706225"],["-105.705683","38.3667979"],["-105.7059327","38.3666745"],["-105.7060868","38.3666138"],["-105.7062295","38.3665649"],["-105.7063694","38.3665299"],["-105.706517","38.3665013"],["-105.7066432","38.3664856"],["-105.7067555","38.3664751"],["-105.7068769","38.3664704"],["-105.707002","38.366472"],["-105.7071192","38.3664762"],["-105.7072678","38.3664931"],["-105.7074337","38.3665274"],["-105.7076495","38.3665863"],["-105.7080917","38.3667514"],["-105.7094399","38.3672842"],["-105.710055","38.3675093"],["-105.7103094","38.3675834"],["-105.7105397","38.3676425"],["-105.7108137","38.3676937"],["-105.7110875","38.3677325"],["-105.7113438","38.3677531"],["-105.7115937","38.3677614"],["-105.7119175","38.367754"],["-105.7121748","38.3677417"],["-105.7124988","38.3677168"],["-105.7131868","38.3676291"],["-105.713558","38.3675655"],["-105.7139314","38.3674939"],["-105.7143458","38.3674018"],["-105.715092","38.3672083"],["-105.7154444","38.3670975"],["-105.7157797","38.3669764"],["-105.7160749","38.3668575"],["-105.7163817","38.3667225"],["-105.7167086","38.3665711"],["-105.7176902","38.3660582"],["-105.7180544","38.3658489"],["-105.7205489","38.3641915"],["-105.7210101","38.3638858"],["-105.7215184","38.363601"],["-105.7218381","38.3634421"],["-105.7230788","38.3628981"],["-105.7232974","38.3627944"],["-105.7234699","38.362705"],["-105.7236343","38.3626057"],["-105.7237759","38.3625092"],["-105.7239066","38.3624038"],["-105.7240457","38.3622863"],["-105.7241978","38.3621294"],["-105.7262193","38.3598719"],["-105.7263603","38.3597213"],["-105.7265029","38.3595813"],["-105.7266403","38.35946"],["-105.7267604","38.3593658"],["-105.7268871","38.3592787"],["-105.7272008","38.359101"],["-105.7281359","38.3586524"],["-105.72838","38.3585431"],["-105.7285506","38.358487"],["-105.7287203","38.3584356"],["-105.7288928","38.3584014"],["-105.7291118","38.3583763"],["-105.729328","38.3583773"],["-105.7295694","38.3583955"],["-105.7297889","38.3584375"],["-105.7300365","38.3584991"],["-105.7303914","38.3586107"],["-105.7306847","38.3587164"],["-105.730908","38.3588071"],["-105.7311001","38.358922"],["-105.731281","38.3590608"],["-105.731477","38.3592483"],["-105.7317751","38.359619"],["-105.7319846","38.3598479"],["-105.7321926","38.3600655"],["-105.7323588","38.3602253"],["-105.7324927","38.3603417"],["-105.7326433","38.3604641"],["-105.7327829","38.3605733"],["-105.7329315","38.360667"],["-105.7330735","38.3607441"],["-105.7332414","38.3608278"],["-105.7334594","38.3609209"],["-105.733656","38.3609831"],["-105.7340175","38.3610691"],["-105.7342126","38.3610973"],["-105.7344204","38.36111"],["-105.7346411","38.3611164"],["-105.7348325","38.361107"],["-105.7350409","38.3610923"],["-105.7353911","38.3610365"],["-105.7367473","38.3607817"],["-105.73717","38.3606795"],["-105.7381415","38.3604188"],["-105.7384544","38.3603409"],["-105.7386732","38.3602979"],["-105.7388561","38.3602733"],["-105.7390715","38.3602547"],["-105.7394592","38.3602446"],["-105.7396943","38.3602556"],["-105.7399585","38.3602833"],["-105.7402716","38.3603233"],["-105.7405276","38.3603682"],["-105.7407353","38.3604122"],["-105.7410073","38.3605017"],["-105.7412251","38.3605808"],["-105.7414195","38.3606633"],["-105.7415884","38.3607467"],["-105.7417487","38.360833"],["-105.743266","38.3618049"],["-105.752695","38.3678962"],["-105.7531569","38.3681957"],["-105.7599041","38.3725642"],["-105.7601579","38.3727409"],["-105.7603688","38.3729006"],["-105.7607665","38.3732361"],["-105.7611405","38.3736007"],["-105.7613309","38.3738034"],["-105.7615219","38.3740239"],["-105.7617253","38.3742761"],["-105.7619206","38.3745409"],["-105.766553","38.3814405"],["-105.7668821","38.3818751"],["-105.7671827","38.3822543"],["-105.7674344","38.3825564"],["-105.7736852","38.3896109"],["-105.7741131","38.3900774"],["-105.7747426","38.3907015"],["-105.7763203","38.3922565"],["-105.7764989","38.3924571"],["-105.7766563","38.3926523"],["-105.7768019","38.392858"],["-105.7769301","38.3930708"],["-105.7770306","38.3932821"],["-105.7771139","38.3934795"],["-105.7771889","38.3937159"],["-105.7772663","38.3939972"],["-105.7780926","38.3976902"],["-105.7782298","38.3983034"],["-105.7783923","38.3990262"],["-105.7785827","38.3998447"],["-105.7786537","38.4001111"],["-105.7787455","38.4003732"],["-105.7788603","38.4006662"],["-105.7790072","38.4009943"],["-105.7791886","38.4013372"],["-105.7793994","38.4017006"],["-105.7797564","38.4022264"],["-105.7799788","38.4025031"],["-105.7816318","38.4043329"],["-105.7818415","38.4045501"],["-105.7820891","38.4048279"],["-105.7831233","38.405981"],["-105.7832946","38.4061618"],["-105.783606","38.4064706"],["-105.783892","38.4067289"],["-105.7854142","38.408059"],["-105.786745","38.409107"],["-105.7869561","38.4092795"],["-105.787704","38.4099171"],["-105.7879881","38.4101564"],["-105.7882037","38.4103379"],["-105.7884294","38.4105178"],["-105.7886548","38.4106766"],["-105.7888592","38.4108117"],["-105.7892367","38.4110406"],["-105.7896876","38.4113046"],["-105.7901266","38.4115672"],["-105.7904036","38.4117441"],["-105.7910466","38.4121979"],["-105.7914517","38.4125175"],["-105.8030768","38.4219157"],["-105.809109","38.4267676"],["-105.8094486","38.4270295"],["-105.8096355","38.4271634"],["-105.8099591","38.427379"],["-105.8101397","38.4274885"],["-105.8106238","38.4277458"],["-105.8109403","38.4278952"],["-105.8115336","38.4281405"],["-105.8142523","38.4291279"],["-105.8153792","38.4294985"],["-105.8155519","38.4295441"],["-105.8157076","38.4295791"],["-105.8158939","38.4296113"],["-105.8161443","38.4296419"],["-105.8164024","38.4296659"],["-105.8211021","38.4300201"],["-105.821477","38.4300403"],["-105.8253792","38.4301171"],["-105.8257415","38.4301359"],["-105.8260751","38.4301647"],["-105.8264375","38.4302144"],["-105.8270158","38.4303134"],["-105.8299217","38.4308943"],["-105.8307951","38.4310812"],["-105.8310759","38.4311547"],["-105.8313596","38.4312421"],["-105.8316076","38.4313327"],["-105.8318783","38.4314447"],["-105.8321511","38.4315722"],["-105.8324929","38.4317606"],["-105.8326633","38.4318732"],["-105.8329008","38.4320508"],["-105.833167","38.4322782"],["-105.8339445","38.4330642"],["-105.8363603","38.4355855"],["-105.8367878","38.4360426"],["-105.8369987","38.4363183"],["-105.8371124","38.4365004"],["-105.8372213","38.4367111"],["-105.8372909","38.4368906"],["-105.8373492","38.437064"],["-105.8386038","38.4429177"],["-105.8398699","38.448925"],["-105.8401609","38.450208"],["-105.8403156","38.4507061"],["-105.840437","38.4510575"],["-105.8407571","38.4518999"],["-105.8409657","38.4524575"],["-105.8417381","38.4544925"],["-105.8422863","38.455962"],["-105.8425744","38.4567075"],["-105.8429677","38.4576847"],["-105.8432086","38.458242"],["-105.8434024","38.4585678"],["-105.8436821","38.4589926"],["-105.843881","38.459235"],["-105.8441203","38.4595026"],["-105.8445389","38.4599415"],["-105.8448619","38.460259"],["-105.8451422","38.4605098"],["-105.8455065","38.4608043"],["-105.8465669","38.4615834"],["-105.8471403","38.4619689"],["-105.8475364","38.4621914"],["-105.8478307","38.4623361"],["-105.8480832","38.4624478"],["-105.848451","38.4625813"],["-105.848723","38.4626597"],["-105.8490551","38.4627442"],["-105.8538481","38.4636928"],["-105.8545313","38.4638158"],["-105.8548918","38.4638698"],["-105.8552467","38.4639058"],["-105.8581933","38.4641113"],["-105.8594265","38.4642068"],["-105.8599215","38.4642822"],["-105.8604477","38.4644029"],["-105.8608831","38.4645113"],["-105.8612299","38.4646161"],["-105.861644","38.4647633"],["-105.8619628","38.4649046"],["-105.86231","38.4650919"],["-105.8626361","38.4652794"],["-105.8632628","38.4656601"],["-105.8635226","38.4658368"],["-105.863818","38.466087"],["-105.8640841","38.4663378"],["-105.8643946","38.4666851"],["-105.8647158","38.4670761"],["-105.864893","38.4673575"],["-105.8650019","38.467628"],["-105.865105","38.4680004"],["-105.8651981","38.4683694"],["-105.8652832","38.4687378"],["-105.8654157","38.4696546"],["-105.8656673","38.4714179"],["-105.865718","38.4716114"],["-105.8657534","38.4716982"],["-105.8657917","38.471776"],["-105.8658458","38.4718521"],["-105.8659084","38.4719353"],["-105.86598","38.4720109"],["-105.8660587","38.4720848"],["-105.8661605","38.4721662"],["-105.8662867","38.4722486"],["-105.8664531","38.472331"],["-105.8666016","38.4723808"],["-105.8667116","38.4724142"],["-105.8668234","38.4724313"],["-105.8669728","38.4724424"],["-105.8671311","38.4724377"],["-105.8672854","38.4724184"],["-105.8674541","38.4723849"],["-105.8676408","38.472332"],["-105.8678136","38.4722787"],["-105.8679308","38.4722334"],["-105.8680629","38.4721762"],["-105.8681644","38.472126"],["-105.8682377","38.4720831"],["-105.8683223","38.4720212"],["-105.8684024","38.4719544"],["-105.8685008","38.4718275"],["-105.868591","38.471693"],["-105.8686414","38.4715643"],["-105.8686836","38.4713444"],["-105.8687287","38.4711591"],["-105.8688175","38.4710031"],["-105.8689185","38.4708504"],["-105.8692661","38.4704596"],["-105.8693906","38.470284"],["-105.8695199","38.4700893"],["-105.8696441","38.4699295"],["-105.8697488","38.4698164"],["-105.8699184","38.4696733"],["-105.8700762","38.4695772"],["-105.8702579","38.4694794"],["-105.8704508","38.4694027"],["-105.8706793","38.4693473"],["-105.8708817","38.4693213"],["-105.8710821","38.4693058"],["-105.871361","38.4693082"],["-105.8716159","38.4693328"],["-105.8718419","38.4693668"],["-105.8720763","38.4694317"],["-105.872279","38.469535"],["-105.8724401","38.4696396"],["-105.8726087","38.469809"],["-105.8727441","38.4700314"],["-105.8729164","38.4703965"],["-105.8730086","38.4706569"],["-105.8730701","38.470916"],["-105.8730689","38.4711421"],["-105.8730411","38.4713868"],["-105.8730335","38.4716087"],["-105.8730571","38.4717739"],["-105.8731228","38.4719352"],["-105.8732114","38.4720703"],["-105.8733256","38.4721711"],["-105.8734648","38.4722479"],["-105.8736085","38.4723067"],["-105.8737604","38.4723457"],["-105.8739116","38.4723648"],["-105.8740887","38.4723648"],["-105.8742363","38.4723425"],["-105.8744238","38.4722968"],["-105.8747154","38.4721832"],["-105.8750076","38.4720704"],["-105.8753162","38.4719562"],["-105.8755649","38.4718911"],["-105.8758005","38.4718639"],["-105.8760587","38.4718535"],["-105.8762995","38.4718762"],["-105.8765401","38.4719161"],["-105.8768328","38.4719774"],["-105.8771894","38.4720796"],["-105.8774477","38.4721635"],["-105.8776316","38.4722287"],["-105.8778521","38.4723209"],["-105.8783479","38.472569"],["-105.878827","38.4728293"],["-105.8791845","38.4730474"],["-105.8794158","38.4732305"],["-105.8796297","38.4734634"],["-105.8797866","38.4737124"],["-105.8799769","38.4740263"],["-105.8801466","38.4742651"],["-105.8803004","38.4744466"],["-105.8804746","38.4746099"],["-105.8806533","38.4747499"],["-105.8808463","38.474886"],["-105.8810701","38.4749984"],["-105.8812852","38.4750926"],["-105.8815413","38.4751857"],["-105.8818299","38.4752607"],["-105.8821371","38.4753134"],["-105.8823935","38.4753436"],["-105.8827522","38.4753505"],["-105.8831403","38.4753205"],["-105.8841109","38.475215"],["-105.8845229","38.4751811"],["-105.8848647","38.4751778"],["-105.8850961","38.4751904"],["-105.8853758","38.4752155"],["-105.8856764","38.4752661"],["-105.8859748","38.4753322"],["-105.8862863","38.4754151"],["-105.8866486","38.4755643"],["-105.8869528","38.4757009"],["-105.8872277","38.4758583"],["-105.8875287","38.4760669"],["-105.887956","38.4764043"],["-105.8882792","38.4766418"],["-105.8891695","38.4770164"],["-105.8942133","38.4790343"],["-105.8950671","38.4793144"],["-105.8970204","38.4798003"],["-105.8978809","38.479985"],["-105.9034338","38.4810381"],["-105.9044992","38.4812551"],["-105.9054398","38.4815225"],["-105.9058057","38.4816148"],["-105.9061629","38.4816663"],["-105.906624","38.4816986"],["-105.9069919","38.4817339"],["-105.9072547","38.4817723"],["-105.9075286","38.4818507"],["-105.9078216","38.4819618"],["-105.9080393","38.4820878"],["-105.9082719","38.4822407"],["-105.9088081","38.4826544"],["-105.9092365","38.4829603"],["-105.9096836","38.4832345"],["-105.9098789","38.4833302"],["-105.9102336","38.4834819"],["-105.9105508","38.4835812"],["-105.9112239","38.4837564"],["-105.9114145","38.4838293"],["-105.9116111","38.4839317"],["-105.9117717","38.484042"],["-105.9119277","38.4841879"],["-105.9120992","38.4844051"],["-105.9124103","38.484933"],["-105.912617","38.4852152"],["-105.9127898","38.4853737"],["-105.9129975","38.4855424"],["-105.913215","38.4856871"],["-105.9135902","38.4858685"],["-105.9149105","38.4864058"],["-105.9154325","38.4866369"],["-105.9157108","38.4867727"],["-105.9160528","38.4869714"],["-105.9167351","38.4874037"],["-105.9171553","38.4876444"],["-105.917546","38.4878034"],["-105.9180032","38.4879784"],["-105.9182831","38.4881124"],["-105.9185024","38.488226"],["-105.9188155","38.4884508"],["-105.9189747","38.4886022"],["-105.9191137","38.4887501"],["-105.919278","38.4889545"],["-105.9193845","38.4891411"],["-105.919446","38.4892889"],["-105.9195322","38.4895491"],["-105.9195591","38.4897885"],["-105.9195671","38.4900561"],["-105.9195549","38.4902601"],["-105.9195037","38.4904635"],["-105.9194246","38.4906758"],["-105.9191553","38.4912445"],["-105.918519","38.4925386"],["-105.9181871","38.4932232"],["-105.9173609","38.4948997"],["-105.9172604","38.4951501"],["-105.917205","38.495358"],["-105.9171792","38.4955369"],["-105.9171769","38.4958076"],["-105.9172023","38.4960092"],["-105.917256","38.4962124"],["-105.917321","38.4963972"],["-105.9174371","38.4966135"],["-105.9175838","38.4968444"],["-105.9177717","38.4970641"],["-105.9179775","38.4972557"],["-105.918257","38.4974453"],["-105.9185902","38.4976292"],["-105.918926","38.4977555"],["-105.9192451","38.4978497"],["-105.9195655","38.4979172"],["-105.9199221","38.4979516"],["-105.9202023","38.4979519"],["-105.9205444","38.4979164"],["-105.9210474","38.4978164"],["-105.9223379","38.4975291"],["-105.9227085","38.4974782"],["-105.9230049","38.4974666"],["-105.9233846","38.4975075"],["-105.9239341","38.4976365"],["-105.9246481","38.497815"],["-105.9253779","38.4979954"],["-105.9259295","38.4981319"],["-105.9261642","38.4982053"],["-105.9264703","38.4983305"],["-105.9269456","38.498546"],["-105.9277584","38.4989423"],["-105.9282027","38.4991417"],["-105.9285382","38.4992503"],["-105.9289561","38.4993559"],["-105.9294834","38.4994764"],["-105.9297888","38.4995608"],["-105.930046","38.4996694"],["-105.9303035","38.4998004"],["-105.9307222","38.5000752"],["-105.9313089","38.5005016"],["-105.931963","38.5010168"],["-105.9328132","38.501783"],["-105.9330607","38.5019839"],["-105.9332594","38.5021194"],["-105.9334577","38.5022364"],["-105.9336898","38.5023438"],["-105.9340307","38.502472"],["-105.9343197","38.5025418"],["-105.9345989","38.5025931"],["-105.9348903","38.5026221"],["-105.9351883","38.5026253"],["-105.9361372","38.5025739"],["-105.9379256","38.5024588"],["-105.9409872","38.5023426"],["-105.9435028","38.5023211"],["-105.9441342","38.5023398"],["-105.9444777","38.5023864"],["-105.9447564","38.5024496"],["-105.9450165","38.5025267"],["-105.9452683","38.5026282"],["-105.945494","38.5027472"],["-105.9456648","38.5028635"],["-105.9459763","38.5031293"],["-105.9461629","38.5033384"],["-105.9464534","38.5036828"],["-105.9472205","38.5046417"],["-105.9474573","38.5048989"],["-105.9476007","38.505027"],["-105.947761","38.5051465"],["-105.9479029","38.5052472"],["-105.9481056","38.505362"],["-105.9483209","38.5054752"],["-105.9485727","38.5055736"],["-105.9488936","38.5056681"],["-105.9492789","38.5057345"],["-105.9496743","38.5057571"],["-105.9499837","38.5057414"],["-105.9502578","38.5057148"],["-105.9505414","38.5056696"],["-105.9510285","38.5055605"],["-105.9515214","38.5054472"],["-105.9524129","38.5052311"],["-105.9535249","38.5049478"],["-105.9539456","38.5048511"],["-105.9545681","38.504764"],["-105.9548199","38.5047491"],["-105.9550346","38.5047403"],["-105.95524","38.504744"],["-105.9554806","38.5047665"],["-105.9557022","38.5047915"],["-105.9559835","38.5048354"],["-105.9562644","38.5048927"],["-105.9567414","38.5050405"],["-105.9569892","38.5051379"],["-105.9572798","38.5052609"],["-105.9643766","38.5089816"],["-105.9649952","38.509293"],["-105.9653107","38.5094356"],["-105.9655833","38.5095497"],["-105.9658874","38.5096674"],["-105.9662419","38.5097906"],["-105.9667677","38.5099492"],["-105.967543","38.510155"],["-105.9680515","38.5102647"],["-105.9687939","38.5104011"],["-105.96921","38.5104589"],["-105.9697121","38.5105147"],["-105.9704078","38.5105594"],["-105.9732636","38.5106448"],["-105.9736044","38.5106748"],["-105.9738926","38.5107158"],["-105.9741437","38.5107652"],["-105.9743768","38.5108171"],["-105.9746528","38.5108914"],["-105.9749617","38.510999"],["-105.9752309","38.5111139"],["-105.9755705","38.5112723"],["-105.9758931","38.5114516"],["-105.9762044","38.5116462"],["-105.9763679","38.5117727"],["-105.9765667","38.5119297"],["-105.9767202","38.5120728"],["-105.9768865","38.5122563"],["-105.9772503","38.5127233"],["-105.9774416","38.5129819"],["-105.9784131","38.5144817"],["-105.9824015","38.520449"],["-105.9829313","38.5212759"],["-105.9838633","38.5226964"],["-105.984147","38.5230486"],["-105.984331","38.5232042"],["-105.9844933","38.5233391"],["-105.9845949","38.5234088"],["-105.9849565","38.5236328"],["-105.9851714","38.5237465"],["-105.9854423","38.5238537"],["-105.9857047","38.5239315"],["-105.9860783","38.52402"],["-105.9862701","38.5240452"],["-105.9867811","38.5240714"],["-105.9872118","38.5240711"],["-105.9874686","38.5240709"],["-105.9882453","38.5240679"],["-105.9950734","38.524113"],["-105.9958461","38.5241119"],["-105.9963237","38.524112"],["-105.9965126","38.5241111"],["-105.9970766","38.5241118"],["-105.9974904","38.5241111"],["-106.0028716","38.5241368"],["-106.0030926","38.5241361"],["-106.0084921","38.5241735"],["-106.008803","38.5241731"],["-106.0106966","38.5241835"],["-106.0108766","38.5241824"],["-106.0148198","38.5242038"],["-106.0151272","38.5241968"],["-106.0155065","38.524178"],["-106.0159155","38.5241466"],["-106.0162817","38.5241067"],["-106.016799","38.5240253"],["-106.0726637","38.5151607"],["-106.0732523","38.5150699"],["-106.0758598","38.5146694"],["-106.0760861","38.5146566"],["-106.0761924","38.5146664"],["-106.0762676","38.5146839"],["-106.0763427","38.5147155"],["-106.0763856","38.5147495"],["-106.0764213","38.5147903"],["-106.0764727","38.5148563"],["-106.0766168","38.5150718"],["-106.0766397","38.5152177"],["-106.0766898","38.5154876"],["-106.0767493","38.5157468"],["-106.0768374","38.5160209"],["-106.0769177","38.516239"],["-106.0771906","38.5168523"],["-106.0780544","38.5184799"],["-106.078251","38.5188079"],["-106.0785563","38.519183"],["-106.0787434","38.5193837"],["-106.0789305","38.5195686"],["-106.0791941","38.5198022"],["-106.0794092","38.5199715"],["-106.0795971","38.5201141"],["-106.0797571","38.5202271"],["-106.07989","38.5203075"],["-106.0800733","38.5204076"],["-106.0804214","38.5205847"],["-106.0806354","38.5206923"],["-106.0808906","38.5208151"],["-106.0813883","38.5210082"],["-106.0816735","38.521103"],["-106.0819488","38.5211747"],["-106.0822812","38.5212458"],["-106.0825667","38.5213024"],["-106.0829786","38.521354"],["-106.0832859","38.5213863"],["-106.0835873","38.5214121"],["-106.1054256","38.5216139"],["-106.1065031","38.521672"],["-106.1075115","38.5217622"],["-106.1080657","38.5218307"],["-106.1090895","38.5219918"],["-106.1098834","38.5221603"],["-106.1114185","38.522557"],["-106.1299226","38.5278718"],["-106.131517","38.5284103"],["-106.1465951","38.5344331"],["-106.1495948","38.5355994"],["-106.1501368","38.5357573"],["-106.1506465","38.535888"],["-106.1510904","38.5359741"],["-106.1515992","38.5360619"],["-106.1520504","38.5361146"],["-106.1525526","38.536158"],["-106.1529538","38.5361747"],["-106.1540422","38.5361789"],["-106.1664429","38.5359535"],["-106.1675486","38.5359655"],["-106.1684736","38.5360048"],["-106.1798065","38.5367931"],["-106.1836464","38.5370591"],["-106.18395","38.5371038"],["-106.1843083","38.5371762"],["-106.1846093","38.5372569"],["-106.1848609","38.5373397"],["-106.1850637","38.5374141"],["-106.1853263","38.5375402"],["-106.1856474","38.537729"],["-106.1861525","38.5380534"],["-106.1877926","38.5391727"],["-106.1886435","38.5397449"],["-106.1889031","38.5398933"],["-106.1892661","38.5400508"],["-106.1940984","38.5417284"],["-106.1950944","38.542044"],["-106.1954102","38.5421122"],["-106.1956679","38.5421407"],["-106.1959287","38.5421609"],["-106.196233","38.5421561"],["-106.1976316","38.5420645"],["-106.1991048","38.5419698"],["-106.2011296","38.5418343"],["-106.2016673","38.5418169"],["-106.2030518","38.5419027"],["-106.2087033","38.5424093"],["-106.2090599","38.5424222"],["-106.2138923","38.5422601"],["-106.2156582","38.5421869"],["-106.2159655","38.542147"],["-106.2162651","38.5420897"],["-106.2166118","38.5420018"],["-106.2172932","38.5417974"],["-106.2200576","38.5408647"],["-106.2208187","38.5406381"],["-106.2210929","38.5405869"],["-106.2213213","38.5405546"],["-106.2215905","38.5405314"],["-106.2220197","38.540526"],["-106.2241692","38.5405459"],["-106.2244669","38.5405562"],["-106.2247653","38.5405877"],["-106.2251332","38.5406574"],["-106.225573","38.5407515"],["-106.2260394","38.5408533"],["-106.2264199","38.5409282"],["-106.2269255","38.5410061"],["-106.2293924","38.5412786"],["-106.2300669","38.541385"],["-106.2308028","38.5415736"],["-106.2315895","38.5417814"],["-106.2320734","38.5418865"],["-106.2326392","38.5419855"],["-106.2331845","38.5420628"],["-106.2340139","38.5421341"],["-106.2344266","38.5421502"],["-106.234877","38.5421425"],["-106.2356475","38.5421078"],["-106.236767","38.5420379"],["-106.2378672","38.54198"],["-106.2381329","38.5419823"],["-106.2387025","38.5420374"],["-106.2390242","38.5420842"],["-106.2394245","38.5421732"],["-106.2403954","38.5424218"],["-106.2407428","38.5425175"],["-106.2410796","38.5426371"],["-106.2413924","38.5427611"],["-106.2417119","38.5429249"],["-106.242119","38.5431615"],["-106.2424452","38.543385"],["-106.2488476","38.5479703"],["-106.2492608","38.5482466"],["-106.2495963","38.5484403"],["-106.2499594","38.5486403"],["-106.2503259","38.5488255"],["-106.2506615","38.5489817"],["-106.2510623","38.5491415"],["-106.251582","38.549322"],["-106.2521943","38.5495164"],["-106.2524809","38.5495907"],["-106.2531677","38.5497474"],["-106.2535242","38.5498142"],["-106.2538986","38.5498675"],["-106.2552364","38.5499701"],["-106.2578079","38.5501386"],["-106.2588988","38.5501995"],["-106.2591275","38.5501924"],["-106.2594693","38.5501516"],["-106.2603624","38.5499848"],["-106.2609185","38.5498947"],["-106.2612571","38.5498708"],["-106.2615479","38.5498688"],["-106.2664395","38.5500575"],["-106.2667113","38.5500528"],["-106.266957","38.5500413"],["-106.2671938","38.5500181"],["-106.2674188","38.5499801"],["-106.2677645","38.5499011"],["-106.2683949","38.5497423"],["-106.2687253","38.5496823"],["-106.268983","38.5496461"],["-106.2692222","38.5496418"],["-106.2695288","38.5496628"],["-106.2717422","38.5499009"],["-106.272541","38.5499837"],["-106.272797","38.5499982"],["-106.2730538","38.550006"],["-106.273602","38.5499768"],["-106.2740254","38.5499565"],["-106.2746196","38.5499255"],["-106.274897","38.5499219"],["-106.2771148","38.5500429"],["-106.2845096","38.5504673"],["-106.2856736","38.5505449"],["-106.2859524","38.5505851"],["-106.2862705","38.5506578"],["-106.286552","38.5507523"],["-106.2873938","38.5510934"],["-106.2876104","38.5511639"],["-106.2877656","38.5511962"],["-106.2880213","38.5512369"],["-106.2885605","38.5513073"],["-106.2891258","38.5513846"],["-106.2894024","38.5514572"],["-106.289596","38.5515177"],["-106.2897481","38.5515838"],["-106.2898811","38.5516514"],["-106.2902806","38.5518828"],["-106.2907765","38.5522206"],["-106.2911329","38.5524462"],["-106.2914391","38.5525913"],["-106.2916106","38.552652"],["-106.2917773","38.5527057"],["-106.2919483","38.5527453"],["-106.2921541","38.5527823"],["-106.2923561","38.552801"],["-106.2925821","38.5528155"],["-106.2928284","38.5528224"],["-106.2931215","38.5527992"],["-106.2953877","38.5525883"],["-106.2959112","38.55253"],["-106.2960584","38.5524988"],["-106.2962579","38.5524417"],["-106.2965445","38.5523167"],["-106.2967003","38.5522431"],["-106.2968435","38.5521408"],["-106.296958","38.5520369"],["-106.2970642","38.5519267"],["-106.2973007","38.551629"],["-106.2974826","38.5513762"],["-106.2975991","38.5512078"],["-106.2977069","38.551093"],["-106.2978333","38.5509648"],["-106.2980103","38.5508366"],["-106.2981598","38.5507508"],["-106.2983473","38.5506614"],["-106.2986893","38.5505193"],["-106.2995359","38.5502027"],["-106.3001989","38.5499516"],["-106.3004154","38.549859"],["-106.3006033","38.5497671"],["-106.3007612","38.5496801"],["-106.3008958","38.5495825"],["-106.3010219","38.5494858"],["-106.3011929","38.549329"],["-106.3016524","38.548853"],["-106.3019491","38.5485692"],["-106.3021191","38.5484384"],["-106.3022444","38.5483627"],["-106.3024202","38.5482699"],["-106.3026098","38.5482035"],["-106.3027956","38.5481487"],["-106.3030172","38.548097"],["-106.3061233","38.5474551"],["-106.3064467","38.5473839"],["-106.3066885","38.5473218"],["-106.3069372","38.5472474"],["-106.3071671","38.5471646"],["-106.3073783","38.5470754"],["-106.307815","38.5468695"],["-106.3080278","38.5467493"],["-106.3082021","38.5466406"],["-106.308387","38.5465166"],["-106.3085354","38.5464074"],["-106.3086578","38.5463066"],["-106.3087846","38.5461925"],["-106.3088743","38.5460992"],["-106.3089901","38.5459797"],["-106.3091111","38.5458412"],["-106.3092524","38.5456738"],["-106.3093793","38.5455003"],["-106.3096006","38.5451604"],["-106.3098322","38.5448005"],["-106.3100858","38.5444277"],["-106.3102098","38.5442755"],["-106.310303","38.5441808"],["-106.3104169","38.5440916"],["-106.3105722","38.5439861"],["-106.3107806","38.543879"],["-106.3110473","38.5437728"],["-106.3122609","38.5434242"],["-106.3125686","38.5433234"],["-106.3129612","38.5431665"],["-106.3131579","38.5430649"],["-106.3133448","38.5429608"],["-106.3135311","38.5428421"],["-106.313908","38.5425272"],["-106.315327","38.5412756"],["-106.31789","38.5394622"],["-106.3182706","38.539188"],["-106.3185079","38.5390207"],["-106.3187797","38.538817"],["-106.3190156","38.5386205"],["-106.3192504","38.5383821"],["-106.3194318","38.5381555"],["-106.3195583","38.5379626"],["-106.3196578","38.5377876"],["-106.3197496","38.5375617"],["-106.319813","38.5373614"],["-106.3200326","38.5365663"],["-106.3201797","38.5361569"],["-106.3203502","38.5357234"],["-106.3205726","38.5352093"],["-106.3208027","38.5347274"],["-106.3210235","38.53435"],["-106.3212786","38.5339587"],["-106.3215778","38.5335742"],["-106.3219424","38.5331413"],["-106.3223347","38.5327369"],["-106.3228531","38.5322594"],["-106.3233973","38.5318155"],["-106.3242289","38.5311611"],["-106.3245557","38.5308934"],["-106.3247826","38.5307095"],["-106.3248912","38.5306098"],["-106.325001","38.5304848"],["-106.3251018","38.5303278"],["-106.325183","38.5301478"],["-106.3252907","38.5298722"],["-106.3264941","38.5260784"],["-106.3265775","38.5256397"],["-106.3266013","38.5254169"],["-106.3266026","38.5252044"],["-106.3265819","38.5249776"],["-106.3264177","38.5239615"],["-106.3263572","38.5236719"],["-106.3261672","38.5224654"],["-106.326085","38.5219779"],["-106.3260279","38.5216471"],["-106.326002","38.5214024"],["-106.3259881","38.5211435"],["-106.3259844","38.5207977"],["-106.326004","38.5204422"],["-106.3260119","38.5201306"],["-106.3260266","38.5199836"],["-106.3260666","38.5197664"],["-106.3260983","38.5196562"],["-106.3261919","38.5194613"],["-106.3263109","38.5192927"],["-106.3263905","38.5192094"],["-106.3265285","38.5190884"],["-106.3266716","38.5189867"],["-106.3270447","38.5187691"],["-106.3280252","38.5182193"],["-106.3282887","38.5180508"],["-106.3285382","38.5178371"],["-106.3286846","38.517672"],["-106.3287915","38.5175215"],["-106.328864","38.5173766"],["-106.3289148","38.5172573"],["-106.3289937","38.5169763"],["-106.3290204","38.5168505"],["-106.329031","38.5167308"],["-106.3290303","38.5165026"],["-106.3289794","38.5162215"],["-106.3288727","38.5157169"],["-106.3288038","38.5154537"],["-106.3287573","38.515244"],["-106.3287267","38.5150159"],["-106.3287169","38.5147713"],["-106.3287302","38.5145808"],["-106.3287922","38.5142562"],["-106.328896","38.5138637"],["-106.3290179","38.5134312"],["-106.3290698","38.5131827"],["-106.3290757","38.5130137"],["-106.3290595","38.5128657"],["-106.3290078","38.5126542"],["-106.3289213","38.5124598"],["-106.3288193","38.5122922"],["-106.3287263","38.512167"],["-106.3284049","38.5118379"],["-106.3280834","38.5114742"],["-106.3279277","38.5113025"],["-106.3268688","38.5100941"],["-106.3266356","38.5098079"],["-106.3263913","38.5094679"],["-106.3263078","38.5092792"],["-106.3262334","38.5090523"],["-106.3261524","38.5087142"],["-106.3260968","38.508467"],["-106.3260351","38.5081681"],["-106.3259933","38.5078915"],["-106.3259683","38.5076629"],["-106.3259536","38.5074463"],["-106.3259732","38.5070146"],["-106.3259899","38.5067995"],["-106.3260462","38.5066055"],["-106.3261023","38.5064338"],["-106.3262047","38.5062119"],["-106.3263564","38.5059229"],["-106.3265545","38.5056467"],["-106.3266975","38.5054859"],["-106.3272635","38.5049652"],["-106.3274242","38.5048312"],["-106.3283176","38.5040846"],["-106.3284333","38.5039811"],["-106.3286139","38.503821"],["-106.3287997","38.5036792"],["-106.3289927","38.5035487"],["-106.3293688","38.5033429"],["-106.3299","38.5030968"],["-106.3307785","38.5026623"],["-106.3310115","38.5025021"],["-106.3312207","38.5023227"],["-106.3313683","38.5021342"],["-106.3314435","38.5019871"],["-106.3315119","38.5017901"],["-106.3315681","38.5015729"],["-106.3316266","38.501385"],["-106.3317034","38.5011767"],["-106.3318764","38.5007672"],["-106.332208","38.5000494"],["-106.3325783","38.4990756"],["-106.3326307","38.4987582"],["-106.3326181","38.4986064"],["-106.3325299","38.498354"],["-106.3324471","38.498224"],["-106.332342","38.4981113"],["-106.3322139","38.4980093"],["-106.3319067","38.4978577"],["-106.3317241","38.497805"],["-106.3313621","38.4977787"],["-106.3310282","38.4978138"],["-106.3307097","38.4979164"],["-106.3305334","38.4980134"],["-106.3300448","38.4984101"],["-106.3298726","38.4985774"],["-106.329482","38.4988938"],["-106.3291624","38.4991226"],["-106.3288309","38.4992679"],["-106.3286391","38.4993105"],["-106.3284464","38.499337"],["-106.3282527","38.4993197"],["-106.3279065","38.4992257"],["-106.3276065","38.4990499"],["-106.3272497","38.4986563"],["-106.326553","38.4977236"],["-106.3264509","38.4975281"],["-106.326357","38.4972657"],["-106.3262358","38.4969021"],["-106.3261179","38.4964347"],["-106.3260968","38.4960199"],["-106.3261411","38.4955213"],["-106.3262693","38.4950253"],["-106.3264085","38.4946146"],["-106.3266407","38.4941591"],["-106.3267775","38.4939115"],["-106.3269052","38.4935869"],["-106.326899","38.49347"],["-106.3268767","38.4933297"],["-106.3268229","38.4931314"],["-106.3266725","38.4928798"],["-106.3259335","38.491909"],["-106.3258433","38.4917404"],["-106.3258195","38.4915822"],["-106.3258223","38.4914232"],["-106.3258483","38.4912888"],["-106.3258926","38.4911716"],["-106.3259614","38.4910373"],["-106.3260636","38.4909087"],["-106.3261741","38.4908157"],["-106.3262888","38.4907329"],["-106.3264345","38.4906628"],["-106.3265826","38.4906027"],["-106.3268085","38.4905487"],["-106.3275065","38.4904515"],["-106.3277113","38.4903798"],["-106.3279021","38.4902764"],["-106.3280511","38.4901761"],["-106.3281775","38.4900387"],["-106.3282581","38.4899205"],["-106.3283047","38.4898136"],["-106.3283407","38.489706"],["-106.3284003","38.4892375"],["-106.3286056","38.4869391"],["-106.3286787","38.4866571"],["-106.3287657","38.4865163"],["-106.3288499","38.4864051"],["-106.3289697","38.4863025"],["-106.3290997","38.486217"],["-106.3292605","38.4861526"],["-106.3294587","38.4861002"],["-106.3297126","38.4860601"],["-106.3303322","38.4860201"],["-106.330846","38.4859711"],["-106.3310842","38.4859157"],["-106.3312507","38.4858688"],["-106.3313881","38.4858002"],["-106.3315681","38.4856946"],["-106.3317377","38.4855645"],["-106.3326239","38.4847634"],["-106.3328678","38.4845826"],["-106.3330415","38.4844928"],["-106.3332434","38.4844387"],["-106.3334313","38.4844084"],["-106.333627","38.4844008"],["-106.3338551","38.4844108"],["-106.3341015","38.4844511"],["-106.3343922","38.4845541"],["-106.3362073","38.4853961"],["-106.3365583","38.4855121"],["-106.3368923","38.4856017"],["-106.3372682","38.4856578"],["-106.3375185","38.4856807"],["-106.3377602","38.4856929"],["-106.3380534","38.4856971"],["-106.3382792","38.4856828"],["-106.3385307","38.4856518"],["-106.3387717","38.4856174"],["-106.3389982","38.4855638"],["-106.3393435","38.4854574"],["-106.3397095","38.4852746"],["-106.3398969","38.485115"],["-106.3399864","38.4850062"],["-106.3400636","38.4848907"],["-106.3401111","38.4847863"],["-106.3401428","38.484672"],["-106.3401523","38.484509"],["-106.3401273","38.4843645"],["-106.3400835","38.484251"],["-106.3400081","38.4840944"],["-106.3393611","38.4832317"],["-106.3373574","38.4806247"],["-106.3356429","38.4783956"],["-106.3355437","38.4782449"],["-106.3354422","38.477989"],["-106.3354087","38.4778756"],["-106.3353933","38.4777425"],["-106.335393","38.4776048"],["-106.3354329","38.4774553"],["-106.3355012","38.4772976"],["-106.3356146","38.4771427"],["-106.3359979","38.4767366"],["-106.3361152","38.4765956"],["-106.3361675","38.4764942"],["-106.3362085","38.4763574"],["-106.3362337","38.4762108"],["-106.336216","38.476045"],["-106.3361707","38.475904"],["-106.3361115","38.4757427"],["-106.3360037","38.4755843"],["-106.335889","38.4754552"],["-106.3356703","38.4752795"],["-106.3353909","38.4750173"],["-106.3352478","38.4748527"],["-106.33515","38.4746892"],["-106.3350484","38.4744929"],["-106.3349863","38.4742636"],["-106.3348521","38.473566"],["-106.3347392","38.4727454"],["-106.3346741","38.4721746"],["-106.3346872","38.4718596"],["-106.3347163","38.471533"],["-106.3347485","38.4712216"],["-106.3348661","38.4704858"],["-106.334958","38.4701509"],["-106.3350392","38.4699303"],["-106.3351286","38.4697769"],["-106.3352154","38.4696593"],["-106.3353197","38.469541"],["-106.3354749","38.4693852"],["-106.3357625","38.4691455"],["-106.3361978","38.4688145"],["-106.336637","38.4685174"],["-106.3368676","38.4683823"],["-106.3370751","38.4682788"],["-106.3372699","38.4681962"],["-106.337474","38.4681361"],["-106.3376503","38.4680946"],["-106.338115","38.4680341"],["-106.3383774","38.4680246"],["-106.3386275","38.4680287"],["-106.3388473","38.4680451"],["-106.3390941","38.4680829"],["-106.3398307","38.4682915"],["-106.3400425","38.4683518"],["-106.3402371","38.468393"],["-106.3404252","38.4684056"],["-106.3405852","38.4683917"],["-106.3407785","38.4683582"],["-106.3409515","38.4682974"],["-106.3410905","38.4682363"],["-106.3412084","38.4681676"],["-106.3414012","38.4679902"],["-106.3414798","38.4678822"],["-106.3415669","38.4677509"],["-106.341613","38.4676258"],["-106.3416398","38.4674815"],["-106.3416491","38.4673466"],["-106.3416216","38.4672144"],["-106.3415611","38.4670707"],["-106.3414831","38.4669004"],["-106.3414102","38.4667167"],["-106.3413763","38.4665642"],["-106.3413719","38.4664124"],["-106.3414047","38.4662609"],["-106.3414725","38.4661015"],["-106.3416638","38.4658176"],["-106.3421204","38.4652253"],["-106.3427095","38.4644962"],["-106.3430361","38.4641111"],["-106.343278","38.4638626"],["-106.3436177","38.4636384"],["-106.3438457","38.4635027"],["-106.3441323","38.463348"],["-106.3446274","38.4630752"],["-106.3447605","38.4629726"],["-106.344937","38.4627852"],["-106.3450173","38.462673"],["-106.3450613","38.4625882"],["-106.3450889","38.4624861"],["-106.3451123","38.4623817"],["-106.345116","38.4622682"],["-106.345112","38.4621454"],["-106.3450916","38.4620519"],["-106.3450643","38.4619565"],["-106.3450219","38.461854"],["-106.344933","38.4616947"],["-106.3448367","38.4615266"],["-106.344739","38.461358"],["-106.3446583","38.4612016"],["-106.3445903","38.4610321"],["-106.3445373","38.4608656"],["-106.3444875","38.4605724"],["-106.3442909","38.4590845"],["-106.3441991","38.4585204"],["-106.3441579","38.4582766"],["-106.3441172","38.4580934"],["-106.3440336","38.4578569"],["-106.3434938","38.4566696"],["-106.3433191","38.4562537"],["-106.3432462","38.4560364"],["-106.3432101","38.455821"],["-106.3431914","38.4556479"],["-106.3431872","38.4554947"],["-106.3432046","38.4553543"],["-106.3432458","38.455227"],["-106.3433019","38.4551202"],["-106.3433942","38.4550028"],["-106.3435188","38.4548847"],["-106.3436439","38.4547766"],["-106.3439116","38.4545779"],["-106.3453142","38.4535954"],["-106.3455908","38.4533993"],["-106.3457202","38.4533251"],["-106.345849","38.4532753"],["-106.3459654","38.4532348"],["-106.3463148","38.4531724"],["-106.3484031","38.4529232"],["-106.3489441","38.4528739"],["-106.3491596","38.4528756"],["-106.3493732","38.4529112"],["-106.3495696","38.4529492"],["-106.3497304","38.4530155"],["-106.3498753","38.4530934"],["-106.3500037","38.4531898"],["-106.350171","38.4533852"],["-106.350268","38.4535484"],["-106.3503578","38.4537171"],["-106.3504085","38.453821"],["-106.3504866","38.4539254"],["-106.3506461","38.4541003"],["-106.3507623","38.4541744"],["-106.3508853","38.4542388"],["-106.351035","38.4543006"],["-106.3511906","38.45435"],["-106.3513352","38.4543786"],["-106.3515083","38.4543836"],["-106.3516991","38.4543751"],["-106.351876","38.454333"],["-106.352062","38.4542718"],["-106.3522013","38.4542046"],["-106.3523107","38.4541422"],["-106.3524131","38.4540574"],["-106.3524894","38.4539744"],["-106.3525485","38.4538804"],["-106.3526455","38.4536605"],["-106.3526876","38.4534127"],["-106.3526777","38.4532945"],["-106.352652","38.4531863"],["-106.352541","38.4529236"],["-106.3522884","38.452496"],["-106.3521306","38.4521848"],["-106.352029","38.4519447"],["-106.3519595","38.4517472"],["-106.3519074","38.4514777"],["-106.3517736","38.4504665"],["-106.3517414","38.4500267"],["-106.3517637","38.4498085"],["-106.3517935","38.4496612"],["-106.3518776","38.4494736"],["-106.3519788","38.4493403"],["-106.3521266","38.449222"],["-106.3522616","38.4491324"],["-106.352397","38.4490582"],["-106.3530393","38.4488154"],["-106.3559398","38.4477663"],["-106.3566563","38.4474979"],["-106.3569573","38.44732"],["-106.35708","38.4472094"],["-106.3571565","38.447124"],["-106.3572199","38.4470299"],["-106.3572618","38.4469351"],["-106.3572968","38.4468273"],["-106.357312","38.4466749"],["-106.3573207","38.4465131"],["-106.3573257","38.4459259"],["-106.3573583","38.4457348"],["-106.3573948","38.4455753"],["-106.3574615","38.4453918"],["-106.3577185","38.4449471"],["-106.3583452","38.4439076"],["-106.3584972","38.4437254"],["-106.358648","38.4435625"],["-106.3588002","38.4434208"],["-106.3589487","38.4433027"],["-106.359079","38.4432155"],["-106.3592226","38.4431408"],["-106.3593898","38.4430571"],["-106.3595992","38.442951"],["-106.3599211","38.4428012"],["-106.3602276","38.4426478"],["-106.3606197","38.442429"],["-106.3610026","38.4422087"],["-106.36123","38.4420896"],["-106.3613896","38.442015"],["-106.3615284","38.4419588"],["-106.3616839","38.4419079"],["-106.3619594","38.4418504"],["-106.3626207","38.4417266"],["-106.3628732","38.4416703"],["-106.363066","38.4416053"],["-106.3632457","38.4415297"],["-106.3638951","38.4411976"],["-106.3641242","38.4410865"],["-106.3642694","38.4410309"],["-106.3644915","38.4409661"],["-106.3651198","38.440793"],["-106.3653358","38.4407289"],["-106.3654774","38.4406625"],["-106.3655897","38.4405885"],["-106.3657081","38.4404873"],["-106.3657929","38.440396"],["-106.3658761","38.4402704"],["-106.3661057","38.4398758"],["-106.3662079","38.439712"],["-106.3663123","38.4395877"],["-106.3664274","38.4394837"],["-106.3665729","38.4393917"],["-106.3667145","38.439326"],["-106.3668652","38.4392719"],["-106.3669989","38.4392393"],["-106.3671245","38.4392171"],["-106.3672847","38.4392052"],["-106.367475","38.4392175"],["-106.367789","38.4392644"],["-106.3687336","38.4394511"],["-106.3689961","38.4394968"],["-106.3692326","38.4395115"],["-106.3694746","38.4395183"],["-106.3697096","38.4395187"],["-106.3700865","38.4394857"],["-106.3710145","38.4393711"],["-106.3713764","38.4393398"],["-106.3716079","38.4393518"],["-106.3718242","38.43938"],["-106.3720068","38.4394225"],["-106.3724556","38.4395711"],["-106.3726635","38.4396468"],["-106.3728547","38.43971"],["-106.3730516","38.4397667"],["-106.3732422","38.4398073"],["-106.3734251","38.4398366"],["-106.3735892","38.439847"],["-106.3738425","38.4398366"],["-106.3740708","38.4398233"],["-106.3743163","38.4398011"],["-106.3748572","38.4397518"],["-106.3751423","38.4397445"],["-106.3754106","38.4397414"],["-106.3757244","38.439748"],["-106.3760412","38.439768"],["-106.3763191","38.4397997"],["-106.3766183","38.4398465"],["-106.3775772","38.4400178"],["-106.3779233","38.4400651"],["-106.3782009","38.4400929"],["-106.3783846","38.4400951"],["-106.3785647","38.440078"],["-106.3787366","38.4400557"],["-106.3789357","38.439991"],["-106.3791572","38.439906"],["-106.3799766","38.439501"],["-106.3803691","38.4393273"],["-106.3805966","38.4392635"],["-106.3808206","38.4392118"],["-106.3810866","38.4391677"],["-106.381386","38.4391465"],["-106.3816406","38.439128"],["-106.3819761","38.439098"],["-106.3822242","38.4390631"],["-106.3824736","38.4390076"],["-106.3826993","38.438939"],["-106.3829325","38.4388541"],["-106.3831637","38.4387482"],["-106.3833902","38.4386267"],["-106.3835623","38.4385137"],["-106.3837136","38.4384093"],["-106.3838811","38.4382722"],["-106.384109","38.4380719"],["-106.3859461","38.4362392"],["-106.3886742","38.4335236"],["-106.3889324","38.4333009"],["-106.3891254","38.433148"],["-106.3893252","38.4330029"],["-106.389549","38.4328592"],["-106.3898315","38.4327016"],["-106.3901464","38.4325377"],["-106.3904269","38.432415"],["-106.3906858","38.4323217"],["-106.3909316","38.4322407"],["-106.3914913","38.4321099"],["-106.3922839","38.4319403"],["-106.3925198","38.4318739"],["-106.3927333","38.4317987"],["-106.3929404","38.4317161"],["-106.3931767","38.4315983"],["-106.3934247","38.4314485"],["-106.3936555","38.4312949"],["-106.393892","38.4311114"],["-106.3941004","38.4309066"],["-106.3942773","38.4307043"],["-106.3955002","38.429059"],["-106.3958134","38.4286661"],["-106.3959879","38.4284803"],["-106.3962001","38.4282837"],["-106.3964326","38.4280955"],["-106.3966473","38.4279336"],["-106.3968501","38.4278113"],["-106.397068","38.4277008"],["-106.3973492","38.4275939"],["-106.3976237","38.4274983"],["-106.3979402","38.4274008"],["-106.4008085","38.4266003"],["-106.4022183","38.4262051"],["-106.4034641","38.4258438"],["-106.4037294","38.425743"],["-106.4040067","38.4256306"],["-106.4042297","38.425518"],["-106.4044545","38.4253936"],["-106.404674","38.4252467"],["-106.4048639","38.4251045"],["-106.405017","38.4249715"],["-106.4051701","38.424831"],["-106.4066057","38.4233958"],["-106.4075734","38.4224003"],["-106.408489","38.4214019"],["-106.4087119","38.4211277"],["-106.4088773","38.4208771"],["-106.4090633","38.4205493"],["-106.4092244","38.4202292"],["-106.4093681","38.4198973"],["-106.4129209","38.4105459"],["-106.413084","38.4101528"],["-106.4132223","38.4098677"],["-106.4133629","38.4096252"],["-106.4135917","38.4092878"],["-106.4138915","38.4088743"],["-106.4142404","38.408423"],["-106.4146359","38.4079449"],["-106.4148408","38.4077313"],["-106.4150391","38.4075533"],["-106.4152476","38.4073871"],["-106.4155429","38.4071896"],["-106.4158286","38.4070187"],["-106.4161168","38.4068764"],["-106.4164147","38.4067434"],["-106.4184527","38.4059718"],["-106.4194289","38.4055934"],["-106.4197977","38.405418"],["-106.4200823","38.4052659"],["-106.4203206","38.4051251"],["-106.4205447","38.4049797"],["-106.4207693","38.4048156"],["-106.4209848","38.4046462"],["-106.4211662","38.4044881"],["-106.4213545","38.4043156"],["-106.4216594","38.4039949"],["-106.4217992","38.4038283"],["-106.4220396","38.4035139"],["-106.4221564","38.4033307"],["-106.4222655","38.4031484"],["-106.4223617","38.402953"],["-106.4224404","38.4027801"],["-106.4225122","38.4026122"],["-106.4226781","38.4021674"],["-106.4227357","38.401935"],["-106.422779","38.4017384"],["-106.4228081","38.4015329"],["-106.4228302","38.4013275"],["-106.4228371","38.401117"],["-106.4226963","38.3980203"],["-106.422671","38.3971944"],["-106.4226798","38.396935"],["-106.4227146","38.3966898"],["-106.4227669","38.3964616"],["-106.4228233","38.3962731"],["-106.4228995","38.3960979"],["-106.4229893","38.3959377"],["-106.4230925","38.3957849"],["-106.4232012","38.39564"],["-106.4233266","38.3955046"],["-106.423548","38.3953097"],["-106.4237237","38.3951695"],["-106.4239679","38.3949883"],["-106.424495","38.3946343"],["-106.4247415","38.3944923"],["-106.4254413","38.3941478"],["-106.4320457","38.3912731"],["-106.4349895","38.390009"],["-106.435558","38.3898301"],["-106.4358335","38.3897561"],["-106.4360802","38.389703"],["-106.4363546","38.3896709"],["-106.4366792","38.3896472"],["-106.4369928","38.3896343"],["-106.4372728","38.3896469"],["-106.4401621","38.3898342"],["-106.4415459","38.3899168"],["-106.4418959","38.3899198"],["-106.4421836","38.3899115"],["-106.4424673","38.3898931"],["-106.4501806","38.3889501"],["-106.4505625","38.3889221"],["-106.4509592","38.3889162"],["-106.4513269","38.3889382"],["-106.4516477","38.3889744"],["-106.4519199","38.3890257"],["-106.4521748","38.3890884"],["-106.4524217","38.3891612"],["-106.4526761","38.3892497"],["-106.4528977","38.3893499"],["-106.4530956","38.389449"],["-106.4533484","38.3895962"],["-106.4541725","38.3901245"],["-106.4554777","38.3909695"],["-106.457467","38.3920831"],["-106.4624908","38.394672"],["-106.4628925","38.3948352"],["-106.4632733","38.394977"],["-106.4636531","38.395109"],["-106.4644332","38.3953381"],["-106.4671295","38.3960446"],["-106.4686759","38.3964386"],["-106.4690887","38.3965263"],["-106.4694524","38.39659"],["-106.469779","38.396639"],["-106.4701675","38.3966838"],["-106.470503","38.3967154"],["-106.4746587","38.3968539"],["-106.4761073","38.3969473"],["-106.477064","38.3970563"],["-106.4804164","38.3975912"],["-106.4807135","38.3976242"],["-106.4810456","38.397652"],["-106.4814184","38.3976641"],["-106.4818507","38.3976542"],["-106.4844742","38.3974123"],["-106.4875019","38.3971134"],["-106.4888223","38.3969971"],["-106.4891717","38.3969907"],["-106.4895546","38.3970177"],["-106.4899086","38.3970646"],["-106.4902391","38.3971365"],["-106.4906095","38.3972344"],["-106.4909847","38.3973684"],["-106.4912616","38.3974975"],["-106.4915191","38.3976484"],["-106.4917746","38.3978176"],["-106.49216","38.3981128"],["-106.4929532","38.3987577"],["-106.4933564","38.399111"],["-106.4935971","38.3993475"],["-106.4938166","38.3995819"],["-106.4940084","38.3998228"],["-106.4941945","38.4000833"],["-106.4948353","38.4011367"],["-106.4958369","38.4028456"],["-106.4962988","38.4035843"],["-106.4965729","38.4039782"],["-106.4968125","38.404269"],["-106.497059","38.4045348"],["-106.497282","38.4047655"],["-106.4976009","38.4050406"],["-106.5001511","38.407106"],["-106.5005545","38.4074571"],["-106.5007685","38.4076619"],["-106.5009733","38.4078597"],["-106.5026323","38.4097586"],["-106.503477","38.4107178"],["-106.5037227","38.4109527"],["-106.5039686","38.4111719"],["-106.5042447","38.4113951"],["-106.5045239","38.4116057"],["-106.5048267","38.4118112"],["-106.5051648","38.412012"],["-106.5055309","38.4121972"],["-106.5062781","38.4125255"],["-106.506589","38.4126446"],["-106.5068963","38.4127477"],["-106.5072335","38.412848"],["-106.5075658","38.4129348"],["-106.5083922","38.4130849"],["-106.5101551","38.4133827"],["-106.5108977","38.4135218"],["-106.51119","38.4136006"],["-106.5197029","38.416482"],["-106.520543","38.4167909"],["-106.520888","38.4169579"],["-106.5211996","38.4171189"],["-106.5215113","38.4173068"],["-106.5217887","38.4174904"],["-106.5220577","38.4177008"],["-106.522311","38.4179179"],["-106.52256","38.4181664"],["-106.5229683","38.4186377"],["-106.5231464","38.418873"],["-106.5233015","38.4191176"],["-106.5235741","38.4196221"],["-106.5236634","38.419847"],["-106.5239628","38.4207818"],["-106.5247888","38.4236633"],["-106.5250562","38.4245403"],["-106.5251563","38.4247899"],["-106.5253096","38.4250921"],["-106.5256063","38.4255187"],["-106.525751","38.4256799"],["-106.525962","38.4258707"],["-106.5261878","38.426037"],["-106.5278064","38.4270022"],["-106.5381502","38.4330114"],["-106.5396924","38.4339047"],["-106.540598","38.4343292"],["-106.5413061","38.4345966"],["-106.5419587","38.4348051"],["-106.5423603","38.4349061"],["-106.5428526","38.435018"],["-106.547474","38.4357023"],["-106.5656115","38.438325"],["-106.570177","38.438994"],["-106.5804332","38.4410471"],["-106.581306","38.4412647"],["-106.5821809","38.4415084"],["-106.5830924","38.441811"],["-106.5850659","38.4425853"],["-106.5892156","38.4442887"],["-106.5934788","38.4463465"],["-106.5958887","38.4475515"],["-106.5986565","38.4487294"],["-106.5999847","38.4492396"],["-106.6116818","38.4537019"],["-106.6596369","38.4748365"],["-106.6615682","38.4756919"],["-106.6619455","38.4758844"],["-106.6622794","38.4760716"],["-106.662607","38.4762795"],["-106.6630011","38.476552"],["-106.6635222","38.4769555"],["-106.6639262","38.4773346"],["-106.6646807","38.4780835"],["-106.6652234","38.4785987"],["-106.6655757","38.4788872"],["-106.6658864","38.4791006"],["-106.6662598","38.4793162"],["-106.6672959","38.4798506"],["-106.6694458","38.4809478"],["-106.6698518","38.4811756"],["-106.6702066","38.4813934"],["-106.6710158","38.4819763"],["-106.6740085","38.4841855"],["-106.6745809","38.4845747"],["-106.6753909","38.4850621"],["-106.6759126","38.4853482"],["-106.6764435","38.4856004"],["-106.6771197","38.4859025"],["-106.6777425","38.4861518"],["-106.6782802","38.4863449"],["-106.6788391","38.4865309"],["-106.679378","38.48669"],["-106.6805156","38.4869465"],["-106.6874418","38.4883985"],["-106.691376","38.4892111"],["-106.6917378","38.4892657"],["-106.69218","38.4893056"],["-106.6960991","38.4895636"],["-106.6969173","38.489632"],["-106.6975018","38.4897117"],["-106.6979622","38.4897936"],["-106.6985454","38.4899167"],["-106.6993035","38.4901084"],["-106.6998814","38.4902764"],["-106.7003563","38.4904308"],["-106.7010157","38.4906857"],["-106.7035627","38.4917291"],["-106.7045233","38.4921133"],["-106.7049948","38.4922797"],["-106.7054048","38.492413"],["-106.7058403","38.4925398"],["-106.7074782","38.4929249"],["-106.7099784","38.4934958"],["-106.7121734","38.4940003"],["-106.7126166","38.4941199"],["-106.7135991","38.4944415"],["-106.7171131","38.4957857"],["-106.7242295","38.4985247"],["-106.7248396","38.4987923"],["-106.7250891","38.4989249"],["-106.7252928","38.4990513"],["-106.7254777","38.4991896"],["-106.7256945","38.4993602"],["-106.7259011","38.4995333"],["-106.7261669","38.4998051"],["-106.7268232","38.5005435"],["-106.7272632","38.5010447"],["-106.7286007","38.5026177"],["-106.7293902","38.5035945"],["-106.7322006","38.5072097"],["-106.7327426","38.5078814"],["-106.7333937","38.5086734"],["-106.7338698","38.5091856"],["-106.7342321","38.5095273"],["-106.7346113","38.5098694"],["-106.7350371","38.510202"],["-106.7355036","38.5105385"],["-106.7359401","38.5108143"],["-106.7365582","38.5111587"],["-106.7371555","38.5114597"],["-106.7376507","38.5116826"],["-106.7381365","38.5118729"],["-106.7387496","38.512087"],["-106.7392668","38.512247"],["-106.7397042","38.5123624"],["-106.7401349","38.5124592"],["-106.740611","38.5125553"],["-106.741012","38.512623"],["-106.7414442","38.5126825"],["-106.741855","38.5127281"],["-106.7422965","38.5127625"],["-106.744901","38.5128267"],["-106.7484248","38.5129088"],["-106.7511922","38.5129772"],["-106.7516617","38.5130138"],["-106.7520267","38.5130597"],["-106.7523797","38.51312"],["-106.7527057","38.5131912"],["-106.7530696","38.5132878"],["-106.7534131","38.5133915"],["-106.7545338","38.5138118"],["-106.766042","38.5181676"],["-106.7675804","38.5187161"],["-106.7683943","38.5189686"],["-106.7840262","38.5229689"],["-106.784737","38.523132"],["-106.78512","38.5232004"],["-106.7854955","38.5232511"],["-106.7860908","38.5233078"],["-106.8088014","38.5245949"],["-106.809158","38.5246236"],["-106.8094838","38.5246577"],["-106.8098602","38.5247147"],["-106.8103266","38.5248111"],["-106.8106875","38.5249076"],["-106.8111015","38.5250415"],["-106.8114265","38.5251647"],["-106.8120544","38.5254494"],["-106.8221807","38.5302778"],["-106.8228925","38.5305983"],["-106.8232925","38.5307562"],["-106.8236905","38.5308907"],["-106.8242756","38.531063"],["-106.8249617","38.531228"],["-106.8271656","38.5315921"],["-106.8330411","38.5325198"],["-106.8334657","38.5326023"],["-106.8338788","38.5327046"],["-106.834376","38.5328543"],["-106.8349519","38.5330561"],["-106.8368591","38.5338819"],["-106.8398908","38.5352584"],["-106.8412592","38.5358679"],["-106.8416899","38.5360298"],["-106.8421468","38.5361821"],["-106.8426041","38.5363203"],["-106.8431123","38.5364557"],["-106.8436863","38.5365848"],["-106.8441697","38.5366699"],["-106.8447864","38.5367549"],["-106.8454495","38.5368236"],["-106.8459201","38.5368569"],["-106.846429","38.5368739"],["-106.8470064","38.536877"],["-106.8494162","38.536849"],["-106.8499452","38.5368634"],["-106.8502954","38.5368819"],["-106.8505778","38.5369098"],["-106.8508939","38.5369542"],["-106.8514477","38.5370632"],["-106.8520113","38.5372103"],["-106.8523544","38.5373209"],["-106.8526675","38.5374414"],["-106.853008","38.5375904"],["-106.8532628","38.5377131"],["-106.8535086","38.5378503"],["-106.8538518","38.538056"],["-106.854129","38.5382437"],["-106.8544565","38.5384983"],["-106.8549333","38.5389499"],["-106.8576632","38.5418896"],["-106.858855","38.5431617"],["-106.8590453","38.5433388"],["-106.8593904","38.5436226"],["-106.8596305","38.5437907"],["-106.8598544","38.5439294"],["-106.8600803","38.5440565"],["-106.8602982","38.5441643"],["-106.8605162","38.5442617"],["-106.8607511","38.544354"],["-106.861112","38.5444708"],["-106.8614303","38.544555"],["-106.861675","38.5446088"],["-106.8618954","38.5446438"],["-106.8621184","38.5446723"],["-106.8623621","38.5446937"],["-106.8628875","38.544719"],["-106.8638595","38.5447286"],["-106.8662854","38.5447262"],["-106.8736225","38.5447266"],["-106.8747865","38.5447134"],["-106.8754708","38.5446972"],["-106.8761413","38.5446614"],["-106.8772119","38.5445708"],["-106.8777271","38.544507"],["-106.8784822","38.5443912"],["-106.8804584","38.544075"],["-106.8808833","38.5440279"],["-106.8811844","38.5440061"],["-106.8814443","38.5439945"],["-106.8817118","38.5439979"],["-106.881975","38.5440078"],["-106.8822701","38.5440264"],["-106.8825725","38.5440604"],["-106.8828475","38.5440974"],["-106.8837147","38.5442597"],["-106.8842277","38.5443581"],["-106.8845586","38.5444186"],["-106.8847725","38.5444491"],["-106.8849963","38.5444739"],["-106.8852417","38.5444923"],["-106.8855183","38.5445031"],["-106.8859626","38.5445112"],["-106.9103283","38.544407"],["-106.9143522","38.5444127"],["-106.9176204","38.544388"],["-106.9217504","38.5444069"],["-106.9230665","38.5443994"],["-106.923678","38.5443925"],["-106.9314659","38.5444048"],["-106.9331111","38.5444016"],["-106.9333743","38.5444001"],["-106.9348443","38.544401"],["-106.9354395","38.5444"],["-106.9355265","38.5443999"],["-106.9360761","38.5443991"],["-106.9368315","38.5444013"],["-106.9370623","38.544386"],["-106.9372472","38.5443585"],["-106.9374107","38.5443214"],["-106.9376666","38.5442242"],["-106.9379335","38.5441098"],["-106.9382139","38.5439358"],["-106.9385537","38.5436574"],["-106.9387105","38.5434668"],["-106.9388188","38.5432797"],["-106.9388711","38.5431694"],["-106.9398835","38.5394709"],["-106.9399859","38.5391459"],["-106.9400866","38.5389298"],["-106.9403683","38.5384289"],["-106.9406978","38.5379177"],["-106.9409842","38.5375857"],["-106.9413368","38.5372413"],["-106.9417587","38.5368712"],["-106.9423141","38.53648"],["-106.9426881","38.5362622"],["-106.9436497","38.5358505"],["-106.9750918","38.5231728"],["-106.9759048","38.522859"],["-106.9763521","38.5227298"],["-106.9769282","38.5226117"],["-106.9778651","38.5224938"],["-106.9784659","38.5224758"],["-106.979127","38.5224697"],["-106.9887302","38.5227168"],["-106.9895589","38.5226948"],["-106.9905327","38.5226032"],["-106.9920728","38.52236"],["-107.0026727","38.5202763"],["-107.0044733","38.5199034"],["-107.0063442","38.5193638"],["-107.0104587","38.5181116"],["-107.0127501","38.5174375"],["-107.0140554","38.5171515"],["-107.0167122","38.5166541"],["-107.0185044","38.5163034"],["-107.0188127","38.5162116"],["-107.0190952","38.5161067"],["-107.0193961","38.5159591"],["-107.0197202","38.5157713"],["-107.0199783","38.5155749"],["-107.0203418","38.5152366"],["-107.0233611","38.5120628"],["-107.0242212","38.5111074"],["-107.0247351","38.5103822"],["-107.0264206","38.5076449"],["-107.0267756","38.5070068"],["-107.0269048","38.5067156"],["-107.0269878","38.5063885"],["-107.0270523","38.5060883"],["-107.0270711","38.5057964"],["-107.0270698","38.5054281"],["-107.0270497","38.5051561"],["-107.0269567","38.5046668"],["-107.0261653","38.5010848"],["-107.026093","38.5006961"],["-107.0260463","38.5001696"],["-107.0260527","38.4998398"],["-107.0261082","38.499398"],["-107.0262226","38.4989025"],["-107.0263686","38.4984782"],["-107.0265725","38.4980177"],["-107.0267966","38.4976594"],["-107.0270717","38.4972805"],["-107.0274315","38.496879"],["-107.0277569","38.4965712"],["-107.0280642","38.4963136"],["-107.0296015","38.4952797"],["-107.031344","38.4943152"],["-107.0330602","38.4933245"],["-107.0333996","38.4930933"],["-107.0337016","38.4928325"],["-107.0338764","38.4926269"],["-107.0340558","38.4923906"],["-107.0341821","38.4921391"],["-107.034317","38.4917127"],["-107.0346008","38.4906105"],["-107.0347552","38.4902773"],["-107.0349251","38.4900293"],["-107.0350983","38.48984"],["-107.0353097","38.4896687"],["-107.0355362","38.4895255"],["-107.0358209","38.4893913"],["-107.0361297","38.4892838"],["-107.0363986","38.4892324"],["-107.0367096","38.4891923"],["-107.0369835","38.4891944"],["-107.0373649","38.4892271"],["-107.038395","38.4893849"],["-107.0388387","38.4894203"],["-107.0391381","38.4894121"],["-107.0394321","38.4893633"],["-107.0397224","38.4892842"],["-107.040009","38.4891818"],["-107.0402379","38.4890612"],["-107.0404572","38.488913"],["-107.0407241","38.4886931"],["-107.0408959","38.488496"],["-107.0410798","38.488196"],["-107.0414555","38.4873243"],["-107.041606","38.4870689"],["-107.0417725","38.4868599"],["-107.0419198","38.4867174"],["-107.0420856","38.4865854"],["-107.0422775","38.4864576"],["-107.0425114","38.4863425"],["-107.0427791","38.4862334"],["-107.0430591","38.48615"],["-107.0433411","38.4861052"],["-107.0436888","38.4860818"],["-107.0439411","38.4860983"],["-107.0442274","38.486142"],["-107.0445137","38.4862038"],["-107.0447235","38.4862753"],["-107.0450728","38.4864375"],["-107.0458901","38.4868561"],["-107.0462365","38.4869996"],["-107.0465347","38.4870834"],["-107.046864","38.4871365"],["-107.0472143","38.4871459"],["-107.0474994","38.4871324"],["-107.0478165","38.4870729"],["-107.0481179","38.4869869"],["-107.04834","38.4868982"],["-107.0486308","38.4867575"],["-107.0493345","38.4863676"],["-107.0497338","38.4861726"],["-107.0500909","38.4860489"],["-107.0503992","38.4859952"],["-107.0507391","38.4859692"],["-107.0511163","38.4859884"],["-107.0514651","38.4860454"],["-107.0518172","38.486149"],["-107.0520872","38.4862617"],["-107.0523364","38.4863996"],["-107.0525692","38.4865884"],["-107.0529037","38.4869538"],["-107.0539705","38.4884508"],["-107.0542305","38.4887713"],["-107.0544417","38.4889762"],["-107.054711","38.4891664"],["-107.0549761","38.489329"],["-107.0552999","38.4894735"],["-107.0556215","38.4895729"],["-107.055937","38.4896406"],["-107.0562214","38.4896814"],["-107.056533","38.4896939"],["-107.0569514","38.4896801"],["-107.0601016","38.4893262"],["-107.0607816","38.4892283"],["-107.0611171","38.4891339"],["-107.061385","38.4890312"],["-107.061692","38.4888775"],["-107.0619266","38.4887311"],["-107.062238","38.4884973"],["-107.0627512","38.4880723"],["-107.0631964","38.4877157"],["-107.0635574","38.4874844"],["-107.0640121","38.4872431"],["-107.0643693","38.4870907"],["-107.06478","38.4869518"],["-107.065205","38.4868353"],["-107.0656346","38.486757"],["-107.0660555","38.486711"],["-107.0665359","38.4866855"],["-107.0671028","38.4867143"],["-107.0675246","38.4867653"],["-107.067912","38.4868375"],["-107.0683717","38.4869568"],["-107.0689557","38.4871704"],["-107.0699501","38.4876022"],["-107.0705739","38.4878628"],["-107.071012","38.4879753"],["-107.0717297","38.4880907"],["-107.076808","38.4886949"],["-107.0785714","38.4888628"],["-107.0797787","38.4889362"],["-107.0810409","38.4889923"],["-107.0820428","38.4890124"],["-107.0838128","38.4889857"],["-107.0855065","38.4889083"],["-107.0869566","38.4888093"],["-107.088282","38.4886697"],["-107.0896808","38.488483"],["-107.0927525","38.4879458"],["-107.1165714","38.481905"],["-107.1176462","38.4815629"],["-107.1190816","38.4810027"],["-107.1201439","38.4804959"],["-107.1209249","38.4800875"],["-107.1215723","38.4797113"],["-107.127548","38.4756802"],["-107.1283462","38.4751968"],["-107.1292281","38.4747898"],["-107.1303553","38.4743774"],["-107.1311147","38.4741581"],["-107.1318396","38.4740036"],["-107.1346688","38.4737816"],["-107.1453007","38.4731236"],["-107.1460659","38.4730563"],["-107.1470509","38.4729273"],["-107.153324","38.4718172"],["-107.164812","38.4697834"],["-107.1655381","38.4696926"],["-107.1661057","38.4696651"],["-107.166707","38.4696628"],["-107.167229","38.4697156"],["-107.1677927","38.4697958"],["-107.1683635","38.4699282"],["-107.1688535","38.4700736"],["-107.169336","38.4702714"],["-107.1698556","38.4705067"],["-107.1703699","38.4707918"],["-107.1707697","38.4710644"],["-107.1711785","38.4713869"],["-107.1716213","38.4718199"],["-107.1719728","38.4722298"],["-107.1723048","38.4727709"],["-107.1731951","38.4744813"],["-107.1738945","38.4758296"],["-107.1742703","38.4764631"],["-107.1745054","38.4767494"],["-107.1747429","38.4769792"],["-107.1750098","38.4771777"],["-107.1752567","38.4773422"],["-107.1755875","38.4775175"],["-107.17589","38.4776403"],["-107.1761907","38.4777341"],["-107.1764825","38.4778087"],["-107.1767644","38.4778607"],["-107.1770548","38.4778947"],["-107.1775607","38.4779174"],["-107.1789423","38.4779006"],["-107.1794866","38.4779162"],["-107.1799473","38.4779674"],["-107.1804028","38.4780404"],["-107.1809101","38.4781711"],["-107.1813925","38.478332"],["-107.1864145","38.480367"],["-107.1883794","38.4811593"],["-107.1887876","38.481305"],["-107.1890783","38.4813779"],["-107.1894266","38.4814558"],["-107.1898157","38.4814963"],["-107.190142","38.4815065"],["-107.1905495","38.4814815"],["-107.1909597","38.4814223"],["-107.1914077","38.4813182"],["-107.1922229","38.4810795"],["-107.192721","38.4809562"],["-107.193089","38.4809065"],["-107.1934264","38.480897"],["-107.1937658","38.4809295"],["-107.1941597","38.481004"],["-107.1944505","38.4810945"],["-107.1947335","38.4812046"],["-107.1953054","38.4815364"],["-107.1965781","38.4823223"],["-107.1971438","38.4826191"],["-107.197634","38.4828394"],["-107.198151","38.4830318"],["-107.1987385","38.4831994"],["-107.199268","38.4833159"],["-107.1998981","38.4834076"],["-107.2007785","38.483469"],["-107.2024335","38.4835399"],["-107.2028819","38.4835334"],["-107.2031906","38.4835023"],["-107.2035167","38.4834346"],["-107.2038212","38.4833406"],["-107.2041947","38.483197"],["-107.2058564","38.4824658"],["-107.2063831","38.4822819"],["-107.207114","38.4820654"],["-107.2079386","38.4818304"],["-107.2083238","38.4817588"],["-107.2086695","38.4817147"],["-107.2090841","38.481698"],["-107.2102717","38.4817332"],["-107.2107764","38.4817228"],["-107.2110812","38.4816784"],["-107.2113937","38.4816024"],["-107.2116648","38.4815081"],["-107.2120022","38.4813531"],["-107.2123592","38.4811109"],["-107.213681","38.4800525"],["-107.2144172","38.4794933"],["-107.2149263","38.4792025"],["-107.2153377","38.4790026"],["-107.2157985","38.4788072"],["-107.216567","38.478571"],["-107.2206469","38.4775038"],["-107.2240732","38.476892"],["-107.225431","38.476685"],["-107.2263721","38.4766275"],["-107.2277908","38.476576"],["-107.2289685","38.4765301"],["-107.2293697","38.4764844"],["-107.2296401","38.4764271"],["-107.2299641","38.4763432"],["-107.2302953","38.4762247"],["-107.230603","38.4760837"],["-107.2308406","38.4759622"],["-107.2312282","38.4756963"],["-107.2323149","38.4748947"],["-107.2327264","38.474656"],["-107.2330428","38.4745106"],["-107.2333932","38.4743914"],["-107.2340222","38.4742344"],["-107.2359283","38.4738477"],["-107.2366587","38.4736774"],["-107.2370134","38.4735681"],["-107.2373726","38.4734193"],["-107.2376451","38.4732643"],["-107.2379879","38.4730351"],["-107.2387326","38.4724506"],["-107.239201","38.4721046"],["-107.23952","38.471914"],["-107.2398364","38.4717735"],["-107.2402122","38.4716443"],["-107.2406696","38.4715224"],["-107.2428998","38.471103"],["-107.2436045","38.470998"],["-107.2441568","38.4709712"],["-107.2446065","38.4709947"],["-107.245088","38.4710429"],["-107.2458603","38.4711873"],["-107.2470148","38.4714274"],["-107.247921","38.4715894"],["-107.2484525","38.4716473"],["-107.2489615","38.4716587"],["-107.2493898","38.47164"],["-107.2498374","38.4715981"],["-107.2502614","38.4715431"],["-107.2506513","38.4714655"],["-107.2510767","38.4713633"],["-107.2514205","38.4712637"],["-107.2517235","38.4711518"],["-107.252011","38.4710192"],["-107.2522928","38.4708459"],["-107.2525263","38.4706697"],["-107.2527535","38.4704651"],["-107.2529288","38.470229"],["-107.2530444","38.4700112"],["-107.2531657","38.469731"],["-107.2533279","38.4691537"],["-107.2538413","38.4669978"],["-107.2540398","38.4662296"],["-107.2541557","38.4659873"],["-107.2543438","38.4656689"],["-107.2545989","38.4653638"],["-107.2549599","38.4650582"],["-107.2551914","38.4649021"],["-107.2554414","38.4647582"],["-107.2556438","38.4646536"],["-107.255912","38.4645516"],["-107.2561637","38.4644747"],["-107.2565617","38.4643878"],["-107.2569918","38.4643385"],["-107.2573191","38.4643304"],["-107.2585631","38.4644463"],["-107.2668554","38.4653495"],["-107.2688535","38.465602"],["-107.2696255","38.4657343"],["-107.270451","38.4659058"],["-107.2719529","38.4663024"],["-107.2781018","38.4681016"],["-107.2789007","38.4682802"],["-107.2794527","38.4683234"],["-107.280038","38.4683073"],["-107.280562","38.4682448"],["-107.2810831","38.4681343"],["-107.2818085","38.4678821"],["-107.2837518","38.4670678"],["-107.2846906","38.4667696"],["-107.2851281","38.4666625"],["-107.2855152","38.466584"],["-107.285981","38.4665195"],["-107.2867206","38.4664533"],["-107.2876552","38.4664489"],["-107.2958688","38.4667249"],["-107.2968899","38.4666705"],["-107.2976613","38.466543"],["-107.2983636","38.466364"],["-107.298931","38.4661871"],["-107.2995765","38.4659255"],["-107.3002934","38.4655668"],["-107.3008103","38.4652441"],["-107.301321","38.4648498"],["-107.3020049","38.4641688"],["-107.3024011","38.4637128"],["-107.3028692","38.4629988"],["-107.3030808","38.4625422"],["-107.3032988","38.4619709"],["-107.3033985","38.4613966"],["-107.3034402","38.4609279"],["-107.3034248","38.4605421"],["-107.3033943","38.4600856"],["-107.3032973","38.4595033"],["-107.3030935","38.4588335"],["-107.3028823","38.4584334"],["-107.3026325","38.4580419"],["-107.3023168","38.457582"],["-107.3017257","38.4569327"],["-107.3007983","38.4559666"],["-107.3004337","38.4555068"],["-107.3002428","38.4551819"],["-107.3001015","38.4548323"],["-107.3000027","38.4544336"],["-107.2999606","38.4540436"],["-107.2999764","38.4536629"],["-107.3000367","38.453251"],["-107.3001131","38.4529881"],["-107.3002039","38.4527009"],["-107.3003177","38.4524769"],["-107.3004577","38.4522657"],["-107.3006184","38.4520623"],["-107.3008528","38.4517982"],["-107.3010573","38.4516119"],["-107.3013088","38.4514097"],["-107.3015822","38.4512287"],["-107.3018614","38.4510822"],["-107.302286","38.4508916"],["-107.3025676","38.4507829"],["-107.302881","38.4506868"],["-107.3031903","38.450618"],["-107.3034999","38.4505666"],["-107.303821","38.4505248"],["-107.3041795","38.450506"],["-107.3044676","38.4505098"],["-107.3048259","38.450533"],["-107.3051682","38.4505817"],["-107.3058062","38.4507151"],["-107.3127375","38.4524736"],["-107.3132314","38.4525681"],["-107.3136638","38.4526145"],["-107.3140661","38.4526406"],["-107.3144703","38.4526354"],["-107.31481","38.452616"],["-107.3151509","38.4525707"],["-107.3155238","38.4524968"],["-107.3160303","38.4523613"],["-107.3169857","38.4520584"],["-107.3181036","38.4516879"],["-107.31872","38.451502"],["-107.3191606","38.4514155"],["-107.3196183","38.4513596"],["-107.3201326","38.4513402"],["-107.3208131","38.4513669"],["-107.323735","38.4515926"],["-107.3244702","38.4516238"],["-107.3252308","38.4516034"],["-107.3344211","38.4508679"],["-107.3363047","38.450695"],["-107.3367444","38.4505975"],["-107.3371471","38.4504607"],["-107.3375687","38.4502395"],["-107.3382095","38.4497709"],["-107.3396534","38.4486466"],["-107.3400774","38.4482616"],["-107.3403232","38.4479708"],["-107.3405766","38.4475707"],["-107.341177","38.4464735"],["-107.3416522","38.4455977"],["-107.3419175","38.4450619"],["-107.3420194","38.4447071"],["-107.3420506","38.4443286"],["-107.3420162","38.4439776"],["-107.3419273","38.4436102"],["-107.3417498","38.4432723"],["-107.3415329","38.4429617"],["-107.3411344","38.4425685"],["-107.340777","38.4422007"],["-107.3405407","38.4419062"],["-107.3403903","38.4416369"],["-107.3402646","38.4412935"],["-107.3402187","38.4409869"],["-107.3402408","38.4407054"],["-107.3403293","38.4403736"],["-107.3404409","38.4401138"],["-107.3406179","38.4398278"],["-107.3408639","38.4395796"],["-107.3411285","38.4393828"],["-107.3414773","38.439177"],["-107.3418069","38.4390452"],["-107.3422586","38.4389282"],["-107.3426914","38.4388865"],["-107.3431107","38.4388966"],["-107.3435171","38.4389545"],["-107.344003","38.4391043"],["-107.3449237","38.4394802"],["-107.3477534","38.4406771"],["-107.3484128","38.4409099"],["-107.3489764","38.4410358"],["-107.349611","38.4410968"],["-107.3502298","38.4411268"],["-107.3507263","38.4410877"],["-107.3513473","38.4409863"],["-107.3529665","38.4406722"],["-107.3536436","38.4406049"],["-107.3542406","38.4405749"],["-107.3549807","38.4406109"],["-107.3558829","38.4407404"],["-107.3571596","38.4409579"],["-107.3583425","38.4411332"],["-107.3594138","38.4412086"],["-107.3627617","38.4409869"],["-107.3950334","38.4379691"],["-107.3960109","38.4378082"],["-107.3966462","38.4376125"],["-107.3973057","38.4373107"],["-107.3977899","38.4370297"],["-107.3982762","38.4366563"],["-107.3988511","38.4361126"],["-107.3993341","38.4356369"],["-107.399539","38.435352"],["-107.3996481","38.435132"],["-107.3997356","38.4349305"],["-107.3997985","38.4347025"],["-107.3998318","38.4344661"],["-107.3998318","38.4342467"],["-107.3998002","38.4340255"],["-107.3997583","38.4338141"],["-107.3996883","38.433607"],["-107.3995935","38.4334078"],["-107.3992541","38.4328218"],["-107.3988074","38.4320737"],["-107.3984158","38.4314169"],["-107.398341","38.4312507"],["-107.3982889","38.4311092"],["-107.3982598","38.4309754"],["-107.3982294","38.4307463"],["-107.3982254","38.4304853"],["-107.3982694","38.4302342"],["-107.3983454","38.4299996"],["-107.3984135","38.4298598"],["-107.3985566","38.4296338"],["-107.3986609","38.429506"],["-107.398782","38.4293855"],["-107.3989474","38.4292436"],["-107.3992974","38.4289966"],["-107.4001769","38.4284201"],["-107.4006925","38.4280077"],["-107.400967","38.427686"],["-107.4012218","38.427314"],["-107.4014882","38.4268946"],["-107.4016527","38.4264392"],["-107.4018053","38.4255621"],["-107.4019686","38.424979"],["-107.4022243","38.4244558"],["-107.4023442","38.424157"],["-107.4024221","38.4238486"],["-107.4024003","38.4234839"],["-107.4022628","38.4230114"],["-107.4019903","38.4226095"],["-107.4015811","38.4222303"],["-107.4008566","38.4216597"],["-107.4003541","38.4213107"],["-107.3998333","38.4210245"],["-107.3983055","38.4203575"],["-107.3976376","38.4200358"],["-107.3974071","38.4197532"],["-107.3973551","38.41958"],["-107.3973639","38.4194166"],["-107.3974033","38.4192338"],["-107.3975199","38.4190606"],["-107.3977406","38.4188967"],["-107.3980395","38.4188075"],["-107.39834","38.4188034"],["-107.3985461","38.4188358"],["-107.3990198","38.4190395"],["-107.3998913","38.4195214"],["-107.4004979","38.4196665"],["-107.401116","38.4196616"],["-107.4016535","38.4195492"],["-107.4020681","38.4193412"],["-107.4025221","38.4189295"],["-107.4040217","38.4173359"],["-107.4045417","38.4169335"],["-107.4052191","38.4165978"],["-107.405522","38.4162859"],["-107.4059707","38.4154606"],["-107.406607","38.4147263"],["-107.4071251","38.4142057"],["-107.4073573","38.4138813"],["-107.4073907","38.4136196"],["-107.4071765","38.4132073"],["-107.4068783","38.412874"],["-107.4058543","38.4121494"],["-107.4055335","38.4117512"],["-107.4054561","38.4114075"],["-107.4056234","38.410792"],["-107.4059034","38.4100788"],["-107.4061502","38.4093447"],["-107.4068028","38.4082858"],["-107.4077214","38.4055192"],["-107.4079052","38.4050351"],["-107.4081856","38.4046359"],["-107.4083806","38.4044357"],["-107.4090176","38.4039693"],["-107.4099985","38.4033367"],["-107.4108571","38.4028026"],["-107.4117447","38.4023895"],["-107.4120658","38.4021165"],["-107.4121896","38.4017948"],["-107.4123532","38.4012561"],["-107.4126639","38.4000411"],["-107.4130717","38.3988569"],["-107.4136221","38.3973499"],["-107.4138979","38.3961905"],["-107.4142434","38.3945523"],["-107.4144309","38.3937418"],["-107.4145736","38.3934223"],["-107.4147871","38.3931799"],["-107.4152255","38.392926"],["-107.4160734","38.3924837"],["-107.4164179","38.3922762"],["-107.4166555","38.3921276"],["-107.4169284","38.3919099"],["-107.4172047","38.3916513"],["-107.4176687","38.391142"],["-107.4181345","38.3906777"],["-107.4186442","38.390228"],["-107.4191869","38.3898387"],["-107.4197494","38.3895659"],["-107.4203344","38.3893191"],["-107.4213672","38.3889622"],["-107.4218827","38.3887615"],["-107.4222887","38.388544"],["-107.4226782","38.388308"],["-107.4230981","38.3880293"],["-107.4239876","38.3871639"],["-107.4252459","38.3859241"],["-107.4258423","38.3854703"],["-107.4271761","38.3846599"],["-107.4277506","38.3844371"],["-107.4281737","38.3843491"],["-107.4286189","38.3842935"],["-107.4290655","38.3843039"],["-107.429481","38.3843893"],["-107.4300613","38.3846171"],["-107.4309719","38.3852184"],["-107.4314668","38.3854624"],["-107.4320533","38.3856212"],["-107.43277","38.3857984"],["-107.4332749","38.3859882"],["-107.4335843","38.3862096"],["-107.4339939","38.3866157"],["-107.4344263","38.3870645"],["-107.4348854","38.3874832"],["-107.4355239","38.3878787"],["-107.4371439","38.3887754"],["-107.4379789","38.3892619"],["-107.4386024","38.3898292"],["-107.4389486","38.3900983"],["-107.4393798","38.3902653"],["-107.4399546","38.390376"],["-107.4406001","38.3904728"],["-107.4412433","38.3905671"],["-107.4419448","38.3907528"],["-107.4430047","38.3911623"],["-107.4437158","38.3915111"],["-107.4441038","38.3917945"],["-107.4443206","38.3920265"],["-107.444482","38.3922771"],["-107.4446222","38.3925545"],["-107.4447852","38.3928999"],["-107.4450286","38.3932069"],["-107.4452031","38.393378"],["-107.4453718","38.3935206"],["-107.4456519","38.3937216"],["-107.4462187","38.393981"],["-107.4464738","38.3941108"],["-107.4467101","38.3942619"],["-107.4469465","38.3944323"],["-107.4472769","38.3947702"],["-107.4475766","38.3950874"],["-107.4477139","38.3952239"],["-107.4478574","38.3953263"],["-107.4481399","38.3954913"],["-107.4483954","38.3956042"],["-107.4487365","38.3957129"],["-107.4495116","38.395874"],["-107.4501003","38.3960359"],["-107.451798","38.3967706"],["-107.4522248","38.3968754"],["-107.4524945","38.3968948"],["-107.4527115","38.396888"],["-107.4529566","38.3968631"],["-107.4531592","38.396824"],["-107.4533188","38.3967769"],["-107.4534672","38.3967341"],["-107.4536286","38.3966803"],["-107.4537721","38.3966139"],["-107.4539112","38.3965327"],["-107.4540363","38.396442"],["-107.454161","38.396332"],["-107.4542634","38.3962063"],["-107.4543467","38.3960844"],["-107.4544076","38.3959663"],["-107.4544601","38.3958281"],["-107.4544918","38.3956975"],["-107.4545047","38.3955693"],["-107.4544978","38.3954327"],["-107.4544806","38.3952895"],["-107.4544312","38.3950649"],["-107.4543653","38.3947975"],["-107.4543302","38.3946144"],["-107.4543412","38.3943388"],["-107.4544183","38.3940275"],["-107.4545434","38.3937675"],["-107.4546341","38.393639"],["-107.4547397","38.3935232"],["-107.4549648","38.3933412"],["-107.4552621","38.3931672"],["-107.4554357","38.3930894"],["-107.4556362","38.3930241"],["-107.4559631","38.3929483"],["-107.4563269","38.392915"],["-107.4565208","38.3929208"],["-107.456675","38.392937"],["-107.4568577","38.3929696"],["-107.4571174","38.3930357"],["-107.4572876","38.3930958"],["-107.4574556","38.3931736"],["-107.4576211","38.3932683"],["-107.4580415","38.3935507"],["-107.4600045","38.3949688"],["-107.4607017","38.3954236"],["-107.4611756","38.3956479"],["-107.4617039","38.3958095"],["-107.4623006","38.3959049"],["-107.4638032","38.3958636"],["-107.467275","38.3957039"],["-107.4684023","38.3955759"],["-107.4689834","38.3953639"],["-107.4695491","38.3950624"],["-107.470346","38.3945514"],["-107.4708423","38.3943247"],["-107.4714976","38.3941595"],["-107.4728169","38.3939989"],["-107.4735","38.393934"],["-107.4740619","38.393977"],["-107.4745619","38.3940979"],["-107.4750328","38.3943099"],["-107.4754892","38.3946022"],["-107.4769549","38.3956813"],["-107.4774678","38.3959818"],["-107.4779711","38.3961591"],["-107.4785307","38.3962485"],["-107.4790611","38.3962427"],["-107.4796172","38.3961492"],["-107.4801628","38.3959454"],["-107.4806107","38.395664"],["-107.4809685","38.3953095"],["-107.4812468","38.3949088"],["-107.4815935","38.3939805"],["-107.4818389","38.3933704"],["-107.4821403","38.3929248"],["-107.4824681","38.3926247"],["-107.4829957","38.3923145"],["-107.4834617","38.3921502"],["-107.4840599","38.39205"],["-107.4847248","38.3920647"],["-107.4852281","38.3921649"],["-107.4857018","38.3923321"],["-107.4864575","38.3927916"],["-107.4872349","38.393293"],["-107.4880564","38.3938157"],["-107.4891263","38.3943838"],["-107.4927208","38.3961401"],["-107.4938929","38.3964733"],["-107.4964545","38.3971288"],["-107.4976394","38.3974596"],["-107.4982815","38.3977344"],["-107.506076","38.40164"],["-107.5092946","38.4031845"],["-107.5108651","38.4038729"],["-107.5118722","38.4043128"],["-107.5124812","38.4046365"],["-107.5159993","38.4069729"],["-107.5166037","38.4075206"],["-107.5179987","38.4090121"],["-107.5186636","38.4097187"],["-107.5191332","38.4101227"],["-107.5210181","38.4114466"],["-107.5215077","38.4117232"],["-107.5222753","38.4120174"],["-107.5243672","38.4126841"],["-107.5251326","38.412972"],["-107.5255956","38.4132245"],["-107.5262704","38.4137451"],["-107.5269155","38.4145901"],["-107.5290693","38.4177341"],["-107.5305266","38.4198047"],["-107.5309883","38.4203625"],["-107.5316112","38.4209791"],["-107.5327602","38.4220637"],["-107.5331373","38.4225221"],["-107.533355","38.4229185"],["-107.5335365","38.4234145"],["-107.5337653","38.4243313"],["-107.5339494","38.4248603"],["-107.5341687","38.4252519"],["-107.5347711","38.4260035"],["-107.5371345","38.4288316"],["-107.5374917","38.4292433"],["-107.5379084","38.4296641"],["-107.5390675","38.4307267"],["-107.5404187","38.4318837"],["-107.5440865","38.4348817"],["-107.5456942","38.4361654"],["-107.5462893","38.4365526"],["-107.5468532","38.4367835"],["-107.5484842","38.4372548"],["-107.5493156","38.4375278"],["-107.5525109","38.4389544"],["-107.5532003","38.4393272"],["-107.5536224","38.4396016"],["-107.5539949","38.4399076"],["-107.5546564","38.4405525"],["-107.5550757","38.4410439"],["-107.5556056","38.4416547"],["-107.5559713","38.4419599"],["-107.556334","38.4421962"],["-107.5567262","38.4424064"],["-107.557039","38.4425367"],["-107.5573387","38.4426384"],["-107.5576471","38.4427078"],["-107.5579489","38.4427606"],["-107.5582172","38.4427894"],["-107.5585179","38.4428083"],["-107.5589392","38.4427896"],["-107.5607253","38.4426074"],["-107.5617312","38.4424091"],["-107.5653219","38.4414134"],["-107.5666771","38.4410988"],["-107.5675211","38.4409538"],["-107.5683376","38.4408792"],["-107.5691161","38.4408355"],["-107.569963","38.4408181"],["-107.5707892","38.4408682"],["-107.5716184","38.4409458"],["-107.5740247","38.4413282"],["-107.5800266","38.4423249"],["-107.5808503","38.4423668"],["-107.5813922","38.4422815"],["-107.5820244","38.4421108"],["-107.5825744","38.4418625"],["-107.5829794","38.4415852"],["-107.5837038","38.4408306"],["-107.5848405","38.4395822"],["-107.5855615","38.4388381"],["-107.5861311","38.4385104"],["-107.5868012","38.4382383"],["-107.5877591","38.4381035"],["-107.5915695","38.4379379"],["-107.5921664","38.4379708"],["-107.5927236","38.4380306"],["-107.5932666","38.4381315"],["-107.5952783","38.4387813"],["-107.6017514","38.4409366"],["-107.6027125","38.4412262"],["-107.60856","38.4426742"],["-107.6119306","38.4434911"],["-107.6123093","38.4435425"],["-107.6126817","38.4435596"],["-107.6131677","38.4435438"],["-107.6136865","38.4434514"],["-107.6142622","38.4432513"],["-107.6154741","38.4427127"],["-107.6160443","38.4425366"],["-107.6165937","38.4424582"],["-107.6169876","38.4424618"],["-107.6174063","38.4425276"],["-107.6179016","38.4426743"],["-107.6183257","38.4428906"],["-107.6186727","38.4431116"],["-107.6189092","38.4433403"],["-107.6190964","38.4435967"],["-107.6192491","38.443885"],["-107.619369","38.4442556"],["-107.6195191","38.4449613"],["-107.6196258","38.4453294"],["-107.6197477","38.4455951"],["-107.6198986","38.4458702"],["-107.6201135","38.4461175"],["-107.6203911","38.4463518"],["-107.6207161","38.4465452"],["-107.6210803","38.4467115"],["-107.6215227","38.4468476"],["-107.6220265","38.4469048"],["-107.6225376","38.4468804"],["-107.623035","38.4467962"],["-107.6235117","38.4466345"],["-107.6238912","38.4464367"],["-107.6246876","38.4459412"],["-107.6266167","38.4447545"],["-107.6275952","38.4442197"],["-107.6284806","38.4438302"],["-107.6301464","38.4433236"],["-107.6331176","38.4425214"],["-107.6340694","38.4422935"],["-107.6345976","38.4422503"],["-107.635211","38.4422552"],["-107.635755","38.4423124"],["-107.6363163","38.4424414"],["-107.6368735","38.442632"],["-107.6375159","38.4429616"],["-107.6381366","38.443415"],["-107.6411971","38.4459586"],["-107.6416932","38.4463402"],["-107.6420071","38.4465386"],["-107.6422783","38.4466796"],["-107.6425597","38.4467911"],["-107.6434326","38.447107"],["-107.6438716","38.4473142"],["-107.64424","38.447573"],["-107.6445539","38.4478637"],["-107.6448222","38.4482394"],["-107.6452398","38.4489934"],["-107.645497","38.4493553"],["-107.645748","38.4496193"],["-107.6460411","38.4498413"],["-107.6463349","38.4499948"],["-107.646652","38.4501389"],["-107.6470003","38.4502324"],["-107.6478718","38.4503625"],["-107.6509898","38.4507046"],["-107.65209","38.4508495"],["-107.6526142","38.4510039"],["-107.6530811","38.4512306"],["-107.6536664","38.4515931"],["-107.6540908","38.4518531"],["-107.654368","38.4519706"],["-107.6546582","38.452077"],["-107.6549807","38.4521569"],["-107.6552445","38.4522005"],["-107.6555369","38.4522201"],["-107.6558496","38.4522207"],["-107.6562635","38.452171"],["-107.6568991","38.4520176"],["-107.658197","38.4516586"],["-107.6586737","38.4515731"],["-107.6590709","38.451557"],["-107.6594246","38.4515813"],["-107.659784","38.451634"],["-107.6600714","38.4517056"],["-107.6603808","38.4518131"],["-107.6606734","38.4519456"],["-107.6608989","38.4520841"],["-107.661167","38.4522797"],["-107.6614936","38.4526071"],["-107.6636389","38.4554756"],["-107.6642111","38.4560527"],["-107.6648882","38.4565643"],["-107.6657206","38.4570356"],["-107.6678781","38.4581143"],["-107.6689603","38.4586285"],["-107.6695083","38.4588084"],["-107.6699777","38.4588868"],["-107.6702999","38.4589049"],["-107.670675","38.4588905"],["-107.6714534","38.4587559"],["-107.6733033","38.4583574"],["-107.6739718","38.4582703"],["-107.6745995","38.4582763"],["-107.6750823","38.4583263"],["-107.6756234","38.458447"],["-107.6761395","38.4586267"],["-107.6765659","38.4588638"],["-107.6770614","38.45921"],["-107.6773741","38.4594652"],["-107.6777569","38.4597152"],["-107.678184","38.4599625"],["-107.6789975","38.460384"],["-107.6795769","38.4606396"],["-107.6803827","38.4609586"],["-107.6815421","38.4614933"],["-107.6822368","38.4618035"],["-107.6826994","38.4619303"],["-107.6832397","38.4620161"],["-107.6844873","38.4621851"],["-107.6849612","38.4623195"],["-107.6854652","38.4625383"],["-107.6866238","38.4631177"],["-107.6884746","38.4640708"],["-107.6891531","38.464485"],["-107.689656","38.4648699"],["-107.6911454","38.4663497"],["-107.6916737","38.4667929"],["-107.6921272","38.4671064"],["-107.6936063","38.4678821"],["-107.6982261","38.4702615"],["-107.7054713","38.4743759"],["-107.7264765","38.4862734"],["-107.7278747","38.4870504"],["-107.7284442","38.4873229"],["-107.7290883","38.4875941"],["-107.7298753","38.487859"],["-107.7306931","38.4881117"],["-107.7314452","38.4883098"],["-107.7320181","38.4884243"],["-107.7332769","38.4885914"],["-107.7340178","38.4886494"],["-107.7350448","38.4886779"],["-107.754051","38.4877036"],["-107.7554155","38.4876601"],["-107.7561642","38.4876962"],["-107.7648485","38.4884838"],["-107.7666407","38.4885745"],["-107.7978731","38.4890813"],["-107.7987493","38.4890684"],["-107.7994436","38.4890427"],["-107.8004603","38.4889657"],["-107.8013458","38.4888526"],["-107.8029254","38.4886561"],["-107.8035184","38.4886106"],["-107.8045691","38.4885723"],["-107.8472958","38.4887984"],["-107.8548471","38.4883548"],["-107.8551988","38.488333"],["-107.8553911","38.4883603"],["-107.8556069","38.4883621"],["-107.8571403","38.4882521"],["-107.8571391","38.488128"],["-107.8571364","38.4879153"],["-107.8571397","38.4846094"],["-107.8571265","38.482802"],["-107.8571191","38.4826343"],["-107.8571035","38.4825275"],["-107.8570766","38.4824311"],["-107.8570411","38.4823454"],["-107.8570007","38.4822655"],["-107.8569515","38.4821765"],["-107.8569427","38.4821292"],["-107.8569191","38.4820354"],["-107.8569087","38.4819561"],["-107.8569096","38.4819082"],["-107.8569431","38.4818607"],["-107.8569573","38.4818137"],["-107.8569587","38.4817629"],["-107.8569379","38.4817085"],["-107.8569108","38.481677"],["-107.8568576","38.4816424"],["-107.8567891","38.4815529"],["-107.8567314","38.4814609"],["-107.8566895","38.4814179"],["-107.8566636","38.4813113"],["-107.8566506","38.4812262"],["-107.8566439","38.4811114"],["-107.8566407","38.4805754"],["-107.8566359","38.4789188"],["-107.8566332","38.4781562"],["-107.8565977","38.4747187"],["-107.8566069","38.4746343"],["-107.8566204","38.4746191"],["-107.8566392","38.4746051"],["-107.8566585","38.474593"],["-107.8566678","38.474588"],["-107.8566712","38.4745859"],["-107.8566748","38.4745839"],["-107.8566782","38.474581"],["-107.8566809","38.474579"],["-107.8566838","38.4745762"],["-107.8566869","38.474574"],["-107.856695","38.4745662"],["-107.8567065","38.4745557"],["-107.856725","38.4745412"],["-107.8567461","38.4745292"],["-107.8567782","38.4745191"],["-107.8576081","38.4744883"],["-107.8601103","38.4744919"],["-107.8603395","38.4744723"],["-107.8604837","38.4744001"],["-107.8608192","38.4741789"],["-107.8630293","38.4726484"],["-107.8633482","38.4724133"],["-107.8638865","38.4720437"],["-107.8642774","38.4717724"],["-107.8643649","38.4717107"],["-107.8660446","38.4705692"],["-107.8664079","38.4703241"],["-107.8668975","38.4699928"],["-107.8670216","38.4699081"],["-107.8674036","38.4696502"],["-107.8674661","38.4696147"],["-107.8675669","38.4695678"],["-107.8675066","38.4695031"],["-107.8674631","38.4694578"],["-107.8673018","38.4693052"],["-107.8671062","38.4691278"],["-107.8669399","38.468945"],["-107.8668141","38.4687967"],["-107.8667256","38.4686716"],["-107.8666164","38.468485"],["-107.8664686","38.4681161"],["-107.866411","38.4679369"],["-107.8663771","38.4677814"],["-107.866372","38.4675817"],["-107.8663694","38.4674179"],["-107.8663832","38.4655602"],["-107.8663711","38.4621026"],["-107.8663229","38.452887"],["-107.8663264","38.4518243"],["-107.866352","38.450766"],["-107.8664155","38.4490805"],["-107.866875","38.4429983"],["-107.8669088","38.4421656"],["-107.8669063","38.4409833"],["-107.8668394","38.4396889"],["-107.8667003","38.4376543"],["-107.8666654","38.4374061"],["-107.8665426","38.4359623"],["-107.8664135","38.434252"],["-107.8663607","38.4337359"],["-107.8662518","38.4332876"],["-107.8661204","38.4329615"],["-107.8658945","38.4325464"],["-107.8656533","38.4321864"],["-107.8654346","38.4320279"],["-107.8650661","38.4315384"],["-107.8644884","38.4308202"],["-107.863032","38.4291094"],["-107.8619462","38.427832"],["-107.8481426","38.4118963"],["-107.8408575","38.4035181"],["-107.8383307","38.4006271"],["-107.8378452","38.4000697"],["-107.8357903","38.3976638"],["-107.8138425","38.3723089"],["-107.8119268","38.3700961"],["-107.809","38.3667713"],["-107.8079817","38.3655581"],["-107.8052556","38.3624107"],["-107.8038331","38.3607442"],["-107.8029829","38.3597471"],["-107.794094","38.3495726"],["-107.7902058","38.3449529"],["-107.7894515","38.3438469"],["-107.7890802","38.3432324"],["-107.7883566","38.3417197"],["-107.7873102","38.3396513"],["-107.7849954","38.335281"],["-107.7844092","38.334156"],["-107.7839307","38.3333485"],["-107.7808434","38.3288703"],["-107.7800072","38.3276892"],["-107.7789744","38.3261528"],["-107.7768647","38.3231034"],["-107.7763062","38.3221651"],["-107.7758186","38.3211921"],["-107.7754863","38.3202315"],["-107.7751619","38.3180367"],["-107.7744073","38.3112494"],["-107.7741921","38.3104685"],["-107.7739037","38.3095813"],["-107.773195","38.3076971"],["-107.7730846","38.3070493"],["-107.7730439","38.3063961"],["-107.773442","38.3017283"],["-107.7734258","38.3008851"],["-107.7732184","38.299884"],["-107.7729292","38.298331"],["-107.7727657","38.2976278"],["-107.7722933","38.2963641"],["-107.7706154","38.2921239"],["-107.7702789","38.2914666"],["-107.7699525","38.2909638"],["-107.769226","38.2902444"],["-107.7667394","38.2881107"],["-107.7658284","38.2869942"],["-107.7652597","38.2860115"],["-107.7649519","38.2852375"],["-107.7647475","38.2843973"],["-107.764649","38.2836355"],["-107.7647018","38.2825483"],["-107.7652516","38.2786412"],["-107.7654663","38.2776862"],["-107.7661051","38.2763517"],["-107.766368","38.2757022"],["-107.7664516","38.275277"],["-107.7664734","38.274685"],["-107.7663986","38.2741706"],["-107.7662362","38.2736702"],["-107.7659797","38.2731804"],["-107.7655755","38.2725079"],["-107.7641582","38.2701448"],["-107.7636708","38.269412"],["-107.7629201","38.2685948"],["-107.7619304","38.2676254"],["-107.7607338","38.2664547"],["-107.7600146","38.2657435"],["-107.7594474","38.2650558"],["-107.7580536","38.2632318"],["-107.7575567","38.2625386"],["-107.757256","38.2619737"],["-107.7570432","38.261446"],["-107.7568975","38.2608168"],["-107.7568606","38.2602796"],["-107.7568971","38.259695"],["-107.7570765","38.2585081"],["-107.7582668","38.2517966"],["-107.7585598","38.2504827"],["-107.7590866","38.2486522"],["-107.7592435","38.2478753"],["-107.7592524","38.2473659"],["-107.7591697","38.246859"],["-107.759061","38.2464848"],["-107.7588564","38.2461212"],["-107.7585696","38.2457496"],["-107.7583295","38.2455062"],["-107.7579676","38.2452143"],["-107.7575812","38.2449903"],["-107.7571764","38.2447947"],["-107.7567594","38.2446578"],["-107.7562716","38.2445351"],["-107.7512671","38.2439187"],["-107.7502151","38.2437249"],["-107.7492075","38.243478"],["-107.7483743","38.2432195"],["-107.747527","38.242892"],["-107.7456055","38.242032"],["-107.7413189","38.2400197"],["-107.7405992","38.2396257"],["-107.7399088","38.2391702"],["-107.7392504","38.2386455"],["-107.7384616","38.2378738"],["-107.7372043","38.236491"],["-107.7363235","38.2354797"],["-107.7356999","38.2349017"],["-107.7348108","38.2341897"],["-107.7336488","38.2334814"],["-107.7326158","38.232875"],["-107.7316832","38.2323349"],["-107.7310642","38.2318611"],["-107.7304953","38.2313651"],["-107.7300805","38.2309276"],["-107.7297551","38.2303802"],["-107.7292333","38.2294165"],["-107.7272639","38.2257688"],["-107.7268547","38.2248924"],["-107.7267407","38.2243456"],["-107.7267403","38.2238693"],["-107.7268353","38.2235408"],["-107.7269154","38.2233207"],["-107.7271534","38.2228039"],["-107.7277361","38.2218006"],["-107.7280283","38.2212541"],["-107.7281466","38.2208251"],["-107.728172","38.2203822"],["-107.7281743","38.2199401"],["-107.7275463","38.2164915"],["-107.7270726","38.2133737"],["-107.7270296","38.212672"],["-107.7270773","38.2121753"],["-107.7272201","38.2116988"],["-107.7274217","38.2112388"],["-107.7277614","38.2106719"],["-107.7282778","38.2100966"],["-107.7290345","38.2093165"],["-107.7315525","38.2068097"],["-107.7321527","38.2061101"],["-107.7326479","38.2052956"],["-107.7343543","38.2016521"],["-107.7349384","38.2005423"],["-107.7354016","38.1999746"],["-107.7359552","38.1994403"],["-107.7369793","38.198744"],["-107.738093","38.198209"],["-107.7392421","38.197693"],["-107.7404889","38.1971354"],["-107.7412157","38.1967348"],["-107.7416799","38.1963631"],["-107.7421266","38.195935"],["-107.7429081","38.1949933"],["-107.7436997","38.1939227"],["-107.7444407","38.192798"],["-107.7449074","38.1917366"],["-107.7455083","38.1900915"],["-107.7460796","38.1883764"],["-107.746469","38.1871529"],["-107.7464984","38.1868192"],["-107.7465114","38.1865425"],["-107.7464777","38.1862045"],["-107.7463211","38.1855547"],["-107.7461385","38.1851799"],["-107.7457158","38.1846714"],["-107.7450819","38.1840561"],["-107.7445324","38.1833895"],["-107.7442719","38.1829098"],["-107.7441208","38.1824772"],["-107.7440389","38.182034"],["-107.7439717","38.1813772"],["-107.7439147","38.1807993"],["-107.7438476","38.1802951"],["-107.7437197","38.179876"],["-107.7435524","38.1795175"],["-107.7432659","38.1789766"],["-107.7429163","38.1783188"],["-107.7424597","38.1774079"],["-107.7421812","38.1765894"],["-107.7420151","38.1757805"],["-107.741956","38.1751298"],["-107.7419549","38.1745202"],["-107.7420608","38.1738383"],["-107.7422075","38.1731469"],["-107.742404","38.1724962"],["-107.7454594","38.1666075"],["-107.7470021","38.1636173"],["-107.7474496","38.1629868"],["-107.7477314","38.1626291"],["-107.7480407","38.1623085"],["-107.7484679","38.1619065"],["-107.7493424","38.1612409"],["-107.7515062","38.159874"],["-107.7518565","38.1595817"],["-107.7521353","38.1592999"],["-107.7523802","38.1589682"],["-107.7526217","38.1584993"],["-107.7528033","38.1579934"],["-107.7528626","38.1576979"],["-107.7528777","38.157449"],["-107.7528761","38.1571915"],["-107.7528393","38.1568906"],["-107.7527806","38.1566204"],["-107.7526847","38.1563071"],["-107.7525149","38.1559389"],["-107.7522506","38.1555445"],["-107.7517994","38.1549906"],["-107.7511409","38.154284"],["-107.7502586","38.1533841"],["-107.7490913","38.1522467"],["-107.7490258","38.1520792"],["-107.7489705","38.1519725"],["-107.7488778","38.1518492"],["-107.7488561","38.151781"],["-107.7488689","38.1517343"],["-107.7489098","38.1516901"],["-107.7492307","38.1515361"],["-107.7497229","38.1514684"],["-107.7501814","38.1514289"],["-107.750899","38.1514123"],["-107.7517829","38.1514034"],["-107.7546661","38.1514176"],["-107.7549689","38.1514123"],["-107.7563483","38.1514243"],["-107.7569634","38.1514126"],["-107.7608021","38.1514289"],["-107.7614221","38.1514082"],["-107.7620824","38.1513676"],["-107.7632884","38.1512557"],["-107.7636815","38.1512253"],["-107.7639643","38.1512465"],["-107.7642618","38.1513048"],["-107.7645253","38.1513925"],["-107.7648178","38.1515138"],["-107.7650856","38.1516687"],["-107.7655123","38.1520502"],["-107.766373","38.1529215"],["-107.7668615","38.1533535"],["-107.7673134","38.1537484"],["-107.7678198","38.154222"],["-107.7681432","38.1546631"],["-107.7684459","38.1551677"],["-107.7686362","38.1557913"],["-107.7689307","38.1564334"],["-107.769188","38.1567414"],["-107.7702944","38.1575605"],["-107.7709236","38.1579963"],["-107.7715849","38.1584366"],["-107.7723816","38.1588377"],["-107.7728991","38.15901"],["-107.7735241","38.1591169"],["-107.7739445","38.1591525"],["-107.7783785","38.1592064"],["-107.7815501","38.1591845"],["-107.7866557","38.1591962"],["-107.787461","38.1591906"],["-107.7889552","38.159206"],["-107.7905409","38.159255"],["-107.7923957","38.1593841"],["-107.8024277","38.1591664"],["-107.8030465","38.1590751"],["-107.8041995","38.1587567"],["-107.8051176","38.1583667"],["-107.8059437","38.157896"],["-107.8068316","38.1571351"],["-107.8077117","38.1560448"],["-107.807999","38.1553877"],["-107.8089166","38.1528246"],["-107.8091726","38.151997"],["-107.8092941","38.1513874"],["-107.8093595","38.150873"],["-107.8094577","38.1504511"],["-107.8095502","38.1501123"],["-107.8098838","38.1492844"],["-107.8107403","38.1473999"],["-107.8113247","38.1462788"],["-107.8125838","38.144303"],["-107.8133559","38.1430994"],["-107.8140335","38.1420421"],["-107.8143278","38.1416222"],["-107.8147584","38.1410514"],["-107.8152363","38.1404727"],["-107.8156023","38.1400956"],["-107.816175","38.1396116"],["-107.8165726","38.139355"],["-107.8206136","38.1369833"],["-107.8217122","38.1362729"],["-107.8222849","38.1357987"],["-107.8226862","38.1353808"],["-107.823208","38.1348556"],["-107.8265774","38.1315235"],["-107.8269451","38.1310454"],["-107.827188","38.1306813"],["-107.8274476","38.130239"],["-107.8277104","38.1297785"],["-107.8280749","38.1293126"],["-107.8284282","38.1290296"],["-107.8295298","38.1282528"],["-107.8308795","38.1273073"],["-107.831654","38.1266588"],["-107.8322632","38.1259028"],["-107.8326847","38.1253554"],["-107.8332378","38.1246732"],["-107.8339742","38.1237242"],["-107.8343716","38.1233339"],["-107.8347914","38.1230142"],["-107.835314","38.1226915"],["-107.8362956","38.1222473"],["-107.8367632","38.1220844"],["-107.8373598","38.1219505"],["-107.8377945","38.1218805"],["-107.8384245","38.121848"],["-107.8405343","38.1218699"],["-107.8410736","38.1218548"],["-107.8415264","38.1218058"],["-107.84197","38.1217181"],["-107.8423264","38.1216402"],["-107.8432653","38.1213229"],["-107.8491547","38.1192156"],["-107.8500678","38.1188052"],["-107.8533651","38.1170496"],["-107.8542017","38.1166361"],["-107.8544703","38.116527"],["-107.8547043","38.1164529"],["-107.8551171","38.1163682"],["-107.8554538","38.1163163"],["-107.8556883","38.1163027"],["-107.8562095","38.1163072"],["-107.856492","38.1163276"],["-107.8568248","38.1163696"],["-107.8571453","38.1164348"],["-107.8575134","38.1165465"],["-107.8578814","38.1166692"],["-107.8582914","38.1168189"],["-107.8586236","38.1169411"],["-107.8601332","38.1174898"],["-107.8605435","38.1176405"],["-107.861071","38.117831"],["-107.8621","38.1181951"],["-107.862648","38.1183787"],["-107.8631848","38.1185138"],["-107.8636201","38.1185683"],["-107.8639541","38.1185608"],["-107.8642963","38.118541"],["-107.8649064","38.1184153"],["-107.8651977","38.1183265"],["-107.8654236","38.1182333"],["-107.8656036","38.1181286"],["-107.8658481","38.1179754"],["-107.8660597","38.1178068"],["-107.8663428","38.1175433"],["-107.8665244","38.1173047"],["-107.8666531","38.1170853"],["-107.8667598","38.1168527"],["-107.8668513","38.1165958"],["-107.8669102","38.1162865"],["-107.8669137","38.1160259"],["-107.8668499","38.115648"],["-107.8667065","38.1152609"],["-107.8665577","38.1149898"],["-107.8662434","38.1146007"],["-107.8660606","38.1144051"],["-107.8658666","38.1142164"],["-107.865645","38.1140011"],["-107.8654731","38.11382"],["-107.8652844","38.1136457"],["-107.8651699","38.1135212"],["-107.8649828","38.1133398"],["-107.8646193","38.1129652"],["-107.8643996","38.1126854"],["-107.864295","38.1125082"],["-107.864202","38.1123419"],["-107.8641013","38.112112"],["-107.8640478","38.1119136"],["-107.8640162","38.1116861"],["-107.8639975","38.1113139"],["-107.8640269","38.1111328"],["-107.8640878","38.110869"],["-107.8641524","38.1106813"],["-107.8642285","38.1104893"],["-107.8644709","38.1100936"],["-107.8650071","38.1093489"],["-107.8651857","38.1091173"],["-107.8653707","38.1088644"],["-107.865586","38.1085689"],["-107.8658099","38.1082634"],["-107.8660105","38.1079856"],["-107.866201","38.1077348"],["-107.8665407","38.107271"],["-107.8667968","38.1069147"],["-107.8669827","38.106655"],["-107.8688428","38.1041321"],["-107.8692079","38.1036211"],["-107.8694394","38.103229"],["-107.8704644","38.1010858"],["-107.8706038","38.1008414"],["-107.8707867","38.1005916"],["-107.8709755","38.1003501"],["-107.8711499","38.1001904"],["-107.8714442","38.0999464"],["-107.8717179","38.0997625"],["-107.8720327","38.0995752"],["-107.872338","38.0994463"],["-107.8726144","38.0993397"],["-107.8732827","38.0991544"],["-107.8749331","38.0987469"],["-107.8757988","38.0985261"],["-107.8763053","38.098369"],["-107.8765689","38.098259"],["-107.8768774","38.0981029"],["-107.8771981","38.0978827"],["-107.8773985","38.09773"],["-107.8776151","38.0975252"],["-107.8783657","38.0966566"],["-107.8786385","38.0963412"],["-107.8791673","38.0956781"],["-107.879728","38.0950127"],["-107.880052","38.0947242"],["-107.8802821","38.0945362"],["-107.8805199","38.0943764"],["-107.880759","38.0942358"],["-107.8809718","38.0941321"],["-107.8811928","38.0940673"],["-107.8815715","38.0939946"],["-107.8819128","38.0939696"],["-107.8823653","38.0939948"],["-107.8827693","38.0940695"],["-107.8832144","38.0941623"],["-107.8844704","38.0944439"],["-107.8854126","38.0945816"],["-107.8860024","38.0946409"],["-107.8866894","38.0946967"],["-107.8884859","38.0948145"],["-107.8895278","38.0949421"],["-107.890626","38.0951986"],["-107.8915712","38.095435"],["-107.892133","38.0955803"],["-107.9000654","38.0975458"],["-107.9005008","38.0976724"],["-107.9007878","38.0977784"],["-107.9010775","38.097907"],["-107.9013292","38.0980302"],["-107.9017181","38.0982361"],["-107.902845","38.0987781"],["-107.9033036","38.0989426"],["-107.9036411","38.0990254"],["-107.9040118","38.0990854"],["-107.9048429","38.0991884"],["-107.9051999","38.0992432"],["-107.9058503","38.0993848"],["-107.906211","38.0994822"],["-107.9072605","38.0997493"],["-107.9079464","38.0998691"],["-107.9084609","38.0999338"],["-107.9092295","38.100002"],["-107.9095317","38.1000124"],["-107.9097971","38.1000168"],["-107.9101523","38.1000098"],["-107.9106289","38.0999918"],["-107.9113545","38.0999419"],["-107.9117405","38.0999242"],["-107.9122386","38.0999127"],["-107.9126192","38.0999452"],["-107.9137059","38.1000682"],["-107.9142183","38.1001541"],["-107.9153384","38.1004419"],["-107.915631","38.1005304"],["-107.9160382","38.1006408"],["-107.9165409","38.1007909"],["-107.9175802","38.1010708"],["-107.9187476","38.1013427"],["-107.9199025","38.1015718"],["-107.9202422","38.1016348"],["-107.9214871","38.1018775"],["-107.9240082","38.1023603"],["-107.9247215","38.102438"],["-107.9250644","38.1024436"],["-107.9271695","38.1024243"],["-107.927764","38.1024324"],["-107.9282268","38.1024596"],["-107.9286424","38.1025"],["-107.9290168","38.1025663"],["-107.9300058","38.1027752"],["-107.9308675","38.1029658"],["-107.931443","38.1030855"],["-107.9333121","38.1034833"],["-107.9339737","38.1036239"],["-107.9347411","38.1037981"],["-107.9351673","38.10391"],["-107.9355813","38.1040553"],["-107.9359844","38.1042447"],["-107.9362405","38.1043752"],["-107.9363878","38.1044697"],["-107.9365786","38.1045796"],["-107.9369405","38.1048267"],["-107.9371198","38.1049648"],["-107.9375059","38.1052636"],["-107.937934","38.1055801"],["-107.9382994","38.105787"],["-107.9384752","38.1058709"],["-107.9387086","38.1059575"],["-107.9389352","38.1060258"],["-107.9391809","38.1060942"],["-107.9393681","38.106136"],["-107.9398728","38.1061863"],["-107.9400951","38.1061878"],["-107.9405158","38.1061801"],["-107.9461599","38.1059951"],["-107.9464933","38.1059959"],["-107.9467355","38.106007"],["-107.9469323","38.1060221"],["-107.9471286","38.1060461"],["-107.9473545","38.1060806"],["-107.9480466","38.1062162"],["-107.9485085","38.1062921"],["-107.9488343","38.1063002"],["-107.9490886","38.1062872"],["-107.9493263","38.1062394"],["-107.9496953","38.1061441"],["-107.9500579","38.1060121"],["-107.9504214","38.1058732"],["-107.9508354","38.1056886"],["-107.9512255","38.1055337"],["-107.9515464","38.1054346"],["-107.951856","38.1053566"],["-107.9522886","38.1052834"],["-107.9531281","38.1052106"],["-107.9542179","38.1051189"],["-107.9545012","38.105096"],["-107.9547811","38.1050525"],["-107.9551326","38.104974"],["-107.9555532","38.104834"],["-107.9557336","38.1047527"],["-107.9559066","38.10467"],["-107.9561248","38.1045562"],["-107.9564725","38.1043645"],["-107.9567086","38.1042431"],["-107.9568704","38.1041546"],["-107.9570554","38.1040754"],["-107.9572585","38.1039941"],["-107.9574552","38.1039159"],["-107.9576814","38.1038268"],["-107.9579098","38.1037587"],["-107.9582221","38.103679"],["-107.9591871","38.1034739"],["-107.9593632","38.103444"],["-107.9596422","38.1033752"],["-107.9615755","38.1029644"],["-107.9618282","38.1029162"],["-107.9623873","38.1027614"],["-107.9626224","38.1026784"],["-107.9627944","38.1026091"],["-107.9630509","38.1024968"],["-107.9649189","38.10169"],["-107.9652252","38.1015465"],["-107.9662577","38.1010961"],["-107.9664869","38.1010124"],["-107.9668588","38.100859"],["-107.9672767","38.1006828"],["-107.9688516","38.1000239"],["-107.972669","38.0980528"],["-107.9734833","38.0978142"],["-107.97379","38.0977824"],["-107.9742135","38.0978055"],["-107.9746219","38.0978616"],["-107.9750154","38.097958"],["-107.9752806","38.0980623"],["-107.9756147","38.0981388"],["-107.9760627","38.09819"],["-107.9766739","38.0981754"],["-107.9801865","38.0981055"],["-107.9819124","38.0980797"],["-107.9824859","38.0980344"],["-107.9828718","38.0979679"],["-107.9831354","38.0978843"],["-107.9833744","38.0977953"],["-107.9838734","38.0975118"],["-107.9852543","38.0966912"],["-107.9859682","38.0963434"],["-107.9863778","38.0962088"],["-107.9867894","38.0961209"],["-107.9871416","38.0961013"],["-107.9876385","38.0961053"],["-107.9883411","38.0960913"],["-107.9889152","38.0960753"],["-107.989343","38.0960109"],["-107.9897875","38.0958726"],["-107.990495","38.0955887"],["-107.9909423","38.095422"],["-107.9912908","38.0952762"],["-107.9916717","38.095102"],["-107.9921903","38.0948036"],["-107.9928515","38.0942606"],["-107.9935465","38.0936859"],["-107.9961518","38.091498"],["-107.9965018","38.0912371"],["-107.9968558","38.0909821"],["-107.9972845","38.0906709"],["-107.9976868","38.0903719"],["-107.9981639","38.0900521"],["-107.9986107","38.0898244"],["-107.9990822","38.0896786"],["-108.0000585","38.0894787"],["-108.0003648","38.0893956"],["-108.0006336","38.0892992"],["-108.0008696","38.0891701"],["-108.0010787","38.0890126"],["-108.0012955","38.0888094"],["-108.001554","38.0885502"],["-108.0018022","38.0883188"],["-108.0021183","38.088016"],["-108.0025399","38.0875813"],["-108.0027392","38.0874015"],["-108.003732","38.0868177"],["-108.0042369","38.0864984"],["-108.0047208","38.0861662"],["-108.0058467","38.0853612"],["-108.0060573","38.0852031"],["-108.00633","38.0850131"],["-108.0066108","38.0848278"],["-108.0069654","38.084637"],["-108.007315","38.0844543"],["-108.0075756","38.0842578"],["-108.0078107","38.0840678"],["-108.0079779","38.083889"],["-108.008249","38.0836044"],["-108.0089075","38.08294"],["-108.0092617","38.0826538"],["-108.0098007","38.0822754"],["-108.010134","38.0821032"],["-108.0106808","38.0817818"],["-108.0109762","38.0815472"],["-108.0112326","38.0812688"],["-108.0114585","38.0809325"],["-108.0116552","38.080583"],["-108.0118611","38.0802397"],["-108.0120882","38.0799864"],["-108.0123756","38.0797374"],["-108.0127027","38.0795184"],["-108.0146529","38.078311"],["-108.0151068","38.0780165"],["-108.0153242","38.0778432"],["-108.0155365","38.0776331"],["-108.015811","38.0773119"],["-108.0160475","38.0770458"],["-108.0163953","38.0766539"],["-108.0165217","38.0765016"],["-108.016937","38.076023"],["-108.0171294","38.0757726"],["-108.0172988","38.0755413"],["-108.0176402","38.0749705"],["-108.0179032","38.074577"],["-108.0180616","38.074395"],["-108.0183335","38.0741786"],["-108.018754","38.0739145"],["-108.0193835","38.0735481"],["-108.0202846","38.0730422"],["-108.0220638","38.0722188"],["-108.0224171","38.0719786"],["-108.0227049","38.0717297"],["-108.0230321","38.0713718"],["-108.0233119","38.0710317"],["-108.0249324","38.0690075"],["-108.0252056","38.0686296"],["-108.0253549","38.0683704"],["-108.0255103","38.0681034"],["-108.0257437","38.0676577"],["-108.0259582","38.0671173"],["-108.0261354","38.0666148"],["-108.0264128","38.0658301"],["-108.0265823","38.0653508"],["-108.0267632","38.0646488"],["-108.026864","38.0639765"],["-108.0269144","38.0634348"],["-108.0269779","38.0629347"],["-108.027034","38.062667"],["-108.0270876","38.0624456"],["-108.0271392","38.0623041"],["-108.0271932","38.0621314"],["-108.0272679","38.0619131"],["-108.0273353","38.0617094"],["-108.0274448","38.0614351"],["-108.0275484","38.0611633"],["-108.0276265","38.0609255"],["-108.0278032","38.0604054"],["-108.0278677","38.0602692"],["-108.0279342","38.0600497"],["-108.0279999","38.0598872"],["-108.0280781","38.0597139"],["-108.0281611","38.0595422"],["-108.0282354","38.0593818"],["-108.0283161","38.0592332"],["-108.0285797","38.05886"],["-108.0287121","38.0586886"],["-108.0289554","38.058415"],["-108.0292652","38.0580235"],["-108.0294124","38.0578472"],["-108.0295419","38.0576898"],["-108.0297015","38.0575001"],["-108.0298858","38.0572872"],["-108.0300098","38.0571397"],["-108.0301126","38.0570024"],["-108.0301915","38.0568875"],["-108.0304139","38.0565708"],["-108.030508","38.0564292"],["-108.0305944","38.056296"],["-108.0308012","38.0559798"],["-108.0308825","38.0558455"],["-108.0309323","38.0557448"],["-108.0310607","38.0555526"],["-108.0311255","38.0554552"],["-108.0312129","38.0552949"],["-108.0313292","38.0551026"],["-108.0314972","38.0548185"],["-108.0315969","38.0546634"],["-108.0317386","38.0544383"],["-108.03186","38.0542382"],["-108.0319865","38.0540178"],["-108.0320724","38.0538851"],["-108.0321692","38.0537408"],["-108.0328929","38.0526065"],["-108.0330766","38.0522513"],["-108.0332065","38.0520146"],["-108.0333708","38.0516279"],["-108.0335231","38.0512656"],["-108.033636","38.0509771"],["-108.0338151","38.0505823"],["-108.034007","38.050153"],["-108.0341381","38.0498018"],["-108.0343048","38.0494336"],["-108.034435","38.0491736"],["-108.0345784","38.04887"],["-108.0348942","38.0482252"],["-108.0354648","38.0472001"],["-108.0356429","38.0469233"],["-108.0359737","38.0463716"],["-108.0361509","38.0460407"],["-108.0363949","38.0455594"],["-108.0368094","38.044671"],["-108.0372201","38.0437946"],["-108.0375421","38.0432416"],["-108.0376356","38.0430626"],["-108.0377481","38.0429015"],["-108.0379076","38.0426794"],["-108.0380855","38.04244"],["-108.0383526","38.0421311"],["-108.0386066","38.0418378"],["-108.0388283","38.0415812"],["-108.0390593","38.0412973"],["-108.0392745","38.0410059"],["-108.0396406","38.0404895"],["-108.0398924","38.0400476"],["-108.0400236","38.0398161"],["-108.0401057","38.0396619"],["-108.0401794","38.0395179"],["-108.0402615","38.0393393"],["-108.0403614","38.0391151"],["-108.0404893","38.0388231"],["-108.0405972","38.038537"],["-108.0408162","38.0379899"],["-108.0409098","38.0377618"],["-108.040979","38.0374865"],["-108.041049","38.0373133"],["-108.0411528","38.0370761"],["-108.0413782","38.0365581"],["-108.0415082","38.0362909"],["-108.041678","38.0359731"],["-108.0420581","38.035393"],["-108.0424758","38.0349617"],["-108.0428497","38.0346522"],["-108.0432429","38.0343533"],["-108.0436015","38.0340609"],["-108.0438954","38.0338129"],["-108.0444584","38.0333904"],["-108.0448399","38.0330757"],["-108.0455652","38.0324143"],["-108.0462935","38.0316051"],["-108.0464539","38.0314292"],["-108.0466335","38.0311808"],["-108.0468151","38.0309184"],["-108.0469804","38.0306582"],["-108.0474874","38.0298402"],["-108.0481178","38.0289109"],["-108.0489541","38.0275155"],["-108.0491351","38.0272304"],["-108.0493875","38.0268621"],["-108.0495572","38.0266382"],["-108.0496966","38.0264691"],["-108.0498335","38.0263155"],["-108.0503048","38.0258834"],["-108.0506915","38.0255621"],["-108.0511249","38.0252674"],["-108.0523139","38.0243874"],["-108.0537689","38.0233636"],["-108.0543644","38.0229496"],["-108.0549801","38.0225601"],["-108.0554877","38.0222664"],["-108.0560598","38.0219967"],["-108.056872","38.0216619"],["-108.0572485","38.0215345"],["-108.0577736","38.0213763"],["-108.0590095","38.0211283"],["-108.059813","38.0209992"],["-108.0605396","38.0208875"],["-108.0611221","38.0208079"],["-108.061078","38.0206431"],["-108.0609028","38.020211"],["-108.0607751","38.0199685"],["-108.0606628","38.0197998"],["-108.0604683","38.019645"],["-108.0601205","38.0194522"],["-108.0589812","38.018948"],["-108.0584784","38.0187775"],["-108.0580042","38.0187078"],["-108.0576148","38.0187132"],["-108.0570468","38.0186985"],["-108.0567095","38.0186665"],["-108.0562441","38.0185759"],["-108.0557405","38.0183742"],["-108.0550938","38.0180032"],["-108.0546147","38.0176853"],["-108.0543925","38.0175183"],["-108.0542543","38.0174091"],["-108.0541862","38.0173463"],["-108.0540835","38.017241"],["-108.0539174","38.0170557"],["-108.0536546","38.0166869"],["-108.0523058","38.0143879"],["-108.0519722","38.0138871"],["-108.0517109","38.01357"],["-108.0513218","38.0131646"],["-108.0501506","38.0122633"],["-108.047513","38.0102736"],["-108.0467459","38.0096114"],["-108.0456573","38.0084371"],["-108.0452366","38.0080506"],["-108.0447709","38.0078193"],["-108.0442356","38.0075628"],["-108.0437553","38.007028"],["-108.0435487","38.006776"],["-108.0433246","38.0065773"],["-108.0428234","38.0063743"],["-108.0420404","38.0061878"],["-108.0415349","38.0060501"],["-108.0410773","38.0058098"],["-108.040763","38.0056334"],["-108.040392","38.0054875"],["-108.0396247","38.0052598"],["-108.0391469","38.0050123"],["-108.0385757","38.0044137"],["-108.0380495","38.0037335"],["-108.0377262","38.0031928"],["-108.0373603","38.0025044"],["-108.0370594","38.0018754"],["-108.0367718","38.0013367"],["-108.0365088","38.0008976"],["-108.036023","38.0004534"],["-108.0355076","38.0000136"],["-108.0343375","37.9988954"],["-108.0340817","37.9985821"],["-108.0338859","37.9983041"],["-108.0334859","37.9976539"],["-108.0331928","37.9971374"],["-108.0330394","37.9969018"],["-108.0328445","37.9966448"],["-108.0325404","37.9963744"],["-108.0321428","37.9961185"],["-108.0307019","37.9955075"],["-108.0302013","37.995313"],["-108.029572","37.9950289"],["-108.0293641","37.9948926"],["-108.0290445","37.9946422"],["-108.0283972","37.9941756"],["-108.0279993","37.9939787"],["-108.0276461","37.9938647"],["-108.0272868","37.9938011"],["-108.0268792","37.993782"],["-108.0263972","37.9938235"],["-108.0257759","37.9939332"],["-108.0251651","37.9940121"],["-108.0247752","37.9940368"],["-108.0243747","37.9940104"],["-108.0231763","37.993918"],["-108.022481","37.9939196"],["-108.021393","37.9939988"],["-108.0209422","37.9939832"],["-108.0205388","37.9939173"],["-108.0197914","37.9936983"],["-108.0179797","37.9931288"],["-108.0173791","37.992972"],["-108.0167644","37.9928587"],["-108.0160741","37.9927745"],["-108.0155296","37.9927664"],["-108.0150698","37.9927821"],["-108.0146109","37.9928174"],["-108.0138176","37.9929077"],["-108.0102457","37.9933257"],["-108.0086399","37.9934908"],["-108.0073535","37.9935668"],["-108.0068115","37.9936405"],["-108.004735","37.9942067"],["-108.0038043","37.9944527"],["-108.0033944","37.9945258"],["-108.0028657","37.9945646"],["-108.0023274","37.9945606"],["-108.0015982","37.9945329"],["-108.0009334","37.9945396"],["-108.0002203","37.9945475"],["-107.9997779","37.9944665"],["-107.9994461","37.9943438"],["-107.9986239","37.9938999"],["-107.9979953","37.993647"],["-107.9972348","37.9933539"],["-107.9961984","37.9929056"],["-107.9954189","37.9925557"],["-107.9946996","37.9921584"],["-107.9943125","37.9918538"],["-107.9938897","37.9913537"],["-107.993006","37.9902206"],["-107.992737","37.9898469"],["-107.9926135","37.9895715"],["-107.9925292","37.9893195"],["-107.9924689","37.9890097"],["-107.9923965","37.9886391"],["-107.992282","37.9883428"],["-107.9920537","37.9879988"],["-107.9917308","37.9876173"],["-107.9914755","37.987232"],["-107.9912051","37.9868045"],["-107.9907628","37.9859521"],["-107.9904051","37.985282"],["-107.9901589","37.9847724"],["-107.9899446","37.9841781"],["-107.9897242","37.9835271"],["-107.9895819","37.9831544"],["-107.9892132","37.9825504"],["-107.9887203","37.9818436"],["-107.9884109","37.9813722"],["-107.9882423","37.9810276"],["-107.9881214","37.9807161"],["-107.9880184","37.9802961"],["-107.9878413","37.9794303"],["-107.9877243","37.979036"],["-107.9874913","37.9786544"],["-107.9872707","37.9783126"],["-107.9869141","37.9778818"],["-107.9863534","37.9773055"],["-107.9859632","37.9769619"],["-107.9855416","37.9766431"],["-107.9847599","37.9761932"],["-107.9835273","37.9755246"],["-107.9832253","37.9753116"],["-107.9827067","37.9748634"],["-107.9821556","37.9743844"],["-107.9817413","37.974046"],["-107.9814101","37.9737737"],["-107.9807844","37.9734206"],["-107.9800923","37.9730632"],["-107.9797921","37.9728908"],["-107.9792356","37.9724908"],["-107.9761172","37.9701489"],["-107.9753878","37.9696758"],["-107.9741006","37.9689038"],["-107.9733736","37.9685482"],["-107.9725569","37.9682148"],["-107.9718092","37.9679431"],["-107.9711863","37.9677147"],["-107.9707995","37.9675274"],["-107.9702816","37.9671801"],["-107.9699349","37.9670018"],["-107.9696248","37.9668982"],["-107.9693108","37.966832"],["-107.9679441","37.9667304"],["-107.967364","37.9666146"],["-107.966713","37.9664112"],["-107.966287","37.9662976"],["-107.9657014","37.9662811"],["-107.9645407","37.9661791"],["-107.9631464","37.9661477"],["-107.9621224","37.9660114"],["-107.9615472","37.9658481"],["-107.9609798","37.9655616"],["-107.9604867","37.9654075"],["-107.9599643","37.9653576"],["-107.9594598","37.9653803"],["-107.9586104","37.965466"],["-107.9582987","37.9654716"],["-107.9580356","37.9654472"],["-107.9577208","37.9653861"],["-107.9570787","37.9652117"],["-107.9564522","37.9650663"],["-107.955923","37.9649568"],["-107.955434","37.9648896"],["-107.9548567","37.9647946"],["-107.9543973","37.9646794"],["-107.954028","37.9645171"],["-107.9532175","37.9640362"],["-107.9524494","37.9635443"],["-107.9519795","37.9633021"],["-107.9515917","37.9631358"],["-107.9506816","37.9628989"],["-107.9497853","37.9626343"],["-107.9492353","37.9624217"],["-107.9485501","37.9620362"],["-107.9462847","37.9603175"],["-107.946114","37.96016"],["-107.9459173","37.9599131"],["-107.9455355","37.9591388"],["-107.9452505","37.95876"],["-107.9450987","37.9586249"],["-107.9449408","37.9585331"],["-107.9447685","37.9584545"],["-107.9444334","37.9583409"],["-107.9436877","37.958119"],["-107.9429195","37.9579053"],["-107.9424532","37.9577941"],["-107.9421449","37.9577337"],["-107.9408432","37.9575145"],["-107.9397937","37.9573632"],["-107.9384263","37.9571902"],["-107.9378811","37.9570944"],["-107.93434","37.9563895"],["-107.934032","37.9563176"],["-107.9338059","37.9562513"],["-107.9335752","37.9561717"],["-107.9333415","37.956072"],["-107.9329735","37.9558712"],["-107.9310647","37.9547779"],["-107.9291254","37.9536563"],["-107.9284486","37.9532078"],["-107.9279927","37.9528125"],["-107.9264713","37.9513294"],["-107.9260581","37.9509635"],["-107.9256222","37.9506184"],["-107.9253279","37.9503966"],["-107.9250592","37.95021"],["-107.9245054","37.9498386"],["-107.9236607","37.9492726"],["-107.923177","37.9489809"],["-107.9225586","37.9487238"],["-107.9220146","37.9485346"],["-107.9214747","37.9484047"],["-107.9208664","37.9482821"],["-107.9202276","37.9482004"],["-107.9190094","37.9481198"],["-107.9179354","37.9480609"],["-107.913429","37.9480879"],["-107.9125978","37.9480234"],["-107.911465","37.947916"],["-107.9105435","37.9478653"],["-107.9093305","37.9478654"],["-107.9088158","37.9478402"],["-107.9082342","37.9477694"],["-107.9071075","37.9476071"],["-107.9041297","37.9473241"],["-107.9031843","37.9471924"],["-107.9022568","37.9469794"],["-107.9016494","37.946895"],["-107.901248","37.9468705"],["-107.9007617","37.946886"],["-107.8976507","37.9472634"],["-107.8950289","37.9477019"],["-107.8945334","37.9477646"],["-107.8937168","37.9478112"],["-107.8913805","37.9478824"],["-107.8908424","37.9478775"],["-107.8905253","37.947835"],["-107.8901652","37.9477457"],["-107.8893305","37.9475035"],["-107.8889792","37.947437"],["-107.8886264","37.9474147"],["-107.888177","37.9474614"],["-107.8873006","37.9476018"],["-107.8844338","37.9481527"],["-107.8820771","37.9488194"],["-107.8802134","37.9493291"],["-107.877614","37.9499634"],["-107.8770204","37.9501033"],["-107.8754747","37.9503626"],["-107.8743136","37.950465"],["-107.8730003","37.950522"],["-107.8727262","37.9505006"],["-107.8719402","37.9504636"],["-107.8717357","37.9504487"],["-107.871617","37.9504109"],["-107.871532","37.950372"],["-107.8714547","37.9503378"],["-107.8713956","37.9502873"],["-107.8713198","37.9502658"],["-107.8712419","37.9502753"],["-107.8712057","37.9502964"],["-107.8711514","37.9503268"],["-107.8708516","37.9504659"],["-107.8706908","37.9505056"],["-107.8705206","37.9505366"],["-107.8703247","37.9505685"],["-107.870061","37.9506168"],["-107.8686444","37.9507503"],["-107.8659534","37.9510284"],["-107.8649005","37.9511166"],["-107.8593913","37.9513999"],["-107.8583598","37.9514031"],["-107.8578254","37.9513566"],["-107.8562144","37.951039"],["-107.8530544","37.950372"],["-107.8524671","37.9501996"],["-107.8519298","37.9500126"],["-107.8508663","37.9495587"],["-107.8496999","37.9490472"],["-107.848984","37.9487516"],["-107.8485219","37.9485902"],["-107.8480283","37.9484511"],["-107.8476226","37.9483602"],["-107.8435866","37.947779"],["-107.8352167","37.9465738"],["-107.8332721","37.9462598"],["-107.8323607","37.9460431"],["-107.8282478","37.9448787"],["-107.8265171","37.9443603"],["-107.8257069","37.9440498"],["-107.8243414","37.9434528"],["-107.8238066","37.9431757"],["-107.8231767","37.9428064"],["-107.8221984","37.9422021"],["-107.8219049","37.9419763"],["-107.8215466","37.9416668"],["-107.8213837","37.9415113"],["-107.8213138","37.9414271"],["-107.8211753","37.9413106"],["-107.8211227","37.9412448"],["-107.8210781","37.9411783"],["-107.8210724","37.9411529"],["-107.8210595","37.9411298"],["-107.8210469","37.9411094"],["-107.8210008","37.94108"],["-107.8209564","37.9410686"],["-107.8209262","37.9410683"],["-107.8208995","37.9410675"],["-107.8205816","37.9408901"],["-107.82043","37.9408188"],["-107.8194988","37.9400682"],["-107.8186875","37.9394327"],["-107.8182813","37.9391765"],["-107.8181454","37.9391095"],["-107.8178861","37.939004"],["-107.8174582","37.9388754"]]}};const coordinates_1_1=geojson_1_1.geometry.coordinates;for(const coord of coordinates_1_1){window.bounds[1].extend(coord);contentMap_1.fitBounds(window.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(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});initialMapBounds[1]=new mapboxgl.LngLatBounds(window.bounds[1].getSouthWest(),window.bounds[1].getNorthEast());const visibleMapRoutes_1=[];contentMaps[1].on('click',(e)=>{resetMarkersAndCards(1);});addMarkersToMap(1);contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});} 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"); } }); })(); document.addEventListener('DOMContentLoaded', () => { const h = document.querySelector('header.fixed-top'), o = getComputedStyle(h).right; ['show.bs.modal', 'hidden.bs.modal'].forEach(e => document.querySelectorAll('.fullScreenModal').forEach(m => m.addEventListener(e, ev => h.style.right = ev.type === 'show.bs.modal' ? `${window.innerWidth - document.documentElement.clientWidth}px` : o))); });