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:[-117.40623824384708,44.47439982043026],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":[-122.332859,47.606223],"type":"start"};markerData[1][1]={"lonLat":[-109.550853,38.573304],"type":"finish"};markerData[1][2]={"lonLat":[-116.77396806988084,43.84426252474242],"type":"star","c":{"popup":{"title":"Twin Falls Route","text":"1,080 miles (16 hours 50 minutes*)"}}};markerData[1][3]={"lonLat":[-110.71143167721885,45.00435687743889],"type":"star","c":{"popup":{"title":"Yellowstone National Park Route","text":"1,570 miles (26 hours*)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-122.3328461","47.6061143"],["-122.3329107","47.6060924"],["-122.3335702","47.6068"],["-122.3325065","47.607253"],["-122.3324542","47.6072747"],["-122.3313366","47.6077398"],["-122.3312286","47.6077093"],["-122.3311729","47.6076943"],["-122.3311281","47.6076843"],["-122.3310217","47.6076765"],["-122.3309676","47.6076706"],["-122.3309226","47.6076607"],["-122.3308795","47.6076466"],["-122.3308405","47.6076297"],["-122.3308031","47.6076098"],["-122.3307694","47.607588"],["-122.3307393","47.607564"],["-122.3307145","47.6075369"],["-122.3306457","47.60745"],["-122.3304769","47.607234"],["-122.330164","47.6068099"],["-122.3298446","47.6064163"],["-122.3294377","47.6059489"],["-122.3290973","47.6056023"],["-122.3287066","47.605228"],["-122.3281325","47.6045711"],["-122.3274634","47.6037748"],["-122.3269106","47.6031616"],["-122.3267963","47.6030473"],["-122.326703","47.6029583"],["-122.3265778","47.6028431"],["-122.3264765","47.602753"],["-122.3263535","47.6026486"],["-122.3250268","47.6015911"],["-122.3244296","47.6011074"],["-122.3232645","47.600211"],["-122.3227244","47.5997417"],["-122.3225929","47.5996149"],["-122.3224551","47.5994735"],["-122.3223423","47.5993523"],["-122.3222205","47.5992126"],["-122.3221123","47.599082"],["-122.3220025","47.5989418"],["-122.321904","47.5988072"],["-122.3218038","47.5986623"],["-122.3217148","47.5985255"],["-122.3216294","47.5983859"],["-122.3215454","47.5982375"],["-122.3214587","47.5980675"],["-122.321282","47.5976927"],["-122.321038","47.5972208"],["-122.3208503","47.596828"],["-122.3207846","47.5965111"],["-122.3207146","47.595284"],["-122.3206829","47.5951307"],["-122.3206439","47.5950365"],["-122.3205906","47.5949463"],["-122.3205091","47.5948388"],["-122.3204282","47.5947581"],["-122.3203383","47.594683"],["-122.3202132","47.5945999"],["-122.3200971","47.5945371"],["-122.3199449","47.5944719"],["-122.319815","47.5944285"],["-122.3196938","47.5943975"],["-122.3195846","47.5943763"],["-122.3194743","47.5943608"],["-122.3193657","47.5943498"],["-122.3192586","47.5943429"],["-122.3191463","47.594341"],["-122.3190267","47.5943437"],["-122.3188882","47.5943517"],["-122.3187139","47.5943757"],["-122.3184619","47.5944326"],["-122.3179065","47.5945772"],["-122.3171034","47.5947859"],["-122.3169822","47.5948098"],["-122.3168489","47.5948267"],["-122.3166913","47.5948429"],["-122.3161196","47.5948651"],["-122.3157949","47.5948614"],["-122.3153518","47.5948209"],["-122.3152002","47.594801"],["-122.3150082","47.5947668"],["-122.3147604","47.5947165"],["-122.3145172","47.5946524"],["-122.3142868","47.594583"],["-122.3139977","47.5944778"],["-122.3136715","47.5943267"],["-122.3134073","47.5941775"],["-122.3132036","47.5940278"],["-122.3129677","47.5938241"],["-122.3112055","47.591502"],["-122.3110837","47.5913478"],["-122.3109821","47.5912349"],["-122.3108766","47.5911281"],["-122.3107548","47.5910181"],["-122.3106329","47.5909176"],["-122.3105077","47.5908237"],["-122.3103716","47.5907313"],["-122.3102276","47.5906431"],["-122.310078","47.5905592"],["-122.3099209","47.5904801"],["-122.3097553","47.5904041"],["-122.3096003","47.5903405"],["-122.3094158","47.5902722"],["-122.3092507","47.5902185"],["-122.3090618","47.5901648"],["-122.3088913","47.5901218"],["-122.3086945","47.5900792"],["-122.3085022","47.5900458"],["-122.308332","47.5900207"],["-122.308124","47.5899978"],["-122.3079417","47.5899839"],["-122.3075718","47.5899765"],["-122.2898648","47.5900429"],["-122.2755631","47.5897029"],["-122.2547183","47.5892367"],["-122.2533983","47.589266"],["-122.2527777","47.5893222"],["-122.2521501","47.5894231"],["-122.2515979","47.5895523"],["-122.2511468","47.589687"],["-122.2507509","47.5898176"],["-122.2496864","47.5902651"],["-122.2486411","47.5907612"],["-122.2473095","47.5913959"],["-122.2468454","47.5915655"],["-122.2463941","47.5916961"],["-122.2459725","47.5917928"],["-122.2455147","47.5918729"],["-122.2450591","47.5919285"],["-122.2445921","47.5919603"],["-122.2441043","47.5919688"],["-122.2436391","47.5919522"],["-122.2431572","47.5919128"],["-122.2426714","47.591842"],["-122.2422695","47.5917608"],["-122.2418372","47.5916532"],["-122.2414081","47.5915204"],["-122.2409436","47.5913461"],["-122.2405924","47.5911854"],["-122.2402465","47.591008"],["-122.2401682","47.5909595"],["-122.2399332","47.590811"],["-122.239561","47.5905949"],["-122.2391685","47.590373"],["-122.237974","47.5897035"],["-122.2374455","47.5894277"],["-122.2370264","47.5892283"],["-122.2367267","47.5890975"],["-122.2360392","47.5888311"],["-122.234611","47.5883283"],["-122.2340638","47.5881372"],["-122.2312814","47.5871609"],["-122.2307635","47.5869634"],["-122.2302124","47.586735"],["-122.2293995","47.5863662"],["-122.2289031","47.5861376"],["-122.2278197","47.5856522"],["-122.224877","47.5843348"],["-122.2199803","47.582241"],["-122.2190992","47.5818131"],["-122.2187882","47.5816314"],["-122.2163835","47.5799999"],["-122.2160588","47.5797921"],["-122.2157326","47.5796185"],["-122.2154613","47.5794858"],["-122.2149489","47.5792519"],["-122.2145423","47.5790986"],["-122.2141318","47.5789563"],["-122.2137958","47.5788616"],["-122.2131879","47.5787165"],["-122.2124917","47.5785769"],["-122.21055","47.5782918"],["-122.2068216","47.577786"],["-122.2058417","47.5777168"],["-122.2055263","47.5777129"],["-122.2052587","47.5777158"],["-122.204671","47.5777445"],["-122.2044122","47.5777654"],["-122.2041581","47.5777918"],["-122.2039255","47.5778208"],["-122.2034689","47.5778947"],["-122.2031775","47.5779509"],["-122.202004","47.5782597"],["-122.1976414","47.5794093"],["-122.1966049","47.5796273"],["-122.1963614","47.5796654"],["-122.1961661","47.5796926"],["-122.1960787","47.5797027"],["-122.195813","47.5797233"],["-122.1954722","47.5797462"],["-122.1951112","47.5797593"],["-122.1947518","47.579759"],["-122.1943848","47.5797369"],["-122.1940476","47.579704"],["-122.1937557","47.5796625"],["-122.1914003","47.5791924"],["-122.1910466","47.5791332"],["-122.190526","47.5790694"],["-122.190194","47.5790517"],["-122.1898263","47.5790426"],["-122.1893735","47.5790503"],["-122.188746","47.5790878"],["-122.1763402","47.5801483"],["-122.1754771","47.5801928"],["-122.1742534","47.580229"],["-122.1738066","47.5802309"],["-122.1726403","47.5802094"],["-122.1693923","47.5800931"],["-122.1683742","47.5800388"],["-122.1659434","47.5799935"],["-122.1647739","47.5799939"],["-122.1631465","47.5799817"],["-122.1612425","47.5798982"],["-122.1602692","47.5798325"],["-122.1575674","47.5796126"],["-122.1543035","47.5794321"],["-122.1363846","47.5785746"],["-122.1354046","47.5785102"],["-122.1346277","47.5784218"],["-122.1342181","47.5783622"],["-122.1337278","47.5782779"],["-122.1331315","47.5781588"],["-122.1325071","47.5780143"],["-122.1317391","47.5777869"],["-122.1309678","47.5775391"],["-122.1059456","47.5686143"],["-122.1053735","47.5683689"],["-122.1048312","47.5681055"],["-122.1036012","47.5674292"],["-122.0887088","47.5591536"],["-122.0875922","47.5585706"],["-122.086942","47.5582848"],["-122.0713002","47.5522592"],["-122.055688","47.5462632"],["-122.0552055","47.5460926"],["-122.0543276","47.5458341"],["-122.0537681","47.5457044"],["-122.0530781","47.5455506"],["-122.0510271","47.5453085"],["-122.0476629","47.5450046"],["-122.047178","47.5449501"],["-122.0467046","47.5448779"],["-122.0461582","47.5447716"],["-122.0455519","47.5446369"],["-122.0449867","47.5444866"],["-122.0444796","47.5443289"],["-122.0439606","47.5441426"],["-122.0434405","47.5439301"],["-122.0426042","47.5435414"],["-122.0383132","47.541474"],["-122.0375125","47.5410754"],["-122.0371721","47.5408951"],["-122.0368824","47.5407311"],["-122.0362862","47.5403487"],["-122.0357687","47.5399887"],["-122.0352587","47.539602"],["-122.0348362","47.5392643"],["-122.0344523","47.5389157"],["-122.0339887","47.5384432"],["-122.0297505","47.5336393"],["-122.0294177","47.5333485"],["-122.0290266","47.5330392"],["-122.0282301","47.5325397"],["-122.0277514","47.5323053"],["-122.0273673","47.5321508"],["-122.0268983","47.5319965"],["-122.0264656","47.5318803"],["-122.0261205","47.5318003"],["-122.0257818","47.5317338"],["-122.0253399","47.5316626"],["-122.0249213","47.5316117"],["-122.024496","47.5315793"],["-122.0240937","47.5315573"],["-122.0237024","47.5315568"],["-122.0233199","47.5315714"],["-122.0228549","47.5316099"],["-122.0221695","47.5317009"],["-122.0215803","47.5318206"],["-122.0214794","47.5318447"],["-122.0212512","47.531904"],["-122.0211039","47.5319454"],["-122.0209369","47.5319954"],["-122.0205378","47.5321272"],["-122.0204223","47.5321702"],["-122.0201258","47.53229"],["-122.0198239","47.5324185"],["-122.0194718","47.5325894"],["-122.0154318","47.5348176"],["-122.0143374","47.5353919"],["-122.0139249","47.5355903"],["-122.0135144","47.5357417"],["-122.0129347","47.5359394"],["-122.0123517","47.5360992"],["-122.0118154","47.5362265"],["-122.0112634","47.5363475"],["-122.0106743","47.5364383"],["-122.0102278","47.5364844"],["-122.0097435","47.5365134"],["-122.0092332","47.5365174"],["-122.0086173","47.5364998"],["-122.0081026","47.5364588"],["-122.0074477","47.5363667"],["-122.0069881","47.5362748"],["-122.006401","47.5361353"],["-122.0059299","47.5359936"],["-122.0053781","47.5357838"],["-122.0039014","47.5351322"],["-122.0005318","47.5336265"],["-121.9985935","47.5329407"],["-121.9974518","47.5325845"],["-121.996019","47.5321948"],["-121.9948923","47.5319312"],["-121.9935587","47.5316656"],["-121.9921739","47.5314253"],["-121.9908698","47.5312594"],["-121.9897494","47.5311453"],["-121.9885971","47.5310511"],["-121.9839034","47.5308314"],["-121.9826597","47.530784"],["-121.9821897","47.5308031"],["-121.9815066","47.530856"],["-121.9808634","47.5309401"],["-121.9802846","47.5310582"],["-121.9794591","47.5312815"],["-121.9788952","47.531484"],["-121.9785238","47.5316353"],["-121.9781659","47.531797"],["-121.9777772","47.5320085"],["-121.9773395","47.5322976"],["-121.9769772","47.5325461"],["-121.976527","47.5329246"],["-121.9751615","47.5341236"],["-121.9749052","47.5343318"],["-121.9747061","47.5344797"],["-121.9742699","47.534758"],["-121.973891","47.534959"],["-121.973464","47.5351511"],["-121.9730891","47.5352987"],["-121.9726428","47.5354442"],["-121.9721971","47.535565"],["-121.9717605","47.5356564"],["-121.9712746","47.5357257"],["-121.9707816","47.5357792"],["-121.9703207","47.5358043"],["-121.9698204","47.5358016"],["-121.9692728","47.535769"],["-121.9687323","47.5357056"],["-121.968232","47.5356184"],["-121.967788","47.5355238"],["-121.966937","47.5352611"],["-121.9620042","47.5336611"],["-121.9613607","47.5334647"],["-121.9608349","47.5333212"],["-121.9601957","47.533174"],["-121.9594004","47.5330314"],["-121.9587425","47.5329371"],["-121.9466529","47.5317492"],["-121.9461233","47.5316731"],["-121.9456357","47.5315794"],["-121.9451476","47.5314524"],["-121.9447292","47.5313304"],["-121.9442589","47.5311693"],["-121.9437594","47.5309642"],["-121.9432396","47.530714"],["-121.9428785","47.5305162"],["-121.9425247","47.5302961"],["-121.9420615","47.5299514"],["-121.9417882","47.529725"],["-121.9415204","47.5294816"],["-121.94123","47.5291756"],["-121.9407577","47.5285625"],["-121.9369989","47.5236095"],["-121.9367544","47.5233314"],["-121.9365142","47.5230902"],["-121.9362948","47.5228866"],["-121.9360663","47.5227027"],["-121.9357725","47.5224885"],["-121.9355507","47.5223192"],["-121.935177","47.5220983"],["-121.9347432","47.5218772"],["-121.9343183","47.5216791"],["-121.9338494","47.5214951"],["-121.9328737","47.5212064"],["-121.9316221","47.5208525"],["-121.930536","47.5205441"],["-121.9300815","47.5203961"],["-121.9295997","47.5202237"],["-121.9286122","47.519822"],["-121.9227705","47.5173724"],["-121.9210055","47.5165796"],["-121.9200679","47.5161177"],["-121.919171","47.5156521"],["-121.911292","47.511491"],["-121.9108456","47.5112156"],["-121.9103499","47.5108943"],["-121.9098389","47.5105403"],["-121.9094138","47.5102251"],["-121.9087226","47.5096805"],["-121.9071298","47.5083982"],["-121.9066489","47.5080314"],["-121.9063474","47.5078213"],["-121.9060773","47.507651"],["-121.9056568","47.5074144"],["-121.9051634","47.5071597"],["-121.9046659","47.5069368"],["-121.9041644","47.5067389"],["-121.9036745","47.5065695"],["-121.9031915","47.5064203"],["-121.9026339","47.50628"],["-121.902078","47.5061584"],["-121.9014836","47.5060541"],["-121.900827","47.505978"],["-121.9001426","47.5059229"],["-121.8994844","47.5058998"],["-121.8988795","47.5059023"],["-121.8982711","47.5059284"],["-121.8977169","47.5059788"],["-121.8969268","47.5060876"],["-121.8909507","47.5070861"],["-121.8877216","47.5076309"],["-121.8768857","47.5094482"],["-121.8722787","47.5102147"],["-121.867824","47.5109541"],["-121.8673275","47.5110231"],["-121.8669524","47.5110643"],["-121.8660704","47.5111349"],["-121.8652112","47.5111711"],["-121.864083","47.511176"],["-121.8593852","47.5110182"],["-121.8577684","47.5109744"],["-121.8573699","47.5109863"],["-121.8569033","47.5110184"],["-121.8563928","47.5110689"],["-121.8560327","47.5111185"],["-121.855527","47.5112121"],["-121.8553034","47.5112611"],["-121.8539391","47.5116228"],["-121.845661","47.513851"],["-121.843862","47.5143206"],["-121.8433985","47.5144128"],["-121.8429592","47.5144801"],["-121.8424994","47.5145385"],["-121.8419793","47.514585"],["-121.8415708","47.5146093"],["-121.8410947","47.5146249"],["-121.8406584","47.5146272"],["-121.840194","47.5146136"],["-121.8397227","47.5145815"],["-121.839235","47.5145379"],["-121.8387363","47.5144713"],["-121.8382956","47.5143979"],["-121.8377901","47.5143015"],["-121.837309","47.5141827"],["-121.8368658","47.5140619"],["-121.8364764","47.5139434"],["-121.8360851","47.5138078"],["-121.8356579","47.5136423"],["-121.8351808","47.5134341"],["-121.8347531","47.5132223"],["-121.8343491","47.5130014"],["-121.8339503","47.5127581"],["-121.8336493","47.5125524"],["-121.83331","47.5123114"],["-121.8330814","47.5121297"],["-121.8171251","47.4982373"],["-121.8153429","47.4967222"],["-121.8144274","47.4959454"],["-121.8141244","47.4957137"],["-121.8138269","47.4955035"],["-121.8135515","47.4953269"],["-121.8132204","47.4951316"],["-121.8128629","47.494938"],["-121.8124519","47.4947333"],["-121.8120016","47.4945354"],["-121.8115655","47.4943628"],["-121.8083255","47.4932967"],["-121.8019692","47.4912113"],["-121.8014839","47.4910362"],["-121.8010038","47.49084"],["-121.800193","47.4904834"],["-121.7998841","47.4903374"],["-121.7995403","47.4901604"],["-121.7987857","47.4897338"],["-121.7982703","47.4894107"],["-121.797739","47.489059"],["-121.7973308","47.4887559"],["-121.7969983","47.4884863"],["-121.7964201","47.487985"],["-121.7949873","47.4865655"],["-121.7858688","47.4774788"],["-121.784361","47.4759827"],["-121.7840439","47.4757041"],["-121.7837922","47.4755023"],["-121.783567","47.4753319"],["-121.7832064","47.4750846"],["-121.7829551","47.4749267"],["-121.7827209","47.4747862"],["-121.78242","47.474621"],["-121.7821773","47.4744942"],["-121.7817681","47.4743029"],["-121.781448","47.4741665"],["-121.7811068","47.4740325"],["-121.7807983","47.473924"],["-121.7804231","47.4738053"],["-121.780051","47.4736983"],["-121.7796269","47.4735878"],["-121.7791976","47.4734904"],["-121.7785783","47.4733722"],["-121.7781661","47.4733126"],["-121.7776378","47.4732523"],["-121.7770787","47.4732097"],["-121.7759341","47.4731825"],["-121.7466143","47.4732507"],["-121.7429331","47.4732147"],["-121.7420205","47.4731383"],["-121.7412483","47.4730244"],["-121.7404114","47.4728407"],["-121.7387547","47.4723806"],["-121.7326495","47.4705824"],["-121.7282874","47.4690922"],["-121.7188472","47.4655895"],["-121.7181226","47.465329"],["-121.7165272","47.4647958"],["-121.7155904","47.4645395"],["-121.7148055","47.4643429"],["-121.7128168","47.4638885"],["-121.710016","47.4633457"],["-121.7092578","47.4631708"],["-121.7085346","47.4629519"],["-121.7077807","47.46267"],["-121.7070809","47.462362"],["-121.7064375","47.4619963"],["-121.7057343","47.4615485"],["-121.705003","47.4609742"],["-121.7043991","47.4603749"],["-121.7038248","47.4597113"],["-121.7034865","47.4591717"],["-121.7031925","47.4586102"],["-121.7029613","47.4579276"],["-121.7028244","47.4572183"],["-121.7025993","47.455921"],["-121.7024829","47.4553009"],["-121.7023509","47.4547853"],["-121.702155","47.4542392"],["-121.7014089","47.45253"],["-121.7008043","47.4511636"],["-121.7004502","47.4504595"],["-121.7000885","47.4498855"],["-121.6996744","47.4493244"],["-121.6992795","47.4488601"],["-121.6988364","47.4484179"],["-121.6982452","47.4479005"],["-121.6976223","47.4474001"],["-121.6969285","47.4469134"],["-121.6961179","47.4464445"],["-121.6953482","47.4460524"],["-121.6945075","47.4456748"],["-121.6913894","47.4444229"],["-121.6904258","47.4439898"],["-121.6897312","47.4437769"],["-121.6890342","47.4436002"],["-121.6882945","47.4434595"],["-121.6874106","47.4433258"],["-121.6865463","47.4433037"],["-121.6857315","47.4433132"],["-121.6848843","47.4433868"],["-121.6814242","47.4437627"],["-121.6806844","47.4438239"],["-121.6800246","47.4438358"],["-121.6792459","47.4438223"],["-121.678524","47.4437772"],["-121.6772287","47.4435897"],["-121.6755477","47.4433334"],["-121.6736464","47.4430405"],["-121.6726162","47.4429196"],["-121.6718324","47.4428614"],["-121.6711991","47.4428556"],["-121.6705581","47.442874"],["-121.6687542","47.4429912"],["-121.6661671","47.4431059"],["-121.6648519","47.4431094"],["-121.663552","47.4430251"],["-121.6619354","47.44283"],["-121.6611814","47.4426926"],["-121.6603216","47.442507"],["-121.6594531","47.4422822"],["-121.658597","47.4420152"],["-121.6577786","47.4417376"],["-121.6570679","47.4414365"],["-121.6486055","47.4373876"],["-121.6477245","47.4369924"],["-121.6465548","47.4364537"],["-121.6453664","47.4358713"],["-121.6428304","47.4346315"],["-121.6419568","47.4341641"],["-121.6411075","47.4336713"],["-121.639302","47.4325713"],["-121.6384442","47.4320442"],["-121.6371941","47.4312765"],["-121.6364348","47.4308942"],["-121.6349971","47.430278"],["-121.6341714","47.4300135"],["-121.6328675","47.4296482"],["-121.6315166","47.4294084"],["-121.6282996","47.4290365"],["-121.6230481","47.4284848"],["-121.6218687","47.4284116"],["-121.6208739","47.4284244"],["-121.6198718","47.4285059"],["-121.617576","47.4288042"],["-121.6165875","47.4288912"],["-121.6157655","47.4289318"],["-121.6148539","47.4289084"],["-121.614037","47.428794"],["-121.612991","47.4285672"],["-121.6072803","47.4266188"],["-121.6059871","47.4262036"],["-121.6040901","47.4255837"],["-121.6030395","47.4253433"],["-121.6019746","47.4251763"],["-121.5997731","47.424958"],["-121.5987876","47.4248045"],["-121.5978643","47.4245693"],["-121.5969004","47.4242491"],["-121.5961307","47.4238591"],["-121.5955836","47.4235012"],["-121.5946057","47.4226574"],["-121.592557","47.4208522"],["-121.5920522","47.4204884"],["-121.591374","47.4200664"],["-121.5899642","47.4193021"],["-121.5882993","47.4184037"],["-121.5877878","47.4180599"],["-121.5873711","47.4177155"],["-121.5868458","47.4171743"],["-121.5864859","47.4167089"],["-121.586182","47.4162626"],["-121.5858724","47.4157176"],["-121.5851185","47.414512"],["-121.5847444","47.4139854"],["-121.5842439","47.4134083"],["-121.5833858","47.4127361"],["-121.5824948","47.4122537"],["-121.5807971","47.411419"],["-121.5788726","47.4105295"],["-121.5777736","47.4100094"],["-121.5765343","47.4094554"],["-121.5758274","47.409094"],["-121.5753651","47.4087825"],["-121.5749146","47.4084417"],["-121.5742478","47.4078895"],["-121.5731336","47.4069006"],["-121.5726788","47.4065526"],["-121.5721957","47.4062151"],["-121.5716411","47.4058622"],["-121.5709674","47.40556"],["-121.5702031","47.4052862"],["-121.5693316","47.405039"],["-121.5610025","47.4034944"],["-121.5601138","47.4032281"],["-121.559074","47.4028295"],["-121.5581441","47.4024498"],["-121.5556515","47.4010847"],["-121.5518131","47.3988803"],["-121.5514269","47.3986881"],["-121.5510455","47.3985144"],["-121.5505923","47.3983281"],["-121.5498031","47.3980675"],["-121.5492732","47.3979326"],["-121.5487897","47.3978276"],["-121.5482853","47.3977444"],["-121.5476979","47.3976746"],["-121.5442293","47.3974141"],["-121.5425387","47.397221"],["-121.5282098","47.3951965"],["-121.5275423","47.3951102"],["-121.5266754","47.395044"],["-121.5258557","47.3950177"],["-121.5248022","47.3950072"],["-121.5185192","47.3951362"],["-121.5177566","47.3951903"],["-121.5171258","47.3952487"],["-121.5162261","47.3953735"],["-121.513021","47.3958686"],["-121.512308","47.3959461"],["-121.5117453","47.3959823"],["-121.4930513","47.396763"],["-121.49041","47.3968781"],["-121.4895925","47.3968866"],["-121.4879308","47.3968473"],["-121.4867921","47.3967794"],["-121.4856489","47.396685"],["-121.4844783","47.396548"],["-121.4834434","47.3963975"],["-121.4822666","47.3961933"],["-121.4813465","47.3960088"],["-121.4806671","47.3958593"],["-121.4791242","47.3954584"],["-121.477811","47.3950626"],["-121.4768114","47.3947229"],["-121.4734738","47.3934667"],["-121.4730359","47.3933092"],["-121.4725278","47.39316"],["-121.4719893","47.393032"],["-121.4714514","47.3929359"],["-121.4707841","47.3928471"],["-121.4698979","47.3927945"],["-121.4691779","47.3927998"],["-121.46843","47.3928432"],["-121.4678722","47.3929108"],["-121.4672965","47.3930174"],["-121.46533","47.3935575"],["-121.4586879","47.395542"],["-121.4576903","47.3957701"],["-121.4501265","47.3969891"],["-121.449387","47.397152"],["-121.4486868","47.3973718"],["-121.4477276","47.3977731"],["-121.4471867","47.3980621"],["-121.4465297","47.3985212"],["-121.4457098","47.3992454"],["-121.444601","47.4003147"],["-121.4439081","47.4011033"],["-121.4432786","47.4020264"],["-121.4421349","47.4040616"],["-121.4398351","47.4085059"],["-121.439107","47.4098476"],["-121.4387256","47.4107836"],["-121.438409","47.4117249"],["-121.4381977","47.4122995"],["-121.4380253","47.4128936"],["-121.4378629","47.4132467"],["-121.4375754","47.4136545"],["-121.4364628","47.4151481"],["-121.4334748","47.4192052"],["-121.433224","47.4195326"],["-121.4329044","47.4201128"],["-121.4326566","47.4205972"],["-121.4324126","47.4211216"],["-121.4321017","47.4219463"],["-121.4320322","47.4221633"],["-121.4319461","47.4224933"],["-121.4317916","47.4230383"],["-121.4316201","47.4235953"],["-121.4314463","47.4240347"],["-121.431371","47.424182"],["-121.4311168","47.4245462"],["-121.4309396","47.4247302"],["-121.4307491","47.4249056"],["-121.4305563","47.4250745"],["-121.4302841","47.425267"],["-121.4300155","47.4254381"],["-121.4297665","47.4255688"],["-121.4295278","47.4256855"],["-121.426497","47.4269344"],["-121.4255266","47.4273063"],["-121.4227269","47.4281287"],["-121.4220046","47.4283203"],["-121.421635","47.4283774"],["-121.4211416","47.4284288"],["-121.4206332","47.4284407"],["-121.4201143","47.4284162"],["-121.4195538","47.4283574"],["-121.4189461","47.4282188"],["-121.4178248","47.4277861"],["-121.4146289","47.4264386"],["-121.4129862","47.4257207"],["-121.4120924","47.4252315"],["-121.4116422","47.4248673"],["-121.4111717","47.4244694"],["-121.4105892","47.4238054"],["-121.410248","47.4232199"],["-121.4100378","47.4226143"],["-121.409871","47.4219417"],["-121.4098438","47.4213931"],["-121.4099124","47.4207281"],["-121.4100976","47.4199065"],["-121.4106412","47.4182329"],["-121.4108338","47.4176654"],["-121.4110358","47.4170337"],["-121.4112566","47.4161678"],["-121.4113468","47.415699"],["-121.4113821","47.4151189"],["-121.4112877","47.414409"],["-121.4099535","47.410997"],["-121.4096633","47.4105679"],["-121.4092938","47.4101786"],["-121.408907","47.4098818"],["-121.4082665","47.4094383"],["-121.4067692","47.4085169"],["-121.4056364","47.4078111"],["-121.4053135","47.4075212"],["-121.405042","47.4072383"],["-121.4047887","47.4069475"],["-121.4046189","47.4066492"],["-121.4044425","47.4062803"],["-121.4043165","47.4058191"],["-121.4042613","47.4053308"],["-121.4042525","47.4047215"],["-121.4042588","47.4041233"],["-121.4042515","47.4036796"],["-121.4042652","47.4031219"],["-121.4042104","47.4028183"],["-121.4041136","47.4024603"],["-121.4037534","47.4017524"],["-121.4035446","47.4014928"],["-121.4032842","47.4012592"],["-121.4029669","47.401017"],["-121.4026762","47.4008193"],["-121.4023802","47.400634"],["-121.4020939","47.4004659"],["-121.4014217","47.4000579"],["-121.4008403","47.3997097"],["-121.4003444","47.399398"],["-121.3999265","47.3991139"],["-121.3995357","47.3987818"],["-121.3991547","47.39839"],["-121.3987088","47.3978447"],["-121.3980955","47.3971445"],["-121.3976661","47.396673"],["-121.3974144","47.3964364"],["-121.3971535","47.396224"],["-121.3966728","47.3958954"],["-121.3963783","47.3957184"],["-121.3960383","47.3955369"],["-121.3956408","47.3953622"],["-121.3868544","47.3920868"],["-121.3865361","47.3919655"],["-121.386068","47.3917625"],["-121.3855808","47.3915225"],["-121.3844626","47.3909423"],["-121.383984","47.3906706"],["-121.3835607","47.3904124"],["-121.382651","47.3898052"],["-121.3818867","47.3892454"],["-121.381487","47.3889128"],["-121.3811668","47.3886165"],["-121.3808353","47.3882758"],["-121.3805098","47.3879214"],["-121.3802414","47.3875877"],["-121.3799741","47.3872166"],["-121.3796635","47.386696"],["-121.3783778","47.3840906"],["-121.3781383","47.3835659"],["-121.378007","47.3832208"],["-121.3779131","47.3829209"],["-121.3778257","47.3825849"],["-121.3777153","47.3817635"],["-121.3774692","47.3787276"],["-121.3771564","47.3746505"],["-121.3771107","47.3742757"],["-121.3770646","47.3739572"],["-121.377018","47.3736893"],["-121.3769308","47.3733892"],["-121.3768383","47.3731276"],["-121.376703","47.3727999"],["-121.3765561","47.3724691"],["-121.376417","47.372182"],["-121.3761665","47.3717529"],["-121.3759829","47.371468"],["-121.3758122","47.3712318"],["-121.3756242","47.3709878"],["-121.3754294","47.370753"],["-121.3749581","47.3702557"],["-121.3740802","47.3693464"],["-121.3738776","47.3691105"],["-121.3736682","47.368841"],["-121.3734788","47.3685491"],["-121.3733324","47.3683"],["-121.3731844","47.367999"],["-121.3730603","47.3676999"],["-121.3729868","47.3674755"],["-121.3729193","47.3672431"],["-121.3728733","47.3670068"],["-121.3728441","47.3667161"],["-121.3728311","47.3664062"],["-121.3729102","47.3654116"],["-121.3731084","47.3632839"],["-121.3731407","47.362721"],["-121.3731248","47.3624659"],["-121.3730833","47.3622293"],["-121.3730252","47.3619922"],["-121.3729535","47.3617638"],["-121.3728672","47.3615527"],["-121.3727597","47.3613277"],["-121.3726295","47.361094"],["-121.3724982","47.3609054"],["-121.3723296","47.3606953"],["-121.3721575","47.3605016"],["-121.371956","47.3603045"],["-121.3717388","47.3601068"],["-121.3715262","47.3599405"],["-121.371052","47.3596171"],["-121.3699882","47.3589172"],["-121.3692563","47.3584267"],["-121.3688784","47.358153"],["-121.3685874","47.3579267"],["-121.3682788","47.3576768"],["-121.3677137","47.3571758"],["-121.3674356","47.3569055"],["-121.3672009","47.3566583"],["-121.3669837","47.3564082"],["-121.3667717","47.3561469"],["-121.3665848","47.3558832"],["-121.3664018","47.3556026"],["-121.3662368","47.3553276"],["-121.3660869","47.355045"],["-121.3659234","47.3547041"],["-121.3657493","47.3542844"],["-121.3654714","47.3535396"],["-121.3652231","47.3528698"],["-121.3650444","47.3524025"],["-121.3645012","47.3511835"],["-121.3640483","47.3501997"],["-121.3638911","47.3498013"],["-121.3638194","47.3495419"],["-121.3637752","47.3492806"],["-121.3637578","47.3490567"],["-121.363756","47.3488119"],["-121.3637757","47.3485616"],["-121.3638857","47.3479886"],["-121.3643789","47.3458072"],["-121.3645052","47.3451868"],["-121.3645329","47.3449375"],["-121.3645317","47.3446539"],["-121.3645155","47.3444019"],["-121.3644774","47.3441526"],["-121.3644186","47.343907"],["-121.3643364","47.3436665"],["-121.3642254","47.3434092"],["-121.3640836","47.3431566"],["-121.3639426","47.3429374"],["-121.3637456","47.3426733"],["-121.3635009","47.3423945"],["-121.3632629","47.3421521"],["-121.3630147","47.3419288"],["-121.3627513","47.341728"],["-121.3624878","47.3415444"],["-121.3621856","47.3413546"],["-121.3618256","47.3411633"],["-121.3614446","47.3409866"],["-121.3610051","47.3408213"],["-121.3605635","47.3406894"],["-121.3601082","47.3405725"],["-121.3596737","47.3404853"],["-121.3592257","47.3404207"],["-121.3586906","47.340369"],["-121.3576215","47.3403361"],["-121.3557337","47.3403022"],["-121.3551827","47.3402823"],["-121.3546612","47.3402392"],["-121.3542014","47.3401727"],["-121.353758","47.3400912"],["-121.3534235","47.3400113"],["-121.3528686","47.3398563"],["-121.3525047","47.339726"],["-121.3521587","47.3395857"],["-121.3517763","47.339406"],["-121.3514222","47.3392176"],["-121.3511139","47.339029"],["-121.35083","47.3388311"],["-121.3505972","47.338654"],["-121.3503615","47.3384611"],["-121.3496358","47.3377163"],["-121.347992","47.3359837"],["-121.3470858","47.335013"],["-121.3469315","47.3348202"],["-121.3467687","47.3346005"],["-121.3464021","47.3340214"],["-121.3457172","47.3328941"],["-121.3452436","47.3321277"],["-121.3450446","47.3318558"],["-121.3448469","47.3316217"],["-121.3446641","47.3314335"],["-121.3444537","47.3312338"],["-121.3441717","47.3309949"],["-121.3438395","47.3307438"],["-121.3434677","47.3305133"],["-121.3430889","47.3302889"],["-121.3427094","47.3300928"],["-121.3423209","47.3299109"],["-121.341413","47.3295591"],["-121.339077","47.3287422"],["-121.3372773","47.3281365"],["-121.3363384","47.3278522"],["-121.3343897","47.3273436"],["-121.3319259","47.326665"],["-121.3314289","47.3265047"],["-121.3308902","47.3263056"],["-121.3303759","47.3261023"],["-121.3299466","47.3259088"],["-121.3295525","47.3257166"],["-121.3291537","47.3255134"],["-121.328853","47.3253412"],["-121.328296","47.3249825"],["-121.3280642","47.3248204"],["-121.3277554","47.3245922"],["-121.3273956","47.3242961"],["-121.3162632","47.3147326"],["-121.3157671","47.3142762"],["-121.3153786","47.3138885"],["-121.3150936","47.3135589"],["-121.3148587","47.3132552"],["-121.314657","47.312972"],["-121.3139397","47.3118203"],["-121.3127805","47.3099433"],["-121.3126006","47.3096662"],["-121.3124733","47.3094948"],["-121.3123086","47.309309"],["-121.3120771","47.3090862"],["-121.3118517","47.3088997"],["-121.3114049","47.3085838"],["-121.302043","47.3021675"],["-121.3016511","47.3019307"],["-121.301341","47.3017593"],["-121.3009266","47.3015623"],["-121.3005639","47.3014025"],["-121.300176","47.3012514"],["-121.2997841","47.3011259"],["-121.2993681","47.3010125"],["-121.2983639","47.3007992"],["-121.2949199","47.30012"],["-121.2941568","47.2999355"],["-121.2934444","47.2997359"],["-121.2926464","47.2994743"],["-121.2913525","47.2989781"],["-121.2904783","47.2985465"],["-121.2896634","47.2980976"],["-121.2888689","47.2976"],["-121.2880719","47.2970171"],["-121.2876986","47.2967126"],["-121.2872696","47.2963419"],["-121.2868969","47.2959675"],["-121.286499","47.2955326"],["-121.2859086","47.294822"],["-121.2855824","47.2942919"],["-121.2850178","47.2932525"],["-121.2831842","47.2897952"],["-121.2830622","47.2895431"],["-121.2829966","47.2893772"],["-121.2829414","47.2892249"],["-121.2828752","47.2890277"],["-121.2828196","47.2888062"],["-121.2827811","47.2886105"],["-121.2827369","47.2882582"],["-121.2826491","47.2873338"],["-121.282609","47.2868042"],["-121.2825336","47.2863102"],["-121.2824837","47.2861069"],["-121.2824133","47.2858986"],["-121.2822547","47.2855229"],["-121.2816298","47.2841815"],["-121.2813984","47.2836557"],["-121.2812335","47.2831752"],["-121.2812071","47.2830386"],["-121.2811405","47.2826871"],["-121.2811402","47.2825657"],["-121.2811062","47.2823199"],["-121.2810293","47.281276"],["-121.2809745","47.2806109"],["-121.2809301","47.2803641"],["-121.2808638","47.2801233"],["-121.2807945","47.2799149"],["-121.2807306","47.2797462"],["-121.2806534","47.2795815"],["-121.2805705","47.2794257"],["-121.2804459","47.2792163"],["-121.2802801","47.2789948"],["-121.2801234","47.2788186"],["-121.2799643","47.2786555"],["-121.2797376","47.2784529"],["-121.277638","47.2768368"],["-121.2710888","47.2718416"],["-121.2708061","47.2716423"],["-121.2705477","47.2714785"],["-121.2702765","47.271317"],["-121.2700546","47.2712072"],["-121.2697997","47.2710972"],["-121.2694787","47.2709739"],["-121.2691126","47.2708459"],["-121.268617","47.2706975"],["-121.2680249","47.2705447"],["-121.2615025","47.2692015"],["-121.2603012","47.2689411"],["-121.2594315","47.2687362"],["-121.2580478","47.2683785"],["-121.2557018","47.2677509"],["-121.2553622","47.2676712"],["-121.2549944","47.2675963"],["-121.2545362","47.2675271"],["-121.2540598","47.2674714"],["-121.2535573","47.2674432"],["-121.2530322","47.2674413"],["-121.2525781","47.2674871"],["-121.2521589","47.2675605"],["-121.2517111","47.2676648"],["-121.2497477","47.2682204"],["-121.2488477","47.2684618"],["-121.2483366","47.2685635"],["-121.2479798","47.2686141"],["-121.2476173","47.2686445"],["-121.2472231","47.2686557"],["-121.2467274","47.2686504"],["-121.2416461","47.2684315"],["-121.2406989","47.2684849"],["-121.2402504","47.2685262"],["-121.239833","47.2685804"],["-121.2394371","47.2686489"],["-121.2390311","47.2687315"],["-121.2383069","47.2689429"],["-121.2377801","47.2691328"],["-121.2367677","47.2694982"],["-121.2362314","47.2696673"],["-121.235712","47.2698158"],["-121.2352275","47.2699133"],["-121.2347971","47.2699773"],["-121.2343218","47.2700201"],["-121.2338268","47.2700228"],["-121.233373","47.270009"],["-121.2329281","47.2699644"],["-121.2324833","47.2698848"],["-121.2319891","47.2697696"],["-121.2314705","47.2696167"],["-121.2309716","47.2694348"],["-121.2302853","47.2691268"],["-121.222613","47.2655823"],["-121.2219978","47.2653222"],["-121.2214338","47.2651077"],["-121.2208836","47.2649175"],["-121.2203305","47.2647527"],["-121.2197687","47.264606"],["-121.2169211","47.263974"],["-121.2166128","47.2638873"],["-121.216261","47.2637797"],["-121.2158714","47.2636476"],["-121.2153908","47.2634585"],["-121.2149274","47.2632594"],["-121.2144686","47.2630417"],["-121.2140245","47.2628126"],["-121.213598","47.2625715"],["-121.2132739","47.2623607"],["-121.2129319","47.2621254"],["-121.2122372","47.2616085"],["-121.2117646","47.2611912"],["-121.2113263","47.2607351"],["-121.2105521","47.2598582"],["-121.2099282","47.2591321"],["-121.2097196","47.2588997"],["-121.2092174","47.2584758"],["-121.2086349","47.2580626"],["-121.208009","47.2577168"],["-121.2073491","47.2574536"],["-121.2067522","47.2572745"],["-121.2059537","47.2571283"],["-121.2050853","47.2570133"],["-121.2040577","47.2569211"],["-121.2020215","47.256755"],["-121.2006093","47.2565998"],["-121.1998748","47.2564678"],["-121.1989622","47.2562568"],["-121.19817","47.256024"],["-121.1974431","47.2557612"],["-121.1968491","47.2555096"],["-121.1962179","47.2551939"],["-121.1956499","47.2548884"],["-121.1949915","47.2544662"],["-121.1944805","47.2540544"],["-121.193857","47.2535345"],["-121.19296","47.2527713"],["-121.1915903","47.2515669"],["-121.190326","47.2504204"],["-121.1802139","47.2417935"],["-121.176996","47.2390627"],["-121.1758408","47.2380458"],["-121.1727727","47.2354234"],["-121.1699851","47.2330767"],["-121.1683161","47.2316566"],["-121.1656949","47.2294193"],["-121.1651789","47.2290404"],["-121.1642118","47.2284905"],["-121.162564","47.2276041"],["-121.1493489","47.2205938"],["-121.1484291","47.220259"],["-121.1475814","47.2200015"],["-121.1464911","47.219726"],["-121.1361885","47.2180294"],["-121.1353281","47.217918"],["-121.1347092","47.2178684"],["-121.1330992","47.2177974"],["-121.1321991","47.2177377"],["-121.1314455","47.2176549"],["-121.128685","47.217215"],["-121.127934","47.2170223"],["-121.1262655","47.2164857"],["-121.125293","47.2162768"],["-121.1080059","47.213388"],["-121.1067437","47.2131148"],["-121.1044499","47.2123495"],["-121.0578645","47.1962068"],["-121.0572545","47.1960189"],["-121.056704","47.1958771"],["-121.0559822","47.195713"],["-121.0544234","47.1953773"],["-121.0538844","47.1952391"],["-121.0533061","47.195073"],["-121.0519231","47.1946067"],["-121.0509142","47.1942371"],["-121.0502857","47.193966"],["-121.0497242","47.1936584"],["-121.0491739","47.1933007"],["-121.0487997","47.1930263"],["-121.0484892","47.1927626"],["-121.0477306","47.1919559"],["-121.046757","47.1906915"],["-121.0430172","47.185381"],["-121.0422474","47.1843438"],["-121.0416513","47.1836402"],["-121.0413507","47.1833878"],["-121.0409891","47.1831439"],["-121.0405176","47.1828744"],["-121.0400944","47.1826593"],["-121.0396288","47.1824765"],["-121.0391266","47.1823279"],["-121.038608","47.1822057"],["-121.0380388","47.1821117"],["-121.0372882","47.1820377"],["-121.0362301","47.1820554"],["-121.0116492","47.1837431"],["-121.0079366","47.1839969"],["-120.9992874","47.1845911"],["-120.9965794","47.1848091"],["-120.9952152","47.1849934"],["-120.9938543","47.185221"],["-120.9923903","47.1855372"],["-120.9906719","47.1860001"],["-120.9645163","47.1940304"],["-120.9634549","47.1943505"],["-120.9628801","47.1944891"],["-120.9623602","47.1945972"],["-120.9619122","47.1946551"],["-120.9614136","47.1946973"],["-120.9609272","47.1947222"],["-120.9604258","47.1947273"],["-120.9598804","47.1947087"],["-120.9594026","47.1946648"],["-120.9590068","47.194614"],["-120.9585867","47.1945432"],["-120.9580042","47.1944152"],["-120.9576038","47.1943125"],["-120.9571136","47.194158"],["-120.9556841","47.1936768"],["-120.9549959","47.1934577"],["-120.9544911","47.1933296"],["-120.9540719","47.1932434"],["-120.9536125","47.1931718"],["-120.9411411","47.1918189"],["-120.9381859","47.1914374"],["-120.9371468","47.1912454"],["-120.9156149","47.186675"],["-120.9085932","47.185189"],["-120.9075799","47.1849167"],["-120.9067202","47.1846494"],["-120.905664","47.1842665"],["-120.9045223","47.1837952"],["-120.9036697","47.1834218"],["-120.8956448","47.1793609"],["-120.8950299","47.1790512"],["-120.8943508","47.1786602"],["-120.893703","47.1782036"],["-120.8930194","47.1776199"],["-120.8922821","47.1767813"],["-120.8906523","47.1747854"],["-120.8891814","47.1730869"],["-120.888551","47.1724818"],["-120.8878235","47.1719068"],["-120.8868449","47.171303"],["-120.8820029","47.1686068"],["-120.8791378","47.1670223"],["-120.8753059","47.1649408"],["-120.8740453","47.1643721"],["-120.8728223","47.163929"],["-120.8714733","47.1635075"],["-120.8697731","47.1630054"],["-120.8662573","47.1619989"],["-120.8648997","47.1616458"],["-120.8639062","47.1613724"],["-120.8628742","47.1611069"],["-120.8620131","47.160982"],["-120.8611083","47.1609563"],["-120.8587953","47.1611755"],["-120.8536661","47.161676"],["-120.8526144","47.1617411"],["-120.8517102","47.1617549"],["-120.8505754","47.1617257"],["-120.8489636","47.1615958"],["-120.8482451","47.1615054"],["-120.8473099","47.1613373"],["-120.8276488","47.1567367"],["-120.826048","47.1562442"],["-120.8251349","47.1558819"],["-120.8242221","47.155421"],["-120.8233586","47.1548914"],["-120.8225972","47.1543152"],["-120.8219091","47.1536121"],["-120.8198158","47.1511646"],["-120.8186584","47.1497928"],["-120.8175421","47.148463"],["-120.8166731","47.1474"],["-120.816251","47.1468055"],["-120.8159042","47.1462915"],["-120.8154788","47.145511"],["-120.8146584","47.1436419"],["-120.8141276","47.1424407"],["-120.8095491","47.1322134"],["-120.809274","47.1317751"],["-120.8089256","47.131317"],["-120.8084559","47.1308529"],["-120.8079328","47.1304313"],["-120.8074873","47.1301388"],["-120.8067552","47.1297361"],["-120.806007","47.1293404"],["-120.8052468","47.128936"],["-120.8048062","47.1286686"],["-120.8044214","47.1283911"],["-120.8038148","47.1278109"],["-120.8035953","47.127531"],["-120.8033566","47.1271689"],["-120.8031176","47.1267281"],["-120.8029044","47.1262659"],["-120.8027157","47.1257879"],["-120.7999299","47.1192343"],["-120.7996155","47.1186346"],["-120.7992535","47.1181508"],["-120.7987787","47.1176581"],["-120.7984586","47.1173637"],["-120.7980912","47.1170854"],["-120.7976296","47.1167897"],["-120.7972364","47.1165714"],["-120.7968077","47.1163618"],["-120.7963378","47.1161655"],["-120.7946558","47.1156208"],["-120.771623","47.1084875"],["-120.7686831","47.107531"],["-120.7678059","47.1071396"],["-120.7669969","47.1066788"],["-120.7663379","47.1062616"],["-120.7656782","47.1057503"],["-120.7650108","47.1050958"],["-120.7644481","47.104339"],["-120.7639881","47.1036402"],["-120.7611856","47.0975583"],["-120.7608324","47.097035"],["-120.760482","47.0965903"],["-120.7598729","47.0959941"],["-120.758847","47.0952655"],["-120.7558578","47.0933922"],["-120.754917","47.092875"],["-120.7542692","47.0925787"],["-120.7536275","47.0923884"],["-120.7527191","47.0921732"],["-120.7505387","47.0919063"],["-120.7494415","47.0917697"],["-120.7485167","47.0916203"],["-120.747702","47.0913857"],["-120.7468337","47.0910889"],["-120.745943","47.0906818"],["-120.7449742","47.0900794"],["-120.7441989","47.0894942"],["-120.7433828","47.0887651"],["-120.7429095","47.0881536"],["-120.7424842","47.0874908"],["-120.7418577","47.086311"],["-120.7413164","47.0853364"],["-120.7408913","47.0847875"],["-120.7403196","47.0842351"],["-120.7395795","47.083718"],["-120.7384932","47.0831595"],["-120.7337764","47.0813844"],["-120.7322476","47.0808484"],["-120.7245784","47.0789103"],["-120.7238204","47.0786538"],["-120.7231038","47.0783486"],["-120.7219846","47.0776739"],["-120.7205713","47.0768051"],["-120.718769","47.0757004"],["-120.7177856","47.075133"],["-120.7143697","47.0734582"],["-120.6919836","47.0628676"],["-120.6907402","47.0623955"],["-120.681466","47.0592436"],["-120.6618639","47.0526279"],["-120.6548591","47.050261"],["-120.6316241","47.0408893"],["-120.6301649","47.0402326"],["-120.6293665","47.0397174"],["-120.6286863","47.0392216"],["-120.6279284","47.0385267"],["-120.6272659","47.037773"],["-120.626805","47.0370951"],["-120.6264361","47.0364698"],["-120.6260634","47.0357186"],["-120.6254753","47.0346636"],["-120.6250527","47.034031"],["-120.6245641","47.0333732"],["-120.6238693","47.0325574"],["-120.623057","47.0317103"],["-120.6191477","47.0282759"],["-120.6028517","47.0140308"],["-120.5884085","47.0037703"],["-120.5868811","47.0025305"],["-120.5735234","46.9915672"],["-120.56928","46.9880785"],["-120.5562851","46.9774388"],["-120.5553304","46.9768429"],["-120.5538312","46.9762151"],["-120.5531504","46.975985"],["-120.5520966","46.9756899"],["-120.5509651","46.9754463"],["-120.5249244","46.9707138"],["-120.5236684","46.9705067"],["-120.5205318","46.9701344"],["-120.5189036","46.9700487"],["-120.5168461","46.9699927"],["-120.5147948","46.9699536"],["-120.5140408","46.9698791"],["-120.5134931","46.9697815"],["-120.5128846","46.9696389"],["-120.5122923","46.9694428"],["-120.511801","46.9692406"],["-120.5113893","46.9690353"],["-120.5107952","46.9686678"],["-120.5104656","46.9684303"],["-120.5101151","46.9681236"],["-120.5098252","46.9678383"],["-120.5096264","46.9675957"],["-120.5093024","46.9670627"],["-120.5076997","46.9641162"],["-120.5075063","46.9636718"],["-120.5073093","46.9631843"],["-120.5071238","46.9625874"],["-120.5069028","46.9616778"],["-120.5068159","46.9607544"],["-120.5068269","46.9599914"],["-120.5069249","46.959255"],["-120.5076147","46.9565248"],["-120.5079421","46.9546118"],["-120.5078605","46.9472517"],["-120.5076219","46.9396719"],["-120.5070797","46.9377095"],["-120.5065204","46.9363436"],["-120.5058368","46.9350582"],["-120.5045316","46.9333232"],["-120.4994878","46.9273895"],["-120.49867","46.926411"],["-120.4972943","46.9249167"],["-120.4962168","46.9238601"],["-120.4954185","46.9233396"],["-120.4940685","46.9225854"],["-120.489275","46.9206474"],["-120.487319","46.9195858"],["-120.4852807","46.9179151"],["-120.4835346","46.9164725"],["-120.4820093","46.9154242"],["-120.4799663","46.9145028"],["-120.4672973","46.9094682"],["-120.4525175","46.9004917"],["-120.4508369","46.8989629"],["-120.4484099","46.8965564"],["-120.4479466","46.8960094"],["-120.4473757","46.8953964"],["-120.4470414","46.8951109"],["-120.446619","46.8948016"],["-120.445304","46.8939028"],["-120.4436712","46.893035"],["-120.4413976","46.8922755"],["-120.4365404","46.891122"],["-120.4347088","46.8905169"],["-120.4326621","46.8896138"],["-120.4316797","46.8890465"],["-120.4300823","46.8879856"],["-120.4286135","46.8866449"],["-120.4266748","46.8840751"],["-120.4257119","46.8817494"],["-120.4249582","46.8795441"],["-120.4240027","46.8768419"],["-120.4233132","46.875156"],["-120.4222503","46.8735173"],["-120.4211199","46.8723855"],["-120.4194172","46.8710987"],["-120.41685","46.8697174"],["-120.4008384","46.8621272"],["-120.3999091","46.8616097"],["-120.3991766","46.8610938"],["-120.3984746","46.8605152"],["-120.3979147","46.8599783"],["-120.397358","46.8593093"],["-120.396705","46.8583633"],["-120.3963349","46.8576042"],["-120.3959354","46.8563684"],["-120.3951527","46.8537934"],["-120.3945182","46.8523288"],["-120.3935054","46.8509213"],["-120.3922399","46.8496865"],["-120.3907517","46.8487555"],["-120.3894829","46.8481675"],["-120.3890052","46.8479786"],["-120.3801693","46.845008"],["-120.3798097","46.8448736"],["-120.3795102","46.8447538"],["-120.379152","46.8445988"],["-120.3788606","46.8444631"],["-120.3785464","46.8443075"],["-120.3782155","46.8441288"],["-120.3779399","46.8439764"],["-120.3775357","46.8437413"],["-120.3773671","46.843636"],["-120.3771517","46.8434934"],["-120.3768901","46.8433117"],["-120.3766532","46.8431378"],["-120.376412","46.8429533"],["-120.3762066","46.8427838"],["-120.3760131","46.8426169"],["-120.3758104","46.8424332"],["-120.3756234","46.8422534"],["-120.3754229","46.8420515"],["-120.3752609","46.8418775"],["-120.3749356","46.8415002"],["-120.3747992","46.841329"],["-120.3746826","46.841173"],["-120.3656947","46.8277203"],["-120.3636443","46.8251151"],["-120.3613272","46.8225125"],["-120.3597862","46.8208433"],["-120.3587071","46.8197009"],["-120.3571946","46.818083"],["-120.3548513","46.8155443"],["-120.3544856","46.8150724"],["-120.354206","46.8146312"],["-120.3540586","46.8142412"],["-120.3539671","46.8138385"],["-120.3538756","46.81333"],["-120.3538949","46.8127276"],["-120.3539792","46.812211"],["-120.3541215","46.8117537"],["-120.3543992","46.8112356"],["-120.355058","46.8102867"],["-120.3611268","46.8034192"],["-120.3615338","46.8028285"],["-120.3618482","46.801879"],["-120.3619015","46.801402"],["-120.3618907","46.8011029"],["-120.361816","46.8006777"],["-120.3616397","46.800242"],["-120.3609935","46.7990589"],["-120.3592605","46.7965925"],["-120.3587527","46.7958157"],["-120.3585235","46.7953653"],["-120.3584429","46.7950532"],["-120.3583781","46.7947375"],["-120.3583432","46.7942369"],["-120.3583933","46.7938061"],["-120.3585482","46.7931629"],["-120.3588121","46.7926325"],["-120.3589747","46.7924061"],["-120.3591141","46.792235"],["-120.3594062","46.7919029"],["-120.35969","46.7916472"],["-120.3606827","46.7908768"],["-120.3618642","46.7903096"],["-120.3629337","46.7897362"],["-120.3646607","46.7887067"],["-120.3664438","46.7876872"],["-120.3679308","46.7866471"],["-120.3690584","46.7858137"],["-120.3698653","46.7851876"],["-120.3708836","46.7842082"],["-120.3715611","46.7834376"],["-120.3727286","46.7819908"],["-120.3737234","46.7805587"],["-120.3745104","46.7791193"],["-120.3752907","46.7768205"],["-120.37672","46.7718955"],["-120.3768514","46.7713293"],["-120.3772621","46.7699962"],["-120.3775126","46.7691451"],["-120.3778038","46.7681597"],["-120.3780462","46.7673284"],["-120.3783382","46.7662759"],["-120.3789772","46.7640279"],["-120.3797849","46.7612083"],["-120.3802327","46.7600563"],["-120.3808832","46.7589508"],["-120.3818417","46.7576677"],["-120.3830748","46.7565442"],["-120.3855184","46.7544462"],["-120.3860891","46.7538983"],["-120.3870118","46.7531381"],["-120.3876963","46.7525867"],["-120.3882017","46.752143"],["-120.3885488","46.7518033"],["-120.3888276","46.7514811"],["-120.3890992","46.7511429"],["-120.3893719","46.750768"],["-120.3896303","46.7503553"],["-120.3898205","46.75001"],["-120.3899996","46.7496474"],["-120.3901595","46.7492585"],["-120.3902839","46.7489092"],["-120.3903956","46.7484845"],["-120.390491","46.7480604"],["-120.3905927","46.7472629"],["-120.3906174","46.7467404"],["-120.3905926","46.746225"],["-120.390528","46.7457338"],["-120.3903526","46.745159"],["-120.3899839","46.7442679"],["-120.3872873","46.7391125"],["-120.3864147","46.7374956"],["-120.3858767","46.7364177"],["-120.3856224","46.7357621"],["-120.3854053","46.7350117"],["-120.3852931","46.7344191"],["-120.3852561","46.7338449"],["-120.3853193","46.73314"],["-120.3853819","46.7327122"],["-120.385479","46.7323138"],["-120.3857104","46.7318067"],["-120.3859409","46.7313399"],["-120.386549","46.7303725"],["-120.3873215","46.7294345"],["-120.3880428","46.7287468"],["-120.3888207","46.728086"],["-120.3896903","46.7275026"],["-120.3909463","46.7268953"],["-120.3924502","46.7262821"],["-120.3937915","46.725933"],["-120.3954167","46.7256092"],["-120.3964615","46.7254823"],["-120.3976615","46.7254422"],["-120.4006482","46.7254763"],["-120.40196","46.7253479"],["-120.4031798","46.7250997"],["-120.4045319","46.7245378"],["-120.4051579","46.7242052"],["-120.4056772","46.7238493"],["-120.406391","46.723227"],["-120.4070179","46.7224754"],["-120.4107311","46.7168222"],["-120.4115427","46.7157008"],["-120.411834","46.7154009"],["-120.4120911","46.7151856"],["-120.4123671","46.7149776"],["-120.4126163","46.7147996"],["-120.4128827","46.7146409"],["-120.4132035","46.7144738"],["-120.4138965","46.7141823"],["-120.4142775","46.7140539"],["-120.4147929","46.7139121"],["-120.4161247","46.7137071"],["-120.423953","46.7133088"],["-120.4264666","46.7130862"],["-120.4279458","46.7128181"],["-120.4295051","46.7124"],["-120.4309853","46.711898"],["-120.4328397","46.7110475"],["-120.4343594","46.7101194"],["-120.4353055","46.7094274"],["-120.436201","46.7086221"],["-120.4368829","46.7078421"],["-120.4375344","46.7069865"],["-120.4387494","46.7045907"],["-120.4401318","46.7016825"],["-120.4418984","46.6978341"],["-120.4421292","46.6974971"],["-120.4423646","46.6971955"],["-120.4426709","46.6968706"],["-120.4432627","46.6963268"],["-120.4443517","46.6957425"],["-120.4541522","46.6917891"],["-120.4560368","46.6909896"],["-120.4778252","46.6800927"],["-120.4789168","46.6794718"],["-120.4798398","46.6789124"],["-120.4806346","46.6783553"],["-120.4815896","46.6776085"],["-120.4826866","46.6766194"],["-120.483717","46.6755575"],["-120.4873801","46.6710435"],["-120.4958948","46.6603995"],["-120.4965224","46.659384"],["-120.4967502","46.6587657"],["-120.4968853","46.6581439"],["-120.4969337","46.6554409"],["-120.4969825","46.6525681"],["-120.4970613","46.6517674"],["-120.4972111","46.6512337"],["-120.4975208","46.6506181"],["-120.4980003","46.650005"],["-120.4985922","46.6494859"],["-120.4994888","46.6490325"],["-120.5024388","46.6477746"],["-120.5048093","46.6468118"],["-120.5061588","46.646263"],["-120.5096704","46.644744"],["-120.5158435","46.641841"],["-120.521635","46.6395189"],["-120.5223887","46.6391074"],["-120.5229752","46.6386622"],["-120.5234204","46.6381664"],["-120.5237411","46.6375518"],["-120.5238872","46.6369701"],["-120.5239061","46.6365889"],["-120.5238195","46.636193"],["-120.5236943","46.6358307"],["-120.5233879","46.635264"],["-120.5231489","46.6349843"],["-120.5224845","46.6344466"],["-120.518359","46.6316974"],["-120.5170747","46.6308566"],["-120.5149195","46.6293947"],["-120.5137195","46.6285923"],["-120.5130814","46.6282108"],["-120.5125387","46.6279734"],["-120.5107009","46.627346"],["-120.5071918","46.6260778"],["-120.4998053","46.6227448"],["-120.4985794","46.6220315"],["-120.4975985","46.621254"],["-120.4937486","46.6176907"],["-120.4931353","46.6170092"],["-120.4926601","46.6163115"],["-120.4922262","46.6154496"],["-120.491918","46.6147623"],["-120.4895072","46.6096185"],["-120.4888878","46.6086511"],["-120.4782358","46.5956826"],["-120.4767248","46.5937593"],["-120.4756953","46.5921113"],["-120.4749736","46.5902026"],["-120.4745863","46.5890968"],["-120.4741274","46.5878176"],["-120.4725893","46.5834063"],["-120.4724163","46.5828886"],["-120.4723125","46.582517"],["-120.4722389","46.5822161"],["-120.4721447","46.5816696"],["-120.4720685","46.5810779"],["-120.47202","46.5786543"],["-120.4720703","46.5701947"],["-120.4723973","46.5652948"],["-120.472457","46.564239"],["-120.4724539","46.5638935"],["-120.4724332","46.5635534"],["-120.4724036","46.5632699"],["-120.472372","46.5630137"],["-120.4723169","46.5626883"],["-120.4722446","46.5623253"],["-120.4721114","46.5618464"],["-120.4719298","46.5613359"],["-120.4715397","46.5603349"],["-120.470979","46.5588945"],["-120.4707962","46.5582924"],["-120.4706556","46.55775"],["-120.4705688","46.5573074"],["-120.4705038","46.5568526"],["-120.4704605","46.5563898"],["-120.4704661","46.5555122"],["-120.4707992","46.543126"],["-120.4718121","46.5343639"],["-120.4718211","46.5331133"],["-120.4709561","46.5264991"],["-120.4707425","46.5248013"],["-120.4705739","46.5240828"],["-120.470373","46.5235212"],["-120.4699966","46.5228635"],["-120.4694593","46.5222285"],["-120.4688274","46.5216904"],["-120.468073","46.5212151"],["-120.4671375","46.5207968"],["-120.4663433","46.5205163"],["-120.4656972","46.5203593"],["-120.4648603","46.5202194"],["-120.461907","46.5199259"],["-120.4606765","46.5197299"],["-120.4597944","46.5195242"],["-120.4590959","46.5192667"],["-120.4584312","46.5189624"],["-120.457833","46.5185824"],["-120.4572241","46.5181459"],["-120.4566674","46.5175839"],["-120.4552828","46.5156995"],["-120.4537779","46.513559"],["-120.4529543","46.5122857"],["-120.4525025","46.5114616"],["-120.4521768","46.5107054"],["-120.45012","46.5050692"],["-120.4495125","46.5039882"],["-120.4487183","46.5029625"],["-120.4479914","46.5022978"],["-120.4471483","46.5016725"],["-120.4459701","46.5009905"],["-120.4431847","46.4996187"],["-120.4416682","46.4987725"],["-120.4405695","46.4980917"],["-120.4393776","46.4972089"],["-120.4375309","46.4957766"],["-120.4358094","46.494544"],["-120.434496","46.4938178"],["-120.433713","46.4934384"],["-120.4324915","46.4929518"],["-120.4172099","46.4872644"],["-120.4151577","46.4864118"],["-120.4138799","46.4857394"],["-120.4127728","46.4850439"],["-120.4117296","46.4842912"],["-120.4077777","46.4808449"],["-120.3983659","46.4725323"],["-120.3974524","46.4717875"],["-120.3965132","46.4711347"],["-120.3948877","46.470205"],["-120.3928411","46.4692767"],["-120.3819185","46.4648309"],["-120.3798358","46.4639225"],["-120.3785614","46.4632483"],["-120.3773304","46.4625111"],["-120.3639773","46.4531114"],["-120.3620022","46.4518317"],["-120.3592644","46.4503207"],["-120.3534979","46.4473988"],["-120.349676","46.4454507"],["-120.3488372","46.4449168"],["-120.3481435","46.4443947"],["-120.3475368","46.443837"],["-120.3469393","46.443172"],["-120.3462719","46.4422094"],["-120.3457723","46.4412608"],["-120.345504","46.4402247"],["-120.3454289","46.4397488"],["-120.3454088","46.4389297"],["-120.3455626","46.435902"],["-120.3455328","46.4350451"],["-120.3454208","46.4342642"],["-120.3450218","46.4331854"],["-120.3443148","46.4320359"],["-120.342813","46.429825"],["-120.3405213","46.4265981"],["-120.3396594","46.4255088"],["-120.3390861","46.4248728"],["-120.338426","46.42426"],["-120.3377915","46.4236883"],["-120.3372154","46.4232436"],["-120.336569","46.4228129"],["-120.3357712","46.4223342"],["-120.3339801","46.4214235"],["-120.3300735","46.4196039"],["-120.3280689","46.4187527"],["-120.3266027","46.4182129"],["-120.3248213","46.417737"],["-120.3229163","46.4173604"],["-120.313595","46.4160784"],["-120.3113179","46.4156218"],["-120.2943984","46.4120422"],["-120.2918786","46.411433"],["-120.2910272","46.4111167"],["-120.2901826","46.4107237"],["-120.2894477","46.4103023"],["-120.2888167","46.4098463"],["-120.2880388","46.4091353"],["-120.2862184","46.4072756"],["-120.2852934","46.406427"],["-120.2845035","46.4058534"],["-120.2837988","46.4053691"],["-120.2830305","46.404966"],["-120.2822203","46.404572"],["-120.280736","46.4039884"],["-120.2793462","46.4035899"],["-120.2684991","46.4012449"],["-120.2668686","46.400881"],["-120.2656772","46.4005458"],["-120.2644779","46.4001579"],["-120.263175","46.399672"],["-120.2564662","46.3965281"],["-120.2546516","46.3957616"],["-120.2536449","46.3954154"],["-120.2525564","46.3951205"],["-120.2513347","46.3948723"],["-120.2500431","46.39466"],["-120.2487992","46.394516"],["-120.2468931","46.3943334"],["-120.246338","46.3942608"],["-120.2455001","46.3940971"],["-120.2447248","46.3939014"],["-120.2439668","46.3936392"],["-120.2432062","46.3933291"],["-120.2424582","46.3929656"],["-120.2418229","46.392587"],["-120.225897","46.3819507"],["-120.2247418","46.3810953"],["-120.2234434","46.379982"],["-120.2220783","46.3786091"],["-120.2201901","46.3765884"],["-120.2175304","46.3737054"],["-120.2125339","46.3683647"],["-120.2100223","46.3659464"],["-120.2020106","46.3586425"],["-120.2007189","46.3576086"],["-120.1994808","46.3567731"],["-120.1978783","46.3557994"],["-120.1963703","46.3549662"],["-120.1948367","46.3542261"],["-120.1931876","46.3535474"],["-120.1868435","46.351261"],["-120.1859609","46.3509112"],["-120.1847905","46.350341"],["-120.1836993","46.3497198"],["-120.1762137","46.3445064"],["-120.1750376","46.3437089"],["-120.1732657","46.3426312"],["-120.1723232","46.3421391"],["-120.171212","46.3416135"],["-120.1695307","46.3409305"],["-120.1675306","46.3401866"],["-120.1657175","46.3396533"],["-120.1642268","46.3392697"],["-120.1627228","46.3389402"],["-120.1612848","46.3386794"],["-120.1598087","46.3384856"],["-120.157761","46.338304"],["-120.1537969","46.3382066"],["-120.1384492","46.3383026"],["-120.1356913","46.3381941"],["-120.134337","46.3379618"],["-120.13312","46.3376174"],["-120.1313785","46.3368346"],["-120.1274025","46.3346364"],["-120.125034","46.3333498"],["-120.1238145","46.3327813"],["-120.1221892","46.3321506"],["-120.1205603","46.3316146"],["-120.118829","46.3311712"],["-120.1173955","46.3308506"],["-120.1162171","46.3306631"],["-120.1153268","46.3305398"],["-120.1135762","46.3303794"],["-120.1124432","46.3303004"],["-120.1120688","46.3302767"],["-120.1103581","46.3301688"],["-120.1069117","46.3299501"],["-120.0906578","46.3289107"],["-120.0853745","46.3285474"],["-120.0847045","46.3284553"],["-120.0840272","46.3283231"],["-120.0829421","46.3280574"],["-120.0824424","46.3279037"],["-120.0819275","46.3277329"],["-120.0813153","46.32749"],["-120.0802277","46.3269879"],["-120.0758575","46.3249161"],["-120.0743411","46.3242775"],["-120.0721954","46.323492"],["-120.0684194","46.3225329"],["-120.0637399","46.3213141"],["-120.061359","46.3205382"],["-120.0596907","46.3198074"],["-120.0583408","46.3190437"],["-120.0571714","46.3182256"],["-120.0562093","46.3174217"],["-120.0479074","46.3099417"],["-120.0466803","46.3090101"],["-120.0457309","46.3084128"],["-120.0447371","46.3078893"],["-120.0435458","46.3073737"],["-120.0422645","46.3068888"],["-120.0416712","46.3066902"],["-120.0405448","46.3064071"],["-120.0389497","46.3061414"],["-120.0374266","46.3060024"],["-120.0351289","46.3059502"],["-119.9947548","46.3059171"],["-119.975767","46.3062878"],["-119.9746215","46.3062317"],["-119.9737507","46.3061074"],["-119.9728397","46.3059184"],["-119.9710419","46.3052708"],["-119.9702198","46.3048777"],["-119.968962","46.3040645"],["-119.9368854","46.2796951"],["-119.9338039","46.2772114"],["-119.9321851","46.2756377"],["-119.9298535","46.2731967"],["-119.9288232","46.2724104"],["-119.9278953","46.2718152"],["-119.9271024","46.2714231"],["-119.9261317","46.2710682"],["-119.9252764","46.2708204"],["-119.9195053","46.2695242"],["-119.8971732","46.2645669"],["-119.8958503","46.2641497"],["-119.8941156","46.2635235"],["-119.8928837","46.2629688"],["-119.8752668","46.2538608"],["-119.8732862","46.2528899"],["-119.8718993","46.2523421"],["-119.8703423","46.2517818"],["-119.8679049","46.2510791"],["-119.8307025","46.2411424"],["-119.8208975","46.2387487"],["-119.8191339","46.2382971"],["-119.8186092","46.2381158"],["-119.8178677","46.2378247"],["-119.81707","46.2374383"],["-119.8165936","46.2371728"],["-119.8161056","46.236847"],["-119.8027107","46.2275816"],["-119.8008546","46.2263443"],["-119.7996993","46.2256561"],["-119.7981318","46.2248518"],["-119.7966966","46.2241976"],["-119.7955098","46.2237095"],["-119.7943603","46.2232984"],["-119.7934366","46.2229998"],["-119.7924723","46.2227126"],["-119.790426","46.2221973"],["-119.7884531","46.2218111"],["-119.7873771","46.2216463"],["-119.7854669","46.2214176"],["-119.7841546","46.2213162"],["-119.7803852","46.221234"],["-119.7571642","46.2210885"],["-119.7563119","46.2210378"],["-119.755465","46.2209368"],["-119.754451","46.2207489"],["-119.7531284","46.220396"],["-119.7521091","46.2200028"],["-119.7512752","46.2196445"],["-119.7506269","46.2193179"],["-119.7498516","46.2188282"],["-119.7483422","46.2177792"],["-119.7456665","46.215903"],["-119.7407965","46.212588"],["-119.7399321","46.2120766"],["-119.7391855","46.2117543"],["-119.738314","46.211444"],["-119.7372779","46.2111811"],["-119.736555","46.2110619"],["-119.7358614","46.2109992"],["-119.7350435","46.2109497"],["-119.7342428","46.210964"],["-119.7335909","46.2110155"],["-119.7329872","46.2110988"],["-119.7324868","46.2111948"],["-119.7317513","46.2113606"],["-119.7311722","46.2115361"],["-119.7305644","46.2117549"],["-119.7293455","46.2123656"],["-119.7214965","46.2167119"],["-119.7203538","46.2172857"],["-119.7194928","46.2176794"],["-119.7183069","46.2181691"],["-119.7171512","46.2185803"],["-119.7160975","46.2189141"],["-119.7150893","46.2191855"],["-119.7140815","46.2194224"],["-119.7131404","46.2196159"],["-119.7119988","46.2198158"],["-119.7107412","46.2199849"],["-119.7096719","46.2200815"],["-119.7085941","46.2201546"],["-119.7075673","46.2201954"],["-119.7062548","46.2201872"],["-119.701117","46.2198664"],["-119.6961389","46.2195502"],["-119.6925411","46.2193322"],["-119.691741","46.2193476"],["-119.6908201","46.2194148"],["-119.6896498","46.2195911"],["-119.68856","46.2198403"],["-119.6835022","46.2213332"],["-119.6819033","46.2217755"],["-119.6802305","46.2220454"],["-119.677656","46.2224456"],["-119.6760002","46.2227371"],["-119.6751043","46.2229671"],["-119.6742499","46.2232423"],["-119.6735669","46.2234975"],["-119.6728143","46.2238506"],["-119.6720461","46.224294"],["-119.6714044","46.224716"],["-119.6707693","46.2252492"],["-119.6702866","46.2257291"],["-119.6697517","46.2264032"],["-119.6687452","46.2279325"],["-119.6679088","46.2292008"],["-119.6674668","46.2297209"],["-119.6667783","46.2303735"],["-119.6659815","46.2309763"],["-119.6652742","46.2314055"],["-119.6645278","46.2317794"],["-119.6627985","46.2324642"],["-119.6163643","46.2498284"],["-119.61258","46.2510554"],["-119.6067667","46.252714"],["-119.6007626","46.2542843"],["-119.5968028","46.2555511"],["-119.5927006","46.2573322"],["-119.5882643","46.2593153"],["-119.5859266","46.2602359"],["-119.5823422","46.2613311"],["-119.5698752","46.2648118"],["-119.562636","46.2667477"],["-119.5602402","46.2672419"],["-119.5586542","46.2674712"],["-119.5571433","46.2675706"],["-119.5550461","46.2675808"],["-119.5533008","46.2674899"],["-119.5517592","46.2673042"],["-119.5502791","46.2670485"],["-119.5243134","46.2615169"],["-119.514802","46.2597758"],["-119.4977718","46.2560081"],["-119.4796121","46.251498"],["-119.4784836","46.2512261"],["-119.4781091","46.2511524"],["-119.4777013","46.2510862"],["-119.4773441","46.2510367"],["-119.4765694","46.2509613"],["-119.4762174","46.2509382"],["-119.475699","46.2509222"],["-119.4752379","46.2509177"],["-119.4744226","46.2509437"],["-119.4739532","46.2509793"],["-119.4730146","46.2510952"],["-119.4725833","46.2511658"],["-119.4721","46.2512653"],["-119.471633","46.251374"],["-119.4712001","46.2514835"],["-119.4708077","46.2515987"],["-119.4658576","46.2533256"],["-119.4650698","46.2535665"],["-119.462973","46.2541486"],["-119.4605696","46.2546942"],["-119.4579789","46.2551459"],["-119.4417607","46.2572855"],["-119.4106912","46.26134"],["-119.4059442","46.2618517"],["-119.4035418","46.2619141"],["-119.4014724","46.2618679"],["-119.399367","46.2617562"],["-119.3969742","46.2614609"],["-119.393966","46.2609301"],["-119.3911057","46.2601897"],["-119.3878247","46.259083"],["-119.3849208","46.2577488"],["-119.3685858","46.2493827"],["-119.3667423","46.2482746"],["-119.3657139","46.2475465"],["-119.364724","46.2467338"],["-119.3641533","46.2461541"],["-119.3636285","46.2455968"],["-119.3632584","46.2451847"],["-119.3626675","46.244432"],["-119.3622557","46.2438535"],["-119.361869","46.243246"],["-119.361287","46.2421576"],["-119.3525253","46.2248396"],["-119.3507338","46.2216005"],["-119.3490419","46.2188778"],["-119.3474473","46.2163626"],["-119.3466992","46.2151912"],["-119.3458346","46.2139707"],["-119.3448941","46.212778"],["-119.3435637","46.2112571"],["-119.3421324","46.2098497"],["-119.3403116","46.2082839"],["-119.3382988","46.206763"],["-119.3362125","46.2053551"],["-119.3335846","46.203847"],["-119.3309333","46.202542"],["-119.3272406","46.2010408"],["-119.3244153","46.200151"],["-119.3221055","46.1995006"],["-119.3191726","46.1988713"],["-119.3164245","46.1984077"],["-119.3135692","46.1980237"],["-119.3105807","46.1978048"],["-119.306815","46.1977111"],["-119.2807074","46.1974102"],["-119.2783479","46.1972593"],["-119.2766399","46.1970349"],["-119.2751118","46.1967152"],["-119.2735696","46.1963158"],["-119.272143","46.1958305"],["-119.2707523","46.1952498"],["-119.2545566","46.1873"],["-119.2363738","46.1784004"],["-119.2348009","46.17777"],["-119.2331523","46.1771321"],["-119.2309725","46.1764036"],["-119.2289634","46.175913"],["-119.2281552","46.1757561"],["-119.2270404","46.1755437"],["-119.2258051","46.1753167"],["-119.2167092","46.1741167"],["-119.2145821","46.1737711"],["-119.2131275","46.1734292"],["-119.211713","46.1729875"],["-119.2101882","46.1723869"],["-119.2086902","46.1716667"],["-119.2075178","46.1709664"],["-119.2063134","46.1701134"],["-119.2051866","46.1691194"],["-119.2044432","46.1683181"],["-119.203869","46.1675508"],["-119.2035427","46.1670778"],["-119.2032199","46.1665614"],["-119.2029047","46.1659987"],["-119.2025063","46.1650516"],["-119.2023884","46.1646945"],["-119.202271","46.1642432"],["-119.2021587","46.163761"],["-119.2020106","46.162975"],["-119.2019601","46.1617778"],["-119.2022948","46.1399783"],["-119.2023091","46.1380438"],["-119.2024618","46.1282417"],["-119.2025844","46.1215953"],["-119.2027144","46.1190964"],["-119.2029021","46.1182808"],["-119.2034641","46.1166418"],["-119.2041741","46.1153097"],["-119.2050052","46.1141551"],["-119.2070921","46.1118311"],["-119.2133138","46.1050675"],["-119.2201449","46.0972151"],["-119.2216519","46.0952658"],["-119.2223813","46.0939554"],["-119.2228021","46.0930232"],["-119.2232569","46.0916766"],["-119.22346","46.0908167"],["-119.2236051","46.0900602"],["-119.2237029","46.0888455"],["-119.2236775","46.0875486"],["-119.2234916","46.0862491"],["-119.2224822","46.0809757"],["-119.2222669","46.079161"],["-119.2222148","46.0774263"],["-119.2224643","46.0747452"],["-119.2228636","46.0728135"],["-119.2235433","46.0702705"],["-119.2238249","46.0689021"],["-119.2239078","46.0678053"],["-119.2238856","46.0664705"],["-119.2237532","46.0644519"],["-119.2237082","46.0628162"],["-119.2242154","46.0555231"],["-119.2250911","46.0235227"],["-119.2251665","46.0225587"],["-119.2252188","46.0221792"],["-119.2253112","46.02172"],["-119.2254692","46.0212105"],["-119.2257302","46.0203858"],["-119.2258509","46.0200048"],["-119.2260629","46.0194685"],["-119.2263739","46.0188099"],["-119.2268016","46.0180198"],["-119.2271556","46.0174127"],["-119.2275203","46.0168637"],["-119.2279555","46.016265"],["-119.228521","46.015614"],["-119.2296312","46.0144613"],["-119.2302747","46.0138452"],["-119.2313145","46.0130249"],["-119.2320666","46.0124749"],["-119.232837","46.0119594"],["-119.2334783","46.0115775"],["-119.2341845","46.0111968"],["-119.234877","46.0108496"],["-119.2557245","46.0010089"],["-119.2564861","46.0006596"],["-119.257506","46.0002177"],["-119.2587205","45.9997746"],["-119.2598997","45.9993956"],["-119.2605228","45.9992264"],["-119.2613134","45.9990303"],["-119.2620011","45.9988793"],["-119.2627761","45.9987237"],["-119.2640066","45.9985347"],["-119.2679481","45.9979896"],["-119.2695386","45.9977319"],["-119.2701833","45.9976069"],["-119.271913","45.9972224"],["-119.2743612","45.9965409"],["-119.292785","45.9911647"],["-119.2957179","45.990213"],["-119.2980164","45.9893617"],["-119.306695","45.9860671"],["-119.309714","45.9849401"],["-119.3108938","45.9845972"],["-119.312085","45.9843156"],["-119.3127753","45.9841806"],["-119.313465","45.9840814"],["-119.3172366","45.9836604"],["-119.3189555","45.98338"],["-119.3202834","45.9830778"],["-119.3218936","45.9826267"],["-119.323061","45.9822228"],["-119.3239048","45.9818848"],["-119.3247847","45.9814769"],["-119.3256673","45.9810303"],["-119.326888","45.9803337"],["-119.3331441","45.9765536"],["-119.3339043","45.9760373"],["-119.3344623","45.9756189"],["-119.3353315","45.974909"],["-119.3367185","45.9734815"],["-119.3396576","45.9701656"],["-119.3410061","45.9684276"],["-119.3415511","45.9674614"],["-119.3419973","45.9665206"],["-119.342257","45.965756"],["-119.3424423","45.9650127"],["-119.3425778","45.9642901"],["-119.3426897","45.9624725"],["-119.3426596","45.9619517"],["-119.3425212","45.9611226"],["-119.3422913","45.9601143"],["-119.3420814","45.9594792"],["-119.3416396","45.9584156"],["-119.3410882","45.9572644"],["-119.3356446","45.9459729"],["-119.3348313","45.944295"],["-119.3337124","45.9419601"],["-119.3326103","45.9396682"],["-119.3268088","45.9276489"],["-119.3256278","45.9252438"],["-119.3251832","45.9244744"],["-119.3246952","45.9237235"],["-119.3228284","45.9210635"],["-119.322253","45.9202897"],["-119.3219257","45.9197412"],["-119.3217327","45.919299"],["-119.3216284","45.9189576"],["-119.3215298","45.9185355"],["-119.3214904","45.9181459"],["-119.3214878","45.9178179"],["-119.321544","45.9173523"],["-119.3216261","45.9169192"],["-119.3217865","45.9164613"],["-119.3220594","45.915926"],["-119.3224228","45.9154422"],["-119.3229236","45.9148514"],["-119.3249471","45.912556"],["-119.3305301","45.9061357"],["-119.3313292","45.9050133"],["-119.331743","45.9040943"],["-119.3319739","45.9032925"],["-119.3321081","45.9023517"],["-119.3320344","45.9013126"],["-119.3318199","45.9003784"],["-119.3311517","45.8985234"],["-119.3305812","45.8969007"],["-119.3302372","45.8957793"],["-119.3299818","45.894793"],["-119.3297606","45.893749"],["-119.3296039","45.8927876"],["-119.3294583","45.8914392"],["-119.32941","45.889107"],["-119.3295195","45.887377"],["-119.3296805","45.8861094"],["-119.3299335","45.8848805"],["-119.3304286","45.883024"],["-119.3309264","45.8816026"],["-119.331549","45.8801395"],["-119.3325638","45.8781611"],["-119.3338718","45.876128"],["-119.3352401","45.8743071"],["-119.3365686","45.8727469"],["-119.338054","45.8712297"],["-119.3400306","45.8695096"],["-119.378061","45.840009"],["-119.3788578","45.8393666"],["-119.3794022","45.8388772"],["-119.3798964","45.8383851"],["-119.3803856","45.8378514"],["-119.3813436","45.8366498"],["-119.3817468","45.8360755"],["-119.3821235","45.8355165"],["-119.3823905","45.8350214"],["-119.382679","45.8344143"],["-119.3829394","45.8338198"],["-119.3831916","45.8331187"],["-119.3834392","45.8323143"],["-119.38358","45.8316852"],["-119.3836821","45.8309284"],["-119.3837645","45.8271909"],["-119.3838065","45.8055836"],["-119.3838857","45.8048873"],["-119.3840383","45.8042871"],["-119.3842217","45.8038575"],["-119.38446","45.8034416"],["-119.3847675","45.8030249"],["-119.3850777","45.8026757"],["-119.3855718","45.8022038"],["-119.3861363","45.8017691"],["-119.386819","45.8012976"],["-119.3914872","45.7982365"],["-119.3923658","45.7975573"],["-119.3928827","45.796791"],["-119.3930586","45.7959473"],["-119.3929135","45.7952599"],["-119.3925717","45.7947032"],["-119.3921591","45.7943172"],["-119.3916567","45.7939864"],["-119.3910908","45.7937487"],["-119.3904826","45.7935581"],["-119.3896853","45.7934501"],["-119.3887574","45.7934423"],["-119.3870351","45.7935673"],["-119.385809","45.7936084"],["-119.3829712","45.7933659"],["-119.3759165","45.7921479"],["-119.3733661","45.7917202"],["-119.3732965","45.7917081"],["-119.3722731","45.7915365"],["-119.213909","45.7644725"],["-119.0913488","45.7431993"],["-119.0874206","45.7421799"],["-119.0834154","45.740916"],["-119.079988","45.7398146"],["-118.8880319","45.6773476"],["-118.8840594","45.6762799"],["-118.8815712","45.6758639"],["-118.8790284","45.6756803"],["-118.8762031","45.6756495"],["-118.8736009","45.6758865"],["-118.871038","45.6763314"],["-118.8695111","45.6767091"],["-118.8674885","45.6773088"],["-118.8647676","45.6781655"],["-118.8627697","45.6786588"],["-118.8607056","45.6788935"],["-118.8591001","45.6789699"],["-118.8571018","45.6788703"],["-118.8558161","45.6787062"],["-118.8546424","45.6785007"],["-118.8522099","45.6778223"],["-118.8171525","45.6663633"],["-118.8057703","45.6626686"],["-118.8010793","45.6612458"],["-118.7999657","45.6610296"],["-118.7990564","45.6609076"],["-118.7981984","45.6608264"],["-118.7971643","45.6607859"],["-118.796","45.6607996"],["-118.7949149","45.6608622"],["-118.7910529","45.6613584"],["-118.7877074","45.6618099"],["-118.7815384","45.6626888"],["-118.7685682","45.6644858"],["-118.7669626","45.6646657"],["-118.7664256","45.6646967"],["-118.765883","45.664702"],["-118.7651382","45.6646816"],["-118.764167","45.664603"],["-118.7616457","45.6641958"],["-118.7127312","45.6556286"],["-118.7121384","45.655494"],["-118.71157","45.6553417"],["-118.7110322","45.6551767"],["-118.710407","45.6549494"],["-118.7098358","45.6547171"],["-118.7092926","45.6544555"],["-118.7086883","45.6541357"],["-118.7079074","45.6536503"],["-118.6923211","45.6435076"],["-118.6909204","45.6425947"],["-118.6561048","45.6199622"],["-118.6555431","45.6195823"],["-118.6550851","45.6192511"],["-118.6545489","45.6188284"],["-118.6540518","45.6183767"],["-118.6535658","45.6178963"],["-118.6531485","45.6174173"],["-118.6527844","45.6169591"],["-118.6524976","45.6165574"],["-118.6522807","45.6162199"],["-118.6520483","45.6158434"],["-118.6516428","45.6150935"],["-118.6513905","45.6145635"],["-118.6511834","45.6140536"],["-118.6509952","45.6135434"],["-118.6508053","45.6129312"],["-118.6506576","45.6123327"],["-118.650522","45.6116334"],["-118.6504044","45.6107193"],["-118.6497481","45.6051291"],["-118.6496813","45.6046911"],["-118.6496235","45.6044205"],["-118.6495688","45.6042464"],["-118.6494808","45.6040229"],["-118.6493496","45.6037749"],["-118.6491586","45.6035219"],["-118.6489394","45.6032822"],["-118.6487153","45.6030865"],["-118.648471","45.6029117"],["-118.6482194","45.602761"],["-118.6479595","45.6026328"],["-118.6476412","45.6025008"],["-118.6472468","45.6023661"],["-118.6467726","45.6022288"],["-118.640332","45.6006164"],["-118.6398536","45.6004854"],["-118.6394519","45.6003564"],["-118.6391983","45.6002518"],["-118.6389652","45.6001324"],["-118.6387746","45.6000105"],["-118.6385971","45.5998626"],["-118.6384651","45.5997302"],["-118.6383316","45.5995527"],["-118.6382197","45.5993674"],["-118.6381501","45.5991793"],["-118.6381215","45.5990643"],["-118.6381016","45.5988895"],["-118.638107","45.5986657"],["-118.6381562","45.5984477"],["-118.6382275","45.598279"],["-118.6383492","45.5980622"],["-118.6384725","45.5978984"],["-118.6386639","45.5977253"],["-118.6388767","45.5975632"],["-118.6391051","45.5974291"],["-118.6393678","45.5973118"],["-118.6396834","45.5972112"],["-118.6399484","45.5971513"],["-118.6402845","45.5971064"],["-118.6406282","45.5970927"],["-118.6409831","45.5970992"],["-118.642199","45.5971591"],["-118.6426834","45.5971729"],["-118.6430216","45.5971566"],["-118.6433687","45.5971212"],["-118.643778","45.5970381"],["-118.6441029","45.5969484"],["-118.6443688","45.5968552"],["-118.6446372","45.5967383"],["-118.6448942","45.5966057"],["-118.645135","45.5964472"],["-118.6453323","45.5962991"],["-118.6455251","45.5961161"],["-118.6456711","45.595956"],["-118.6458294","45.595744"],["-118.6459359","45.595541"],["-118.6460268","45.5953352"],["-118.6460993","45.5950864"],["-118.6461305","45.5948801"],["-118.646132","45.5946353"],["-118.6461058","45.5944088"],["-118.6460373","45.594172"],["-118.6459623","45.5939795"],["-118.6457971","45.593686"],["-118.6456151","45.5934302"],["-118.6446075","45.5923165"],["-118.639829","45.5870526"],["-118.6396276","45.5868177"],["-118.6394677","45.5866116"],["-118.6393016","45.5863352"],["-118.6392015","45.586116"],["-118.6391336","45.5858604"],["-118.6391057","45.5855548"],["-118.6391095","45.5853137"],["-118.6391329","45.5851337"],["-118.6391906","45.5849545"],["-118.6392503","45.5847872"],["-118.6393501","45.5845983"],["-118.6394989","45.584382"],["-118.6396544","45.5841838"],["-118.6398325","45.584012"],["-118.6400634","45.5838256"],["-118.640396","45.5836175"],["-118.6409325","45.5833381"],["-118.6420925","45.5827722"],["-118.6424063","45.5825923"],["-118.642585","45.5824626"],["-118.6427965","45.5822845"],["-118.6429441","45.5821261"],["-118.6430676","45.5819493"],["-118.6431785","45.5817428"],["-118.643241","45.5815304"],["-118.6432857","45.5812959"],["-118.6432632","45.5810656"],["-118.6432336","45.5808456"],["-118.6431778","45.5806823"],["-118.6430897","45.5804987"],["-118.6429308","45.5802776"],["-118.6427587","45.5800791"],["-118.6425383","45.5798959"],["-118.6422566","45.5797263"],["-118.6420552","45.5796231"],["-118.6418056","45.579527"],["-118.6414905","45.5794295"],["-118.6412466","45.5793785"],["-118.6410268","45.5793484"],["-118.6407827","45.579332"],["-118.6404974","45.5793362"],["-118.6401743","45.5793609"],["-118.6398624","45.5794122"],["-118.6390963","45.5796009"],["-118.6346052","45.580846"],["-118.634301","45.5809073"],["-118.6340275","45.5809495"],["-118.633816","45.5809632"],["-118.6334999","45.5809644"],["-118.6331839","45.5809369"],["-118.6328511","45.5808749"],["-118.6325626","45.5807838"],["-118.632276","45.5806674"],["-118.6320344","45.5805341"],["-118.6317683","45.5803403"],["-118.6315622","45.5801273"],["-118.631417","45.5799218"],["-118.6313157","45.57971"],["-118.6312406","45.5794795"],["-118.6312027","45.5791732"],["-118.6312017","45.5785349"],["-118.6312056","45.578234"],["-118.6311893","45.5780705"],["-118.6311569","45.5778789"],["-118.6310929","45.5776977"],["-118.6310126","45.577546"],["-118.6308855","45.5773552"],["-118.6307134","45.5771567"],["-118.6304975","45.5769778"],["-118.6302479","45.5768233"],["-118.6299407","45.5766815"],["-118.6296592","45.576589"],["-118.6293995","45.5765175"],["-118.6290793","45.5764658"],["-118.6287333","45.576452"],["-118.6283981","45.5764657"],["-118.6280993","45.5765099"],["-118.6277416","45.576594"],["-118.6273738","45.5767211"],["-118.6256251","45.5775771"],["-118.6220296","45.5793711"],["-118.6186384","45.5810617"],["-118.6182567","45.58122"],["-118.6178291","45.5813858"],["-118.6174182","45.5814938"],["-118.6170421","45.5815546"],["-118.6166006","45.5816001"],["-118.616068","45.5816203"],["-118.6131952","45.5815852"],["-118.6127115","45.5816009"],["-118.6122423","45.5816423"],["-118.6117431","45.5817072"],["-118.6112481","45.5818064"],["-118.6108786","45.5819084"],["-118.6105055","45.5820473"],["-118.6099826","45.5822795"],["-118.6087024","45.5829057"],["-118.6083546","45.583046"],["-118.6080599","45.5831478"],["-118.6077817","45.5832083"],["-118.6075267","45.5832496"],["-118.6072358","45.5832624"],["-118.6069207","45.583251"],["-118.6066071","45.5832103"],["-118.6063263","45.58315"],["-118.606071","45.5830819"],["-118.6058074","45.5829617"],["-118.6055567","45.5828185"],["-118.6053003","45.5826286"],["-118.6051183","45.5824542"],["-118.6049656","45.5822717"],["-118.6048374","45.5820652"],["-118.604721","45.5817872"],["-118.6045196","45.5811062"],["-118.6043006","45.5805539"],["-118.6041269","45.5801469"],["-118.6040043","45.5799462"],["-118.6038926","45.5798174"],["-118.6037162","45.5796428"],["-118.6035099","45.5794869"],["-118.6032473","45.5793361"],["-118.6030299","45.5792361"],["-118.602778","45.5791428"],["-118.6024457","45.5790681"],["-118.6019987","45.5790175"],["-118.6015909","45.5790055"],["-118.5997154","45.5791287"],["-118.5943888","45.5795125"],["-118.5925192","45.5796646"],["-118.5914518","45.5797806"],["-118.590066","45.5799755"],["-118.5885202","45.5802643"],["-118.5874868","45.5804969"],["-118.5863883","45.5807743"],["-118.5855429","45.5810154"],["-118.5842119","45.581434"],["-118.58357","45.5816661"],["-118.5826654","45.5820075"],["-118.5820074","45.5822765"],["-118.5812324","45.5826088"],["-118.5783528","45.5840332"],["-118.5769592","45.5846836"],["-118.5760295","45.5850566"],["-118.575106","45.5853947"],["-118.5739078","45.5857661"],["-118.5728768","45.5860525"],["-118.5716816","45.586318"],["-118.5684505","45.5868855"],["-118.5175122","45.5956453"],["-118.5168955","45.5957871"],["-118.5162911","45.5959424"],["-118.5156523","45.5961329"],["-118.5149497","45.5963626"],["-118.5142522","45.5966154"],["-118.5135624","45.5968811"],["-118.512944","45.5971475"],["-118.5122414","45.5974932"],["-118.5107891","45.598246"],["-118.5101054","45.5985983"],["-118.5095812","45.5988361"],["-118.5087686","45.5991735"],["-118.5082135","45.5993554"],["-118.5078642","45.5994601"],["-118.5075263","45.5995525"],["-118.5067847","45.5997198"],["-118.5060858","45.599848"],["-118.5056748","45.5999058"],["-118.5052803","45.5999497"],["-118.5046386","45.6000043"],["-118.5042954","45.6000226"],["-118.503415","45.6000283"],["-118.502997","45.6000142"],["-118.5026357","45.5999934"],["-118.5023008","45.5999594"],["-118.5014135","45.5998368"],["-118.5005523","45.5996542"],["-118.4746024","45.5924194"],["-118.4730764","45.5919113"],["-118.4722663","45.5916175"],["-118.4697044","45.5905971"],["-118.4687451","45.5901699"],["-118.4674579","45.5895483"],["-118.4614303","45.5864495"],["-118.4606213","45.5859933"],["-118.4600526","45.5856352"],["-118.4594103","45.585193"],["-118.4588436","45.584756"],["-118.4581403","45.5841487"],["-118.4576009","45.5836161"],["-118.4571438","45.5831328"],["-118.4566786","45.5825682"],["-118.4562403","45.5819746"],["-118.4558347","45.5813362"],["-118.4555096","45.5807435"],["-118.4552519","45.5802129"],["-118.4550534","45.5797569"],["-118.4549192","45.5793407"],["-118.4547937","45.578899"],["-118.4546702","45.5783482"],["-118.4545735","45.577796"],["-118.4544979","45.5772564"],["-118.4544761","45.5767909"],["-118.454484","45.5762933"],["-118.4545194","45.5757675"],["-118.4545707","45.5752464"],["-118.4546619","45.5747767"],["-118.4547553","45.5743543"],["-118.4549162","45.5738162"],["-118.4551507","45.5732018"],["-118.4558266","45.5717011"],["-118.4565959","45.5700654"],["-118.4573851","45.5684475"],["-118.4579069","45.5674095"],["-118.4585546","45.5660488"],["-118.4605997","45.5617392"],["-118.4630863","45.556526"],["-118.4635522","45.5555196"],["-118.4638988","45.5546789"],["-118.4642351","45.5538235"],["-118.4644398","45.5532465"],["-118.4646376","45.5524029"],["-118.4647679","45.5515365"],["-118.4648225","45.5509316"],["-118.4648461","45.5502851"],["-118.4648327","45.5495866"],["-118.4647675","45.5489346"],["-118.4646978","45.5483655"],["-118.4645985","45.5478361"],["-118.4644662","45.5472416"],["-118.4642807","45.5466524"],["-118.4640477","45.5460041"],["-118.4637765","45.5454095"],["-118.4635127","45.5448908"],["-118.4632526","45.5444113"],["-118.4629709","45.5439252"],["-118.4626882","45.5434873"],["-118.4623262","45.5429589"],["-118.4618985","45.5423652"],["-118.4615185","45.5419022"],["-118.4611858","45.5415346"],["-118.4601893","45.5405767"],["-118.4596312","45.5400856"],["-118.4571467","45.5380437"],["-118.4498495","45.531989"],["-118.4489624","45.5311408"],["-118.4479315","45.5300895"],["-118.4145454","45.4937855"],["-118.4130841","45.4921962"],["-118.3899077","45.467093"],["-118.3889543","45.4660685"],["-118.3882558","45.4652879"],["-118.3877356","45.4647205"],["-118.3806246","45.4569507"],["-118.3799433","45.4561051"],["-118.3797115","45.4557808"],["-118.379508","45.4554528"],["-118.3792942","45.455064"],["-118.3790663","45.4546084"],["-118.3788684","45.4541451"],["-118.3787537","45.4538178"],["-118.3786693","45.4535363"],["-118.3785955","45.4532669"],["-118.3785183","45.4528865"],["-118.3784464","45.4524897"],["-118.3783881","45.4519185"],["-118.3783587","45.4513273"],["-118.3783014","45.4504186"],["-118.3782659","45.4500714"],["-118.3782013","45.4496666"],["-118.3780915","45.4491194"],["-118.3779582","45.448631"],["-118.3777974","45.4481917"],["-118.3776062","45.4477231"],["-118.377403","45.4472908"],["-118.3772029","45.4469142"],["-118.3769659","45.4465334"],["-118.3766962","45.4461352"],["-118.3764157","45.4457599"],["-118.3757773","45.4450319"],["-118.3544341","45.4254913"],["-118.3535416","45.4245922"],["-118.353166","45.4241937"],["-118.3527171","45.4236979"],["-118.3519033","45.4227471"],["-118.3514157","45.422133"],["-118.3509779","45.4215558"],["-118.35057","45.4209921"],["-118.3404635","45.4065877"],["-118.3395286","45.4053597"],["-118.3391705","45.4049113"],["-118.3365764","45.401788"],["-118.3351899","45.4001551"],["-118.3346116","45.3995255"],["-118.3342238","45.3991319"],["-118.3336518","45.3986203"],["-118.3328141","45.39796"],["-118.3271697","45.394031"],["-118.3099791","45.3822181"],["-118.3091449","45.3815649"],["-118.3086713","45.3811579"],["-118.308203","45.38074"],["-118.3075937","45.3801504"],["-118.3023149","45.3748642"],["-118.301838","45.3744275"],["-118.3013306","45.3739923"],["-118.3008339","45.3735915"],["-118.3002101","45.3731319"],["-118.2994354","45.3726087"],["-118.2987145","45.3721506"],["-118.2980096","45.3717557"],["-118.2972369","45.3713542"],["-118.2946404","45.370149"],["-118.2936837","45.3697517"],["-118.2924928","45.369286"],["-118.2904262","45.3685642"],["-118.2705116","45.361835"],["-118.2700751","45.3616584"],["-118.2696173","45.36145"],["-118.2687093","45.3609746"],["-118.2681084","45.3605948"],["-118.2654334","45.3588275"],["-118.2649542","45.3585469"],["-118.2639908","45.3580294"],["-118.2518599","45.3519952"],["-118.2511939","45.3516376"],["-118.2505452","45.3512633"],["-118.2498967","45.3508597"],["-118.2493288","45.3504844"],["-118.248227","45.3496668"],["-118.2435821","45.3458027"],["-118.242928","45.3452757"],["-118.242425","45.3449456"],["-118.2419418","45.3446774"],["-118.2416063","45.3445124"],["-118.2412813","45.3443815"],["-118.2409327","45.3442542"],["-118.240539","45.3441308"],["-118.2401283","45.3440201"],["-118.2309273","45.3421851"],["-118.2304411","45.3421247"],["-118.2300202","45.3420986"],["-118.2295589","45.3421092"],["-118.2290848","45.3421621"],["-118.2286345","45.3422512"],["-118.2282303","45.3423727"],["-118.2279944","45.3424609"],["-118.2276939","45.3425926"],["-118.2274719","45.3427153"],["-118.2272415","45.3428575"],["-118.2268919","45.3431224"],["-118.226515","45.3434484"],["-118.2244574","45.3453393"],["-118.2241182","45.3456377"],["-118.2237452","45.3459492"],["-118.2233127","45.3462699"],["-118.2229701","45.3465032"],["-118.2226588","45.3466983"],["-118.2223285","45.3468879"],["-118.2219073","45.3471126"],["-118.2214257","45.3473381"],["-118.2209241","45.3475496"],["-118.2203834","45.3477531"],["-118.2197445","45.3479559"],["-118.2190157","45.3481513"],["-118.2179929","45.3483604"],["-118.2129115","45.3492668"],["-118.2118365","45.3494483"],["-118.2113609","45.3495086"],["-118.2109435","45.3495385"],["-118.2104853","45.3495419"],["-118.2099763","45.3495171"],["-118.2095183","45.3494618"],["-118.2090138","45.3493732"],["-118.2085484","45.3492573"],["-118.2081785","45.3491428"],["-118.207819","45.3490026"],["-118.2074729","45.3488569"],["-118.2056959","45.3480346"],["-118.2052555","45.3478485"],["-118.2048343","45.3477124"],["-118.2044574","45.3476116"],["-118.2041084","45.3475487"],["-118.2037283","45.3475096"],["-118.2033021","45.3474968"],["-118.2028873","45.3475157"],["-118.2025544","45.347552"],["-118.2022708","45.3476067"],["-118.2019418","45.347687"],["-118.2016832","45.3477658"],["-118.2014524","45.3478586"],["-118.2012259","45.3479594"],["-118.2009785","45.3480843"],["-118.2006491","45.3482983"],["-118.2003568","45.3485262"],["-118.2001406","45.3487239"],["-118.1998615","45.3490128"],["-118.1976578","45.3513803"],["-118.1974176","45.3516241"],["-118.1971869","45.3518327"],["-118.1969309","45.3520462"],["-118.1966434","45.3522486"],["-118.1963562","45.3524212"],["-118.1960138","45.3526053"],["-118.1955888","45.3527938"],["-118.1950758","45.3529823"],["-118.1903803","45.3544114"],["-118.1897638","45.35458"],["-118.1893651","45.3546519"],["-118.1889281","45.3546994"],["-118.1884475","45.3547186"],["-118.1879696","45.3546891"],["-118.1875518","45.3546302"],["-118.1871739","45.3545368"],["-118.1864781","45.3542904"],["-118.1836277","45.3530403"],["-118.1830112","45.3528304"],["-118.1825267","45.3526984"],["-118.1820172","45.3526062"],["-118.1814702","45.3525482"],["-118.1805432","45.3525078"],["-118.1739472","45.3524119"],["-118.1735174","45.3523872"],["-118.1731442","45.3523426"],["-118.1728156","45.35229"],["-118.1724245","45.3521979"],["-118.1719851","45.3520443"],["-118.1715699","45.3518763"],["-118.1712301","45.3516949"],["-118.170968","45.3514926"],["-118.1707562","45.3513074"],["-118.1705503","45.3510659"],["-118.1703828","45.3508364"],["-118.1702091","45.3505483"],["-118.1700197","45.3501698"],["-118.1697514","45.3496035"],["-118.1697174","45.3495279"],["-118.1689323","45.347834"],["-118.1686678","45.3473194"],["-118.1684319","45.3469448"],["-118.1681586","45.3465968"],["-118.1679014","45.3463391"],["-118.167591","45.3460796"],["-118.1672016","45.345816"],["-118.1668224","45.3456065"],["-118.1664256","45.3454261"],["-118.1660377","45.3452851"],["-118.1656202","45.3451619"],["-118.1651913","45.3450689"],["-118.1647505","45.3450041"],["-118.1642846","45.3449669"],["-118.1638196","45.3449561"],["-118.1633719","45.3449801"],["-118.1629668","45.3450246"],["-118.1625177","45.3450958"],["-118.1620681","45.3452005"],["-118.1615593","45.3453473"],["-118.1600892","45.3458289"],["-118.1595832","45.3459697"],["-118.1592046","45.3460475"],["-118.1588257","45.3461015"],["-118.1584052","45.3461377"],["-118.1579309","45.3461476"],["-118.1574499","45.3461306"],["-118.1569882","45.3460993"],["-118.1537744","45.3457888"],["-118.1531631","45.3457478"],["-118.1527077","45.345743"],["-118.1522492","45.3457632"],["-118.1517699","45.3458147"],["-118.1513751","45.3458827"],["-118.1510146","45.3459684"],["-118.1505608","45.3461002"],["-118.1500286","45.346293"],["-118.1487643","45.3467911"],["-118.1482259","45.3469978"],["-118.1477481","45.347154"],["-118.1473357","45.3472518"],["-118.1468203","45.3473332"],["-118.1463546","45.3473693"],["-118.1459527","45.3473723"],["-118.1455117","45.3473454"],["-118.1450408","45.3472794"],["-118.144593","45.3471853"],["-118.1441892","45.3470648"],["-118.1438014","45.3469131"],["-118.1434123","45.346725"],["-118.1430068","45.3464836"],["-118.1411712","45.3452029"],["-118.140642","45.344842"],["-118.1402383","45.3446015"],["-118.1398187","45.3443925"],["-118.139352","45.3442082"],["-118.1388915","45.344067"],["-118.1383698","45.3439526"],["-118.1378324","45.3438792"],["-118.1373272","45.3438455"],["-118.1367844","45.3438516"],["-118.136316","45.3438903"],["-118.1358485","45.3439583"],["-118.1352729","45.3440822"],["-118.1278831","45.3459691"],["-118.1274351","45.3460596"],["-118.1269991","45.346126"],["-118.1265566","45.3461558"],["-118.1260459","45.3461552"],["-118.1256132","45.3461168"],["-118.125178","45.3460401"],["-118.1247824","45.3459283"],["-118.1244426","45.3457936"],["-118.1240785","45.3456182"],["-118.1236546","45.345372"],["-118.1223169","45.3445034"],["-118.1217777","45.3441736"],["-118.1213708","45.3438948"],["-118.1207558","45.3434462"],["-118.1205228","45.343286"],["-118.1201807","45.3430729"],["-118.1198314","45.3428764"],["-118.1195152","45.3427285"],["-118.1192119","45.3426137"],["-118.1188104","45.3425016"],["-118.1183883","45.3424233"],["-118.1177573","45.3423581"],["-118.1172442","45.3423715"],["-118.1167132","45.3424212"],["-118.1161961","45.3425233"],["-118.1156082","45.3426813"],["-118.1140631","45.343144"],["-118.1135392","45.3432926"],["-118.1126276","45.3435027"],["-118.1120232","45.343607"],["-118.1114246","45.3436879"],["-118.1108452","45.3437427"],["-118.1102648","45.3437845"],["-118.1096531","45.3437978"],["-118.1090552","45.3437861"],["-118.1084698","45.3437591"],["-118.1074397","45.3436456"],["-118.0838147","45.3396588"],["-118.0831214","45.3395199"],["-118.0825544","45.3393837"],["-118.0820501","45.3392377"],["-118.0815742","45.3390687"],["-118.0810754","45.3388691"],["-118.0805593","45.3386235"],["-118.0800629","45.3383541"],["-118.0796802","45.3381196"],["-118.079295","45.3378527"],["-118.0787945","45.3374493"],["-118.0783348","45.3370273"],["-118.0417497","45.301014"],["-118.0412667","45.3005074"],["-118.0407807","45.2999343"],["-118.040329","45.2993586"],["-118.0398746","45.2987174"],["-118.0394773","45.2980867"],["-118.0391534","45.2974993"],["-118.0388302","45.2967909"],["-118.038444","45.2959247"],["-118.0381332","45.2952328"],["-118.0181729","45.2451176"],["-118.0132274","45.2326298"],["-118.0122295","45.2298863"],["-118.0120593","45.2285229"],["-118.0121821","45.2272805"],["-118.0129651","45.2253636"],["-118.0143539","45.2232712"],["-118.0176834","45.2185583"],["-118.0182778","45.2177719"],["-118.0186097","45.2175019"],["-118.0192725","45.2170791"],["-118.0201069","45.216706"],["-118.0233028","45.2158376"],["-118.0239552","45.2155325"],["-118.0245527","45.2151375"],["-118.0251391","45.2146949"],["-118.0256259","45.2141061"],["-118.0259565","45.2133081"],["-118.0260363","45.2125288"],["-118.0259196","45.2117994"],["-118.0256426","45.2111494"],["-118.025235","45.2104338"],["-118.0240418","45.209247"],["-118.0220224","45.2076289"],["-118.0202301","45.2060977"],["-118.0192549","45.2049935"],["-118.0177056","45.2025536"],["-118.0168843","45.2013325"],["-118.0154492","45.1997929"],["-118.0133852","45.1980252"],["-118.0109918","45.1962343"],["-118.0082853","45.194525"],["-118.0052559","45.1928088"],["-118.0019048","45.1912512"],["-117.995428","45.1885834"],["-117.9939863","45.1879613"],["-117.9926475","45.1872852"],["-117.9914485","45.186557"],["-117.9895379","45.1849618"],["-117.9809545","45.1767875"],["-117.9793283","45.1752961"],["-117.9783568","45.1746088"],["-117.9769614","45.1738474"],["-117.9750979","45.1730245"],["-117.9729493","45.1721368"],["-117.9694198","45.1706393"],["-117.9686228","45.1702696"],["-117.9680831","45.1699812"],["-117.9673973","45.1694888"],["-117.9663649","45.168487"],["-117.9652086","45.1663839"],["-117.9647247","45.1644462"],["-117.9646008","45.1622505"],["-117.9648643","45.1606176"],["-117.9653897","45.1591943"],["-117.9663027","45.1578531"],["-117.9674151","45.1568022"],["-117.9692846","45.1555764"],["-117.970642","45.1545964"],["-117.9711767","45.1540802"],["-117.9715167","45.1536944"],["-117.972155","45.1525491"],["-117.9723105","45.1520748"],["-117.9724177","45.1515997"],["-117.972415","45.1508153"],["-117.9722284","45.1498971"],["-117.9649508","45.1294693"],["-117.964213","45.1273236"],["-117.9638398","45.1263027"],["-117.9633969","45.1250256"],["-117.9625805","45.1225648"],["-117.9618691","45.1205878"],["-117.9608407","45.1176255"],["-117.9530631","45.0956302"],["-117.9497598","45.0861814"],["-117.948841","45.083394"],["-117.9432194","45.0608947"],["-117.9422437","45.0581223"],["-117.941765","45.0569826"],["-117.9378194","45.0479079"],["-117.9359001","45.0438191"],["-117.9245663","45.022104"],["-117.9240841","45.0212525"],["-117.9232007","45.019861"],["-117.9227282","45.0191877"],["-117.9215698","45.0176618"],["-117.9206601","45.0165793"],["-117.9196617","45.0155034"],["-117.9148185","45.0107569"],["-117.912167","45.0080225"],["-117.9091007","45.0046221"],["-117.9061139","45.0010736"],["-117.9038076","44.9980228"],["-117.9014124","44.9947305"],["-117.8990731","44.9915883"],["-117.8949709","44.9866172"],["-117.8902045","44.9815306"],["-117.8877196","44.9791357"],["-117.8860431","44.9775797"],["-117.8807624","44.9730544"],["-117.863422","44.9601156"],["-117.8603473","44.9576327"],["-117.8556222","44.9534804"],["-117.8541617","44.9521026"],["-117.8512182","44.9491906"],["-117.8497838","44.9476896"],["-117.8472174","44.944846"],["-117.844503","44.9415866"],["-117.8424516","44.9389813"],["-117.8405857","44.9365816"],["-117.8391387","44.9348706"],["-117.8376403","44.9333"],["-117.8357427","44.9315859"],["-117.8285777","44.9256212"],["-117.8267186","44.924071"],["-117.8257006","44.9231636"],["-117.824719","44.922138"],["-117.8230567","44.9201006"],["-117.8221406","44.9186566"],["-117.8210591","44.916525"],["-117.8204686","44.9148232"],["-117.8201253","44.9132636"],["-117.8199869","44.9121058"],["-117.8198952","44.9095688"],["-117.8195675","44.8926874"],["-117.8190596","44.8870921"],["-117.8167975","44.8620346"],["-117.8167384","44.8610478"],["-117.8166984","44.8599315"],["-117.8163952","44.8294816"],["-117.8163476","44.8282572"],["-117.8162305","44.8266131"],["-117.8160592","44.8249778"],["-117.8156351","44.8223249"],["-117.8140365","44.8086167"],["-117.8137789","44.8066628"],["-117.8134395","44.8036051"],["-117.8108253","44.7817317"],["-117.8104759","44.7791732"],["-117.8100928","44.7762573"],["-117.8097724","44.7736263"],["-117.8094881","44.7713875"],["-117.8091047","44.7685611"],["-117.8089597","44.7665784"],["-117.8089967","44.7653048"],["-117.8092207","44.7640568"],["-117.8097618","44.7617444"],["-117.8109317","44.757809"],["-117.8111771","44.7565302"],["-117.8111384","44.7556679"],["-117.8107562","44.7546798"],["-117.8102936","44.7539621"],["-117.8098224","44.7533188"],["-117.8055685","44.7481189"],["-117.804312","44.7467523"],["-117.8034075","44.7458586"],["-117.8026075","44.7451057"],["-117.778679","44.7249366"],["-117.7774235","44.7241697"],["-117.7759038","44.7234486"],["-117.7729907","44.7225014"],["-117.6992319","44.69835"],["-117.6943438","44.6967352"],["-117.6934027","44.6963403"],["-117.691216","44.6949741"],["-117.6880487","44.6925191"],["-117.6860828","44.6910958"],["-117.6838757","44.6897886"],["-117.6819493","44.68887"],["-117.6805187","44.6883328"],["-117.6790392","44.6878874"],["-117.6737253","44.6866523"],["-117.6701809","44.6857928"],["-117.6657464","44.6846101"],["-117.660883","44.6831704"],["-117.6271345","44.6712242"],["-117.6257797","44.6706962"],["-117.6245705","44.670201"],["-117.622379","44.6692491"],["-117.6214281","44.6687928"],["-117.6207309","44.6683885"],["-117.619664","44.6677385"],["-117.6192833","44.6674826"],["-117.6188832","44.6671777"],["-117.6183908","44.6667769"],["-117.6179173","44.6663768"],["-117.6174106","44.6659175"],["-117.61654","44.6651195"],["-117.6162141","44.6648426"],["-117.6157709","44.6645414"],["-117.6141369","44.6636548"],["-117.6114688","44.6622522"],["-117.6093311","44.6611473"],["-117.6088801","44.6609494"],["-117.6084197","44.6607775"],["-117.6075416","44.6604982"],["-117.5955185","44.6574043"],["-117.5794253","44.6532848"],["-117.5707728","44.6511527"],["-117.5565223","44.6478878"],["-117.5551383","44.6474211"],["-117.5539136","44.6468748"],["-117.5515352","44.6454748"],["-117.5502966","44.6448006"],["-117.5494391","44.6444199"],["-117.5480868","44.643978"],["-117.5413678","44.641989"],["-117.5401568","44.6415229"],["-117.5390298","44.6410724"],["-117.537591","44.6404757"],["-117.5357538","44.6396713"],["-117.5322207","44.6375736"],["-117.5187737","44.629201"],["-117.5177654","44.628682"],["-117.5169777","44.6283854"],["-117.5156094","44.6279976"],["-117.5142996","44.6276803"],["-117.5119911","44.6271159"],["-117.5106809","44.6266786"],["-117.5093202","44.6259756"],["-117.5038813","44.6226793"],["-117.5024806","44.6218564"],["-117.5013867","44.6212122"],["-117.4843615","44.6110197"],["-117.4830244","44.610185"],["-117.4810339","44.608812"],["-117.4794939","44.6076151"],["-117.4780486","44.6063198"],["-117.4770115","44.6050636"],["-117.4761151","44.6038903"],["-117.4755837","44.6031387"],["-117.4750672","44.6022881"],["-117.4705298","44.5940248"],["-117.4700364","44.5931592"],["-117.4696342","44.5926141"],["-117.4692318","44.5921071"],["-117.4687649","44.5916192"],["-117.4681248","44.591041"],["-117.4669514","44.5902035"],["-117.435926","44.5683022"],["-117.4334403","44.5663431"],["-117.4322527","44.5650853"],["-117.4309717","44.5633908"],["-117.4249407","44.5539926"],["-117.4236883","44.5520495"],["-117.4228982","44.5508315"],["-117.4211778","44.5480789"],["-117.4193949","44.5451731"],["-117.4176984","44.5419547"],["-117.4169922","44.5408954"],["-117.4161679","44.5401495"],["-117.4151769","44.539403"],["-117.4146352","44.5389555"],["-117.4142425","44.5385644"],["-117.4138101","44.5380675"],["-117.4123856","44.5359544"],["-117.411669","44.5349148"],["-117.4110921","44.5343046"],["-117.4105449","44.5338561"],["-117.4099117","44.5334516"],["-117.4092703","44.5331472"],["-117.4085951","44.5328961"],["-117.4072931","44.5326063"],["-117.4052686","44.5322069"],["-117.4044888","44.5320194"],["-117.4039918","44.5318409"],["-117.4035931","44.5316326"],["-117.4032342","44.531395"],["-117.4029508","44.5311388"],["-117.4027335","44.5308856"],["-117.4025542","44.5306117"],["-117.4024079","44.5303141"],["-117.4022906","44.5299617"],["-117.4021278","44.5293932"],["-117.4019638","44.5289069"],["-117.4017728","44.5284987"],["-117.4015122","44.5281299"],["-117.4011027","44.527683"],["-117.3996167","44.5262836"],["-117.3991338","44.5258453"],["-117.3988365","44.5256021"],["-117.3982131","44.5251757"],["-117.3978427","44.5249654"],["-117.3974469","44.5247822"],["-117.3969418","44.5245798"],["-117.3964428","44.5244159"],["-117.3954837","44.5241612"],["-117.3933469","44.5236098"],["-117.3920911","44.5232368"],["-117.3904889","44.5227189"],["-117.3897504","44.5224878"],["-117.3892054","44.5223411"],["-117.3886698","44.522222"],["-117.3867875","44.5218585"],["-117.3863693","44.5217601"],["-117.3860091","44.5216592"],["-117.3856083","44.5215243"],["-117.3852382","44.5213685"],["-117.3849085","44.5212073"],["-117.3833504","44.5203239"],["-117.382941","44.5201318"],["-117.3824941","44.5199644"],["-117.381977","44.5198277"],["-117.3812635","44.5196984"],["-117.3788542","44.5193491"],["-117.3782954","44.519244"],["-117.3778277","44.519119"],["-117.3772989","44.5189307"],["-117.3767289","44.5186559"],["-117.3763057","44.518381"],["-117.3758949","44.5180405"],["-117.3755968","44.5177264"],["-117.3754404","44.5175139"],["-117.3752941","44.5172948"],["-117.3751606","44.5170475"],["-117.3750568","44.5167866"],["-117.3749826","44.5165276"],["-117.3749385","44.516272"],["-117.3749166","44.5159805"],["-117.3749285","44.5156687"],["-117.3749766","44.5154165"],["-117.3750516","44.5151546"],["-117.3751791","44.5148425"],["-117.3754084","44.5144122"],["-117.3761213","44.5132609"],["-117.3763849","44.5127823"],["-117.3764703","44.5125435"],["-117.3765281","44.5123264"],["-117.3765687","44.5120382"],["-117.3765706","44.5118046"],["-117.3765345","44.5115326"],["-117.3764626","44.5112871"],["-117.3763586","44.5110452"],["-117.3762197","44.5107914"],["-117.3760578","44.5105694"],["-117.3758751","44.5103679"],["-117.3755951","44.5101205"],["-117.3749679","44.5096925"],["-117.3712367","44.5073875"],["-117.3707359","44.507052"],["-117.3704407","44.5068212"],["-117.3701329","44.5065297"],["-117.3699313","44.5062929"],["-117.3697451","44.5060317"],["-117.3695877","44.5057376"],["-117.3694554","44.505368"],["-117.3693814","44.5050155"],["-117.3693615","44.5046188"],["-117.3694068","44.5042333"],["-117.3695026","44.5038468"],["-117.3703562","44.5013943"],["-117.370449","44.5010511"],["-117.3705117","44.5006959"],["-117.3705335","44.5003189"],["-117.370508","44.4999178"],["-117.3704196","44.4995127"],["-117.3703221","44.4992341"],["-117.3702027","44.4989598"],["-117.3699306","44.4985024"],["-117.3612715","44.4865304"],["-117.3609525","44.4861255"],["-117.3606391","44.4857614"],["-117.3603138","44.4854633"],["-117.3600108","44.4852334"],["-117.3597501","44.4850647"],["-117.3594681","44.4849133"],["-117.3591282","44.48476"],["-117.3588575","44.4846536"],["-117.358573","44.4845672"],["-117.358226","44.4844793"],["-117.3578887","44.4844087"],["-117.3575605","44.4843638"],["-117.3571624","44.4843242"],["-117.3566357","44.4842944"],["-117.3552342","44.4842752"],["-117.3511987","44.4842492"],["-117.3498038","44.4842275"],["-117.3490787","44.4841782"],["-117.3486266","44.4841095"],["-117.3481455","44.4840268"],["-117.3478505","44.4839538"],["-117.3471488","44.4836267"],["-117.346803","44.4834361"],["-117.3464926","44.4832143"],["-117.3461522","44.4829273"],["-117.3458441","44.482622"],["-117.3456119","44.4823012"],["-117.345459","44.4820193"],["-117.3453584","44.4817669"],["-117.3452915","44.481503"],["-117.3452171","44.4812126"],["-117.345027","44.4806464"],["-117.3442055","44.4783207"],["-117.3439159","44.4775555"],["-117.3436784","44.477032"],["-117.3434005","44.4765184"],["-117.3430763","44.4760018"],["-117.3427361","44.4755303"],["-117.3424025","44.4751305"],["-117.3420665","44.4747649"],["-117.3417469","44.474448"],["-117.3408907","44.4736377"],["-117.3373642","44.4703971"],["-117.3369317","44.4699623"],["-117.3365998","44.4695793"],["-117.3363653","44.4692571"],["-117.3361279","44.4688704"],["-117.3359417","44.4684934"],["-117.3358134","44.4681456"],["-117.3357423","44.4678981"],["-117.3356891","44.467642"],["-117.3356282","44.4672219"],["-117.3356179","44.4668517"],["-117.335643","44.4665342"],["-117.3356994","44.4662052"],["-117.335773","44.4658628"],["-117.336084","44.4648093"],["-117.3361711","44.4644538"],["-117.3362232","44.4641277"],["-117.3362455","44.4637985"],["-117.336198","44.4634847"],["-117.3361206","44.463239"],["-117.3359859","44.4629598"],["-117.3357996","44.4626859"],["-117.3355899","44.462435"],["-117.3353593","44.4622178"],["-117.335118","44.4620122"],["-117.3340727","44.4613082"],["-117.3319656","44.4598967"],["-117.3314238","44.4595165"],["-117.3310703","44.4592379"],["-117.3307412","44.458963"],["-117.3304389","44.4586774"],["-117.3301772","44.4583897"],["-117.3299371","44.4581064"],["-117.3296982","44.4577724"],["-117.3294896","44.4574346"],["-117.3293012","44.4570627"],["-117.3291272","44.4566321"],["-117.3289962","44.4561527"],["-117.3289131","44.4556534"],["-117.3288835","44.4551087"],["-117.3289278","44.4546281"],["-117.3289771","44.4543313"],["-117.3290434","44.4540654"],["-117.3291468","44.453737"],["-117.3292833","44.4533943"],["-117.3294452","44.4530686"],["-117.3296935","44.4526571"],["-117.3307254","44.4511311"],["-117.3310548","44.4506176"],["-117.3312111","44.4503124"],["-117.3313466","44.4499462"],["-117.3313943","44.4496423"],["-117.3313985","44.4493814"],["-117.3313668","44.4491218"],["-117.331301","44.4488913"],["-117.3312107","44.4486809"],["-117.3311167","44.4484965"],["-117.3309912","44.4483092"],["-117.3307013","44.447993"],["-117.3302951","44.4476659"],["-117.3299396","44.4474386"],["-117.3293306","44.4471055"],["-117.3281023","44.446461"],["-117.3277997","44.4462884"],["-117.3273995","44.4460344"],["-117.3268538","44.4456637"],["-117.3262327","44.4450423"],["-117.3259369","44.4446824"],["-117.325753","44.4444152"],["-117.3255802","44.4441163"],["-117.3254278","44.4438153"],["-117.3253139","44.4435211"],["-117.3252084","44.4432093"],["-117.3250928","44.4428011"],["-117.3249182","44.4420932"],["-117.3242666","44.4393271"],["-117.3240887","44.4386389"],["-117.3239825","44.4383032"],["-117.323827","44.4379458"],["-117.3236256","44.4375195"],["-117.323381","44.4370882"],["-117.3230604","44.436614"],["-117.3226321","44.4360887"],["-117.3221199","44.4355374"],["-117.3168322","44.4304505"],["-117.3163387","44.4299061"],["-117.3158998","44.4293248"],["-117.3154345","44.4285685"],["-117.3084484","44.4161617"],["-117.3079127","44.4151725"],["-117.3077098","44.4145629"],["-117.3076554","44.4140547"],["-117.3076659","44.4134996"],["-117.3077697","44.4129656"],["-117.3079181","44.4125701"],["-117.3082714","44.411985"],["-117.3089401","44.4113016"],["-117.311106","44.4096887"],["-117.312182","44.4087312"],["-117.3127652","44.4078992"],["-117.3130065","44.4071638"],["-117.3130391","44.40641"],["-117.3128962","44.405693"],["-117.3124826","44.4048225"],["-117.3120552","44.4043015"],["-117.3113541","44.4036973"],["-117.3103899","44.4030025"],["-117.3095328","44.4023027"],["-117.3090861","44.401763"],["-117.3087383","44.4011273"],["-117.3085041","44.4004285"],["-117.3083668","44.3995834"],["-117.3081946","44.3985021"],["-117.307689","44.3956051"],["-117.3075974","44.3943676"],["-117.3076841","44.3929255"],["-117.3081146","44.3906369"],["-117.3090402","44.3858863"],["-117.3091254","44.3850527"],["-117.3090607","44.3843991"],["-117.3088484","44.3836958"],["-117.3083962","44.3829924"],["-117.3076675","44.3822767"],["-117.3069495","44.381818"],["-117.3060961","44.3814294"],["-117.3044567","44.3808586"],["-117.3036625","44.3805509"],["-117.3030829","44.3802602"],["-117.3024325","44.3798588"],["-117.3019269","44.3794304"],["-117.3013698","44.3787856"],["-117.29832","44.3744157"],["-117.2968117","44.3721453"],["-117.2962995","44.371174"],["-117.2957429","44.3697394"],["-117.2883811","44.3471942"],["-117.2882995","44.346932"],["-117.2846475","44.335904"],["-117.2833547","44.3331115"],["-117.28202","44.3311873"],["-117.2807675","44.3296658"],["-117.2786785","44.3276663"],["-117.2673227","44.317728"],["-117.2639987","44.3155457"],["-117.2413873","44.3035317"],["-117.2387641","44.3020359"],["-117.2374105","44.3011034"],["-117.2358182","44.2999388"],["-117.2222381","44.2891981"],["-117.2213996","44.2886139"],["-117.2161193","44.2853722"],["-117.2148404","44.2845863"],["-117.2141886","44.2841715"],["-117.2135896","44.2837689"],["-117.2129986","44.2833219"],["-117.2125118","44.282915"],["-117.211979","44.282445"],["-117.2115189","44.2820118"],["-117.2110922","44.2815708"],["-117.2106451","44.2810857"],["-117.2099456","44.2802403"],["-117.2096737","44.2798679"],["-117.209482","44.2795623"],["-117.2091616","44.2789617"],["-117.208425","44.2776052"],["-117.2081255","44.2770873"],["-117.2078529","44.276689"],["-117.2075718","44.2763085"],["-117.2068907","44.2754922"],["-117.2066131","44.2751798"],["-117.2063309","44.2748935"],["-117.2059423","44.2745318"],["-117.2042359","44.2730079"],["-117.2030396","44.2719948"],["-117.2026828","44.2717225"],["-117.2023166","44.2714706"],["-117.20196","44.2712578"],["-117.2015823","44.2710567"],["-117.2012115","44.2708808"],["-117.2007439","44.2706853"],["-117.2002056","44.2704872"],["-117.1980758","44.2697783"],["-117.1976562","44.2696244"],["-117.1972547","44.269456"],["-117.1968685","44.2692729"],["-117.196464","44.2690618"],["-117.1960524","44.2688156"],["-117.1956867","44.2685644"],["-117.1953397","44.2682927"],["-117.1950147","44.268005"],["-117.1946965","44.2677052"],["-117.1943735","44.2673565"],["-117.1938439","44.2667127"],["-117.1928145","44.2654315"],["-117.1924759","44.2650611"],["-117.1921689","44.2647728"],["-117.1918432","44.2644871"],["-117.1915005","44.2642317"],["-117.1911141","44.2639776"],["-117.1906805","44.2637302"],["-117.1902248","44.2635034"],["-117.1897041","44.2632755"],["-117.1890737","44.2630595"],["-117.1861484","44.2621812"],["-117.1854488","44.2619646"],["-117.1846728","44.2616968"],["-117.1840417","44.2614435"],["-117.1835762","44.2612293"],["-117.182947","44.2608904"],["-117.181987","44.2603199"],["-117.1789724","44.258467"],["-117.1783764","44.2580623"],["-117.1779502","44.2577266"],["-117.1776029","44.257407"],["-117.1772628","44.2570321"],["-117.1770299","44.2567455"],["-117.1768072","44.2564557"],["-117.1766851","44.256266"],["-117.1765791","44.2560536"],["-117.1764733","44.2558129"],["-117.1763858","44.2555842"],["-117.1763089","44.2552941"],["-117.1762437","44.2549545"],["-117.1762004","44.254652"],["-117.1761846","44.2543431"],["-117.1761958","44.2539357"],["-117.1770111","44.2484049"],["-117.1770485","44.2472845"],["-117.1769031","44.2464725"],["-117.1763338","44.2448885"],["-117.1750517","44.2427949"],["-117.1737697","44.2406939"],["-117.1726391","44.238837"],["-117.1712661","44.2366114"],["-117.1683662","44.2318973"],["-117.1666379","44.2291876"],["-117.1653611","44.2276552"],["-117.1643466","44.2268087"],["-117.1632813","44.22597"],["-117.1622862","44.2253347"],["-117.1605014","44.2243292"],["-117.158259","44.2233616"],["-117.1556647","44.2222257"],["-117.1547153","44.2214987"],["-117.1540633","44.2205583"],["-117.1536346","44.2194893"],["-117.1533147","44.2177778"],["-117.1530637","44.2168883"],["-117.1528066","44.2160762"],["-117.1524155","44.2151054"],["-117.1505035","44.212073"],["-117.1494654","44.2109823"],["-117.1465858","44.2082078"],["-117.1451377","44.2064884"],["-117.1446244","44.2052197"],["-117.1445312","44.204515"],["-117.1447518","44.2032233"],["-117.1451611","44.2014692"],["-117.1452566","44.1999553"],["-117.1449209","44.1984776"],["-117.1444377","44.197385"],["-117.1435045","44.196147"],["-117.1409515","44.1933655"],["-117.1399241","44.192224"],["-117.1392394","44.191313"],["-117.1386934","44.1904074"],["-117.1380004","44.1890901"],["-117.1374561","44.1874058"],["-117.1370147","44.1858216"],["-117.1365979","44.1842246"],["-117.1349686","44.1779959"],["-117.1345648","44.1768843"],["-117.1338769","44.1756157"],["-117.133305","44.1747105"],["-117.1321707","44.1733712"],["-117.1305354","44.1719299"],["-117.1191846","44.1639146"],["-117.1183803","44.1631445"],["-117.11803","44.1625949"],["-117.1176583","44.1619819"],["-117.1170084","44.1602885"],["-117.1164114","44.159043"],["-117.115399","44.157418"],["-117.1088802","44.1483941"],["-117.107541","44.1467808"],["-117.1056813","44.1447087"],["-117.1021819","44.1410694"],["-117.0988341","44.1378909"],["-117.0960071","44.1355197"],["-117.0918456","44.1323258"],["-117.0880008","44.1296357"],["-117.0851179","44.1277916"],["-117.0822163","44.1260531"],["-117.0791124","44.1243931"],["-117.0739067","44.1218958"],["-117.0671183","44.1188699"],["-117.0652361","44.1177742"],["-117.0630243","44.1163482"],["-117.0160659","44.0826956"],["-117.0159265","44.0825938"],["-117.0046439","44.0744333"],["-117.0009291","44.0718018"],["-116.9995259","44.0707312"],["-116.998506","44.0698098"],["-116.9976244","44.0688744"],["-116.9967063","44.0677657"],["-116.9958523","44.0664208"],["-116.9944714","44.0640218"],["-116.9940337","44.063297"],["-116.9932084","44.0622336"],["-116.9923987","44.0613089"],["-116.9915839","44.0605053"],["-116.9884491","44.057986"],["-116.9656467","44.0400786"],["-116.9633819","44.0383824"],["-116.961887","44.0375239"],["-116.9565158","44.0348526"],["-116.9553594","44.034253"],["-116.9547968","44.0339226"],["-116.9541415","44.0334617"],["-116.9534954","44.0329369"],["-116.9529516","44.0324113"],["-116.9525303","44.0319578"],["-116.9522413","44.0316002"],["-116.9519992","44.0312794"],["-116.9518227","44.0310063"],["-116.9516383","44.0306859"],["-116.9514313","44.0302819"],["-116.9512112","44.0298393"],["-116.950951","44.0292092"],["-116.9504137","44.0279355"],["-116.9492941","44.0252299"],["-116.9484467","44.0232964"],["-116.9457799","44.0170785"],["-116.9447071","44.0145561"],["-116.9389655","44.0011"],["-116.9376789","43.9982997"],["-116.9371097","43.997176"],["-116.9364562","43.9959295"],["-116.9351154","43.9935705"],["-116.9343892","43.9923814"],["-116.933615","43.991193"],["-116.9324554","43.9895031"],["-116.9307965","43.9872972"],["-116.9289186","43.98489"],["-116.9274868","43.983233"],["-116.9254942","43.9811517"],["-116.9232868","43.9788855"],["-116.9225972","43.9782342"],["-116.9215764","43.9772847"],["-116.919727","43.975654"],["-116.9168609","43.9732672"],["-116.9154165","43.9721142"],["-116.9147389","43.971593"],["-116.9111036","43.9686858"],["-116.9082742","43.9664"],["-116.9006423","43.9602353"],["-116.8989172","43.9588816"],["-116.8965831","43.9571715"],["-116.8926103","43.9545833"],["-116.8882514","43.9521288"],["-116.8684356","43.9415667"],["-116.8675056","43.9410684"],["-116.8486053","43.9310031"],["-116.8465586","43.9298994"],["-116.8432618","43.9281466"],["-116.8418318","43.9272903"],["-116.838508","43.9251086"],["-116.8353911","43.9228437"],["-116.8332444","43.9211138"],["-116.8275454","43.9164807"],["-116.8201118","43.9104775"],["-116.818771","43.9093612"],["-116.8155268","43.9067688"],["-116.8132143","43.9047125"],["-116.8126213","43.904121"],["-116.810633","43.9017908"],["-116.8097876","43.9006044"],["-116.8088708","43.8992556"],["-116.8081935","43.8980309"],["-116.8075812","43.8968205"],["-116.8070253","43.8955565"],["-116.806109","43.8936671"],["-116.8051837","43.8917647"],["-116.804527","43.8904006"],["-116.8037595","43.8888154"],["-116.8025433","43.8862164"],["-116.801934","43.8852027"],["-116.8012897","43.8841946"],["-116.8004755","43.8831187"],["-116.7995128","43.8818727"],["-116.7984635","43.880671"],["-116.7970144","43.8791511"],["-116.7955608","43.8778131"],["-116.7944355","43.8768482"],["-116.7934052","43.8760148"],["-116.7920053","43.8750254"],["-116.7904116","43.8739817"],["-116.788638","43.8728285"],["-116.7869926","43.871789"],["-116.7850233","43.8705045"],["-116.7792244","43.8667667"],["-116.7784338","43.8662144"],["-116.7774514","43.8654727"],["-116.7758018","43.8641252"],["-116.7750096","43.8634176"],["-116.7731086","43.8615374"],["-116.7720229","43.8603045"],["-116.7709884","43.8589902"],["-116.7702385","43.8579377"],["-116.769711","43.8571283"],["-116.7687746","43.8555504"],["-116.7680596","43.8541721"],["-116.7674707","43.8528144"],["-116.7671076","43.8518554"],["-116.7666997","43.8505459"],["-116.7663248","43.8491546"],["-116.7644688","43.8415632"],["-116.7640794","43.8399489"],["-116.7624377","43.8331955"],["-116.7622178","43.8324156"],["-116.761893","43.8311903"],["-116.7614794","43.829694"],["-116.760877","43.827721"],["-116.7602505","43.8259131"],["-116.7593718","43.8235687"],["-116.7590433","43.822747"],["-116.7566155","43.8167326"],["-116.7556036","43.8142156"],["-116.7550345","43.8127971"],["-116.7542347","43.8107874"],["-116.7538919","43.8099662"],["-116.7532782","43.8084971"],["-116.7528174","43.807589"],["-116.7522399","43.8065519"],["-116.7514289","43.8052008"],["-116.7509309","43.8044212"],["-116.7504206","43.8036784"],["-116.7495985","43.8026201"],["-116.7488013","43.8016927"],["-116.7470441","43.7998155"],["-116.7458854","43.7986654"],["-116.7432137","43.7960229"],["-116.7341051","43.7870308"],["-116.7323261","43.7852565"],["-116.7293592","43.7823336"],["-116.7286418","43.7816176"],["-116.7274685","43.7802787"],["-116.7266494","43.7792813"],["-116.7260353","43.77847"],["-116.7255279","43.7777765"],["-116.7250239","43.7770058"],["-116.7240851","43.7754024"],["-116.7235258","43.7743594"],["-116.7230655","43.7733963"],["-116.7226147","43.7722484"],["-116.7217282","43.7698478"],["-116.7207978","43.7673493"],["-116.7203686","43.766222"],["-116.7193285","43.7633479"],["-116.7187394","43.7617306"],["-116.7153354","43.752448"],["-116.7148291","43.751024"],["-116.7068144","43.7292187"],["-116.7030804","43.7190376"],["-116.7019815","43.7159893"],["-116.7012049","43.7138403"],["-116.7009379","43.7130398"],["-116.7007981","43.7127102"],["-116.7005191","43.7119374"],["-116.7002466","43.7111141"],["-116.7000714","43.7105164"],["-116.6999323","43.7098803"],["-116.6998259","43.7093159"],["-116.6997439","43.7085953"],["-116.6994256","43.7037833"],["-116.6993973","43.7029572"],["-116.6993133","43.7019029"],["-116.6992359","43.7010132"],["-116.6990949","43.7001377"],["-116.6989016","43.6992009"],["-116.6986167","43.6982206"],["-116.6982632","43.6972811"],["-116.6980333","43.6967497"],["-116.6980176","43.6967172"],["-116.6975903","43.6958924"],["-116.696999","43.6948797"],["-116.6963846","43.694006"],["-116.6960623","43.6935914"],["-116.6955562","43.6929883"],["-116.6914915","43.6884044"],["-116.6911968","43.6880409"],["-116.6909973","43.6877452"],["-116.6907858","43.6873691"],["-116.6905673","43.6868317"],["-116.6905232","43.6866228"],["-116.690369","43.6857904"],["-116.6900612","43.6837795"],["-116.6899025","43.6828212"],["-116.6897561","43.6819928"],["-116.6896469","43.6814964"],["-116.6895503","43.6811141"],["-116.6894415","43.6807795"],["-116.6893197","43.6804347"],["-116.6890255","43.6797669"],["-116.6887491","43.6792448"],["-116.6884356","43.6787349"],["-116.6880559","43.6782147"],["-116.687678","43.677732"],["-116.6872516","43.6772739"],["-116.6864612","43.6765027"],["-116.6858861","43.6760464"],["-116.6848689","43.6753357"],["-116.6824494","43.673697"],["-116.6761205","43.669452"],["-116.6756794","43.6691937"],["-116.6752004","43.6689527"],["-116.674698","43.6687264"],["-116.6742392","43.6685325"],["-116.6687165","43.6663476"],["-116.6641807","43.6645599"],["-116.6624094","43.6638304"],["-116.6614","43.6633649"],["-116.6606896","43.6629605"],["-116.6599158","43.6624513"],["-116.6594303","43.6620341"],["-116.6590938","43.6617247"],["-116.6587679","43.6614063"],["-116.6578302","43.6601408"],["-116.6481074","43.6449948"],["-116.6474813","43.6441452"],["-116.6459572","43.6424886"],["-116.644866","43.6415072"],["-116.6434703","43.6404162"],["-116.6413659","43.6391101"],["-116.6348235","43.6353792"],["-116.6263627","43.6304393"],["-116.6116816","43.6207373"],["-116.5925054","43.6066554"],["-116.5891209","43.604362"],["-116.5877101","43.6036408"],["-116.5867524","43.6032224"],["-116.5853987","43.6026999"],["-116.5826717","43.6017814"],["-116.5792896","43.601153"],["-116.5763708","43.6008494"],["-116.568962","43.6002162"],["-116.568626","43.6001885"],["-116.5494898","43.5984847"],["-116.5481225","43.5983948"],["-116.5463604","43.5982902"],["-116.5442624","43.5981626"],["-116.533766","43.5981773"],["-116.5279568","43.5983421"],["-116.5125479","43.5992639"],["-116.5052545","43.5994473"],["-116.500541","43.599383"],["-116.4966346","43.5992793"],["-116.4897497","43.5987472"],["-116.4476683","43.5940055"],["-116.4421105","43.5934592"],["-116.441423","43.5934247"],["-116.4383956","43.5933679"],["-116.4024295","43.5933605"],["-116.4011787","43.5933684"],["-116.3911389","43.593351"],["-116.3897373","43.5933594"],["-116.370899","43.5933827"],["-116.3679764","43.5935116"],["-116.3659525","43.5937159"],["-116.3639122","43.5940257"],["-116.3616062","43.5944321"],["-116.3586877","43.5951424"],["-116.3568119","43.595692"],["-116.3553178","43.5961288"],["-116.3538267","43.5964777"],["-116.3533233","43.5965793"],["-116.3520768","43.5967896"],["-116.3510612","43.5969347"],["-116.3504415","43.597004"],["-116.3500267","43.5970418"],["-116.3494846","43.5970844"],["-116.3483657","43.5971435"],["-116.3413385","43.5971802"],["-116.2965639","43.5971343"],["-116.2929415","43.5969805"],["-116.2917306","43.5969936"],["-116.2911463","43.5970509"],["-116.2904412","43.5971789"],["-116.289567","43.59736"],["-116.2890667","43.5975057"],["-116.2882945","43.5978031"],["-116.2879832","43.597939"],["-116.2875737","43.5981364"],["-116.2871282","43.5983809"],["-116.286696","43.5986649"],["-116.2862816","43.5989698"],["-116.2858654","43.5992573"],["-116.2853662","43.5995984"],["-116.2818546","43.6021245"],["-116.2769805","43.605521"],["-116.275884","43.60625"],["-116.2743333","43.6072512"],["-116.2646794","43.6128071"],["-116.2639223","43.6131974"],["-116.2613501","43.6143601"],["-116.2551789","43.6164507"],["-116.2531388","43.6171193"],["-116.252295","43.6173311"],["-116.2511944","43.6175835"],["-116.2501466","43.6177826"],["-116.2487575","43.6180131"],["-116.2474156","43.6181224"],["-116.2462275","43.6181775"],["-116.2420709","43.6182219"],["-116.2413279","43.618246"],["-116.2407868","43.6183072"],["-116.2395506","43.6185039"],["-116.2388665","43.6186087"],["-116.2379337","43.6187047"],["-116.2373471","43.6187263"],["-116.2366708","43.6186911"],["-116.2322658","43.6183363"],["-116.2309868","43.6182371"],["-116.2304426","43.6182176"],["-116.2296743","43.6182632"],["-116.2245316","43.6189341"],["-116.2241274","43.6189734"],["-116.2234611","43.6190206"],["-116.2229932","43.619033"],["-116.2162079","43.6190103"],["-116.2158108","43.6189861"],["-116.2155328","43.6189495"],["-116.2152501","43.6188899"],["-116.2150275","43.6188243"],["-116.214811","43.6187434"],["-116.2145645","43.6186333"],["-116.2143651","43.6185201"],["-116.214206","43.6184134"],["-116.214053","43.6182919"],["-116.2138659","43.6181201"],["-116.2134055","43.6176504"],["-116.2129616","43.617196"],["-116.2125853","43.6168155"],["-116.2123388","43.6165977"],["-116.2120897","43.6164085"],["-116.2119501","43.6163164"],["-116.2117561","43.6162019"],["-116.2103767","43.6154999"],["-116.2098378","43.6151775"],["-116.2096023","43.6150062"],["-116.2094515","43.6148882"],["-116.2092666","43.6146973"],["-116.2087667","43.6140859"],["-116.2085312","43.6138587"],["-116.2081017","43.6134763"],["-116.2079627","43.6133898"],["-116.2075972","43.6131679"],["-116.2057881","43.6122471"],["-116.2052623","43.6119861"],["-116.2031509","43.6141854"],["-116.2030729","43.6142669"],["-116.2023307","43.6150411"],["-116.2023216","43.6150422"],["-116.1952489","43.6114532"],["-116.1951347","43.6114042"],["-116.1949377","43.6113386"],["-116.1945749","43.6112343"],["-116.194207","43.6111771"],["-116.1938063","43.611119"],["-116.1937023","43.6111062"],["-116.1935577","43.6110874"],["-116.1932406","43.611058"],["-116.193129","43.6109765"],["-116.1930822","43.6109051"],["-116.19308","43.6108408"],["-116.1930879","43.6106952"],["-116.1931669","43.6106023"],["-116.1932294","43.610528"],["-116.193285","43.6104149"],["-116.1933294","43.6102974"],["-116.1933435","43.6102171"],["-116.1933493","43.6101652"],["-116.1933563","43.6101079"],["-116.1934038","43.6099823"],["-116.1934403","43.6097013"],["-116.1934431","43.6095181"],["-116.1934418","43.6094349"],["-116.1934338","43.6094249"],["-116.1933687","43.6093688"],["-116.1933688","43.6090008"],["-116.1933652","43.6081975"],["-116.1933675","43.6079678"],["-116.1934277","43.6078553"],["-116.1934531","43.6077901"],["-116.1934621","43.6061761"],["-116.1934394","43.6059932"],["-116.1934071","43.6058444"],["-116.1934397","43.6048707"],["-116.1934619","43.6045322"],["-116.1934742","43.6038822"],["-116.1934747","43.603508"],["-116.1934769","43.6030464"],["-116.1935483","43.6029306"],["-116.1935625","43.6027731"],["-116.1935687","43.6026183"],["-116.1934998","43.6024521"],["-116.1935361","43.6009756"],["-116.1935425","43.5997225"],["-116.1936508","43.5995754"],["-116.1936518","43.5987796"],["-116.1936504","43.5985103"],["-116.1936408","43.5972184"],["-116.1936376","43.5970741"],["-116.1936395","43.5969842"],["-116.1936541","43.5965514"],["-116.193674","43.5957638"],["-116.1936813","43.5944864"],["-116.1936836","43.5904461"],["-116.1937091","43.5899015"],["-116.1936747","43.5862741"],["-116.1936838","43.585715"],["-116.1936789","43.5849856"],["-116.1936792","43.5849105"],["-116.1936831","43.5846973"],["-116.1936983","43.5839706"],["-116.1937039","43.5835973"],["-116.1937219","43.5779832"],["-116.1937149","43.5773242"],["-116.1936984","43.5771196"],["-116.1937088","43.5755578"],["-116.1937049","43.5753898"],["-116.1936987","43.575241"],["-116.1936924","43.5743131"],["-116.1936938","43.5737941"],["-116.1937149","43.572459"],["-116.1938384","43.5716424"],["-116.1939498","43.5712362"],["-116.1941042","43.5707581"],["-116.1942581","43.570409"],["-116.1944425","43.5700266"],["-116.1945381","43.5697359"],["-116.1950129","43.5689905"],["-116.1954743","43.5682621"],["-116.1956203","43.5681503"],["-116.1962072","43.5673252"],["-116.1965544","43.5668172"],["-116.1965926","43.5666572"],["-116.1967514","43.566401"],["-116.1967072","43.566245"],["-116.1966444","43.5660751"],["-116.1966088","43.5659852"],["-116.1965241","43.5658597"],["-116.196403","43.5657277"],["-116.1962734","43.5656281"],["-116.1961265","43.5655435"],["-116.1958452","43.5654307"],["-116.1954818","43.5653054"],["-116.1943192","43.5650133"],["-116.1939501","43.5648899"],["-116.1929887","43.5645261"],["-116.1920749","43.5641701"],["-116.191358","43.5637504"],["-116.1895814","43.5626549"],["-116.1661187","43.5461573"],["-116.1648861","43.5452584"],["-116.1638757","43.544434"],["-116.1626545","43.5433708"],["-116.1615092","43.542279"],["-116.1604653","43.5411761"],["-116.1599236","43.5405718"],["-116.1584839","43.5387771"],["-116.1571682","43.5368495"],["-116.1568006","43.5362386"],["-116.1564357","43.5356056"],["-116.1560862","43.5349526"],["-116.155782","43.5343375"],["-116.1456267","43.5118696"],["-116.1443263","43.5093587"],["-116.1429378","43.5072491"],["-116.1416744","43.5056803"],["-116.1393199","43.5031141"],["-116.1306131","43.4951622"],["-116.1243941","43.4896376"],["-116.1214687","43.4873753"],["-116.1182781","43.4852312"],["-116.1142068","43.4826888"],["-116.1103478","43.4802772"],["-116.1088794","43.4792559"],["-116.1073028","43.478028"],["-116.1058701","43.4767944"],["-116.1051602","43.4761473"],["-116.1048504","43.4757712"],["-116.1039594","43.4749244"],["-116.096496","43.4669807"],["-116.0942443","43.464931"],["-116.0913424","43.4621868"],["-116.0636399","43.4361617"],["-116.0611098","43.4338599"],["-116.059712","43.4327325"],["-116.0577603","43.4314904"],["-116.0327966","43.4174056"],["-116.0303902","43.4158031"],["-116.0276764","43.4133941"],["-116.0222366","43.4084813"],["-116.0185289","43.404977"],["-116.0165755","43.403189"],["-116.0146914","43.4014929"],["-116.0088711","43.3960437"],["-116.0015319","43.3892361"],["-115.9664574","43.3567745"],["-115.9608251","43.3515352"],["-115.9511016","43.3425138"],["-115.9492759","43.3408465"],["-115.9453031","43.3371573"],["-115.9423076","43.3343434"],["-115.9301285","43.3230718"],["-115.9226383","43.3160924"],["-115.9169255","43.3107584"],["-115.9060821","43.3006544"],["-115.8990153","43.2941354"],["-115.8536936","43.2519459"],["-115.8319059","43.2316583"],["-115.8278047","43.2278221"],["-115.8251543","43.2253689"],["-115.8161051","43.2169295"],["-115.8032905","43.2049037"],["-115.7894558","43.1920557"],["-115.7856759","43.1887281"],["-115.7824653","43.1863332"],["-115.7793834","43.1843073"],["-115.7773896","43.183124"],["-115.77504","43.1818673"],["-115.7728308","43.1807864"],["-115.7706899","43.1798093"],["-115.7685235","43.1789284"],["-115.7663733","43.178118"],["-115.763781","43.1772539"],["-115.7604971","43.176279"],["-115.7553134","43.1750172"],["-115.7535952","43.174688"],["-115.7525362","43.1744879"],["-115.7514642","43.1742908"],["-115.7495215","43.1739713"],["-115.7209861","43.168316"],["-115.7195517","43.1680055"],["-115.718252","43.1677103"],["-115.7156157","43.1670203"],["-115.7142269","43.1666255"],["-115.7128418","43.1661706"],["-115.7105103","43.1653096"],["-115.7016236","43.1618423"],["-115.6979262","43.1602483"],["-115.6942268","43.1585673"],["-115.6753087","43.1485738"],["-115.6742503","43.1478901"],["-115.6717766","43.1461823"],["-115.6698415","43.1447241"],["-115.6684651","43.1436214"],["-115.6670045","43.1423307"],["-115.6659873","43.1414055"],["-115.6643249","43.1397256"],["-115.6634293","43.1387717"],["-115.6429859","43.1151461"],["-115.6421877","43.1142571"],["-115.6411303","43.1132021"],["-115.6399372","43.1121045"],["-115.6391515","43.1114228"],["-115.6384218","43.1108232"],["-115.6346441","43.1079944"],["-115.6265324","43.1019491"],["-115.6255853","43.1012028"],["-115.6248619","43.1005777"],["-115.6240263","43.099806"],["-115.623287","43.0990505"],["-115.6226307","43.0983098"],["-115.6222404","43.0978385"],["-115.6219288","43.0974398"],["-115.6213812","43.0967464"],["-115.6210139","43.0962572"],["-115.6207355","43.0959017"],["-115.6205933","43.0957384"],["-115.6201447","43.0951556"],["-115.6196572","43.0945322"],["-115.6190859","43.0937918"],["-115.6173954","43.0915782"],["-115.6170681","43.0911211"],["-115.6167339","43.0906574"],["-115.616407","43.0903141"],["-115.6127692","43.0856202"],["-115.6119585","43.0845562"],["-115.6116121","43.0840683"],["-115.6109053","43.083175"],["-115.6103214","43.0824486"],["-115.6096869","43.0816462"],["-115.609282","43.0811332"],["-115.6088732","43.0806089"],["-115.6079599","43.0794303"],["-115.6068493","43.0779917"],["-115.6061929","43.0771632"],["-115.6045303","43.07506"],["-115.6037795","43.0741549"],["-115.6032449","43.0735359"],["-115.5994731","43.0694512"],["-115.5973008","43.0671315"],["-115.5951139","43.064803"],["-115.5932056","43.062757"],["-115.5929544","43.0624749"],["-115.5921868","43.0616497"],["-115.5913674","43.0607851"],["-115.5896498","43.0589324"],["-115.5887265","43.0579416"],["-115.5866036","43.0556761"],["-115.5816376","43.0503408"],["-115.5738583","43.0419976"],["-115.5728571","43.0409228"],["-115.5703632","43.0382711"],["-115.5691058","43.0369143"],["-115.567389","43.0350853"],["-115.5661434","43.0337361"],["-115.5644868","43.0318725"],["-115.5640249","43.0312916"],["-115.5635529","43.0306606"],["-115.5628063","43.0295658"],["-115.5620663","43.0284365"],["-115.5610073","43.026824"],["-115.5603134","43.0257377"],["-115.5564414","43.0196543"],["-115.5552538","43.0178117"],["-115.5519687","43.0126828"],["-115.5510855","43.0114113"],["-115.5501449","43.0102681"],["-115.5494023","43.0094285"],["-115.5486768","43.0086993"],["-115.5478955","43.0079755"],["-115.5472348","43.0073913"],["-115.546486","43.0067951"],["-115.5456487","43.0061623"],["-115.5446127","43.0054492"],["-115.5435497","43.0047657"],["-115.5407313","43.0031432"],["-115.5401686","43.0028169"],["-115.5396751","43.0025263"],["-115.5392515","43.0022552"],["-115.5388221","43.0019475"],["-115.5383631","43.0015901"],["-115.5376393","43.0009361"],["-115.5319","42.9954285"],["-115.5300894","42.9938483"],["-115.5154412","42.9828491"],["-115.512491","42.9806575"],["-115.5117654","42.9801064"],["-115.5111097","42.9796371"],["-115.5102916","42.9790113"],["-115.5095446","42.9784462"],["-115.5088617","42.9779262"],["-115.508128","42.9773417"],["-115.5074939","42.9768332"],["-115.4963052","42.9680204"],["-115.495796","42.9675951"],["-115.4893544","42.9625165"],["-115.4886803","42.9619766"],["-115.4865465","42.9603289"],["-115.4858295","42.9598826"],["-115.4851329","42.9595113"],["-115.4842328","42.9591331"],["-115.4835619","42.9589026"],["-115.4826292","42.958646"],["-115.4811354","42.958366"],["-115.4804159","42.9582883"],["-115.4797208","42.958269"],["-115.4759128","42.9583301"],["-115.460604","42.958649"],["-115.4600062","42.9586452"],["-115.4594624","42.9586376"],["-115.4585986","42.958624"],["-115.4567722","42.9585207"],["-115.4559818","42.958464"],["-115.4544036","42.9583155"],["-115.4536354","42.9582145"],["-115.4525149","42.9580218"],["-115.4511726","42.9577662"],["-115.4507493","42.9576682"],["-115.4496426","42.957381"],["-115.4486606","42.9570947"],["-115.447437","42.9567317"],["-115.4468902","42.9565368"],["-115.4461827","42.9562738"],["-115.4452192","42.9558873"],["-115.4447915","42.9556849"],["-115.4437933","42.955222"],["-115.4428727","42.9547777"],["-115.43888","42.952584"],["-115.437379","42.9517705"],["-115.4317091","42.9486719"],["-115.4307618","42.9481955"],["-115.4297001","42.9477483"],["-115.4288694","42.9474171"],["-115.4281352","42.9471749"],["-115.4275153","42.9469797"],["-115.4267779","42.9467749"],["-115.4260765","42.946596"],["-115.4250592","42.9463641"],["-115.4238647","42.9461324"],["-115.4229266","42.9460076"],["-115.4215993","42.9458745"],["-115.4198955","42.9457644"],["-115.4165782","42.9456571"],["-115.4116162","42.9455398"],["-115.4095494","42.9455148"],["-115.4076341","42.9456386"],["-115.4066076","42.9457452"],["-115.40516","42.9459758"],["-115.4034769","42.9463182"],["-115.3997407","42.9471068"],["-115.3965894","42.9476963"],["-115.3933032","42.9481263"],["-115.390612","42.9484126"],["-115.389071","42.9485871"],["-115.3883693","42.948736"],["-115.3875082","42.9489665"],["-115.3866841","42.9492383"],["-115.3859661","42.9495069"],["-115.3837804","42.9506342"],["-115.3801799","42.9525541"],["-115.3783573","42.9535058"],["-115.3775614","42.9539076"],["-115.3768758","42.9542186"],["-115.3760197","42.9545504"],["-115.3751049","42.9548891"],["-115.374683","42.9550188"],["-115.3743244","42.9551284"],["-115.3735725","42.9553359"],["-115.3653047","42.9573637"],["-115.3643968","42.9575178"],["-115.3635223","42.9575894"],["-115.36265","42.9576251"],["-115.361898","42.9576189"],["-115.3609137","42.9575365"],["-115.3601703","42.9574754"],["-115.3574933","42.9572376"],["-115.3570298","42.9571915"],["-115.356309","42.9571522"],["-115.3551192","42.9571213"],["-115.3526087","42.957136"],["-115.351707","42.9571928"],["-115.350614","42.9573081"],["-115.349299","42.957513"],["-115.3484185","42.9577177"],["-115.3477048","42.9578994"],["-115.3468541","42.9581701"],["-115.3463772","42.9583369"],["-115.3456811","42.9586058"],["-115.3349104","42.9631065"],["-115.3329084","42.963919"],["-115.3320151","42.9641836"],["-115.3311622","42.9643506"],["-115.3305322","42.9644156"],["-115.3299353","42.9644433"],["-115.3295476","42.9644311"],["-115.3288746","42.9643893"],["-115.3278244","42.9642347"],["-115.3181884","42.9627363"],["-115.3152068","42.9622586"],["-115.3063168","42.960853"],["-115.3028654","42.9603162"],["-115.3016246","42.9601337"],["-115.3000341","42.9599517"],["-115.2970403","42.9597188"],["-115.2958523","42.9596789"],["-115.2930322","42.9596437"],["-115.2907747","42.9597334"],["-115.2826044","42.9602606"],["-115.2805836","42.960393"],["-115.2785933","42.9605151"],["-115.2768507","42.9606127"],["-115.2755178","42.960686"],["-115.2748139","42.9607353"],["-115.2684528","42.9611272"],["-115.2676494","42.9611808"],["-115.2667972","42.9612309"],["-115.2634239","42.9614609"],["-115.2625139","42.9615699"],["-115.261655","42.9617159"],["-115.2608168","42.9618914"],["-115.2600519","42.9620999"],["-115.259185","42.9623597"],["-115.2582613","42.9627018"],["-115.2576151","42.9629802"],["-115.2569087","42.9633099"],["-115.2553923","42.9641279"],["-115.2544893","42.964605"],["-115.2536648","42.9649796"],["-115.2524882","42.9654005"],["-115.2450409","42.967527"],["-115.2443902","42.9677147"],["-115.2431655","42.9680457"],["-115.2419829","42.9683871"],["-115.2405618","42.968759"],["-115.2393006","42.9691098"],["-115.2384418","42.9693628"],["-115.2334413","42.9707562"],["-115.231249","42.9713613"],["-115.2302852","42.9716247"],["-115.2290533","42.9719665"],["-115.2280407","42.972251"],["-115.2263668","42.9726185"],["-115.2246822","42.9729437"],["-115.2225722","42.9732777"],["-115.2204445","42.9735399"],["-115.2187004","42.9736727"],["-115.2162789","42.9737942"],["-115.2156766","42.9738037"],["-115.2088252","42.9738571"],["-115.2074078","42.9737953"],["-115.2061809","42.9736854"],["-115.2054299","42.9735986"],["-115.2041541","42.9734121"],["-115.2035264","42.973294"],["-115.2028277","42.9731496"],["-115.2020547","42.9729717"],["-115.2011179","42.9727279"],["-115.2001511","42.9724375"],["-115.1984909","42.9718587"],["-115.1977455","42.9715545"],["-115.1969861","42.9712185"],["-115.1965051","42.9709983"],["-115.1957697","42.9706387"],["-115.1951501","42.9703014"],["-115.1942997","42.9697897"],["-115.1936611","42.9693804"],["-115.1929971","42.9689202"],["-115.1913956","42.9676669"],["-115.1902343","42.9665932"],["-115.1891868","42.9656227"],["-115.1880382","42.9645751"],["-115.187436","42.9639996"],["-115.1868319","42.9634155"],["-115.1864223","42.9630018"],["-115.1857747","42.9623942"],["-115.1839847","42.9607603"],["-115.183086","42.959932"],["-115.1823811","42.9592866"],["-115.1818021","42.9587889"],["-115.1811728","42.9583243"],["-115.1805435","42.9579012"],["-115.179974","42.9576212"],["-115.1795183","42.9573956"],["-115.1791026","42.9571912"],["-115.1785869","42.9569578"],["-115.1780382","42.9567313"],["-115.17739","42.9564991"],["-115.1768182","42.9563109"],["-115.1762577","42.9561499"],["-115.1753237","42.955924"],["-115.1747703","42.9558209"],["-115.1740952","42.9557122"],["-115.173206","42.9556052"],["-115.169242","42.9552651"],["-115.1669947","42.9550823"],["-115.1628039","42.9547629"],["-115.1305603","42.9522496"],["-115.1292243","42.9521229"],["-115.1274841","42.9519796"],["-115.1261312","42.9518685"],["-115.1246372","42.9517292"],["-115.1227318","42.9515264"],["-115.1210116","42.9512582"],["-115.1193866","42.9509661"],["-115.1152853","42.9500005"],["-115.0986516","42.9455695"],["-115.0950747","42.9446015"],["-115.092762","42.943984"],["-115.0767372","42.9396762"],["-115.0748344","42.9392196"],["-115.0731766","42.9388633"],["-115.0719209","42.93864"],["-115.0697026","42.9382922"],["-115.068562","42.938151"],["-115.0673755","42.9380391"],["-115.0649998","42.9378708"],["-115.0643147","42.9378328"],["-115.06354","42.9377986"],["-115.047402","42.937825"],["-115.0437281","42.937831"],["-114.9986721","42.937939"],["-114.9600955","42.9380022"],["-114.9595807","42.9379922"],["-114.9591276","42.9379625"],["-114.9586492","42.9379247"],["-114.9580521","42.937866"],["-114.9571306","42.9377377"],["-114.9560718","42.9375271"],["-114.9552101","42.9373066"],["-114.9543726","42.9370353"],["-114.9531453","42.9365096"],["-114.9524852","42.9362039"],["-114.9516875","42.9357721"],["-114.9506655","42.9351141"],["-114.9482367","42.9333671"],["-114.9470862","42.9325317"],["-114.9458291","42.9316136"],["-114.9431116","42.9296439"],["-114.9403728","42.9276128"],["-114.9399051","42.9272561"],["-114.9394113","42.9268919"],["-114.9389838","42.9266144"],["-114.9369359","42.9251379"],["-114.9358654","42.9243916"],["-114.9335852","42.9227441"],["-114.9326392","42.9221174"],["-114.9318511","42.9216968"],["-114.9258503","42.9187023"],["-114.9252348","42.9183407"],["-114.9247224","42.9180095"],["-114.923308","42.916966"],["-114.9181964","42.9130723"],["-114.9036783","42.9020609"],["-114.8898614","42.8915425"],["-114.8883948","42.8904218"],["-114.8828534","42.8862175"],["-114.8760071","42.8809913"],["-114.8750854","42.8802685"],["-114.8720339","42.8779625"],["-114.8690969","42.8757423"],["-114.8678059","42.8747931"],["-114.8669253","42.8741934"],["-114.8656783","42.8734525"],["-114.8644953","42.8728359"],["-114.8638751","42.8725429"],["-114.863199","42.8722587"],["-114.8623826","42.8719435"],["-114.8615642","42.8716292"],["-114.8609237","42.8713789"],["-114.8568944","42.8698322"],["-114.8559444","42.8693407"],["-114.8554942","42.8690735"],["-114.8549918","42.8687469"],["-114.8544696","42.8683824"],["-114.8532115","42.8673944"],["-114.8514993","42.8660702"],["-114.8510194","42.8656811"],["-114.8502599","42.8650258"],["-114.8493713","42.8641422"],["-114.8489378","42.8635894"],["-114.8485847","42.8630602"],["-114.8479506","42.8621051"],["-114.8472272","42.8610823"],["-114.8464664","42.860011"],["-114.8458385","42.8591018"],["-114.8449736","42.8578282"],["-114.8442947","42.8569196"],["-114.8438071","42.8563091"],["-114.8434076","42.8558906"],["-114.842845","42.8554273"],["-114.8423228","42.8550641"],["-114.8416681","42.8546607"],["-114.8411195","42.8543986"],["-114.8404987","42.8541418"],["-114.839467","42.8538204"],["-114.8381968","42.8534643"],["-114.8363389","42.8529403"],["-114.8350563","42.8525827"],["-114.8342115","42.8523101"],["-114.8335604","42.8520444"],["-114.832902","42.8517197"],["-114.8320137","42.8511945"],["-114.8311925","42.8506026"],["-114.829934","42.8494102"],["-114.8251628","42.8447095"],["-114.8240566","42.843611"],["-114.817878","42.8375064"],["-114.8174123","42.8370497"],["-114.8166746","42.8363472"],["-114.8159172","42.8357311"],["-114.8154322","42.8353915"],["-114.8144638","42.8348019"],["-114.8085714","42.8314449"],["-114.8042198","42.8290235"],["-114.790451","42.8212961"],["-114.7881065","42.8197441"],["-114.783199","42.8164091"],["-114.7812277","42.8150675"],["-114.7768159","42.8120567"],["-114.7726421","42.8091952"],["-114.7697568","42.8072066"],["-114.7688112","42.8065617"],["-114.7647237","42.8037571"],["-114.7302624","42.7800591"],["-114.729681","42.7796139"],["-114.7292167","42.7792287"],["-114.7287852","42.7788142"],["-114.7283517","42.778384"],["-114.7278004","42.777827"],["-114.7272339","42.7771741"],["-114.726046","42.7756986"],["-114.7255627","42.7752276"],["-114.7252547","42.7749531"],["-114.7248046","42.7745816"],["-114.7239262","42.7739975"],["-114.7233431","42.773654"],["-114.7222505","42.7731028"],["-114.7187252","42.7713813"],["-114.7178364","42.7709426"],["-114.7134228","42.768785"],["-114.7128703","42.7685226"],["-114.7114713","42.7678642"],["-114.7103844","42.7674091"],["-114.7093642","42.7671282"],["-114.7082889","42.7668831"],["-114.6853687","42.7624122"],["-114.6838725","42.7620265"],["-114.6588667","42.7543757"],["-114.6568298","42.7537651"],["-114.6238367","42.7436152"],["-114.6219638","42.7430912"],["-114.5945515","42.7364244"],["-114.5910053","42.735833"],["-114.5658299","42.7322487"],["-114.5627477","42.7315708"],["-114.5609892","42.7311013"],["-114.5595732","42.7306894"],["-114.5573696","42.7299361"],["-114.5556564","42.7292693"],["-114.5542786","42.7286968"],["-114.5528037","42.7280083"],["-114.5520093","42.7276118"],["-114.5497276","42.7263558"],["-114.5486907","42.7257128"],["-114.5467029","42.7244098"],["-114.5464036","42.7241917"],["-114.5460288","42.7239042"],["-114.5457832","42.7237121"],["-114.5444229","42.7226286"],["-114.5435953","42.7219301"],["-114.5425214","42.7208914"],["-114.5413361","42.7197079"],["-114.5404162","42.7186887"],["-114.5394917","42.7175809"],["-114.5373757","42.7147188"],["-114.5366929","42.713777"],["-114.5359821","42.7128131"],["-114.5351059","42.7116085"],["-114.5294517","42.7038353"],["-114.5286768","42.7027513"],["-114.5275787","42.7012529"],["-114.5216259","42.6930324"],["-114.5207828","42.691849"],["-114.5185054","42.6887283"],["-114.5183662","42.6885203"],["-114.5168983","42.686521"],["-114.5164723","42.6859252"],["-114.5153007","42.6844211"],["-114.514794","42.6837943"],["-114.5138901","42.6828249"],["-114.5126737","42.6815899"],["-114.5121458","42.6810895"],["-114.5113565","42.6803874"],["-114.5110748","42.6801404"],["-114.5107704","42.6798946"],["-114.5104156","42.6795966"],["-114.5095984","42.6789292"],["-114.5089967","42.6784765"],["-114.5084509","42.6780741"],["-114.507855","42.6776071"],["-114.506731","42.676735"],["-114.5051288","42.6754735"],["-114.5004313","42.6718092"],["-114.4998168","42.6713341"],["-114.4989125","42.6706401"],["-114.497841","42.6698155"],["-114.496619","42.6688589"],["-114.4958081","42.6682212"],["-114.4948632","42.6674798"],["-114.4931744","42.6661658"],["-114.4929247","42.6659665"],["-114.4917137","42.665047"],["-114.4911792","42.6646408"],["-114.4882205","42.6623385"],["-114.487204","42.6615477"],["-114.4799408","42.6559236"],["-114.4789782","42.6552323"],["-114.4780004","42.6545841"],["-114.4758957","42.6532921"],["-114.4739739","42.6522787"],["-114.4721545","42.6514062"],["-114.4704334","42.6506578"],["-114.4695068","42.65029"],["-114.4685637","42.64994"],["-114.4677262","42.6496352"],["-114.4662873","42.6491195"],["-114.4603118","42.6470208"],["-114.4578573","42.6461543"],["-114.4552957","42.6448228"],["-114.4545502","42.6442236"],["-114.4537616","42.6435485"],["-114.4530016","42.6426134"],["-114.452195","42.641575"],["-114.449109","42.6372813"],["-114.4486062","42.6365445"],["-114.4482292","42.6359909"],["-114.4478663","42.6352366"],["-114.4477062","42.6347261"],["-114.4476471","42.6342603"],["-114.4476286","42.6338354"],["-114.4477668","42.6319498"],["-114.4523098","42.6086073"],["-114.4524093","42.6081145"],["-114.45249","42.6072487"],["-114.4525023","42.6063259"],["-114.4524975","42.6056894"],["-114.4525166","42.6051488"],["-114.4525811","42.6046257"],["-114.4528564","42.6034942"],["-114.4529918","42.6029922"],["-114.4531773","42.602446"],["-114.4540219","42.5997488"],["-114.4545212","42.5981285"],["-114.4545792","42.5978094"],["-114.4547073","42.5973933"],["-114.4548131","42.5970728"],["-114.4549343","42.5968952"],["-114.4551543","42.5966431"],["-114.4553424","42.5964405"],["-114.4555173","42.5962908"],["-114.4557287","42.5961241"],["-114.4559715","42.5959653"],["-114.456294","42.5957756"],["-114.4567051","42.595552"],["-114.4572897","42.5952534"],["-114.4578182","42.5949794"],["-114.4582265","42.5947623"],["-114.4585818","42.5945667"],["-114.4589156","42.5943404"],["-114.4592011","42.5941067"],["-114.4594664","42.5938541"],["-114.4597522","42.5933526"],["-114.4598942","42.5930217"],["-114.4599654","42.5928074"],["-114.4600506","42.5920907"],["-114.4600724","42.5914256"],["-114.4600812","42.591061"],["-114.4601016","42.5901334"],["-114.4601149","42.5895771"],["-114.4602483","42.5837974"],["-114.4603536","42.5777141"],["-114.4603522","42.5771226"],["-114.4603497","42.5766977"],["-114.4603094","42.5631735"],["-114.4709842","42.5551702"],["-114.4696516","42.5541791"],["-114.464956","42.5507334"],["-114.463218","42.5495148"],["-114.4629959","42.5493745"],["-114.4627383","42.5492537"],["-114.4624586","42.5491502"],["-114.462122","42.5490484"],["-114.4601831","42.5486141"],["-114.4590141","42.5486027"],["-114.4587777","42.5486404"],["-114.44061","42.548501"],["-114.4399109","42.5485026"],["-114.4289256","42.5484004"],["-114.4269533","42.5483764"],["-114.4149408","42.5483122"],["-114.3623236","42.5481418"],["-114.3604652","42.5481376"],["-114.3440874","42.5480049"],["-114.322881","42.5481318"],["-114.3221479","42.5481543"],["-114.3216143","42.5481942"],["-114.3209767","42.5482786"],["-114.3206219","42.5483406"],["-114.3202022","42.548436"],["-114.3193666","42.5486673"],["-114.3188381","42.5488588"],["-114.3184072","42.549034"],["-114.3179202","42.5492812"],["-114.3174294","42.5495497"],["-114.3168885","42.5499203"],["-114.3162903","42.5504088"],["-114.31512","42.5514867"],["-114.3142271","42.5523238"],["-114.3126875","42.5537692"],["-114.3114566","42.5549261"],["-114.3109059","42.5554391"],["-114.3101175","42.5561786"],["-114.3092751","42.5569745"],["-114.3088463","42.5573767"],["-114.3081698","42.5580141"],["-114.3077436","42.5584329"],["-114.3075206","42.5586622"],["-114.3062326","42.5598758"],["-114.3057926","42.5602847"],["-114.3051717","42.5608553"],["-114.3021261","42.5636934"],["-114.301788","42.5640383"],["-114.3013998","42.5644686"],["-114.3008419","42.5651463"],["-114.2990518","42.5675853"],["-114.2981126","42.5688442"],["-114.2974256","42.569707"],["-114.2972612","42.5699422"],["-114.2971242","42.570159"],["-114.2969043","42.5704945"],["-114.2966814","42.5709198"],["-114.2964898","42.5714287"],["-114.2963015","42.5720704"],["-114.2962043","42.5725783"],["-114.2961574","42.5732793"],["-114.2962178","42.5753694"],["-114.2961079","42.5756819"],["-114.2960302","42.5758305"],["-114.2959413","42.5759542"],["-114.2958378","42.5760429"],["-114.2957","42.5761223"],["-114.2955372","42.5761954"],["-114.2952941","42.5762483"],["-114.2939303","42.5763694"],["-114.2934704","42.5764054"],["-114.2929317","42.5764163"],["-114.2893296","42.5764431"],["-114.2883336","42.5764592"],["-114.2842558","42.5764055"],["-114.279895","42.5763331"],["-114.2787097","42.576311"],["-114.2765612","42.5762857"],["-114.2452064","42.57611"],["-114.2428954","42.5761098"],["-114.2257093","42.5760007"],["-114.1594893","42.5759231"],["-114.1577379","42.5758773"],["-114.1559177","42.5757298"],["-114.1551062","42.5756119"],["-114.1531521","42.5752655"],["-114.1499189","42.5746292"],["-114.1484983","42.5744021"],["-114.1477123","42.5742957"],["-114.1470616","42.5742224"],["-114.1462721","42.5741574"],["-114.1452965","42.5741191"],["-114.144422","42.5741015"],["-114.1433063","42.5741391"],["-114.1414378","42.574254"],["-114.1397587","42.574488"],["-114.1356914","42.575286"],["-114.1336732","42.5756638"],["-114.1324377","42.5757983"],["-114.1312845","42.5758879"],["-114.1292717","42.5759179"],["-114.1155835","42.575873"],["-114.114086","42.5758196"],["-114.1123633","42.5757052"],["-114.1058514","42.5752267"],["-114.1048016","42.5751993"],["-114.1038412","42.5752102"],["-114.1030897","42.575243"],["-114.1023579","42.575302"],["-114.0974672","42.5758272"],["-114.0964779","42.5758971"],["-114.095023","42.5759361"],["-114.0939811","42.5759333"],["-113.993436","42.5760754"],["-113.9823772","42.5761458"],["-113.978033","42.5761441"],["-113.9204568","42.5765573"],["-113.9190712","42.5765591"],["-113.8877868","42.5763045"],["-113.8794106","42.5762209"],["-113.8634194","42.5760929"],["-113.8627152","42.576088"],["-113.8624302","42.576082"],["-113.8611205","42.5759884"],["-113.8601414","42.5758886"],["-113.8591813","42.5757527"],["-113.8582055","42.5755833"],["-113.8572408","42.5753825"],["-113.8562464","42.5751321"],["-113.8552506","42.5748422"],["-113.8544301","42.5745649"],["-113.8535342","42.5742265"],["-113.8525812","42.5738238"],["-113.8517069","42.5734124"],["-113.8508532","42.572974"],["-113.8481504","42.5715149"],["-113.8473328","42.5711031"],["-113.8463668","42.5706606"],["-113.8461468","42.5705647"],["-113.8456746","42.5703858"],["-113.8448596","42.570108"],["-113.8439537","42.5698257"],["-113.8428403","42.5695057"],["-113.8411859","42.5691437"],["-113.8398668","42.5689315"],["-113.8391305","42.5688459"],["-113.838214","42.568754"],["-113.837326","42.5686934"],["-113.8363159","42.5686732"],["-113.8350909","42.5686919"],["-113.8017087","42.5685162"],["-113.800884","42.5684864"],["-113.8001712","42.5684516"],["-113.7957362","42.5681117"],["-113.79428","42.5680681"],["-113.7936293","42.5680786"],["-113.7841196","42.5680922"],["-113.7833809","42.568103"],["-113.7816956","42.5681196"],["-113.7800562","42.5681248"],["-113.7598377","42.568147"],["-113.7486777","42.5685476"],["-113.7411436","42.5686476"],["-113.7384819","42.5686576"],["-113.7351185","42.5686568"],["-113.7333123","42.5686573"],["-113.6383919","42.5686941"],["-113.6324813","42.5686915"],["-113.6171074","42.568636"],["-113.5419024","42.5684558"],["-113.5309701","42.5690231"],["-113.5241034","42.5695853"],["-113.5230633","42.5696758"],["-113.5225461","42.5697058"],["-113.5220398","42.5697242"],["-113.5216722","42.5697297"],["-113.5212488","42.5697271"],["-113.5205609","42.5697047"],["-113.5201677","42.5696829"],["-113.5194342","42.5696208"],["-113.5186877","42.5695317"],["-113.5183259","42.5694771"],["-113.5175977","42.5693469"],["-113.5172015","42.5692643"],["-113.5163878","42.5690716"],["-113.5160199","42.5689705"],["-113.5152967","42.568749"],["-113.5149664","42.5686357"],["-113.5145662","42.5684875"],["-113.5142032","42.5683447"],["-113.5134446","42.5680227"],["-113.5128553","42.5677349"],["-113.5089338","42.5654916"],["-113.4293831","42.5202118"],["-113.4283311","42.5195818"],["-113.4274566","42.5190256"],["-113.4125866","42.5085751"],["-113.4117971","42.5079829"],["-113.4113714","42.5076325"],["-113.4109862","42.5072908"],["-113.4104956","42.506822"],["-113.4097466","42.5060485"],["-113.4087923","42.5049241"],["-113.399537","42.4937811"],["-113.3964175","42.4900396"],["-113.3901201","42.4825024"],["-113.3890441","42.4812129"],["-113.3791927","42.4693924"],["-113.3766192","42.4662754"],["-113.3751335","42.4644684"],["-113.3743021","42.4634804"],["-113.373782","42.4628376"],["-113.3730782","42.4620008"],["-113.3723236","42.461132"],["-113.3714059","42.4600733"],["-113.3706364","42.4592387"],["-113.3696094","42.4581966"],["-113.3686067","42.4572143"],["-113.3671094","42.4558166"],["-113.3638269","42.4529663"],["-113.3630879","42.452364"],["-113.3613616","42.4508916"],["-113.3555206","42.4458907"],["-113.3546995","42.4451913"],["-113.3537944","42.4444152"],["-113.352566","42.4433749"],["-113.351436","42.4424188"],["-113.3494056","42.4406889"],["-113.3484045","42.439822"],["-113.3472021","42.4387836"],["-113.346349","42.43805"],["-113.3455851","42.4374105"],["-113.3390743","42.4318862"],["-113.3240705","42.4190623"],["-113.3220794","42.4173287"],["-113.3195107","42.4152033"],["-113.3181544","42.4140343"],["-113.3157173","42.4119436"],["-113.3120742","42.4087849"],["-113.3073195","42.4046229"],["-113.2622615","42.3660876"],["-113.2485097","42.3543038"],["-113.243071","42.3496767"],["-113.2383798","42.3456493"],["-113.2359623","42.3436441"],["-113.2329357","42.3414647"],["-113.2264681","42.3368995"],["-113.2222009","42.3340073"],["-113.2177757","42.3309154"],["-113.214793","42.328826"],["-113.2117492","42.3266784"],["-113.2096973","42.3251994"],["-113.1953797","42.3150828"],["-113.1933887","42.3136008"],["-113.1919892","42.3124528"],["-113.1719982","42.2929474"],["-113.1678781","42.2889379"],["-113.1661051","42.2872161"],["-113.1618483","42.2834946"],["-113.1519672","42.2749663"],["-113.1508175","42.2738906"],["-113.146671","42.2696286"],["-113.1458274","42.2688297"],["-113.144826","42.2679786"],["-113.1429025","42.2665644"],["-113.1416781","42.2657731"],["-113.1406592","42.2651806"],["-113.1388187","42.2642659"],["-113.1376283","42.2637393"],["-113.1360969","42.2631321"],["-113.1341282","42.2624607"],["-113.1252993","42.260048"],["-113.1230689","42.2593704"],["-113.1210774","42.2586761"],["-113.1192954","42.258009"],["-113.1072805","42.2531246"],["-113.1057043","42.252444"],["-113.104414","42.2518619"],["-113.1026003","42.2509233"],["-113.1009983","42.2500504"],["-113.0999309","42.2494329"],["-113.0982217","42.2483123"],["-113.0957307","42.2466089"],["-113.0936294","42.2450938"],["-113.0925188","42.244144"],["-113.0910783","42.2427602"],["-113.090034","42.2417587"],["-113.0895489","42.2412812"],["-113.0887233","42.2404153"],["-113.0883658","42.2400111"],["-113.0880612","42.2396426"],["-113.0876531","42.2389997"],["-113.0873882","42.2385246"],["-113.086966","42.2375491"],["-113.0864736","42.2363172"],["-113.085764","42.234562"],["-113.0849513","42.2329255"],["-113.0843851","42.2321397"],["-113.0832862","42.2308355"],["-113.0815427","42.228741"],["-113.0808125","42.2277871"],["-113.0805464","42.227275"],["-113.0802637","42.2265891"],["-113.0800451","42.2259198"],["-113.0798036","42.2251426"],["-113.0796149","42.2246018"],["-113.0793042","42.2239318"],["-113.0790401","42.2234994"],["-113.0787994","42.223137"],["-113.0783536","42.2226202"],["-113.0778596","42.2221589"],["-113.0774582","42.2218261"],["-113.0769553","42.2214829"],["-113.0763848","42.2211496"],["-113.0757068","42.2207857"],["-113.0749208","42.2204648"],["-113.0743431","42.2202795"],["-113.0730111","42.2199886"],["-113.0718331","42.2198483"],["-113.0708709","42.2198231"],["-113.0699812","42.2198712"],["-113.0649222","42.2204335"],["-113.0635192","42.2205851"],["-113.0627538","42.2206691"],["-113.0622546","42.2207208"],["-113.0613617","42.2207955"],["-113.0608721","42.2208145"],["-113.0604004","42.2208079"],["-113.0599668","42.2207837"],["-113.0594165","42.2207329"],["-113.0588688","42.2206368"],["-113.0580304","42.2204029"],["-113.0571813","42.220091"],["-113.0563551","42.219672"],["-113.0557193","42.2192774"],["-113.0550856","42.2188792"],["-113.0535485","42.21791"],["-113.0501839","42.2157885"],["-113.0495663","42.2153078"],["-113.0492401","42.2149779"],["-113.048945","42.2146507"],["-113.0486919","42.2143011"],["-113.0484869","42.2139554"],["-113.0482711","42.2135151"],["-113.0480834","42.2130239"],["-113.0479158","42.2125567"],["-113.0477612","42.2120993"],["-113.0472467","42.2105833"],["-113.0465947","42.2086894"],["-113.0463689","42.2081236"],["-113.0461965","42.2077697"],["-113.0460143","42.2074778"],["-113.0456431","42.2069634"],["-113.0452652","42.2065277"],["-113.0448862","42.2061913"],["-113.0446328","42.2059623"],["-113.0442402","42.2056731"],["-113.0437118","42.205322"],["-113.0431485","42.204999"],["-113.0427318","42.2048022"],["-113.0422769","42.2046118"],["-113.0414723","42.2043404"],["-113.040617","42.2041282"],["-113.0398475","42.2039826"],["-113.0373413","42.2035385"],["-113.0369279","42.2034664"],["-113.0358857","42.2032648"],["-113.0351254","42.2030886"],["-113.0328289","42.202499"],["-113.0311519","42.2020027"],["-113.0287552","42.2012672"],["-113.0281247","42.2010512"],["-113.0275892","42.2008493"],["-113.0270495","42.2005998"],["-113.0265952","42.2003469"],["-113.026061","42.1999916"],["-113.0256378","42.1996463"],["-113.0253437","42.19937"],["-113.0249888","42.1989312"],["-113.0246657","42.1984664"],["-113.0244537","42.1980447"],["-113.0242885","42.1976563"],["-113.0241303","42.1970804"],["-113.0240547","42.1964015"],["-113.0239876","42.1956748"],["-113.0239177","42.1949236"],["-113.0238287","42.1940682"],["-113.0236995","42.19282"],["-113.023517","42.1919541"],["-113.0233203","42.1913264"],["-113.0230076","42.1905374"],["-113.022788","42.1900829"],["-113.0223441","42.1893174"],["-113.0217693","42.1885128"],["-113.0210532","42.1877235"],["-113.0206417","42.187361"],["-113.0200846","42.1868758"],["-113.0176214","42.1851134"],["-113.0147169","42.1830922"],["-113.0136953","42.1822192"],["-113.0127809","42.1813516"],["-113.0118781","42.1803837"],["-113.0110317","42.1794218"],["-113.0101835","42.1784807"],["-113.0072454","42.1756648"],["-113.0052464","42.1738173"],["-113.0045544","42.1731693"],["-112.9959667","42.1640429"],["-112.9951741","42.1632236"],["-112.9938639","42.1618448"],["-112.9892655","42.1569053"],["-112.9884887","42.1559774"],["-112.9868682","42.1538023"],["-112.9858615","42.1523843"],["-112.9853715","42.151693"],["-112.980105","42.1444243"],["-112.9768539","42.1399597"],["-112.9751053","42.1375768"],["-112.9710729","42.1320596"],["-112.9702141","42.1309811"],["-112.9693003","42.1299414"],["-112.9683087","42.1289146"],["-112.9672378","42.1278676"],["-112.9493167","42.1121122"],["-112.9476557","42.1106583"],["-112.9328522","42.0975024"],["-112.9216628","42.0865457"],["-112.919272","42.0842162"],["-112.9007024","42.065828"],["-112.8517555","42.0175057"],["-112.8289412","41.9949706"],["-112.8277885","41.9938669"],["-112.8264977","41.9927321"],["-112.8251093","41.9916503"],["-112.8237543","41.9906495"],["-112.8220977","41.9896029"],["-112.8205568","41.9886591"],["-112.81932","41.987969"],["-112.8179664","41.9872821"],["-112.8161751","41.9865022"],["-112.8126754","41.9850907"],["-112.8069918","41.9827474"],["-112.7964089","41.9782264"],["-112.7935609","41.9769666"],["-112.791698","41.9761809"],["-112.7879445","41.9747615"],["-112.785783","41.9740212"],["-112.7833758","41.9732598"],["-112.770544","41.9695999"],["-112.7680574","41.9687602"],["-112.7655402","41.9678309"],["-112.7629205","41.966774"],["-112.7599943","41.9655179"],["-112.756089","41.9637687"],["-112.7546809","41.9632138"],["-112.7534241","41.962772"],["-112.7523484","41.9624648"],["-112.7512899","41.9622007"],["-112.7502443","41.9619802"],["-112.7474259","41.9615845"],["-112.7409874","41.9615011"],["-112.6986456","41.96131"],["-112.6974406","41.9612982"],["-112.6964565","41.9612815"],["-112.6954644","41.9612454"],["-112.6947186","41.9611662"],["-112.6938775","41.9610342"],["-112.6931485","41.9608676"],["-112.6916225","41.9603452"],["-112.6777525","41.9550216"],["-112.6755832","41.9541496"],["-112.6750468","41.9538575"],["-112.6745298","41.9535095"],["-112.6728423","41.9520459"],["-112.6575742","41.9380033"],["-112.6560132","41.9366298"],["-112.6548177","41.9356765"],["-112.653626","41.934801"],["-112.6523869","41.9339675"],["-112.6492614","41.9321642"],["-112.6443663","41.9294538"],["-112.6194487","41.9157636"],["-112.6178327","41.914953"],["-112.6162254","41.9142567"],["-112.6125457","41.9128471"],["-112.6111741","41.9124128"],["-112.6098134","41.9120263"],["-112.6086072","41.9117058"],["-112.5878845","41.9067343"],["-112.5869774","41.9064588"],["-112.5860424","41.9061202"],["-112.5852058","41.9057535"],["-112.5845819","41.9054033"],["-112.5840648","41.9050621"],["-112.5834758","41.9045717"],["-112.5822734","41.9033226"],["-112.5780519","41.8984522"],["-112.5774984","41.897834"],["-112.5771135","41.8974639"],["-112.5767249","41.8971279"],["-112.5761421","41.8966797"],["-112.5756966","41.8963802"],["-112.5752653","41.8961064"],["-112.5748701","41.8958807"],["-112.5744605","41.895668"],["-112.5741364","41.8955063"],["-112.5734986","41.8952351"],["-112.5728717","41.8950033"],["-112.5722932","41.8948188"],["-112.5717646","41.894671"],["-112.5712357","41.894544"],["-112.5707375","41.8944412"],["-112.5702092","41.8943515"],["-112.5693643","41.8942443"],["-112.5688409","41.8942043"],["-112.5682731","41.8941754"],["-112.5677878","41.8941678"],["-112.5669385","41.8941956"],["-112.5647506","41.8944263"],["-112.5449376","41.8969261"],["-112.5447228","41.8969536"],["-112.5443419","41.8969992"],["-112.5441913","41.8970177"],["-112.5427629","41.8971795"],["-112.5420176","41.8972472"],["-112.5414113","41.897283"],["-112.5399745","41.897316"],["-112.5393329","41.8973045"],["-112.5384649","41.8972629"],["-112.5377409","41.8972143"],["-112.5368857","41.8971256"],["-112.5360613","41.897018"],["-112.5349967","41.8968245"],["-112.533827","41.8965784"],["-112.483731","41.8829677"],["-112.4827085","41.8826324"],["-112.4814252","41.8821109"],["-112.4801033","41.8814819"],["-112.4778629","41.8801398"],["-112.4673518","41.873418"],["-112.4665692","41.8728581"],["-112.4660215","41.8724256"],["-112.4651801","41.8716739"],["-112.4599138","41.8658461"],["-112.4356431","41.8388704"],["-112.4322806","41.8350938"],["-112.4219262","41.8235829"],["-112.4211477","41.8228676"],["-112.420301","41.8221199"],["-112.4188788","41.8210666"],["-112.4129024","41.8174084"],["-112.4114406","41.8165829"],["-112.4100523","41.8159792"],["-112.4091097","41.8156148"],["-112.4081906","41.8153236"],["-112.4070001","41.8150529"],["-112.405774","41.8147923"],["-112.4050359","41.8146769"],["-112.4042892","41.8145943"],["-112.4034563","41.8145332"],["-112.4024273","41.8144977"],["-112.4010268","41.8145107"],["-112.3996149","41.8146109"],["-112.3986893","41.8147295"],["-112.3975155","41.8148978"],["-112.3909694","41.8158586"],["-112.3886195","41.8161551"],["-112.3873441","41.8162161"],["-112.3627753","41.8156013"],["-112.3607284","41.8154897"],["-112.359287","41.8153441"],["-112.3566416","41.8148912"],["-112.3480151","41.8132034"],["-112.3461349","41.8126429"],["-112.3452615","41.8123136"],["-112.3425999","41.8111103"],["-112.3333623","41.806892"],["-112.3319095","41.8063842"],["-112.330597","41.8060233"],["-112.3293491","41.8057965"],["-112.3250812","41.8053509"],["-112.3235201","41.8051413"],["-112.3222235","41.8048955"],["-112.3205756","41.8044882"],["-112.2947646","41.7968417"],["-112.2897328","41.7953056"],["-112.2878726","41.7945712"],["-112.2863402","41.7938358"],["-112.2847068","41.7928737"],["-112.2839134","41.7923323"],["-112.282263","41.7909998"],["-112.2773028","41.7868679"],["-112.2764781","41.7861246"],["-112.273922","41.7833654"],["-112.2728709","41.782068"],["-112.2719392","41.780752"],["-112.2711024","41.7794563"],["-112.2703419","41.7780775"],["-112.2685418","41.7740305"],["-112.260637","41.7551518"],["-112.2592692","41.751685"],["-112.2582343","41.7482733"],["-112.257426","41.7458475"],["-112.2566394","41.743263"],["-112.2560939","41.7416956"],["-112.2556628","41.7406979"],["-112.254868","41.7392843"],["-112.2542177","41.738411"],["-112.2529512","41.7369588"],["-112.2485278","41.7320014"],["-112.2473955","41.7308099"],["-112.2465489","41.7300762"],["-112.2457695","41.7295155"],["-112.2432116","41.7278332"],["-112.2396869","41.7256412"],["-112.2381104","41.7247355"],["-112.2368164","41.7240541"],["-112.2352465","41.7233089"],["-112.2326012","41.7221829"],["-112.2235747","41.7182908"],["-112.2045645","41.7100863"],["-112.1730306","41.6950388"],["-112.1473045","41.6827214"],["-112.1434316","41.680869"],["-112.1381132","41.6783206"],["-112.1374261","41.6779686"],["-112.1368968","41.6776738"],["-112.1364679","41.6774102"],["-112.136081","41.6771608"],["-112.1354955","41.6767472"],["-112.1350063","41.6763678"],["-112.1345344","41.6759713"],["-112.1342541","41.6757227"],["-112.1337848","41.6752709"],["-112.1335685","41.6750476"],["-112.1332974","41.6747458"],["-112.1328893","41.6742607"],["-112.1038692","41.6388878"],["-112.1032162","41.6381405"],["-112.099179","41.6331695"],["-112.0979132","41.631627"],["-112.0953536","41.6285075"],["-112.0946138","41.6276286"],["-112.09388","41.6267341"],["-112.0931667","41.6257589"],["-112.0845875","41.6130697"],["-112.083465","41.6112427"],["-112.0831546","41.6106017"],["-112.0824219","41.6087912"],["-112.0734076","41.5859798"],["-112.073217","41.5854216"],["-112.0730888","41.5849966"],["-112.0728499","41.5834098"],["-112.0705571","41.5664609"],["-112.0699697","41.5619758"],["-112.066696","41.5376929"],["-112.0664705","41.5358751"],["-112.0644636","41.5214644"],["-112.0642913","41.5206047"],["-112.0639191","41.5193996"],["-112.0599296","41.5086093"],["-112.0536458","41.4916901"],["-112.0534441","41.4909926"],["-112.0533193","41.4904726"],["-112.0532252","41.4899147"],["-112.0531403","41.4893185"],["-112.0530997","41.4886882"],["-112.0530836","41.4880056"],["-112.0535499","41.4818145"],["-112.0536741","41.4807934"],["-112.0537822","41.4795911"],["-112.0540024","41.476477"],["-112.0554125","41.4593321"],["-112.056632","41.4442176"],["-112.0570817","41.4386575"],["-112.0574011","41.4348009"],["-112.0574884","41.433476"],["-112.0576346","41.4315957"],["-112.0576281","41.4310108"],["-112.0575839","41.4304258"],["-112.0574679","41.4297216"],["-112.0573207","41.4290653"],["-112.0571051","41.428376"],["-112.056852","41.4276688"],["-112.056256","41.4264757"],["-112.0555283","41.4253649"],["-112.0537204","41.4230898"],["-112.05331","41.4225284"],["-112.0530004","41.422068"],["-112.0526046","41.4214158"],["-112.0521404","41.4204917"],["-112.0519309","41.4200166"],["-112.0517404","41.4195059"],["-112.0515575","41.4189689"],["-112.0513753","41.4183412"],["-112.0511282","41.4173166"],["-112.0510392","41.4167589"],["-112.0502776","41.4104438"],["-112.0501633","41.4095191"],["-112.0501125","41.4091871"],["-112.0500335","41.4087743"],["-112.0499419","41.4083777"],["-112.0498269","41.4079494"],["-112.0496948","41.4075096"],["-112.0496289","41.4073127"],["-112.0495531","41.4070997"],["-112.0491336","41.406073"],["-112.0435449","41.3931678"],["-112.0424242","41.3904574"],["-112.0421254","41.3896084"],["-112.0420321","41.3891369"],["-112.0419642","41.3886294"],["-112.0419499","41.3880938"],["-112.0420771","41.3854751"],["-112.0433764","41.3626578"],["-112.0435092","41.3596562"],["-112.0433885","41.3585263"],["-112.0432624","41.3576674"],["-112.0428865","41.3562878"],["-112.0419143","41.353113"],["-112.0412939","41.3511299"],["-112.0405072","41.3486836"],["-112.0391305","41.3443225"],["-112.0388373","41.343363"],["-112.0384633","41.3426026"],["-112.0382001","41.3421957"],["-112.0379327","41.3418122"],["-112.0377269","41.3415422"],["-112.0361558","41.3396832"],["-112.0359122","41.3393702"],["-112.0356447","41.3390042"],["-112.0353715","41.3385312"],["-112.0351081","41.3380383"],["-112.0280338","41.3220493"],["-112.0268306","41.3192439"],["-112.0264366","41.3180066"],["-112.0263028","41.3172981"],["-112.0261665","41.3162993"],["-112.0261331","41.3145234"],["-112.0261216","41.3083088"],["-112.0260624","41.3055636"],["-112.0260601","41.3038187"],["-112.026044","41.2999723"],["-112.0260547","41.2905165"],["-112.0264037","41.2682019"],["-112.0263381","41.2674974"],["-112.0261264","41.2666249"],["-112.0250549","41.2628621"],["-112.0249985","41.2626906"],["-112.0245407","41.2611174"],["-112.0242992","41.2603907"],["-112.0240109","41.2596962"],["-112.0236302","41.2590202"],["-112.0231837","41.2583543"],["-112.0226841","41.2577504"],["-112.0215205","41.2564643"],["-112.0192343","41.2539614"],["-112.0187547","41.2533201"],["-112.0183029","41.2526732"],["-112.0179222","41.2519397"],["-112.0176712","41.2513934"],["-112.0175851","41.2511426"],["-112.0174731","41.250797"],["-112.0141837","41.2360019"],["-112.0134639","41.2327399"],["-112.0116837","41.2247608"],["-112.0115589","41.2243381"],["-112.0113454","41.2238746"],["-112.011141","41.2234752"],["-112.0108627","41.2230744"],["-112.0105274","41.2226573"],["-112.0101711","41.2222682"],["-112.0097869","41.2219398"],["-112.0091886","41.2214776"],["-112.00853","41.2211154"],["-112.0062267","41.2200008"],["-112.0055203","41.2196336"],["-112.0049339","41.2192404"],["-112.0044781","41.2188976"],["-112.0040954","41.2185195"],["-112.0034876","41.2178108"],["-112.0025722","41.2166602"],["-112.0009393","41.2145423"],["-112.0003761","41.2138191"],["-111.9976563","41.2103635"],["-111.9956756","41.2078599"],["-111.9950977","41.2069978"],["-111.9947848","41.2064167"],["-111.994549","41.2059122"],["-111.9943936","41.20547"],["-111.9942954","41.2049867"],["-111.9942223","41.2045588"],["-111.9941829","41.203898"],["-111.9941799","41.2033833"],["-111.9942252","41.2029578"],["-111.9943557","41.2023323"],["-111.994514","41.2017944"],["-111.9947981","41.2011358"],["-111.995152","41.2004752"],["-111.9961885","41.1992182"],["-111.9975902","41.198065"],["-112.0027601","41.1939228"],["-112.0037597","41.1930214"],["-112.0043658","41.1924324"],["-112.0058984","41.1908353"],["-112.0097877","41.1864872"],["-112.010659","41.1856371"],["-112.0158227","41.1816436"],["-112.0165353","41.1810378"],["-112.0170612","41.1805535"],["-112.0175196","41.1800276"],["-112.0179566","41.1793804"],["-112.0182341","41.1789153"],["-112.0184085","41.1785814"],["-112.018647","41.177997"],["-112.0187567","41.1776852"],["-112.0188616","41.1773049"],["-112.0190027","41.1765334"],["-112.0194909","41.172912"],["-112.0198838","41.1711297"],["-112.0235769","41.1604517"],["-112.0239359","41.1592916"],["-112.0251722","41.1541479"],["-112.0254877","41.1526298"],["-112.0255822","41.1489601"],["-112.0255568","41.1330354"],["-112.0255222","41.1272344"],["-112.0254608","41.1267973"],["-112.0253618","41.1263153"],["-112.0251766","41.1257234"],["-112.0249538","41.1251936"],["-112.0247155","41.1247263"],["-112.0244633","41.1242994"],["-112.0240236","41.1236826"],["-112.0236951","41.1233012"],["-112.0233263","41.1228941"],["-112.022809","41.1224629"],["-112.0222127","41.1219953"],["-112.0212098","41.1212781"],["-112.0198132","41.1202296"],["-112.0190718","41.1196199"],["-112.0185566","41.1191404"],["-112.0160085","41.1163692"],["-112.0079475","41.1075059"],["-112.0069436","41.1064627"],["-112.0032496","41.1024989"],["-112.0021848","41.1013314"],["-111.9870811","41.0849682"],["-111.9842282","41.0819477"],["-111.9797046","41.0770115"],["-111.9751881","41.0721191"],["-111.9742135","41.0710327"],["-111.9733196","41.0700541"],["-111.9704787","41.0669882"],["-111.967708","41.0639838"],["-111.9665989","41.0628469"],["-111.9657954","41.0620867"],["-111.964954","41.061381"],["-111.9642124","41.0607745"],["-111.9623947","41.0592018"],["-111.9621318","41.0588987"],["-111.9618325","41.0584733"],["-111.9615178","41.0579513"],["-111.9612765","41.0574098"],["-111.9611095","41.0568315"],["-111.9610223","41.0562585"],["-111.9610354","41.055674"],["-111.9611603","41.054314"],["-111.9611674","41.0536177"],["-111.9611039","41.0531292"],["-111.9610121","41.0527159"],["-111.9606032","41.0517659"],["-111.9602774","41.0511814"],["-111.9590907","41.0493059"],["-111.9579555","41.0474826"],["-111.9571146","41.0460953"],["-111.9564981","41.0451181"],["-111.9561157","41.0445688"],["-111.9559578","41.0443616"],["-111.9557793","41.0441367"],["-111.9556092","41.0439313"],["-111.9552798","41.0435595"],["-111.9545278","41.0428074"],["-111.9540257","41.0423629"],["-111.9533263","41.041798"],["-111.9511147","41.0402416"],["-111.9503166","41.0396281"],["-111.9497189","41.0390481"],["-111.9491699","41.0384669"],["-111.948753","41.0378631"],["-111.9485032","41.0374184"],["-111.9482729","41.0369428"],["-111.9480357","41.0362772"],["-111.9478713","41.0356326"],["-111.9478101","41.0350874"],["-111.9478134","41.0341065"],["-111.9478331","41.0325041"],["-111.9477476","41.0316253"],["-111.9475892","41.0307912"],["-111.9473013","41.0298567"],["-111.9459348","41.026769"],["-111.9400773","41.0142863"],["-111.9395438","41.0132356"],["-111.9391511","41.0126701"],["-111.9389944","41.0124598"],["-111.9383416","41.0116664"],["-111.9377755","41.0110937"],["-111.9369537","41.0103544"],["-111.9357008","41.0093169"],["-111.9344065","41.0082051"],["-111.9316502","41.0055572"],["-111.9310345","41.0050684"],["-111.9304233","41.0046198"],["-111.9218505","40.9991488"],["-111.9188533","40.9971269"],["-111.9143075","40.9941608"],["-111.9119463","40.9927061"],["-111.9075119","40.9902338"],["-111.9032022","40.9879922"],["-111.9024721","40.9875729"],["-111.9014598","40.9869203"],["-111.9011144","40.9866477"],["-111.9006567","40.986272"],["-111.899334","40.9847849"],["-111.8987633","40.9839435"],["-111.8983229","40.9830754"],["-111.8979226","40.9820685"],["-111.8975834","40.9812283"],["-111.8949868","40.974605"],["-111.8942747","40.9729714"],["-111.8938081","40.9720904"],["-111.8932283","40.9711211"],["-111.8921934","40.9694508"],["-111.8919478","40.9689928"],["-111.8917408","40.9684148"],["-111.8915711","40.9678899"],["-111.8914345","40.9672957"],["-111.8913471","40.966392"],["-111.8915353","40.9294039"],["-111.8915213","40.9275705"],["-111.8914123","40.9262438"],["-111.8911915","40.9241438"],["-111.8911151","40.9227621"],["-111.8910982","40.9223317"],["-111.8911117","40.9207827"],["-111.8911634","40.9197875"],["-111.8913015","40.9181636"],["-111.8913968","40.9167354"],["-111.891427","40.9158829"],["-111.8914493","40.9142185"],["-111.8914854","40.9121803"],["-111.8915322","40.9058235"],["-111.8915307","40.9044685"],["-111.8917073","40.9035106"],["-111.8918652","40.902965"],["-111.8921163","40.902362"],["-111.8939268","40.8988495"],["-111.8948567","40.8969659"],["-111.8955046","40.8954197"],["-111.8958229","40.8945164"],["-111.896169","40.8933998"],["-111.8963117","40.8928273"],["-111.896603","40.8909409"],["-111.8967466","40.8847808"],["-111.8967735","40.8832745"],["-111.8968172","40.8813283"],["-111.896854","40.8787403"],["-111.8969006","40.8763422"],["-111.8969968","40.8729397"],["-111.8971391","40.8716545"],["-111.8973094","40.870499"],["-111.8975247","40.8695084"],["-111.8978849","40.8684376"],["-111.8982948","40.8673168"],["-111.8988392","40.8662497"],["-111.8994052","40.8652935"],["-111.9000994","40.8642265"],["-111.9008292","40.8632"],["-111.9018307","40.8619267"],["-111.911226","40.851501"],["-111.9126744","40.8499031"],["-111.9132882","40.8492019"],["-111.9137641","40.8484907"],["-111.9141428","40.8478038"],["-111.9144712","40.8471332"],["-111.914752","40.846488"],["-111.9149945","40.8456952"],["-111.9152173","40.8449011"],["-111.9153632","40.8442244"],["-111.915514","40.8431921"],["-111.9156234","40.8399389"],["-111.9156195","40.8381503"],["-111.9156231","40.8365358"],["-111.9156969","40.8338824"],["-111.9160305","40.8288513"],["-111.9161494","40.8272061"],["-111.9163299","40.8240899"],["-111.9164422","40.8224406"],["-111.9165594","40.8210673"],["-111.9166228","40.8206213"],["-111.9167262","40.8202468"],["-111.9168779","40.819848"],["-111.9170828","40.819405"],["-111.9173634","40.818926"],["-111.9176806","40.8184803"],["-111.91811","40.8179997"],["-111.9189412","40.817266"],["-111.9208174","40.8158565"],["-111.9217478","40.8150645"],["-111.9224839","40.8143014"],["-111.922754","40.8139389"],["-111.9230739","40.8134352"],["-111.9233848","40.8129126"],["-111.9237174","40.8122906"],["-111.9238261","40.8120461"],["-111.9239069","40.8118112"],["-111.9239903","40.8115506"],["-111.9240695","40.8112818"],["-111.9241331","40.8109789"],["-111.9242017","40.8105126"],["-111.9242297","40.8102217"],["-111.9242532","40.8099328"],["-111.9242622","40.809625"],["-111.9242421","40.8092965"],["-111.9242094","40.8090135"],["-111.9241631","40.8086959"],["-111.9240999","40.8084107"],["-111.9240222","40.8081379"],["-111.923906","40.8077772"],["-111.9237847","40.8074211"],["-111.9234893","40.8068046"],["-111.921186","40.8022121"],["-111.9197896","40.7995434"],["-111.9189371","40.798004"],["-111.9182739","40.7967609"],["-111.917788","40.795778"],["-111.9174218","40.7947348"],["-111.9166136","40.7926441"],["-111.9161404","40.7914178"],["-111.9158058","40.7905879"],["-111.9154657","40.7899548"],["-111.9149469","40.7890855"],["-111.9142445","40.7879658"],["-111.9135926","40.7870287"],["-111.9115499","40.7838181"],["-111.9112807","40.7833088"],["-111.911051","40.7828024"],["-111.910883","40.7822773"],["-111.9108674","40.7822249"],["-111.9107774","40.7818724"],["-111.9107204","40.7814319"],["-111.9106689","40.7803255"],["-111.9106768","40.7771743"],["-111.910697","40.7761397"],["-111.9107167","40.7729132"],["-111.9108065","40.7723232"],["-111.9110109","40.7714873"],["-111.9113053","40.7707772"],["-111.9118264","40.769529"],["-111.9123318","40.7683372"],["-111.9125409","40.7678696"],["-111.9129592","40.7669656"],["-111.9134735","40.765795"],["-111.9137595","40.7653506"],["-111.9140378","40.7647982"],["-111.9142628","40.7643352"],["-111.9145262","40.7637922"],["-111.9147731","40.7632409"],["-111.9149053","40.762889"],["-111.9149722","40.7625956"],["-111.9150029","40.7622173"],["-111.9150133","40.7619601"],["-111.9150085","40.7613443"],["-111.9149583","40.7611686"],["-111.9149038","40.7610417"],["-111.9148333","40.7609286"],["-111.9147598","40.7608273"],["-111.9146323","40.7607082"],["-111.9145534","40.760655"],["-111.9144491","40.760594"],["-111.9143488","40.7605624"],["-111.9132229","40.7605554"],["-111.9117444","40.7606104"],["-111.9095397","40.7606056"],["-111.9075544","40.7605503"],["-111.9062441","40.76055"],["-111.9054572","40.7606108"],["-111.9046643","40.7606192"],["-111.9041038","40.7606366"],["-111.8996199","40.7606406"],["-111.8993912","40.7606166"],["-111.8991631","40.7605938"],["-111.8988863","40.7605819"],["-111.8923312","40.7605777"],["-111.8915687","40.7605585"],["-111.8912712","40.7605581"],["-111.8910244","40.7605626"],["-111.8909858","40.7605638"],["-111.8909852","40.7605921"],["-111.8909881","40.7606863"],["-111.8909912","40.7607303"],["-111.8910159","40.760731"],["-111.8910816","40.76073"],["-111.8911957","40.7607299"],["-111.8928881","40.7607141"],["-111.8939388","40.7607076"],["-111.8939499","40.7584878"],["-111.8968387","40.758481"],["-111.8993947","40.7584631"],["-111.8994468","40.7584639"],["-111.8995998","40.7584631"],["-111.8996258","40.7584629"],["-111.8997413","40.7584611"],["-111.8998048","40.758461"],["-111.8999345","40.7584599"],["-111.9010808","40.75846"],["-111.9012536","40.7584591"],["-111.9018359","40.7584599"],["-111.9022619","40.7584592"],["-111.9027646","40.758459"],["-111.9042999","40.7584572"],["-111.9045607","40.7584569"],["-111.905105","40.7584552"],["-111.9066775","40.7584642"],["-111.9075931","40.7584565"],["-111.908011","40.7584287"],["-111.9085541","40.7583194"],["-111.9099683","40.7579655"],["-111.9104612","40.7578039"],["-111.9108977","40.7576353"],["-111.9110567","40.7575492"],["-111.9114724","40.7572697"],["-111.9116994","40.7570648"],["-111.9119753","40.7567285"],["-111.9121696","40.7563605"],["-111.9122577","40.7560906"],["-111.9123021","40.7557856"],["-111.9122879","40.7554821"],["-111.9121262","40.7549129"],["-111.9117921","40.7541301"],["-111.9110889","40.752418"],["-111.9109816","40.7519844"],["-111.9108493","40.7515619"],["-111.9104596","40.7506876"],["-111.9100063","40.7500457"],["-111.90936","40.7493283"],["-111.9069454","40.7473773"],["-111.9063515","40.7468886"],["-111.9059939","40.7465945"],["-111.9054875","40.7461132"],["-111.9051225","40.7456958"],["-111.9048039","40.7452039"],["-111.9045372","40.7446502"],["-111.904338","40.7440218"],["-111.9042528","40.7434785"],["-111.9042277","40.7427317"],["-111.9047543","40.7364548"],["-111.9048185","40.7349761"],["-111.9048182","40.7339156"],["-111.9047656","40.7310562"],["-111.9046553","40.7225662"],["-111.9047379","40.7192583"],["-111.9047297","40.7184959"],["-111.9047156","40.717838"],["-111.9046573","40.7168516"],["-111.9044286","40.714056"],["-111.9042226","40.7114338"],["-111.9040538","40.7094108"],["-111.9039814","40.7073416"],["-111.9039345","40.7058019"],["-111.9038417","40.7045832"],["-111.9037355","40.7037889"],["-111.9034953","40.7030055"],["-111.9027055","40.7009015"],["-111.9023697","40.7000015"],["-111.902241","40.699645"],["-111.9022107","40.6995433"],["-111.9021326","40.6992304"],["-111.9020455","40.6988305"],["-111.9019872","40.6984689"],["-111.9019501","40.6980877"],["-111.901925","40.6976699"],["-111.9019314","40.6972459"],["-111.9019513","40.6968349"],["-111.9020096","40.6964043"],["-111.9020902","40.6959749"],["-111.9022421","40.6953449"],["-111.9025981","40.6943195"],["-111.9028938","40.6936064"],["-111.9031384","40.6928583"],["-111.9033211","40.6922306"],["-111.9034299","40.6916886"],["-111.9034937","40.6910595"],["-111.9034396","40.6899973"],["-111.9031297","40.6871339"],["-111.9031009","40.6868766"],["-111.9030973","40.6868409"],["-111.9030834","40.6867205"],["-111.9027032","40.6833181"],["-111.9022785","40.6796041"],["-111.9016962","40.6750063"],["-111.901668","40.6747228"],["-111.9016373","40.6739153"],["-111.9016235","40.6722515"],["-111.9016082","40.6699536"],["-111.9015984","40.669112"],["-111.9015429","40.660681"],["-111.9014874","40.660182"],["-111.9015647","40.6586489"],["-111.9016787","40.6570295"],["-111.9019203","40.6543885"],["-111.9019292","40.6543032"],["-111.9032813","40.6413994"],["-111.9033897","40.640772"],["-111.9035907","40.6399828"],["-111.9043308","40.638073"],["-111.9049257","40.6365021"],["-111.9050921","40.635909"],["-111.9051808","40.6352204"],["-111.9051929","40.635009"],["-111.9052064","40.6346003"],["-111.9052017","40.6344133"],["-111.9051765","40.6339496"],["-111.9050893","40.6332537"],["-111.9049618","40.6326567"],["-111.9047384","40.631956"],["-111.9045978","40.631605"],["-111.9044089","40.6311477"],["-111.9042276","40.6307148"],["-111.9040767","40.6303579"],["-111.9039783","40.6300999"],["-111.9038843","40.6298439"],["-111.9036201","40.6291243"],["-111.9034011","40.6284456"],["-111.9032897","40.628014"],["-111.9031409","40.6272482"],["-111.9030405","40.6264716"],["-111.9030426","40.6255531"],["-111.9031204","40.624575"],["-111.9033572","40.6234852"],["-111.9053328","40.6175853"],["-111.9058306","40.6160599"],["-111.9059783","40.6154378"],["-111.9060895","40.6148808"],["-111.9061489","40.6145061"],["-111.9061928","40.6141478"],["-111.9062286","40.6137121"],["-111.9062518","40.6132025"],["-111.9062561","40.6127333"],["-111.9062393","40.6122491"],["-111.9061982","40.6117196"],["-111.906147","40.6112068"],["-111.9058666","40.6094643"],["-111.9029519","40.5943861"],["-111.9022636","40.5923454"],["-111.9014757","40.5906766"],["-111.9009955","40.5895379"],["-111.900636","40.5884199"],["-111.9004423","40.5876294"],["-111.9003037","40.5865393"],["-111.9002629","40.5860089"],["-111.9002319","40.5846571"],["-111.9002838","40.5809336"],["-111.9002841","40.5720744"],["-111.9000658","40.5689089"],["-111.8997921","40.5665801"],["-111.8994138","40.5637052"],["-111.8989944","40.5616363"],["-111.8987235","40.5603713"],["-111.8981793","40.5579756"],["-111.8978419","40.5564926"],["-111.8971533","40.5535882"],["-111.8952328","40.54556"],["-111.8937525","40.5390146"],["-111.8932096","40.5369433"],["-111.8927307","40.5351165"],["-111.8922529","40.5330749"],["-111.8915919","40.5297298"],["-111.8914152","40.5283203"],["-111.8913263","40.5272825"],["-111.8913492","40.5244067"],["-111.8913662","40.508198"],["-111.8913357","40.5063874"],["-111.8913031","40.4990345"],["-111.8912868","40.4936612"],["-111.8913096","40.493294"],["-111.8913509","40.493025"],["-111.8914611","40.4925191"],["-111.8915243","40.4923153"],["-111.8916196","40.4920713"],["-111.8917226","40.4918254"],["-111.8918197","40.4916119"],["-111.891901","40.4914523"],["-111.8919678","40.4913319"],["-111.8920539","40.4911933"],["-111.8921805","40.4910006"],["-111.8923871","40.4907284"],["-111.8926772","40.4903719"],["-111.8931021","40.4899286"],["-111.895031","40.4879634"],["-111.8994611","40.4836198"],["-111.9006232","40.4823626"],["-111.9025223","40.48012"],["-111.9127355","40.4656184"],["-111.9134774","40.4642707"],["-111.9139805","40.4630543"],["-111.9143581","40.4617795"],["-111.9146198","40.4605136"],["-111.9147123","40.4589294"],["-111.9146167","40.4574497"],["-111.9140016","40.4540554"],["-111.9135158","40.4515778"],["-111.9134254","40.4512497"],["-111.9133459","40.4510031"],["-111.9132416","40.4507246"],["-111.9130724","40.4503211"],["-111.9128905","40.4499648"],["-111.9126514","40.4495563"],["-111.9124532","40.4492753"],["-111.9116311","40.4483946"],["-111.9110219","40.4478149"],["-111.9090333","40.4463755"],["-111.9004118","40.4403235"],["-111.8989767","40.4391807"],["-111.8977929","40.4380949"],["-111.8958987","40.4362375"],["-111.8950181","40.4353968"],["-111.8933239","40.4336583"],["-111.8927589","40.4330429"],["-111.8922203","40.4324382"],["-111.8909229","40.4309739"],["-111.890644","40.4306571"],["-111.8897319","40.4297695"],["-111.8859501","40.4267508"],["-111.8850992","40.4260765"],["-111.8830716","40.4243762"],["-111.882907","40.4242321"],["-111.8828591","40.42419"],["-111.8827393","40.4240855"],["-111.8812341","40.4227713"],["-111.8796174","40.4214602"],["-111.8782269","40.4203501"],["-111.877071","40.4194053"],["-111.874465","40.4170824"],["-111.8734151","40.4162064"],["-111.8723792","40.4154065"],["-111.8715782","40.4148708"],["-111.8707261","40.4143534"],["-111.8687414","40.4132658"],["-111.8677276","40.4127282"],["-111.8668789","40.4122687"],["-111.865523","40.4114558"],["-111.8481827","40.3998871"],["-111.8461107","40.3986111"],["-111.8432412","40.3970414"],["-111.8391937","40.3949113"],["-111.8384708","40.3945095"],["-111.8378798","40.3941313"],["-111.8373833","40.3937817"],["-111.8369611","40.3934484"],["-111.8365318","40.3930182"],["-111.8362099","40.3926843"],["-111.8360964","40.3925527"],["-111.835958","40.392388"],["-111.8358272","40.3922277"],["-111.8357018","40.3920676"],["-111.8354896","40.3917807"],["-111.8353515","40.3915777"],["-111.8351946","40.3913308"],["-111.8350444","40.3910727"],["-111.8348627","40.3907258"],["-111.8333643","40.3873695"],["-111.833178","40.3869491"],["-111.8330454","40.3866851"],["-111.8329055","40.3864307"],["-111.8327824","40.3862241"],["-111.8326344","40.385994"],["-111.8324755","40.3857657"],["-111.8322859","40.3855085"],["-111.8320826","40.3852577"],["-111.8318712","40.3850122"],["-111.8316332","40.384752"],["-111.8314114","40.3845267"],["-111.831172","40.3842991"],["-111.8309188","40.3840739"],["-111.8306991","40.3838871"],["-111.8302693","40.3835552"],["-111.8300106","40.3833705"],["-111.8297096","40.3831674"],["-111.829404","40.3829751"],["-111.8180481","40.3762582"],["-111.8177659","40.3761038"],["-111.8175098","40.3759724"],["-111.8171083","40.3757797"],["-111.8164004","40.3754711"],["-111.8159064","40.3752823"],["-111.8151417","40.3750269"],["-111.8052616","40.3722959"],["-111.8050442","40.3722299"],["-111.8044393","40.372028"],["-111.8038339","40.3718051"],["-111.8035138","40.3716755"],["-111.8029781","40.3714445"],["-111.8027417","40.3713354"],["-111.8025091","40.3712226"],["-111.8020039","40.3709637"],["-111.8015055","40.3706853"],["-111.8012283","40.3705198"],["-111.7308397","40.3253754"],["-111.730435","40.3251074"],["-111.7300007","40.3247934"],["-111.7298105","40.3246422"],["-111.729447","40.3243373"],["-111.7292466","40.3241574"],["-111.7290089","40.3239303"],["-111.7287386","40.3236561"],["-111.7282698","40.3231346"],["-111.7280114","40.3228111"],["-111.727785","40.3224979"],["-111.7275817","40.322197"],["-111.7274315","40.3219621"],["-111.7272819","40.3217063"],["-111.7271479","40.3214553"],["-111.727027","40.3212124"],["-111.7268889","40.3209162"],["-111.7267553","40.3205941"],["-111.7266263","40.3202341"],["-111.7265103","40.319872"],["-111.7264356","40.3195968"],["-111.7263864","40.3193783"],["-111.7263454","40.319174"],["-111.7263042","40.3189388"],["-111.7262724","40.3187064"],["-111.7262403","40.3184127"],["-111.7262106","40.3177937"],["-111.7256843","40.2858023"],["-111.7256692","40.2855902"],["-111.7256326","40.2852252"],["-111.7256014","40.2850143"],["-111.7255204","40.2845735"],["-111.7254739","40.2843625"],["-111.7254019","40.2840872"],["-111.7253168","40.2837958"],["-111.7252334","40.2835419"],["-111.7251426","40.2832973"],["-111.7250354","40.2830288"],["-111.7249093","40.2827421"],["-111.7248034","40.2825221"],["-111.7245358","40.2820219"],["-111.724396","40.2817847"],["-111.7242487","40.2815533"],["-111.7240905","40.2813155"],["-111.7239475","40.281115"],["-111.7238084","40.2809287"],["-111.7234953","40.2805385"],["-111.7090098","40.2636062"],["-111.7085191","40.2631415"],["-111.6972837","40.2532086"],["-111.6970689","40.2530001"],["-111.6969495","40.2528745"],["-111.6968249","40.2527382"],["-111.6967028","40.2525975"],["-111.6965902","40.2524604"],["-111.6964782","40.2523125"],["-111.6963781","40.252172"],["-111.6962917","40.2520421"],["-111.6962076","40.2519066"],["-111.6960376","40.2516072"],["-111.6959347","40.2514034"],["-111.6958622","40.2512386"],["-111.6957834","40.2510489"],["-111.6957362","40.2509179"],["-111.6956701","40.2507239"],["-111.6956172","40.2505369"],["-111.6955642","40.2503177"],["-111.6955219","40.250096"],["-111.6954903","40.2498688"],["-111.6954671","40.249631"],["-111.6954554","40.249357"],["-111.6954231","40.2459061"],["-111.6953935","40.2455718"],["-111.6953603","40.2453551"],["-111.6953262","40.2451773"],["-111.6952639","40.2449188"],["-111.6952316","40.244809"],["-111.6951916","40.2446899"],["-111.6950986","40.2444405"],["-111.6950226","40.244269"],["-111.694876","40.243973"],["-111.6947608","40.2437671"],["-111.6946342","40.2435688"],["-111.6944884","40.2433629"],["-111.6943219","40.2431492"],["-111.6941569","40.2429551"],["-111.6939112","40.2426959"],["-111.6915387","40.2404616"],["-111.6843376","40.2332039"],["-111.6766529","40.2253939"],["-111.6758761","40.2246391"],["-111.6751564","40.2239655"],["-111.6743896","40.2232848"],["-111.6727078","40.2219195"],["-111.6672457","40.217545"],["-111.6669528","40.2172918"],["-111.6667026","40.2170623"],["-111.6662424","40.2166054"],["-111.665871","40.216187"],["-111.657093","40.2052823"],["-111.6547261","40.2024673"],["-111.6494842","40.1960293"],["-111.6490735","40.195471"],["-111.6489348","40.1952703"],["-111.6487798","40.1950333"],["-111.648533","40.1946393"],["-111.6482706","40.1941826"],["-111.6481471","40.1939553"],["-111.647953","40.1935686"],["-111.6478224","40.1932916"],["-111.6476919","40.1929974"],["-111.6474699","40.1924581"],["-111.6473569","40.1921372"],["-111.6472352","40.1917704"],["-111.6471455","40.1914696"],["-111.6470453","40.1910987"],["-111.646956","40.1907239"],["-111.6468475","40.1901734"],["-111.6467583","40.1895775"],["-111.6467062","40.1890852"],["-111.6466783","40.1886012"],["-111.6469984","40.1365774"],["-111.6473818","40.1323815"],["-111.6474077","40.1321123"],["-111.6474195","40.1320151"],["-111.6474328","40.1319235"],["-111.6474556","40.1318159"],["-111.6474802","40.1317161"],["-111.6475141","40.1316209"],["-111.6475652","40.1315032"],["-111.6475915","40.1314492"],["-111.6476721","40.131304"],["-111.6477354","40.131211"],["-111.6477949","40.1311303"],["-111.6478568","40.1310546"],["-111.6478859","40.1310216"],["-111.6479564","40.1309473"],["-111.6479922","40.1309113"],["-111.6480852","40.1308227"],["-111.6482051","40.1307024"],["-111.6486858","40.1303306"],["-111.6491557","40.1299612"],["-111.6492553","40.1298704"],["-111.6493108","40.1298037"],["-111.6493627","40.1297148"],["-111.6493901","40.1296425"],["-111.6494065","40.1295636"],["-111.6494092","40.1294477"],["-111.6493993","40.1293775"],["-111.6493748","40.1293056"],["-111.6493146","40.129184"],["-111.649257","40.1290743"],["-111.6491377","40.1288495"],["-111.6490761","40.1287395"],["-111.6483985","40.1275032"],["-111.648274","40.127288"],["-111.6480206","40.1269042"],["-111.6479338","40.1267851"],["-111.6478268","40.1266461"],["-111.6475519","40.1263165"],["-111.6471857","40.1259443"],["-111.6469711","40.1257415"],["-111.6467131","40.1255226"],["-111.6463857","40.1253529"],["-111.6440971","40.123541"],["-111.6437751","40.1232904"],["-111.6436938","40.1232368"],["-111.6435003","40.1231031"],["-111.6403268","40.1206418"],["-111.6399855","40.1203699"],["-111.6398644","40.1202707"],["-111.6389792","40.1195526"],["-111.6385913","40.1192167"],["-111.6383579","40.1189971"],["-111.6381101","40.1187557"],["-111.637887","40.1185192"],["-111.6375829","40.1181785"],["-111.6373185","40.1178496"],["-111.6370702","40.1175229"],["-111.6368031","40.1171226"],["-111.6365783","40.1167571"],["-111.6346862","40.1134358"],["-111.6344908","40.1130886"],["-111.6338155","40.1118912"],["-111.6337557","40.1117923"],["-111.6336271","40.1115928"],["-111.633564","40.1114985"],["-111.6334329","40.1113165"],["-111.6333535","40.1112129"],["-111.6332777","40.1111188"],["-111.6330455","40.1108456"],["-111.6328744","40.1106623"],["-111.6326992","40.110484"],["-111.6324255","40.110237"],["-111.632168","40.1100268"],["-111.6318989","40.109817"],["-111.631695","40.1096798"],["-111.6315","40.1095574"],["-111.6312095","40.1093916"],["-111.6126564","40.0994564"],["-111.6125195","40.099384"],["-111.612326","40.099277"],["-111.6122695","40.0992469"],["-111.6118927","40.0990454"],["-111.5955353","40.0902733"],["-111.5951225","40.0899946"],["-111.5947962","40.0897412"],["-111.5946017","40.0895682"],["-111.5944061","40.0893758"],["-111.5942265","40.0891805"],["-111.594018","40.0889214"],["-111.593851","40.0886961"],["-111.5937231","40.0885068"],["-111.5936171","40.0883306"],["-111.5935248","40.088158"],["-111.5931416","40.0871085"],["-111.5929582","40.0865934"],["-111.5926996","40.0858558"],["-111.5923289","40.0848105"],["-111.5922563","40.0846292"],["-111.5921648","40.0844498"],["-111.5920304","40.0842196"],["-111.5919225","40.084063"],["-111.5918231","40.0839332"],["-111.5916998","40.0837898"],["-111.5915378","40.0836232"],["-111.5913427","40.0834468"],["-111.5911772","40.0833225"],["-111.5910348","40.0832265"],["-111.59088","40.0831228"],["-111.5906737","40.0830106"],["-111.5904959","40.0829177"],["-111.5903211","40.082844"],["-111.5901441","40.0827705"],["-111.5899346","40.0826984"],["-111.5896881","40.0826195"],["-111.5894893","40.0825702"],["-111.5879752","40.0822638"],["-111.5877162","40.0821981"],["-111.5874685","40.0821142"],["-111.5870714","40.0819432"],["-111.5866747","40.0817382"],["-111.5864245","40.0815796"],["-111.5862083","40.0814276"],["-111.585926","40.0811491"],["-111.5856009","40.0807888"],["-111.5762693","40.070706"],["-111.5760316","40.0704087"],["-111.5757714","40.0700752"],["-111.5754054","40.0695124"],["-111.5751995","40.0691642"],["-111.5749899","40.0687736"],["-111.5748157","40.068412"],["-111.5741622","40.0668953"],["-111.57405","40.0666538"],["-111.5739767","40.0665091"],["-111.5738957","40.0663621"],["-111.5738184","40.0662316"],["-111.5737168","40.0660891"],["-111.5734736","40.0657902"],["-111.5732211","40.0655301"],["-111.5731062","40.065426"],["-111.5729794","40.0653217"],["-111.5728303","40.0652074"],["-111.5726484","40.0650783"],["-111.5715681","40.064368"],["-111.5712036","40.0641288"],["-111.5706727","40.0637785"],["-111.5704879","40.0636481"],["-111.5703134","40.0635177"],["-111.570205","40.0634245"],["-111.5701233","40.0633544"],["-111.5700327","40.0632645"],["-111.5699159","40.0631431"],["-111.5697991","40.0630126"],["-111.5696828","40.0628719"],["-111.569603","40.062768"],["-111.5694536","40.0625509"],["-111.5692862","40.0622638"],["-111.5690637","40.0618687"],["-111.5687982","40.0614375"],["-111.5685367","40.0610981"],["-111.5682695","40.060789"],["-111.5680813","40.060603"],["-111.5678362","40.0603877"],["-111.5673493","40.060048"],["-111.5669491","40.0598307"],["-111.5663773","40.0595886"],["-111.5642641","40.0588008"],["-111.5640708","40.058722"],["-111.5634118","40.058385"],["-111.5630514","40.0581539"],["-111.5627351","40.0578997"],["-111.5623575","40.0575692"],["-111.5619761","40.0572439"],["-111.5616328","40.0569602"],["-111.5613251","40.0567463"],["-111.5609186","40.0565109"],["-111.5604326","40.0562634"],["-111.5598821","40.0560668"],["-111.5590523","40.0558704"],["-111.558217","40.0557222"],["-111.5570827","40.0555357"],["-111.5514204","40.0545776"],["-111.5511637","40.0545203"],["-111.5508939","40.0544478"],["-111.550619","40.0543651"],["-111.5503842","40.0542822"],["-111.5501631","40.0541901"],["-111.5497244","40.0539742"],["-111.5495062","40.0538564"],["-111.5493037","40.0537297"],["-111.549091","40.0535836"],["-111.5488672","40.0534117"],["-111.5486756","40.0532445"],["-111.5485167","40.0530934"],["-111.5483926","40.0529593"],["-111.5479961","40.0524872"],["-111.5478731","40.0522637"],["-111.5476641","40.0518367"],["-111.5475601","40.0515546"],["-111.5474932","40.0512637"],["-111.5474354","40.050941"],["-111.5474005","40.0506513"],["-111.5474112","40.050341"],["-111.5474657","40.0500131"],["-111.547553","40.0496296"],["-111.5479965","40.0484205"],["-111.5481228","40.0480133"],["-111.548203","40.0476562"],["-111.5482304","40.0473386"],["-111.548241","40.047049"],["-111.5482237","40.0466492"],["-111.5481421","40.0462705"],["-111.5480188","40.0458737"],["-111.5478438","40.0454983"],["-111.5476641","40.0451534"],["-111.5471916","40.0445755"],["-111.5466917","40.0440157"],["-111.5460358","40.0433474"],["-111.545522","40.0428868"],["-111.5452406","40.0426852"],["-111.5450125","40.0425365"],["-111.5447383","40.0423632"],["-111.5443611","40.0421478"],["-111.543837","40.0418978"],["-111.5436116","40.04179"],["-111.5379857","40.0394405"],["-111.5371811","40.0391136"],["-111.5366533","40.0389103"],["-111.5361627","40.0387295"],["-111.5355969","40.0385341"],["-111.534951","40.0383212"],["-111.5235994","40.0348835"],["-111.5229001","40.0346946"],["-111.5221189","40.0345493"],["-111.5217734","40.0344959"],["-111.5209914","40.0344091"],["-111.5194465","40.0342446"],["-111.5171072","40.0340036"],["-111.5169019","40.0339705"],["-111.5165815","40.0338976"],["-111.5161445","40.0337756"],["-111.515901","40.0336848"],["-111.5157549","40.0336258"],["-111.5154865","40.033509"],["-111.5146768","40.0330474"],["-111.5143579","40.0328105"],["-111.5141477","40.0326422"],["-111.5139134","40.0324428"],["-111.5127199","40.0314319"],["-111.5118077","40.0307409"],["-111.5113481","40.0304638"],["-111.5103491","40.0299903"],["-111.5098337","40.0297793"],["-111.5092952","40.0296015"],["-111.508779","40.029466"],["-111.5078562","40.0292998"],["-111.5054631","40.0289341"],["-111.5052589","40.0289032"],["-111.5049435","40.02885"],["-111.5047725","40.0288162"],["-111.5046224","40.0287804"],["-111.5044036","40.0287215"],["-111.5041499","40.0286487"],["-111.5038703","40.0285575"],["-111.5033851","40.0283655"],["-111.5029176","40.0281512"],["-111.5025135","40.0279427"],["-111.5021371","40.0277276"],["-111.5020762","40.0276835"],["-111.5015681","40.0272411"],["-111.5010241","40.0267313"],["-111.5007693","40.0264484"],["-111.5005434","40.0261122"],["-111.5003177","40.0257469"],["-111.5000777","40.0252263"],["-111.4999129","40.0248057"],["-111.4996662","40.0241484"],["-111.4991865","40.0229631"],["-111.4989631","40.022581"],["-111.4985606","40.0220741"],["-111.4979684","40.0213964"],["-111.497462","40.0208115"],["-111.4972023","40.0204799"],["-111.4967876","40.0197961"],["-111.4958804","40.0181414"],["-111.4955817","40.0176887"],["-111.4953447","40.0173964"],["-111.4925691","40.0146948"],["-111.492256","40.0142992"],["-111.4919109","40.0136325"],["-111.4917814","40.013274"],["-111.4917106","40.012882"],["-111.4917366","40.01173"],["-111.4917844","40.0103453"],["-111.4919181","40.0058996"],["-111.4918915","40.0054406"],["-111.4918073","40.004984"],["-111.491689","40.0045366"],["-111.4915135","40.0041097"],["-111.4912473","40.0036793"],["-111.4910122","40.0033254"],["-111.4907166","40.0029927"],["-111.4903987","40.0026693"],["-111.49003","40.0023665"],["-111.489753","40.0021834"],["-111.4894841","40.0020159"],["-111.4891689","40.0018542"],["-111.4887745","40.001661"],["-111.4881574","40.0014535"],["-111.4876063","40.001285"],["-111.4871769","40.0011703"],["-111.4868612","40.0011217"],["-111.4837777","40.0007622"],["-111.4833323","40.0006968"],["-111.4829191","40.00061"],["-111.4823712","40.0004601"],["-111.4812661","40.0000788"],["-111.480629","39.9998293"],["-111.478472","39.9988127"],["-111.4771583","39.9981679"],["-111.47661","39.9979295"],["-111.4763384","39.9977859"],["-111.4754667","39.9973739"],["-111.4750629","39.9971779"],["-111.4733248","39.9963821"],["-111.4729607","39.9962472"],["-111.4725781","39.9961139"],["-111.4722122","39.9960153"],["-111.4718415","39.9959266"],["-111.4712408","39.9957999"],["-111.4709952","39.9957636"],["-111.4705135","39.9957095"],["-111.4692934","39.9955791"],["-111.4687108","39.9955162"],["-111.4649539","39.9951243"],["-111.4645195","39.9950888"],["-111.4641684","39.995074"],["-111.4636191","39.9950709"],["-111.4632104","39.9950889"],["-111.4600318","39.9954282"],["-111.4596394","39.9954522"],["-111.4590195","39.995455"],["-111.4586766","39.9954455"],["-111.4581611","39.9954058"],["-111.4579583","39.9953835"],["-111.4577135","39.995349"],["-111.4573788","39.9952943"],["-111.4562552","39.9950872"],["-111.4557574","39.9950003"],["-111.455372","39.9949413"],["-111.4546593","39.9948752"],["-111.4544362","39.994862"],["-111.4541603","39.9948554"],["-111.4538464","39.9948545"],["-111.4535302","39.9948604"],["-111.4530352","39.994885"],["-111.4528099","39.9949059"],["-111.4524778","39.994947"],["-111.4521586","39.9949944"],["-111.4517675","39.9950595"],["-111.4514576","39.9951226"],["-111.450945","39.9952527"],["-111.4493477","39.99578"],["-111.4486766","39.995991"],["-111.4483484","39.9960766"],["-111.4479991","39.996159"],["-111.4471894","39.9963087"],["-111.4469155","39.9963477"],["-111.446628","39.9963833"],["-111.4460384","39.9964323"],["-111.4457552","39.9964484"],["-111.4455163","39.9964575"],["-111.4450318","39.9964593"],["-111.4446456","39.9964451"],["-111.4443556","39.9964291"],["-111.4440022","39.9964013"],["-111.4435531","39.9963449"],["-111.4402409","39.995865"],["-111.4398935","39.9958286"],["-111.4395763","39.9958024"],["-111.4392887","39.9957877"],["-111.4390178","39.9957824"],["-111.4386769","39.9957852"],["-111.4383567","39.9957969"],["-111.4337037","39.9960269"],["-111.4311048","39.9960093"],["-111.4305304","39.9960345"],["-111.430107","39.9960617"],["-111.4296801","39.9961259"],["-111.4281306","39.9963444"],["-111.4265551","39.996575"],["-111.4232159","39.997019"],["-111.4219901","39.99714"],["-111.4209662","39.997233"],["-111.4188257","39.9974218"],["-111.4179183","39.9974936"],["-111.4173643","39.9975116"],["-111.4168996","39.9975117"],["-111.4163237","39.9974908"],["-111.4053923","39.9967513"],["-111.4049591","39.9966968"],["-111.4046367","39.9966272"],["-111.4044109","39.9965532"],["-111.4041678","39.9964659"],["-111.40395","39.9963769"],["-111.4036938","39.9962488"],["-111.4033994","39.9960771"],["-111.4031779","39.9959331"],["-111.4029939","39.9957839"],["-111.4027495","39.9955682"],["-111.4021668","39.9949755"],["-111.401799","39.994657"],["-111.4015018","39.9944383"],["-111.4012447","39.9942801"],["-111.4009219","39.9941119"],["-111.4005208","39.9939391"],["-111.3968175","39.9923916"],["-111.3963306","39.9921954"],["-111.3959746","39.9920726"],["-111.3956202","39.9919683"],["-111.395315","39.9918958"],["-111.394838","39.9918233"],["-111.3943914","39.9917942"],["-111.3917194","39.9917105"],["-111.3895559","39.9919223"],["-111.3888595","39.9919404"],["-111.3885508","39.9919293"],["-111.3882494","39.9919012"],["-111.3878599","39.9918361"],["-111.3865007","39.9915607"],["-111.3858742","39.9914612"],["-111.3853237","39.9913923"],["-111.3844627","39.9913487"],["-111.3794728","39.9911736"],["-111.3788862","39.9911428"],["-111.3784115","39.9910672"],["-111.3779436","39.9909502"],["-111.3775557","39.9908191"],["-111.3772047","39.9906717"],["-111.3768501","39.9904941"],["-111.376463","39.9902571"],["-111.3757851","39.9898128"],["-111.375432","39.9895917"],["-111.3751991","39.989467"],["-111.3749517","39.9893572"],["-111.3746399","39.9892598"],["-111.3744055","39.9892091"],["-111.3741389","39.9891761"],["-111.3738551","39.9891708"],["-111.3735106","39.9892031"],["-111.3731061","39.9892787"],["-111.3727489","39.9893527"],["-111.372112","39.9894676"],["-111.3717743","39.9894861"],["-111.3714589","39.9894746"],["-111.3711476","39.9894397"],["-111.3708491","39.9893756"],["-111.3704447","39.9892515"],["-111.3698883","39.9890604"],["-111.3692479","39.9888191"],["-111.3685748","39.9885574"],["-111.3678286","39.9882691"],["-111.3674618","39.9880973"],["-111.3671658","39.9879125"],["-111.3669096","39.9877134"],["-111.3664847","39.9873548"],["-111.3659841","39.9869311"],["-111.3657164","39.9867361"],["-111.3654767","39.9865897"],["-111.3651917","39.9864526"],["-111.3609564","39.9847388"],["-111.3603145","39.9844289"],["-111.3599635","39.9842356"],["-111.3596402","39.9840176"],["-111.3584449","39.9830746"],["-111.3574132","39.9822948"],["-111.3559573","39.9814826"],["-111.3524041","39.9796619"],["-111.3517831","39.9793472"],["-111.3515427","39.979227"],["-111.35092","39.9789362"],["-111.3502157","39.9786166"],["-111.3490121","39.9780962"],["-111.3440274","39.9760395"],["-111.3418736","39.9751753"],["-111.3377512","39.9735199"],["-111.328865","39.9698436"],["-111.3280763","39.9695141"],["-111.3237219","39.9676405"],["-111.3232479","39.967407"],["-111.3224093","39.966961"],["-111.3216717","39.9665242"],["-111.320961","39.9660982"],["-111.3204185","39.9658115"],["-111.3198585","39.9655907"],["-111.3194069","39.9654668"],["-111.3187795","39.9653297"],["-111.318151","39.9652629"],["-111.317558","39.9652514"],["-111.3172173","39.9652705"],["-111.3168424","39.9653161"],["-111.3161933","39.9654317"],["-111.3134684","39.9659552"],["-111.3130827","39.9660116"],["-111.3126269","39.9660597"],["-111.3121294","39.966069"],["-111.3116977","39.9660604"],["-111.3113891","39.9660308"],["-111.3111153","39.9659964"],["-111.3108655","39.965951"],["-111.3106185","39.9658978"],["-111.3102712","39.9658075"],["-111.309968","39.9657208"],["-111.3097258","39.9656373"],["-111.3094446","39.9655215"],["-111.309193","39.9654017"],["-111.3086209","39.9650664"],["-111.3082452","39.9647963"],["-111.3079072","39.9645141"],["-111.3068149","39.9635487"],["-111.3061791","39.9629583"],["-111.3060912","39.9628711"],["-111.3059907","39.9627635"],["-111.3056379","39.9623757"],["-111.305534","39.9622528"],["-111.3052096","39.9618012"],["-111.3035787","39.9594164"],["-111.3034216","39.9592121"],["-111.3029204","39.9586244"],["-111.3024155","39.9580538"],["-111.302064","39.9577514"],["-111.30171","39.9574651"],["-111.3012284","39.9570958"],["-111.2991026","39.9556714"],["-111.2984742","39.9553127"],["-111.2978662","39.9550463"],["-111.2964093","39.9545328"],["-111.2903205","39.9524962"],["-111.2898168","39.9523564"],["-111.2893306","39.9522311"],["-111.2888898","39.952152"],["-111.288444","39.9520859"],["-111.2878641","39.9520302"],["-111.2816971","39.9517392"],["-111.2806616","39.951692"],["-111.278693","39.9517053"],["-111.2764087","39.9517413"],["-111.273936","39.9517917"],["-111.2735665","39.9518012"],["-111.2731373","39.9518271"],["-111.2726211","39.9518866"],["-111.271964","39.952026"],["-111.2713598","39.9522338"],["-111.2709447","39.9524201"],["-111.2704625","39.9526999"],["-111.2689658","39.9537054"],["-111.2684939","39.9539482"],["-111.2681327","39.9540895"],["-111.2678543","39.9541756"],["-111.2674987","39.9542496"],["-111.2669589","39.9543212"],["-111.2665098","39.9543345"],["-111.2661384","39.9543205"],["-111.2657258","39.954263"],["-111.2650998","39.9541248"],["-111.2634655","39.9537008"],["-111.2628415","39.9535453"],["-111.2623234","39.9534683"],["-111.2618882","39.9534312"],["-111.2614625","39.9534225"],["-111.2610912","39.9534429"],["-111.2606404","39.9534878"],["-111.2599457","39.9536309"],["-111.2500099","39.9566574"],["-111.249861","39.9566485"],["-111.249615","39.9567104"],["-111.2493589","39.9567652"],["-111.2490656","39.9568146"],["-111.2487937","39.9568486"],["-111.2484913","39.9568754"],["-111.2482234","39.9568874"],["-111.2478552","39.9568934"],["-111.2447731","39.9568545"],["-111.2443976","39.9568406"],["-111.2441036","39.95682"],["-111.2438086","39.9567911"],["-111.2435196","39.9567503"],["-111.2432239","39.9566946"],["-111.2428922","39.9566151"],["-111.2425869","39.9565266"],["-111.2422418","39.9564128"],["-111.2420711","39.9563464"],["-111.2418785","39.9562662"],["-111.2416554","39.956167"],["-111.2405277","39.9555794"],["-111.240129","39.9553796"],["-111.2397813","39.9552229"],["-111.2394478","39.9550961"],["-111.2391385","39.9549937"],["-111.2388676","39.954919"],["-111.2385719","39.9548488"],["-111.2382269","39.9547847"],["-111.2378915","39.9547333"],["-111.2376095","39.9547024"],["-111.2373354","39.9546832"],["-111.2370837","39.9546707"],["-111.2365133","39.9546644"],["-111.2354009","39.9546574"],["-111.2343946","39.9546495"],["-111.234212","39.9546782"],["-111.2334758","39.9546559"],["-111.2328336","39.9546063"],["-111.232222","39.9545494"],["-111.2317133","39.9544923"],["-111.2312674","39.9544265"],["-111.2306274","39.9543123"],["-111.2299536","39.9541723"],["-111.229294","39.9540108"],["-111.228728","39.9538534"],["-111.2281294","39.9536594"],["-111.2272226","39.9533317"],["-111.223512","39.951834"],["-111.221511","39.9510358"],["-111.2204672","39.950643"],["-111.2180265","39.9496936"],["-111.2145401","39.948218"],["-111.2139131","39.9479639"],["-111.2134642","39.9478076"],["-111.21285","39.9476378"],["-111.2121274","39.9474674"],["-111.2078149","39.9465276"],["-111.2074957","39.9464483"],["-111.2072499","39.9463789"],["-111.2069919","39.9462953"],["-111.2065686","39.9461376"],["-111.2061006","39.9459437"],["-111.2056708","39.9457189"],["-111.2053589","39.9455379"],["-111.2050754","39.9453456"],["-111.2046162","39.9450069"],["-111.2011691","39.9423278"],["-111.2008157","39.9419998"],["-111.200522","39.9416855"],["-111.2000494","39.9410946"],["-111.1997961","39.9407243"],["-111.1995469","39.9402385"],["-111.1992724","39.9395447"],["-111.1991039","39.9388995"],["-111.1989974","39.938377"],["-111.1989622","39.9378745"],["-111.1989595","39.9375051"],["-111.1989838","39.9372168"],["-111.1990038","39.9370234"],["-111.1990348","39.9367888"],["-111.1991052","39.9364291"],["-111.1991929","39.9360837"],["-111.1993138","39.9357337"],["-111.1994564","39.9353616"],["-111.1997432","39.9346606"],["-111.1998595","39.9343612"],["-111.1999184","39.9341783"],["-111.1999848","39.9338951"],["-111.2000341","39.9334777"],["-111.2000174","39.9330982"],["-111.1999879","39.9328646"],["-111.1999443","39.9326729"],["-111.1999311","39.9326211"],["-111.1998621","39.9324034"],["-111.1997522","39.9321437"],["-111.1996357","39.9319095"],["-111.1992741","39.9314079"],["-111.1989429","39.9310496"],["-111.1986015","39.9307684"],["-111.1980677","39.9304129"],["-111.1975708","39.9301782"],["-111.1970732","39.9299818"],["-111.1966024","39.9298597"],["-111.1955279","39.9297061"],["-111.1873742","39.9289381"],["-111.1860831","39.9288524"],["-111.1849074","39.9288474"],["-111.1837802","39.9288788"],["-111.1827054","39.9289501"],["-111.1814761","39.9291068"],["-111.175272","39.9301412"],["-111.1732432","39.9304849"],["-111.1691495","39.9311578"],["-111.1682792","39.9312432"],["-111.1658669","39.9314452"],["-111.1650064","39.9315448"],["-111.1646596","39.9316057"],["-111.1642087","39.9316966"],["-111.1636626","39.9318377"],["-111.1629376","39.9320625"],["-111.1619334","39.9324358"],["-111.161225","39.9327112"],["-111.160807","39.9328693"],["-111.1604012","39.9329963"],["-111.1600241","39.9330993"],["-111.1586755","39.9334315"],["-111.1581682","39.9335467"],["-111.1577818","39.9336248"],["-111.1575207","39.9336659"],["-111.1573008","39.9336906"],["-111.1571183","39.9337003"],["-111.1569122","39.9337063"],["-111.156716","39.9337059"],["-111.1564988","39.9336934"],["-111.1562279","39.9336632"],["-111.1544765","39.9333756"],["-111.1541953","39.9333439"],["-111.1539038","39.9333303"],["-111.1536228","39.9333276"],["-111.1533423","39.9333457"],["-111.1530625","39.9333837"],["-111.1528155","39.9334326"],["-111.1525668","39.9335013"],["-111.152296","39.9335916"],["-111.1520083","39.9337245"],["-111.1509662","39.9342714"],["-111.1505619","39.9344602"],["-111.1501416","39.9346297"],["-111.1497578","39.9347673"],["-111.1494248","39.9348714"],["-111.1489253","39.9349982"],["-111.1486111","39.9350567"],["-111.1480525","39.9351474"],["-111.1382468","39.9366305"],["-111.1377184","39.9366843"],["-111.1373864","39.9366952"],["-111.1370716","39.9366847"],["-111.1367442","39.9366616"],["-111.1360892","39.9365786"],["-111.1341821","39.93629"],["-111.133725","39.9362059"],["-111.1333202","39.9361001"],["-111.1331103","39.9360339"],["-111.1327825","39.9359159"],["-111.1317446","39.9353872"],["-111.1310533","39.9350316"],["-111.1307343","39.934872"],["-111.130508","39.9347679"],["-111.1302537","39.9346693"],["-111.1297433","39.9345287"],["-111.1282533","39.9341633"],["-111.1276359","39.9340309"],["-111.1271155","39.9339534"],["-111.1266934","39.9339196"],["-111.1263516","39.9339074"],["-111.1239856","39.9339062"],["-111.1229882","39.9339177"],["-111.1225926","39.9339395"],["-111.1220645","39.934023"],["-111.1213727","39.934175"],["-111.1201143","39.9344638"],["-111.1198135","39.934514"],["-111.119494","39.9345431"],["-111.1192131","39.9345612"],["-111.1189593","39.934566"],["-111.1187236","39.9345547"],["-111.1184859","39.9345324"],["-111.1087521","39.9332536"],["-111.1082264","39.933212"],["-111.1078577","39.9332033"],["-111.1076016","39.9332149"],["-111.1073765","39.9332363"],["-111.1071042","39.9332776"],["-111.1066302","39.9333988"],["-111.1055125","39.9338229"],["-111.1050723","39.9339723"],["-111.1046145","39.9340843"],["-111.1042981","39.9341253"],["-111.1040162","39.9341394"],["-111.1037243","39.9341436"],["-111.1030484","39.934115"],["-111.0949363","39.9335992"],["-111.0944129","39.9335525"],["-111.0940502","39.9335081"],["-111.0936891","39.9334538"],["-111.0930101","39.9333232"],["-111.0926038","39.9332243"],["-111.0920598","39.9330768"],["-111.0914887","39.9328903"],["-111.0909115","39.9326704"],["-111.0901224","39.9323224"],["-111.0881484","39.9314048"],["-111.0876788","39.9311413"],["-111.0873401","39.9309302"],["-111.0868808","39.9305675"],["-111.0862274","39.9300262"],["-111.0855011","39.9293967"],["-111.0852079","39.9291858"],["-111.0850197","39.9290618"],["-111.0848256","39.9289595"],["-111.0843884","39.928781"],["-111.0840014","39.9286634"],["-111.0836363","39.9285847"],["-111.0832743","39.9285408"],["-111.0830047","39.9285229"],["-111.0827517","39.9285148"],["-111.0770565","39.928517"],["-111.0765989","39.9284946"],["-111.0763494","39.9284536"],["-111.0760604","39.9283934"],["-111.075699","39.9282756"],["-111.0753723","39.928147"],["-111.0751123","39.9280197"],["-111.070151","39.9250922"],["-111.0696888","39.9247779"],["-111.069417","39.9245798"],["-111.069225","39.9244265"],["-111.0685416","39.9237825"],["-111.0673801","39.9223966"],["-111.0660166","39.9207008"],["-111.0651853","39.9195934"],["-111.0647732","39.9189115"],["-111.0644888","39.9182881"],["-111.0641724","39.9175043"],["-111.06034","39.9078396"],["-111.0595656","39.9059604"],["-111.0595365","39.9058984"],["-111.0594705","39.9057785"],["-111.0523284","39.893059"],["-111.0519298","39.8921888"],["-111.0513154","39.8905681"],["-111.0499058","39.8868294"],["-111.049654","39.8862469"],["-111.049291","39.885615"],["-111.0491635","39.8854217"],["-111.0489872","39.8851778"],["-111.0487884","39.884916"],["-111.0485081","39.884581"],["-111.0482074","39.8842692"],["-111.0477144","39.8837793"],["-111.0473721","39.8834837"],["-111.0463091","39.8826782"],["-111.0371609","39.8761378"],["-111.0370454","39.8760539"],["-111.0358485","39.8751607"],["-111.0354482","39.8748081"],["-111.0350995","39.8744376"],["-111.0347475","39.8739916"],["-111.0344119","39.8735319"],["-111.0337977","39.8725738"],["-111.0329732","39.8712356"],["-111.0320677","39.8697319"],["-111.0310216","39.8679191"],["-111.0302968","39.8667654"],["-111.0293632","39.8654064"],["-111.0284389","39.8641722"],["-111.0270613","39.8623894"],["-111.026578","39.8617774"],["-111.0260378","39.8611034"],["-111.0255384","39.8605104"],["-111.0251378","39.8601021"],["-111.0245702","39.8595943"],["-111.0239479","39.8591014"],["-111.0232557","39.858627"],["-111.0226437","39.858262"],["-111.020312","39.8570075"],["-111.0188011","39.8561556"],["-111.0177405","39.8555089"],["-111.0114001","39.8512828"],["-111.0067318","39.8480516"],["-111.0044519","39.8465364"],["-111.0030404","39.8457749"],["-111.0020906","39.8453826"],["-111.0008493","39.8449731"],["-110.998781","39.8444334"],["-110.9984912","39.844289"],["-110.9954163","39.8435089"],["-110.9950624","39.8434812"],["-110.9941397","39.8432067"],["-110.9929033","39.8427794"],["-110.9862951","39.839929"],["-110.9853292","39.8395083"],["-110.9722587","39.833964"],["-110.9691699","39.8327578"],["-110.9669906","39.8319591"],["-110.9649579","39.8312399"],["-110.9631401","39.8305853"],["-110.9547568","39.8270265"],["-110.9515891","39.8255998"],["-110.9511608","39.8254069"],["-110.9507998","39.8252439"],["-110.9504412","39.8250841"],["-110.9495556","39.8247015"],["-110.9494323","39.8246467"],["-110.9480272","39.8240074"],["-110.9475161","39.823775"],["-110.9471208","39.8235894"],["-110.9466973","39.8233772"],["-110.9463294","39.8231666"],["-110.9456193","39.8227097"],["-110.9454104","39.8225571"],["-110.9447415","39.8220108"],["-110.9445211","39.8218023"],["-110.9442783","39.8215424"],["-110.9439273","39.8211429"],["-110.9421515","39.8190754"],["-110.9418635","39.8187545"],["-110.9416356","39.8185308"],["-110.9413611","39.8182975"],["-110.9410927","39.8181009"],["-110.9408612","39.8179437"],["-110.9404599","39.8176899"],["-110.9402739","39.817567"],["-110.9400703","39.8174239"],["-110.9397841","39.8171943"],["-110.9396932","39.8171141"],["-110.9395448","39.8169673"],["-110.9394281","39.8168373"],["-110.9393335","39.8167158"],["-110.9392395","39.8165788"],["-110.9391666","39.8164625"],["-110.9390999","39.8163478"],["-110.9390314","39.8162211"],["-110.938972","39.8160991"],["-110.9389087","39.8159288"],["-110.9388674","39.8157685"],["-110.9388379","39.8156127"],["-110.93881","39.8154467"],["-110.9387934","39.8152782"],["-110.9387894","39.815112"],["-110.9387888","39.8149742"],["-110.9387943","39.814846"],["-110.9388149","39.8146433"],["-110.9388892","39.8143711"],["-110.9389604","39.8141788"],["-110.9390412","39.8140094"],["-110.9391339","39.8138338"],["-110.9392601","39.8136363"],["-110.939382","39.813454"],["-110.9394933","39.8132932"],["-110.9396777","39.8130725"],["-110.9398416","39.812853"],["-110.9400234","39.8126048"],["-110.9403815","39.8121184"],["-110.9408038","39.8115586"],["-110.9410704","39.8112082"],["-110.9412663","39.8109658"],["-110.9414229","39.8107546"],["-110.9421872","39.8097398"],["-110.9425028","39.8093113"],["-110.9430922","39.8085149"],["-110.9432154","39.8083197"],["-110.9433109","39.8081485"],["-110.9433971","39.807954"],["-110.9434788","39.8077511"],["-110.9435414","39.8075462"],["-110.9436459","39.8071823"],["-110.9436648","39.8069515"],["-110.9436695","39.8067676"],["-110.9436644","39.8065985"],["-110.9436456","39.8064487"],["-110.9436204","39.8062907"],["-110.9435815","39.8061384"],["-110.9435363","39.8059875"],["-110.9434908","39.8058519"],["-110.9434248","39.8057019"],["-110.9433467","39.8055433"],["-110.943256","39.8053963"],["-110.9431668","39.805263"],["-110.9430555","39.8051133"],["-110.9428999","39.8049295"],["-110.9427218","39.80474"],["-110.9425668","39.8045866"],["-110.9424471","39.804474"],["-110.9423253","39.8043735"],["-110.942183","39.8042628"],["-110.941844","39.8040242"],["-110.9403231","39.8030636"],["-110.9388887","39.8021484"],["-110.9385196","39.8019024"],["-110.9383124","39.8017765"],["-110.9381456","39.8016814"],["-110.9379052","39.8015586"],["-110.9376803","39.801455"],["-110.937237","39.8012792"],["-110.9370094","39.8012022"],["-110.9365721","39.8010765"],["-110.9363253","39.8010151"],["-110.9358753","39.8009196"],["-110.934386","39.8006178"],["-110.9341013","39.8005432"],["-110.9338863","39.8004742"],["-110.9335765","39.8003628"],["-110.9333785","39.8002668"],["-110.9332155","39.8001804"],["-110.9330417","39.800083"],["-110.9328675","39.7999675"],["-110.9327442","39.7998733"],["-110.9324871","39.7996332"],["-110.9323782","39.7995086"],["-110.9322841","39.7993912"],["-110.9322059","39.7992776"],["-110.9321167","39.7991258"],["-110.9320331","39.7989694"],["-110.931958","39.7988212"],["-110.9319067","39.7986802"],["-110.9318611","39.7985573"],["-110.9318413","39.7984827"],["-110.9318218","39.7983854"],["-110.9318089","39.7982872"],["-110.9318099","39.798111"],["-110.9318165","39.7979768"],["-110.9318506","39.7978195"],["-110.9320939","39.7970555"],["-110.9321913","39.7967159"],["-110.9322372","39.7964932"],["-110.9322601","39.7963092"],["-110.9322589","39.7961027"],["-110.9322479","39.7958777"],["-110.9322182","39.7956761"],["-110.9321827","39.7954934"],["-110.9321287","39.795252"],["-110.9319975","39.7947082"],["-110.9319468","39.794455"],["-110.9319203","39.7942782"],["-110.9318971","39.7940833"],["-110.9317743","39.7922614"],["-110.9317406","39.7918922"],["-110.931714","39.7917461"],["-110.9316811","39.7916086"],["-110.9315962","39.7913339"],["-110.9315499","39.7912014"],["-110.9314918","39.7910783"],["-110.9314219","39.7909472"],["-110.9313503","39.7908348"],["-110.9312742","39.7907241"],["-110.931179","39.7906031"],["-110.9310464","39.7904463"],["-110.9307215","39.7901127"],["-110.9305895","39.78998"],["-110.9298239","39.7892362"],["-110.9296516","39.7890541"],["-110.9295286","39.7889141"],["-110.929427","39.7887883"],["-110.9293024","39.7886137"],["-110.9291725","39.7884199"],["-110.9285171","39.7872371"],["-110.9282587","39.7867829"],["-110.9280613","39.7864464"],["-110.9279652","39.7862953"],["-110.9278407","39.7861371"],["-110.9277001","39.7859757"],["-110.927541","39.7858155"],["-110.9274029","39.7856913"],["-110.9272419","39.7855621"],["-110.9271044","39.7854628"],["-110.9269447","39.7853597"],["-110.926756","39.7852461"],["-110.922341","39.7829566"],["-110.9221606","39.7828601"],["-110.9219986","39.782758"],["-110.9218626","39.7826684"],["-110.9217163","39.7825583"],["-110.9215665","39.7824404"],["-110.9213994","39.7822894"],["-110.9212663","39.7821592"],["-110.9210716","39.7819414"],["-110.9207047","39.7814752"],["-110.9205549","39.7813095"],["-110.9204276","39.7811756"],["-110.920303","39.7810559"],["-110.9198295","39.7806295"],["-110.9191401","39.7800238"],["-110.9160574","39.7773212"],["-110.9159446","39.7772321"],["-110.9157975","39.7771269"],["-110.9156527","39.7770355"],["-110.9154951","39.7769471"],["-110.9153227","39.776862"],["-110.9151857","39.7768003"],["-110.9150099","39.7767323"],["-110.9147385","39.7766362"],["-110.9140564","39.7764141"],["-110.9137731","39.7763118"],["-110.9135133","39.7761961"],["-110.9132764","39.7760691"],["-110.9130904","39.7759543"],["-110.9129223","39.7758385"],["-110.9127986","39.7757425"],["-110.9126976","39.7756538"],["-110.9125687","39.7755285"],["-110.9124624","39.7754137"],["-110.9123632","39.775295"],["-110.9122725","39.7751651"],["-110.9121868","39.7750092"],["-110.9121296","39.7748854"],["-110.912075","39.7747326"],["-110.9119961","39.7744647"],["-110.9119025","39.7741384"],["-110.911823","39.7738727"],["-110.9117731","39.7737433"],["-110.9117142","39.7736092"],["-110.9116521","39.7734875"],["-110.9115773","39.7733582"],["-110.9114754","39.7732046"],["-110.9113549","39.7730587"],["-110.9112114","39.7729061"],["-110.9110312","39.7727492"],["-110.9108406","39.7725968"],["-110.9106135","39.7724484"],["-110.9104127","39.7723334"],["-110.9101743","39.7722116"],["-110.9098775","39.7720665"],["-110.909573","39.7719196"],["-110.9094215","39.7718354"],["-110.9092846","39.7717494"],["-110.9091483","39.7716496"],["-110.9090082","39.7715371"],["-110.9088975","39.7714344"],["-110.9087776","39.7713128"],["-110.9086834","39.7712014"],["-110.9086009","39.7710969"],["-110.9085024","39.7709486"],["-110.9083744","39.770718"],["-110.9082989","39.7705499"],["-110.9081612","39.7701566"],["-110.9081014","39.7699896"],["-110.9080209","39.7697708"],["-110.9079538","39.7696018"],["-110.9078875","39.7694499"],["-110.907808","39.7692984"],["-110.9077193","39.7691416"],["-110.9076021","39.7689674"],["-110.9074868","39.7688182"],["-110.9073719","39.7686811"],["-110.9072225","39.7685219"],["-110.903858","39.7651015"],["-110.9035755","39.7648256"],["-110.903394","39.7646673"],["-110.903235","39.7645446"],["-110.9030469","39.7644158"],["-110.9028438","39.7642878"],["-110.9026229","39.764173"],["-110.9024463","39.764097"],["-110.9022791","39.7640336"],["-110.9021336","39.7639874"],["-110.9020111","39.7639521"],["-110.9018753","39.7639178"],["-110.9016609","39.763874"],["-110.9014022","39.7638335"],["-110.9010634","39.7637945"],["-110.900263","39.7637366"],["-110.8984674","39.7636081"],["-110.8981733","39.763573"],["-110.8978708","39.7635197"],["-110.8976171","39.7634636"],["-110.8973702","39.7634026"],["-110.8971392","39.7633346"],["-110.8968759","39.7632462"],["-110.8966152","39.763147"],["-110.8963494","39.7630289"],["-110.8961037","39.7629035"],["-110.8958407","39.7627526"],["-110.895506","39.7625204"],["-110.892914","39.7605516"],["-110.891802","39.759688"],["-110.8915104","39.7594343"],["-110.8910994","39.7590364"],["-110.8908831","39.7588089"],["-110.8905829","39.7584762"],["-110.8902999","39.7581439"],["-110.8900046","39.7577651"],["-110.8897547","39.7574302"],["-110.8894399","39.7569608"],["-110.8892119","39.7565879"],["-110.8889684","39.7561593"],["-110.8887542","39.7557551"],["-110.8883922","39.7549654"],["-110.8875714","39.7531512"],["-110.8873645","39.7528353"],["-110.8872482","39.7526817"],["-110.8871366","39.7525427"],["-110.8870185","39.7524205"],["-110.8868826","39.7522894"],["-110.8866703","39.7521104"],["-110.8864102","39.7518983"],["-110.8860648","39.7516753"],["-110.8858303","39.7514832"],["-110.88572","39.751369"],["-110.8856285","39.7512698"],["-110.8855383","39.7511661"],["-110.8854285","39.7510192"],["-110.8853438","39.7508852"],["-110.8852559","39.750739"],["-110.8851866","39.7506071"],["-110.8851316","39.7504722"],["-110.8850899","39.7503466"],["-110.8850521","39.7502219"],["-110.8850044","39.7499128"],["-110.8849858","39.7497229"],["-110.8849498","39.7489552"],["-110.8849406","39.7487671"],["-110.8849163","39.748593"],["-110.8848833","39.7484319"],["-110.8848296","39.7482701"],["-110.8847514","39.7480698"],["-110.8846611","39.7478901"],["-110.8845647","39.7477261"],["-110.884471","39.7475874"],["-110.8843417","39.7474296"],["-110.8841567","39.7472346"],["-110.8839921","39.7470878"],["-110.8838103","39.7469418"],["-110.883616","39.7468118"],["-110.8826566","39.746182"],["-110.8824206","39.7460355"],["-110.8821789","39.745859"],["-110.8819662","39.7456921"],["-110.8817756","39.745515"],["-110.8816366","39.7453735"],["-110.8815113","39.7452382"],["-110.8813313","39.7450151"],["-110.8808566","39.7443293"],["-110.8805569","39.7439046"],["-110.8803281","39.7436303"],["-110.8800926","39.7433849"],["-110.8798572","39.7431855"],["-110.879625","39.7430062"],["-110.8793893","39.7428467"],["-110.8789477","39.7425807"],["-110.8758804","39.7407619"],["-110.8756208","39.7405923"],["-110.875483","39.740487"],["-110.8753085","39.740336"],["-110.8751568","39.7401794"],["-110.8749606","39.7399168"],["-110.8748742","39.7397811"],["-110.8748091","39.7396577"],["-110.8747537","39.7395257"],["-110.8747006","39.7393678"],["-110.8746547","39.7391854"],["-110.8746298","39.7389892"],["-110.8746032","39.7387108"],["-110.8745629","39.7381824"],["-110.8745374","39.7379585"],["-110.8744747","39.7375694"],["-110.8744014","39.7371869"],["-110.8743104","39.7368478"],["-110.8742043","39.7365226"],["-110.8740605","39.7361613"],["-110.8737046","39.7354327"],["-110.8735958","39.7352453"],["-110.8734696","39.7350423"],["-110.8733037","39.734791"],["-110.8729453","39.7343224"],["-110.8724899","39.7337629"],["-110.869929","39.7307545"],["-110.8697335","39.7305318"],["-110.8696205","39.7304084"],["-110.8694855","39.7302751"],["-110.8693051","39.7301087"],["-110.8690154","39.7298573"],["-110.8686599","39.7295612"],["-110.8683889","39.7293373"],["-110.8681569","39.7291241"],["-110.8680649","39.7290326"],["-110.867986","39.7289367"],["-110.8679011","39.72883"],["-110.8678314","39.728735"],["-110.8677557","39.7286294"],["-110.867705","39.7285451"],["-110.8676567","39.7284441"],["-110.8676118","39.7283285"],["-110.8675218","39.7280445"],["-110.8674918","39.7279268"],["-110.8674691","39.7278178"],["-110.8674538","39.7277157"],["-110.8674492","39.7275764"],["-110.8674479","39.7274505"],["-110.8674648","39.7273086"],["-110.8674746","39.7272449"],["-110.8674883","39.7271604"],["-110.8675343","39.7269295"],["-110.8675887","39.7267474"],["-110.8676398","39.7265681"],["-110.8677107","39.7262853"],["-110.8677218","39.7262004"],["-110.8677323","39.7261136"],["-110.8677369","39.7259997"],["-110.8677324","39.7257811"],["-110.8677216","39.7256817"],["-110.8676957","39.7255054"],["-110.8676784","39.7254182"],["-110.8676561","39.7253478"],["-110.8675786","39.7251609"],["-110.8675324","39.7250519"],["-110.8674767","39.7249371"],["-110.867416","39.7248403"],["-110.8673445","39.7247292"],["-110.8672689","39.7246303"],["-110.8671876","39.7245329"],["-110.8670751","39.7244093"],["-110.8669776","39.7243109"],["-110.8669078","39.7242495"],["-110.8662124","39.7236256"],["-110.8658446","39.7232868"],["-110.8656507","39.723061"],["-110.8655624","39.7229516"],["-110.8654912","39.7228537"],["-110.8654297","39.7227554"],["-110.8653709","39.722653"],["-110.865322","39.7225616"],["-110.8652714","39.7224496"],["-110.8652219","39.7223243"],["-110.8651882","39.7222172"],["-110.8651609","39.7221168"],["-110.8651382","39.7220243"],["-110.8651224","39.7219371"],["-110.865111","39.7218459"],["-110.8651049","39.7217495"],["-110.8651087","39.721624"],["-110.8651149","39.7215115"],["-110.8651274","39.7214119"],["-110.8651485","39.7213141"],["-110.8651755","39.7212035"],["-110.8652075","39.7210862"],["-110.8652905","39.720863"],["-110.8653406","39.720753"],["-110.8653994","39.720644"],["-110.8654638","39.7205367"],["-110.8655222","39.7204526"],["-110.8656183","39.7203272"],["-110.8657088","39.7202168"],["-110.8681177","39.7174272"],["-110.8682971","39.7172043"],["-110.8684755","39.7169441"],["-110.86854","39.7168421"],["-110.8685982","39.7167281"],["-110.8686734","39.7165675"],["-110.8687017","39.7164875"],["-110.8687244","39.7164003"],["-110.8687543","39.7162268"],["-110.8687781","39.7159979"],["-110.8687807","39.7158148"],["-110.8687748","39.7156832"],["-110.8687621","39.7155479"],["-110.8687442","39.7154194"],["-110.8687202","39.7152865"],["-110.8686822","39.7151377"],["-110.8685971","39.7149035"],["-110.8684665","39.7145981"],["-110.8679641","39.7136543"],["-110.8677867","39.7133036"],["-110.8677141","39.7131335"],["-110.8676595","39.7129628"],["-110.867616","39.7128107"],["-110.8675898","39.7126508"],["-110.8675723","39.7125001"],["-110.8675711","39.7123806"],["-110.8675807","39.7122315"],["-110.8676048","39.7120411"],["-110.867636","39.7118805"],["-110.8676957","39.7116835"],["-110.8678244","39.7113841"],["-110.8686653","39.7098918"],["-110.8691104","39.7091803"],["-110.8693086","39.7088251"],["-110.8694505","39.7085407"],["-110.8695992","39.7081344"],["-110.8696839","39.7077637"],["-110.8697145","39.7073479"],["-110.8697069","39.7069116"],["-110.8695676","39.7061884"],["-110.8692137","39.7046359"],["-110.8688749","39.7031818"],["-110.8680613","39.6996166"],["-110.8677468","39.6983003"],["-110.8676021","39.6978557"],["-110.8674507","39.6974816"],["-110.8672198","39.6970451"],["-110.8669692","39.6966431"],["-110.8666953","39.69627"],["-110.8663893","39.6959215"],["-110.866027","39.6955517"],["-110.8655554","39.695172"],["-110.8651229","39.6948581"],["-110.8647265","39.694598"],["-110.864384","39.6944087"],["-110.8641098","39.6942667"],["-110.8638639","39.6941491"],["-110.8633742","39.6939476"],["-110.8608157","39.6930646"],["-110.8593207","39.6925024"],["-110.8591884","39.6924467"],["-110.8590099","39.6923639"],["-110.8588159","39.692266"],["-110.8586447","39.692172"],["-110.8584819","39.6920729"],["-110.8583295","39.6919703"],["-110.8580342","39.6917469"],["-110.8578842","39.6916246"],["-110.8577239","39.6914829"],["-110.8574923","39.6912584"],["-110.8573555","39.6911154"],["-110.8571716","39.6908688"],["-110.8569816","39.6906023"],["-110.856828","39.6903368"],["-110.8567094","39.6900732"],["-110.8566078","39.6897904"],["-110.8565145","39.6893825"],["-110.8564691","39.6890407"],["-110.8564384","39.6886232"],["-110.8564119","39.6881314"],["-110.8564222","39.6878173"],["-110.8564546","39.6874606"],["-110.8565161","39.6870364"],["-110.8566055","39.6865823"],["-110.8567265","39.6861534"],["-110.8568585","39.6857557"],["-110.857032","39.6853034"],["-110.8572086","39.6849008"],["-110.8574121","39.6844846"],["-110.8576991","39.6840259"],["-110.8580528","39.6834866"],["-110.8583734","39.682993"],["-110.8587971","39.6823417"],["-110.859096","39.6818671"],["-110.8597017","39.6808249"],["-110.8597834","39.6805805"],["-110.8601948","39.6798094"],["-110.8603782","39.6794197"],["-110.8605867","39.6789938"],["-110.8608075","39.6784575"],["-110.8610444","39.6778298"],["-110.8611803","39.6773909"],["-110.8613068","39.6769105"],["-110.8614411","39.6763477"],["-110.8615604","39.6756858"],["-110.8616901","39.6743747"],["-110.8616884","39.6737279"],["-110.8616623","39.6729959"],["-110.8602618","39.65156"],["-110.8601747","39.6501181"],["-110.8601159","39.6487015"],["-110.8601031","39.6485087"],["-110.8600943","39.6472651"],["-110.8600781","39.6467735"],["-110.860051","39.6462556"],["-110.860013","39.645733"],["-110.8599547","39.6453109"],["-110.8598969","39.6449458"],["-110.8598916","39.6449086"],["-110.8598473","39.6446275"],["-110.8597753","39.64428"],["-110.859491","39.6431595"],["-110.8593856","39.642627"],["-110.859293","39.6420374"],["-110.859372","39.6418916"],["-110.8593709","39.6415923"],["-110.8593879","39.6412567"],["-110.8594238","39.6409499"],["-110.8594578","39.6407292"],["-110.8594662","39.6406913"],["-110.8595213","39.6404611"],["-110.8595926","39.6401968"],["-110.8596524","39.6400131"],["-110.8596684","39.6399811"],["-110.8599178","39.6395119"],["-110.8602511","39.6387713"],["-110.8607366","39.6377155"],["-110.8613162","39.6364646"],["-110.8615557","39.6358864"],["-110.8617784","39.6351993"],["-110.8619523","39.6346227"],["-110.8620627","39.6341487"],["-110.8621498","39.6336992"],["-110.8622155","39.633206"],["-110.8622265","39.63266"],["-110.8622202","39.6319352"],["-110.8621879","39.6313533"],["-110.8621272","39.6308268"],["-110.8618667","39.629608"],["-110.8616446","39.6288969"],["-110.8613128","39.6280343"],["-110.8608086","39.6270364"],["-110.8604402","39.6264205"],["-110.8583495","39.6235456"],["-110.8577063","39.6226791"],["-110.8553378","39.6194699"],["-110.8548725","39.6188557"],["-110.8544451","39.6183851"],["-110.8540871","39.6180468"],["-110.8537345","39.6177599"],["-110.8533276","39.6174596"],["-110.8528925","39.6171981"],["-110.8523659","39.6169205"],["-110.8519292","39.616725"],["-110.8515447","39.6165662"],["-110.85111","39.6164236"],["-110.8505596","39.6162713"],["-110.8498921","39.6161309"],["-110.849212","39.6160357"],["-110.8484654","39.6159661"],["-110.8458213","39.6158911"],["-110.8440278","39.6158469"],["-110.8435974","39.61582"],["-110.843084","39.6157746"],["-110.84248","39.6156856"],["-110.8419081","39.6155836"],["-110.841334","39.6154347"],["-110.8407575","39.6152627"],["-110.8401491","39.6150206"],["-110.8395536","39.6147356"],["-110.8390634","39.614472"],["-110.8385802","39.6141462"],["-110.8381275","39.6137881"],["-110.8376532","39.6133271"],["-110.83728","39.6129499"],["-110.8368807","39.6124681"],["-110.833243","39.6078814"],["-110.8328219","39.607379"],["-110.8321546","39.6065248"],["-110.8316412","39.6058841"],["-110.8284821","39.6022944"],["-110.8207357","39.5925883"],["-110.8204133","39.5922023"],["-110.820238","39.5920156"],["-110.8200063","39.591781"],["-110.8197393","39.5915334"],["-110.8194179","39.5912641"],["-110.8190226","39.5909778"],["-110.8184807","39.5906377"],["-110.8179063","39.5903335"],["-110.8172261","39.5900313"],["-110.8128475","39.588269"],["-110.8116885","39.5878094"],["-110.8105978","39.5873666"],["-110.8078398","39.5862892"],["-110.8069638","39.5859898"],["-110.8061798","39.5857716"],["-110.8050111","39.5855222"],["-110.8037962","39.5853257"],["-110.8032195","39.5852717"],["-110.8022295","39.585237"],["-110.8017175","39.5852383"],["-110.8012765","39.5852478"],["-110.8006675","39.5852858"],["-110.8000922","39.5853418"],["-110.7994869","39.5854181"],["-110.7989108","39.5855135"],["-110.7983768","39.5856166"],["-110.7977823","39.5857532"],["-110.7972646","39.5858929"],["-110.7941173","39.5869219"],["-110.793745","39.5870338"],["-110.7928163","39.5872734"],["-110.7921708","39.5874115"],["-110.7916783","39.5875049"],["-110.791389","39.5875433"],["-110.7911563","39.587564"],["-110.7909414","39.5875697"],["-110.7906473","39.5875573"],["-110.7903447","39.5875183"],["-110.7900553","39.5874575"],["-110.7897758","39.5873693"],["-110.7895229","39.5872698"],["-110.7892939","39.5871666"],["-110.7891156","39.5870675"],["-110.7889579","39.5869593"],["-110.7888091","39.586843"],["-110.7886524","39.5867028"],["-110.7884956","39.5865388"],["-110.7883407","39.5863343"],["-110.7882204","39.5861444"],["-110.7881291","39.5859468"],["-110.7880562","39.585715"],["-110.7874601","39.5822787"],["-110.7874214","39.5821155"],["-110.7873659","39.5819321"],["-110.7872257","39.5815806"],["-110.7844512","39.5754158"],["-110.7840829","39.574713"],["-110.783619","39.5739788"],["-110.7831944","39.5734232"],["-110.7819243","39.5719321"],["-110.7811907","39.571115"],["-110.7805019","39.5704605"],["-110.7799068","39.5699831"],["-110.7447891","39.5446061"],["-110.7443124","39.5443151"],["-110.7437437","39.5440244"],["-110.7431189","39.5437771"],["-110.7423881","39.5435511"],["-110.7411606","39.5431984"],["-110.7404755","39.5430048"],["-110.739074","39.5426247"],["-110.7387072","39.5425366"],["-110.7384847","39.5424954"],["-110.7381433","39.5424554"],["-110.7378721","39.5424325"],["-110.7375737","39.5424186"],["-110.7257847","39.5424618"],["-110.7253597","39.5424523"],["-110.723532","39.5424615"],["-110.7211135","39.5424688"],["-110.7199162","39.5424763"],["-110.7192498","39.5424809"],["-110.6892455","39.542582"],["-110.6889225","39.5425904"],["-110.6886551","39.5425984"],["-110.6852082","39.5426126"],["-110.6847374","39.5426458"],["-110.684344","39.5427191"],["-110.6838786","39.542859"],["-110.6834247","39.543004"],["-110.6820833","39.5435583"],["-110.6692092","39.5488923"],["-110.6680923","39.549196"],["-110.6604141","39.5506668"],["-110.6595349","39.5507781"],["-110.658923","39.5508146"],["-110.6584255","39.5508121"],["-110.6579324","39.5507832"],["-110.6574449","39.5507305"],["-110.6569531","39.5506476"],["-110.6564373","39.5505196"],["-110.6520206","39.5492288"],["-110.6510737","39.5489205"],["-110.6506558","39.5487309"],["-110.6499451","39.5483878"],["-110.6493467","39.548103"],["-110.6486764","39.5478037"],["-110.648097","39.5475852"],["-110.6474994","39.5473855"],["-110.6468875","39.5472237"],["-110.6461672","39.5470805"],["-110.6454402","39.5470025"],["-110.6447138","39.5469445"],["-110.6436301","39.5469126"],["-110.6297465","39.546986"],["-110.6284314","39.5469485"],["-110.6273284","39.5468765"],["-110.626392","39.546797"],["-110.6246397","39.5465626"],["-110.6225021","39.5461691"],["-110.6214624","39.5459115"],["-110.6201369","39.5455541"],["-110.6188212","39.5451515"],["-110.6174573","39.5446618"],["-110.5763142","39.527025"],["-110.5736001","39.5258756"],["-110.5726846","39.5254807"],["-110.5709158","39.5246976"],["-110.5685907","39.5236975"],["-110.5648777","39.522113"],["-110.5645144","39.5219576"],["-110.5411648","39.5118618"],["-110.5396732","39.5111891"],["-110.53856","39.5106034"],["-110.5374708","39.5099827"],["-110.5365409","39.5094118"],["-110.5359015","39.5089887"],["-110.5350661","39.5083867"],["-110.5347065","39.5081091"],["-110.5340354","39.5075636"],["-110.5329081","39.5065699"],["-110.5319034","39.5055612"],["-110.5107417","39.4816074"],["-110.5098401","39.4806032"],["-110.5088339","39.4795855"],["-110.5077927","39.4786028"],["-110.5063039","39.4773177"],["-110.504572","39.4758389"],["-110.4430385","39.4224123"],["-110.4390491","39.4184006"],["-110.4327707","39.4115643"],["-110.4054272","39.3799945"],["-110.4045626","39.3789868"],["-110.4041493","39.3784906"],["-110.4037566","39.3780391"],["-110.3986684","39.3721445"],["-110.3978326","39.3711855"],["-110.3778984","39.3481782"],["-110.377516","39.3477278"],["-110.3765652","39.3465795"],["-110.3756609","39.3453955"],["-110.3748944","39.3443377"],["-110.3742751","39.3433914"],["-110.3735827","39.3422544"],["-110.3729522","39.3411483"],["-110.3725207","39.3403367"],["-110.3721247","39.3395226"],["-110.3716266","39.3384244"],["-110.3571949","39.3012445"],["-110.3539306","39.2940541"],["-110.353593","39.2933133"],["-110.3527156","39.2911104"],["-110.3523703","39.2901271"],["-110.3485739","39.278738"],["-110.3432908","39.2648962"],["-110.3427647","39.2635401"],["-110.340655","39.258054"],["-110.3403449","39.2572495"],["-110.3401104","39.2566438"],["-110.3399196","39.2561387"],["-110.3397059","39.2555489"],["-110.3395175","39.2549657"],["-110.3393769","39.2545065"],["-110.3392874","39.2541433"],["-110.3391906","39.2536949"],["-110.339033","39.252811"],["-110.3389365","39.2516436"],["-110.3381499","39.1565506"],["-110.3381108","39.1559452"],["-110.3368487","39.1427344"],["-110.3368258","39.141935"],["-110.3368176","39.1410686"],["-110.3368293","39.1401801"],["-110.3368736","39.1394992"],["-110.3369489","39.1387998"],["-110.3370546","39.1380692"],["-110.3372088","39.1371498"],["-110.3375206","39.1354598"],["-110.3375975","39.1350609"],["-110.3376614","39.1346938"],["-110.3377004","39.1342838"],["-110.3377056","39.1339148"],["-110.3377033","39.1335039"],["-110.3376855","39.1331358"],["-110.3376448","39.1327907"],["-110.3375788","39.1324086"],["-110.3374814","39.1319829"],["-110.337353","39.1315434"],["-110.3372099","39.1311404"],["-110.3370241","39.1307047"],["-110.3368074","39.1302793"],["-110.3365849","39.1298958"],["-110.3363067","39.1294794"],["-110.3326121","39.1243554"],["-110.3313296","39.1224066"],["-110.3305117","39.12095"],["-110.3299475","39.1198115"],["-110.3296893","39.119242"],["-110.3292418","39.1181658"],["-110.329049","39.117645"],["-110.3282725","39.1152502"],["-110.3234213","39.0998175"],["-110.3226542","39.0973723"],["-110.3201177","39.0891622"],["-110.3067697","39.0374668"],["-110.3062441","39.0359408"],["-110.3058068","39.034849"],["-110.3054331","39.0340066"],["-110.3046505","39.0324816"],["-110.3042005","39.0316878"],["-110.3037295","39.0309194"],["-110.3033172","39.0302817"],["-110.3028725","39.0296348"],["-110.302387","39.0289758"],["-110.3017787","39.0281953"],["-110.3011091","39.0273923"],["-110.3003555","39.0265421"],["-110.2998572","39.0260068"],["-110.2981867","39.0244047"],["-110.2772008","39.0063718"],["-110.2763956","39.0057118"],["-110.2745867","39.0043836"],["-110.2726931","39.0031324"],["-110.2717614","39.0025695"],["-110.2705295","39.0018912"],["-110.2456661","38.9890072"],["-110.2376387","38.9843382"],["-110.235268","38.9829239"],["-110.2330104","38.9815522"],["-110.2308619","38.9802796"],["-110.2302954","38.9799723"],["-110.2298601","38.9798093"],["-110.2294889","38.9797146"],["-110.2291194","38.9796553"],["-110.2286959","38.9796319"],["-110.2282753","38.9796423"],["-110.2278696","38.9796934"],["-110.2275069","38.9797739"],["-110.2272358","38.9798608"],["-110.2270624","38.9799322"],["-110.2267394","38.9800633"],["-110.2264751","38.9802251"],["-110.2262216","38.9804142"],["-110.2259522","38.9806645"],["-110.2257571","38.9808956"],["-110.2255804","38.9811616"],["-110.2253982","38.9815518"],["-110.2252382","38.981991"],["-110.2250854","38.9823568"],["-110.2249078","38.9826545"],["-110.2246172","38.982995"],["-110.2243946","38.9831949"],["-110.224167","38.9833695"],["-110.223863","38.9835432"],["-110.2234384","38.983735"],["-110.2231643","38.983831"],["-110.2228082","38.983928"],["-110.219623","38.9846183"],["-110.2190269","38.9847787"],["-110.1852976","38.9911803"],["-110.1843241","38.9913215"],["-110.1830169","38.9914236"],["-110.1822006","38.9914473"],["-110.181451","38.9914501"],["-110.1807498","38.9914401"],["-110.17935","38.9913422"],["-110.1784298","38.991236"],["-110.177285","38.9910601"],["-110.1762182","38.9908427"],["-110.1752023","38.9906045"],["-110.1741327","38.9902831"],["-110.1732047","38.989954"],["-110.1723916","38.9896375"],["-110.1715717","38.9892771"],["-110.1704782","38.9887109"],["-110.1694859","38.9881675"],["-110.1685581","38.9875768"],["-110.1675809","38.9868868"],["-110.1667177","38.9861854"],["-110.1659024","38.9854094"],["-110.1650205","38.984488"],["-110.1643749","38.983689"],["-110.1616885","38.9797706"],["-110.1606384","38.9782142"],["-110.159906","38.9774216"],["-110.1593542","38.9769497"],["-110.1588327","38.9765454"],["-110.1584022","38.9762499"],["-110.1580069","38.9760002"],["-110.1575888","38.9757473"],["-110.157175","38.9755371"],["-110.1567238","38.9753326"],["-110.1562835","38.9751635"],["-110.1553641","38.974856"],["-110.1550317","38.9747724"],["-110.154695","38.9746954"],["-110.1542986","38.974612"],["-110.1538996","38.9745372"],["-110.1531857","38.9744438"],["-110.1520165","38.9743689"],["-110.1472987","38.9741674"],["-110.1434824","38.9740089"],["-110.1425037","38.9739955"],["-110.1410976","38.9740106"],["-110.139232","38.9741391"],["-110.1385957","38.9742044"],["-110.1373627","38.9743572"],["-110.1367622","38.9744478"],["-110.1306191","38.9755624"],["-110.1278783","38.9758705"],["-110.1255631","38.9760157"],["-110.12347","38.9760581"],["-110.1221838","38.9760363"],["-110.1205584","38.9759667"],["-110.1174782","38.9756927"],["-110.1170312","38.975637"],["-110.1164399","38.9755629"],["-110.1153329","38.9753927"],["-110.1132658","38.975008"],["-110.1122454","38.974795"],["-110.1091158","38.9739697"],["-110.1083306","38.9737223"],["-110.1005638","38.9711344"],["-110.0961321","38.9698781"],["-110.08425","38.9669356"],["-110.0814754","38.9660954"],["-110.0777558","38.9648647"],["-110.0753641","38.9640229"],["-110.0732058","38.9632888"],["-110.0713968","38.9627657"],["-110.0695838","38.9622995"],["-110.0678","38.9618076"],["-110.066308","38.9613031"],["-110.0651518","38.9608005"],["-110.0635559","38.9599883"],["-110.0621495","38.9591168"],["-110.06067","38.9581355"],["-110.0589713","38.9569537"],["-110.0570724","38.9557303"],["-110.0549548","38.954409"],["-110.05242","38.9529583"],["-110.0501116","38.9516806"],["-110.0461345","38.9494003"],["-110.0434936","38.9476645"],["-110.0410976","38.9460191"],["-110.0384856","38.9440567"],["-110.0339318","38.9403856"],["-110.0314449","38.9385742"],["-110.0297909","38.9374623"],["-110.0287557","38.9368416"],["-110.0262811","38.9355852"],["-110.023383","38.9343063"],["-110.0211161","38.933495"],["-110.0166667","38.9320724"],["-110.0150822","38.9314932"],["-110.0132478","38.9306638"],["-110.0079958","38.9281426"],["-110.0065284","38.9275171"],["-110.0051116","38.9270139"],["-110.0033065","38.9265349"],["-110.0019736","38.9262714"],["-110.000891","38.9261169"],["-109.9997113","38.9259775"],["-109.9982971","38.9259019"],["-109.9961476","38.9258951"],["-109.994007","38.9259184"],["-109.9917663","38.9259234"],["-109.9898317","38.9258696"],["-109.9878933","38.9257653"],["-109.9857271","38.9255215"],["-109.9833995","38.9251703"],["-109.9750032","38.9234499"],["-109.9684445","38.9223501"],["-109.964472","38.9219181"],["-109.9463007","38.9204501"],["-109.9443531","38.9203781"],["-109.9421956","38.9203542"],["-109.9398816","38.9204621"],["-109.9378492","38.9206419"],["-109.9364809","38.9208122"],["-109.931846","38.92151"],["-109.9288337","38.92196"],["-109.9191597","38.9233903"],["-109.8462896","38.9346097"],["-109.8436552","38.9351039"],["-109.8419199","38.935521"],["-109.8402398","38.9360144"],["-109.8276687","38.9402155"],["-109.8263313","38.9406235"],["-109.825559","38.9408191"],["-109.8248163","38.9409863"],["-109.8241566","38.9411051"],["-109.8228557","38.9412877"],["-109.8210799","38.9414366"],["-109.8198551","38.9415018"],["-109.8186592","38.9415162"],["-109.8176745","38.9415961"],["-109.816462","38.9417328"],["-109.8163218","38.9407653"],["-109.8162997","38.9394094"],["-109.8130787","38.8826791"],["-109.8128358","38.8791679"],["-109.8126836","38.877982"],["-109.8122917","38.875867"],["-109.8120822","38.8748929"],["-109.8117729","38.8737524"],["-109.8113096","38.8722334"],["-109.8106912","38.8703974"],["-109.8100031","38.8686426"],["-109.8040209","38.8560563"],["-109.803029","38.8541548"],["-109.8024051","38.8530521"],["-109.8010062","38.8508038"],["-109.7990178","38.8480418"],["-109.7912858","38.8377281"],["-109.7606993","38.7968982"],["-109.7587568","38.7941663"],["-109.7579333","38.7929002"],["-109.7574151","38.7920196"],["-109.7566811","38.7906686"],["-109.7555521","38.7884536"],["-109.7428461","38.7622067"],["-109.741493","38.7590972"],["-109.7376819","38.7470644"],["-109.7371951","38.745638"],["-109.7365302","38.7440701"],["-109.7356176","38.7424269"],["-109.7351597","38.7417477"],["-109.728863","38.7334031"],["-109.7281989","38.7326035"],["-109.7274606","38.7318019"],["-109.7261156","38.7305574"],["-109.7218725","38.7268205"],["-109.7196569","38.7248861"],["-109.7186692","38.7240618"],["-109.7174904","38.7232737"],["-109.7144023","38.7214133"],["-109.7082951","38.7177836"],["-109.7076554","38.7173375"],["-109.7071796","38.7169647"],["-109.7067336","38.7165905"],["-109.7063676","38.7162645"],["-109.7059703","38.7158703"],["-109.7053523","38.7151376"],["-109.7048727","38.7144496"],["-109.704466","38.7137882"],["-109.7041971","38.7132231"],["-109.7039673","38.7126191"],["-109.7015962","38.7053337"],["-109.6982823","38.6950784"],["-109.6952679","38.6856761"],["-109.6948974","38.6847303"],["-109.694524","38.6839611"],["-109.694163","38.6832818"],["-109.6936854","38.6825014"],["-109.6931927","38.6818098"],["-109.6927118","38.6811474"],["-109.6922131","38.6804596"],["-109.6920066","38.6801688"],["-109.6893575","38.6765587"],["-109.6883799","38.6752459"],["-109.6864258","38.67255"],["-109.6858691","38.6716974"],["-109.6847335","38.6697918"],["-109.6746123","38.6525006"],["-109.6733192","38.6504207"],["-109.672601","38.649149"],["-109.6682868","38.6420657"],["-109.6678424","38.6413932"],["-109.6670739","38.6404559"],["-109.6634103","38.6361464"],["-109.6625538","38.6352075"],["-109.661946","38.6345878"],["-109.6614752","38.6341587"],["-109.6609757","38.6337282"],["-109.6602786","38.6331814"],["-109.6593185","38.6324768"],["-109.6544375","38.6289975"],["-109.6534541","38.6282953"],["-109.6493095","38.6253573"],["-109.6478173","38.6243181"],["-109.6466373","38.6235363"],["-109.6456698","38.6229404"],["-109.6434998","38.6217424"],["-109.6404932","38.620309"],["-109.6395618","38.6198906"],["-109.6349869","38.6178747"],["-109.6267503","38.6142222"],["-109.6260251","38.6139173"],["-109.6257961","38.6138357"],["-109.625608","38.6137747"],["-109.6254141","38.6137234"],["-109.6250347","38.6136494"],["-109.6248271","38.6136158"],["-109.6246071","38.6135948"],["-109.6244403","38.6135869"],["-109.6240066","38.6135811"],["-109.6237324","38.6135931"],["-109.6234203","38.6136256"],["-109.6231124","38.6136806"],["-109.6225387","38.6138302"],["-109.6222767","38.6139203"],["-109.6210728","38.6143849"],["-109.6200562","38.6147998"],["-109.6197531","38.6149193"],["-109.6193403","38.6150754"],["-109.6190914","38.6151592"],["-109.6188474","38.6152342"],["-109.6185795","38.6152957"],["-109.6182431","38.6153611"],["-109.6178812","38.6154185"],["-109.6175162","38.6154661"],["-109.6171332","38.6154907"],["-109.616711","38.6154967"],["-109.6163338","38.6154942"],["-109.615912","38.6154696"],["-109.6155593","38.6154353"],["-109.6152828","38.6153992"],["-109.6148455","38.615322"],["-109.6145146","38.6152354"],["-109.6143455","38.6151837"],["-109.6138718","38.615023"],["-109.6135757","38.6149166"],["-109.613332","38.6148166"],["-109.6131385","38.6147308"],["-109.6129764","38.614648"],["-109.6126424","38.6144593"],["-109.6124769","38.614361"],["-109.6122944","38.6142512"],["-109.6107646","38.6130444"],["-109.6084801","38.6111784"],["-109.6083736","38.611033"],["-109.6076937","38.610486"],["-109.6074865","38.6103673"],["-109.6072728","38.6101963"],["-109.606886","38.6098893"],["-109.6048254","38.6081976"],["-109.6044279","38.6078564"],["-109.6028981","38.6066449"],["-109.6025186","38.6063844"],["-109.6021396","38.6061493"],["-109.601726","38.6059335"],["-109.6013861","38.6057709"],["-109.601153","38.6056727"],["-109.6009009","38.6055712"],["-109.6006444","38.6054824"],["-109.6003814","38.6054006"],["-109.5997363","38.6052318"],["-109.5994458","38.6051688"],["-109.5991766","38.6051149"],["-109.5987571","38.6050647"],["-109.598403","38.6050293"],["-109.5977309","38.6050014"],["-109.5974161","38.6049997"],["-109.5967957","38.6050283"],["-109.5962953","38.6050886"],["-109.5953696","38.6052266"],["-109.5909962","38.6058797"],["-109.5902685","38.6059829"],["-109.587507","38.6064074"],["-109.5868718","38.6064911"],["-109.5863541","38.6065426"],["-109.5858401","38.6065695"],["-109.5848018","38.6066073"],["-109.5844346","38.606618"],["-109.5833563","38.606648"],["-109.5824425","38.6066679"],["-109.5822051","38.6066673"],["-109.5819704","38.6066555"],["-109.5817147","38.6066191"],["-109.5814975","38.6065811"],["-109.5812218","38.6064989"],["-109.5806434","38.6062823"],["-109.5803301","38.6061295"],["-109.5800433","38.6059333"],["-109.5799782","38.6058351"],["-109.5797754","38.6056032"],["-109.5764852","38.6022198"],["-109.5763108","38.6020961"],["-109.5757764","38.6015588"],["-109.5753418","38.6010878"],["-109.5751755","38.6009212"],["-109.5749627","38.6007141"],["-109.5746277","38.6003865"],["-109.5743152","38.60006"],["-109.5734472","38.5991504"],["-109.5731132","38.5988249"],["-109.5728908","38.5985935"],["-109.5726615","38.5983547"],["-109.5723582","38.5980662"],["-109.572038","38.5977854"],["-109.5713961","38.5973169"],["-109.5652916","38.5930104"],["-109.5648894","38.5927158"],["-109.5645154","38.5924234"],["-109.5638999","38.5918282"],["-109.5628115","38.5907048"],["-109.5624037","38.5902512"],["-109.561688","38.5895433"],["-109.561175","38.5890791"],["-109.5608465","38.5888115"],["-109.560074","38.5881574"],["-109.554891","38.584052"],["-109.5527964","38.5823508"],["-109.5526425","38.5822112"],["-109.552453","38.5820292"],["-109.5523149","38.5818869"],["-109.5521683","38.5817264"],["-109.5520339","38.5815688"],["-109.5518782","38.5813732"],["-109.5517407","38.5811849"],["-109.5516056","38.580985"],["-109.5514776","38.5807768"],["-109.5514116","38.5806633"],["-109.5513257","38.580505"],["-109.5512894","38.5804315"],["-109.5512213","38.5802945"],["-109.5511821","38.5802063"],["-109.5510955","38.5799955"],["-109.5510335","38.5798317"],["-109.550986","38.579695"],["-109.5509179","38.5794656"],["-109.5508227","38.5790535"],["-109.5507798","38.5787928"],["-109.5507571","38.57859"],["-109.5507424","38.5783668"],["-109.5507366","38.5781064"],["-109.5507422","38.5768502"],["-109.5507432","38.576716"],["-109.5507443","38.5765424"],["-109.5507458","38.5763738"],["-109.5507925","38.5732765"]]}};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':'#0b7172','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:[["-122.3328432","47.6061155"],["-122.3329105","47.6060924"],["-122.3335697","47.6068008"],["-122.3325103","47.6072512"],["-122.3324576","47.6072732"],["-122.3313366","47.6077398"],["-122.331225","47.6077085"],["-122.3311694","47.6076936"],["-122.3311277","47.6076843"],["-122.3310219","47.6076766"],["-122.3309671","47.6076707"],["-122.3309223","47.6076606"],["-122.33088","47.6076469"],["-122.3308395","47.6076294"],["-122.3308039","47.6076102"],["-122.3307694","47.6075879"],["-122.3307389","47.6075637"],["-122.3307139","47.6075366"],["-122.3306475","47.6074524"],["-122.3304777","47.6072348"],["-122.3301599","47.6068048"],["-122.3298321","47.6064013"],["-122.3294203","47.60593"],["-122.3290771","47.6055827"],["-122.3287023","47.6052237"],["-122.3281068","47.6045404"],["-122.3274522","47.6037617"],["-122.3269109","47.603162"],["-122.3268006","47.6030515"],["-122.3267011","47.6029565"],["-122.3265819","47.6028469"],["-122.3264688","47.6027464"],["-122.3263568","47.6026514"],["-122.3250134","47.6015799"],["-122.3244737","47.6011418"],["-122.3232809","47.6002236"],["-122.3227227","47.5997404"],["-122.3225942","47.5996158"],["-122.3224671","47.5994859"],["-122.3223367","47.5993457"],["-122.3222273","47.5992203"],["-122.3221187","47.5990894"],["-122.3220092","47.5989504"],["-122.3219025","47.5988052"],["-122.3218125","47.5986747"],["-122.321723","47.5985382"],["-122.3216306","47.5983882"],["-122.3215488","47.5982437"],["-122.3214549","47.598059"],["-122.321281","47.5976902"],["-122.3210454","47.5972351"],["-122.3208502","47.5968286"],["-122.3207848","47.5965114"],["-122.3207147","47.595288"],["-122.3206827","47.5951306"],["-122.3206444","47.595038"],["-122.3205922","47.5949477"],["-122.3205096","47.594839"],["-122.3204301","47.5947594"],["-122.3203394","47.594684"],["-122.3202144","47.5946003"],["-122.3200977","47.5945372"],["-122.3199458","47.5944721"],["-122.3198184","47.5944294"],["-122.3196933","47.5943975"],["-122.3195848","47.5943764"],["-122.3194771","47.5943611"],["-122.3193624","47.5943497"],["-122.3192563","47.594343"],["-122.31915","47.5943409"],["-122.3190257","47.5943438"],["-122.318886","47.5943519"],["-122.3187149","47.5943756"],["-122.3184686","47.5944307"],["-122.3179288","47.5945713"],["-122.3171011","47.5947865"],["-122.3169813","47.59481"],["-122.3168452","47.5948271"],["-122.3166887","47.5948432"],["-122.3161185","47.5948652"],["-122.3157943","47.5948614"],["-122.3153527","47.5948209"],["-122.3151953","47.5948005"],["-122.3150076","47.5947667"],["-122.3147709","47.5947187"],["-122.3145166","47.5946522"],["-122.3142805","47.5945812"],["-122.3140007","47.5944789"],["-122.3136786","47.5943301"],["-122.3134077","47.5941776"],["-122.313207","47.5940303"],["-122.3129643","47.5938207"],["-122.3112059","47.5915027"],["-122.3110849","47.5913488"],["-122.3109803","47.5912333"],["-122.3108751","47.5911267"],["-122.3107577","47.5910206"],["-122.3106338","47.5909179"],["-122.3105021","47.5908201"],["-122.3103706","47.5907308"],["-122.3102221","47.5906402"],["-122.3100707","47.5905554"],["-122.309919","47.5904791"],["-122.3097619","47.5904067"],["-122.3095905","47.5903369"],["-122.3094223","47.5902744"],["-122.3092537","47.5902195"],["-122.3090616","47.5901648"],["-122.3088871","47.5901207"],["-122.3086951","47.5900794"],["-122.3085023","47.5900459"],["-122.3083227","47.5900196"],["-122.3081223","47.5899978"],["-122.3079374","47.5899835"],["-122.3075799","47.5899764"],["-122.2899488","47.5900433"],["-122.2761036","47.5897149"],["-122.254734","47.5892367"],["-122.2533856","47.5892667"],["-122.2527804","47.5893219"],["-122.2521322","47.5894267"],["-122.251612","47.5895485"],["-122.2511792","47.5896768"],["-122.2507516","47.5898174"],["-122.2496883","47.5902642"],["-122.2484659","47.5908454"],["-122.2473062","47.5913974"],["-122.2468245","47.5915723"],["-122.2464117","47.5916914"],["-122.2459562","47.5917961"],["-122.2455178","47.5918724"],["-122.2450359","47.5919308"],["-122.2445928","47.5919602"],["-122.2441165","47.5919689"],["-122.243649","47.5919527"],["-122.2431546","47.5919124"],["-122.2426736","47.5918422"],["-122.2422731","47.5917618"],["-122.2418371","47.5916534"],["-122.241403","47.5915188"],["-122.2409359","47.5913427"],["-122.2405951","47.5911864"],["-122.2402489","47.5910093"],["-122.2401692","47.59096"],["-122.2399406","47.5908155"],["-122.2395688","47.5905993"],["-122.2391224","47.5903472"],["-122.2379772","47.589705"],["-122.2374409","47.5894255"],["-122.2370133","47.5892225"],["-122.2367315","47.5890996"],["-122.2360175","47.5888232"],["-122.234602","47.5883252"],["-122.2341469","47.588166"],["-122.2312636","47.5871546"],["-122.2307489","47.5869576"],["-122.230208","47.5867331"],["-122.2293798","47.5863577"],["-122.2288928","47.5861332"],["-122.2278386","47.5856605"],["-122.224882","47.584337"],["-122.2199832","47.582242"],["-122.219097","47.5818118"],["-122.2187909","47.5816328"],["-122.2163546","47.579981"],["-122.216063","47.5797942"],["-122.2157231","47.5796137"],["-122.215439","47.5794755"],["-122.2149398","47.5792483"],["-122.2145496","47.5791013"],["-122.2141428","47.5789596"],["-122.2137962","47.5788617"],["-122.2132056","47.5787203"],["-122.2124876","47.5785764"],["-122.210608","47.5782998"],["-122.2068101","47.5777849"],["-122.2058508","47.577717"],["-122.2055345","47.5777127"],["-122.2052349","47.5777167"],["-122.2046697","47.5777446"],["-122.204405","47.5777662"],["-122.2041648","47.5777911"],["-122.2039432","47.5778184"],["-122.2034708","47.5778944"],["-122.2031683","47.577953"],["-122.2019373","47.5782775"],["-122.19764","47.5794097"],["-122.1965933","47.5796294"],["-122.1963556","47.5796661"],["-122.196164","47.5796929"],["-122.1960748","47.579703"],["-122.1957889","47.5797252"],["-122.1954591","47.5797469"],["-122.1951071","47.5797594"],["-122.1947421","47.5797587"],["-122.1943756","47.5797364"],["-122.1940692","47.5797063"],["-122.193751","47.5796617"],["-122.1913915","47.5791908"],["-122.1910375","47.579132"],["-122.1905206","47.579069"],["-122.1902033","47.5790521"],["-122.1898228","47.5790426"],["-122.1893896","47.5790496"],["-122.1887603","47.5790867"],["-122.1763341","47.5801489"],["-122.175484","47.5801924"],["-122.1742553","47.580229"],["-122.173778","47.5802309"],["-122.172625","47.5802088"],["-122.1693623","47.5800919"],["-122.1683917","47.5800395"],["-122.1659856","47.5799935"],["-122.1649009","47.5799929"],["-122.1631999","47.5799828"],["-122.1613317","47.5799034"],["-122.1603794","47.5798409"],["-122.1574704","47.5796055"],["-122.1547537","47.5794551"],["-122.1364504","47.5785782"],["-122.1354186","47.5785115"],["-122.1346288","47.5784218"],["-122.1341762","47.5783557"],["-122.1337233","47.5782769"],["-122.1331665","47.5781663"],["-122.1325111","47.5780155"],["-122.1318135","47.5778097"],["-122.1310421","47.5775641"],["-122.1059404","47.5686122"],["-122.1053852","47.5683744"],["-122.1048272","47.5681035"],["-122.1037384","47.5675058"],["-122.0887147","47.5591565"],["-122.0875889","47.5585689"],["-122.0869651","47.5582943"],["-122.0713108","47.5522632"],["-122.0556764","47.546259"],["-122.0552116","47.5460943"],["-122.0543221","47.5458328"],["-122.0537011","47.5456893"],["-122.053084","47.5455518"],["-122.0511573","47.5453204"],["-122.0476255","47.5450008"],["-122.0471638","47.5449484"],["-122.0466736","47.5448724"],["-122.0461315","47.5447661"],["-122.0455828","47.5446446"],["-122.0449715","47.5444824"],["-122.0444728","47.5443266"],["-122.0439951","47.5441555"],["-122.0434492","47.5439339"],["-122.042573","47.5435266"],["-122.0383586","47.5414961"],["-122.0374859","47.5410614"],["-122.0371615","47.5408895"],["-122.0368874","47.540734"],["-122.0363081","47.5403634"],["-122.0357578","47.5399811"],["-122.0352786","47.5396173"],["-122.0348241","47.5392541"],["-122.0344498","47.5389134"],["-122.0339736","47.5384275"],["-122.0297531","47.5336419"],["-122.0294295","47.5333584"],["-122.0290266","47.5330392"],["-122.0282119","47.5325296"],["-122.027761","47.5323094"],["-122.02737","47.5321516"],["-122.026889","47.5319937"],["-122.0264792","47.5318838"],["-122.0261074","47.5317975"],["-122.0257887","47.5317351"],["-122.0253506","47.5316641"],["-122.0249473","47.531614"],["-122.024507","47.5315802"],["-122.0240951","47.5315573"],["-122.0236902","47.531557"],["-122.0232987","47.5315727"],["-122.0228416","47.5316115"],["-122.0221595","47.5317028"],["-122.0215794","47.5318208"],["-122.0214855","47.5318432"],["-122.0212642","47.5319005"],["-122.021089","47.5319497"],["-122.0209455","47.5319926"],["-122.0205323","47.5321293"],["-122.0204223","47.5321703"],["-122.0201216","47.5322918"],["-122.0198239","47.5324186"],["-122.0194783","47.532586"],["-122.0154569","47.5348038"],["-122.014357","47.5353818"],["-122.0139377","47.5355847"],["-122.0134985","47.5357474"],["-122.0129456","47.5359359"],["-122.0123804","47.5360919"],["-122.0117925","47.5362317"],["-122.0112625","47.5363477"],["-122.0106616","47.5364399"],["-122.0102348","47.5364838"],["-122.0097614","47.5365126"],["-122.0092192","47.5365172"],["-122.0086044","47.5364992"],["-122.0080973","47.5364582"],["-122.0074648","47.5363695"],["-122.0069936","47.536276"],["-122.0064092","47.5361375"],["-122.0059393","47.5359965"],["-122.0053358","47.5357665"],["-122.0038013","47.5350872"],["-122.0005489","47.5336336"],["-121.9985992","47.5329425"],["-121.9974526","47.532585"],["-121.9959391","47.5321753"],["-121.994936","47.5319407"],["-121.9934655","47.5316483"],["-121.9922156","47.5314317"],["-121.9908085","47.5312524"],["-121.989795","47.5311495"],["-121.9885557","47.5310487"],["-121.9839674","47.5308341"],["-121.9826763","47.5307836"],["-121.9821528","47.5308055"],["-121.9815089","47.5308558"],["-121.980866","47.5309397"],["-121.9802794","47.5310594"],["-121.9794436","47.5312866"],["-121.9789123","47.5314775"],["-121.9785245","47.531635"],["-121.9781507","47.5318047"],["-121.9777718","47.5320118"],["-121.9773402","47.5322971"],["-121.9769798","47.5325442"],["-121.9765625","47.5328935"],["-121.975164","47.5341215"],["-121.9749169","47.5343227"],["-121.9747106","47.5344764"],["-121.9742633","47.534762"],["-121.9738952","47.5349569"],["-121.9734856","47.5351418"],["-121.973084","47.5353006"],["-121.9726589","47.5354394"],["-121.9722035","47.5355633"],["-121.9717515","47.535658"],["-121.9712795","47.5357251"],["-121.9707849","47.5357789"],["-121.9703347","47.5358038"],["-121.9698118","47.5358014"],["-121.9692518","47.5357674"],["-121.9687397","47.5357069"],["-121.968238","47.5356196"],["-121.9677976","47.5355261"],["-121.9669795","47.5352746"],["-121.9620183","47.5336657"],["-121.961288","47.5334444"],["-121.9608319","47.5333204"],["-121.9602001","47.5331747"],["-121.9594347","47.533037"],["-121.9587748","47.532941"],["-121.9466217","47.5317452"],["-121.9461137","47.5316715"],["-121.9456248","47.5315771"],["-121.9451687","47.5314584"],["-121.9447095","47.5313242"],["-121.9442786","47.5311763"],["-121.9437589","47.5309638"],["-121.9432496","47.5307193"],["-121.9428852","47.5305199"],["-121.9425235","47.5302952"],["-121.9420652","47.5299546"],["-121.9418034","47.5297379"],["-121.9415202","47.5294815"],["-121.9412307","47.5291765"],["-121.9407131","47.528504"],["-121.9369947","47.5236046"],["-121.9367573","47.5233347"],["-121.936514","47.5230901"],["-121.9362947","47.5228869"],["-121.9360549","47.5226945"],["-121.9357722","47.5224883"],["-121.9355552","47.5223221"],["-121.935169","47.5220941"],["-121.9347536","47.5218823"],["-121.9343203","47.52168"],["-121.9338371","47.5214909"],["-121.9328685","47.5212048"],["-121.9317331","47.5208834"],["-121.9305112","47.5205366"],["-121.9300572","47.520388"],["-121.929642","47.5202392"],["-121.9286497","47.5198376"],["-121.9227813","47.517377"],["-121.9209844","47.5165695"],["-121.9200395","47.5161036"],["-121.919064","47.515595"],["-121.9113165","47.5115053"],["-121.910843","47.5112141"],["-121.9103552","47.5108979"],["-121.9098246","47.5105298"],["-121.9093935","47.5102096"],["-121.9086964","47.5096597"],["-121.9071826","47.5084395"],["-121.9066678","47.508045"],["-121.9063443","47.5078192"],["-121.9060737","47.507649"],["-121.9056302","47.5074005"],["-121.9051613","47.5071586"],["-121.9046546","47.5069322"],["-121.9041514","47.5067343"],["-121.9036806","47.5065717"],["-121.9031984","47.5064223"],["-121.9026313","47.5062792"],["-121.902071","47.5061572"],["-121.9014567","47.5060505"],["-121.9008084","47.5059762"],["-121.9001826","47.5059251"],["-121.8994993","47.5059001"],["-121.8988511","47.5059031"],["-121.8982623","47.505929"],["-121.8977076","47.5059799"],["-121.8969561","47.506083"],["-121.8909808","47.5070807"],["-121.8873486","47.5076948"],["-121.8767273","47.5094745"],["-121.8723074","47.5102099"],["-121.867797","47.5109582"],["-121.8673287","47.511023"],["-121.8669561","47.511064"],["-121.866076","47.5111344"],["-121.8651869","47.5111718"],["-121.8640681","47.5111758"],["-121.8594815","47.5110215"],["-121.8577575","47.5109746"],["-121.8573613","47.5109869"],["-121.8568785","47.5110208"],["-121.8563924","47.511069"],["-121.856021","47.5111204"],["-121.85553","47.5112115"],["-121.8553054","47.5112606"],["-121.8540705","47.5115876"],["-121.8455336","47.513885"],["-121.843873","47.5143181"],["-121.8434016","47.5144122"],["-121.8429351","47.5144836"],["-121.8424981","47.5145385"],["-121.8419908","47.514584"],["-121.8415589","47.5146099"],["-121.8411161","47.5146244"],["-121.8406359","47.514627"],["-121.8402026","47.5146139"],["-121.8396927","47.5145792"],["-121.8392326","47.5145377"],["-121.8387501","47.5144733"],["-121.838255","47.5143907"],["-121.8377968","47.5143027"],["-121.8373319","47.5141887"],["-121.8368971","47.5140708"],["-121.8364669","47.5139403"],["-121.836094","47.5138111"],["-121.8356323","47.513632"],["-121.835184","47.5134355"],["-121.8347561","47.5132239"],["-121.8343492","47.5130014"],["-121.8339688","47.5127697"],["-121.8336519","47.5125544"],["-121.8333253","47.5123224"],["-121.8330847","47.5121325"],["-121.8170237","47.4981519"],["-121.8153449","47.4967237"],["-121.8144221","47.4959408"],["-121.8141202","47.4957104"],["-121.8138249","47.495502"],["-121.8135443","47.4953224"],["-121.8132261","47.4951351"],["-121.8128555","47.4949342"],["-121.8124444","47.49473"],["-121.8120129","47.4945401"],["-121.8115682","47.4943637"],["-121.8083582","47.4933071"],["-121.8020237","47.49123"],["-121.8014768","47.4910336"],["-121.8009951","47.4908363"],["-121.8002126","47.4904924"],["-121.7998749","47.4903329"],["-121.7995548","47.4901679"],["-121.7987763","47.4897283"],["-121.7982677","47.4894089"],["-121.7977537","47.4890696"],["-121.7973191","47.4887468"],["-121.7969978","47.4884859"],["-121.796411","47.4879763"],["-121.7949177","47.4864963"],["-121.7859132","47.477523"],["-121.7843526","47.4759749"],["-121.7840597","47.4757174"],["-121.78377","47.4754851"],["-121.7835612","47.4753275"],["-121.7831964","47.4750783"],["-121.78296","47.4749298"],["-121.7827067","47.4747783"],["-121.7824181","47.4746199"],["-121.7821798","47.4744953"],["-121.7817747","47.4743057"],["-121.7814629","47.4741726"],["-121.781123","47.4740383"],["-121.7807664","47.4739133"],["-121.7804536","47.4738145"],["-121.7800556","47.4736995"],["-121.7796377","47.4735905"],["-121.7792371","47.4734986"],["-121.7785765","47.473372"],["-121.7781917","47.4733158"],["-121.7776597","47.4732542"],["-121.7771047","47.4732114"],["-121.7759616","47.4731824"],["-121.7467273","47.4732506"],["-121.7429391","47.4732149"],["-121.7420263","47.4731391"],["-121.7412498","47.4730247"],["-121.7404636","47.472853"],["-121.7386816","47.4723598"],["-121.7327751","47.4706204"],["-121.7280666","47.4690111"],["-121.7188801","47.4656019"],["-121.7180463","47.4653025"],["-121.7165031","47.4647886"],["-121.7156133","47.4645455"],["-121.7147568","47.464331"],["-121.7129473","47.4639164"],["-121.7100261","47.4633478"],["-121.7092583","47.4631709"],["-121.7085234","47.4629484"],["-121.7077937","47.4626751"],["-121.7070901","47.4623665"],["-121.7064264","47.4619893"],["-121.7057248","47.4615417"],["-121.7049996","47.4609711"],["-121.704397","47.4603721"],["-121.7038249","47.4597109"],["-121.7034802","47.4591606"],["-121.7031938","47.4586131"],["-121.7029636","47.4579363"],["-121.7028202","47.4571961"],["-121.7025933","47.4558882"],["-121.7024857","47.4553135"],["-121.7023526","47.4547904"],["-121.7021415","47.454205"],["-121.701482","47.4526959"],["-121.7007954","47.4511441"],["-121.7004473","47.4504552"],["-121.7000852","47.4498807"],["-121.6996835","47.4493356"],["-121.6992746","47.4488543"],["-121.6988463","47.4484272"],["-121.6982456","47.4479006"],["-121.6976121","47.4473928"],["-121.6969188","47.4469073"],["-121.6961535","47.4464638"],["-121.6953815","47.4460681"],["-121.6945291","47.4456838"],["-121.6913883","47.4444224"],["-121.690431","47.443992"],["-121.6897012","47.4437685"],["-121.6890171","47.4435965"],["-121.6882978","47.4434603"],["-121.6874086","47.4433259"],["-121.6865605","47.4433038"],["-121.6857272","47.4433133"],["-121.6849014","47.4433851"],["-121.6813961","47.4437655"],["-121.6807","47.4438231"],["-121.6800053","47.4438357"],["-121.6792937","47.443824"],["-121.6784966","47.4437747"],["-121.6772277","47.4435896"],["-121.6753381","47.4433007"],["-121.6736421","47.44304"],["-121.6725705","47.4429156"],["-121.6718447","47.4428618"],["-121.6712376","47.442855"],["-121.6705762","47.442873"],["-121.6687911","47.4429888"],["-121.6660777","47.4431081"],["-121.664866","47.4431098"],["-121.6635462","47.4430248"],["-121.661953","47.4428326"],["-121.6611775","47.442692"],["-121.6603362","47.4425103"],["-121.6594398","47.4422784"],["-121.6585849","47.4420114"],["-121.6577976","47.4417446"],["-121.657075","47.4414396"],["-121.6486096","47.4373897"],["-121.6477163","47.436989"],["-121.6465","47.4364264"],["-121.6453532","47.4358649"],["-121.6428299","47.4346312"],["-121.6419737","47.4341735"],["-121.6411765","47.4337127"],["-121.6393759","47.4326156"],["-121.6384906","47.4320726"],["-121.6371856","47.4312716"],["-121.6364294","47.4308917"],["-121.634999","47.4302789"],["-121.6341477","47.4300065"],["-121.632864","47.4296475"],["-121.6314654","47.4294012"],["-121.628262","47.4290326"],["-121.6229906","47.4284793"],["-121.6218597","47.4284116"],["-121.6208764","47.4284242"],["-121.6199269","47.4284995"],["-121.617594","47.4288021"],["-121.6166503","47.4288867"],["-121.6157977","47.4289314"],["-121.6148582","47.4289087"],["-121.6140353","47.4287938"],["-121.6130037","47.4285711"],["-121.6072258","47.4266007"],["-121.6060301","47.4262171"],["-121.6040976","47.4255856"],["-121.6030754","47.42535"],["-121.6019318","47.4251712"],["-121.599775","47.4249583"],["-121.5987941","47.424806"],["-121.5978762","47.4245727"],["-121.5969057","47.4242512"],["-121.5961265","47.4238568"],["-121.595577","47.4234961"],["-121.5946224","47.4226718"],["-121.5925666","47.4208595"],["-121.5920323","47.4204753"],["-121.5913464","47.420051"],["-121.5899331","47.4192854"],["-121.5883141","47.4184122"],["-121.5877966","47.4180664"],["-121.5873752","47.4177194"],["-121.5868451","47.4171741"],["-121.5864999","47.4167284"],["-121.5861808","47.416261"],["-121.5858771","47.4157261"],["-121.5851137","47.4145048"],["-121.5847362","47.4139752"],["-121.5842385","47.413403"],["-121.5833823","47.4127336"],["-121.5824687","47.4122407"],["-121.5808316","47.4114355"],["-121.5788481","47.410518"],["-121.5777868","47.4100154"],["-121.5765319","47.4094545"],["-121.5758382","47.4091"],["-121.5753726","47.4087873"],["-121.5749022","47.4084316"],["-121.5742527","47.4078935"],["-121.5731351","47.4069022"],["-121.5726861","47.4065579"],["-121.5721994","47.4062172"],["-121.5716376","47.4058607"],["-121.5709706","47.4055612"],["-121.5702168","47.4052905"],["-121.569306","47.4050332"],["-121.5610145","47.4034973"],["-121.5601071","47.4032259"],["-121.559071","47.4028286"],["-121.5581682","47.4024606"],["-121.555743","47.4011368"],["-121.5518303","47.3988896"],["-121.5514517","47.3986996"],["-121.5510522","47.3985173"],["-121.5505678","47.3983193"],["-121.5497829","47.3980621"],["-121.5492668","47.3979311"],["-121.5487604","47.3978221"],["-121.5482778","47.3977434"],["-121.5477178","47.3976766"],["-121.5442063","47.3974122"],["-121.5425153","47.3972179"],["-121.5282455","47.3952013"],["-121.5275544","47.3951113"],["-121.5266681","47.3950435"],["-121.5258081","47.3950166"],["-121.5248818","47.3950065"],["-121.5184814","47.3951383"],["-121.5177714","47.3951889"],["-121.517075","47.3952545"],["-121.5162625","47.395368"],["-121.5130059","47.3958705"],["-121.5123354","47.3959437"],["-121.5117144","47.3959838"],["-121.4932909","47.3967511"],["-121.4904215","47.3968779"],["-121.4895944","47.3968866"],["-121.4878394","47.396843"],["-121.4869122","47.3967875"],["-121.4856449","47.3966848"],["-121.4845778","47.3965608"],["-121.4833798","47.3963876"],["-121.482248","47.3961898"],["-121.4812897","47.3959966"],["-121.4806981","47.3958665"],["-121.4792016","47.3954799"],["-121.4777579","47.3950454"],["-121.4768012","47.3947191"],["-121.4734737","47.3934665"],["-121.4730523","47.3933142"],["-121.4725332","47.3931614"],["-121.4720089","47.3930359"],["-121.4714449","47.3929347"],["-121.4707862","47.3928473"],["-121.4699079","47.3927949"],["-121.4691825","47.3927997"],["-121.4684531","47.3928411"],["-121.4678514","47.3929141"],["-121.4672804","47.3930211"],["-121.4652601","47.393578"],["-121.4586975","47.3955393"],["-121.4576802","47.3957721"],["-121.4501402","47.3969865"],["-121.4493963","47.3971495"],["-121.4486802","47.3973743"],["-121.447736","47.3977688"],["-121.4471794","47.3980666"],["-121.4465264","47.3985239"],["-121.4457212","47.3992348"],["-121.444603","47.4003126"],["-121.4439059","47.4011061"],["-121.443296","47.4019971"],["-121.4421894","47.4039612"],["-121.4398364","47.4085039"],["-121.439108","47.4098457"],["-121.4387363","47.4107538"],["-121.4384058","47.4117339"],["-121.4381994","47.4122946"],["-121.438026","47.4128914"],["-121.4378646","47.4132438"],["-121.4375805","47.4136476"],["-121.4364083","47.4152219"],["-121.4334632","47.4192204"],["-121.4332187","47.4195415"],["-121.4329134","47.4200964"],["-121.4326479","47.4206149"],["-121.4324148","47.4211161"],["-121.4321044","47.4219379"],["-121.4320322","47.4221637"],["-121.4319475","47.4224877"],["-121.4317978","47.4230173"],["-121.4316188","47.4235989"],["-121.4314471","47.4240331"],["-121.4313697","47.4241837"],["-121.4311144","47.4245494"],["-121.4309421","47.4247278"],["-121.4307476","47.4249068"],["-121.4305579","47.4250732"],["-121.4302865","47.4252653"],["-121.4300091","47.425442"],["-121.4297839","47.4255599"],["-121.4295274","47.4256857"],["-121.4265663","47.4269064"],["-121.4255123","47.4273111"],["-121.4227304","47.4281278"],["-121.422001","47.4283211"],["-121.4216318","47.4283778"],["-121.4211438","47.4284286"],["-121.4206134","47.4284406"],["-121.420125","47.428417"],["-121.4195521","47.4283573"],["-121.4189518","47.4282204"],["-121.4179145","47.4278226"],["-121.4146645","47.4264538"],["-121.4130254","47.4257392"],["-121.4120955","47.4252337"],["-121.4116912","47.4249077"],["-121.4111766","47.4244744"],["-121.4105907","47.4238068"],["-121.4102478","47.423219"],["-121.4100398","47.422622"],["-121.4098701","47.4219359"],["-121.4098434","47.4214001"],["-121.4099123","47.4207288"],["-121.4100936","47.4199202"],["-121.4106263","47.4182786"],["-121.410824","47.4176945"],["-121.411031","47.4170503"],["-121.4112562","47.4161692"],["-121.4113469","47.4156992"],["-121.4113824","47.4151186"],["-121.4112888","47.4144141"],["-121.4099553","47.4110012"],["-121.4096667","47.410572"],["-121.4092963","47.4101808"],["-121.4089096","47.409884"],["-121.408261","47.4094347"],["-121.4067946","47.4085327"],["-121.4056297","47.4078064"],["-121.4053076","47.4075153"],["-121.4050315","47.4072267"],["-121.40479","47.4069493"],["-121.4046192","47.40665"],["-121.4044421","47.4062798"],["-121.4043155","47.4058147"],["-121.4042624","47.4053429"],["-121.4042523","47.4047127"],["-121.4042585","47.4041266"],["-121.4042513","47.4036765"],["-121.4042654","47.4031216"],["-121.40421","47.4028174"],["-121.4041128","47.4024582"],["-121.4037531","47.4017524"],["-121.4035454","47.4014934"],["-121.4032892","47.4012629"],["-121.4029704","47.4010193"],["-121.4026757","47.400819"],["-121.4023841","47.4006363"],["-121.4020874","47.400462"],["-121.4014646","47.4000834"],["-121.4008331","47.3997055"],["-121.4003669","47.3994127"],["-121.3999348","47.3991203"],["-121.3995477","47.398793"],["-121.3991645","47.3984009"],["-121.3987261","47.3978657"],["-121.3981195","47.3971713"],["-121.3976682","47.3966749"],["-121.3974099","47.3964327"],["-121.3971563","47.396226"],["-121.3966781","47.3958987"],["-121.3963723","47.3957149"],["-121.3960439","47.3955395"],["-121.3956428","47.3953629"],["-121.3868696","47.3920925"],["-121.3865411","47.3919676"],["-121.3860534","47.3917557"],["-121.3855058","47.3914851"],["-121.3844495","47.3909349"],["-121.3839749","47.3906654"],["-121.3835533","47.3904077"],["-121.3826589","47.3898107"],["-121.3818947","47.3892518"],["-121.3814818","47.3889085"],["-121.3811648","47.3886142"],["-121.3808511","47.3882923"],["-121.3805083","47.3879197"],["-121.3802321","47.3875751"],["-121.3799776","47.3872219"],["-121.3796631","47.3866954"],["-121.3783829","47.3841007"],["-121.3781344","47.3835564"],["-121.378012","47.3832354"],["-121.377913","47.38292"],["-121.3778229","47.3825727"],["-121.3777145","47.3817551"],["-121.3774413","47.3783785"],["-121.377156","47.374644"],["-121.3771127","47.37429"],["-121.3770684","47.3739817"],["-121.3770173","47.3736872"],["-121.3769341","47.3733998"],["-121.3768339","47.3731162"],["-121.3767084","47.3728127"],["-121.3765576","47.3724722"],["-121.3764215","47.3721898"],["-121.3761691","47.3717575"],["-121.3759919","47.3714816"],["-121.3758099","47.3712285"],["-121.3756295","47.3709946"],["-121.3754298","47.3707537"],["-121.374946","47.3702434"],["-121.3740799","47.3693462"],["-121.37388","47.369113"],["-121.3736661","47.3688383"],["-121.373484","47.3685569"],["-121.3733293","47.3682939"],["-121.3731874","47.3680062"],["-121.3730595","47.3676989"],["-121.3729798","47.3674532"],["-121.3729192","47.3672426"],["-121.3728727","47.3670025"],["-121.3728434","47.3667046"],["-121.3728312","47.3663995"],["-121.3729105","47.3654083"],["-121.3731083","47.363286"],["-121.3731407","47.3627213"],["-121.3731252","47.3624677"],["-121.3730824","47.3622251"],["-121.3730254","47.3619938"],["-121.3729555","47.3617691"],["-121.3728694","47.3615576"],["-121.3727605","47.3613289"],["-121.372632","47.3610975"],["-121.3724988","47.3609061"],["-121.3723264","47.3606915"],["-121.3721655","47.3605096"],["-121.3719389","47.3602889"],["-121.3717319","47.3601011"],["-121.3715434","47.3599534"],["-121.3710992","47.3596481"],["-121.3700142","47.3589345"],["-121.3692157","47.3583977"],["-121.3688788","47.358153"],["-121.3685604","47.3579048"],["-121.3682871","47.3576835"],["-121.3677129","47.3571751"],["-121.3674384","47.3569083"],["-121.3672057","47.3566634"],["-121.3670012","47.3564286"],["-121.3667746","47.3561507"],["-121.3665803","47.3558771"],["-121.3664015","47.3556019"],["-121.3662394","47.3553327"],["-121.3660951","47.3550614"],["-121.3659222","47.3547024"],["-121.3657579","47.3543057"],["-121.365502","47.3536232"],["-121.3652126","47.3528415"],["-121.3650469","47.3524081"],["-121.364492","47.3511637"],["-121.3640506","47.350205"],["-121.3638912","47.3498007"],["-121.3638189","47.3495396"],["-121.3637743","47.3492746"],["-121.3637576","47.3490551"],["-121.3637563","47.3488112"],["-121.3637754","47.3485626"],["-121.3638846","47.3479948"],["-121.3643696","47.3458481"],["-121.3645065","47.345178"],["-121.3645327","47.3449386"],["-121.3645318","47.3446571"],["-121.3645155","47.3444009"],["-121.364479","47.3441603"],["-121.364417","47.3439014"],["-121.364339","47.3436727"],["-121.3642256","47.3434096"],["-121.3640855","47.343159"],["-121.3639393","47.3429324"],["-121.363749","47.3426773"],["-121.3635034","47.3423971"],["-121.3632656","47.3421544"],["-121.3630127","47.3419273"],["-121.3627632","47.3417367"],["-121.3624828","47.3415411"],["-121.3621891","47.3413566"],["-121.3618171","47.3411594"],["-121.3614401","47.340985"],["-121.3610142","47.3408243"],["-121.360564","47.3406894"],["-121.3601046","47.3405717"],["-121.3596735","47.3404852"],["-121.3592201","47.3404202"],["-121.3586909","47.3403692"],["-121.357749","47.3403386"],["-121.3557333","47.3403021"],["-121.3551872","47.3402825"],["-121.3546674","47.3402397"],["-121.3542076","47.3401735"],["-121.3537788","47.3400953"],["-121.3534088","47.340008"],["-121.3528701","47.3398569"],["-121.3525034","47.3397252"],["-121.3521602","47.3395862"],["-121.3517619","47.339399"],["-121.3514217","47.3392176"],["-121.3511105","47.3390266"],["-121.350841","47.3388393"],["-121.3505931","47.338651"],["-121.3503662","47.3384656"],["-121.3496627","47.3377447"],["-121.3479425","47.3359311"],["-121.3470856","47.335013"],["-121.3469256","47.3348128"],["-121.3467642","47.3345942"],["-121.3463879","47.3339983"],["-121.3456588","47.332798"],["-121.3452402","47.3321225"],["-121.3450506","47.3318636"],["-121.3448409","47.3316151"],["-121.3446581","47.3314276"],["-121.344448","47.3312286"],["-121.3441709","47.3309941"],["-121.3438351","47.3307409"],["-121.3434547","47.3305053"],["-121.3430721","47.3302797"],["-121.3427333","47.3301045"],["-121.3423468","47.3299221"],["-121.3414798","47.3295831"],["-121.3389951","47.3287143"],["-121.3373077","47.328146"],["-121.3363519","47.3278557"],["-121.3343845","47.3273422"],["-121.331956","47.3266742"],["-121.3313927","47.3264923"],["-121.3308667","47.3262969"],["-121.3304036","47.3261139"],["-121.3299203","47.3258965"],["-121.3295697","47.3257254"],["-121.3291585","47.3255162"],["-121.3288708","47.3253514"],["-121.3283223","47.3249999"],["-121.3280444","47.3248063"],["-121.3277659","47.3246002"],["-121.3274213","47.3243179"],["-121.3162336","47.3147061"],["-121.3157417","47.3142519"],["-121.3153783","47.3138879"],["-121.3150946","47.3135604"],["-121.3148558","47.3132518"],["-121.3146602","47.3129768"],["-121.3139528","47.3118416"],["-121.3127771","47.309938"],["-121.3126043","47.3096717"],["-121.3124771","47.3094996"],["-121.3123077","47.3093078"],["-121.3120736","47.3090832"],["-121.3118563","47.3089036"],["-121.3113947","47.308577"],["-121.3020353","47.3021627"],["-121.3016652","47.3019387"],["-121.3013406","47.3017593"],["-121.3009289","47.3015633"],["-121.3005568","47.3013996"],["-121.3001758","47.3012512"],["-121.299773","47.3011228"],["-121.2993809","47.3010157"],["-121.298407","47.3008077"],["-121.2949249","47.3001213"],["-121.2941652","47.2999377"],["-121.2934287","47.2997312"],["-121.2926294","47.2994686"],["-121.29135","47.298977"],["-121.2904802","47.2985478"],["-121.2896277","47.2980766"],["-121.2888659","47.2975977"],["-121.2880671","47.2970132"],["-121.2876805","47.2966977"],["-121.2872802","47.2963516"],["-121.2868994","47.2959705"],["-121.286494","47.2955266"],["-121.2859107","47.2948247"],["-121.2855912","47.2943072"],["-121.2850202","47.2932572"],["-121.2831802","47.2897878"],["-121.2830608","47.28954"],["-121.283002","47.289392"],["-121.2829402","47.2892209"],["-121.2828763","47.2890302"],["-121.2828203","47.288808"],["-121.2827798","47.2886024"],["-121.2827358","47.2882479"],["-121.2826523","47.2873756"],["-121.2826098","47.286813"],["-121.2825336","47.2863104"],["-121.2824827","47.2861034"],["-121.2824131","47.2858987"],["-121.2822443","47.2854996"],["-121.281643","47.2842099"],["-121.2813982","47.2836554"],["-121.2812336","47.2831769"],["-121.2812065","47.2830354"],["-121.2811404","47.2826862"],["-121.2811401","47.2825654"],["-121.2811065","47.2823204"],["-121.2810295","47.2812784"],["-121.2809746","47.2806116"],["-121.2809288","47.280359"],["-121.2808643","47.2801244"],["-121.2807954","47.2799173"],["-121.2807297","47.2797445"],["-121.2806536","47.2795814"],["-121.2805677","47.2794203"],["-121.2804438","47.2792126"],["-121.280279","47.278993"],["-121.2801233","47.2788183"],["-121.2799606","47.2786522"],["-121.2797349","47.2784507"],["-121.2775942","47.2768029"],["-121.2710919","47.2718438"],["-121.2708035","47.2716408"],["-121.2705442","47.2714761"],["-121.2702717","47.2713146"],["-121.2700602","47.2712097"],["-121.2698139","47.2711029"],["-121.2694823","47.2709752"],["-121.2690863","47.2708374"],["-121.2686159","47.2706972"],["-121.268043","47.2705491"],["-121.2615151","47.2692042"],["-121.2602976","47.2689402"],["-121.2594092","47.2687308"],["-121.257981","47.2683604"],["-121.2557465","47.2677617"],["-121.2553518","47.267669"],["-121.2550147","47.2675995"],["-121.2545391","47.2675275"],["-121.2540627","47.2674715"],["-121.2535616","47.2674433"],["-121.2530342","47.2674412"],["-121.2525883","47.2674855"],["-121.2521505","47.2675622"],["-121.2517167","47.2676633"],["-121.2497435","47.2682216"],["-121.2488676","47.2684571"],["-121.2483536","47.2685603"],["-121.2479622","47.2686163"],["-121.24761","47.2686451"],["-121.2472041","47.2686559"],["-121.2467363","47.2686506"],["-121.2416472","47.2684315"],["-121.2406914","47.2684855"],["-121.2402465","47.2685266"],["-121.2398203","47.2685823"],["-121.2394129","47.2686536"],["-121.2390362","47.2687302"],["-121.2383015","47.2689447"],["-121.237803","47.2691243"],["-121.2367639","47.2694995"],["-121.2362301","47.2696677"],["-121.2357016","47.2698184"],["-121.235224","47.269914"],["-121.234783","47.2699791"],["-121.2343332","47.2700195"],["-121.2338467","47.2700227"],["-121.2333741","47.2700091"],["-121.2329334","47.2699651"],["-121.2324673","47.2698816"],["-121.2319815","47.2697678"],["-121.2314641","47.2696148"],["-121.2309678","47.2694335"],["-121.2303418","47.2691523"],["-121.222566","47.2655616"],["-121.2219954","47.2653213"],["-121.2214447","47.2651117"],["-121.2208815","47.2649168"],["-121.2203111","47.2647475"],["-121.2197853","47.2646099"],["-121.2169118","47.2639715"],["-121.2165968","47.2638829"],["-121.216232","47.2637701"],["-121.2158699","47.263647"],["-121.2154142","47.2634682"],["-121.2149433","47.2632662"],["-121.2144728","47.2630437"],["-121.2140225","47.2628114"],["-121.2136162","47.2625824"],["-121.2132425","47.2623399"],["-121.2129456","47.262135"],["-121.212247","47.2616164"],["-121.2117644","47.2611912"],["-121.2113254","47.2607339"],["-121.2105671","47.2598749"],["-121.2099155","47.2591172"],["-121.2097164","47.2588965"],["-121.2092261","47.2584826"],["-121.2086362","47.2580633"],["-121.2079995","47.2577126"],["-121.2073525","47.2574548"],["-121.2067442","47.2572727"],["-121.2059699","47.2571309"],["-121.205129","47.2570181"],["-121.2041377","47.2569275"],["-121.2020607","47.2567584"],["-121.2005968","47.256598"],["-121.1998478","47.2564623"],["-121.1989672","47.256258"],["-121.1981704","47.256024"],["-121.197453","47.2557652"],["-121.1968735","47.2555205"],["-121.1961975","47.2551835"],["-121.1956398","47.2548829"],["-121.1949955","47.2544689"],["-121.1944757","47.2540502"],["-121.1938207","47.253504"],["-121.1929081","47.252727"],["-121.1915753","47.2515535"],["-121.1903467","47.2504395"],["-121.1803006","47.2418671"],["-121.1769946","47.2390614"],["-121.1758411","47.2380456"],["-121.1728448","47.2354818"],["-121.1699392","47.2330369"],["-121.1684372","47.2317609"],["-121.1656909","47.2294161"],["-121.1651834","47.2290432"],["-121.1641562","47.2284592"],["-121.1627822","47.2277206"],["-121.1493335","47.2205873"],["-121.1484501","47.2202658"],["-121.1475792","47.2200009"],["-121.1465182","47.2197313"],["-121.1361287","47.2180211"],["-121.1353336","47.2179187"],["-121.1347165","47.2178688"],["-121.1330553","47.2177954"],["-121.1322128","47.2177387"],["-121.1314932","47.217661"],["-121.1286723","47.2172126"],["-121.1279387","47.2170238"],["-121.1262586","47.2164838"],["-121.1252659","47.2162717"],["-121.1079449","47.2133762"],["-121.106747","47.2131156"],["-121.1043724","47.2123233"],["-121.0578477","47.1962013"],["-121.0572277","47.1960117"],["-121.0567176","47.1958804"],["-121.0560241","47.1957218"],["-121.0543893","47.1953693"],["-121.0538404","47.1952273"],["-121.0532937","47.1950692"],["-121.0519309","47.1946094"],["-121.0509202","47.1942391"],["-121.050285","47.1939655"],["-121.0497327","47.1936636"],["-121.0491584","47.1932901"],["-121.0487936","47.1930216"],["-121.0484885","47.1927625"],["-121.0477182","47.1919411"],["-121.0467595","47.1906952"],["-121.0430077","47.185368"],["-121.0422396","47.184334"],["-121.0416446","47.1836335"],["-121.041352","47.183389"],["-121.0409862","47.1831424"],["-121.0405454","47.1828892"],["-121.0400808","47.1826536"],["-121.0396297","47.1824768"],["-121.0391298","47.182329"],["-121.0385933","47.1822029"],["-121.0380337","47.1821111"],["-121.0372809","47.1820376"],["-121.0361778","47.1820575"],["-121.0117873","47.1837342"],["-121.0080015","47.1839925"],["-120.9995309","47.1845736"],["-120.9966516","47.1848008"],["-120.9953091","47.1849792"],["-120.9938132","47.185229"],["-120.9923953","47.185536"],["-120.9906323","47.1860115"],["-120.9645474","47.1940208"],["-120.9634516","47.1943514"],["-120.9628931","47.1944863"],["-120.9623627","47.1945967"],["-120.9619074","47.1946557"],["-120.961429","47.1946961"],["-120.9609358","47.1947219"],["-120.9604083","47.1947272"],["-120.9598825","47.1947088"],["-120.9593992","47.1946643"],["-120.95899","47.1946115"],["-120.9585814","47.194542"],["-120.9580347","47.1944224"],["-120.9575939","47.1943096"],["-120.9570737","47.1941449"],["-120.9556766","47.1936744"],["-120.9549718","47.1934509"],["-120.9544825","47.1933278"],["-120.9540484","47.1932392"],["-120.9535942","47.1931694"],["-120.9408877","47.1917899"],["-120.9382362","47.1914459"],["-120.9371345","47.191243"],["-120.9159492","47.1867447"],["-120.9085966","47.1851899"],["-120.9076311","47.1849314"],["-120.906734","47.184654"],["-120.9056506","47.1842612"],["-120.9045461","47.1838053"],["-120.9036946","47.1834331"],["-120.8956361","47.1793565"],["-120.8950365","47.1790543"],["-120.8943542","47.1786626"],["-120.8937139","47.1782121"],["-120.8930186","47.1776188"],["-120.8922912","47.1767924"],["-120.8906584","47.1747932"],["-120.889176","47.1730809"],["-120.8885372","47.1724698"],["-120.887809","47.1718967"],["-120.8868677","47.1713164"],["-120.8818905","47.1685444"],["-120.8793526","47.1671402"],["-120.8752733","47.1649255"],["-120.8740906","47.1643908"],["-120.8728579","47.1639405"],["-120.871516","47.1635205"],["-120.869723","47.1629907"],["-120.86627","47.1620022"],["-120.8649415","47.1616568"],["-120.8638592","47.1613596"],["-120.8628662","47.1611053"],["-120.8620116","47.160982"],["-120.861106","47.1609564"],["-120.85837","47.1612182"],["-120.8536846","47.1616745"],["-120.8526177","47.1617411"],["-120.8516366","47.1617545"],["-120.8506142","47.1617274"],["-120.8489155","47.1615908"],["-120.8482047","47.1614995"],["-120.8472999","47.1613353"],["-120.8275537","47.1567132"],["-120.8260329","47.1562386"],["-120.8251346","47.1558818"],["-120.8242451","47.1554337"],["-120.8233752","47.1549027"],["-120.8226011","47.1543186"],["-120.8218928","47.1535941"],["-120.8198377","47.1511908"],["-120.818735","47.1498836"],["-120.817574","47.148501"],["-120.8166712","47.1473974"],["-120.8162408","47.146791"],["-120.8158986","47.1462824"],["-120.8154793","47.1455122"],["-120.8146194","47.1435519"],["-120.8141227","47.1424292"],["-120.8095496","47.1322148"],["-120.809283","47.1317873"],["-120.8089265","47.1313182"],["-120.8084594","47.1308558"],["-120.8079323","47.130431"],["-120.8074873","47.1301388"],["-120.8067313","47.1297236"],["-120.8059553","47.1293136"],["-120.8052628","47.1289446"],["-120.8048225","47.1286795"],["-120.8044213","47.1283911"],["-120.8038151","47.1278114"],["-120.803596","47.1275322"],["-120.8033498","47.1271579"],["-120.8031194","47.1267319"],["-120.8029018","47.1262596"],["-120.8027095","47.1257724"],["-120.7999385","47.1192539"],["-120.799617","47.1186372"],["-120.7992593","47.1181574"],["-120.7987941","47.1176727"],["-120.7984567","47.1173624"],["-120.7980953","47.1170883"],["-120.7976451","47.116799"],["-120.7972162","47.1165612"],["-120.7967915","47.1163546"],["-120.7963353","47.1161646"],["-120.7946495","47.1156191"],["-120.7721292","47.1086451"],["-120.7686799","47.1075295"],["-120.7677846","47.1071292"],["-120.7670246","47.1066953"],["-120.766331","47.1062564"],["-120.765686","47.1057569"],["-120.7650092","47.1050937"],["-120.7644509","47.1043428"],["-120.7639927","47.1036482"],["-120.7611804","47.0975494"],["-120.7608469","47.0970547"],["-120.76048","47.0965882"],["-120.7598765","47.0959968"],["-120.7587695","47.095216"],["-120.755847","47.0933855"],["-120.7549163","47.0928749"],["-120.7542651","47.092577"],["-120.7536222","47.0923873"],["-120.752722","47.0921738"],["-120.750513","47.0919033"],["-120.7494615","47.0917727"],["-120.7485177","47.0916205"],["-120.7477214","47.0913919"],["-120.7468547","47.0910972"],["-120.7459499","47.0906855"],["-120.7449899","47.09009"],["-120.744183","47.0894811"],["-120.743391","47.0887736"],["-120.7429022","47.0881436"],["-120.742488","47.0874972"],["-120.7418303","47.086261"],["-120.7413179","47.0853388"],["-120.7408867","47.0847822"],["-120.7403175","47.0842331"],["-120.7395741","47.0837146"],["-120.7385175","47.0831693"],["-120.7338769","47.0814209"],["-120.7322449","47.0808476"],["-120.7246018","47.0789168"],["-120.7238283","47.0786566"],["-120.7231021","47.0783475"],["-120.7219277","47.0776385"],["-120.7204809","47.0767486"],["-120.7187517","47.0756904"],["-120.7177753","47.0751276"],["-120.7144373","47.0734913"],["-120.6920342","47.0628882"],["-120.6907684","47.0624057"],["-120.6812872","47.0591832"],["-120.6618289","47.0526159"],["-120.6548902","47.0502725"],["-120.6316965","47.0409193"],["-120.6301655","47.0402331"],["-120.6293655","47.0397167"],["-120.6286827","47.0392184"],["-120.6279251","47.0385234"],["-120.627259","47.0377643"],["-120.6267996","47.0370862"],["-120.6264345","47.0364664"],["-120.6260567","47.0357057"],["-120.6254739","47.0346613"],["-120.6250472","47.0340232"],["-120.624543","47.0333473"],["-120.6238898","47.0325806"],["-120.6230729","47.0317255"],["-120.6187637","47.0279389"],["-120.6028612","47.0140388"],["-120.5884234","47.0037816"],["-120.5870257","47.0026501"],["-120.5736494","46.9916698"],["-120.5692646","46.9880657"],["-120.5562889","46.9774414"],["-120.555319","46.9768367"],["-120.5538312","46.9762151"],["-120.5531669","46.9759901"],["-120.5521131","46.9756938"],["-120.5509951","46.9754524"],["-120.5249771","46.9707231"],["-120.5237104","46.970513"],["-120.5222762","46.9703292"],["-120.521091","46.9702289"],["-120.5200836","46.9701703"],["-120.5191956","46.9701482"],["-120.4813188","46.9707015"],["-120.4773675","46.9705817"],["-120.476332","46.9705243"],["-120.4739274","46.9704102"],["-120.4725505","46.970359"],["-120.4709013","46.9702755"],["-120.4661483","46.9702533"],["-120.4534094","46.9703333"],["-120.4462576","46.970758"],["-120.4406578","46.9711174"],["-120.4366121","46.9713788"],["-120.4334686","46.9715219"],["-120.4315725","46.9715432"],["-120.4157078","46.9713194"],["-120.4025182","46.9714556"],["-120.4002273","46.9715393"],["-120.3792725","46.9726866"],["-120.372575","46.9727421"],["-120.3567729","46.9718997"],["-120.3538029","46.9716029"],["-120.3518951","46.9712447"],["-120.3502143","46.9708303"],["-120.3486063","46.9703387"],["-120.3461501","46.9693744"],["-120.3360839","46.965243"],["-120.3339427","46.9642982"],["-120.3328426","46.9637371"],["-120.3300309","46.9620812"],["-120.3286611","46.9613207"],["-120.3273802","46.9607681"],["-120.3244315","46.9599141"],["-120.3201096","46.9587135"],["-120.318132","46.9583089"],["-120.3165552","46.9581464"],["-120.3148169","46.9580154"],["-120.3140653","46.9579192"],["-120.3121222","46.9574691"],["-120.3093772","46.9564819"],["-120.3081162","46.9561008"],["-120.3069374","46.95596"],["-120.3062481","46.9559444"],["-120.3055669","46.9559547"],["-120.3044825","46.9560683"],["-120.3022378","46.9563668"],["-120.3015721","46.9564155"],["-120.3010795","46.95643"],["-120.3006379","46.9564168"],["-120.3001625","46.9563877"],["-120.2996692","46.9563225"],["-120.2989895","46.9561891"],["-120.2984194","46.9560341"],["-120.297456","46.9556327"],["-120.2944091","46.9542414"],["-120.2927145","46.9534879"],["-120.2918583","46.9531976"],["-120.2907774","46.9528935"],["-120.2893861","46.9525697"],["-120.287789","46.9523269"],["-120.2840661","46.9520025"],["-120.2808138","46.9516928"],["-120.2768416","46.9509751"],["-120.2693487","46.9506196"],["-120.263391","46.9503329"],["-120.2569578","46.9500172"],["-120.2559835","46.949831"],["-120.2551429","46.9495986"],["-120.2493775","46.9473944"],["-120.2441932","46.9455846"],["-120.2401384","46.9442652"],["-120.2356831","46.9438027"],["-120.2220918","46.9429064"],["-120.2093547","46.9420983"],["-120.2077048","46.9421167"],["-120.2061201","46.9422229"],["-120.2049035","46.9423792"],["-120.2037231","46.9425847"],["-120.2026948","46.9428162"],["-120.2019663","46.9429985"],["-120.2012623","46.9431988"],["-120.1985102","46.9441159"],["-120.1970546","46.9444855"],["-120.1961611","46.9446723"],["-120.1952444","46.9448153"],["-120.194305","46.9449115"],["-120.1934436","46.9449683"],["-120.1924178","46.9449605"],["-120.1915729","46.9449127"],["-120.1907672","46.944821"],["-120.1899109","46.9447044"],["-120.1891135","46.9445549"],["-120.1878335","46.9442606"],["-120.1835139","46.9431685"],["-120.182799","46.9430195"],["-120.1820814","46.9428831"],["-120.1815215","46.9428335"],["-120.1808787","46.9427994"],["-120.1797002","46.9427973"],["-120.1787822","46.9428996"],["-120.1781408","46.9429903"],["-120.1769854","46.9431739"],["-120.1750409","46.9434629"],["-120.1737995","46.9435166"],["-120.1704486","46.943485"],["-120.1688698","46.9435604"],["-120.1643902","46.9442083"],["-120.1621456","46.9442044"],["-120.1507157","46.9437303"],["-120.1492541","46.9435457"],["-120.147018","46.9429727"],["-120.1404025","46.9410669"],["-120.1397114","46.9409021"],["-120.1381451","46.9405926"],["-120.1362435","46.940225"],["-120.1350835","46.9399744"],["-120.1341698","46.9397217"],["-120.1330328","46.939375"],["-120.1320283","46.9390469"],["-120.1310665","46.9387444"],["-120.1301699","46.9385269"],["-120.1293543","46.9384369"],["-120.1283988","46.93838"],["-120.127421","46.938409"],["-120.1263762","46.9385995"],["-120.118281","46.9408015"],["-120.1116495","46.9429768"],["-120.1099642","46.9434809"],["-120.1082879","46.943902"],["-120.1056157","46.9443794"],["-120.1044207","46.9445524"],["-120.103554","46.9446004"],["-120.093879","46.9448888"],["-120.0924221","46.9449"],["-120.0914747","46.9448399"],["-120.0906245","46.9447565"],["-120.0896653","46.944583"],["-120.0882294","46.9442261"],["-120.0869661","46.9437562"],["-120.0812399","46.9412068"],["-120.0804172","46.9408848"],["-120.0798512","46.940715"],["-120.079306","46.9405776"],["-120.0784419","46.9404317"],["-120.0777948","46.9403674"],["-120.0769557","46.9403275"],["-120.0716993","46.9402391"],["-120.0680307","46.9401923"],["-120.0649865","46.9401454"],["-120.0632339","46.940012"],["-120.0563855","46.9391269"],["-120.0541388","46.9387804"],["-120.0523452","46.9384194"],["-120.0457474","46.9366562"],["-120.0447752","46.9364098"],["-120.0440263","46.9363203"],["-120.0433928","46.9363076"],["-120.0425972","46.9363462"],["-120.0399587","46.9366165"],["-120.0375224","46.9368029"],["-120.0340508","46.937005"],["-120.0333202","46.9370769"],["-120.0324091","46.9372582"],["-120.0299862","46.9379569"],["-120.0290759","46.9381903"],["-120.0278365","46.9383921"],["-120.0265445","46.938531"],["-120.0253626","46.9385547"],["-120.02422","46.9384863"],["-120.022438","46.9382353"],["-120.0202299","46.9379271"],["-120.0188818","46.9377605"],["-120.017648","46.9376394"],["-120.0164427","46.9376176"],["-120.0151237","46.9376227"],["-120.0137468","46.937739"],["-120.0124895","46.9379177"],["-120.0112822","46.9382291"],["-120.0098812","46.9386672"],["-120.0083567","46.9392606"],["-120.0063953","46.9401335"],["-120.0057887","46.9403825"],["-120.0053636","46.9405339"],["-120.0049639","46.9406429"],["-120.0044646","46.9407626"],["-120.004035","46.9408253"],["-120.0036193","46.9408662"],["-120.0029835","46.9408546"],["-120.0001702","46.9407028"],["-119.9888025","46.9400024"],["-119.9867441","46.9399185"],["-119.9851246","46.9399454"],["-119.9834672","46.9400254"],["-119.9825703","46.9401061"],["-119.9816154","46.9402278"],["-119.9805633","46.9404088"],["-119.9790544","46.9407092"],["-119.9763718","46.9413185"],["-119.9665326","46.9435962"],["-119.9661167","46.9436924"],["-119.9635762","46.9443075"],["-119.9630237","46.9444805"],["-119.9626797","46.944587"],["-119.9624535","46.9446716"],["-119.9622453","46.9447591"],["-119.9620596","46.9448398"],["-119.9618538","46.9449714"],["-119.9616233","46.9451351"],["-119.9614557","46.9452717"],["-119.9613254","46.9454076"],["-119.9612084","46.945537"],["-119.9611075","46.9456584"],["-119.9609565","46.9458857"],["-119.9608372","46.9461053"],["-119.9607451","46.9463692"],["-119.960697","46.9465667"],["-119.9606669","46.9467785"],["-119.9606725","46.947061"],["-119.9607078","46.947329"],["-119.9607703","46.9475857"],["-119.9608466","46.9478549"],["-119.9609641","46.9481391"],["-119.9615221","46.9495447"],["-119.961863","46.9504357"],["-119.9620652","46.9510244"],["-119.9621884","46.951495"],["-119.962242","46.9520666"],["-119.9622794","46.9529464"],["-119.962328","46.9548672"],["-119.9623528","46.9557829"],["-119.9624039","46.9563221"],["-119.9624607","46.9567479"],["-119.9625286","46.9571018"],["-119.962621","46.957469"],["-119.9627581","46.9579463"],["-119.962945","46.9584738"],["-119.9632941","46.9592003"],["-119.9636813","46.9598865"],["-119.9640438","46.960421"],["-119.9643788","46.9608666"],["-119.9649672","46.961543"],["-119.9657092","46.96239"],["-119.9660795","46.9628446"],["-119.9662917","46.9631439"],["-119.9665223","46.9635101"],["-119.9667451","46.9639316"],["-119.9669536","46.964368"],["-119.9671216","46.9647979"],["-119.9672363","46.965232"],["-119.9673376","46.9658617"],["-119.9673717","46.9666366"],["-119.9670886","46.9804515"],["-119.967103","46.9822996"],["-119.9671456","46.9828632"],["-119.9672926","46.9838058"],["-119.9674485","46.9845109"],["-119.9679487","46.9860851"],["-119.9692653","46.9899916"],["-119.9700621","46.9921505"],["-119.9704326","46.9928895"],["-119.9709271","46.9936882"],["-119.9714004","46.994383"],["-119.9729827","46.9965852"],["-119.9734116","46.9972353"],["-119.9736127","46.9976119"],["-119.9737359","46.9979497"],["-119.9738915","46.9984431"],["-119.973969","46.9989305"],["-119.9740166","46.9993883"],["-119.973998","46.9998494"],["-119.9739454","47.0002986"],["-119.9738463","47.0006867"],["-119.9737366","47.0010823"],["-119.9735965","47.0014095"],["-119.9734424","47.0017327"],["-119.9732343","47.0020664"],["-119.9728663","47.0025515"],["-119.972322","47.0031343"],["-119.9716716","47.003675"],["-119.9710151","47.0041344"],["-119.9704347","47.0044856"],["-119.9698388","47.0047746"],["-119.9689961","47.0050937"],["-119.9681933","47.0053415"],["-119.967607","47.0054769"],["-119.9660007","47.0057585"],["-119.9604417","47.0067127"],["-119.9591122","47.0069783"],["-119.9583444","47.0071841"],["-119.9575513","47.0074275"],["-119.956831","47.0077088"],["-119.9560391","47.0080566"],["-119.9551392","47.0085319"],["-119.9541861","47.0091813"],["-119.9533992","47.0098735"],["-119.952137","47.0112221"],["-119.9471261","47.0172473"],["-119.9436702","47.0212343"],["-119.9430336","47.0219815"],["-119.9393428","47.0263096"],["-119.9384205","47.0271925"],["-119.9369398","47.0284234"],["-119.9212746","47.0396241"],["-119.9118412","47.0463319"],["-119.909638","47.0479182"],["-119.874965","47.0725541"],["-119.8743393","47.073008"],["-119.8738671","47.073383"],["-119.8734119","47.0737926"],["-119.87208","47.075107"],["-119.8664774","47.0806299"],["-119.8657605","47.0813562"],["-119.8651286","47.0819934"],["-119.8638035","47.0831776"],["-119.8631812","47.0836661"],["-119.8625076","47.0841565"],["-119.8611042","47.0850709"],["-119.8600421","47.085673"],["-119.8593791","47.0860276"],["-119.8587544","47.086326"],["-119.8582367","47.0865626"],["-119.8572602","47.0869937"],["-119.8563658","47.0873715"],["-119.8519008","47.0893108"],["-119.8507349","47.0899053"],["-119.8500312","47.090317"],["-119.8488239","47.0911536"],["-119.8402233","47.0972575"],["-119.8360873","47.1002071"],["-119.8352963","47.1007424"],["-119.8350223","47.1008925"],["-119.8344779","47.1011508"],["-119.8340227","47.1013512"],["-119.8334343","47.1015511"],["-119.8331295","47.1016428"],["-119.8326577","47.1017692"],["-119.8284588","47.1027867"],["-119.8274493","47.1030081"],["-119.8271849","47.1030513"],["-119.8263658","47.1031627"],["-119.8260339","47.103192"],["-119.8257391","47.1032131"],["-119.8250859","47.1032333"],["-119.331373","47.1038874"],["-119.3301478","47.1038311"],["-119.3289789","47.1037449"],["-119.3278881","47.1036414"],["-119.3269452","47.1034838"],["-119.3257591","47.1032633"],["-119.3235086","47.1027882"],["-119.3168682","47.1012054"],["-119.3148599","47.1008801"],["-119.3133842","47.1006904"],["-119.3119768","47.1005963"],["-119.3103539","47.1005494"],["-119.3083615","47.1005879"],["-119.301805","47.101083"],["-119.2972669","47.1014501"],["-119.2930612","47.1017539"],["-119.2783562","47.1026813"],["-119.2763965","47.1026866"],["-119.2753561","47.1026514"],["-119.2743843","47.1025874"],["-119.2435427","47.0987879"],["-119.2401815","47.0984893"],["-119.2346453","47.0979881"],["-119.169947","47.0921757"],["-119.1112263","47.0869179"],["-119.1093924","47.0868065"],["-119.0043954","47.0850024"],["-119.0016636","47.0850023"],["-118.9827158","47.0842585"],["-118.9804763","47.0842158"],["-118.9685745","47.0844041"],["-118.9667359","47.0843907"],["-118.958214","47.0841151"],["-118.956801","47.0841026"],["-118.955184","47.084132"],["-118.9526586","47.0843177"],["-118.9269823","47.0871278"],["-118.9258076","47.0872042"],["-118.9247175","47.0872467"],["-118.8823601","47.0869361"],["-118.8813168","47.0869262"],["-118.8690495","47.0868112"],["-118.8650261","47.0867807"],["-118.8632419","47.0867687"],["-118.8587589","47.0866285"],["-118.8459021","47.0859104"],["-118.8437025","47.0858161"],["-118.7221983","47.0861217"],["-118.7203369","47.0861776"],["-118.7182962","47.0863612"],["-118.7164713","47.0865824"],["-118.7146694","47.0868801"],["-118.7125463","47.0873389"],["-118.7106085","47.0878211"],["-118.7061211","47.0893337"],["-118.6948502","47.0932046"],["-118.6888876","47.0952306"],["-118.6868536","47.0957709"],["-118.6852482","47.0961378"],["-118.6834797","47.0964518"],["-118.6797669","47.0968871"],["-118.6775831","47.0969698"],["-118.6748029","47.0969853"],["-118.6327996","47.0962876"],["-118.628769","47.0963414"],["-118.6270407","47.0964676"],["-118.6252366","47.0966764"],["-118.623199","47.0969871"],["-118.6046064","47.100633"],["-118.6024727","47.1010823"],["-118.6007685","47.101498"],["-118.5992946","47.1019176"],["-118.5976583","47.1024173"],["-118.5941179","47.1037145"],["-118.5830204","47.1078241"],["-118.5794729","47.1090983"],["-118.5773148","47.1097081"],["-118.5765694","47.1098958"],["-118.5743873","47.1103533"],["-118.5719439","47.110723"],["-118.5709437","47.1108394"],["-118.5700933","47.110921"],["-118.5681708","47.1110364"],["-118.5648953","47.1110686"],["-118.563694","47.1110185"],["-118.5549468","47.1103858"],["-118.5499048","47.1103353"],["-118.4807578","47.1109361"],["-118.4494432","47.1111372"],["-118.4429079","47.1109758"],["-118.3935401","47.1111724"],["-118.3915296","47.1112163"],["-118.384947","47.1112982"],["-118.3841697","47.1113132"],["-118.3822002","47.1114639"],["-118.3797082","47.111778"],["-118.3781874","47.112017"],["-118.3765032","47.1123671"],["-118.3750357","47.1127109"],["-118.373792","47.113045"],["-118.3725967","47.1134355"],["-118.3711972","47.1139426"],["-118.369071","47.1147794"],["-118.3661105","47.1162898"],["-118.3643136","47.1173854"],["-118.3621061","47.1188973"],["-118.3596378","47.1205948"],["-118.3573424","47.1222115"],["-118.3032957","47.1599019"],["-118.3019889","47.1608192"],["-118.2911881","47.1683358"],["-118.2876633","47.1707854"],["-118.2371172","47.2058894"],["-118.2362617","47.2064374"],["-118.235328","47.2070066"],["-118.2337812","47.2078859"],["-118.2328779","47.2083768"],["-118.2316041","47.2090213"],["-118.2289307","47.2101697"],["-118.2271155","47.210876"],["-118.114406","47.2446171"],["-118.1123439","47.2454122"],["-118.1107233","47.2461204"],["-118.1092063","47.2468865"],["-118.1039899","47.2499646"],["-118.1021487","47.250876"],["-118.1012514","47.2512955"],["-118.0991831","47.2521211"],["-118.097696","47.2526237"],["-118.0877995","47.2557465"],["-118.0845415","47.2568692"],["-118.0812699","47.2582125"],["-118.0789934","47.2593213"],["-118.077807","47.2599734"],["-118.0762161","47.2608788"],["-118.0756634","47.2612245"],["-118.0746906","47.2618658"],["-118.0736868","47.2625553"],["-118.0702654","47.2650407"],["-118.0688051","47.2659791"],["-118.0681309","47.2663485"],["-118.0673252","47.266761"],["-118.0655794","47.2676145"],["-118.0647403","47.268042"],["-118.0633404","47.2688456"],["-118.0625687","47.2693539"],["-118.061858","47.2698739"],["-118.0611638","47.2704168"],["-118.0598768","47.2715655"],["-118.0579768","47.2734486"],["-118.0566052","47.2746633"],["-118.0556587","47.2753739"],["-118.0438127","47.2833048"],["-118.0416458","47.2847472"],["-118.0404775","47.2855222"],["-118.0394971","47.2861841"],["-118.0385136","47.2868486"],["-118.0377629","47.287401"],["-118.036983","47.2880048"],["-118.0358303","47.2890505"],["-118.034294","47.2905759"],["-118.0319473","47.2930548"],["-118.0309761","47.2940182"],["-118.0296937","47.2951113"],["-118.0287235","47.2958104"],["-118.0278318","47.2964003"],["-118.0270118","47.2969005"],["-118.026311","47.2973029"],["-118.0250002","47.2979628"],["-118.0245424","47.2981729"],["-118.023953","47.2984308"],["-118.0224524","47.2990284"],["-118.0198085","47.2998804"],["-118.0176785","47.3003912"],["-118.0168502","47.3005526"],["-118.0161757","47.3006679"],["-118.0154131","47.300788"],["-118.0145988","47.3008918"],["-118.0127473","47.3010594"],["-118.0117331","47.301124"],["-118.0108491","47.3011565"],["-118.0087522","47.3011421"],["-118.0044153","47.3011116"],["-118.0033565","47.3011294"],["-118.0014529","47.3012269"],["-117.9998149","47.3013749"],["-117.9971898","47.3017475"],["-117.9958912","47.3019912"],["-117.987118","47.3038552"],["-117.9860212","47.3040853"],["-117.9807687","47.3052046"],["-117.9791105","47.3056398"],["-117.9781174","47.3059526"],["-117.9773476","47.3062021"],["-117.976556","47.3064675"],["-117.9760886","47.3066357"],["-117.9754039","47.306902"],["-117.9741075","47.3074423"],["-117.9734","47.3077515"],["-117.9726314","47.3080998"],["-117.9718967","47.3084417"],["-117.9185869","47.333167"],["-117.9163367","47.3343602"],["-117.9142901","47.335565"],["-117.9125551","47.3367488"],["-117.910976","47.3379045"],["-117.9094954","47.3391392"],["-117.9084696","47.3400546"],["-117.9074509","47.3410485"],["-117.8816828","47.3679754"],["-117.8806412","47.3689448"],["-117.8792531","47.3701651"],["-117.8652734","47.3807181"],["-117.8635701","47.3819519"],["-117.8619927","47.382968"],["-117.8425008","47.3943222"],["-117.8400747","47.3958213"],["-117.8385286","47.3969312"],["-117.8360741","47.3987973"],["-117.7882568","47.4375864"],["-117.7868413","47.4386504"],["-117.6771865","47.5134188"],["-117.6759885","47.5142527"],["-117.6743704","47.515466"],["-117.6601619","47.5267384"],["-117.6592737","47.52738"],["-117.6582596","47.5280343"],["-117.6569681","47.5287901"],["-117.6541104","47.530225"],["-117.6523409","47.5310541"],["-117.6503136","47.5319985"],["-117.6487023","47.5328869"],["-117.6475754","47.5335727"],["-117.6145618","47.5558931"],["-117.6120496","47.5573568"],["-117.6103146","47.5582479"],["-117.6079564","47.5593294"],["-117.6001339","47.5623877"],["-117.5985719","47.5630031"],["-117.5975235","47.5634419"],["-117.5969668","47.5637113"],["-117.5962486","47.5640583"],["-117.5955019","47.5644327"],["-117.5946528","47.5648837"],["-117.5931888","47.5657574"],["-117.5925794","47.5661691"],["-117.5911872","47.567173"],["-117.590362","47.5678392"],["-117.5895676","47.5685259"],["-117.5667562","47.5903533"],["-117.5659599","47.5910569"],["-117.5646679","47.5920669"],["-117.5640269","47.5925143"],["-117.5630357","47.5931704"],["-117.5619741","47.5938147"],["-117.5611195","47.5942929"],["-117.5603019","47.5947158"],["-117.557569","47.5959262"],["-117.513387","47.6139968"],["-117.5122404","47.6144966"],["-117.5113292","47.6149269"],["-117.5103993","47.6154005"],["-117.5092855","47.6160277"],["-117.4835341","47.6313376"],["-117.4828498","47.6317456"],["-117.4785811","47.634272"],["-117.4767605","47.635281"],["-117.4757908","47.6357918"],["-117.4740711","47.6365679"],["-117.4710212","47.6378968"],["-117.4496319","47.6472482"],["-117.4471529","47.6483649"],["-117.4452181","47.6491395"],["-117.4442718","47.649481"],["-117.4433544","47.6497745"],["-117.4421952","47.6500523"],["-117.4401317","47.6504828"],["-117.436555","47.6510782"],["-117.4340481","47.6515394"],["-117.432251","47.6518088"],["-117.4294178","47.652364"],["-117.4293459","47.6523773"],["-117.4292788","47.6523878"],["-117.429146","47.6523925"],["-117.4254224","47.6524326"],["-117.4252474","47.6524664"],["-117.4251908","47.6524954"],["-117.4251573","47.6525182"],["-117.4251295","47.6525459"],["-117.4250897","47.6526096"],["-117.4250499","47.652683"],["-117.4250044","47.6527799"],["-117.4250182","47.6533221"],["-117.4249854","47.6534571"],["-117.4249829","47.6536227"],["-117.4249889","47.6541125"],["-117.4250041","47.6556846"],["-117.4250124","47.6558909"],["-117.4250118","47.6560656"],["-117.4250191","47.6565567"],["-117.4250299","47.6579194"],["-117.4257089","47.6579211"],["-117.4258491","47.6579219"],["-117.4259399","47.6579266"],["-117.42601","47.6579408"],["-117.4262006","47.6580443"],["-117.4262907","47.6581002"],["-117.4263737","47.6581591"],["-117.4265004","47.6582802"],["-117.4265672","47.6583406"],["-117.4265278","47.6560501"],["-117.4265203","47.6555854"],["-117.4265066","47.6544766"],["-117.4265135","47.6531728"],["-117.4265475","47.6529214"],["-117.4265908","47.652424"],["-117.4266158","47.6523262"],["-117.426658","47.6521955"],["-117.4267306","47.6521037"],["-117.4268396","47.6520412"],["-117.4269553","47.6520089"],["-117.4274371","47.6519932"],["-117.4279833","47.6519809"],["-117.4282183","47.6519846"],["-117.4283849","47.6519992"],["-117.4284869","47.6520383"],["-117.4285468","47.6520856"],["-117.4285784","47.6521432"],["-117.4286005","47.6522102"],["-117.4285924","47.6522841"],["-117.4285495","47.6523689"],["-117.4284336","47.6524377"],["-117.4281596","47.6524749"],["-117.425999","47.65258"],["-117.4233299","47.652613"],["-117.4139293","47.6526486"],["-117.4011642","47.6520367"],["-117.395848","47.6521056"],["-117.395208","47.6521233"],["-117.3948886","47.6521481"],["-117.3946129","47.6521803"],["-117.3942945","47.6522241"],["-117.393577","47.6523522"],["-117.3932273","47.6524292"],["-117.3922976","47.6526883"],["-117.391723","47.6528701"],["-117.3907763","47.6532039"],["-117.3899534","47.6534769"],["-117.3896406","47.6535634"],["-117.3893356","47.6536391"],["-117.3888041","47.6537378"],["-117.3884527","47.6537842"],["-117.3881459","47.6538105"],["-117.3878492","47.6538255"],["-117.3868183","47.6538348"],["-117.386006","47.6538364"],["-117.3377267","47.6537499"],["-117.3338244","47.653703"],["-117.3292945","47.6536707"],["-117.3283244","47.6537311"],["-117.327551","47.653832"],["-117.3268778","47.6539367"],["-117.3263699","47.6540648"],["-117.3257978","47.6542514"],["-117.3250718","47.6545277"],["-117.3245945","47.654727"],["-117.3242125","47.6549054"],["-117.3238934","47.6550896"],["-117.3235573","47.6553237"],["-117.3232854","47.6555166"],["-117.3230841","47.6556627"],["-117.3226859","47.6559673"],["-117.3223767","47.6562581"],["-117.3221562","47.6564845"],["-117.3193288","47.659563"],["-117.3185072","47.6602966"],["-117.3178855","47.6607964"],["-117.3172928","47.6612758"],["-117.3165871","47.6617352"],["-117.3152859","47.6625282"],["-117.3145594","47.6629218"],["-117.3138212","47.6632836"],["-117.3113981","47.6643363"],["-117.3066287","47.6662901"],["-117.2998028","47.6692028"],["-117.2977335","47.6700856"],["-117.2964388","47.6706526"],["-117.2938922","47.671688"],["-117.2933298","47.6718709"],["-117.2926627","47.6720731"],["-117.2920634","47.6722229"],["-117.2914498","47.6723389"],["-117.2907443","47.6724523"],["-117.2896747","47.6726117"],["-117.2748297","47.6746405"],["-117.2734601","47.6747891"],["-117.2702981","47.6750336"],["-117.2689321","47.6751036"],["-117.2674601","47.6751416"],["-117.2651403","47.6751419"],["-117.2627262","47.675036"],["-117.2606077","47.6748881"],["-117.2597848","47.6748118"],["-117.2541726","47.674177"],["-117.251014","47.673923"],["-117.2457618","47.6738706"],["-117.223948","47.6741869"],["-117.2234237","47.674163"],["-117.2215884","47.6739994"],["-117.2200241","47.673798"],["-117.1810261","47.6659913"],["-117.1799041","47.6658215"],["-117.1788771","47.6656988"],["-117.1777541","47.6656016"],["-117.1767962","47.665544"],["-117.1759954","47.6655217"],["-117.1324534","47.6655067"],["-117.131648","47.6655295"],["-117.1308572","47.6655901"],["-117.130063","47.66567"],["-117.1290131","47.6658578"],["-117.1164535","47.6686001"],["-117.1155863","47.6688157"],["-117.1148512","47.6690249"],["-117.1140749","47.6692805"],["-117.1132753","47.6695914"],["-117.1124707","47.6699509"],["-117.1117675","47.6702978"],["-117.1111623","47.67063"],["-117.1106308","47.6709471"],["-117.1100601","47.6713339"],["-117.1091094","47.6720776"],["-117.1086027","47.6725527"],["-117.1079248","47.6732523"],["-117.1053971","47.6759883"],["-117.1048183","47.6765426"],["-117.1039859","47.6772067"],["-117.1032065","47.6776839"],["-117.1024843","47.6780697"],["-117.1017018","47.6784161"],["-117.1009234","47.6787083"],["-117.1001224","47.6789537"],["-117.0992513","47.679166"],["-117.0972825","47.679483"],["-117.0932138","47.6800578"],["-117.090396","47.6804724"],["-117.0891191","47.6807263"],["-117.0878245","47.6810468"],["-117.0866197","47.6813825"],["-117.0807744","47.6836039"],["-117.0546919","47.693764"],["-117.052478","47.694597"],["-117.0517237","47.6948368"],["-117.0508707","47.6950879"],["-117.0502136","47.6952623"],["-117.0493309","47.6954679"],["-117.0485237","47.6956398"],["-117.0474939","47.6958332"],["-117.0468977","47.6959256"],["-117.041707","47.696622"],["-117.0416041","47.6966356"],["-117.0408828","47.6967317"],["-117.027277","47.6988443"],["-117.0252662","47.6993544"],["-117.0242855","47.6996235"],["-117.0229343","47.7000394"],["-117.02036","47.700896"],["-117.0194793","47.7012187"],["-117.0178822","47.7018842"],["-117.0170518","47.7022466"],["-117.0158639","47.7027718"],["-117.0150942","47.7031318"],["-117.0141041","47.7036191"],["-117.0061688","47.7075168"],["-117.0053175","47.7079266"],["-117.0049006","47.7081131"],["-117.0044969","47.7082718"],["-117.0041496","47.7084013"],["-117.0036907","47.7085653"],["-117.0033427","47.7086774"],["-117.0024522","47.7089375"],["-117.0009062","47.7093149"],["-116.9997396","47.7094964"],["-116.9989679","47.7095804"],["-116.9906142","47.7100968"],["-116.9868869","47.710431"],["-116.972425","47.7120617"],["-116.968726","47.7126242"],["-116.9638572","47.7136361"],["-116.962361","47.7138755"],["-116.960831","47.7139877"],["-116.9600359","47.7139814"],["-116.9591444","47.7139523"],["-116.9584424","47.7138751"],["-116.9576545","47.7137549"],["-116.956831","47.7136001"],["-116.9541407","47.7130076"],["-116.9530017","47.7127736"],["-116.952434","47.7126932"],["-116.9518462","47.7126339"],["-116.9512848","47.7125937"],["-116.9507584","47.7125711"],["-116.9086208","47.7124626"],["-116.9065312","47.7124143"],["-116.9053828","47.7123425"],["-116.9029184","47.7120796"],["-116.9019925","47.7119483"],["-116.8999399","47.7115695"],["-116.8986154","47.7112699"],["-116.8941747","47.7100677"],["-116.8929436","47.7097516"],["-116.8924108","47.7096332"],["-116.8919279","47.7095312"],["-116.8913204","47.7094128"],["-116.8908475","47.7093293"],["-116.889489","47.7091327"],["-116.8869896","47.7089426"],["-116.8611031","47.7084313"],["-116.857451","47.7082868"],["-116.8536222","47.7077771"],["-116.8137551","47.7006967"],["-116.8129934","47.7005375"],["-116.8114919","47.7002351"],["-116.8109336","47.700117"],["-116.8107453","47.7000704"],["-116.8105652","47.7000213"],["-116.8102099","47.6998963"],["-116.8098303","47.6997198"],["-116.809164","47.6993869"],["-116.8088817","47.699277"],["-116.8085822","47.6991907"],["-116.8082411","47.6991245"],["-116.8078803","47.6990827"],["-116.8075678","47.6990539"],["-116.8074139","47.6990337"],["-116.8072807","47.6988035"],["-116.8071168","47.6985543"],["-116.8069294","47.6982997"],["-116.8066823","47.6979847"],["-116.8063364","47.6975776"],["-116.8060537","47.6972289"],["-116.8058494","47.6969514"],["-116.8052144","47.6961023"],["-116.8049781","47.6957906"],["-116.8047128","47.695441"],["-116.8040925","47.6946628"],["-116.8038339","47.6943354"],["-116.8035041","47.6939277"],["-116.803291","47.6936819"],["-116.8031284","47.6935037"],["-116.8028345","47.6931951"],["-116.7990773","47.6894205"],["-116.798539","47.6889103"],["-116.7980581","47.688428"],["-116.7975658","47.6879377"],["-116.7972987","47.6876317"],["-116.7969539","47.6872425"],["-116.7968638","47.6871554"],["-116.7965442","47.6868258"],["-116.7962422","47.6864678"],["-116.795502","47.6855289"],["-116.795397","47.685379"],["-116.7953152","47.6852575"],["-116.7952683","47.6851608"],["-116.7952257","47.6850275"],["-116.7950713","47.6844825"],["-116.7950147","47.6842595"],["-116.7949627","47.6841077"],["-116.794902","47.6839536"],["-116.7948109","47.6837866"],["-116.7947408","47.6836745"],["-116.7946477","47.6835424"],["-116.7941023","47.6828629"],["-116.793566","47.6822228"],["-116.7924811","47.6809033"],["-116.7917848","47.6800975"],["-116.7916185","47.6799241"],["-116.7882655","47.6764992"],["-116.7879577","47.6761308"],["-116.7876583","47.6757276"],["-116.7869941","47.6747039"],["-116.7869161","47.6745841"],["-116.7868052","47.6744215"],["-116.786664","47.6742386"],["-116.7865723","47.6741089"],["-116.7864743","47.67401"],["-116.7863138","47.6738741"],["-116.7862237","47.6738136"],["-116.7861426","47.6737644"],["-116.7860535","47.6737161"],["-116.7859499","47.6736654"],["-116.7858293","47.67362"],["-116.7856988","47.6735824"],["-116.785589","47.6736042"],["-116.7852216","47.6735698"],["-116.784933","47.6735557"],["-116.7831719","47.6735084"],["-116.7812355","47.6734751"],["-116.7706525","47.6733431"],["-116.7587815","47.673325"],["-116.752153","47.6733103"],["-116.7520482","47.6732292"],["-116.751963","47.67296"],["-116.7518644","47.6726561"],["-116.7517062","47.6722607"],["-116.751577","47.6719597"],["-116.7514557","47.6716098"],["-116.7512024","47.6710538"],["-116.750943","47.670248"],["-116.7507826","47.6673566"],["-116.7507568","47.6668881"],["-116.7507377","47.6665158"],["-116.7507172","47.6662498"],["-116.7506514","47.6659345"],["-116.7505563","47.665639"],["-116.7504554","47.6653654"],["-116.7503618","47.6651819"],["-116.7502577","47.6649865"],["-116.7500802","47.6647174"],["-116.7498604","47.6644374"],["-116.7496402","47.6642074"],["-116.7493636","47.6639619"],["-116.7491042","47.6637607"],["-116.7487418","47.6635143"],["-116.7483798","47.663311"],["-116.7479571","47.6631068"],["-116.7475396","47.6629341"],["-116.7467908","47.6626643"],["-116.746348","47.6625281"],["-116.7457485","47.6623941"],["-116.7448092","47.662275"],["-116.744192","47.6622406"],["-116.7437643","47.662235"],["-116.7434403","47.6622439"],["-116.7431326","47.6622579"],["-116.7425449","47.6623077"],["-116.7418321","47.6623827"],["-116.7410202","47.6624665"],["-116.7404995","47.6625108"],["-116.7401105","47.6625318"],["-116.7397492","47.662536"],["-116.7393044","47.6625205"],["-116.7371499","47.662394"],["-116.7367715","47.6623905"],["-116.7364369","47.6624058"],["-116.7360931","47.6624327"],["-116.7356799","47.6624879"],["-116.7345098","47.6626788"],["-116.7341028","47.6627391"],["-116.7337477","47.6627778"],["-116.7334101","47.6627956"],["-116.7330439","47.6627948"],["-116.7326947","47.6627745"],["-116.7323494","47.6627329"],["-116.7320247","47.6626784"],["-116.7316973","47.6626011"],["-116.7313627","47.6625032"],["-116.7311185","47.6624205"],["-116.7307547","47.6622726"],["-116.7304755","47.6621346"],["-116.7302349","47.6619891"],["-116.72997","47.6618024"],["-116.7297586","47.6616285"],["-116.7295422","47.6614386"],["-116.7293487","47.6612472"],["-116.7291626","47.6610433"],["-116.7289979","47.6608368"],["-116.72886","47.6606107"],["-116.7287514","47.6604048"],["-116.7286591","47.660193"],["-116.7285876","47.6599872"],["-116.7285244","47.6597478"],["-116.7284462","47.6594892"],["-116.728317","47.6589305"],["-116.7281681","47.6582917"],["-116.7278627","47.6569021"],["-116.7276623","47.656008"],["-116.727599","47.6557965"],["-116.727526","47.6555799"],["-116.7272991","47.6551268"],["-116.7271917","47.6549463"],["-116.7270606","47.6547795"],["-116.7268974","47.6545885"],["-116.7266799","47.6544051"],["-116.7264509","47.654227"],["-116.7262058","47.6540668"],["-116.7259404","47.6539136"],["-116.7256601","47.653771"],["-116.7253642","47.6536426"],["-116.7250571","47.6535262"],["-116.7247463","47.6534292"],["-116.7244131","47.6533463"],["-116.7240769","47.6532796"],["-116.7237329","47.6532329"],["-116.723383","47.6531969"],["-116.7228672","47.6531737"],["-116.7202592","47.6531208"],["-116.7197757","47.6530984"],["-116.7194312","47.6530667"],["-116.7190657","47.6530157"],["-116.7187251","47.6529497"],["-116.718382","47.6528674"],["-116.7180624","47.6527696"],["-116.7177409","47.6526502"],["-116.7174537","47.6525242"],["-116.7171804","47.6523859"],["-116.7169114","47.6522305"],["-116.7166576","47.6520676"],["-116.7163218","47.6518156"],["-116.7161845","47.6516843"],["-116.7160073","47.6515038"],["-116.7158277","47.6512966"],["-116.7156734","47.6510834"],["-116.7155388","47.6508581"],["-116.7153734","47.6505014"],["-116.7153045","47.6502935"],["-116.7151448","47.6497063"],["-116.7148489","47.6485632"],["-116.7135386","47.6435858"],["-116.7133925","47.6430404"],["-116.7133212","47.6427979"],["-116.7132418","47.6425571"],["-116.7131758","47.6423751"],["-116.7130872","47.6421791"],["-116.7130095","47.6420397"],["-116.7129159","47.6418913"],["-116.7127963","47.6417369"],["-116.7126618","47.6415823"],["-116.7125346","47.6414486"],["-116.71241","47.6413287"],["-116.7122601","47.6411952"],["-116.7121031","47.6410625"],["-116.7119294","47.6409523"],["-116.7117389","47.6408385"],["-116.7115253","47.6407163"],["-116.7113317","47.640618"],["-116.7105285","47.6402611"],["-116.7100438","47.640047"],["-116.7095824","47.6398318"],["-116.7093015","47.63969"],["-116.709091","47.6395682"],["-116.7088699","47.6394305"],["-116.7085426","47.639173"],["-116.7084078","47.639041"],["-116.7082966","47.6389185"],["-116.7081955","47.6388001"],["-116.7080278","47.6385667"],["-116.707958","47.6384369"],["-116.7078824","47.638289"],["-116.7078003","47.6381086"],["-116.7076939","47.6377753"],["-116.7076654","47.6376349"],["-116.7076547","47.6375136"],["-116.7076503","47.637388"],["-116.7076522","47.6371183"],["-116.7076612","47.6369596"],["-116.7077055","47.6364355"],["-116.7077814","47.6353908"],["-116.7077856","47.6350859"],["-116.7077836","47.6348176"],["-116.7077691","47.6346539"],["-116.7077232","47.6344388"],["-116.707658","47.6342416"],["-116.7075809","47.6340307"],["-116.707479","47.6338302"],["-116.7073716","47.6336628"],["-116.7071877","47.6334041"],["-116.7070665","47.6332637"],["-116.7069411","47.6331366"],["-116.706781","47.6329947"],["-116.7065789","47.6328417"],["-116.7063899","47.6327033"],["-116.7061762","47.6325768"],["-116.7059378","47.6324457"],["-116.7056313","47.6322867"],["-116.7053365","47.6321711"],["-116.70519","47.6321185"],["-116.7049884","47.6320534"],["-116.7047761","47.6319953"],["-116.7008981","47.6311672"],["-116.7004935","47.6310866"],["-116.7001894","47.6310285"],["-116.6999129","47.6309784"],["-116.6996439","47.630937"],["-116.6991454","47.6308805"],["-116.6986368","47.630852"],["-116.6983878","47.6308559"],["-116.6981544","47.6308646"],["-116.6975937","47.6309008"],["-116.6973469","47.6309283"],["-116.6971139","47.6309616"],["-116.6969165","47.6309948"],["-116.6963498","47.6311023"],["-116.6954484","47.631283"],["-116.6949359","47.6313656"],["-116.6946457","47.6313999"],["-116.6943173","47.6314213"],["-116.6937677","47.6314366"],["-116.6934939","47.6314341"],["-116.693163","47.6314141"],["-116.6927811","47.6313697"],["-116.6923827","47.6313106"],["-116.6920269","47.6312458"],["-116.6899617","47.6307517"],["-116.6891905","47.6306081"],["-116.6872167","47.6303195"],["-116.6869131","47.6302718"],["-116.6865355","47.6302035"],["-116.6859099","47.6300637"],["-116.6853767","47.6299187"],["-116.6849848","47.6298024"],["-116.683332","47.6292645"],["-116.6810278","47.6285258"],["-116.666589","47.624152"],["-116.6661159","47.6240306"],["-116.6656792","47.6239302"],["-116.6648419","47.6237769"],["-116.6642859","47.6236943"],["-116.6632503","47.623578"],["-116.6623889","47.6235215"],["-116.6619368","47.6235099"],["-116.6614918","47.6235073"],["-116.6607779","47.6235251"],["-116.6595501","47.6235947"],["-116.6586078","47.6236551"],["-116.6575829","47.6237198"],["-116.6572056","47.6237235"],["-116.6563282","47.6236938"],["-116.6556506","47.6236455"],["-116.6549128","47.6235954"],["-116.6530219","47.6235126"],["-116.6519561","47.6235262"],["-116.6509317","47.6235533"],["-116.6500568","47.6235955"],["-116.6495337","47.6236346"],["-116.6485666","47.6237376"],["-116.6472927","47.6239156"],["-116.6379982","47.625555"],["-116.6137709","47.6303649"],["-116.6124692","47.6306158"],["-116.6117544","47.6307181"],["-116.6113491","47.6307637"],["-116.6110002","47.6307816"],["-116.6105839","47.6307916"],["-116.6101316","47.6307898"],["-116.6094677","47.6307716"],["-116.6061974","47.6306466"],["-116.605152","47.6306019"],["-116.6035511","47.6305323"],["-116.6030428","47.6304891"],["-116.6025705","47.6304345"],["-116.6021088","47.6303588"],["-116.601607","47.6302604"],["-116.6011664","47.6301433"],["-116.6007229","47.6300121"],["-116.6003933","47.6298884"],["-116.5997508","47.6296012"],["-116.5992204","47.6293207"],["-116.5980976","47.6286687"],["-116.5968528","47.6280421"],["-116.5957484","47.627616"],["-116.5949968","47.6273688"],["-116.5943922","47.6272073"],["-116.5939158","47.6270967"],["-116.5928853","47.6269042"],["-116.5921719","47.626809"],["-116.5908227","47.6266769"],["-116.5902541","47.6266051"],["-116.5896701","47.6265141"],["-116.5892342","47.6264179"],["-116.5886385","47.626237"],["-116.5883204","47.6261128"],["-116.5879663","47.6259637"],["-116.5876686","47.6258234"],["-116.5873657","47.6256607"],["-116.587073","47.6254916"],["-116.5863118","47.6250073"],["-116.5860548","47.6248226"],["-116.585722","47.624588"],["-116.5852818","47.6242805"],["-116.5821866","47.6221934"],["-116.5816682","47.6218648"],["-116.5809522","47.6215461"],["-116.5803423","47.6213219"],["-116.5796971","47.6211805"],["-116.5790212","47.6210991"],["-116.5785504","47.6210955"],["-116.5779722","47.6211132"],["-116.5778104","47.6211234"],["-116.5773395","47.6211993"],["-116.5769217","47.6213143"],["-116.5764339","47.6214815"],["-116.575888","47.6217271"],["-116.5754053","47.6220088"],["-116.5748245","47.6224231"],["-116.5743354","47.6228036"],["-116.5730856","47.6237703"],["-116.5727251","47.6240361"],["-116.5724662","47.624201"],["-116.572256","47.6243128"],["-116.5718949","47.6244937"],["-116.5716082","47.6246026"],["-116.5712766","47.6246914"],["-116.5709658","47.6247588"],["-116.5706214","47.6248166"],["-116.5702588","47.6248392"],["-116.5697048","47.6248201"],["-116.569313","47.6247923"],["-116.5688262","47.6247254"],["-116.5674364","47.6244658"],["-116.5667504","47.624365"],["-116.5663128","47.6243252"],["-116.5658824","47.6243057"],["-116.5654024","47.624305"],["-116.5646464","47.6243027"],["-116.5640792","47.6243039"],["-116.5638604","47.6243011"],["-116.5634387","47.6243016"],["-116.5629205","47.6242708"],["-116.5624773","47.6242177"],["-116.5617766","47.6240559"],["-116.5612061","47.6238577"],["-116.5602305","47.6234327"],["-116.5595621","47.6231315"],["-116.5589625","47.622867"],["-116.5585357","47.6227182"],["-116.5579555","47.6225408"],["-116.5573203","47.6224091"],["-116.5567847","47.6223355"],["-116.5563467","47.6222908"],["-116.5560475","47.6222824"],["-116.5554059","47.6222984"],["-116.5550195","47.6223316"],["-116.5545826","47.6223878"],["-116.5540792","47.6224728"],["-116.5536186","47.6225844"],["-116.5530385","47.6227762"],["-116.5519091","47.6232303"],["-116.5510634","47.6235678"],["-116.5503024","47.6238734"],["-116.5496863","47.624096"],["-116.5491863","47.6242387"],["-116.54869","47.6243398"],["-116.5482068","47.6244175"],["-116.547203","47.6244798"],["-116.5462203","47.6245238"],["-116.5446094","47.6245725"],["-116.5430614","47.624583"],["-116.5404529","47.6245535"],["-116.5388607","47.6244867"],["-116.5370109","47.6243667"],["-116.5341083","47.6240735"],["-116.5331526","47.6239296"],["-116.5312054","47.623583"],["-116.529488","47.6232257"],["-116.5286979","47.6230256"],["-116.5278418","47.6227939"],["-116.5269866","47.6225509"],["-116.5250019","47.6218787"],["-116.5245819","47.6217342"],["-116.523211","47.6211683"],["-116.5219912","47.6206209"],["-116.5213772","47.6202391"],["-116.5209027","47.6198504"],["-116.5205653","47.6194535"],["-116.5203128","47.6190656"],["-116.5201658","47.6186684"],["-116.5201413","47.618473"],["-116.5201265","47.6183"],["-116.520118","47.6181021"],["-116.5201429","47.6178664"],["-116.520236","47.6175529"],["-116.5205267","47.6168486"],["-116.5208951","47.615974"],["-116.5212851","47.6148834"],["-116.5213607","47.6145788"],["-116.5214043","47.6141049"],["-116.5213872","47.6138371"],["-116.5213357","47.6135785"],["-116.5211881","47.6131245"],["-116.5210579","47.6128677"],["-116.5207661","47.6124336"],["-116.5205602","47.6122031"],["-116.5203347","47.6119869"],["-116.5200843","47.6117788"],["-116.5197699","47.6115627"],["-116.5192124","47.6112354"],["-116.5188289","47.6110753"],["-116.5181977","47.6108643"],["-116.5174678","47.6107272"],["-116.516468","47.6106059"],["-116.5153386","47.6104778"],["-116.514572","47.6103447"],["-116.5138185","47.6101111"],["-116.5131987","47.6097847"],["-116.5129222","47.6095959"],["-116.5127097","47.6094162"],["-116.5125189","47.6092099"],["-116.5123428","47.6089801"],["-116.5120817","47.6085353"],["-116.5114463","47.6074011"],["-116.5112181","47.607098"],["-116.5108221","47.6066736"],["-116.5104407","47.6064248"],["-116.5098644","47.6061431"],["-116.5095876","47.6060334"],["-116.5089999","47.6058817"],["-116.508727","47.6058343"],["-116.5083888","47.6057951"],["-116.5077319","47.6057739"],["-116.5072557","47.6057963"],["-116.5066463","47.6058681"],["-116.505353","47.6060628"],["-116.5046428","47.6061571"],["-116.5042795","47.606169"],["-116.5036786","47.6061539"],["-116.5032457","47.6061063"],["-116.5029455","47.6060486"],["-116.5026169","47.6059674"],["-116.5022022","47.6058275"],["-116.5016572","47.605582"],["-116.5013033","47.6053592"],["-116.5009877","47.605124"],["-116.5006098","47.6047519"],["-116.4998785","47.603871"],["-116.4993057","47.6031281"],["-116.4970616","47.6001854"],["-116.4965744","47.5995826"],["-116.4963497","47.5993456"],["-116.4961353","47.5991515"],["-116.4958779","47.5989598"],["-116.49531","47.5986201"],["-116.4943344","47.5981431"],["-116.4937274","47.5978106"],["-116.4933032","47.5974802"],["-116.4929577","47.5971261"],["-116.4927962","47.596921"],["-116.4926774","47.5967219"],["-116.492586","47.5965137"],["-116.4925165","47.5962912"],["-116.492476","47.5960778"],["-116.4924611","47.5958592"],["-116.492471","47.5956409"],["-116.4925072","47.5954081"],["-116.4925744","47.595126"],["-116.4927277","47.5947518"],["-116.4928819","47.5943915"],["-116.4930158","47.5940436"],["-116.4930776","47.5937439"],["-116.4931095","47.593517"],["-116.4930927","47.5932621"],["-116.4930322","47.5929684"],["-116.4929183","47.5927097"],["-116.4927298","47.592377"],["-116.4925496","47.5921623"],["-116.4923003","47.5919099"],["-116.4919568","47.5916552"],["-116.4915611","47.5914191"],["-116.4911325","47.5912214"],["-116.4907249","47.591074"],["-116.4902939","47.5909579"],["-116.4899516","47.5908981"],["-116.4896008","47.5908561"],["-116.4888624","47.5908273"],["-116.4852397","47.5908605"],["-116.4844861","47.5908273"],["-116.4838413","47.590727"],["-116.483295","47.5905563"],["-116.4829448","47.5904107"],["-116.4824643","47.5901459"],["-116.4812455","47.5893003"],["-116.480575","47.5888701"],["-116.480234","47.5886995"],["-116.4795814","47.5884545"],["-116.4783105","47.5881115"],["-116.4769957","47.5877457"],["-116.4765953","47.5875862"],["-116.4759168","47.5872541"],["-116.4745429","47.5864533"],["-116.4691375","47.5832544"],["-116.4682243","47.5827693"],["-116.4670166","47.5822248"],["-116.4657093","47.5816622"],["-116.4638388","47.5810302"],["-116.4565337","47.5786857"],["-116.4544663","47.5780214"],["-116.4453845","47.575094"],["-116.4445646","47.5748719"],["-116.444014","47.574756"],["-116.4434583","47.5746718"],["-116.4429999","47.574625"],["-116.442531","47.5746035"],["-116.4418407","47.5746084"],["-116.4411838","47.5746588"],["-116.4405767","47.5747575"],["-116.4398949","47.5749018"],["-116.4393886","47.5750529"],["-116.4387125","47.575303"],["-116.4380954","47.5755716"],["-116.4333946","47.5779221"],["-116.4326112","47.5782914"],["-116.4318897","47.5785698"],["-116.4311414","47.578808"],["-116.4304192","47.5789986"],["-116.4298885","47.5791083"],["-116.4290951","47.5792349"],["-116.4280029","47.5793419"],["-116.4271472","47.5793757"],["-116.4264686","47.5793651"],["-116.4259154","47.5793423"],["-116.4253726","47.5792864"],["-116.4243319","47.5791336"],["-116.4234968","47.5789655"],["-116.4228021","47.5787769"],["-116.4223138","47.578616"],["-116.4217605","47.5784062"],["-116.421284","47.5782041"],["-116.4207125","47.5779271"],["-116.4201342","47.5776017"],["-116.4195418","47.5772284"],["-116.418888","47.5767117"],["-116.4185902","47.5764512"],["-116.4181223","47.5759774"],["-116.4176506","47.5754235"],["-116.4144352","47.571478"],["-116.4134578","47.5703168"],["-116.4129414","47.5697657"],["-116.41237","47.5692108"],["-116.4117135","47.5686102"],["-116.4109052","47.5679152"],["-116.4099486","47.5671769"],["-116.4082003","47.5659495"],["-116.4066164","47.5650622"],["-116.4049156","47.5641799"],["-116.4034691","47.5635438"],["-116.3999706","47.5622153"],["-116.3838986","47.5569093"],["-116.3797329","47.5559417"],["-116.3757312","47.5551711"],["-116.3673032","47.5539055"],["-116.3660649","47.5536895"],["-116.3647066","47.5534226"],["-116.3618617","47.5527721"],["-116.3606754","47.5524577"],["-116.3591324","47.5520158"],["-116.357872","47.5516255"],["-116.3553985","47.5507399"],["-116.3527174","47.5497036"],["-116.3523934","47.5495835"],["-116.3455841","47.5469595"],["-116.3446801","47.5466376"],["-116.3440277","47.546453"],["-116.3431899","47.5462662"],["-116.3427798","47.5461988"],["-116.3423236","47.5461424"],["-116.3413178","47.5460678"],["-116.3407413","47.5460578"],["-116.3399852","47.5460808"],["-116.328235","47.5470239"],["-116.3271751","47.5471973"],["-116.3265019","47.547355"],["-116.3254855","47.5476306"],["-116.3249375","47.5478196"],["-116.3225652","47.5487755"],["-116.3224198","47.5488289"],["-116.3221746","47.5489305"],["-116.321932","47.5490313"],["-116.3215951","47.54917"],["-116.32137","47.5492633"],["-116.3211862","47.5493357"],["-116.318479","47.5504038"],["-116.3179543","47.5505909"],["-116.3173867","47.5507764"],["-116.3168371","47.5509199"],["-116.3162259","47.551062"],["-116.315735","47.5511666"],["-116.3155177","47.5512084"],["-116.3153681","47.5512352"],["-116.3145075","47.5513543"],["-116.313931","47.5514145"],["-116.3129657","47.5514862"],["-116.3125573","47.5514959"],["-116.3119946","47.5514942"],["-116.3113524","47.5514784"],["-116.3105397","47.5514297"],["-116.3012833","47.5504899"],["-116.3003578","47.5504324"],["-116.2989089","47.5503964"],["-116.2978467","47.5504152"],["-116.2971091","47.5504415"],["-116.2961903","47.5504982"],["-116.2946201","47.5506424"],["-116.2943433","47.5506803"],["-116.2940445","47.5507163"],["-116.2934654","47.5508048"],["-116.2902484","47.5514112"],["-116.2894581","47.5515713"],["-116.2892147","47.5516193"],["-116.2887983","47.5516974"],["-116.2878929","47.551835"],["-116.2872713","47.5519111"],["-116.2863079","47.5520086"],["-116.2859594","47.5520379"],["-116.2848842","47.5520887"],["-116.2833134","47.5520911"],["-116.2822822","47.5520457"],["-116.2818627","47.552018"],["-116.2811958","47.5519447"],["-116.280692","47.55188"],["-116.2798674","47.5517615"],["-116.2791803","47.55164"],["-116.2625824","47.5482348"],["-116.2608025","47.5478341"],["-116.2518173","47.5454669"],["-116.2511867","47.5452895"],["-116.2459557","47.5438807"],["-116.2453762","47.5437383"],["-116.2450635","47.543659"],["-116.2426389","47.5430951"],["-116.2423148","47.5430322"],["-116.2420487","47.5429864"],["-116.2415877","47.5429222"],["-116.2413992","47.5429026"],["-116.2410158","47.5428737"],["-116.2406772","47.5428556"],["-116.2403364","47.542845"],["-116.2399431","47.5428438"],["-116.2394784","47.5428551"],["-116.2390701","47.5428701"],["-116.2386422","47.5428894"],["-116.2384276","47.5429062"],["-116.2381316","47.5429264"],["-116.2379067","47.5429391"],["-116.237468","47.5429791"],["-116.2368855","47.5430449"],["-116.2363356","47.5431226"],["-116.2357399","47.5432175"],["-116.2349279","47.5433682"],["-116.2344297","47.5434828"],["-116.2330886","47.5438112"],["-116.2326664","47.5439259"],["-116.2323774","47.5440126"],["-116.2321086","47.5441004"],["-116.2315751","47.5442874"],["-116.2310564","47.5444753"],["-116.2304676","47.5447112"],["-116.2291734","47.5452887"],["-116.2281564","47.5457416"],["-116.2268671","47.5463239"],["-116.2254602","47.5469722"],["-116.2250717","47.5471292"],["-116.224715","47.5472636"],["-116.2240675","47.5474636"],["-116.2236106","47.5475718"],["-116.2231583","47.5476676"],["-116.2228724","47.5477161"],["-116.2225628","47.5477622"],["-116.2220189","47.5478246"],["-116.2216603","47.5478437"],["-116.2212432","47.5478479"],["-116.2207482","47.5478323"],["-116.2202244","47.5478059"],["-116.2102027","47.546636"],["-116.2068336","47.5464065"],["-116.2057482","47.5463581"],["-116.2051769","47.5463432"],["-116.2041925","47.5463257"],["-116.2030787","47.5463078"],["-116.1855456","47.5460472"],["-116.1816325","47.5460946"],["-116.1805221","47.5461611"],["-116.1788094","47.5462866"],["-116.1773238","47.5464108"],["-116.1660402","47.5474032"],["-116.1657178","47.5474359"],["-116.1656157","47.547442"],["-116.1655097","47.5474509"],["-116.1652668","47.5474704"],["-116.1646864","47.5475226"],["-116.1642019","47.5475644"],["-116.1639208","47.547588"],["-116.163609","47.5476207"],["-116.1632691","47.5476514"],["-116.1629509","47.5476771"],["-116.1625255","47.5477165"],["-116.1620921","47.5477532"],["-116.1582292","47.5480063"],["-116.1575221","47.5480259"],["-116.1409301","47.5483062"],["-116.139853","47.5482474"],["-116.1394595","47.5482045"],["-116.1387777","47.5481057"],["-116.1385048","47.5480561"],["-116.1376203","47.5478562"],["-116.1372211","47.5477538"],["-116.1367904","47.5476164"],["-116.1364531","47.5474975"],["-116.1361136","47.5473702"],["-116.1356577","47.5471868"],["-116.1352963","47.547021"],["-116.1349467","47.5468412"],["-116.1345926","47.5466368"],["-116.1341688","47.5463666"],["-116.1337435","47.5460847"],["-116.1275286","47.5417478"],["-116.1271256","47.5414866"],["-116.1267433","47.5412443"],["-116.1258292","47.5407054"],["-116.1251418","47.5403216"],["-116.1243394","47.5398946"],["-116.1240349","47.5397376"],["-116.1235734","47.5395036"],["-116.1232466","47.5393391"],["-116.1197756","47.5375813"],["-116.1192533","47.5373266"],["-116.1188413","47.5371392"],["-116.1184124","47.536959"],["-116.1178213","47.5367525"],["-116.1173333","47.5366221"],["-116.1169919","47.5365349"],["-116.1166357","47.5364474"],["-116.1136411","47.5357951"],["-116.113488","47.5357591"],["-116.107123","47.534385"],["-116.1066679","47.5343012"],["-116.106278","47.5342449"],["-116.1057897","47.5341943"],["-116.1054101","47.5341672"],["-116.1050374","47.5341578"],["-116.1047418","47.5341569"],["-116.1043982","47.5341627"],["-116.1012274","47.5343722"],["-116.1007467","47.534389"],["-116.1003266","47.5343928"],["-116.0999253","47.5343842"],["-116.0995275","47.5343611"],["-116.0991606","47.5343265"],["-116.0987533","47.5342743"],["-116.0983666","47.5342102"],["-116.0980347","47.5341414"],["-116.0977309","47.5340683"],["-116.0974407","47.5339906"],["-116.0970921","47.5338825"],["-116.0965728","47.5336938"],["-116.0960006","47.5334477"],["-116.0913557","47.5311025"],["-116.0908429","47.5308639"],["-116.0903534","47.5306554"],["-116.0899252","47.5304967"],["-116.0894484","47.5303532"],["-116.0889551","47.5302427"],["-116.0884218","47.5301502"],["-116.0879112","47.5301018"],["-116.0874111","47.5300628"],["-116.0868031","47.5300597"],["-116.0863032","47.5300861"],["-116.0857788","47.530138"],["-116.0852475","47.5302187"],["-116.0847368","47.5303271"],["-116.0841197","47.5304969"],["-116.0800264","47.5317735"],["-116.0780136","47.5323901"],["-116.0768826","47.5326732"],["-116.0762062","47.5328144"],["-116.0755648","47.5329387"],["-116.0748404","47.5330627"],["-116.0732526","47.5332588"],["-116.0716331","47.5333755"],["-116.0711662","47.533393"],["-116.0696188","47.5334082"],["-116.0689511","47.5333887"],["-116.0684329","47.5333637"],["-116.0668741","47.5332382"],["-116.057855","47.5323324"],["-116.0568416","47.5322026"],["-116.0562471","47.5320931"],["-116.0557225","47.5319609"],["-116.0552484","47.5318214"],["-116.054777","47.5316513"],["-116.054303","47.5314692"],["-116.0538513","47.5312675"],["-116.0534159","47.5310496"],["-116.0530128","47.5308183"],["-116.0526555","47.5305919"],["-116.0524322","47.5304346"],["-116.052058","47.5301587"],["-116.0517638","47.5299203"],["-116.0454468","47.5246195"],["-116.0442844","47.5236918"],["-116.0418529","47.5219437"],["-116.0414352","47.5216536"],["-116.040643","47.5211129"],["-116.0402675","47.5208502"],["-116.0379502","47.51925"],["-116.0363808","47.5182045"],["-116.0347803","47.5172505"],["-116.0340777","47.5168773"],["-116.0328046","47.5162331"],["-116.0322142","47.5159614"],["-116.0303308","47.5151649"],["-116.0290325","47.5146814"],["-116.0282642","47.514423"],["-116.0271041","47.5140579"],["-116.01486","47.5106114"],["-116.0143416","47.5104905"],["-116.0138747","47.5103931"],["-116.0133234","47.5102953"],["-116.0127952","47.5102222"],["-116.0122659","47.510165"],["-116.0115617","47.5101166"],["-116.0055276","47.5098292"],["-116.0014059","47.5094092"],["-116.0004542","47.5092579"],["-115.9984351","47.508859"],["-115.9970416","47.5085356"],["-115.996746","47.5084568"],["-115.9942114","47.507687"],["-115.9927261","47.5071609"],["-115.99202","47.5068702"],["-115.9916922","47.5067322"],["-115.9912614","47.5065502"],["-115.9907916","47.5063399"],["-115.9897386","47.5058326"],["-115.9890978","47.5055101"],["-115.9885356","47.505203"],["-115.9880031","47.5049019"],["-115.9874152","47.5045568"],["-115.9869534","47.5042664"],["-115.9855219","47.5032997"],["-115.9846875","47.5026672"],["-115.9842153","47.5022918"],["-115.9837605","47.501916"],["-115.9833419","47.5015402"],["-115.9828307","47.5010532"],["-115.9823548","47.5005825"],["-115.9819406","47.5001573"],["-115.9815492","47.4997158"],["-115.9810008","47.4990644"],["-115.9786789","47.4962998"],["-115.9782516","47.4958343"],["-115.9778851","47.495456"],["-115.9775801","47.4951729"],["-115.9772456","47.4948785"],["-115.9769027","47.4945897"],["-115.9761872","47.494043"],["-115.9758132","47.4937796"],["-115.9754201","47.4935158"],["-115.975025","47.493262"],["-115.9746656","47.4930442"],["-115.9742246","47.4927961"],["-115.9738023","47.4925727"],["-115.9734087","47.4923767"],["-115.9729469","47.4921616"],["-115.9724878","47.4919665"],["-115.9720372","47.4917978"],["-115.9715995","47.4916512"],["-115.9709748","47.4914681"],["-115.9705665","47.4913661"],["-115.9700649","47.49126"],["-115.9695186","47.4911656"],["-115.969033","47.4910955"],["-115.9684843","47.4910343"],["-115.9679517","47.4909956"],["-115.9674385","47.4909708"],["-115.966992","47.4909664"],["-115.9665717","47.4909702"],["-115.9662088","47.4909868"],["-115.965756","47.4910224"],["-115.9595706","47.4916172"],["-115.9590537","47.4916656"],["-115.9566593","47.4918951"],["-115.9562151","47.4919284"],["-115.9558506","47.4919478"],["-115.9556049","47.491945"],["-115.9553384","47.4919293"],["-115.954837","47.4918781"],["-115.9545594","47.4918329"],["-115.954307","47.4917858"],["-115.9540909","47.4917329"],["-115.9538575","47.4916697"],["-115.9536459","47.4916044"],["-115.9534528","47.4915363"],["-115.9533014","47.491466"],["-115.9531413","47.4913903"],["-115.9529422","47.491295"],["-115.9527017","47.4911546"],["-115.9525061","47.491033"],["-115.9521624","47.4907826"],["-115.9508784","47.4896805"],["-115.9500423","47.4889584"],["-115.949891","47.4888175"],["-115.9496864","47.4886485"],["-115.9494226","47.4884591"],["-115.9490959","47.4882422"],["-115.948815","47.4880796"],["-115.9482712","47.4878048"],["-115.9479524","47.4876826"],["-115.9467685","47.4873081"],["-115.9460435","47.4870711"],["-115.9455907","47.4868946"],["-115.9451492","47.4866786"],["-115.9447265","47.4864214"],["-115.9439834","47.4858699"],["-115.9433214","47.4853397"],["-115.9425372","47.4847571"],["-115.9349239","47.4796662"],["-115.9289929","47.4757186"],["-115.9286647","47.4755194"],["-115.9284669","47.4754183"],["-115.9282441","47.4753119"],["-115.9280041","47.4752092"],["-115.9277695","47.475117"],["-115.92734","47.4749735"],["-115.9268336","47.4748122"],["-115.9254957","47.4744411"],["-115.9251099","47.4743218"],["-115.9246004","47.4741344"],["-115.9243647","47.4740405"],["-115.924055","47.4738945"],["-115.9237168","47.4737196"],["-115.9232925","47.4734669"],["-115.9228437","47.4731943"],["-115.9220613","47.4727281"],["-115.9216736","47.4725171"],["-115.9211294","47.4722683"],["-115.9207915","47.4721456"],["-115.9205439","47.4720686"],["-115.9200918","47.4719519"],["-115.9198899","47.4719059"],["-115.9196388","47.4718661"],["-115.919337","47.4718305"],["-115.9190629","47.4718067"],["-115.9189481","47.4718014"],["-115.9187186","47.4717956"],["-115.9184435","47.4717948"],["-115.9181833","47.4718066"],["-115.9176675","47.4718474"],["-115.9173798","47.4718864"],["-115.9170228","47.4719453"],["-115.9167309","47.4720172"],["-115.9165079","47.4720795"],["-115.9150779","47.472495"],["-115.9144249","47.4726648"],["-115.9138966","47.4727656"],["-115.9132726","47.4728425"],["-115.9122337","47.4729416"],["-115.9118874","47.4729877"],["-115.911577","47.4730364"],["-115.9112456","47.4731077"],["-115.9107658","47.4732454"],["-115.9078076","47.4742609"],["-115.9072885","47.4743782"],["-115.906768","47.4744551"],["-115.9062497","47.474494"],["-115.9057061","47.4744954"],["-115.9051775","47.4744615"],["-115.9046471","47.4743882"],["-115.9041307","47.4742806"],["-115.9031265","47.4739945"],["-115.9026705","47.473857"],["-115.9021599","47.4737248"],["-115.9016347","47.4736308"],["-115.9011256","47.473583"],["-115.9005868","47.4735797"],["-115.9000629","47.4736251"],["-115.8993332","47.4737472"],["-115.8929118","47.4750448"],["-115.8922728","47.4751668"],["-115.8917337","47.4752408"],["-115.8911872","47.4752765"],["-115.890653","47.4752641"],["-115.8901693","47.4752061"],["-115.8896151","47.4750794"],["-115.8891723","47.4749298"],["-115.8886742","47.4747035"],["-115.886642","47.4735964"],["-115.8857703","47.4731092"],["-115.8853723","47.4728904"],["-115.8849584","47.472673"],["-115.8845482","47.4724951"],["-115.884332","47.4724158"],["-115.8841585","47.4723615"],["-115.8839827","47.472319"],["-115.8837914","47.4722812"],["-115.8835815","47.472247"],["-115.8832175","47.4722143"],["-115.8829869","47.4722032"],["-115.8827101","47.4722089"],["-115.882434","47.4722251"],["-115.8821715","47.4722594"],["-115.8819157","47.472307"],["-115.8816882","47.4723621"],["-115.8814318","47.472431"],["-115.8811942","47.472512"],["-115.8809638","47.4726214"],["-115.8807418","47.4727443"],["-115.8805378","47.4728814"],["-115.8802094","47.4731259"],["-115.8798762","47.4733924"],["-115.8795082","47.4736779"],["-115.8791046","47.4739303"],["-115.8786692","47.4741326"],["-115.8781811","47.4742978"],["-115.8776692","47.4744053"],["-115.8771403","47.4744564"],["-115.8766163","47.4744576"],["-115.8760942","47.4744242"],["-115.8755108","47.4743717"],["-115.8655259","47.4731886"],["-115.8652552","47.4731431"],["-115.8647948","47.4730177"],["-115.8643242","47.4728499"],["-115.8638861","47.4726438"],["-115.863484","47.4724047"],["-115.8631288","47.4721278"],["-115.8628466","47.471817"],["-115.8625904","47.4714873"],["-115.8621438","47.4708554"],["-115.8616921","47.4702205"],["-115.8614896","47.4699669"],["-115.8613905","47.4698509"],["-115.8612706","47.469734"],["-115.8610577","47.4695661"],["-115.8607075","47.4693208"],["-115.8602964","47.4691036"],["-115.8598385","47.4689178"],["-115.8593543","47.4687725"],["-115.8588746","47.4686687"],["-115.8583097","47.4686148"],["-115.8578133","47.4686037"],["-115.8572238","47.4686444"],["-115.8567757","47.4687109"],["-115.8556881","47.4689082"],["-115.8551879","47.4689947"],["-115.8546122","47.4690586"],["-115.854114","47.4690686"],["-115.8535187","47.4690369"],["-115.8531044","47.4689825"],["-115.8517768","47.4687357"],["-115.8491119","47.4682206"],["-115.8485249","47.4680687"],["-115.848056","47.4679027"],["-115.8475863","47.4676991"],["-115.8466983","47.467301"],["-115.84626","47.4671245"],["-115.845779","47.4669733"],["-115.8452878","47.4668402"],["-115.8448677","47.4667423"],["-115.8441851","47.4666"],["-115.843089","47.466383"],["-115.8423301","47.4662341"],["-115.8418293","47.4661139"],["-115.8413069","47.4659731"],["-115.840828","47.4658288"],["-115.8403568","47.4656544"],["-115.8399009","47.4654757"],["-115.8394142","47.4652827"],["-115.8389651","47.465118"],["-115.8384673","47.4649579"],["-115.8379893","47.4648266"],["-115.8374793","47.464705"],["-115.8369537","47.464592"],["-115.8364823","47.4644865"],["-115.8354735","47.464269"],["-115.8322016","47.4635525"],["-115.8317777","47.4634355"],["-115.8313943","47.4633206"],["-115.8304465","47.4629811"],["-115.8294266","47.4625524"],["-115.8287251","47.4622505"],["-115.82788","47.4618943"],["-115.827288","47.461652"],["-115.8266543","47.4613933"],["-115.826012","47.4611431"],["-115.8255917","47.4610116"],["-115.8250799","47.4608875"],["-115.8246055","47.4608197"],["-115.8242841","47.4607927"],["-115.8240276","47.4607864"],["-115.8237493","47.4607964"],["-115.8234736","47.4608181"],["-115.8232051","47.4608523"],["-115.8229738","47.4608912"],["-115.8227808","47.4609369"],["-115.8225318","47.461002"],["-115.8223128","47.461067"],["-115.8219994","47.461203"],["-115.8215945","47.4614001"],["-115.8211862","47.4616544"],["-115.8208125","47.461925"],["-115.8198013","47.4631854"],["-115.8194899","47.4635092"],["-115.8191438","47.4637951"],["-115.8187885","47.4640275"],["-115.8174852","47.4647374"],["-115.8170334","47.4649555"],["-115.8166059","47.4651483"],["-115.8161674","47.4653142"],["-115.8157166","47.4654445"],["-115.8152732","47.46552"],["-115.8147716","47.4655867"],["-115.8142347","47.4656143"],["-115.8137298","47.4656011"],["-115.813233","47.4655515"],["-115.813061","47.4655212"],["-115.8126516","47.4654438"],["-115.8124466","47.4653926"],["-115.8122327","47.4653329"],["-115.8119694","47.4652343"],["-115.8116742","47.4651106"],["-115.8112513","47.4648854"],["-115.8108909","47.4646769"],["-115.8104725","47.4643758"],["-115.810145","47.464137"],["-115.8097578","47.4638559"],["-115.8093796","47.463606"],["-115.8091243","47.4634457"],["-115.8089612","47.4633655"],["-115.8086859","47.4632502"],["-115.8082256","47.4631008"],["-115.8079928","47.4630452"],["-115.8077878","47.463"],["-115.8075502","47.4629596"],["-115.8072595","47.4629262"],["-115.8069569","47.4629081"],["-115.8066727","47.4628966"],["-115.8063689","47.4629048"],["-115.8061229","47.4629291"],["-115.8055953","47.463012"],["-115.8051231","47.4631326"],["-115.8046521","47.4633013"],["-115.8042332","47.4635"],["-115.8038446","47.463748"],["-115.8035261","47.4639997"],["-115.8033112","47.4641739"],["-115.8029616","47.4645699"],["-115.8020246","47.4655975"],["-115.8015115","47.4661489"],["-115.8012446","47.4663919"],["-115.8008809","47.4667043"],["-115.8004647","47.4670153"],["-115.8000964","47.4672571"],["-115.7997189","47.4674782"],["-115.7994435","47.4676226"],["-115.7984267","47.4680777"],["-115.7978764","47.4682729"],["-115.7972902","47.4684474"],["-115.7969255","47.4685399"],["-115.7964297","47.4686491"],["-115.7959642","47.4687272"],["-115.7953248","47.4688147"],["-115.7949013","47.4688502"],["-115.7944287","47.4688773"],["-115.7937925","47.4688889"],["-115.7932395","47.4688767"],["-115.7927145","47.4688413"],["-115.7922745","47.4687984"],["-115.7892237","47.4684737"],["-115.7880273","47.4683484"],["-115.7874989","47.4683014"],["-115.7851798","47.4681384"],["-115.7810618","47.4680486"],["-115.7778758","47.4681471"],["-115.7755283","47.4683431"],["-115.774144","47.4685086"],["-115.7731548","47.4686582"],["-115.772432","47.4687777"],["-115.7663998","47.4697839"],["-115.7656631","47.4698596"],["-115.7653549","47.4698722"],["-115.7650486","47.4698746"],["-115.7644905","47.4698613"],["-115.7641936","47.4698312"],["-115.7639121","47.4697936"],["-115.7636468","47.4697512"],["-115.7634075","47.4697074"],["-115.7629298","47.4695971"],["-115.7623733","47.4694142"],["-115.7621147","47.469317"],["-115.7618629","47.4692085"],["-115.7616516","47.4691105"],["-115.7614376","47.4689959"],["-115.761237","47.46888"],["-115.7610419","47.468757"],["-115.760853","47.4686193"],["-115.7606898","47.4684939"],["-115.7605128","47.4683517"],["-115.7603481","47.468207"],["-115.7601965","47.4680455"],["-115.7600133","47.4678181"],["-115.7597944","47.4675331"],["-115.7595845","47.4672521"],["-115.7594137","47.4670337"],["-115.7592155","47.4668145"],["-115.7590223","47.4666215"],["-115.7588486","47.4664673"],["-115.7586611","47.4663085"],["-115.7582954","47.4660603"],["-115.7580741","47.4659206"],["-115.7578096","47.4657765"],["-115.7575305","47.4656459"],["-115.7571995","47.4655102"],["-115.7568856","47.4653962"],["-115.7565088","47.4652789"],["-115.7561958","47.4651997"],["-115.7559177","47.4651379"],["-115.7556069","47.4650812"],["-115.7552389","47.4650265"],["-115.7548226","47.4649948"],["-115.7491558","47.4647491"],["-115.7488259","47.4647219"],["-115.7485561","47.4646861"],["-115.7483033","47.4646448"],["-115.7480529","47.4645929"],["-115.7478205","47.4645348"],["-115.7475818","47.4644694"],["-115.7472941","47.4643835"],["-115.7470117","47.4642804"],["-115.7466352","47.4641287"],["-115.744948","47.4633484"],["-115.7446231","47.4632187"],["-115.7442629","47.4631071"],["-115.7438434","47.4630126"],["-115.7434195","47.4629434"],["-115.7430505","47.4629022"],["-115.7427283","47.4628801"],["-115.7421294","47.4628657"],["-115.7415391","47.462852"],["-115.7405497","47.462816"],["-115.7401785","47.4627915"],["-115.7398273","47.4627568"],["-115.7395671","47.4627125"],["-115.7392991","47.462649"],["-115.7390721","47.4625842"],["-115.7388287","47.4624989"],["-115.7385447","47.4623711"],["-115.7382832","47.4622417"],["-115.7380081","47.4620876"],["-115.7376513","47.4618411"],["-115.737301","47.4616055"],["-115.7370333","47.4614333"],["-115.7367962","47.4613069"],["-115.736579","47.4611989"],["-115.7363293","47.4610891"],["-115.7360582","47.4609963"],["-115.7357344","47.460917"],["-115.735446","47.4608569"],["-115.7351038","47.4608215"],["-115.7347564","47.4608149"],["-115.7344576","47.4608231"],["-115.7341117","47.4608518"],["-115.733566","47.4609299"],["-115.7329105","47.4610341"],["-115.7325072","47.4610884"],["-115.7322133","47.4611083"],["-115.7319366","47.4611196"],["-115.7316248","47.4611117"],["-115.731298","47.4610776"],["-115.7309995","47.4610323"],["-115.7307387","47.4609733"],["-115.7304594","47.4608919"],["-115.7302049","47.4607969"],["-115.7299921","47.4606952"],["-115.7297667","47.4605674"],["-115.7293727","47.4603139"],["-115.7287038","47.4598692"],["-115.7284465","47.4597272"],["-115.7281153","47.4595899"],["-115.7277848","47.4594819"],["-115.7274786","47.459415"],["-115.7271737","47.459378"],["-115.7268541","47.4593518"],["-115.7265831","47.4593538"],["-115.7262789","47.4593627"],["-115.7256528","47.4594333"],["-115.7253056","47.4595008"],["-115.7249976","47.4595935"],["-115.7246983","47.4597128"],["-115.7242777","47.459905"],["-115.723904","47.460069"],["-115.7236068","47.4601813"],["-115.7233295","47.4602689"],["-115.7230393","47.4603318"],["-115.7227979","47.4603778"],["-115.7224964","47.4604134"],["-115.7221903","47.4604277"],["-115.7219336","47.4604325"],["-115.7216434","47.4604123"],["-115.7213607","47.4603745"],["-115.7211188","47.4603289"],["-115.7200704","47.4600744"],["-115.7197641","47.4600116"],["-115.7194364","47.4599701"],["-115.7191141","47.4599508"],["-115.7185306","47.4599651"],["-115.7181862","47.4600076"],["-115.7179058","47.4600553"],["-115.71763","47.4601278"],["-115.717046","47.4603435"],["-115.7160603","47.4607183"],["-115.7157765","47.4608029"],["-115.7154999","47.4608794"],["-115.7152098","47.4609395"],["-115.7148528","47.4609879"],["-115.7144828","47.461027"],["-115.7141086","47.4610531"],["-115.7137145","47.4610718"],["-115.7133837","47.4610952"],["-115.7128276","47.4611571"],["-115.7125005","47.4612236"],["-115.7122356","47.4612898"],["-115.7119087","47.4614107"],["-115.7116087","47.4615359"],["-115.7111585","47.4617702"],["-115.7107502","47.4619819"],["-115.7104521","47.4621214"],["-115.7101464","47.46224"],["-115.7098685","47.4623253"],["-115.7095381","47.4624007"],["-115.7091749","47.4624485"],["-115.7088982","47.4624686"],["-115.7086143","47.4624695"],["-115.7082728","47.4624643"],["-115.7078948","47.4624397"],["-115.7059936","47.462257"],["-115.7053262","47.4622176"],["-115.704797","47.4622363"],["-115.7042937","47.4623053"],["-115.7036634","47.4624615"],["-115.702666","47.4627335"],["-115.7025048","47.4627675"],["-115.7023082","47.4628016"],["-115.7020871","47.4628316"],["-115.7018735","47.4628545"],["-115.7016203","47.4628637"],["-115.7013941","47.4628655"],["-115.7012064","47.4628557"],["-115.7005631","47.4627701"],["-115.6997901","47.4626414"],["-115.6991627","47.4625508"],["-115.6984519","47.4625062"],["-115.6977522","47.4624712"],["-115.6970986","47.4624409"],["-115.6968034","47.4624145"],["-115.6965738","47.4623829"],["-115.6963148","47.4623387"],["-115.6961019","47.4622911"],["-115.695896","47.4622366"],["-115.6957195","47.4621778"],["-115.6955451","47.4621108"],["-115.6950888","47.461887"],["-115.694722","47.4616315"],["-115.6944231","47.46133"],["-115.6941968","47.4609977"],["-115.6940494","47.4606456"],["-115.6939966","47.4602822"],["-115.6940372","47.459922"],["-115.6941531","47.4595703"],["-115.6943447","47.4592262"],["-115.6950606","47.4581837"],["-115.6951884","47.4579189"],["-115.6953023","47.4576248"],["-115.6954135","47.457148"],["-115.6954384","47.4568683"],["-115.6954412","47.4568329"],["-115.6954423","47.4568228"],["-115.6954513","47.4566871"],["-115.6954345","47.4564031"],["-115.6953759","47.4560736"],["-115.6952731","47.4557473"],["-115.6951578","47.4554398"],["-115.6950033","47.4550367"],["-115.6945924","47.4540342"],["-115.6944767","47.4537316"],["-115.6942299","47.4529088"],["-115.6940975","47.4523922"],["-115.6939392","47.451655"],["-115.693904","47.4513506"],["-115.6938513","47.4508708"],["-115.6938337","47.4505615"],["-115.6938051","47.4493281"],["-115.6937674","47.4486828"],["-115.6937356","47.448454"],["-115.6936936","47.4482497"],["-115.6936323","47.4480186"],["-115.6935781","47.447839"],["-115.6935252","47.4476679"],["-115.6934476","47.4474834"],["-115.6932405","47.447032"],["-115.6931106","47.446806"],["-115.6927271","47.4461861"],["-115.6922915","47.4455481"],["-115.6913105","47.4441033"],["-115.6911591","47.4439037"],["-115.6910042","47.4437097"],["-115.6908337","47.4435106"],["-115.6904474","47.4430959"],["-115.6902453","47.4429052"],["-115.6900644","47.4427483"],["-115.6898165","47.442551"],["-115.6895484","47.4423471"],["-115.6892616","47.442151"],["-115.6886767","47.4418004"],["-115.6881168","47.4415145"],["-115.6878669","47.4414004"],["-115.6860985","47.4406514"],["-115.6857641","47.440493"],["-115.6854991","47.4403573"],["-115.6852607","47.4402229"],["-115.6850468","47.4400974"],["-115.6842885","47.439593"],["-115.6838215","47.4392313"],["-115.6831421","47.438696"],["-115.6825618","47.4382678"],["-115.6816112","47.437624"],["-115.6813206","47.4374536"],["-115.6809459","47.4372419"],["-115.6798574","47.4366921"],["-115.6795615","47.4365552"],["-115.6790318","47.4363376"],["-115.6785131","47.4361532"],["-115.6719966","47.433955"],["-115.6716607","47.4338545"],["-115.6710533","47.4336844"],["-115.6708296","47.4336341"],["-115.670609","47.4335951"],["-115.6703714","47.4335604"],["-115.6701343","47.4335311"],["-115.6696404","47.4334901"],["-115.6691532","47.4334802"],["-115.6685976","47.433503"],["-115.6672726","47.4336478"],["-115.6645091","47.433996"],["-115.6640217","47.4340757"],["-115.6638078","47.4341164"],["-115.6633465","47.434239"],["-115.6630652","47.4343208"],["-115.6627894","47.4344153"],["-115.6624681","47.4345433"],["-115.6609818","47.4352717"],["-115.6605626","47.4354674"],["-115.6601359","47.4356255"],["-115.6598959","47.4356989"],["-115.6592803","47.4358386"],["-115.6588429","47.4358979"],["-115.6586299","47.4359203"],["-115.6581753","47.435928"],["-115.6579374","47.4359235"],["-115.6577163","47.4359107"],["-115.6574972","47.4358929"],["-115.6573018","47.4358682"],["-115.6571037","47.4358348"],["-115.6566988","47.435747"],["-115.6564122","47.4356696"],["-115.6560009","47.4355254"],["-115.6558152","47.4354527"],["-115.6556511","47.4353726"],["-115.6554919","47.4352934"],["-115.6552504","47.4351506"],["-115.6550163","47.4349958"],["-115.6547894","47.434828"],["-115.6545969","47.4346769"],["-115.6542812","47.4343759"],["-115.6539977","47.4340441"],["-115.6536335","47.4335972"],["-115.6532904","47.433241"],["-115.6531538","47.4331106"],["-115.6529718","47.4329588"],["-115.6527839","47.4328071"],["-115.6525633","47.4326591"],["-115.652073","47.4323835"],["-115.6517126","47.432217"],["-115.6514093","47.4320916"],["-115.6511632","47.4320117"],["-115.6509111","47.4319408"],["-115.6506797","47.4318853"],["-115.6504298","47.431835"],["-115.6488721","47.4316047"],["-115.6450874","47.4310837"],["-115.6445861","47.4309999"],["-115.6442761","47.4309277"],["-115.643803","47.4308032"],["-115.6435359","47.4307207"],["-115.6428708","47.4304724"],["-115.6426057","47.4303516"],["-115.642351","47.4302243"],["-115.641817","47.4299224"],["-115.6415806","47.4297657"],["-115.6414088","47.4296283"],["-115.6410349","47.4293155"],["-115.6407249","47.4289951"],["-115.6405695","47.4288175"],["-115.6404071","47.4286227"],["-115.6380533","47.4255725"],["-115.637771","47.4252401"],["-115.637199","47.4246368"],["-115.6368632","47.4243192"],["-115.6362932","47.4238313"],["-115.6359747","47.4235761"],["-115.6357121","47.4233757"],["-115.635394","47.423159"],["-115.6350859","47.4229581"],["-115.6346355","47.4226858"],["-115.6341937","47.4224413"],["-115.6335908","47.4221338"],["-115.631861","47.4213309"],["-115.630197","47.4206378"],["-115.6296388","47.4204237"],["-115.628133","47.4198844"],["-115.6258691","47.4191381"],["-115.6245522","47.4187486"],["-115.6239607","47.4185949"],["-115.6233551","47.4184448"],["-115.6229513","47.4183584"],["-115.6226258","47.4183087"],["-115.6219689","47.4182355"],["-115.6213645","47.4182067"],["-115.6210128","47.4182077"],["-115.6206738","47.4182146"],["-115.6202765","47.4182435"],["-115.6199623","47.4182787"],["-115.6196316","47.4183277"],["-115.6190909","47.4184246"],["-115.6188485","47.4184834"],["-115.6186185","47.4185448"],["-115.6182331","47.4186687"],["-115.6172621","47.4190018"],["-115.6128504","47.4206317"],["-115.611581","47.4210896"],["-115.6106665","47.4214119"],["-115.6099179","47.4216717"],["-115.6096645","47.4217412"],["-115.609086","47.421852"],["-115.6085902","47.4219132"],["-115.608134","47.4219259"],["-115.6076176","47.4219048"],["-115.607406","47.421883"],["-115.6068404","47.4217931"],["-115.6066722","47.4217599"],["-115.606471","47.4217093"],["-115.6062456","47.4216445"],["-115.6060158","47.4215695"],["-115.6057453","47.4214665"],["-115.6050478","47.421148"],["-115.6047993","47.4210238"],["-115.6027069","47.4198114"],["-115.6022675","47.4195797"],["-115.6018756","47.419404"],["-115.6016409","47.4193102"],["-115.6013946","47.4192183"],["-115.6011297","47.4191303"],["-115.6008289","47.4190432"],["-115.600455","47.4189455"],["-115.6001542","47.4188845"],["-115.5998093","47.4188203"],["-115.5995074","47.4187743"],["-115.5991979","47.4187395"],["-115.5987528","47.4187036"],["-115.598261","47.4186896"],["-115.5970429","47.4187036"],["-115.5945422","47.4187726"],["-115.5941916","47.4187699"],["-115.5938327","47.4187562"],["-115.5934988","47.4187249"],["-115.593154","47.4186743"],["-115.5928102","47.4186126"],["-115.592533","47.4185442"],["-115.5922555","47.418469"],["-115.5919908","47.418384"],["-115.5917324","47.4182777"],["-115.5914832","47.4181655"],["-115.5912834","47.4180675"],["-115.5910698","47.417955"],["-115.590806","47.4178053"],["-115.5904768","47.4176"],["-115.5901183","47.4173722"],["-115.5888767","47.4166324"],["-115.5885765","47.4164654"],["-115.5881311","47.4162568"],["-115.5879169","47.4161654"],["-115.5876982","47.4160802"],["-115.5874854","47.4160126"],["-115.587265","47.4159495"],["-115.5869988","47.4158909"],["-115.5867229","47.4158431"],["-115.5864634","47.4158119"],["-115.5861277","47.415789"],["-115.5857829","47.4157808"],["-115.5854874","47.4157867"],["-115.5851638","47.4158068"],["-115.5848358","47.4158368"],["-115.5843746","47.4159051"],["-115.5825842","47.4162303"],["-115.5821501","47.4162883"],["-115.58181","47.4163237"],["-115.5811814","47.4163594"],["-115.5808049","47.4163476"],["-115.5803941","47.416324"],["-115.5800304","47.4162869"],["-115.5796074","47.4162313"],["-115.5792306","47.4161722"],["-115.5787144","47.4160873"],["-115.5764878","47.4157337"],["-115.575959","47.4156861"],["-115.5754908","47.4156531"],["-115.5748369","47.4156378"],["-115.5741776","47.4156476"],["-115.573822","47.41566"],["-115.5731276","47.4157036"],["-115.5727108","47.4157494"],["-115.5722259","47.4158138"],["-115.5710796","47.4160274"],["-115.5681912","47.4166287"],["-115.5672627","47.4167692"],["-115.5667434","47.4168302"],["-115.5662526","47.4168737"],["-115.5655831","47.4169106"],["-115.5631739","47.4169886"],["-115.5627775","47.4170086"],["-115.5615239","47.4171134"],["-115.5611038","47.4171587"],["-115.5602111","47.4172877"],["-115.5594226","47.4174227"],["-115.5583348","47.4176089"],["-115.5573645","47.4177571"],["-115.5566594","47.4178034"],["-115.5563301","47.4178068"],["-115.5559744","47.4177995"],["-115.5556319","47.4177773"],["-115.5552267","47.4177422"],["-115.5493994","47.4170211"],["-115.5490137","47.4169821"],["-115.5486664","47.4169517"],["-115.5482322","47.4169212"],["-115.5474182","47.4169024"],["-115.5469003","47.4169117"],["-115.5463368","47.4169347"],["-115.545789","47.4169694"],["-115.5452726","47.4170228"],["-115.5437727","47.4172721"],["-115.5384933","47.4181962"],["-115.5377131","47.4182926"],["-115.537299","47.4183243"],["-115.5369392","47.4183405"],["-115.5365761","47.4183489"],["-115.5357651","47.4183265"],["-115.5354236","47.4183056"],["-115.534723","47.4182296"],["-115.5343347","47.4181689"],["-115.5339004","47.4180892"],["-115.533502","47.4180039"],["-115.5330913","47.4178992"],["-115.5264474","47.4159226"],["-115.5247044","47.4153808"],["-115.5243871","47.4152665"],["-115.5235775","47.4149364"],["-115.523087","47.4147048"],["-115.5227838","47.4145415"],["-115.5221055","47.4141576"],["-115.5189439","47.4121785"],["-115.5184369","47.4119218"],["-115.5179701","47.4117093"],["-115.5172765","47.4114222"],["-115.5169055","47.4112868"],["-115.5165383","47.4111664"],["-115.512668","47.4100242"],["-115.511398","47.4096854"],["-115.5109385","47.4095672"],["-115.507344","47.4086607"],["-115.5044719","47.4078648"],["-115.5040231","47.4077602"],["-115.5033584","47.4076332"],["-115.5030645","47.4075966"],["-115.50236","47.4075329"],["-115.5019544","47.4075099"],["-115.4964538","47.4074115"],["-115.4954058","47.4073785"],["-115.4949046","47.4073416"],["-115.4944006","47.4072885"],["-115.4936316","47.4071723"],["-115.4925525","47.4069243"],["-115.4919418","47.406771"],["-115.4914868","47.406637"],["-115.4909829","47.4064563"],["-115.4891958","47.4057525"],["-115.4880039","47.4053672"],["-115.4870698","47.4051167"],["-115.4862057","47.4049107"],["-115.4856981","47.4048144"],["-115.4846213","47.4046499"],["-115.4778139","47.403893"],["-115.4774544","47.4038387"],["-115.4771669","47.4037846"],["-115.4769168","47.4037297"],["-115.4766162","47.4036464"],["-115.4763275","47.4035547"],["-115.47584","47.4033708"],["-115.4756207","47.4032745"],["-115.4754024","47.4031697"],["-115.4751695","47.4030443"],["-115.4749506","47.4029127"],["-115.4747514","47.4027779"],["-115.4735125","47.4018666"],["-115.4731357","47.4016038"],["-115.4729184","47.4014749"],["-115.4727091","47.401367"],["-115.4724984","47.4012676"],["-115.4723144","47.4011931"],["-115.4721348","47.4011276"],["-115.4717321","47.4010289"],["-115.471476","47.4009817"],["-115.4712001","47.4009407"],["-115.4706491","47.4008951"],["-115.4703248","47.4008895"],["-115.4700326","47.4009046"],["-115.4696988","47.4009325"],["-115.4693009","47.4009815"],["-115.4681688","47.4011521"],["-115.4671222","47.4012702"],["-115.4666026","47.4013035"],["-115.4663709","47.4013058"],["-115.4661225","47.4013002"],["-115.465353","47.4012566"],["-115.4647223","47.4011856"],["-115.464408","47.401142"],["-115.4641353","47.4010946"],["-115.4638781","47.4010385"],["-115.463631","47.4009758"],["-115.4634514","47.4009161"],["-115.4630771","47.4007801"],["-115.4627421","47.4006212"],["-115.4625774","47.4005239"],["-115.462319","47.4003501"],["-115.4620106","47.4001066"],["-115.461129","47.3993621"],["-115.4608905","47.3991756"],["-115.4607329","47.3990624"],["-115.4604121","47.3988793"],["-115.4599862","47.3986913"],["-115.4595946","47.39855"],["-115.4583184","47.3981297"],["-115.4580785","47.3980346"],["-115.4578352","47.3979285"],["-115.4575903","47.3978153"],["-115.4573715","47.3976814"],["-115.4571389","47.3975355"],["-115.4569072","47.3973724"],["-115.455717","47.3964812"],["-115.4545284","47.3956057"],["-115.4541618","47.395379"],["-115.453944","47.3952569"],["-115.4534341","47.3950134"],["-115.4528925","47.3947942"],["-115.4526216","47.3947034"],["-115.4520593","47.3945495"],["-115.4517598","47.3944814"],["-115.4511533","47.3943641"],["-115.4505954","47.3942905"],["-115.4502535","47.3942604"],["-115.4499483","47.3942414"],["-115.44958","47.3942363"],["-115.4492205","47.3942368"],["-115.448814","47.3942553"],["-115.4479174","47.3943318"],["-115.4467173","47.394443"],["-115.445606","47.3945303"],["-115.4453091","47.3945356"],["-115.445034","47.394534"],["-115.4445514","47.3945089"],["-115.4435913","47.3944434"],["-115.4426187","47.3943978"],["-115.4419305","47.3944096"],["-115.4412395","47.3944942"],["-115.4382658","47.3950335"],["-115.437894","47.3950934"],["-115.4371645","47.3951708"],["-115.436862","47.3951867"],["-115.4362997","47.3951877"],["-115.4359563","47.3951672"],["-115.4355834","47.3951232"],["-115.4352457","47.3950748"],["-115.4331315","47.3947019"],["-115.4322059","47.3945352"],["-115.4154369","47.3915504"],["-115.4111082","47.3907755"],["-115.4105318","47.3906606"],["-115.410122","47.3905588"],["-115.4097239","47.3904493"],["-115.4093643","47.3903356"],["-115.4084472","47.3900127"],["-115.4077251","47.3897036"],["-115.40737","47.3895307"],["-115.4069485","47.3893121"],["-115.4065554","47.3890927"],["-115.4061473","47.3888343"],["-115.4042415","47.387505"],["-115.4036949","47.3871384"],["-115.4030055","47.3867148"],["-115.4023981","47.3863704"],["-115.4015014","47.3859003"],["-115.400869","47.3855952"],["-115.3957412","47.3832037"],["-115.3922724","47.3815729"],["-115.389254","47.3801157"],["-115.381275","47.3760692"],["-115.3801944","47.3756214"],["-115.3792774","47.3754022"],["-115.3783802","47.375314"],["-115.3776022","47.3753018"],["-115.3767046","47.3754159"],["-115.3757422","47.3755921"],["-115.3728071","47.3761556"],["-115.3677845","47.376982"],["-115.3668302","47.37714"],["-115.3662378","47.3772526"],["-115.3621463","47.3781094"],["-115.3609148","47.3783586"],["-115.3604604","47.3784322"],["-115.3599629","47.3784915"],["-115.3595386","47.3785303"],["-115.3586707","47.3785588"],["-115.3581913","47.3785438"],["-115.3576782","47.3785109"],["-115.3571736","47.3784695"],["-115.3566093","47.3783951"],["-115.3562076","47.3783249"],["-115.3558334","47.3782523"],["-115.3551572","47.3780904"],["-115.3547598","47.3779685"],["-115.3542158","47.3777842"],["-115.3536774","47.3775568"],["-115.3523674","47.3769475"],["-115.3471639","47.3743769"],["-115.3376552","47.3697037"],["-115.3329108","47.3673655"],["-115.3195852","47.3608285"],["-115.3191528","47.360623"],["-115.3188586","47.3604975"],["-115.3183429","47.3603111"],["-115.31802","47.3602083"],["-115.3170507","47.3599358"],["-115.2994987","47.3563602"],["-115.2982012","47.3560952"],["-115.2967001","47.355777"],["-115.2962306","47.3556634"],["-115.2958497","47.3555564"],["-115.2955402","47.3554619"],["-115.2952654","47.3553632"],["-115.2948987","47.3552075"],["-115.2945375","47.3550426"],["-115.2942044","47.3548725"],["-115.2939549","47.3547329"],["-115.2937112","47.3545916"],["-115.2933928","47.3543671"],["-115.2931064","47.3541426"],["-115.2928799","47.3539583"],["-115.2927109","47.3538015"],["-115.2925435","47.3536336"],["-115.2923755","47.3534478"],["-115.2922103","47.3532571"],["-115.292059","47.3530519"],["-115.2919438","47.352862"],["-115.2918234","47.3526461"],["-115.2917126","47.3524183"],["-115.2915902","47.352137"],["-115.2914056","47.3515903"],["-115.2913292","47.3509942"],["-115.2912869","47.3504133"],["-115.2912927","47.3499274"],["-115.2912547","47.349672"],["-115.2911957","47.3493719"],["-115.2911036","47.3491009"],["-115.2910171","47.3488897"],["-115.2909179","47.3486975"],["-115.2908011","47.3484856"],["-115.2906835","47.348307"],["-115.2905712","47.3481539"],["-115.290435","47.3480028"],["-115.2903021","47.3478502"],["-115.2901587","47.3477028"],["-115.2899145","47.3475082"],["-115.289628","47.34729"],["-115.2891757","47.346998"],["-115.2865006","47.345385"],["-115.28602","47.3451059"],["-115.2857857","47.3449881"],["-115.2855742","47.3448925"],["-115.2853199","47.3447912"],["-115.2850368","47.344707"],["-115.2848153","47.3446525"],["-115.2845451","47.344606"],["-115.2840162","47.3445321"],["-115.2833406","47.3444826"],["-115.2800373","47.3443072"],["-115.2796727","47.3442743"],["-115.2788563","47.3441669"],["-115.278336","47.3440616"],["-115.2781219","47.3440083"],["-115.2778813","47.3439332"],["-115.2775713","47.3438088"],["-115.2772912","47.3436818"],["-115.2770534","47.3435686"],["-115.2768722","47.3434496"],["-115.276648","47.3432904"],["-115.2764123","47.3431099"],["-115.2761072","47.3428602"],["-115.2757573","47.3425218"],["-115.2754057","47.3420843"],["-115.275035","47.3416009"],["-115.2747521","47.3412788"],["-115.2743467","47.3408719"],["-115.2741726","47.3407308"],["-115.2739813","47.3405817"],["-115.2736526","47.3403648"],["-115.2734915","47.3402655"],["-115.2725129","47.339792"],["-115.2717862","47.3394457"],["-115.2714801","47.3392851"],["-115.2711293","47.3390568"],["-115.271009","47.3389648"],["-115.2708931","47.3388561"],["-115.2707864","47.3387336"],["-115.2706832","47.3386082"],["-115.2705908","47.3384738"],["-115.2705161","47.338335"],["-115.2704545","47.3381758"],["-115.2704111","47.3380086"],["-115.270375","47.337833"],["-115.2703585","47.3375477"],["-115.2704273","47.3365989"],["-115.2704297","47.3364012"],["-115.2704101","47.3362618"],["-115.2703735","47.3361063"],["-115.27031","47.3359457"],["-115.2702435","47.3358098"],["-115.27017","47.335678"],["-115.2700552","47.3355283"],["-115.2699332","47.3353896"],["-115.2697892","47.3352533"],["-115.2696581","47.335152"],["-115.2695224","47.3350539"],["-115.2693387","47.3349344"],["-115.2691025","47.3348098"],["-115.2688365","47.3346808"],["-115.2679272","47.3342977"],["-115.2676744","47.3341801"],["-115.2674468","47.3340581"],["-115.267269","47.3339529"],["-115.2671304","47.3338484"],["-115.2669953","47.3337388"],["-115.2666966","47.3334078"],["-115.266546","47.3332345"],["-115.2662139","47.3327862"],["-115.2658043","47.3322971"],["-115.265181","47.3318778"],["-115.2644715","47.3316103"],["-115.2638743","47.3315075"],["-115.2634821","47.3314686"],["-115.2629986","47.3314391"],["-115.2625061","47.3314058"],["-115.2619648","47.3313589"],["-115.2615934","47.3313128"],["-115.2612316","47.3312418"],["-115.260823","47.3311398"],["-115.2604583","47.3310221"],["-115.2601663","47.3309138"],["-115.2598585","47.330777"],["-115.2593648","47.3304868"],["-115.2591505","47.3303405"],["-115.259005","47.3302157"],["-115.2587508","47.3299543"],["-115.2578991","47.3289561"],["-115.2575618","47.3285787"],["-115.2573788","47.3283984"],["-115.2572133","47.328253"],["-115.2570143","47.3281114"],["-115.256822","47.3279984"],["-115.256598","47.3278826"],["-115.2561755","47.3276984"],["-115.2559821","47.3276329"],["-115.2557584","47.3275676"],["-115.2555072","47.3275022"],["-115.2552469","47.3274469"],["-115.254925","47.3274031"],["-115.2545468","47.3273729"],["-115.2530656","47.3273117"],["-115.2525356","47.3272487"],["-115.2522265","47.3271881"],["-115.2519551","47.3271213"],["-115.2517058","47.3270311"],["-115.2515096","47.3269508"],["-115.251264","47.3268246"],["-115.2510543","47.3267034"],["-115.250833","47.3265293"],["-115.2506394","47.3263554"],["-115.2504387","47.3261661"],["-115.2503033","47.3259706"],["-115.250235","47.3258455"],["-115.2501435","47.3256434"],["-115.2500293","47.325266"],["-115.2499301","47.3248832"],["-115.2498536","47.3246015"],["-115.2497674","47.3242997"],["-115.2496768","47.3240445"],["-115.2494618","47.3236338"],["-115.2493225","47.3234144"],["-115.2491546","47.3231968"],["-115.2488981","47.3229173"],["-115.2487033","47.32272"],["-115.248223","47.3223215"],["-115.2465623","47.3210175"],["-115.2456778","47.3202951"],["-115.2454734","47.3200985"],["-115.2451982","47.319783"],["-115.2450645","47.3195971"],["-115.2449473","47.3194232"],["-115.2448247","47.3192262"],["-115.2446348","47.3188992"],["-115.243996","47.3177365"],["-115.2438918","47.3175692"],["-115.2437852","47.3174246"],["-115.2436696","47.3172768"],["-115.243394","47.3169903"],["-115.2432478","47.316851"],["-115.243062","47.3167083"],["-115.2428811","47.3165844"],["-115.2426847","47.3164627"],["-115.2424643","47.3163376"],["-115.2422139","47.3162278"],["-115.2419287","47.3161166"],["-115.2409422","47.3158135"],["-115.237512","47.3147883"],["-115.2371626","47.3146747"],["-115.2369928","47.3146129"],["-115.2368281","47.3145306"],["-115.2366415","47.3144342"],["-115.236428","47.3143213"],["-115.2361942","47.3141735"],["-115.235957","47.3140009"],["-115.2355982","47.3137188"],["-115.2352467","47.3134483"],["-115.2349761","47.313264"],["-115.2347472","47.3131247"],["-115.234538","47.3130142"],["-115.2340944","47.3128431"],["-115.2337871","47.3127637"],["-115.233515","47.3127081"],["-115.2332166","47.312659"],["-115.2330364","47.312651"],["-115.2326132","47.3126542"],["-115.2323377","47.3126725"],["-115.2320732","47.3127065"],["-115.2317594","47.3127624"],["-115.2312739","47.3128794"],["-115.2302762","47.3131386"],["-115.2298858","47.3132349"],["-115.2295222","47.3133071"],["-115.2291632","47.3133703"],["-115.2278155","47.3135553"],["-115.2267816","47.3136594"],["-115.2263005","47.313686"],["-115.2257208","47.313688"],["-115.2227309","47.3135668"],["-115.2222013","47.3135152"],["-115.2211693","47.3133939"],["-115.2205985","47.3133129"],["-115.219336","47.3130961"],["-115.2164244","47.3125894"],["-115.2159301","47.3125203"],["-115.2125637","47.3121798"],["-115.2118939","47.3121081"],["-115.2115767","47.3120564"],["-115.2113463","47.3120081"],["-115.2111533","47.3119578"],["-115.2106777","47.3117983"],["-115.2104025","47.3116593"],["-115.2100784","47.3114755"],["-115.2098775","47.3113445"],["-115.2097299","47.3112178"],["-115.2095437","47.3110408"],["-115.2093778","47.3108668"],["-115.2091995","47.3105991"],["-115.2086123","47.3096464"],["-115.2083637","47.3092827"],["-115.2081172","47.3089501"],["-115.2079055","47.3087202"],["-115.2076748","47.3084606"],["-115.2074302","47.308215"],["-115.2064913","47.307353"],["-115.2030538","47.304263"],["-115.2014915","47.3028796"],["-115.2007759","47.3022726"],["-115.2005046","47.3020943"],["-115.2001785","47.3019236"],["-115.1998311","47.3017614"],["-115.1994526","47.30163"],["-115.1990952","47.3015408"],["-115.1987111","47.3014591"],["-115.1981974","47.3014035"],["-115.1977934","47.3013805"],["-115.1973951","47.3014004"],["-115.1969218","47.3014438"],["-115.1964792","47.3015092"],["-115.1951081","47.3018582"],["-115.1935483","47.3022582"],["-115.1928543","47.3023975"],["-115.1925218","47.3024279"],["-115.1921573","47.3024402"],["-115.1918092","47.3024366"],["-115.1913785","47.3024004"],["-115.1908283","47.3023173"],["-115.1896995","47.3020366"],["-115.1873208","47.3014445"],["-115.1860339","47.3012704"],["-115.1829567","47.3010909"],["-115.1818089","47.3009641"],["-115.1811305","47.3008173"],["-115.180528","47.3006239"],["-115.1798665","47.3003763"],["-115.1741909","47.2980097"],["-115.1688641","47.295987"],["-115.1669807","47.2954828"],["-115.1650128","47.2953172"],["-115.1638667","47.2952584"],["-115.1626233","47.2951575"],["-115.1613139","47.2948868"],["-115.1602996","47.2945465"],["-115.1562408","47.292934"],["-115.1551369","47.2925501"],["-115.1540566","47.2922894"],["-115.1531044","47.2921993"],["-115.1520882","47.2921643"],["-115.1505098","47.2922742"],["-115.1490273","47.2926175"],["-115.146461","47.2933865"],["-115.1430278","47.2942907"],["-115.1413934","47.2947864"],["-115.1406136","47.2951561"],["-115.1399669","47.2955385"],["-115.1391978","47.2961441"],["-115.1387091","47.2966049"],["-115.1381272","47.297148"],["-115.1370939","47.2978378"],["-115.1353289","47.2985621"],["-115.1334484","47.2992673"],["-115.1317941","47.2996913"],["-115.1295654","47.2999736"],["-115.1271577","47.2999771"],["-115.1164096","47.2998113"],["-115.1124702","47.2995368"],["-115.1071765","47.2989233"],["-115.1056651","47.2986824"],["-115.1048598","47.2984974"],["-115.1041482","47.2983039"],["-115.1033943","47.298015"],["-115.1024273","47.297604"],["-115.1010963","47.2969089"],["-115.0978749","47.2952714"],["-115.0970257","47.2948503"],["-115.0946863","47.2936607"],["-115.0938762","47.2932385"],["-115.0885313","47.290461"],["-115.0871778","47.289696"],["-115.0862531","47.2891238"],["-115.0849829","47.2882373"],["-115.083276","47.2869077"],["-115.0785754","47.2830847"],["-115.0608592","47.2687302"],["-115.0592764","47.2673719"],["-115.0581689","47.2663083"],["-115.0571307","47.2651063"],["-115.0561761","47.2638325"],["-115.0552448","47.2623858"],["-115.0547406","47.2613753"],["-115.054219","47.2601419"],["-115.0538157","47.258962"],["-115.0535744","47.2580046"],["-115.0533288","47.2563882"],["-115.0532561","47.2552241"],["-115.0532474","47.2544088"],["-115.0532695","47.25396"],["-115.0534245","47.2527015"],["-115.0536257","47.2516961"],["-115.0539116","47.25063"],["-115.0541068","47.2499248"],["-115.0542454","47.2493672"],["-115.0543709","47.2486381"],["-115.0544445","47.2477517"],["-115.0543745","47.2465711"],["-115.0541222","47.2452078"],["-115.053828","47.2442681"],["-115.0534165","47.2433745"],["-115.0529685","47.2425613"],["-115.0523528","47.2417156"],["-115.0512721","47.2404576"],["-115.0498595","47.239218"],["-115.0488927","47.2385968"],["-115.0475296","47.2379872"],["-115.0463154","47.2375873"],["-115.0450287","47.2373239"],["-115.0427767","47.2371866"],["-115.031037","47.2368392"],["-115.0289628","47.2366884"],["-115.0268133","47.2363336"],["-115.0247503","47.2357808"],["-115.0228186","47.2350067"],["-115.0160291","47.2317775"],["-115.0151994","47.2313902"],["-115.0145999","47.2311212"],["-115.0137461","47.2308076"],["-115.0127348","47.230492"],["-115.0114148","47.2302147"],["-115.0102966","47.2300853"],["-115.0092052","47.2300189"],["-115.0079586","47.2300427"],["-115.0067535","47.2301727"],["-115.0054832","47.2304412"],["-115.0043469","47.2307664"],["-115.0026975","47.2314581"],["-115.0008698","47.2323056"],["-114.9999724","47.2326391"],["-114.9990476","47.2328875"],["-114.997693","47.2330984"],["-114.9920177","47.2335647"],["-114.9893103","47.2337416"],["-114.9885374","47.2337154"],["-114.9878107","47.233622"],["-114.9869756","47.2334924"],["-114.9861322","47.233263"],["-114.9847455","47.2327367"],["-114.9732171","47.2276112"],["-114.9717292","47.2269494"],["-114.9703023","47.2262966"],["-114.9690908","47.2256686"],["-114.9677186","47.2248986"],["-114.957812","47.2186639"],["-114.9566333","47.2180549"],["-114.9553072","47.217525"],["-114.9537999","47.2171573"],["-114.9506104","47.2165087"],["-114.9486707","47.2160551"],["-114.9470062","47.2155226"],["-114.9452654","47.2149124"],["-114.943441","47.2141284"],["-114.9420079","47.2133966"],["-114.9405071","47.2126688"],["-114.9390987","47.211996"],["-114.9380458","47.2114234"],["-114.9371462","47.2107912"],["-114.9365897","47.2102507"],["-114.9359855","47.2095346"],["-114.9345227","47.2072377"],["-114.9335999","47.2060339"],["-114.9330029","47.20552"],["-114.9322669","47.2050248"],["-114.9310988","47.2044502"],["-114.9117954","47.1965388"],["-114.909762","47.1958137"],["-114.9065556","47.1949962"],["-114.8967954","47.1932627"],["-114.894234","47.1927965"],["-114.8927651","47.1924595"],["-114.8917223","47.1921859"],["-114.8897999","47.1916039"],["-114.8882026","47.191027"],["-114.8867646","47.1904369"],["-114.885651","47.1899319"],["-114.8845069","47.189336"],["-114.8827131","47.1882989"],["-114.8803635","47.1866727"],["-114.8744874","47.1823874"],["-114.8724139","47.1808596"],["-114.870458","47.17941"],["-114.8689271","47.178263"],["-114.8681496","47.1776259"],["-114.8672642","47.176844"],["-114.865912","47.1755759"],["-114.8645655","47.1741854"],["-114.8637073","47.1733003"],["-114.8622334","47.1718331"],["-114.860873","47.1704938"],["-114.8599767","47.1697211"],["-114.8591799","47.1691441"],["-114.8568544","47.1677276"],["-114.8011576","47.1353931"],["-114.7995798","47.1344517"],["-114.7988444","47.1339061"],["-114.7981335","47.1331756"],["-114.7975043","47.1321818"],["-114.7962571","47.1298877"],["-114.7949956","47.1275959"],["-114.7880335","47.1142003"],["-114.7876704","47.11336"],["-114.7873816","47.1125816"],["-114.7871323","47.1115968"],["-114.7869641","47.1106361"],["-114.7861414","47.1045041"],["-114.7855385","47.0998506"],["-114.78406","47.0886833"],["-114.7837794","47.0870541"],["-114.7834626","47.0862697"],["-114.7829329","47.0855126"],["-114.7824455","47.0850178"],["-114.7819672","47.0846122"],["-114.7813745","47.0842059"],["-114.7807543","47.0838577"],["-114.7793961","47.0832941"],["-114.770847","47.0801337"],["-114.7698072","47.0796783"],["-114.769205","47.0793699"],["-114.7687342","47.0790704"],["-114.768168","47.0786881"],["-114.7675911","47.0781734"],["-114.7668512","47.0772674"],["-114.7663393","47.0763127"],["-114.7661165","47.0754982"],["-114.7659025","47.0744623"],["-114.7656473","47.073059"],["-114.7653382","47.0714116"],["-114.7636174","47.0619366"],["-114.7632595","47.060247"],["-114.7629141","47.0592027"],["-114.7625588","47.0583567"],["-114.7619026","47.0571488"],["-114.760936","47.055755"],["-114.7599176","47.0545474"],["-114.7589879","47.0534712"],["-114.7552171","47.0491699"],["-114.7539071","47.0474736"],["-114.7426761","47.0308227"],["-114.740615","47.027773"],["-114.7381748","47.0240915"],["-114.7375269","47.0228204"],["-114.7370435","47.0217726"],["-114.7367011","47.0204208"],["-114.7363199","47.0188925"],["-114.7359385","47.0179699"],["-114.7354864","47.0172383"],["-114.7348415","47.0164909"],["-114.7340975","47.0158528"],["-114.7333035","47.0153062"],["-114.7317335","47.0145492"],["-114.726215","47.0125567"],["-114.7249129","47.0121991"],["-114.7236362","47.0119124"],["-114.7222392","47.0116974"],["-114.7206393","47.0115662"],["-114.7188181","47.0115627"],["-114.6995496","47.0129063"],["-114.6965313","47.0131683"],["-114.6951305","47.0134764"],["-114.6938595","47.0139179"],["-114.6921941","47.0146354"],["-114.6911444","47.0149961"],["-114.6900691","47.0152192"],["-114.6883169","47.0154858"],["-114.6870791","47.0157278"],["-114.6805356","47.0174888"],["-114.6794399","47.0177366"],["-114.6787018","47.0178378"],["-114.6780888","47.0178796"],["-114.6774288","47.0178882"],["-114.6767553","47.0178778"],["-114.6760083","47.0178069"],["-114.6747936","47.017602"],["-114.6718933","47.0170861"],["-114.6708857","47.0169911"],["-114.6699051","47.016961"],["-114.6689257","47.0170197"],["-114.6677208","47.0172609"],["-114.6641496","47.0184253"],["-114.6627283","47.0188609"],["-114.6615821","47.0190412"],["-114.6595158","47.0190415"],["-114.6539631","47.0189094"],["-114.6523436","47.0188451"],["-114.6510761","47.0187047"],["-114.6486547","47.0182705"],["-114.6475845","47.0180816"],["-114.6388338","47.0163687"],["-114.5981056","47.0075152"],["-114.5959903","47.0070165"],["-114.5940622","47.006509"],["-114.5922723","47.0059581"],["-114.5884753","47.0047005"],["-114.5864212","47.0042999"],["-114.584785","47.004162"],["-114.5593687","47.0040748"],["-114.5561769","47.0041069"],["-114.5551047","47.0042384"],["-114.5540972","47.0044677"],["-114.5529511","47.0048259"],["-114.5519349","47.0053122"],["-114.5511736","47.0057807"],["-114.5504498","47.0063596"],["-114.5421034","47.0145484"],["-114.5394961","47.0170776"],["-114.5383974","47.0180765"],["-114.5374575","47.0186751"],["-114.5362543","47.0192741"],["-114.5349674","47.0197258"],["-114.5338304","47.0199509"],["-114.532555","47.0201053"],["-114.5296627","47.0203378"],["-114.5265404","47.0205616"],["-114.5243303","47.0206129"],["-114.522709","47.02053"],["-114.5205776","47.0201819"],["-114.5129466","47.0183705"],["-114.5116336","47.0179815"],["-114.5102102","47.0174835"],["-114.508829","47.0168972"],["-114.5070805","47.0160165"],["-114.505524","47.0150103"],["-114.5044952","47.0142626"],["-114.503594","47.0135383"],["-114.5027848","47.0127545"],["-114.5017846","47.0116643"],["-114.5008672","47.0106487"],["-114.4996297","47.0094669"],["-114.4988015","47.0087966"],["-114.4980393","47.0082395"],["-114.4970085","47.0076005"],["-114.4946761","47.0062487"],["-114.4884633","47.0028063"],["-114.4874529","47.0022631"],["-114.4863208","47.0017977"],["-114.484785","47.0013155"],["-114.4832418","47.0009838"],["-114.4819556","47.0008128"],["-114.4807844","47.0007269"],["-114.4778518","47.0007511"],["-114.4759576","47.0007031"],["-114.4741007","47.0005616"],["-114.4722128","47.0002994"],["-114.4710642","47.0001058"],["-114.4703347","46.9999336"],["-114.4681682","46.9993238"],["-114.4619094","46.9971253"],["-114.4593178","46.9963674"],["-114.4356492","46.9911301"],["-114.4342626","46.9909381"],["-114.433079","46.9909015"],["-114.4319196","46.990966"],["-114.4307602","46.9910902"],["-114.4289386","46.9915034"],["-114.4270226","46.9922536"],["-114.4251027","46.9934237"],["-114.4165477","47.0004167"],["-114.4149454","47.0017941"],["-114.4145951","47.0021638"],["-114.4140188","47.0028683"],["-114.4136525","47.0034614"],["-114.4133641","47.0040286"],["-114.4130792","47.0048171"],["-114.4122012","47.0085306"],["-114.4118813","47.0096829"],["-114.4116621","47.0102238"],["-114.4113354","47.0108341"],["-114.410848","47.0115719"],["-114.4102905","47.0122865"],["-114.4096532","47.0129426"],["-114.4090108","47.0135403"],["-114.4084299","47.0140054"],["-114.407623","47.0145667"],["-114.4047545","47.0162511"],["-114.3953793","47.0214137"],["-114.3927661","47.0226783"],["-114.3913808","47.0230612"],["-114.3897179","47.0232612"],["-114.3883714","47.023242"],["-114.3876437","47.0231521"],["-114.3869017","47.0230162"],["-114.3860277","47.0227832"],["-114.3772244","47.0198545"],["-114.3755086","47.0193334"],["-114.3744426","47.0190911"],["-114.3734977","47.0189773"],["-114.3723406","47.0188787"],["-114.3709737","47.0188841"],["-114.3697814","47.0189752"],["-114.3687111","47.0191367"],["-114.3676916","47.0193495"],["-114.3662489","47.0197832"],["-114.3651773","47.0202455"],["-114.3641289","47.0207874"],["-114.3630059","47.0215098"],["-114.3626454","47.0218039"],["-114.3622473","47.0221772"],["-114.3615379","47.0229692"],["-114.3566473","47.0292082"],["-114.3562511","47.029584"],["-114.3557954","47.0299677"],["-114.3551991","47.030362"],["-114.3543775","47.0308177"],["-114.3536667","47.0311342"],["-114.3517728","47.0318236"],["-114.3486494","47.0329"],["-114.3456017","47.0339181"],["-114.343726","47.0343306"],["-114.3416","47.0344571"],["-114.3374566","47.0342961"],["-114.3330532","47.0340794"],["-114.3297085","47.0337987"],["-114.3273045","47.0334624"],["-114.3246022","47.0329943"],["-114.321089","47.0322112"],["-114.3194576","47.0317871"],["-114.3147178","47.0303211"],["-114.3121374","47.0296798"],["-114.3079367","47.0291042"],["-114.2769715","47.0257781"],["-114.2744958","47.025371"],["-114.2541186","47.0205581"],["-114.2514818","47.0200139"],["-114.249452","47.01971"],["-114.2457334","47.0193104"],["-114.2355585","47.0185893"],["-114.2339741","47.0184002"],["-114.2324568","47.0180621"],["-114.2310612","47.0176277"],["-114.2296861","47.0171"],["-114.2285804","47.0165646"],["-114.227364","47.0158543"],["-114.2262807","47.0150984"],["-114.2252289","47.0141886"],["-114.2241805","47.0132973"],["-114.2229928","47.0124574"],["-114.2218274","47.0117779"],["-114.2202955","47.0110899"],["-114.2135098","47.0083839"],["-114.2120626","47.0077838"],["-114.2110199","47.0072838"],["-114.2100548","47.0067567"],["-114.2089818","47.0061178"],["-114.2073716","47.0049425"],["-114.205611","47.0034632"],["-114.2038802","47.0020104"],["-114.2028341","47.0012828"],["-114.2021092","47.0008524"],["-114.2014084","47.0004701"],["-114.1986401","46.999194"],["-114.1974903","46.9986293"],["-114.1965883","46.9981473"],["-114.1953597","46.9973844"],["-114.1940864","46.9964195"],["-114.1744648","46.9808098"],["-114.1737458","46.9802052"],["-114.1728334","46.9791414"],["-114.1683165","46.9735224"],["-114.1672955","46.9724238"],["-114.1663263","46.9715604"],["-114.165557","46.9709851"],["-114.164687","46.9703873"],["-114.1322039","46.9518358"],["-114.1291867","46.9500904"],["-114.1283476","46.9496105"],["-114.1114994","46.9399838"],["-114.1109013","46.9397075"],["-114.1096341","46.9391991"],["-114.1090954","46.9390137"],["-114.108571","46.9388702"],["-114.107488","46.9386253"],["-114.1069448","46.938538"],["-114.1015728","46.9380559"],["-114.1005665","46.9379559"],["-114.0991537","46.9377387"],["-114.0986237","46.9376221"],["-114.0980546","46.9374835"],["-114.097474","46.9373285"],["-114.0968337","46.9371314"],["-114.0961854","46.936918"],["-114.095589","46.936681"],["-114.094981","46.9364194"],["-114.0943845","46.9361367"],["-114.0762924","46.9271763"],["-114.0737645","46.9259314"],["-114.0727581","46.9254328"],["-114.0665228","46.9223718"],["-114.0649101","46.9216116"],["-114.0625805","46.9206713"],["-114.0617085","46.9203793"],["-114.0603664","46.9200157"],["-114.0597111","46.919862"],["-114.0519027","46.9183589"],["-114.0512436","46.918227"],["-114.0483712","46.9176079"],["-114.0416147","46.9160353"],["-114.0406742","46.9157763"],["-114.0397829","46.9155041"],["-114.038957","46.9152255"],["-114.0378514","46.914796"],["-114.0369515","46.9144001"],["-114.0364395","46.9141631"],["-114.0350954","46.9134632"],["-114.0340279","46.912827"],["-114.0331534","46.9122407"],["-114.021025","46.9036487"],["-114.0190721","46.9022547"],["-114.0174129","46.9008855"],["-114.0156858","46.8993162"],["-114.0141487","46.8978976"],["-114.0132353","46.8970463"],["-114.0123806","46.8962802"],["-114.0112618","46.8954441"],["-114.0104712","46.8948937"],["-114.0094609","46.8942708"],["-114.0080331","46.8935064"],["-114.0022784","46.8907635"],["-114.000141","46.8897363"],["-113.9991131","46.8891807"],["-113.9981441","46.8885378"],["-113.9974055","46.8879742"],["-113.9968075","46.8874382"],["-113.9962585","46.886844"],["-113.9956981","46.8861575"],["-113.9952297","46.88544"],["-113.9948204","46.8846831"],["-113.9945687","46.8841148"],["-113.9943579","46.8835421"],["-113.9941703","46.8829982"],["-113.993859","46.8821278"],["-113.9935485","46.8814659"],["-113.9929195","46.8805373"],["-113.992243","46.8797942"],["-113.9867545","46.8746043"],["-113.9851616","46.8732204"],["-113.9782631","46.868284"],["-113.9763979","46.8670782"],["-113.9747754","46.8662124"],["-113.9731774","46.8655322"],["-113.9713371","46.8649055"],["-113.9693941","46.8643862"],["-113.9674463","46.8640466"],["-113.96579","46.8638444"],["-113.9640758","46.8637184"],["-113.9633908","46.8636966"],["-113.9620786","46.8637234"],["-113.961429","46.8637601"],["-113.9608543","46.8638061"],["-113.9601853","46.8638726"],["-113.9595583","46.8639587"],["-113.9584202","46.86415"],["-113.9578373","46.8642711"],["-113.9573563","46.8643822"],["-113.9566412","46.8645836"],["-113.955526","46.8649334"],["-113.9549453","46.8651448"],["-113.9541193","46.8654892"],["-113.9537233","46.8656591"],["-113.9516427","46.8665938"],["-113.9509184","46.8668615"],["-113.9498561","46.8671747"],["-113.9493599","46.8672954"],["-113.9488804","46.8673878"],["-113.9453718","46.8679585"],["-113.9446182","46.8681153"],["-113.9440224","46.8682631"],["-113.9434881","46.8684026"],["-113.909215","46.8782621"],["-113.9078028","46.8786223"],["-113.9067195","46.8788455"],["-113.9062691","46.8789231"],["-113.905249","46.8790576"],["-113.9045083","46.8791265"],["-113.903966","46.8791554"],["-113.9022223","46.8791477"],["-113.9017191","46.8791164"],["-113.9005924","46.879004"],["-113.8997323","46.8788796"],["-113.8988803","46.8787205"],["-113.897958","46.8784956"],["-113.8975984","46.8783948"],["-113.8968594","46.8781599"],["-113.8959599","46.8778308"],["-113.8954383","46.8776008"],["-113.8949326","46.877362"],["-113.8944706","46.8771322"],["-113.894131","46.8769442"],["-113.8933773","46.8765"],["-113.8928424","46.8761194"],["-113.8921996","46.8756449"],["-113.8915869","46.875192"],["-113.8908644","46.8746461"],["-113.8881687","46.8726067"],["-113.8876718","46.8722458"],["-113.8862199","46.8711753"],["-113.885767","46.870872"],["-113.8855429","46.8707295"],["-113.8851191","46.8704846"],["-113.8848914","46.8703672"],["-113.884565","46.8702076"],["-113.8841902","46.8700286"],["-113.8703392","46.8640717"],["-113.8682896","46.8631764"],["-113.8668971","46.8624953"],["-113.8663334","46.8621717"],["-113.8651918","46.861461"],["-113.8646189","46.8610618"],["-113.8639916","46.8605799"],["-113.863262","46.8599694"],["-113.8626094","46.8594054"],["-113.8577879","46.8549358"],["-113.8542056","46.8519172"],["-113.8470476","46.8466755"],["-113.8413844","46.8428648"],["-113.8314883","46.8368041"],["-113.8293332","46.8355624"],["-113.8281042","46.8349178"],["-113.8262047","46.8339437"],["-113.8159192","46.8288124"],["-113.8126659","46.8269774"],["-113.7814269","46.8074692"],["-113.7705834","46.8007359"],["-113.7682185","46.7995837"],["-113.7610261","46.7966304"],["-113.7584947","46.795657"],["-113.7569374","46.7952965"],["-113.7555108","46.7951014"],["-113.7538521","46.7950613"],["-113.7492047","46.7954623"],["-113.7483574","46.7955193"],["-113.7477747","46.7955233"],["-113.7472444","46.7955101"],["-113.746735","46.7954716"],["-113.7462058","46.7954115"],["-113.7457399","46.795336"],["-113.7451469","46.7952119"],["-113.7439486","46.794878"],["-113.7433798","46.7946691"],["-113.7425078","46.7942138"],["-113.7407504","46.7932038"],["-113.7396613","46.7926057"],["-113.7385862","46.7921668"],["-113.7244232","46.7881102"],["-113.7229491","46.7876544"],["-113.7218771","46.7872422"],["-113.7203144","46.7864885"],["-113.7189685","46.7857184"],["-113.7175971","46.7848176"],["-113.7165743","46.7840282"],["-113.7155932","46.7831694"],["-113.7148611","46.7823826"],["-113.7141483","46.7815491"],["-113.7136705","46.7809083"],["-113.713084","46.7800265"],["-113.7127136","46.7793435"],["-113.7122929","46.7784481"],["-113.7120091","46.7777595"],["-113.7118322","46.7772054"],["-113.7116488","46.776325"],["-113.7115063","46.7754122"],["-113.7110663","46.7698693"],["-113.7109076","46.768206"],["-113.7107407","46.7672151"],["-113.7104496","46.7658984"],["-113.7072821","46.7530998"],["-113.7068508","46.7518104"],["-113.7063538","46.750575"],["-113.7057358","46.7492195"],["-113.7042854","46.7465295"],["-113.7038291","46.7457111"],["-113.7031854","46.7445616"],["-113.7001084","46.7390239"],["-113.6990342","46.7369222"],["-113.698542","46.7356826"],["-113.6981154","46.7344431"],["-113.6977537","46.7333195"],["-113.6973567","46.7323016"],["-113.6968661","46.7313397"],["-113.6962231","46.7304191"],["-113.6955308","46.7296732"],["-113.6947018","46.7289081"],["-113.6938105","46.7282742"],["-113.6928668","46.7277588"],["-113.6918331","46.7273563"],["-113.6907807","46.7270242"],["-113.6897861","46.7267884"],["-113.6888464","46.7266236"],["-113.6878233","46.7265253"],["-113.686266","46.7264676"],["-113.6801309","46.7263638"],["-113.6785781","46.7263705"],["-113.6774914","46.7264786"],["-113.6761652","46.7267149"],["-113.6731208","46.7275156"],["-113.67264","46.7276184"],["-113.6720933","46.7277208"],["-113.6715932","46.727803"],["-113.6710924","46.7278749"],["-113.6706334","46.7279298"],["-113.6697408","46.7280088"],["-113.6693627","46.7280312"],["-113.6689302","46.7280471"],["-113.6679532","46.7280505"],["-113.6454693","46.7276767"],["-113.6447999","46.7276369"],["-113.6435388","46.7275299"],["-113.6426423","46.7274223"],["-113.6301092","46.7256908"],["-113.6287051","46.7255668"],["-113.6274378","46.7255072"],["-113.5931496","46.7250714"],["-113.5781596","46.7254526"],["-113.5774951","46.7254468"],["-113.5762807","46.7253913"],["-113.5756883","46.7253486"],["-113.5745322","46.7252322"],["-113.5733861","46.725077"],["-113.5728759","46.7249911"],["-113.5558492","46.7214248"],["-113.5479349","46.7198268"],["-113.5354169","46.7171176"],["-113.5332961","46.716526"],["-113.5229678","46.7132529"],["-113.5223655","46.7130708"],["-113.5215454","46.712852"],["-113.5210529","46.7127378"],["-113.5205855","46.7126413"],["-113.5201139","46.7125628"],["-113.5194644","46.7124771"],["-113.513808","46.7118835"],["-113.5132611","46.7118167"],["-113.5128318","46.7117524"],["-113.5121348","46.7116144"],["-113.5118071","46.7115366"],["-113.5115173","46.7114588"],["-113.5108996","46.711248"],["-113.5106398","46.7111483"],["-113.510381","46.7110361"],["-113.5101644","46.7109358"],["-113.5098951","46.7107998"],["-113.509639","46.7106533"],["-113.5093456","46.7104642"],["-113.5090858","46.7102894"],["-113.5088752","46.7101356"],["-113.5086637","46.7099596"],["-113.5084196","46.7097353"],["-113.5082154","46.7095314"],["-113.508034","46.709334"],["-113.5078702","46.7091342"],["-113.5075906","46.7087348"],["-113.5072379","46.7081869"],["-113.506827","46.7075537"],["-113.506515","46.707119"],["-113.5061994","46.706742"],["-113.5059281","46.7064714"],["-113.5056293","46.7061941"],["-113.5053022","46.7059357"],["-113.5049446","46.7056988"],["-113.5045471","46.7054659"],["-113.5034353","46.7048847"],["-113.4903305","46.6982027"],["-113.4899669","46.6980326"],["-113.4896488","46.6978975"],["-113.489302","46.6977599"],["-113.4889307","46.6976262"],["-113.4885738","46.6975149"],["-113.4881973","46.6974157"],["-113.4878358","46.6973321"],["-113.4874207","46.6972541"],["-113.4866975","46.6971455"],["-113.4860326","46.6970942"],["-113.4856056","46.6970765"],["-113.4851975","46.6970715"],["-113.4847779","46.6970823"],["-113.4843904","46.6971003"],["-113.4840142","46.6971315"],["-113.4836556","46.6971756"],["-113.4833098","46.6972286"],["-113.4829491","46.6972937"],["-113.4825609","46.6973771"],["-113.4821523","46.6974758"],["-113.4818034","46.6975818"],["-113.4813927","46.6977178"],["-113.4809621","46.697881"],["-113.4805938","46.6980364"],["-113.4802495","46.6982046"],["-113.4799328","46.6983689"],["-113.4735676","46.7021793"],["-113.4731026","46.7024431"],["-113.4727421","46.7026256"],["-113.4723575","46.7028071"],["-113.471619","46.7031084"],["-113.4712578","46.7032343"],["-113.4704408","46.7034752"],["-113.470056","46.7035687"],["-113.4696719","46.7036542"],["-113.4689332","46.703769"],["-113.4685319","46.7038179"],["-113.4681258","46.7038591"],["-113.4577012","46.7044488"],["-113.4572813","46.7044508"],["-113.4568986","46.7044378"],["-113.4565672","46.7044114"],["-113.4562298","46.7043741"],["-113.4559237","46.7043298"],["-113.4556409","46.7042807"],["-113.4553714","46.7042251"],["-113.4551411","46.7041712"],["-113.4548516","46.7040947"],["-113.4545337","46.7039904"],["-113.4542735","46.7039005"],["-113.45398","46.703788"],["-113.4537427","46.7036916"],["-113.453482","46.7035703"],["-113.4531743","46.7034125"],["-113.4528764","46.7032485"],["-113.4524493","46.702979"],["-113.450829","46.7019085"],["-113.4505156","46.7017093"],["-113.4502534","46.7015514"],["-113.4499822","46.7014003"],["-113.4496858","46.7012517"],["-113.4493821","46.7011139"],["-113.4490748","46.7009918"],["-113.4487377","46.7008722"],["-113.448368","46.7007621"],["-113.4480332","46.7006736"],["-113.4476755","46.7006001"],["-113.4472264","46.7005346"],["-113.4464093","46.7004409"],["-113.4315647","46.6988028"],["-113.4306359","46.6986444"],["-113.4292402","46.6983405"],["-113.4252687","46.6972686"],["-113.4246792","46.6971373"],["-113.4240935","46.697019"],["-113.4160868","46.6957715"],["-113.4156478","46.6957221"],["-113.4147903","46.6956492"],["-113.4143849","46.6956305"],["-113.4139782","46.6956214"],["-113.4135135","46.6956289"],["-113.4126211","46.6956727"],["-113.412194","46.6957099"],["-113.4112022","46.6958378"],["-113.393717","46.6986512"],["-113.3931418","46.6987737"],["-113.3926114","46.6989014"],["-113.3919666","46.6990793"],["-113.3912749","46.6992817"],["-113.3902254","46.6996374"],["-113.3896965","46.6998379"],["-113.3780481","46.7046615"],["-113.377735","46.7047691"],["-113.3774263","46.7048647"],["-113.3771367","46.7049431"],["-113.3765102","46.7050938"],["-113.3758444","46.7051993"],["-113.3755182","46.7052419"],["-113.3747542","46.7052863"],["-113.3743347","46.7052854"],["-113.3738997","46.7052692"],["-113.3734857","46.7052365"],["-113.3731086","46.7051914"],["-113.3726779","46.7051284"],["-113.3722918","46.7050525"],["-113.3719982","46.7049851"],["-113.3717149","46.7049084"],["-113.3714038","46.7048142"],["-113.3710085","46.7046832"],["-113.3706269","46.7045377"],["-113.3703269","46.7044075"],["-113.3700263","46.7042561"],["-113.3696117","46.7040273"],["-113.3610827","46.6987715"],["-113.3608434","46.6986313"],["-113.3605738","46.6984863"],["-113.3602611","46.6983313"],["-113.3599726","46.6982011"],["-113.3596645","46.698074"],["-113.3593423","46.6979516"],["-113.3589639","46.6978229"],["-113.3585941","46.6977125"],["-113.3581447","46.6975976"],["-113.357695","46.6974989"],["-113.3572571","46.6974205"],["-113.3567982","46.6973582"],["-113.3563636","46.6973108"],["-113.3559892","46.6972863"],["-113.3555477","46.6972696"],["-113.3551319","46.6972689"],["-113.3547035","46.6972847"],["-113.354292","46.6973098"],["-113.3538242","46.6973593"],["-113.3534105","46.6974146"],["-113.3530517","46.6974713"],["-113.3526818","46.6975455"],["-113.3523475","46.6976247"],["-113.3519985","46.6977188"],["-113.3515835","46.6978446"],["-113.3511549","46.6979967"],["-113.3507061","46.6981781"],["-113.3502187","46.6983966"],["-113.3381121","46.7043857"],["-113.3376743","46.7046342"],["-113.3372467","46.7049035"],["-113.3368764","46.7051599"],["-113.3363439","46.7055933"],["-113.3360646","46.70584"],["-113.3358189","46.7060898"],["-113.3355633","46.7063692"],["-113.3353119","46.7066837"],["-113.3351159","46.7069549"],["-113.3348066","46.707419"],["-113.3339348","46.7087484"],["-113.3337104","46.7090606"],["-113.3335006","46.7093203"],["-113.3332626","46.7095895"],["-113.3330372","46.7098161"],["-113.3325295","46.710276"],["-113.3322436","46.7105013"],["-113.3319501","46.7107104"],["-113.3315929","46.7109422"],["-113.331155","46.7112052"],["-113.319493","46.7178312"],["-113.3191746","46.717984"],["-113.3188952","46.7181105"],["-113.3185596","46.7182393"],["-113.3181693","46.7183691"],["-113.317791","46.7184726"],["-113.3173746","46.7185662"],["-113.3170063","46.7186357"],["-113.3166905","46.7186761"],["-113.3163351","46.7187112"],["-113.3159421","46.7187347"],["-113.315579","46.7187412"],["-113.3152585","46.7187365"],["-113.3148859","46.7187145"],["-113.3145092","46.7186728"],["-113.3140683","46.7186144"],["-113.3136891","46.7185454"],["-113.3132907","46.718451"],["-113.3129573","46.7183569"],["-113.3126556","46.718261"],["-113.3123277","46.7181348"],["-113.3119559","46.7179807"],["-113.3110735","46.7175417"],["-113.3095451","46.7167612"],["-113.3091683","46.7165839"],["-113.3088134","46.7164295"],["-113.3084472","46.7162944"],["-113.3080733","46.7161721"],["-113.3076581","46.716062"],["-113.3072239","46.7159711"],["-113.3068325","46.7159028"],["-113.3063992","46.7158531"],["-113.3059451","46.7158235"],["-113.3055552","46.7158118"],["-113.3051415","46.7158141"],["-113.3047613","46.7158359"],["-113.3043894","46.7158671"],["-113.304042","46.7159155"],["-113.303658","46.7159849"],["-113.3032398","46.7160815"],["-113.3028609","46.716183"],["-113.3024079","46.7163321"],["-113.3018171","46.716549"],["-113.2988442","46.7177448"],["-113.2984419","46.717892"],["-113.2980326","46.7180231"],["-113.2976024","46.718135"],["-113.2971787","46.7182289"],["-113.2967531","46.7183021"],["-113.2963475","46.7183514"],["-113.2959479","46.7183887"],["-113.2955821","46.7184015"],["-113.2952243","46.718405"],["-113.2944843","46.7183693"],["-113.2940617","46.7183223"],["-113.293675","46.7182691"],["-113.2932957","46.718197"],["-113.2929183","46.7181084"],["-113.2925096","46.7179957"],["-113.2915184","46.7176661"],["-113.2815956","46.7141883"],["-113.280744","46.7139437"],["-113.2802293","46.7138268"],["-113.2796946","46.7137238"],["-113.2791683","46.7136399"],["-113.2785686","46.7135684"],["-113.2714685","46.7128901"],["-113.2709216","46.7128208"],["-113.2704709","46.7127547"],["-113.270011","46.7126712"],["-113.2695776","46.7125795"],["-113.2690926","46.712464"],["-113.2686558","46.7123439"],["-113.2682472","46.7122192"],["-113.2678766","46.712098"],["-113.2673978","46.711911"],["-113.2668224","46.7116681"],["-113.2547317","46.7063453"],["-113.2340335","46.6981956"],["-113.2333097","46.6979288"],["-113.2326366","46.6977143"],["-113.231892","46.6974912"],["-113.2310513","46.6972724"],["-113.2302688","46.6970906"],["-113.2294411","46.6969239"],["-113.2286866","46.6967927"],["-113.2278602","46.6966748"],["-113.2270802","46.6965877"],["-113.2262763","46.6965233"],["-113.2255053","46.6964872"],["-113.2246461","46.6964624"],["-113.2239488","46.6964639"],["-113.2125337","46.6972074"],["-113.212005","46.6972256"],["-113.2115904","46.6972239"],["-113.2111957","46.6972051"],["-113.2107888","46.697169"],["-113.2104309","46.6971266"],["-113.2100259","46.6970665"],["-113.2096441","46.6969951"],["-113.2092503","46.6968947"],["-113.2087744","46.6967566"],["-113.2083221","46.6966058"],["-113.2079358","46.6964451"],["-113.2075518","46.6962637"],["-113.2072005","46.6960782"],["-113.2069081","46.6959083"],["-113.206633","46.6957336"],["-113.2063949","46.6955686"],["-113.2061396","46.6953626"],["-113.2058355","46.6951036"],["-113.2053266","46.6946406"],["-113.2039988","46.6934044"],["-113.1931319","46.6833197"],["-113.1925085","46.6827725"],["-113.1921927","46.6825232"],["-113.1918299","46.682275"],["-113.1914114","46.6819988"],["-113.1909484","46.681729"],["-113.1905282","46.6815065"],["-113.1900594","46.6812822"],["-113.1895571","46.6810665"],["-113.1890019","46.6808522"],["-113.1885216","46.6806926"],["-113.1880493","46.6805528"],["-113.1874383","46.6803934"],["-113.1738331","46.6773373"],["-113.173224","46.6771768"],["-113.1726314","46.6770029"],["-113.1720665","46.6768194"],["-113.1617299","46.6729459"],["-113.1611231","46.6727287"],["-113.1602537","46.6724658"],["-113.1598515","46.6723667"],["-113.1594597","46.6722817"],["-113.1590564","46.6722096"],["-113.1586458","46.6721472"],["-113.1582692","46.672096"],["-113.1579233","46.6720578"],["-113.1575796","46.6720339"],["-113.1572616","46.672018"],["-113.1568751","46.6720088"],["-113.1515883","46.6719965"],["-113.1511661","46.6719787"],["-113.1507522","46.6719497"],["-113.1504235","46.6719192"],["-113.1500411","46.6718694"],["-113.1496313","46.6718027"],["-113.1492264","46.6717277"],["-113.1488327","46.6716361"],["-113.1484003","46.6715244"],["-113.1477481","46.6713146"],["-113.1474419","46.671201"],["-113.1470984","46.6710649"],["-113.1467555","46.6709099"],["-113.1464286","46.6707504"],["-113.1460456","46.6705393"],["-113.1456632","46.6703056"],["-113.1454264","46.6701478"],["-113.1452054","46.6699829"],["-113.1448979","46.6697428"],["-113.1446298","46.6695138"],["-113.1443788","46.669271"],["-113.1436018","46.6684725"],["-113.1432791","46.6681448"],["-113.1430722","46.6679619"],["-113.1428524","46.6677813"],["-113.1426108","46.6675988"],["-113.142132","46.6672689"],["-113.1417831","46.6670606"],["-113.1411942","46.6667328"],["-113.1395407","46.6658145"],["-113.1392297","46.6656087"],["-113.1388759","46.6653435"],["-113.1385408","46.6650643"],["-113.1382461","46.6647895"],["-113.1380346","46.664566"],["-113.1371788","46.6635761"],["-113.1368915","46.6632567"],["-113.1365045","46.6628818"],["-113.1357234","46.6622023"],["-113.1208847","46.6497064"],["-113.1193161","46.6484574"],["-113.1179351","46.647441"],["-113.1169494","46.6467636"],["-113.1156453","46.6459245"],["-113.1142152","46.6451128"],["-113.1108808","46.643379"],["-113.0906255","46.6331212"],["-113.08626","46.6310768"],["-113.0655","46.6221042"],["-113.0626812","46.6208979"],["-113.0604879","46.6200369"],["-113.0552179","46.6182699"],["-113.0215641","46.6076892"],["-113.0194436","46.6070762"],["-113.0179784","46.6067325"],["-113.0161662","46.6064155"],["-113.0140282","46.6061701"],["-113.0074484","46.6057593"],["-113.004768","46.605593"],["-113.0007619","46.6053448"],["-112.9992915","46.6052937"],["-112.9977048","46.6053271"],["-112.9958739","46.605466"],["-112.9850021","46.606603"],["-112.9831111","46.6067189"],["-112.9818845","46.606606"],["-112.9797367","46.6061589"],["-112.9611994","46.6017272"],["-112.9585081","46.6011964"],["-112.9553476","46.6007538"],["-112.9462945","46.5996599"],["-112.9447034","46.5994522"],["-112.9427269","46.5990311"],["-112.9413809","46.5985934"],["-112.939976","46.5980055"],["-112.9364557","46.5960897"],["-112.9354729","46.5955117"],["-112.9338377","46.5945845"],["-112.9316934","46.5933975"],["-112.9302647","46.5927313"],["-112.9249698","46.590761"],["-112.9015771","46.5822321"],["-112.9000666","46.5816513"],["-112.8993093","46.581286"],["-112.8985363","46.5808337"],["-112.8973634","46.5799911"],["-112.8965066","46.5791558"],["-112.8959184","46.5784052"],["-112.8953153","46.5773144"],["-112.8948766","46.576212"],["-112.8944939","46.5752414"],["-112.8936942","46.5732784"],["-112.8930676","46.5720771"],["-112.8923188","46.5708588"],["-112.8913413","46.5695157"],["-112.8904978","46.5684752"],["-112.8898821","46.567733"],["-112.8891063","46.5666827"],["-112.8879588","46.5649655"],["-112.8872767","46.5640467"],["-112.8841259","46.5600399"],["-112.8834811","46.5593386"],["-112.8828256","46.5588072"],["-112.8819749","46.558228"],["-112.8812566","46.557858"],["-112.8803581","46.5574897"],["-112.879337","46.5571868"],["-112.8783994","46.5569914"],["-112.8776104","46.5568823"],["-112.8766925","46.5568119"],["-112.8692886","46.5565529"],["-112.8687217","46.556525"],["-112.8676522","46.5564285"],["-112.8671298","46.5563517"],["-112.8665923","46.5562555"],["-112.8656971","46.5560551"],["-112.865264","46.5559341"],["-112.8648701","46.5558153"],["-112.8644463","46.5556685"],["-112.8640314","46.5555142"],["-112.8636506","46.5553649"],["-112.8633175","46.5552122"],["-112.8629981","46.5550563"],["-112.8626129","46.5548586"],["-112.8622497","46.5546488"],["-112.8619106","46.5544363"],["-112.8615256","46.5541664"],["-112.8611481","46.553894"],["-112.8608862","46.5536822"],["-112.8606036","46.5534282"],["-112.8527959","46.5455983"],["-112.8523059","46.5451128"],["-112.8517872","46.5446631"],["-112.8515023","46.544434"],["-112.8511123","46.5441494"],["-112.8507516","46.5439022"],["-112.8503662","46.5436691"],["-112.8500055","46.5434671"],["-112.8495977","46.5432581"],["-112.8490174","46.5429957"],["-112.8483993","46.5427404"],["-112.8480424","46.5426137"],["-112.8472303","46.5423603"],["-112.8467748","46.5422426"],["-112.8462668","46.5421329"],["-112.8454633","46.5419902"],["-112.8298981","46.5395357"],["-112.8281629","46.5391738"],["-112.8272373","46.5388717"],["-112.8263937","46.5384534"],["-112.8256565","46.5380062"],["-112.8251194","46.5376007"],["-112.8246153","46.537152"],["-112.8241086","46.5365294"],["-112.8236302","46.5357217"],["-112.8233146","46.5346497"],["-112.8232363","46.5329803"],["-112.8231296","46.5282721"],["-112.8230294","46.5275642"],["-112.8228057","46.5268672"],["-112.8226327","46.5265297"],["-112.822471","46.5262848"],["-112.8222427","46.5259761"],["-112.8219491","46.5256266"],["-112.821439","46.5251551"],["-112.8207391","46.5247014"],["-112.819925","46.5242983"],["-112.8194588","46.5241194"],["-112.8190356","46.5239846"],["-112.8186294","46.5238698"],["-112.8178016","46.5237063"],["-112.8173236","46.5236567"],["-112.8165993","46.5236005"],["-112.8143114","46.5234765"],["-112.8130065","46.5233819"],["-112.8122402","46.5232885"],["-112.8117582","46.5231914"],["-112.8112461","46.5230787"],["-112.8109638","46.5229764"],["-112.8106043","46.5228549"],["-112.8099765","46.5226243"],["-112.8097221","46.522517"],["-112.8094594","46.5223986"],["-112.8092072","46.5222756"],["-112.8089211","46.5221301"],["-112.808204","46.5217146"],["-112.8068409","46.5209001"],["-112.8061082","46.5204751"],["-112.805466","46.5201245"],["-112.8046875","46.5197354"],["-112.803423","46.5191427"],["-112.8027893","46.5188668"],["-112.8003819","46.5179006"],["-112.7991472","46.5173864"],["-112.7976542","46.5166515"],["-112.7955491","46.5153456"],["-112.7951622","46.515117"],["-112.7947052","46.5148706"],["-112.7942706","46.5146653"],["-112.7937955","46.5144692"],["-112.7933676","46.5143237"],["-112.7929105","46.5141935"],["-112.7924707","46.5140848"],["-112.7920139","46.5139945"],["-112.7913963","46.5138895"],["-112.788971","46.5135156"],["-112.7883811","46.5134056"],["-112.7879146","46.5132951"],["-112.7875062","46.5131804"],["-112.787018","46.5130194"],["-112.7865465","46.5128424"],["-112.7860946","46.5126493"],["-112.7856559","46.5124319"],["-112.7842151","46.5116124"],["-112.7797876","46.5090012"],["-112.7787721","46.5084495"],["-112.7778208","46.5080003"],["-112.7769316","46.5076438"],["-112.7759223","46.5073028"],["-112.7748598","46.5070091"],["-112.7736874","46.5067785"],["-112.7724465","46.5065697"],["-112.7618356","46.5051081"],["-112.7581965","46.5049051"],["-112.7551613","46.5047398"],["-112.7516963","46.5045526"],["-112.750444","46.50438"],["-112.7487039","46.503961"],["-112.7471544","46.5033569"],["-112.7455155","46.5024523"],["-112.7428564","46.5008962"],["-112.7417665","46.5002844"],["-112.7410943","46.4999214"],["-112.7390166","46.4990002"],["-112.7375832","46.4984253"],["-112.7360994","46.4978321"],["-112.7351253","46.49737"],["-112.7345343","46.4970296"],["-112.7334472","46.4961911"],["-112.7309132","46.4937478"],["-112.7296596","46.4925176"],["-112.7289782","46.4918515"],["-112.7281142","46.4910315"],["-112.7276657","46.4905668"],["-112.7258839","46.4887764"],["-112.7251478","46.4879117"],["-112.7247846","46.487419"],["-112.7244852","46.4867975"],["-112.7242231","46.4861519"],["-112.7241002","46.4857309"],["-112.7239716","46.4850678"],["-112.7234505","46.4783823"],["-112.7233585","46.4760911"],["-112.7236082","46.4206726"],["-112.7236313","46.4157447"],["-112.7236434","46.4150801"],["-112.7236456","46.4141186"],["-112.7236026","46.412962"],["-112.7234813","46.4121906"],["-112.7233699","46.411732"],["-112.7230642","46.4108344"],["-112.722652","46.409967"],["-112.7223037","46.4093773"],["-112.7219527","46.4088643"],["-112.7216052","46.4083756"],["-112.7212335","46.4078528"],["-112.7207259","46.4071193"],["-112.7198688","46.4057989"],["-112.7191277","46.4044376"],["-112.718551","46.4031238"],["-112.7181812","46.4020372"],["-112.7178913","46.4008799"],["-112.7177436","46.4000414"],["-112.7176567","46.3992768"],["-112.7176177","46.3984343"],["-112.7176298","46.3975774"],["-112.717698","46.3968203"],["-112.7177871","46.396054"],["-112.7179967","46.3949363"],["-112.7183452","46.3937382"],["-112.7187501","46.39263"],["-112.7191854","46.3917546"],["-112.7197734","46.3906718"],["-112.7203102","46.3898301"],["-112.7211441","46.3887016"],["-112.7248669","46.3840044"],["-112.725485","46.3833553"],["-112.7259968","46.3828677"],["-112.7265739","46.3823561"],["-112.7275562","46.3816669"],["-112.7360049","46.3759644"],["-112.7363962","46.375704"],["-112.7381808","46.3744315"],["-112.7390565","46.3735909"],["-112.7394625","46.3730578"],["-112.739789","46.3725272"],["-112.7401589","46.3715629"],["-112.7402917","46.3709545"],["-112.7421477","46.3506534"],["-112.7425292","46.3464063"],["-112.7476538","46.2899257"],["-112.7478078","46.2875417"],["-112.7477733","46.2857009"],["-112.7474354","46.2752148"],["-112.7475405","46.2736292"],["-112.7478169","46.2722332"],["-112.7483216","46.2704594"],["-112.7488152","46.2691967"],["-112.7495035","46.2679299"],["-112.7505017","46.2663301"],["-112.7513237","46.2652993"],["-112.7529039","46.2635403"],["-112.7541556","46.2623582"],["-112.7554793","46.2611384"],["-112.7567676","46.259868"],["-112.757488","46.2589305"],["-112.7582918","46.2573979"],["-112.7621693","46.2474594"],["-112.7629497","46.2453477"],["-112.7634002","46.2436656"],["-112.7638314","46.24167"],["-112.7641855","46.2401051"],["-112.7645221","46.2388367"],["-112.7648498","46.2377761"],["-112.7650249","46.2373058"],["-112.7652217","46.2368108"],["-112.7656572","46.2358625"],["-112.7661147","46.2348683"],["-112.767866","46.2319116"],["-112.7684392","46.2308916"],["-112.769255","46.2291679"],["-112.7770541","46.2091077"],["-112.7790787","46.2038772"],["-112.7811012","46.198671"],["-112.781833","46.1967134"],["-112.7826991","46.1943674"],["-112.7830476","46.1931245"],["-112.7833636","46.1917168"],["-112.783617","46.1899739"],["-112.7837379","46.1882232"],["-112.7837296","46.1864763"],["-112.7837073","46.1848142"],["-112.7837295","46.1835198"],["-112.7837966","46.1825878"],["-112.7838816","46.1818398"],["-112.7841264","46.1803222"],["-112.7844185","46.1790443"],["-112.7847553","46.1778487"],["-112.7850603","46.1769638"],["-112.7856123","46.1755899"],["-112.7861754","46.1743622"],["-112.7869574","46.1729293"],["-112.788157","46.1708415"],["-112.7890117","46.1692726"],["-112.7894901","46.1682604"],["-112.7900484","46.1668497"],["-112.7905009","46.1654909"],["-112.7908674","46.1641471"],["-112.7999475","46.1176844"],["-112.7999908","46.1169905"],["-112.7999486","46.1162351"],["-112.799809","46.1155061"],["-112.7904337","46.0880409"],["-112.7900325","46.0869003"],["-112.7890978","46.084152"],["-112.7870573","46.078156"],["-112.7863407","46.0761519"],["-112.7857578","46.074974"],["-112.7850082","46.0737829"],["-112.7843473","46.0729149"],["-112.7834273","46.0718796"],["-112.7820772","46.0706374"],["-112.7805783","46.0694969"],["-112.7598096","46.0555209"],["-112.7583908","46.0545693"],["-112.7429115","46.0441391"],["-112.7415202","46.0431164"],["-112.7402636","46.0420509"],["-112.7392388","46.0410068"],["-112.7383718","46.0399406"],["-112.7374571","46.0385863"],["-112.7312319","46.0290983"],["-112.7286759","46.0251956"],["-112.7277546","46.0240885"],["-112.7268546","46.023279"],["-112.7124266","46.0122152"],["-112.7111338","46.0114531"],["-112.7099268","46.0109243"],["-112.7087162","46.0105503"],["-112.7074148","46.0102399"],["-112.7057294","46.0100275"],["-112.7023677","46.0099708"],["-112.6884678","46.0099262"],["-112.687403","46.0099002"],["-112.6856297","46.0098266"],["-112.6817115","46.0095185"],["-112.6560824","46.0069676"],["-112.6544066","46.0068935"],["-112.652814","46.0068935"],["-112.6280817","46.0087121"],["-112.6271002","46.008674"],["-112.626008","46.0086021"],["-112.6254737","46.0085543"],["-112.6125591","46.0067563"],["-112.6113603","46.0066204"],["-112.6082704","46.0064328"],["-112.5766926","46.005222"],["-112.5763269","46.005198"],["-112.575934","46.0051594"],["-112.5752253","46.005055"],["-112.5749507","46.0050017"],["-112.5745323","46.0048912"],["-112.5743414","46.0048333"],["-112.5741158","46.0047531"],["-112.5738474","46.0046452"],["-112.5735541","46.0045124"],["-112.5732405","46.0043599"],["-112.572985","46.0042118"],["-112.5727681","46.0040815"],["-112.5725654","46.0039455"],["-112.5723767","46.0038087"],["-112.5722278","46.0036911"],["-112.5720705","46.0035603"],["-112.5719117","46.0034069"],["-112.5717365","46.0032241"],["-112.5715784","46.0030475"],["-112.5714091","46.0028513"],["-112.5693864","46.0003335"],["-112.5690663","45.9999304"],["-112.5688008","45.9995684"],["-112.5670942","45.9974878"],["-112.5667389","45.9970974"],["-112.566546","45.9969034"],["-112.5663022","45.9966838"],["-112.5657847","45.9962822"],["-112.5655231","45.9961133"],["-112.5652308","45.9959414"],["-112.5649599","45.9958009"],["-112.5647011","45.9956777"],["-112.5643715","45.995538"],["-112.5640388","45.9954121"],["-112.5635189","45.9952359"],["-112.5558762","45.9930012"],["-112.5542584","45.992572"],["-112.5534308","45.9924507"],["-112.5525826","45.9923682"],["-112.5512026","45.9923551"],["-112.5333241","45.9923866"],["-112.5323108","45.9923"],["-112.5313298","45.9920877"],["-112.5304032","45.9918614"],["-112.5295504","45.991565"],["-112.5183296","45.9871931"],["-112.5167236","45.9866057"],["-112.5145285","45.9860077"],["-112.5097945","45.984773"],["-112.5091397","45.9845858"],["-112.508489","45.9843645"],["-112.5081483","45.9842282"],["-112.5078446","45.9840995"],["-112.50754","45.9839374"],["-112.5072808","45.9837924"],["-112.5069286","45.9835697"],["-112.506121","45.9830105"],["-112.5041522","45.981286"],["-112.5036064","45.9809023"],["-112.5030536","45.9805925"],["-112.5027484","45.980446"],["-112.502017","45.9801528"],["-112.5015174","45.9799905"],["-112.5008767","45.9798156"],["-112.49996","45.9796364"],["-112.4989817","45.9795636"],["-112.498078","45.9795487"],["-112.4971389","45.9796777"],["-112.4961927","45.9798475"],["-112.4949796","45.9801824"],["-112.4938666","45.9804958"],["-112.4928323","45.9807772"],["-112.4920936","45.9809107"],["-112.4911793","45.9810403"],["-112.490339","45.9811167"],["-112.4897765","45.9811494"],["-112.4857717","45.9811796"],["-112.4847312","45.9811735"],["-112.4843506","45.9811463"],["-112.4839849","45.9811123"],["-112.4836315","45.9810723"],["-112.4830233","45.9809607"],["-112.4826657","45.9808825"],["-112.4823299","45.9807911"],["-112.4819247","45.9806613"],["-112.4814887","45.9804842"],["-112.4809234","45.9802484"],["-112.4803666","45.9799584"],["-112.4799483","45.9796796"],["-112.4797096","45.9795065"],["-112.4793502","45.9792211"],["-112.4791545","45.9790305"],["-112.4788379","45.9786953"],["-112.4786722","45.9785054"],["-112.47835","45.9780403"],["-112.4777919","45.9771106"],["-112.477325","45.9763137"],["-112.4768362","45.9754534"],["-112.4765805","45.9748882"],["-112.476508","45.9746259"],["-112.4752992","45.9686087"],["-112.4749465","45.967328"],["-112.4744725","45.9660497"],["-112.4737639","45.9645051"],["-112.4656019","45.9472421"],["-112.4650528","45.9461834"],["-112.4647117","45.945669"],["-112.4643327","45.9451926"],["-112.4636683","45.9445434"],["-112.4629677","45.9439213"],["-112.4620766","45.9433288"],["-112.4597153","45.9419959"],["-112.4588888","45.9414341"],["-112.4583398","45.9409508"],["-112.4575919","45.9400973"],["-112.456631","45.9386629"],["-112.4560585","45.9378661"],["-112.4555667","45.9372904"],["-112.4538318","45.9355334"],["-112.4533204","45.934878"],["-112.4519939","45.9331134"],["-112.4514044","45.9323273"],["-112.4507986","45.9315298"],["-112.4503639","45.9310128"],["-112.4499595","45.9306452"],["-112.4494369","45.9303066"],["-112.4485737","45.9298987"],["-112.446344","45.9289612"],["-112.4457863","45.9286324"],["-112.4453091","45.9282615"],["-112.4449489","45.92783"],["-112.4446595","45.9274114"],["-112.4444444","45.9269832"],["-112.4441216","45.9261165"],["-112.4437614","45.9255351"],["-112.4434865","45.9252474"],["-112.4429876","45.9248493"],["-112.4421276","45.924375"],["-112.4402124","45.9236968"],["-112.4393724","45.9232936"],["-112.4386015","45.9227083"],["-112.4374995","45.9218247"],["-112.4364519","45.9209898"],["-112.4360614","45.9207221"],["-112.4355597","45.9204764"],["-112.4349314","45.9202505"],["-112.4341111","45.9200834"],["-112.4334734","45.9200154"],["-112.432379","45.9200238"],["-112.4298376","45.9201071"],["-112.4287481","45.9200742"],["-112.4280682","45.9199668"],["-112.4273874","45.9197888"],["-112.4266496","45.9195801"],["-112.4257774","45.9193771"],["-112.4249837","45.9192766"],["-112.4245236","45.9192622"],["-112.4238724","45.9193082"],["-112.423022","45.919465"],["-112.4224413","45.919627"],["-112.4216288","45.9200367"],["-112.4202675","45.9208482"],["-112.419755","45.9210937"],["-112.4191008","45.9213079"],["-112.418518","45.92142"],["-112.4180807","45.9214486"],["-112.4176027","45.9214639"],["-112.4170276","45.9214464"],["-112.416319","45.9213431"],["-112.4151613","45.9209554"],["-112.4114334","45.9191484"],["-112.4103514","45.9187098"],["-112.4094953","45.918442"],["-112.4088398","45.9183156"],["-112.4058407","45.9179866"],["-112.3993816","45.917328"],["-112.3924193","45.9165591"],["-112.3885156","45.9159301"],["-112.3865269","45.9156804"],["-112.3846733","45.9155909"],["-112.3813328","45.9155179"],["-112.3792278","45.9153619"],["-112.3759153","45.9149477"],["-112.374461","45.9148243"],["-112.373257","45.9148415"],["-112.3711411","45.9150448"],["-112.3699155","45.9151121"],["-112.3690645","45.9150764"],["-112.3674849","45.9148699"],["-112.3616964","45.9139742"],["-112.359961","45.9136695"],["-112.3586258","45.9132598"],["-112.3523218","45.911007"],["-112.3517457","45.9108403"],["-112.3511714","45.9107282"],["-112.3506579","45.9106632"],["-112.3501007","45.9106741"],["-112.3491069","45.9107925"],["-112.3446503","45.9113899"],["-112.3431838","45.9114834"],["-112.3419058","45.9114124"],["-112.3409539","45.911276"],["-112.3391175","45.9109201"],["-112.3382924","45.9108185"],["-112.3376559","45.9108072"],["-112.3370923","45.9108865"],["-112.3358604","45.9111488"],["-112.333491","45.9116658"],["-112.3329565","45.9117326"],["-112.3322555","45.9117441"],["-112.3316966","45.9116858"],["-112.3311995","45.9115673"],["-112.330676","45.9113643"],["-112.3303457","45.9111958"],["-112.3299768","45.9109359"],["-112.3296289","45.9105924"],["-112.3293989","45.910227"],["-112.3291298","45.9096902"],["-112.3288239","45.9089615"],["-112.3286231","45.9086022"],["-112.3283862","45.908315"],["-112.3279043","45.9079349"],["-112.3273884","45.9075958"],["-112.3269099","45.9074254"],["-112.3263621","45.9073129"],["-112.3258091","45.9072521"],["-112.3252992","45.9072377"],["-112.3247567","45.9072758"],["-112.324146","45.9074012"],["-112.3234419","45.9077059"],["-112.3226252","45.9082188"],["-112.3215373","45.9090667"],["-112.3206876","45.9095595"],["-112.3198467","45.9098108"],["-112.3186794","45.9099432"],["-112.3082593","45.9101979"],["-112.3052925","45.9104197"],["-112.3030892","45.9106886"],["-112.3006759","45.9110588"],["-112.297811","45.9116275"],["-112.2953494","45.9122517"],["-112.2884051","45.9144097"],["-112.2874584","45.9146625"],["-112.2865132","45.9148195"],["-112.2856383","45.9148559"],["-112.2845587","45.9147772"],["-112.2806403","45.9140884"],["-112.2785024","45.9137443"],["-112.2765881","45.9136663"],["-112.2740357","45.9136435"],["-112.2725962","45.9135667"],["-112.2714457","45.9133833"],["-112.2703934","45.9131028"],["-112.268083","45.9121939"],["-112.2624517","45.9098844"],["-112.2589334","45.9085076"],["-112.2568496","45.9078628"],["-112.2541077","45.9071698"],["-112.2503268","45.9065174"],["-112.2205031","45.9017167"],["-112.1190401","45.8809353"],["-112.104787","45.8780547"],["-112.1005238","45.8774152"],["-112.0964457","45.8769246"],["-112.0941834","45.8767337"],["-112.0913775","45.8765329"],["-112.0863602","45.8763109"],["-112.0843715","45.8762948"],["-112.0620331","45.8763145"],["-112.058853","45.8761652"],["-112.0570614","45.8760123"],["-112.0554463","45.8758346"],["-112.0535515","45.8755802"],["-112.0517442","45.8752501"],["-112.0493723","45.8747514"],["-112.046819","45.8741099"],["-112.0446214","45.8734639"],["-112.0409152","45.872197"],["-112.0394918","45.871838"],["-112.0384252","45.8716897"],["-112.0372983","45.8716411"],["-112.0363648","45.8716715"],["-112.0313097","45.8724595"],["-112.0085129","45.8761664"],["-112.0055117","45.8766042"],["-112.0039286","45.8767071"],["-112.0021022","45.8766962"],["-112.0007006","45.876597"],["-111.9989533","45.8763749"],["-111.9568171","45.8699333"],["-111.955163","45.8697487"],["-111.954098","45.8696803"],["-111.9527223","45.8696526"],["-111.9503117","45.8697543"],["-111.9443757","45.8701165"],["-111.9423113","45.8703378"],["-111.9408101","45.8706142"],["-111.9392856","45.8710592"],["-111.9374502","45.8718331"],["-111.9348713","45.8731284"],["-111.9335334","45.8737826"],["-111.9329941","45.8739801"],["-111.9323168","45.874177"],["-111.9313066","45.8743774"],["-111.9297206","45.874647"],["-111.928534","45.8749717"],["-111.927665","45.8753262"],["-111.9266683","45.8758785"],["-111.9258046","45.8765691"],["-111.9247244","45.8777396"],["-111.9241443","45.8782776"],["-111.9232239","45.878885"],["-111.9205736","45.8803253"],["-111.9188616","45.8810988"],["-111.9175163","45.8815733"],["-111.9164259","45.8818866"],["-111.9153276","45.8821381"],["-111.9143983","45.8823309"],["-111.9133611","45.8824717"],["-111.9122596","45.8825845"],["-111.9111065","45.8826639"],["-111.9088568","45.8826612"],["-111.9069385","45.8824841"],["-111.9040305","45.8820573"],["-111.9027548","45.8818367"],["-111.9020191","45.8816247"],["-111.9004581","45.8810458"],["-111.8994522","45.8806567"],["-111.8989622","45.880431"],["-111.8985081","45.8801284"],["-111.8980961","45.8798181"],["-111.8977239","45.8794079"],["-111.8974271","45.8789113"],["-111.8969981","45.8778298"],["-111.89675","45.8773126"],["-111.8963851","45.8768576"],["-111.8959665","45.8764349"],["-111.8954518","45.8760484"],["-111.8949404","45.8757584"],["-111.8943413","45.8755113"],["-111.8938038","45.8753308"],["-111.8930357","45.8751739"],["-111.8921888","45.875066"],["-111.8913373","45.8750611"],["-111.8904298","45.8751734"],["-111.8894438","45.8754346"],["-111.8863129","45.8766749"],["-111.8848711","45.8773627"],["-111.883263","45.8781613"],["-111.8822221","45.8785709"],["-111.8816286","45.8787246"],["-111.8810249","45.8788288"],["-111.8798262","45.8789235"],["-111.8774345","45.8790354"],["-111.8757556","45.8791636"],["-111.8743699","45.879484"],["-111.8729962","45.8800994"],["-111.8723165","45.8805551"],["-111.8717751","45.8810718"],["-111.8715524","45.8813135"],["-111.8713963","45.8815046"],["-111.8707174","45.8824402"],["-111.8704139","45.8828471"],["-111.8702388","45.8830507"],["-111.8700656","45.8832322"],["-111.8698535","45.8834282"],["-111.8694292","45.8837502"],["-111.8689451","45.8840606"],["-111.8676365","45.8847953"],["-111.8648216","45.8862989"],["-111.8619203","45.8878113"],["-111.8576851","45.889645"],["-111.8535313","45.8914057"],["-111.850864","45.892485"],["-111.8496905","45.8928763"],["-111.848673","45.8931666"],["-111.8402461","45.8950154"],["-111.8260313","45.8981108"],["-111.8194093","45.8997178"],["-111.7967179","45.9069743"],["-111.7909971","45.9087425"],["-111.7893957","45.9091012"],["-111.770154","45.9121068"],["-111.756205","45.9142325"],["-111.7538282","45.9144525"],["-111.7509551","45.9146102"],["-111.7269707","45.9146959"],["-111.7239194","45.9147957"],["-111.7222324","45.9149727"],["-111.7201109","45.9153323"],["-111.7170404","45.9161435"],["-111.7118116","45.9177156"],["-111.7072951","45.9190718"],["-111.7060765","45.9193708"],["-111.7048232","45.9196258"],["-111.7035895","45.9198202"],["-111.7021249","45.9199676"],["-111.7006724","45.9200658"],["-111.6993677","45.9200955"],["-111.6695485","45.9191909"],["-111.6675702","45.9192498"],["-111.664086","45.9195138"],["-111.6602366","45.9198083"],["-111.6553266","45.920171"],["-111.6521952","45.9202484"],["-111.6366289","45.9194322"],["-111.616917","45.9184412"],["-111.5723333","45.9183422"],["-111.563877","45.9183579"],["-111.562509","45.9182812"],["-111.5614465","45.9181704"],["-111.5602094","45.9179803"],["-111.5589046","45.917707"],["-111.5575673","45.9173553"],["-111.556406","45.9169541"],["-111.5553713","45.916555"],["-111.554354","45.9160732"],["-111.5533743","45.9155648"],["-111.5525334","45.915035"],["-111.5516887","45.9144464"],["-111.5510036","45.9138821"],["-111.5503042","45.9132644"],["-111.5493656","45.912255"],["-111.5480794","45.9106583"],["-111.5472682","45.9096611"],["-111.5451723","45.9070531"],["-111.5443508","45.9061653"],["-111.5437264","45.9055927"],["-111.5430204","45.9050332"],["-111.5421817","45.9044518"],["-111.5414631","45.9040324"],["-111.5405359","45.903555"],["-111.5396448","45.9031539"],["-111.5387286","45.9028325"],["-111.5372499","45.9023707"],["-111.5260477","45.8992042"],["-111.5230021","45.8984555"],["-111.5209418","45.898082"],["-111.5192986","45.8978634"],["-111.5179585","45.8977331"],["-111.5166141","45.8976521"],["-111.5146816","45.8975967"],["-111.5108414","45.8975456"],["-111.508958","45.8974749"],["-111.5062048","45.8972652"],["-111.5042407","45.8970621"],["-111.5030756","45.8969016"],["-111.4645301","45.8903743"],["-111.4629261","45.8900351"],["-111.4616485","45.8896729"],["-111.4604021","45.8892464"],["-111.4592114","45.8887706"],["-111.458136","45.8882385"],["-111.4564873","45.887252"],["-111.4538959","45.8854115"],["-111.4528095","45.8847369"],["-111.4518912","45.8842536"],["-111.4508785","45.8837776"],["-111.449716","45.8833329"],["-111.4482431","45.8828617"],["-111.4464597","45.8824212"],["-111.4453767","45.8822356"],["-111.4443477","45.8820974"],["-111.4433376","45.8820031"],["-111.4417391","45.8819372"],["-111.4320421","45.8818024"],["-111.4307866","45.8817607"],["-111.429258","45.8816655"],["-111.4277617","45.8814743"],["-111.4264687","45.8812409"],["-111.4191858","45.8795255"],["-111.3906212","45.8727289"],["-111.3816512","45.8700668"],["-111.3553817","45.8602091"],["-111.3531897","45.8593116"],["-111.3519053","45.8586355"],["-111.3509229","45.8580389"],["-111.3499093","45.8573107"],["-111.3489154","45.8564751"],["-111.3467565","45.8543266"],["-111.3453865","45.8530902"],["-111.3446936","45.852574"],["-111.343904","45.8520524"],["-111.3422389","45.8511391"],["-111.3405475","45.8503985"],["-111.3393469","45.8499819"],["-111.3379185","45.8495765"],["-111.3363023","45.8492602"],["-111.3338232","45.8488836"],["-111.3321385","45.8486598"],["-111.3199778","45.8470921"],["-111.3181471","45.8467829"],["-111.3165938","45.8464458"],["-111.3152469","45.8460665"],["-111.3134506","45.8454438"],["-111.3122173","45.8449397"],["-111.3109447","45.8443387"],["-111.2958161","45.8362854"],["-111.2943573","45.8355095"],["-111.2845643","45.8302702"],["-111.2784636","45.8270104"],["-111.2773113","45.826385"],["-111.275272","45.8252983"],["-111.2743016","45.8247974"],["-111.272228","45.8237176"],["-111.2716646","45.8234246"],["-111.2652142","45.8200909"],["-111.2593821","45.817084"],["-111.2580359","45.8163939"],["-111.2075374","45.7903487"],["-111.2062604","45.7895736"],["-111.2051773","45.7887664"],["-111.2041252","45.7878678"],["-111.2032275","45.7869429"],["-111.2024818","45.7859534"],["-111.201805","45.7849263"],["-111.2013676","45.7839122"],["-111.2010037","45.7827656"],["-111.2001525","45.7790426"],["-111.1998215","45.7780159"],["-111.1994799","45.7772634"],["-111.1988177","45.7761234"],["-111.1981859","45.7752267"],["-111.197435","45.7743771"],["-111.1965766","45.7735349"],["-111.1957117","45.7728183"],["-111.1943603","45.7718912"],["-111.1933955","45.7713355"],["-111.1922895","45.7707858"],["-111.1903716","45.7700277"],["-111.1231665","45.7463605"],["-111.1215266","45.7456743"],["-111.1199501","45.7449519"],["-111.1078967","45.7387403"],["-111.0678097","45.7179507"],["-111.0665698","45.7171517"],["-111.0656891","45.7165068"],["-111.0649455","45.7158814"],["-111.0642418","45.7152237"],["-111.0632224","45.7139265"],["-111.0627943","45.7132593"],["-111.0622758","45.7122345"],["-111.0618686","45.7111538"],["-111.0617105","45.7104706"],["-111.0615681","45.7091029"],["-111.0614413","45.707909"],["-111.0612533","45.7068887"],["-111.0609812","45.7059971"],["-111.0606491","45.7052023"],["-111.0600874","45.7042192"],["-111.0593385","45.7031524"],["-111.0588648","45.7025951"],["-111.0583528","45.7020534"],["-111.0572895","45.701118"],["-111.0564566","45.7005099"],["-111.0555214","45.699871"],["-111.0540672","45.6991214"],["-111.0528645","45.6986057"],["-111.0512215","45.6980234"],["-111.0496983","45.69764"],["-111.0360961","45.6946695"],["-111.0328139","45.6938676"],["-111.0302634","45.6932205"],["-111.0286161","45.6927931"],["-111.02578","45.691988"],["-111.0249097","45.6916832"],["-111.0240265","45.6913413"],["-111.0226917","45.6907211"],["-111.0212402","45.6899514"],["-111.0202874","45.6893805"],["-111.019437","45.6887872"],["-111.0187038","45.6882424"],["-111.0179954","45.6876541"],["-111.0173463","45.6870666"],["-111.016127","45.6857583"],["-111.0148596","45.6843524"],["-111.0132346","45.6825314"],["-111.0128729","45.6820298"],["-111.0126009","45.6815207"],["-111.0124196","45.6809924"],["-111.0122535","45.6800488"],["-111.0121438","45.6792497"],["-111.012077","45.6786162"],["-111.011935","45.6776477"],["-111.0117834","45.6770544"],["-111.0116032","45.67652"],["-111.0113546","45.6760212"],["-111.0109604","45.6754631"],["-111.0105462","45.6749627"],["-111.0101462","45.6745612"],["-111.009441","45.6739951"],["-111.0089922","45.6736869"],["-111.0084228","45.6733528"],["-111.0076818","45.6730177"],["-111.0069745","45.6727443"],["-111.0065386","45.6725979"],["-110.9942098","45.6695351"],["-110.9734413","45.6643822"],["-110.9662905","45.663169"],["-110.9568275","45.6616268"],["-110.9542398","45.6611632"],["-110.9534819","45.6609539"],["-110.9527572","45.6607036"],["-110.952145","45.6604432"],["-110.9515181","45.6601056"],["-110.9509533","45.6597005"],["-110.9503328","45.6592079"],["-110.9488782","45.6577711"],["-110.945743","45.6544451"],["-110.9443596","45.6529495"],["-110.9431138","45.65163"],["-110.9413268","45.6497615"],["-110.9408367","45.6493568"],["-110.9403609","45.6490217"],["-110.9398781","45.648732"],["-110.9393722","45.6484614"],["-110.9387785","45.6481902"],["-110.9383043","45.6480095"],["-110.9376751","45.647803"],["-110.9317952","45.6461951"],["-110.9307679","45.6458522"],["-110.9300427","45.6455232"],["-110.929251","45.6450359"],["-110.9281092","45.6441893"],["-110.9274499","45.6437585"],["-110.9270038","45.6435084"],["-110.9264147","45.6432527"],["-110.9260221","45.643109"],["-110.92549","45.6429364"],["-110.9221877","45.6420131"],["-110.9204083","45.6414271"],["-110.9165929","45.6401067"],["-110.9152981","45.6396924"],["-110.9147278","45.6395704"],["-110.9141027","45.6394909"],["-110.9134708","45.6394572"],["-110.912673","45.6394803"],["-110.912086","45.6395581"],["-110.9114274","45.6396878"],["-110.9087303","45.6405607"],["-110.901069","45.6429845"],["-110.8933664","45.6454612"],["-110.8896066","45.646616"],["-110.8889358","45.6467636"],["-110.8882792","45.6468709"],["-110.8875512","45.646927"],["-110.8868853","45.6469475"],["-110.8861003","45.646925"],["-110.8854119","45.6468592"],["-110.8812022","45.6463056"],["-110.8794345","45.6461109"],["-110.8786964","45.6461073"],["-110.877936","45.6461678"],["-110.877249","45.6462684"],["-110.8765342","45.6464376"],["-110.875458","45.6467864"],["-110.8742726","45.647338"],["-110.8732104","45.6478415"],["-110.872404","45.6482205"],["-110.8719434","45.6483878"],["-110.8714207","45.6485266"],["-110.8709191","45.648604"],["-110.870374","45.6486306"],["-110.8699481","45.6486127"],["-110.8692571","45.6485266"],["-110.8680264","45.648295"],["-110.867238","45.6481763"],["-110.8663472","45.6480966"],["-110.8656359","45.6481089"],["-110.8649993","45.6481876"],["-110.864289","45.6483556"],["-110.8635338","45.6485835"],["-110.8610812","45.6496926"],["-110.8552332","45.6524403"],["-110.8520651","45.6539795"],["-110.8510097","45.6546038"],["-110.849828","45.6553923"],["-110.8417747","45.6615655"],["-110.8399731","45.6628458"],["-110.8391957","45.6633164"],["-110.8383902","45.6637607"],["-110.8376548","45.6641184"],["-110.8368329","45.6644999"],["-110.8361282","45.6648043"],["-110.8354823","45.665056"],["-110.8344656","45.6654059"],["-110.8333928","45.6657451"],["-110.8325687","45.6659481"],["-110.8306097","45.6663887"],["-110.8295555","45.6665528"],["-110.8280859","45.6667245"],["-110.825936","45.6668523"],["-110.8170576","45.6670644"],["-110.8095289","45.6673675"],["-110.8076684","45.6673822"],["-110.8068045","45.6672933"],["-110.8060937","45.667152"],["-110.8054056","45.6669627"],["-110.8043976","45.6665575"],["-110.8032281","45.6659018"],["-110.8017134","45.6648477"],["-110.8008735","45.664336"],["-110.8000969","45.6639726"],["-110.7993407","45.6637186"],["-110.7983397","45.663502"],["-110.7961386","45.6631513"],["-110.7950432","45.6629405"],["-110.7944684","45.6627624"],["-110.7937963","45.6625258"],["-110.7915502","45.6616709"],["-110.7784152","45.6566853"],["-110.7768106","45.6561485"],["-110.7759847","45.6559859"],["-110.7751532","45.6559046"],["-110.7743385","45.6558742"],["-110.7735168","45.6559139"],["-110.7725459","45.656025"],["-110.7709487","45.6564208"],["-110.7691779","45.656899"],["-110.7666143","45.6575958"],["-110.7642105","45.6580576"],["-110.7514025","45.659854"],["-110.7501206","45.6601097"],["-110.7492832","45.6603286"],["-110.7480727","45.660702"],["-110.7468668","45.6610735"],["-110.7459598","45.6613241"],["-110.7452471","45.6614769"],["-110.7443928","45.6616417"],["-110.7435389","45.6617466"],["-110.7424961","45.6618559"],["-110.741602","45.6618961"],["-110.740764","45.6618998"],["-110.7399946","45.6618869"],["-110.7394313","45.6618466"],["-110.7386671","45.6617611"],["-110.7376712","45.6616275"],["-110.734838","45.6611723"],["-110.734029","45.6610809"],["-110.7333821","45.6610414"],["-110.7325549","45.6610509"],["-110.7318172","45.6611227"],["-110.73065","45.6612858"],["-110.728684","45.6616333"],["-110.7275389","45.6617963"],["-110.7263296","45.6618748"],["-110.7137054","45.6623508"],["-110.708387","45.6624323"],["-110.7048118","45.6622494"],["-110.7029121","45.6621161"],["-110.7008233","45.6619672"],["-110.6995848","45.6619773"],["-110.6982115","45.6620287"],["-110.696821","45.6621373"],["-110.6951902","45.6623466"],["-110.6887006","45.6633132"],["-110.6868572","45.6635561"],["-110.6859827","45.6636101"],["-110.6850956","45.6636255"],["-110.6840567","45.663613"],["-110.6829298","45.6635348"],["-110.6819882","45.6634151"],["-110.681038","45.6632638"],["-110.6802394","45.6631032"],["-110.6794143","45.6628858"],["-110.6783391","45.6625507"],["-110.6740742","45.6608227"],["-110.672509","45.6602219"],["-110.6715992","45.6599649"],["-110.6707935","45.6597765"],["-110.6702745","45.6597042"],["-110.6696499","45.6596411"],["-110.6689193","45.6596152"],["-110.6680062","45.6596236"],["-110.6641447","45.6598619"],["-110.6620497","45.6599267"],["-110.6604069","45.6599406"],["-110.6580514","45.6598828"],["-110.6569708","45.6598557"],["-110.6550093","45.6597955"],["-110.6541994","45.6598252"],["-110.6533345","45.6599034"],["-110.6523592","45.6600204"],["-110.6514775","45.6601754"],["-110.6507189","45.6603299"],["-110.6492053","45.6607019"],["-110.6474155","45.6611554"],["-110.6462648","45.6614217"],["-110.645484","45.6615714"],["-110.644737","45.6616611"],["-110.6440878","45.6617075"],["-110.6434074","45.661714"],["-110.6426999","45.6617038"],["-110.6420032","45.6616668"],["-110.6413607","45.6615753"],["-110.6406942","45.6614591"],["-110.6400264","45.6613119"],["-110.6394299","45.661157"],["-110.6388967","45.6609794"],["-110.6382401","45.6607169"],["-110.6346728","45.6591379"],["-110.6329057","45.6583777"],["-110.6305438","45.6574047"],["-110.6272222","45.6561155"],["-110.6217951","45.6543127"],["-110.6036723","45.6484163"],["-110.6018431","45.6479024"],["-110.5989038","45.6473362"],["-110.5837106","45.6447867"],["-110.5817264","45.6445144"],["-110.5801303","45.6443679"],["-110.5780734","45.6443166"],["-110.5728433","45.644324"],["-110.5719345","45.6442513"],["-110.5717729","45.6442321"],["-110.5716274","45.6442084"],["-110.5714813","45.6441725"],["-110.5712883","45.6441022"],["-110.571197","45.6440489"],["-110.5711087","45.6439759"],["-110.5710367","45.6439051"],["-110.5709383","45.643727"],["-110.5709305","45.6436147"],["-110.5709533","45.6434944"],["-110.5709992","45.6434127"],["-110.5710764","45.6433354"],["-110.5711805","45.6432624"],["-110.5713163","45.6432049"],["-110.5714276","45.6431672"],["-110.5715792","45.6431325"],["-110.5717352","45.6431246"],["-110.5719348","45.6431344"],["-110.5736976","45.6433266"],["-110.5739203","45.6432778"],["-110.5740549","45.6425676"],["-110.5740575","45.642268"],["-110.574167","45.6417218"],["-110.5742218","45.6414152"],["-110.5744702","45.6402592"],["-110.5746833","45.6393093"],["-110.5779844","45.6243638"],["-110.5786666","45.6212545"],["-110.5788303","45.62045"],["-110.5789605","45.6197805"],["-110.5790088","45.6182511"],["-110.5789525","45.6169874"],["-110.5787674","45.6158672"],["-110.5784301","45.6145905"],["-110.5771618","45.6112756"],["-110.5767109","45.6100086"],["-110.5744976","45.6043494"],["-110.5739159","45.6028146"],["-110.5727153","45.5996052"],["-110.5723385","45.5985829"],["-110.5721893","45.5982805"],["-110.5711892","45.5957143"],["-110.5710585","45.5952312"],["-110.5709562","45.5935141"],["-110.5712975","45.5923616"],["-110.5716833","45.5914545"],["-110.572113","45.5905759"],["-110.5724026","45.5899024"],["-110.5726231","45.5891862"],["-110.573142","45.58792"],["-110.5740858","45.5862311"],["-110.5744472","45.5855652"],["-110.5747213","45.5851765"],["-110.575462","45.5842472"],["-110.5759596","45.5837117"],["-110.5765628","45.5831362"],["-110.5772814","45.5825396"],["-110.5828397","45.5782675"],["-110.5838855","45.5774311"],["-110.5847518","45.576655"],["-110.5855117","45.5759123"],["-110.5860377","45.5753328"],["-110.5864856","45.5748149"],["-110.5875738","45.5734236"],["-110.5877683","45.5731142"],["-110.5882387","45.5723663"],["-110.5887822","45.5714682"],["-110.5893648","45.5701347"],["-110.5921452","45.563322"],["-110.5933058","45.560439"],["-110.6143534","45.5079416"],["-110.6152756","45.5056589"],["-110.6209489","45.4913628"],["-110.624846","45.4782455"],["-110.6254275","45.4761416"],["-110.6256015","45.4750356"],["-110.6257398","45.4729798"],["-110.6261643","45.4665846"],["-110.6266838","45.4595521"],["-110.6268623","45.458395"],["-110.6270826","45.4575227"],["-110.627414","45.4566422"],["-110.6278695","45.4555512"],["-110.6284035","45.454354"],["-110.6298458","45.451176"],["-110.6375797","45.434373"],["-110.6381482","45.4333359"],["-110.6386858","45.4324762"],["-110.6397679","45.431218"],["-110.6409715","45.4299727"],["-110.6424679","45.4287873"],["-110.6439945","45.427733"],["-110.645734","45.426796"],["-110.6472778","45.4261069"],["-110.6634241","45.4206883"],["-110.665595","45.419973"],["-110.6665235","45.4198077"],["-110.6677077","45.4196637"],["-110.6755299","45.4191236"],["-110.6776711","45.4189307"],["-110.6790826","45.418715"],["-110.6804549","45.418432"],["-110.6816766","45.4181282"],["-110.6833152","45.417641"],["-110.6842432","45.4172901"],["-110.6857727","45.4166222"],["-110.6865918","45.4162164"],["-110.6878707","45.4155244"],["-110.6901242","45.4140958"],["-110.6967309","45.4098317"],["-110.6980986","45.4089124"],["-110.6989582","45.4082538"],["-110.699646","45.4076791"],["-110.7004182","45.4069716"],["-110.7011196","45.4062252"],["-110.701764","45.4054958"],["-110.7027987","45.4041237"],["-110.7134604","45.3894709"],["-110.7140554","45.3887541"],["-110.7146507","45.3881458"],["-110.7166193","45.3861221"],["-110.732911","45.3693711"],["-110.7346818","45.36753"],["-110.7426669","45.3592955"],["-110.7476297","45.3541767"],["-110.7562307","45.34531"],["-110.7572229","45.3444133"],["-110.7583006","45.3437167"],["-110.7588839","45.3434389"],["-110.7594728","45.3432066"],["-110.7602532","45.3429624"],["-110.7610615","45.3427376"],["-110.7619746","45.3423861"],["-110.7627775","45.3419716"],["-110.7633747","45.3415676"],["-110.7640776","45.3409933"],["-110.7653682","45.3398529"],["-110.7695912","45.3360269"],["-110.7738328","45.332349"],["-110.7751704","45.3313522"],["-110.7765135","45.3305357"],["-110.7778524","45.3297727"],["-110.7794972","45.3289695"],["-110.7806961","45.3283984"],["-110.7817039","45.3279332"],["-110.8089131","45.3161428"],["-110.8135014","45.3141792"],["-110.8147385","45.3136511"],["-110.8153511","45.3133408"],["-110.8158595","45.3130402"],["-110.8162624","45.3127699"],["-110.8166886","45.3124598"],["-110.8171322","45.3121075"],["-110.8343465","45.2964848"],["-110.8456557","45.2847907"],["-110.8470754","45.283489"],["-110.8545133","45.2778268"],["-110.8561564","45.2765074"],["-110.8571535","45.2754956"],["-110.8578667","45.2746593"],["-110.8584545","45.273938"],["-110.8589882","45.2731404"],["-110.8599104","45.2714684"],["-110.8608889","45.2696157"],["-110.8617334","45.2680237"],["-110.8626472","45.2662882"],["-110.8633204","45.2650322"],["-110.8638281","45.2640452"],["-110.8642268","45.2633348"],["-110.8646142","45.2626364"],["-110.8653476","45.2612942"],["-110.8659888","45.2600447"],["-110.8674464","45.2572722"],["-110.8677449","45.2563216"],["-110.8680695","45.2546661"],["-110.8682599","45.2530759"],["-110.8695185","45.2438719"],["-110.8698881","45.2415029"],["-110.8701664","45.2404801"],["-110.8706057","45.2394675"],["-110.871361","45.2381472"],["-110.8731338","45.2354791"],["-110.8819634","45.2219979"],["-110.8970921","45.2032231"],["-110.8985034","45.2014587"],["-110.8988517","45.2009782"],["-110.8991387","45.2005418"],["-110.8994011","45.2001078"],["-110.8996037","45.1996743"],["-110.8998428","45.1989308"],["-110.9000462","45.1981321"],["-110.9001439","45.196952"],["-110.8999561","45.1955295"],["-110.8995729","45.1935915"],["-110.8991695","45.1924596"],["-110.8978442","45.1897314"],["-110.8973668","45.1887902"],["-110.8969052","45.188195"],["-110.8964177","45.1878354"],["-110.8958853","45.1875089"],["-110.8930037","45.1860171"],["-110.8912218","45.1848975"],["-110.8890174","45.182962"],["-110.8840548","45.1793498"],["-110.8833917","45.178779"],["-110.8826745","45.178051"],["-110.8822287","45.1775159"],["-110.8818179","45.1769402"],["-110.8814202","45.1764761"],["-110.8807783","45.176082"],["-110.8797348","45.1755584"],["-110.8787279","45.1750156"],["-110.8768932","45.1736551"],["-110.8759935","45.1731188"],["-110.8744698","45.1722035"],["-110.8739857","45.1719597"],["-110.8733445","45.1717972"],["-110.8708721","45.1713521"],["-110.8699253","45.1711485"],["-110.8684986","45.1707941"],["-110.8663621","45.1705511"],["-110.8641405","45.1702895"],["-110.8593899","45.1697751"],["-110.8574642","45.1695615"],["-110.8565274","45.1693703"],["-110.8545465","45.1687088"],["-110.850301","45.1672511"],["-110.8492465","45.1669367"],["-110.8483168","45.1667855"],["-110.8431288","45.1664341"],["-110.8415299","45.1662958"],["-110.840591","45.1661317"],["-110.8397758","45.1659326"],["-110.8391687","45.165724"],["-110.838386","45.1653404"],["-110.8343868","45.1630974"],["-110.8330642","45.1623506"],["-110.8320533","45.1616766"],["-110.8307064","45.1606144"],["-110.829682","45.1598205"],["-110.8292146","45.1595128"],["-110.8286506","45.1592006"],["-110.8272002","45.1586024"],["-110.8263769","45.1582983"],["-110.8257582","45.157972"],["-110.8249232","45.1574794"],["-110.8239252","45.1567501"],["-110.8221728","45.155413"],["-110.8211905","45.1544556"],["-110.8203433","45.1535073"],["-110.8194572","45.1523169"],["-110.8179061","45.1498828"],["-110.8168073","45.1481675"],["-110.8156088","45.1463059"],["-110.8146605","45.1450541"],["-110.7969141","45.1243819"],["-110.7962637","45.1235083"],["-110.7952237","45.1219288"],["-110.7941196","45.120001"],["-110.7920849","45.1162131"],["-110.7915483","45.1153222"],["-110.790065","45.112975"],["-110.7883165","45.1105556"],["-110.7868631","45.1086973"],["-110.7848891","45.1062333"],["-110.780355","45.100647"],["-110.7799183","45.1000773"],["-110.7797263","45.0997335"],["-110.7795556","45.0994017"],["-110.7793592","45.0988989"],["-110.7792703","45.0984019"],["-110.7792582","45.0980329"],["-110.7792988","45.0974564"],["-110.779461","45.0959039"],["-110.7794758","45.0952633"],["-110.7794457","45.0949274"],["-110.7793662","45.0946003"],["-110.7792573","45.0941934"],["-110.7790755","45.0937666"],["-110.7788719","45.0933921"],["-110.7786125","45.0930279"],["-110.7783038","45.0926612"],["-110.777973","45.0923222"],["-110.777661","45.0920662"],["-110.7771469","45.0916762"],["-110.7761026","45.0910068"],["-110.7757617","45.0907441"],["-110.7755392","45.0905521"],["-110.7753431","45.0903278"],["-110.7751163","45.0900526"],["-110.7749421","45.0897707"],["-110.7748375","45.089545"],["-110.7747309","45.0893014"],["-110.7746703","45.0890247"],["-110.7746555","45.0886403"],["-110.7746994","45.0882782"],["-110.7748317","45.0877685"],["-110.7757035","45.0858133"],["-110.7759564","45.0851585"],["-110.7760658","45.0847091"],["-110.7761264","45.0842695"],["-110.7761351","45.0838524"],["-110.7761114","45.0834292"],["-110.7760374","45.0829635"],["-110.7759358","45.0826339"],["-110.775755","45.0822106"],["-110.7755551","45.0818144"],["-110.7753201","45.0814346"],["-110.7750106","45.0810476"],["-110.774629","45.0806451"],["-110.7737297","45.0798074"],["-110.7720412","45.0782949"],["-110.7705121","45.0769196"],["-110.7700809","45.0764567"],["-110.7697907","45.0760719"],["-110.7695286","45.075646"],["-110.7692485","45.0751462"],["-110.7690396","45.074669"],["-110.7688306","45.073952"],["-110.7674675","45.0681391"],["-110.7672317","45.0673264"],["-110.7669221","45.0667426"],["-110.7665898","45.0661508"],["-110.7661867","45.0656097"],["-110.765438","45.064837"],["-110.7585146","45.0579961"],["-110.757273","45.0568959"],["-110.756225","45.0560359"],["-110.7552501","45.0552889"],["-110.7528663","45.0536187"],["-110.7497605","45.0518249"],["-110.74813","45.0509976"],["-110.7465774","45.0502973"],["-110.744619","45.049502"],["-110.7331577","45.0453568"],["-110.7319298","45.0448462"],["-110.7310934","45.0444011"],["-110.7302592","45.0438522"],["-110.7270252","45.0414314"],["-110.7242697","45.039333"],["-110.7237923","45.0389591"],["-110.723027","45.0384662"],["-110.7221779","45.038038"],["-110.7214217","45.0377582"],["-110.7123803","45.0353119"],["-110.710153","45.0347097"],["-110.7092438","45.0344638"],["-110.7069572","45.0338524"],["-110.7065422","45.033729"],["-110.706312","45.0336453"],["-110.7060772","45.0335286"],["-110.705835","45.033331"],["-110.7057039","45.0331664"],["-110.7056322","45.033043"],["-110.7055841","45.0329291"],["-110.705534","45.0327996"],["-110.7055205","45.0326928"],["-110.7055135","45.0324564"],["-110.7054846","45.0305069"],["-110.7054731","45.0297083"],["-110.705507","45.0296418"],["-110.7055414","45.0296043"],["-110.7055921","45.0295682"],["-110.7056613","45.0295372"],["-110.7057374","45.0295107"],["-110.7058573","45.0294951"],["-110.7072769","45.0294839"],["-110.7071994","45.0287652"],["-110.7028279","45.0264212"],["-110.702525","45.0262841"],["-110.7024223","45.0261674"],["-110.7022676","45.0260139"],["-110.7020654","45.0258956"],["-110.7018782","45.0258054"],["-110.7017659","45.025754"],["-110.701588","45.0256742"],["-110.7014198","45.0256396"],["-110.7011827","45.025604"],["-110.701157","45.0254906"],["-110.7011024","45.0254255"],["-110.7009329","45.0253059"],["-110.7007942","45.0252229"],["-110.7011302","45.0250619"],["-110.7014723","45.024872"],["-110.7021522","45.0244007"],["-110.7028482","45.0237497"],["-110.7029843","45.0235924"],["-110.7029882","45.0234924"],["-110.702818","45.0231813"],["-110.7025464","45.0227788"],["-110.7023466","45.0226355"],["-110.7021039","45.0224639"],["-110.7019402","45.022284"],["-110.7018223","45.0219905"],["-110.7016926","45.0217721"],["-110.7011142","45.0211634"],["-110.7005897","45.0201279"],["-110.7000561","45.0190316"],["-110.6996437","45.0179434"],["-110.6995937","45.0177511"],["-110.6995708","45.0175941"],["-110.6995649","45.0174683"],["-110.6995687","45.0173615"],["-110.699591","45.0172708"],["-110.6996714","45.0171537"],["-110.6998005","45.0170288"],["-110.699867","45.0169363"],["-110.6999214","45.0168443"],["-110.6999984","45.0166259"],["-110.7000006","45.0165453"],["-110.6999932","45.0163837"],["-110.7000023","45.0163061"],["-110.7000175","45.0162463"],["-110.7000763","45.0161949"],["-110.7001443","45.0161447"],["-110.7002576","45.016087"],["-110.7003216","45.016047"],["-110.7003498","45.0159941"],["-110.7003105","45.0159369"],["-110.7001975","45.0158903"],["-110.7000449","45.0158545"],["-110.6998899","45.0158373"],["-110.6997444","45.0158403"],["-110.6996268","45.0158668"],["-110.699483","45.0158901"],["-110.6993658","45.015904"],["-110.6992292","45.0158933"],["-110.6991158","45.0158517"],["-110.6986178","45.0156381"],["-110.6985357","45.0155823"],["-110.6984879","45.0155293"],["-110.6983837","45.0154512"],["-110.698015","45.0152554"],["-110.6976927","45.0149899"],["-110.6976725","45.0148463"],["-110.6977184","45.0147177"],["-110.6977741","45.0146203"],["-110.6978832","45.0145185"],["-110.6981033","45.0143921"],["-110.6984198","45.0142473"],["-110.6988517","45.014129"],["-110.6991442","45.0140876"],["-110.6992593","45.0140401"],["-110.6993064","45.0138939"],["-110.6993516","45.013408"],["-110.6994749","45.0129878"],["-110.6997032","45.0125196"],["-110.69987","45.012328"],["-110.700011","45.012175"],["-110.7000639","45.0120489"],["-110.7000613","45.0117483"],["-110.7001371","45.0115377"],["-110.7003617","45.0113427"],["-110.7005687","45.0112008"],["-110.7006196","45.0110689"],["-110.7005777","45.0107129"],["-110.7007249","45.0103814"],["-110.7006978","45.0100707"],["-110.7009313","45.0096583"],["-110.7011044","45.0093991"],["-110.7012713","45.0092296"],["-110.7018119","45.0089371"],["-110.7022994","45.0086954"],["-110.7026411","45.0084764"],["-110.7030154","45.0083981"],["-110.7034537","45.0082992"],["-110.7038756","45.0081449"],["-110.7040806","45.0078978"],["-110.7042885","45.0076329"],["-110.7044796","45.0074336"],["-110.7046612","45.0073285"],["-110.7048635","45.0072263"],["-110.7049296","45.0071012"],["-110.7049071","45.0069794"],["-110.7047908","45.0068494"],["-110.7044964","45.0068131"],["-110.7041015","45.0067307"],["-110.7038485","45.0066506"],["-110.7035911","45.0066227"],["-110.7034225","45.0065599"],["-110.7032728","45.0064414"],["-110.7031466","45.0062931"],["-110.7030921","45.0060553"],["-110.703098","45.0058899"],["-110.7031743","45.0057091"],["-110.7034701","45.0055267"],["-110.7035501","45.0054318"],["-110.7035342","45.0052302"],["-110.7035123","45.0049772"],["-110.7036132","45.0047614"],["-110.7039359","45.0043398"],["-110.7042378","45.0040299"],["-110.7044493","45.0038844"],["-110.7045811","45.0037791"],["-110.70461","45.0036213"],["-110.7045576","45.0034495"],["-110.7044367","45.0031702"],["-110.7044482","45.0030706"],["-110.7045075","45.0029704"],["-110.7046913","45.0027891"],["-110.7049174","45.0024203"],["-110.7050502","45.0020749"],["-110.7051348","45.0019128"],["-110.7052996","45.001486"],["-110.7054309","45.0013549"],["-110.7054233","45.0011983"],["-110.7053587","45.0008927"],["-110.7053742","45.0007784"],["-110.7055189","45.0005463"],["-110.7055896","45.0004521"],["-110.7056543","45.0004134"],["-110.7056716","45.0003424"],["-110.7056445","45.0002527"],["-110.7055621","45.0001328"],["-110.7051536","44.9998172"],["-110.7050183","44.999516"],["-110.7049417","44.9994239"],["-110.7047981","44.9993279"],["-110.7047443","44.9992217"],["-110.7047074","44.9989414"],["-110.7046122","44.9987825"],["-110.7044837","44.9986443"],["-110.7043826","44.9985263"],["-110.704283","44.9976817"],["-110.704192","44.9974289"],["-110.7038675","44.9971567"],["-110.7037717","44.9970051"],["-110.7037599","44.9968518"],["-110.7037996","44.9967064"],["-110.703793","44.9965267"],["-110.7037535","44.9961581"],["-110.7038093","44.9960107"],["-110.7038609","44.9958791"],["-110.7038466","44.9956979"],["-110.7035717","44.9947871"],["-110.7033048","44.9943968"],["-110.7032025","44.9940715"],["-110.7030895","44.9936845"],["-110.7028803","44.9932075"],["-110.7027118","44.9926245"],["-110.702584","44.9923561"],["-110.7021666","44.9918236"],["-110.7020203","44.9913816"],["-110.7020488","44.9912685"],["-110.7021751","44.9911569"],["-110.7023933","44.9909516"],["-110.7024458","44.9907295"],["-110.7024072","44.9905279"],["-110.7022982","44.9904185"],["-110.7021309","44.9903495"],["-110.7019479","44.9902949"],["-110.7017978","44.990222"],["-110.701672","44.9901263"],["-110.70146","44.9898353"],["-110.7013152","44.9896511"],["-110.7011691","44.9895577"],["-110.7007179","44.9893476"],["-110.7005826","44.9892876"],["-110.7005337","44.9892182"],["-110.7005269","44.9889776"],["-110.7006078","44.9885926"],["-110.7006568","44.9880684"],["-110.7006831","44.9876128"],["-110.7007019","44.9872938"],["-110.7006424","44.9871913"],["-110.7004781","44.9870832"],["-110.7002212","44.9869808"],["-110.7001","44.9868969"],["-110.7000428","44.9867166"],["-110.7000492","44.9866048"],["-110.7000544","44.9864764"],["-110.7001381","44.9863672"],["-110.7002929","44.9862342"],["-110.7004659","44.9860889"],["-110.7005512","44.985973"],["-110.7006536","44.9855069"],["-110.7007328","44.9852421"],["-110.7007442","44.9850371"],["-110.7006356","44.9847289"],["-110.7004883","44.9844626"],["-110.7003026","44.9842822"],["-110.7001878","44.9842156"],["-110.6998942","44.9841011"],["-110.6997253","44.9840064"],["-110.699534","44.9838055"],["-110.6992553","44.9834755"],["-110.6992189","44.9833754"],["-110.6992386","44.9832271"],["-110.6992723","44.9830252"],["-110.6995889","44.9818396"],["-110.6997499","44.9815513"],["-110.6998177","44.9814203"],["-110.6997985","44.9812507"],["-110.6997414","44.9811763"],["-110.6995939","44.9810911"],["-110.6993958","44.9810564"],["-110.6992196","44.98107"],["-110.6990537","44.981141"],["-110.6986342","44.9814741"],["-110.6983407","44.981697"],["-110.6981695","44.9817507"],["-110.6980074","44.9817509"],["-110.6978475","44.9817054"],["-110.6977569","44.981573"],["-110.6977855","44.9814228"],["-110.6983014","44.9807979"],["-110.6984241","44.9805788"],["-110.6985406","44.980325"],["-110.6986091","44.9800003"],["-110.698608","44.9796488"],["-110.6985134","44.979247"],["-110.6983478","44.9789556"],["-110.6981012","44.9785635"],["-110.6978643","44.9782558"],["-110.6989936","44.97759"],["-110.6987273","44.9773701"],["-110.6979744","44.9777731"],["-110.6975508","44.9779814"],["-110.6973038","44.9781128"],["-110.6973333","44.9782523"],["-110.6973939","44.9783152"],["-110.6974617","44.9783466"],["-110.6975347","44.978359"],["-110.6976143","44.9783501"],["-110.6976979","44.9783219"],["-110.6978426","44.9782667"],["-110.6981011","44.9785634"],["-110.6983531","44.9789639"],["-110.6985123","44.979244"],["-110.6986081","44.9796496"],["-110.6986097","44.979998"],["-110.6985417","44.9803218"],["-110.6984219","44.9805836"],["-110.6983036","44.9807951"],["-110.6977858","44.9814225"],["-110.6977571","44.9815734"],["-110.697847","44.9817052"],["-110.698006","44.9817507"],["-110.6981705","44.9817505"],["-110.6983387","44.9816981"],["-110.6986142","44.9814899"],["-110.6990561","44.9811393"],["-110.6992188","44.9810701"],["-110.6993964","44.9810566"],["-110.6995919","44.9810901"],["-110.6997424","44.9811772"],["-110.6997986","44.98125"],["-110.6998175","44.9814206"],["-110.6997554","44.9815418"],["-110.6995919","44.9818321"],["-110.6992746","44.9830149"],["-110.6992428","44.9831979"],["-110.6992187","44.9833741"],["-110.6992551","44.983475"],["-110.6995359","44.9838075"],["-110.699727","44.9840078"],["-110.6998914","44.9841"],["-110.700187","44.9842148"],["-110.7003048","44.9842845"],["-110.700489","44.9844634"],["-110.700635","44.9847272"],["-110.7007445","44.9850371"],["-110.7007325","44.9852445"],["-110.7006523","44.9855114"],["-110.7005509","44.985973"],["-110.7004653","44.9860895"],["-110.7003047","44.9862241"],["-110.7001381","44.986367"],["-110.7000537","44.9864784"],["-110.7000488","44.9866066"],["-110.7000421","44.986714"],["-110.7000999","44.9868961"],["-110.7002182","44.9869794"],["-110.7004766","44.9870827"],["-110.7006424","44.9871917"],["-110.7007018","44.9872923"],["-110.7006825","44.987618"],["-110.7006564","44.9880748"],["-110.7006078","44.9885936"],["-110.7005267","44.9889773"],["-110.7005338","44.9892177"],["-110.7005825","44.9892875"],["-110.7007218","44.9893492"],["-110.7011609","44.9895538"],["-110.7013157","44.9896515"],["-110.7014616","44.9898369"],["-110.701673","44.9901278"],["-110.7017993","44.990223"],["-110.7019482","44.990295"],["-110.7021312","44.99035"],["-110.7022963","44.9904173"],["-110.7024065","44.990527"],["-110.7024458","44.9907272"],["-110.7023924","44.9909533"],["-110.7021745","44.9911576"],["-110.7020502","44.9912667"],["-110.7020203","44.9913815"],["-110.7021667","44.9918235"],["-110.7025861","44.9923592"],["-110.7027121","44.9926254"],["-110.7028782","44.9932018"],["-110.7030915","44.9936897"],["-110.7032117","44.9941037"],["-110.7033074","44.9944019"],["-110.7035732","44.9947893"],["-110.7038475","44.9957019"],["-110.7038608","44.9958801"],["-110.7038097","44.9960092"],["-110.7037537","44.9961602"],["-110.7037931","44.9965283"],["-110.7037996","44.9967063"],["-110.7037595","44.996854"],["-110.7037715","44.9970046"],["-110.7038677","44.9971571"],["-110.7041945","44.9974317"],["-110.7042825","44.997679"],["-110.7043826","44.9985264"],["-110.7044862","44.998647"],["-110.7046122","44.9987826"],["-110.704707","44.9989394"],["-110.7047435","44.9992183"],["-110.7047992","44.9993291"],["-110.7049409","44.9994231"],["-110.7050182","44.9995163"],["-110.7051517","44.9998156"],["-110.7055628","45.0001334"],["-110.7056447","45.000253"],["-110.7056716","45.0003437"],["-110.7056542","45.0004136"],["-110.7055891","45.0004525"],["-110.7055198","45.0005449"],["-110.7053745","45.0007781"],["-110.7053594","45.0008948"],["-110.7054235","45.0011975"],["-110.7054312","45.001354"],["-110.7053013","45.0014835"],["-110.705135","45.0019119"],["-110.70505","45.0020752"],["-110.70492","45.0024147"],["-110.7046891","45.0027921"],["-110.7045093","45.0029686"],["-110.704448","45.003071"],["-110.7044372","45.0031714"],["-110.7045594","45.0034534"],["-110.7046102","45.0036225"],["-110.7045814","45.0037786"],["-110.7044499","45.0038841"],["-110.7042354","45.0040318"],["-110.7039356","45.0043401"],["-110.7036097","45.0047667"],["-110.7035127","45.0049732"],["-110.7035359","45.0052495"],["-110.7035498","45.005432"],["-110.7034711","45.0055259"],["-110.703175","45.0057083"],["-110.7030982","45.0058887"],["-110.7030919","45.0060533"],["-110.7031455","45.006291"],["-110.7032745","45.0064432"],["-110.7034227","45.00656"],["-110.7035909","45.0066226"],["-110.7038485","45.0066505"],["-110.7041012","45.0067307"],["-110.7044991","45.0068134"],["-110.7047912","45.0068497"],["-110.7049068","45.006979"],["-110.7049299","45.0070992"],["-110.704865","45.007225"],["-110.7046629","45.0073275"],["-110.70448","45.0074332"],["-110.704282","45.0076405"],["-110.7040709","45.0079107"],["-110.7038778","45.0081436"],["-110.703455","45.008299"],["-110.7030081","45.0083998"],["-110.7026399","45.0084769"],["-110.7023024","45.0086938"],["-110.7018216","45.0089323"],["-110.7012762","45.0092263"],["-110.7011049","45.0093983"],["-110.7009265","45.0096661"],["-110.7006989","45.0100659"],["-110.7007247","45.0103832"],["-110.7005771","45.0107187"],["-110.7006194","45.0110651"],["-110.7005685","45.0112012"],["-110.7003597","45.0113443"],["-110.700137","45.0115378"],["-110.7000615","45.0117459"],["-110.7000638","45.0120497"],["-110.700012","45.0121736"],["-110.6998738","45.0123239"],["-110.6997031","45.0125198"],["-110.6994742","45.0129894"],["-110.6993526","45.0134019"],["-110.6993061","45.0138951"],["-110.6992598","45.0140395"],["-110.6991457","45.0140871"],["-110.6988471","45.01413"],["-110.6984171","45.0142483"],["-110.6981006","45.0143934"],["-110.6978852","45.0145171"],["-110.6977745","45.0146197"],["-110.6977182","45.0147184"],["-110.6976727","45.0148447"],["-110.6976934","45.0149906"],["-110.6980178","45.0152575"],["-110.6983829","45.0154509"],["-110.6984878","45.0155291"],["-110.6985361","45.0155822"],["-110.6986176","45.0156382"],["-110.6991155","45.0158517"],["-110.6992297","45.0158933"],["-110.6993673","45.015904"],["-110.6994801","45.0158906"],["-110.6996255","45.0158671"],["-110.699744","45.0158402"],["-110.6998902","45.0158371"],["-110.700042","45.015854"],["-110.7001989","45.0158906"],["-110.7003104","45.0159366"],["-110.7003496","45.0159935"],["-110.7003213","45.0160475"],["-110.7002563","45.0160877"],["-110.7001442","45.0161449"],["-110.7000765","45.0161946"],["-110.7000169","45.0162469"],["-110.7000026","45.0163056"],["-110.6999928","45.0163848"],["-110.7000008","45.016548"],["-110.6999985","45.0166263"],["-110.6999216","45.0168438"],["-110.6998679","45.0169351"],["-110.6998004","45.0170289"],["-110.6996699","45.0171555"],["-110.699591","45.0172708"],["-110.6995689","45.0173606"],["-110.6995649","45.0174698"],["-110.6995706","45.0175952"],["-110.6995938","45.017752"],["-110.6996433","45.0179421"],["-110.7000437","45.0190033"],["-110.7005467","45.0200413"],["-110.7011148","45.0211637"],["-110.7016898","45.0217691"],["-110.7018214","45.0219891"],["-110.7019405","45.0222846"],["-110.7021038","45.0224636"],["-110.7023306","45.0226248"],["-110.7025469","45.0227788"],["-110.7028228","45.023189"],["-110.7029872","45.0234909"],["-110.7029837","45.0235938"],["-110.7028472","45.0237507"],["-110.7021486","45.0244036"],["-110.7014591","45.0248805"],["-110.7011281","45.0250628"],["-110.7007956","45.0252139"],["-110.700593","45.0252964"],["-110.7006402","45.0253582"],["-110.7007201","45.02544"],["-110.7008188","45.0255251"],["-110.7009578","45.0256618"],["-110.7011354","45.025822"],["-110.7012868","45.0259123"],["-110.7015339","45.0260215"],["-110.7018034","45.0261242"],["-110.7021648","45.0262032"],["-110.7022949","45.0262334"],["-110.7023865","45.0262544"],["-110.7025215","45.0262875"],["-110.7028212","45.0264182"],["-110.7071987","45.0287648"],["-110.7072788","45.0294836"],["-110.7058573","45.0294949"],["-110.7057385","45.0295105"],["-110.7056604","45.0295376"],["-110.7055916","45.0295686"],["-110.7055421","45.0296037"],["-110.7055072","45.0296413"],["-110.7054728","45.0297118"],["-110.7054842","45.0305028"],["-110.7055134","45.0324569"],["-110.7055206","45.0326961"],["-110.7055339","45.0328001"],["-110.7055829","45.0329257"],["-110.7056322","45.0330434"],["-110.7057033","45.0331651"],["-110.705834","45.0333299"],["-110.7060737","45.0335264"],["-110.706309","45.0336437"],["-110.7065354","45.0337265"],["-110.7069548","45.0338518"],["-110.7091262","45.0344328"],["-110.7100653","45.0346871"],["-110.7124481","45.0353295"],["-110.7214521","45.0377683"],["-110.7221802","45.0380386"],["-110.7230267","45.0384662"],["-110.7237951","45.0389609"],["-110.7242323","45.0393037"],["-110.7271225","45.0415046"],["-110.7302882","45.0438723"],["-110.7311078","45.0444095"],["-110.7319396","45.044851"],["-110.7331956","45.0453718"],["-110.7446098","45.0494983"],["-110.7466852","45.0503445"],["-110.7481479","45.0510064"],["-110.7497574","45.0518233"],["-110.7528823","45.0536291"],["-110.7552715","45.0553047"],["-110.7562019","45.0560175"],["-110.7572902","45.056911"],["-110.7585256","45.0580066"],["-110.7654385","45.0648377"],["-110.7661956","45.0656205"],["-110.7665875","45.0661473"],["-110.7669358","45.0667684"],["-110.7672297","45.0673207"],["-110.767455","45.0680916"],["-110.7688344","45.073967"],["-110.7690445","45.0746824"],["-110.7692478","45.0751452"],["-110.7695315","45.0756513"],["-110.7697955","45.0760788"],["-110.7700868","45.0764631"],["-110.7705092","45.0769168"],["-110.7719873","45.0782471"],["-110.7737361","45.0798131"],["-110.7746368","45.0806528"],["-110.775004","45.0810398"],["-110.7753184","45.0814325"],["-110.7755603","45.0818237"],["-110.7757553","45.0822112"],["-110.7759363","45.0826351"],["-110.7760387","45.0829688"],["-110.7761123","45.0834341"],["-110.7761352","45.0838546"],["-110.7761265","45.084267"],["-110.7760633","45.0847219"],["-110.7759546","45.0851641"],["-110.7757005","45.0858203"],["-110.7748301","45.0877725"],["-110.7746988","45.0882815"],["-110.7746554","45.0886413"],["-110.77467","45.0890219"],["-110.7747307","45.0893006"],["-110.7748249","45.0895174"],["-110.7749406","45.0897677"],["-110.7751161","45.0900522"],["-110.7753371","45.090321"],["-110.775541","45.0905535"],["-110.7757601","45.0907427"],["-110.7760951","45.0910018"],["-110.777147","45.0916764"],["-110.7776661","45.0920701"],["-110.7779633","45.0923133"],["-110.7783095","45.0926673"],["-110.7786195","45.0930368"],["-110.7788753","45.0933973"],["-110.7790731","45.093762"],["-110.7792549","45.0941858"],["-110.7793616","45.094582"],["-110.7794464","45.0949309"],["-110.7794764","45.0952718"],["-110.7794624","45.095887"],["-110.7793021","45.0974245"],["-110.7792582","45.0980266"],["-110.7792715","45.0984094"],["-110.7793606","45.0989047"],["-110.779554","45.0993977"],["-110.7797254","45.0997313"],["-110.7799178","45.100077"],["-110.7803513","45.1006421"],["-110.7848763","45.1062185"],["-110.7868801","45.1087188"],["-110.788371","45.1106279"],["-110.7900575","45.1129636"],["-110.7915177","45.1152719"],["-110.7920871","45.1162169"],["-110.794147","45.1200506"],["-110.795219","45.1219217"],["-110.7962551","45.123496"],["-110.7969092","45.1243756"],["-110.8146538","45.1450455"],["-110.8155979","45.146289"],["-110.8168699","45.1482648"],["-110.8179201","45.1499047"],["-110.8194807","45.1523518"],["-110.820363","45.1535304"],["-110.8212004","45.154466"],["-110.8221701","45.1554108"],["-110.8240083","45.1568123"],["-110.8249325","45.1574861"],["-110.8257601","45.1579731"],["-110.8263735","45.1582969"],["-110.8272192","45.1586099"],["-110.8286527","45.1592018"],["-110.8291878","45.1594966"],["-110.8296944","45.1598289"],["-110.8307529","45.1606513"],["-110.8320336","45.1616619"],["-110.8330456","45.1623398"],["-110.834439","45.1631268"],["-110.8383786","45.1653365"],["-110.8391655","45.1657226"],["-110.8397772","45.165933"],["-110.8406014","45.1661341"],["-110.8415135","45.1662934"],["-110.8431583","45.1664359"],["-110.8483044","45.1667841"],["-110.8492384","45.1669348"],["-110.8503594","45.1672703"],["-110.8544982","45.1686919"],["-110.8565368","45.169373"],["-110.8574388","45.1695577"],["-110.8596717","45.1698044"],["-110.8640938","45.1702837"],["-110.8662873","45.1705424"],["-110.8684905","45.1707931"],["-110.8699451","45.1711535"],["-110.8708085","45.1713401"],["-110.8733491","45.1717981"],["-110.8739836","45.1719589"],["-110.8744706","45.172204"],["-110.8759925","45.1731184"],["-110.8768909","45.1736533"],["-110.8787284","45.1750158"],["-110.8797662","45.1755742"],["-110.8807815","45.1760835"],["-110.8814255","45.1764808"],["-110.8818203","45.1769432"],["-110.8822316","45.1775198"],["-110.8826916","45.1780695"],["-110.8833997","45.1787868"],["-110.8840614","45.1793548"],["-110.8889876","45.1829366"],["-110.8912246","45.1848993"],["-110.89303","45.186032"],["-110.8958872","45.1875103"],["-110.8964248","45.1878406"],["-110.8969019","45.1881917"],["-110.8973635","45.1887846"],["-110.8978628","45.1897693"],["-110.8991615","45.192442"],["-110.899568","45.1935733"],["-110.8999611","45.1955561"],["-110.9001443","45.1969609"],["-110.9000473","45.1981234"],["-110.8998445","45.1989251"],["-110.899601","45.1996811"],["-110.8993965","45.2001164"],["-110.8991232","45.2005661"],["-110.8988535","45.2009756"],["-110.8985118","45.2014479"],["-110.8970996","45.2032136"],["-110.8819818","45.2219734"],["-110.873174","45.2354173"],["-110.8713498","45.2381656"],["-110.8706013","45.239476"],["-110.8701727","45.2404626"],["-110.8698923","45.2414817"],["-110.8695166","45.243885"],["-110.8682513","45.2531449"],["-110.8680722","45.2546502"],["-110.8677456","45.2563179"],["-110.8674526","45.2572585"],["-110.8659579","45.2601044"],["-110.8653424","45.2613044"],["-110.8646471","45.2625762"],["-110.8641995","45.2633836"],["-110.8638167","45.264066"],["-110.8632962","45.2650774"],["-110.8626288","45.2663225"],["-110.8616811","45.2681216"],["-110.8608604","45.2696695"],["-110.859869","45.2715463"],["-110.8589816","45.2731517"],["-110.8584483","45.2739464"],["-110.8579031","45.2746154"],["-110.8571824","45.2754643"],["-110.8561428","45.2765197"],["-110.854503","45.2778348"],["-110.8471218","45.2834515"],["-110.8456352","45.2848116"],["-110.8343322","45.2964983"],["-110.8171374","45.3121029"],["-110.8167101","45.3124434"],["-110.8162812","45.3127567"],["-110.8158487","45.3130469"],["-110.8153558","45.3133383"],["-110.8147536","45.3136442"],["-110.813533","45.3141662"],["-110.8086609","45.3162516"],["-110.7817443","45.3279152"],["-110.7807093","45.3283923"],["-110.7795399","45.328949"],["-110.7778106","45.3297949"],["-110.7764162","45.3305931"],["-110.7751562","45.3313618"],["-110.7737839","45.3323891"],["-110.7695452","45.336068"],["-110.7653624","45.3398583"],["-110.7640917","45.3409814"],["-110.7633696","45.3415714"],["-110.7627802","45.3419699"],["-110.7619682","45.342389"],["-110.7610702","45.3427348"],["-110.7602305","45.3429687"],["-110.7594659","45.343209"],["-110.7588796","45.3434406"],["-110.7582887","45.3437236"],["-110.7572103","45.3444223"],["-110.7562374","45.3453031"],["-110.7477499","45.3540527"],["-110.7430378","45.3589136"],["-110.7346338","45.3675806"],["-110.7328199","45.3694662"],["-110.7165584","45.3861848"],["-110.7147164","45.3880803"],["-110.7140379","45.3887735"],["-110.7134726","45.3894551"],["-110.7027791","45.4041506"],["-110.7017715","45.4054869"],["-110.7011511","45.4061906"],["-110.7004216","45.4069683"],["-110.6996548","45.4076712"],["-110.6989529","45.4082579"],["-110.6981254","45.4088935"],["-110.6966481","45.4098864"],["-110.6899619","45.4141995"],["-110.6878733","45.4155228"],["-110.6865951","45.4162146"],["-110.6858072","45.416606"],["-110.6842153","45.4173014"],["-110.6833396","45.4176327"],["-110.6816525","45.4181347"],["-110.6805001","45.4184219"],["-110.6791196","45.418708"],["-110.6776517","45.418933"],["-110.6755982","45.4191184"],["-110.6677062","45.4196637"],["-110.6664765","45.4198147"],["-110.6655939","45.4199732"],["-110.6634592","45.4206766"],["-110.6473183","45.4260908"],["-110.6457605","45.4267828"],["-110.6439901","45.4277359"],["-110.642405","45.4288334"],["-110.6409717","45.4299725"],["-110.63978","45.4312048"],["-110.6386852","45.4324771"],["-110.6381608","45.4333142"],["-110.6375807","45.4343712"],["-110.6298428","45.4511825"],["-110.6284323","45.4542909"],["-110.6278537","45.455587"],["-110.627399","45.4566799"],["-110.6270845","45.4575167"],["-110.626869","45.4583627"],["-110.6266819","45.4595719"],["-110.6261673","45.4665361"],["-110.6257417","45.4729511"],["-110.6256037","45.4750116"],["-110.6254336","45.4761109"],["-110.6247977","45.4784105"],["-110.6209504","45.4913586"],["-110.6152506","45.505722"],["-110.6143313","45.5079966"],["-110.5932997","45.5604544"],["-110.5920522","45.5635526"],["-110.5893202","45.5702428"],["-110.588781","45.5714712"],["-110.5882248","45.5723888"],["-110.5877732","45.5731064"],["-110.587578","45.5734177"],["-110.5864826","45.5748185"],["-110.5859969","45.5753786"],["-110.5855036","45.5759207"],["-110.5847264","45.5766789"],["-110.5838594","45.5774531"],["-110.5829127","45.5782101"],["-110.5773103","45.5825171"],["-110.5765568","45.5831416"],["-110.5759582","45.5837133"],["-110.5754826","45.5842236"],["-110.5747319","45.5851625"],["-110.5744401","45.5855773"],["-110.5740623","45.5862744"],["-110.573138","45.5879278"],["-110.5726245","45.5891819"],["-110.5724037","45.5898995"],["-110.5721164","45.5905688"],["-110.5716675","45.5914878"],["-110.5712946","45.5923698"],["-110.5709582","45.5935"],["-110.5710578","45.595227"],["-110.5711866","45.5957067"],["-110.5721893","45.5982805"],["-110.572336","45.5985769"],["-110.5727096","45.5995892"],["-110.5738571","45.6026578"],["-110.5744613","45.6042514"],["-110.5767105","45.6100072"],["-110.57712","45.6111627"],["-110.5784272","45.6145825"],["-110.5787655","45.6158582"],["-110.5789498","45.6169662"],["-110.5790087","45.6182089"],["-110.5789619","45.6197665"],["-110.5788309","45.6204461"],["-110.5786689","45.6212437"],["-110.5779363","45.6245826"],["-110.5746949","45.6392579"],["-110.574466","45.6402783"],["-110.5742224","45.6414113"],["-110.5741678","45.641718"],["-110.5740497","45.6422679"],["-110.5739124","45.642554"],["-110.5737902","45.6431077"],["-110.5737363","45.6433563"],["-110.5737144","45.6434563"],["-110.5733075","45.6452699"],["-110.5731591","45.6456228"],["-110.5730799","45.6457115"],["-110.5729764","45.6457606"],["-110.5727441","45.645771"],["-110.571809","45.645677"],["-110.5715746","45.6456182"],["-110.5713985","45.6455492"],["-110.5712646","45.645435"],["-110.5711879","45.6453039"],["-110.5711633","45.6451915"],["-110.5711821","45.6450772"],["-110.5712303","45.6449696"],["-110.5713007","45.6448821"],["-110.5714221","45.6447763"],["-110.5715458","45.6446967"],["-110.5717283","45.6446296"],["-110.5718953","45.6445976"],["-110.5721808","45.6445642"],["-110.5726931","45.6445169"],["-110.573197","45.6445175"],["-110.5778223","45.6444998"],["-110.5790232","45.644511"],["-110.580215","45.6445584"],["-110.5814387","45.6446645"],["-110.5831117","45.6448761"],["-110.6005727","45.6478107"],["-110.6018769","45.6481021"],["-110.603712","45.648642"],["-110.6216551","45.6544871"],["-110.6270936","45.6562908"],["-110.6344449","45.6592544"],["-110.638191","45.6609297"],["-110.6391312","45.661305"],["-110.6400348","45.6615946"],["-110.6408623","45.6618032"],["-110.6418978","45.6619973"],["-110.6433838","45.6621513"],["-110.6446103","45.6621701"],["-110.6460472","45.6620539"],["-110.6474696","45.6618119"],["-110.6497969","45.6613275"],["-110.6510644","45.6611357"],["-110.6519969","45.6610522"],["-110.6531155","45.6610585"],["-110.6542294","45.6611241"],["-110.6555119","45.6612482"],["-110.6567994","45.6613319"],["-110.6578663","45.6613191"],["-110.6589475","45.6612407"],["-110.6598159","45.6611763"],["-110.6608372","45.6611"],["-110.6617357","45.6611163"],["-110.6626116","45.6612026"],["-110.6633846","45.6613403"],["-110.6643778","45.6615963"],["-110.6657506","45.6619675"],["-110.6669218","45.6622473"],["-110.6681624","45.6624977"],["-110.6692683","45.662668"],["-110.670256","45.6627954"],["-110.6711649","45.6628755"],["-110.6726296","45.6629496"],["-110.6756572","45.6630763"],["-110.6765869","45.6631356"],["-110.6773854","45.663214"],["-110.678448","45.6633498"],["-110.679953","45.663611"],["-110.6829283","45.6642608"],["-110.6840497","45.6644595"],["-110.684906","45.6645376"],["-110.6858064","45.6645692"],["-110.6871348","45.6644783"],["-110.6889422","45.6642833"],["-110.6905011","45.6642034"],["-110.692059","45.6642842"],["-110.6937098","45.6643977"],["-110.69498","45.6643882"],["-110.6959908","45.6643506"],["-110.6968331","45.6642811"],["-110.6983542","45.6640733"],["-110.6992693","45.6638767"],["-110.7013369","45.6633508"],["-110.7025724","45.6630607"],["-110.7032612","45.6629681"],["-110.7039119","45.662895"],["-110.7045234","45.6628471"],["-110.7051953","45.6628369"],["-110.7058454","45.6628552"],["-110.708159","45.6630109"],["-110.7122306","45.66338"],["-110.7155037","45.6637761"],["-110.7164153","45.6638671"],["-110.7170595","45.6638842"],["-110.7177863","45.6638562"],["-110.7184968","45.6637906"],["-110.7198668","45.6634961"],["-110.7218292","45.6628351"],["-110.7228116","45.6625597"],["-110.723689","45.6623749"],["-110.7244214","45.6622735"],["-110.725463","45.6621984"],["-110.7265961","45.6621402"],["-110.7275131","45.662087"],["-110.7281447","45.6620095"],["-110.730923","45.661523"],["-110.7317625","45.6614032"],["-110.7324283","45.6613481"],["-110.7331217","45.6613246"],["-110.7337574","45.6613436"],["-110.7344301","45.6614038"],["-110.7351708","45.6615172"],["-110.7372872","45.6618717"],["-110.7383758","45.6620216"],["-110.739288","45.6621217"],["-110.7400113","45.6621648"],["-110.7415504","45.6621948"],["-110.7423231","45.6621564"],["-110.7431421","45.6620967"],["-110.7439516","45.6620001"],["-110.7444825","45.6619142"],["-110.7452149","45.6617822"],["-110.7461284","45.6615803"],["-110.7472193","45.6612753"],["-110.748916","45.6607481"],["-110.7501121","45.6603961"],["-110.7511483","45.6601867"],["-110.7555192","45.6595618"],["-110.7658627","45.6580632"],["-110.7670497","45.6577982"],["-110.7690904","45.6572475"],["-110.7701504","45.6569644"],["-110.772123","45.6564266"],["-110.7729115","45.6562803"],["-110.7736393","45.6562018"],["-110.7743833","45.6561863"],["-110.7751362","45.6562426"],["-110.775899","45.6563615"],["-110.7765848","45.6565094"],["-110.7771806","45.6567016"],["-110.7868604","45.6603637"],["-110.7927124","45.6625843"],["-110.7932865","45.6627948"],["-110.7939585","45.6630057"],["-110.7946347","45.6631846"],["-110.7957066","45.6633902"],["-110.7978633","45.6637277"],["-110.798841","45.6639117"],["-110.7995279","45.6640961"],["-110.8004696","45.6644863"],["-110.8012582","45.6649611"],["-110.8031343","45.6662429"],["-110.8041536","45.6668168"],["-110.8052036","45.6672228"],["-110.8058562","45.667398"],["-110.806513","45.6675387"],["-110.8073802","45.6676525"],["-110.808157","45.6676931"],["-110.808862","45.6676857"],["-110.8182799","45.6673247"],["-110.8246466","45.6671611"],["-110.8276194","45.6670601"],["-110.8289659","45.666928"],["-110.8302661","45.6667367"],["-110.8320465","45.6663901"],["-110.8336747","45.6659732"],["-110.8348412","45.6656171"],["-110.835722","45.6653062"],["-110.8372864","45.6646532"],["-110.8384135","45.6641001"],["-110.8396469","45.6634227"],["-110.8408797","45.6626641"],["-110.8513183","45.654655"],["-110.8523866","45.6539725"],["-110.8531687","45.6535337"],["-110.8574644","45.6514983"],["-110.86153","45.6495875"],["-110.8636352","45.6486461"],["-110.8643106","45.6484369"],["-110.8649089","45.6482952"],["-110.8654727","45.6482168"],["-110.8661399","45.6481801"],["-110.8667539","45.648223"],["-110.8673807","45.6482791"],["-110.8680817","45.6483942"],["-110.8692463","45.6486057"],["-110.8699345","45.6486919"],["-110.8703638","45.6487164"],["-110.8709344","45.6486836"],["-110.8714525","45.6486021"],["-110.8719797","45.648468"],["-110.872474","45.6482868"],["-110.8746303","45.6472725"],["-110.8756887","45.6468197"],["-110.8764569","45.6465576"],["-110.8771825","45.646385"],["-110.8778394","45.6462838"],["-110.8785853","45.6462186"],["-110.8795712","45.6462322"],["-110.8815678","45.6464512"],["-110.8843749","45.6468112"],["-110.8859788","45.6470127"],["-110.8864574","45.6470327"],["-110.8869372","45.647046"],["-110.8875659","45.6470196"],["-110.8882941","45.6469472"],["-110.8889724","45.6468436"],["-110.8895599","45.6467197"],["-110.8905722","45.6464177"],["-110.9091473","45.6405139"],["-110.9114685","45.6397649"],["-110.9121069","45.6396336"],["-110.9126834","45.6395613"],["-110.9130651","45.639548"],["-110.9133961","45.6395412"],["-110.9135454","45.6395442"],["-110.9138561","45.6395559"],["-110.9141696","45.6395842"],["-110.9146337","45.6396476"],["-110.9149348","45.6397062"],["-110.9152355","45.639775"],["-110.9155337","45.6398572"],["-110.9158772","45.6399645"],["-110.9208881","45.6417107"],["-110.925262","45.6429646"],["-110.9258056","45.6431302"],["-110.9260444","45.6432154"],["-110.9264774","45.6433911"],["-110.9269664","45.6436031"],["-110.9274499","45.6438827"],["-110.9280239","45.6442479"],["-110.9292087","45.6451457"],["-110.929942","45.6456156"],["-110.9306552","45.6459772"],["-110.9318653","45.6464017"],["-110.9373378","45.6479114"],["-110.9379779","45.6481121"],["-110.9386018","45.6483323"],["-110.9391437","45.6485653"],["-110.9396822","45.6488401"],["-110.9401926","45.6491507"],["-110.9406313","45.6494467"],["-110.9410435","45.6497674"],["-110.9414838","45.6501874"],["-110.9444476","45.6533575"],["-110.9451176","45.6540804"],["-110.9471583","45.6562668"],["-110.9483751","45.6575406"],["-110.949751","45.6589302"],["-110.9506144","45.6596936"],["-110.9511796","45.6600827"],["-110.9517328","45.6604299"],["-110.9523665","45.6607378"],["-110.9530124","45.6610232"],["-110.9540361","45.6613704"],["-110.9563307","45.6618276"],["-110.9713642","45.664262"],["-110.9970809","45.6705434"],["-111.0067833","45.6730037"],["-111.0079053","45.6734582"],["-111.0085665","45.6738097"],["-111.0091699","45.6741851"],["-111.0096988","45.674583"],["-111.0101067","45.6749775"],["-111.0104434","45.6754693"],["-111.010748","45.6760263"],["-111.0108621","45.6763584"],["-111.0108613","45.6766112"],["-111.0107454","45.67683"],["-111.0105898","45.6769871"],["-111.0103349","45.6771532"],["-111.010049","45.6772661"],["-111.009708","45.6773021"],["-111.0093133","45.6772608"],["-111.0089852","45.6771429"],["-111.0087433","45.6769909"],["-111.0085647","45.6767654"],["-111.0084873","45.6765079"],["-111.0085108","45.6762221"],["-111.0086045","45.675992"],["-111.0087442","45.6757644"],["-111.0089555","45.675576"],["-111.0092221","45.6754313"],["-111.0095769","45.6753222"],["-111.010559","45.6752197"],["-111.0112947","45.6752087"],["-111.0118443","45.6752367"],["-111.0120913","45.6752626"],["-111.0126116","45.6753747"],["-111.0130213","45.6754956"],["-111.0134434","45.6756637"],["-111.0137834","45.6758514"],["-111.0142848","45.6762485"],["-111.0152658","45.6771902"],["-111.0154543","45.6773509"],["-111.0158382","45.6776088"],["-111.0161121","45.6777457"],["-111.0164444","45.6778833"],["-111.0167794","45.6780138"],["-111.0175811","45.6782605"],["-111.0208026","45.6792053"],["-111.0211894","45.679288"],["-111.0215001","45.6793406"],["-111.0219088","45.6793799"],["-111.0237013","45.6793968"],["-111.0248781","45.6793581"],["-111.0272686","45.6793729"],["-111.0291772","45.6793532"],["-111.0294538","45.6793529"],["-111.0387004","45.6792913"],["-111.0466075","45.6793058"],["-111.0475513","45.6793041"],["-111.0515938","45.6793148"],["-111.0523485","45.6793142"],["-111.0560332","45.679324"],["-111.056233","45.679323"],["-111.057056","45.6793229"],["-111.0588441","45.6793179"],["-111.0590083","45.679318"],["-111.0597853","45.6793189"],["-111.0603195","45.6793778"],["-111.0625862","45.6793876"],["-111.0632582","45.6793718"],["-111.0637499","45.679345"],["-111.0640026","45.6793105"],["-111.0641858","45.6792861"],["-111.0643538","45.6792624"],["-111.0645947","45.6792132"],["-111.0648411","45.6791527"],["-111.0650311","45.6790956"],["-111.0652645","45.6790222"],["-111.0656746","45.6788757"],["-111.0659786","45.6787538"],["-111.0662716","45.6785931"],["-111.0665711","45.6784013"],["-111.0710773","45.6749997"],["-111.0719244","45.6743443"],["-111.0740124","45.6728016"],["-111.0745224","45.6724881"],["-111.0748584","45.6723026"],["-111.0751191","45.6721676"],["-111.0754136","45.672029"],["-111.075768","45.6718887"],["-111.0763466","45.6716916"],["-111.076512","45.6716423"],["-111.0765208","45.6716402"],["-111.0769378","45.6715311"],["-111.0772626","45.671452"],["-111.0776341","45.6713692"],["-111.0782301","45.6712569"],["-111.078508","45.671215"],["-111.0791478","45.6711511"],["-111.0794946","45.6711357"],["-111.081491","45.6711183"],["-111.0821113","45.6711226"],["-111.0831156","45.6711222"],["-111.0834479","45.6711219"],["-111.0841848","45.6711205"],["-111.0874525","45.6711762"],["-111.1040546","45.6712498"],["-111.1210487","45.6710662"],["-111.1250766","45.6710194"],["-111.1345936","45.6711217"],["-111.1403664","45.6710846"],["-111.1410224","45.6710828"],["-111.1540849","45.6710244"],["-111.1543584","45.6710228"],["-111.164707","45.6709908"],["-111.1679611","45.6710004"],["-111.1699859","45.6709761"],["-111.1855839","45.6710888"],["-111.1856263","45.6688493"],["-111.1856672","45.6679027"],["-111.1857304","45.6645028"],["-111.185817","45.6605127"],["-111.1858265","45.6603451"],["-111.1858365","45.6601957"],["-111.18586","45.6599096"],["-111.1858928","45.6595555"],["-111.1859756","45.6590299"],["-111.1860483","45.6587835"],["-111.1860719","45.6587143"],["-111.1861239","45.6585537"],["-111.1861896","45.6583572"],["-111.1863432","45.6579744"],["-111.1865212","45.6576144"],["-111.1867197","45.6572787"],["-111.1894893","45.6529233"],["-111.1896903","45.652624"],["-111.1908046","45.6508717"],["-111.1950403","45.6442736"],["-111.1956065","45.6433669"],["-111.1958972","45.6428395"],["-111.1960013","45.6426148"],["-111.1961051","45.6423795"],["-111.1962488","45.6420079"],["-111.1964072","45.6415026"],["-111.1965725","45.6408264"],["-111.1966982","45.6398926"],["-111.1969829","45.6180547"],["-111.1968937","45.6170072"],["-111.1963892","45.6132599"],["-111.1963162","45.6127611"],["-111.1961041","45.6112714"],["-111.1960272","45.6107042"],["-111.1958949","45.6097157"],["-111.1957351","45.6081439"],["-111.195736","45.6073481"],["-111.1958431","45.6057995"],["-111.1959159","45.6048407"],["-111.1960172","45.6037933"],["-111.196109","45.6027732"],["-111.196504","45.5983609"],["-111.1965442","45.5979118"],["-111.1965728","45.5976205"],["-111.1967783","45.5953189"],["-111.1970408","45.5922806"],["-111.1970766","45.5917156"],["-111.1970862","45.5911758"],["-111.196813","45.5635732"],["-111.1968201","45.5630953"],["-111.1968607","45.5626998"],["-111.196938","45.5623158"],["-111.1970133","45.5620492"],["-111.1971048","45.5618119"],["-111.1972221","45.561553"],["-111.1974091","45.5612018"],["-111.1976473","45.5608455"],["-111.1978715","45.560561"],["-111.198177","45.5602325"],["-111.1985382","45.5599156"],["-111.1993187","45.5593104"],["-111.2011344","45.5579745"],["-111.2062686","45.5542243"],["-111.2068042","45.5537935"],["-111.2086439","45.5524558"],["-111.2109102","45.5508159"],["-111.224373","45.5410093"],["-111.2255689","45.5401339"],["-111.2502852","45.5220551"],["-111.2508537","45.521647"],["-111.2511375","45.521433"],["-111.2513935","45.5212305"],["-111.2515429","45.5210991"],["-111.2516883","45.5209609"],["-111.2518814","45.5207642"],["-111.2521157","45.5204945"],["-111.2556813","45.5159229"],["-111.25605","45.5154509"],["-111.2598721","45.5105173"],["-111.2604251","45.5098194"],["-111.2607951","45.5093939"],["-111.2611675","45.5090103"],["-111.2615843","45.5086229"],["-111.2620445","45.5082316"],["-111.2627218","45.5077303"],["-111.2652082","45.5060165"],["-111.2663525","45.505201"],["-111.2668796","45.5046589"],["-111.2674172","45.5038696"],["-111.2679077","45.5031405"],["-111.2685294","45.5024503"],["-111.2692902","45.5017661"],["-111.2700434","45.5010814"],["-111.270375","45.5006898"],["-111.2706189","45.5002678"],["-111.2710487","45.4987806"],["-111.2724103","45.4925233"],["-111.2724607","45.4921569"],["-111.2724698","45.4919255"],["-111.2724635","45.491685"],["-111.2724276","45.4914679"],["-111.2722653","45.4909266"],["-111.2714936","45.4893656"],["-111.2711022","45.4884147"],["-111.2709099","45.4875305"],["-111.2709068","45.4865239"],["-111.2712618","45.484052"],["-111.2711833","45.4830035"],["-111.2700416","45.4781909"],["-111.2699219","45.4769375"],["-111.269955","45.4747755"],["-111.2698718","45.4739087"],["-111.2694419","45.4724592"],["-111.2688575","45.4716553"],["-111.2677923","45.4708875"],["-111.2607319","45.4666558"],["-111.2599741","45.466224"],["-111.2596467","45.466087"],["-111.259294","45.4659754"],["-111.2588119","45.4658412"],["-111.2580319","45.4656514"],["-111.2572416","45.4654329"],["-111.2567554","45.4652083"],["-111.2563305","45.4649842"],["-111.2558942","45.4646514"],["-111.2555715","45.4643505"],["-111.2552051","45.4639408"],["-111.2546857","45.4632809"],["-111.254446","45.462999"],["-111.2542493","45.4628224"],["-111.2539669","45.462617"],["-111.2536168","45.4623976"],["-111.2532607","45.4622216"],["-111.2529231","45.462085"],["-111.2525361","45.4619568"],["-111.2519338","45.4617726"],["-111.2514075","45.4615971"],["-111.2505867","45.4612434"],["-111.2501148","45.4609713"],["-111.2498139","45.4607737"],["-111.2496024","45.4606031"],["-111.2491991","45.4602045"],["-111.2482508","45.4592465"],["-111.2474095","45.4583986"],["-111.2467793","45.4577899"],["-111.2464302","45.4574711"],["-111.2461647","45.4572209"],["-111.2459251","45.4569647"],["-111.245562","45.4564638"],["-111.2452269","45.455996"],["-111.2448439","45.4554584"],["-111.2443041","45.4548422"],["-111.2436497","45.4542726"],["-111.2427674","45.4536957"],["-111.2419341","45.4532843"],["-111.2403834","45.4525349"],["-111.2398495","45.4522671"],["-111.2394326","45.4520441"],["-111.2390214","45.4517811"],["-111.2388454","45.4516473"],["-111.2385176","45.4513663"],["-111.2382019","45.4510185"],["-111.2379742","45.4506814"],["-111.237644","45.4500198"],["-111.2361159","45.4460052"],["-111.2359641","45.4455734"],["-111.2358428","45.445217"],["-111.235045","45.4430493"],["-111.234673","45.441941"],["-111.233594","45.4382166"],["-111.2333412","45.4373217"],["-111.2331585","45.4366394"],["-111.2330727","45.4361995"],["-111.2331009","45.4354312"],["-111.2331924","45.4349653"],["-111.2333167","45.4343872"],["-111.2334135","45.4337648"],["-111.2333947","45.4331207"],["-111.2333281","45.4323513"],["-111.2331998","45.4313348"],["-111.2331121","45.430352"],["-111.2330229","45.4291935"],["-111.233062","45.4285353"],["-111.2331177","45.4279342"],["-111.2332126","45.4275173"],["-111.233915","45.4250723"],["-111.2341312","45.4241838"],["-111.23422","45.4236174"],["-111.2342529","45.4230738"],["-111.2342854","45.4226373"],["-111.2342278","45.4223324"],["-111.2341946","45.4220921"],["-111.2341307","45.4218762"],["-111.2340091","45.421557"],["-111.2338788","45.4211933"],["-111.2338072","45.4208448"],["-111.2337377","45.4200761"],["-111.2336959","45.4197668"],["-111.2335793","45.4192743"],["-111.23338","45.4184238"],["-111.2332909","45.4181306"],["-111.233201","45.4178464"],["-111.2331224","45.417575"],["-111.2329451","45.4167701"],["-111.232721","45.4160841"],["-111.2324874","45.4157639"],["-111.2321479","45.4154226"],["-111.2314427","45.4147582"],["-111.2310088","45.4142751"],["-111.2304882","45.4137674"],["-111.2299738","45.4134019"],["-111.2295312","45.4131119"],["-111.2293354","45.4129664"],["-111.2291248","45.412784"],["-111.2288193","45.412493"],["-111.2285237","45.4121605"],["-111.2282521","45.4117881"],["-111.227945","45.4112132"],["-111.2275105","45.4103018"],["-111.2268744","45.408675"],["-111.226717","45.4083589"],["-111.2265746","45.4081335"],["-111.2264573","45.4080008"],["-111.2262952","45.4078524"],["-111.2260671","45.4076995"],["-111.2259545","45.4076315"],["-111.2257784","45.4075561"],["-111.2254556","45.407423"],["-111.2250635","45.4073191"],["-111.224628","45.4072723"],["-111.2242937","45.4072663"],["-111.2237872","45.4073003"],["-111.2234234","45.4073476"],["-111.2229611","45.4074132"],["-111.2226425","45.4074532"],["-111.2224712","45.4074647"],["-111.2223255","45.4074605"],["-111.2221563","45.4074437"],["-111.2220152","45.4074153"],["-111.2218844","45.407379"],["-111.2217477","45.4073287"],["-111.2215327","45.4072321"],["-111.2214031","45.4071546"],["-111.2212832","45.407053"],["-111.2208391","45.4065426"],["-111.2205383","45.406163"],["-111.2201478","45.4056507"],["-111.2197108","45.4050833"],["-111.2191898","45.4044038"],["-111.2187735","45.4037559"],["-111.2184179","45.4030726"],["-111.2181877","45.402429"],["-111.217985","45.4018555"],["-111.217818","45.4013894"],["-111.2177343","45.4012148"],["-111.2175078","45.4008444"],["-111.2171484","45.4002839"],["-111.2164953","45.3995375"],["-111.2158462","45.3989796"],["-111.215554","45.3987625"],["-111.2152247","45.3985571"],["-111.2147978","45.398355"],["-111.2138274","45.397965"],["-111.212788","45.3975591"],["-111.2117615","45.3970635"],["-111.2107232","45.3965289"],["-111.209831","45.3961414"],["-111.2089517","45.3958341"],["-111.2076611","45.3953967"],["-111.2073394","45.3952697"],["-111.2070757","45.3951254"],["-111.2068611","45.3949906"],["-111.2066918","45.3948633"],["-111.2065366","45.3946984"],["-111.206135","45.3941781"],["-111.2052898","45.3927463"],["-111.2049868","45.392217"],["-111.2045252","45.3914786"],["-111.2043519","45.3912707"],["-111.2041738","45.3910941"],["-111.2039939","45.3909511"],["-111.203772","45.390804"],["-111.2035124","45.3906899"],["-111.2032518","45.3905907"],["-111.2030257","45.3905207"],["-111.2027714","45.3904641"],["-111.2024468","45.3904248"],["-111.2021195","45.3904098"],["-111.2014825","45.3904216"],["-111.2009297","45.3904301"],["-111.2002462","45.3904341"],["-111.1998764","45.3904045"],["-111.199566","45.3903492"],["-111.1992816","45.390277"],["-111.1990101","45.3901635"],["-111.1988474","45.3900835"],["-111.1987058","45.3900137"],["-111.1985155","45.3898945"],["-111.1983477","45.3897579"],["-111.1979726","45.3893232"],["-111.1964116","45.3872861"],["-111.196037","45.3868433"],["-111.1958425","45.3866584"],["-111.195557","45.3864671"],["-111.195257","45.3862932"],["-111.1949488","45.3861283"],["-111.1946916","45.3859811"],["-111.1944885","45.3858496"],["-111.1942764","45.3856724"],["-111.1941216","45.3855149"],["-111.1940125","45.3853554"],["-111.1939275","45.3851495"],["-111.1938096","45.3847679"],["-111.1937406","45.3841983"],["-111.1936815","45.3837264"],["-111.1936279","45.3834037"],["-111.1935663","45.3831884"],["-111.1934779","45.3829945"],["-111.1932783","45.3827107"],["-111.1931452","45.3825753"],["-111.1929751","45.3824364"],["-111.1927088","45.3822617"],["-111.1924375","45.3821217"],["-111.1921365","45.382014"],["-111.191464","45.3818209"],["-111.1905978","45.3815935"],["-111.1875164","45.3808284"],["-111.1871625","45.3807818"],["-111.1868624","45.3807557"],["-111.1863702","45.3807433"],["-111.1848318","45.3807687"],["-111.184464","45.3807514"],["-111.1838809","45.3806628"],["-111.1809339","45.380087"],["-111.1796082","45.3798214"],["-111.178552","45.3796386"],["-111.1780293","45.3795974"],["-111.1774567","45.3796135"],["-111.1767317","45.3796448"],["-111.17631","45.3796327"],["-111.1758914","45.3795956"],["-111.175535","45.3795295"],["-111.1751491","45.3794033"],["-111.1747742","45.3792303"],["-111.1743139","45.3789133"],["-111.1740734","45.3786826"],["-111.1739195","45.3784593"],["-111.1738145","45.3781988"],["-111.1737303","45.3779609"],["-111.173699","45.3777425"],["-111.1737279","45.3774967"],["-111.1737723","45.3772875"],["-111.1738454","45.3770903"],["-111.1739887","45.3768506"],["-111.1741431","45.3766463"],["-111.1743396","45.3764525"],["-111.1746753","45.3761651"],["-111.1750623","45.3758229"],["-111.1752702","45.3755937"],["-111.1754481","45.3753768"],["-111.1755779","45.375157"],["-111.1756752","45.3749084"],["-111.1757245","45.3747116"],["-111.1757476","45.3745657"],["-111.1757466","45.3743919"],["-111.1757271","45.3741314"],["-111.1756777","45.3739404"],["-111.1753961","45.3732735"],["-111.1748224","45.3719998"],["-111.1747286","45.3716991"],["-111.1746787","45.3714267"],["-111.1746795","45.3711586"],["-111.174693","45.3709788"],["-111.1747574","45.3707208"],["-111.1749493","45.3700846"],["-111.1751938","45.3692598"],["-111.1753712","45.3685099"],["-111.1754095","45.3682038"],["-111.175427","45.3679636"],["-111.1754124","45.3676787"],["-111.1753191","45.3669812"],["-111.1750846","45.3661949"],["-111.1747012","45.3654327"],["-111.1743176","45.3649392"],["-111.1736872","45.3642403"],["-111.1730225","45.3635435"],["-111.1723397","45.3628033"],["-111.1717397","45.362027"],["-111.1713055","45.3612589"],["-111.1708572","45.360438"],["-111.1705761","45.3596555"],["-111.1704453","45.3589051"],["-111.1705483","45.3582154"],["-111.1706886","45.3577536"],["-111.1716735","45.3552651"],["-111.1718996","45.3545001"],["-111.1719716","45.3537281"],["-111.1718904","45.3526904"],["-111.1719198","45.3522683"],["-111.1719957","45.3520356"],["-111.1721053","45.351807"],["-111.1722273","45.3515526"],["-111.1723686","45.351225"],["-111.1726081","45.3506153"],["-111.1726893","45.3503687"],["-111.1727559","45.3500101"],["-111.1728938","45.3488654"],["-111.1729612","45.3482492"],["-111.1730171","45.3478467"],["-111.1731059","45.3473434"],["-111.1731352","45.3471347"],["-111.1731708","45.3468326"],["-111.173167","45.346498"],["-111.1731455","45.346187"],["-111.1730461","45.3457866"],["-111.1728739","45.3453958"],["-111.1727286","45.3450977"],["-111.1726144","45.3448814"],["-111.1723719","45.3444239"],["-111.1719221","45.3435119"],["-111.1718449","45.3433693"],["-111.1708637","45.3413738"],["-111.1706714","45.3409178"],["-111.1705784","45.3405738"],["-111.1705503","45.3402069"],["-111.1706343","45.3396658"],["-111.1709154","45.338431"],["-111.171935","45.333284"],["-111.1724668","45.3293334"],["-111.1726229","45.3286367"],["-111.1728166","45.3280015"],["-111.1731224","45.3272874"],["-111.1738087","45.3257904"],["-111.1741847","45.3250192"],["-111.1745765","45.3243231"],["-111.1748317","45.3240076"],["-111.1751171","45.323729"],["-111.1756508","45.3233547"],["-111.1768811","45.3225865"],["-111.1778428","45.3220234"],["-111.1848777","45.3179219"],["-111.1858262","45.3173413"],["-111.1859892","45.3172363"],["-111.1864485","45.3169354"],["-111.1866483","45.3167469"],["-111.1867582","45.3165493"],["-111.1870482","45.3160834"],["-111.1873862","45.3153854"],["-111.1877599","45.3146988"],["-111.1882798","45.3140064"],["-111.1888471","45.3134607"],["-111.1893353","45.3130321"],["-111.18953","45.3128188"],["-111.189697","45.3126168"],["-111.1898332","45.3123923"],["-111.1899795","45.3121249"],["-111.1900782","45.3118776"],["-111.1902151","45.3115816"],["-111.1904792","45.3110836"],["-111.1907603","45.310662"],["-111.1913225","45.3099818"],["-111.1920106","45.3094395"],["-111.1925854","45.3090741"],["-111.1945384","45.3080022"],["-111.195459","45.3074873"],["-111.1959007","45.3071993"],["-111.1962151","45.3068971"],["-111.1963883","45.3066661"],["-111.1964989","45.3064984"],["-111.1966167","45.3062593"],["-111.1966767","45.305963"],["-111.1966985","45.3055082"],["-111.196637","45.3048256"],["-111.1965637","45.3041174"],["-111.1966253","45.3035112"],["-111.1967358","45.3031443"],["-111.1969031","45.3028413"],["-111.1974691","45.3022458"],["-111.1983755","45.3013695"],["-111.1989828","45.3007979"],["-111.1993586","45.3004296"],["-111.1999026","45.2999909"],["-111.200516","45.2995731"],["-111.2011289","45.2992141"],["-111.2018628","45.2988465"],["-111.2023946","45.2986211"],["-111.2030116","45.2983926"],["-111.2033692","45.2982922"],["-111.2035957","45.2982199"],["-111.2043903","45.2980373"],["-111.2127798","45.2962864"],["-111.2135055","45.2961192"],["-111.2139462","45.2959922"],["-111.2142899","45.2958583"],["-111.2146397","45.2956864"],["-111.2150102","45.295476"],["-111.2152892","45.2952507"],["-111.2155399","45.2950198"],["-111.2157673","45.2947483"],["-111.2158965","45.2945466"],["-111.2160642","45.2942018"],["-111.2162508","45.2937361"],["-111.2164526","45.2931583"],["-111.2166915","45.292427"],["-111.2169442","45.2916527"],["-111.2170869","45.2912509"],["-111.2171748","45.2909768"],["-111.2172926","45.2905961"],["-111.2173851","45.2902716"],["-111.2174818","45.2900097"],["-111.2176165","45.2897157"],["-111.217735","45.2895057"],["-111.2178479","45.2893594"],["-111.2179809","45.2892165"],["-111.2181323","45.2890826"],["-111.2182551","45.2889963"],["-111.2183997","45.2889023"],["-111.2188503","45.2886723"],["-111.2198261","45.2882485"],["-111.2202626","45.2880463"],["-111.2205156","45.2878915"],["-111.2209034","45.2876156"],["-111.2211012","45.2874361"],["-111.2212233","45.2872955"],["-111.2213071","45.28719"],["-111.2213994","45.2870572"],["-111.221485","45.2869263"],["-111.2215773","45.2867598"],["-111.2216703","45.2865766"],["-111.2217915","45.2863251"],["-111.221979","45.2859411"],["-111.222268","45.2853926"],["-111.2224778","45.2850541"],["-111.2227101","45.2847496"],["-111.2230968","45.2843683"],["-111.2241821","45.2834651"],["-111.224407","45.2832571"],["-111.2245811","45.2830881"],["-111.2247306","45.2829319"],["-111.2251125","45.2824872"],["-111.2258393","45.2816144"],["-111.2261267","45.2812901"],["-111.226365","45.2810338"],["-111.226731","45.2807035"],["-111.2273024","45.2802397"],["-111.2277422","45.2799203"],["-111.2281084","45.2796823"],["-111.228554","45.2794183"],["-111.2292153","45.2790813"],["-111.2308148","45.2783422"],["-111.2314743","45.2780571"],["-111.2318525","45.27792"],["-111.2322018","45.2778082"],["-111.232528","45.2777208"],["-111.2330055","45.2776323"],["-111.233464","45.2775589"],["-111.2350961","45.2773254"],["-111.2354293","45.2772625"],["-111.2356946","45.2772034"],["-111.2360158","45.2771228"],["-111.2363004","45.2770334"],["-111.2366397","45.2769157"],["-111.2370212","45.2767576"],["-111.237469","45.2765439"],["-111.23784","45.2763351"],["-111.2381051","45.2761654"],["-111.2383717","45.2759718"],["-111.238638","45.2757587"],["-111.238967","45.2754464"],["-111.2404968","45.2737998"],["-111.2413854","45.2728265"],["-111.2415959","45.2726025"],["-111.241803","45.2723897"],["-111.2419735","45.2722265"],["-111.2421724","45.2720499"],["-111.2424089","45.2718698"],["-111.2426727","45.2716881"],["-111.2429897","45.271482"],["-111.243335","45.2712885"],["-111.2436666","45.2711175"],["-111.2441387","45.2708968"],["-111.2448608","45.2706063"],["-111.2456847","45.2703293"],["-111.2474224","45.2698484"],["-111.2482297","45.2696138"],["-111.2487027","45.2694497"],["-111.2491973","45.2692439"],["-111.2496682","45.2690182"],["-111.2500402","45.2688174"],["-111.250415","45.2685868"],["-111.2507182","45.2683762"],["-111.2511207","45.268067"],["-111.2516147","45.2676277"],["-111.2521018","45.2671056"],["-111.2522839","45.2668624"],["-111.2524111","45.2666836"],["-111.2526785","45.2662485"],["-111.252884","45.265887"],["-111.2533011","45.2646042"],["-111.2535317","45.2637005"],["-111.254126","45.261384"],["-111.2543612","45.2604896"],["-111.25446","45.2599122"],["-111.2544654","45.2594312"],["-111.254377","45.2548464"],["-111.2543099","45.2537559"],["-111.2541738","45.2530773"],["-111.2539721","45.2524672"],["-111.2536554","45.2517297"],["-111.253369","45.2511245"],["-111.2531115","45.2506589"],["-111.2524924","45.2495077"],["-111.2518153","45.248153"],["-111.2515873","45.2475027"],["-111.251352","45.2467967"],["-111.2511749","45.2460707"],["-111.2510478","45.2454945"],["-111.2509757","45.2450364"],["-111.2509051","45.2440978"],["-111.2508917","45.2434132"],["-111.2508907","45.2429606"],["-111.2508903","45.2426151"],["-111.2508746","45.2374291"],["-111.250871","45.2370452"],["-111.2508584","45.23255"],["-111.2508225","45.2314412"],["-111.2508052","45.227849"],["-111.2508136","45.2271825"],["-111.2508224","45.2265861"],["-111.250794","45.2226822"],["-111.2507389","45.2220188"],["-111.250636","45.2213125"],["-111.250245","45.2196973"],["-111.2478936","45.2131982"],["-111.2476718","45.2126305"],["-111.247387","45.2121226"],["-111.2466597","45.2110485"],["-111.2384614","45.199887"],["-111.2374376","45.198461"],["-111.2373237","45.1982568"],["-111.2372295","45.1980661"],["-111.2371469","45.1978354"],["-111.2370751","45.1976131"],["-111.2370241","45.1973831"],["-111.2369874","45.1969213"],["-111.2370324","45.1964331"],["-111.237302","45.19463"],["-111.2380566","45.1897673"],["-111.2381522","45.1889904"],["-111.2382086","45.1878297"],["-111.2382619","45.187066"],["-111.2383396","45.1865427"],["-111.2384356","45.1860281"],["-111.2385883","45.1853506"],["-111.2391223","45.1837963"],["-111.2396629","45.1822422"],["-111.2403152","45.1805928"],["-111.2404791","45.1802778"],["-111.2406273","45.1800045"],["-111.2412864","45.1791559"],["-111.2418749","45.1784242"],["-111.2421996","45.1779683"],["-111.2425782","45.1773117"],["-111.2428142","45.1766757"],["-111.2429008","45.1762046"],["-111.2430359","45.1752432"],["-111.2433571","45.1730765"],["-111.2437984","45.1701247"],["-111.2439339","45.1694138"],["-111.2441171","45.1689583"],["-111.2443343","45.1685853"],["-111.2445028","45.1683375"],["-111.2447162","45.1680526"],["-111.245086","45.1676561"],["-111.2454175","45.1673218"],["-111.2458594","45.1668903"],["-111.2463397","45.1664087"],["-111.2469563","45.1657411"],["-111.2477269","45.1647205"],["-111.2483864","45.1635133"],["-111.2488171","45.1622363"],["-111.248954","45.1615659"],["-111.2490172","45.1609282"],["-111.2489479","45.160314"],["-111.2487539","45.1597262"],["-111.2483658","45.1590927"],["-111.2466447","45.1570728"],["-111.2463778","45.1566598"],["-111.2461879","45.1563204"],["-111.2459571","45.1557695"],["-111.2458279","45.1554131"],["-111.2456628","45.1548394"],["-111.2455965","45.1543087"],["-111.2456066","45.1538391"],["-111.2456491","45.1531368"],["-111.2463621","45.1483532"],["-111.2463328","45.147584"],["-111.2461866","45.1468856"],["-111.2461004","45.1465962"],["-111.2460019","45.1463852"],["-111.2458358","45.1460819"],["-111.2454513","45.1454786"],["-111.2448862","45.1448712"],["-111.2416638","45.1420048"],["-111.240762","45.1412414"],["-111.2403558","45.1409635"],["-111.2398967","45.1407329"],["-111.2386573","45.1402568"],["-111.2382077","45.1400576"],["-111.2380078","45.1399461"],["-111.2377903","45.1398017"],["-111.2375534","45.1396294"],["-111.2373655","45.1394657"],["-111.2372149","45.1393059"],["-111.237072","45.1391222"],["-111.2369768","45.1389785"],["-111.2368522","45.1387407"],["-111.2367362","45.1384095"],["-111.2362301","45.1366857"],["-111.2351083","45.1329375"],["-111.233162","45.1283297"],["-111.2325086","45.1272472"],["-111.2310883","45.1255995"],["-111.2305473","45.1248148"],["-111.2268497","45.1185519"],["-111.2266163","45.1181215"],["-111.2264584","45.1178331"],["-111.2262411","45.1173851"],["-111.2257556","45.1163796"],["-111.225583","45.1160418"],["-111.2252954","45.1154156"],["-111.2243823","45.112721"],["-111.222869","45.10786"],["-111.2221844","45.1061063"],["-111.2210595","45.1041885"],["-111.2187628","45.1012452"],["-111.2179258","45.0999027"],["-111.2147986","45.0936734"],["-111.2133951","45.090133"],["-111.2129446","45.0891429"],["-111.2120532","45.0878178"],["-111.2098148","45.0847538"],["-111.2089058","45.0833519"],["-111.2086777","45.0826877"],["-111.2083685","45.080726"],["-111.2082596","45.0803087"],["-111.208135","45.0799574"],["-111.2078993","45.0794663"],["-111.2072376","45.078582"],["-111.2065992","45.0779903"],["-111.2029393","45.0753165"],["-111.1969861","45.0709925"],["-111.1962456","45.0705058"],["-111.195855","45.0702802"],["-111.1954358","45.0700706"],["-111.194383","45.0696381"],["-111.1907759","45.0682905"],["-111.1882415","45.067395"],["-111.1868215","45.0668272"],["-111.1836215","45.0656271"],["-111.1825682","45.0652374"],["-111.1799885","45.0642724"],["-111.1787447","45.0638064"],["-111.1761485","45.0628652"],["-111.1749401","45.062525"],["-111.1736535","45.0622875"],["-111.1724585","45.0621673"],["-111.170095","45.0620813"],["-111.1691709","45.0620229"],["-111.1680715","45.0618439"],["-111.1668706","45.0614942"],["-111.1655269","45.0608497"],["-111.1641683","45.0599834"],["-111.1569598","45.0551992"],["-111.1563681","45.054822"],["-111.1560739","45.0546451"],["-111.1547711","45.0539185"],["-111.1542205","45.0536416"],["-111.1529467","45.053058"],["-111.1521869","45.0527448"],["-111.1342186","45.0458987"],["-111.1334876","45.0455563"],["-111.1330945","45.0453227"],["-111.1328142","45.0451154"],["-111.1323415","45.044697"],["-111.1319712","45.0442803"],["-111.1315271","45.0437668"],["-111.1311857","45.0434262"],["-111.1308415","45.04316"],["-111.1303588","45.0428562"],["-111.1299464","45.0426387"],["-111.1292725","45.0423607"],["-111.1213624","45.0394658"],["-111.1202282","45.0390214"],["-111.1196958","45.0387482"],["-111.1190085","45.0383087"],["-111.1152371","45.0356498"],["-111.1143766","45.0350738"],["-111.1141565","45.0349005"],["-111.1139447","45.0347518"],["-111.1134043","45.0342738"],["-111.1127477","45.0335837"],["-111.111002","45.0313839"],["-111.1097732","45.030121"],["-111.1093679","45.0297431"],["-111.108907","45.0293063"],["-111.1079943","45.0286724"],["-111.1070153","45.0280878"],["-111.1060352","45.0276008"],["-111.1048826","45.0271346"],["-111.1018205","45.0259922"],["-111.1006114","45.0255279"],["-111.0994378","45.0250596"],["-111.0983676","45.0245578"],["-111.0974122","45.0240553"],["-111.0965091","45.0235329"],["-111.0954601","45.0228411"],["-111.0841589","45.0146744"],["-111.082932","45.013726"],["-111.0823569","45.0131551"],["-111.0818942","45.0125986"],["-111.0817186","45.0123661"],["-111.0814774","45.012009"],["-111.0811246","45.0113154"],["-111.0808574","45.0106222"],["-111.0806704","45.0098432"],["-111.0805718","45.0086974"],["-111.0804087","45.0054478"],["-111.0803099","45.0034354"],["-111.0787473","44.9710747"],["-111.0786733","44.9699791"],["-111.0785503","44.9683232"],["-111.078263","44.9672895"],["-111.0778965","44.9665175"],["-111.0773915","44.9657383"],["-111.0767784","44.9650065"],["-111.076095","44.9643571"],["-111.0743497","44.9631345"],["-111.0687525","44.9594432"],["-111.0665094","44.9579498"],["-111.062977","44.9556013"],["-111.0620489","44.9549143"],["-111.0613044","44.954193"],["-111.0606973","44.9534476"],["-111.0602389","44.9527135"],["-111.0598959","44.9519622"],["-111.0593682","44.9501148"],["-111.0542051","44.9296409"],["-111.0536868","44.9275171"],["-111.0532362","44.9258074"],["-111.0529475","44.9245163"],["-111.0527655","44.9233959"],["-111.0526135","44.9222101"],["-111.0528479","44.9176166"],["-111.0544215","44.8879275"],["-111.0543109","44.8872473"],["-111.0541281","44.886564"],["-111.0540168","44.8861848"],["-111.0537298","44.8856018"],["-111.0528704","44.8840495"],["-111.0520408","44.8824174"],["-111.0518368","44.8815301"],["-111.051727","44.8806803"],["-111.0515888","44.8800413"],["-111.0513987","44.87961"],["-111.0511145","44.879158"],["-111.0508083","44.878789"],["-111.0501638","44.8782793"],["-111.0478214","44.8768826"],["-111.0470926","44.8763849"],["-111.0467041","44.875985"],["-111.0463712","44.8754361"],["-111.0460405","44.8746843"],["-111.0452487","44.872672"],["-111.0440883","44.8694739"],["-111.0439636","44.8688144"],["-111.044007","44.8681936"],["-111.0442418","44.8672294"],["-111.0456708","44.8646044"],["-111.0474367","44.8617647"],["-111.0482123","44.8608578"],["-111.0498729","44.8596695"],["-111.0650473","44.8512302"],["-111.0659668","44.8506079"],["-111.0669307","44.8497207"],["-111.0673639","44.8492716"],["-111.0681577","44.8480963"],["-111.0763025","44.8336475"],["-111.0777583","44.8311604"],["-111.0784286","44.8303491"],["-111.0791987","44.8296365"],["-111.0806971","44.8286242"],["-111.0873408","44.8245692"],["-111.089012","44.8233232"],["-111.0900766","44.8220621"],["-111.0908481","44.8204812"],["-111.0941246","44.8115191"],["-111.09447","44.8108225"],["-111.0949353","44.8101348"],["-111.0957369","44.8092417"],["-111.0965808","44.8085122"],["-111.0978846","44.8076602"],["-111.1004658","44.8063299"],["-111.1015305","44.805845"],["-111.1018026","44.8057452"],["-111.1021155","44.8056392"],["-111.1024998","44.8055466"],["-111.1028921","44.8054701"],["-111.1040181","44.8052806"],["-111.1065313","44.8049123"],["-111.1070941","44.80478"],["-111.1074925","44.8046457"],["-111.1077713","44.8045115"],["-111.1079717","44.8044027"],["-111.1081821","44.8042605"],["-111.1084496","44.8040284"],["-111.1086908","44.8037997"],["-111.108765","44.8037049"],["-111.108844","44.8035873"],["-111.1089273","44.8034484"],["-111.1089876","44.8033015"],["-111.1090712","44.8030246"],["-111.1091043","44.802872"],["-111.1091231","44.8026751"],["-111.1091311","44.802493"],["-111.1091148","44.8022628"],["-111.1090761","44.8020946"],["-111.1090011","44.8019129"],["-111.1087834","44.8015461"],["-111.1086047","44.801315"],["-111.1083665","44.801084"],["-111.1081798","44.8009246"],["-111.1078743","44.8007197"],["-111.107286","44.8004457"],["-111.1065186","44.800143"],["-111.10587","44.7998763"],["-111.1053771","44.79964"],["-111.1049987","44.7994086"],["-111.104694","44.7991643"],["-111.1043907","44.7988435"],["-111.1041697","44.7985349"],["-111.1040452","44.7982539"],["-111.1039669","44.7980286"],["-111.1039341","44.7977856"],["-111.1039609","44.7971711"],["-111.1040217","44.7969219"],["-111.1041432","44.7966164"],["-111.1042742","44.7964065"],["-111.1044573","44.7961588"],["-111.109954","44.791034"],["-111.1107514","44.7902935"],["-111.1111881","44.7898779"],["-111.1116961","44.7893134"],["-111.1120945","44.7888021"],["-111.1124669","44.7882281"],["-111.1127538","44.7876686"],["-111.1129912","44.7870691"],["-111.1131423","44.7864637"],["-111.1132342","44.7858218"],["-111.1132823","44.7848261"],["-111.1133091","44.7825257"],["-111.1133229","44.7814333"],["-111.1133113","44.7804849"],["-111.1133091","44.7799327"],["-111.1133006","44.7780584"],["-111.1133008","44.7722645"],["-111.1132419","44.7405247"],["-111.1131708","44.739252"],["-111.1129919","44.7382788"],["-111.1127262","44.7373407"],["-111.1123721","44.7364616"],["-111.1119722","44.7356687"],["-111.1044703","44.7223782"],["-111.1040692","44.7215931"],["-111.1037474","44.720801"],["-111.1034567","44.7199339"],["-111.1032457","44.7190816"],["-111.103082","44.7181992"],["-111.1030067","44.717337"],["-111.1028945","44.7153846"],["-111.1028573","44.7148046"],["-111.1026802","44.7116465"],["-111.1010587","44.6851187"],["-111.1004347","44.6749733"],["-111.1003525","44.6737875"],["-111.1003169","44.6729776"],["-111.0999844","44.6679608"],["-111.0997776","44.6678795"],["-111.0996556","44.6678536"],["-111.0995596","44.667821"],["-111.0994469","44.6677459"],["-111.0994307","44.6676595"],["-111.0994282","44.6674189"],["-111.099394","44.6673713"],["-111.0993318","44.6673567"],["-111.0992838","44.6673517"],["-111.0992163","44.6673605"],["-111.0991167","44.66736"],["-111.0989922","44.6673576"],["-111.0987773","44.6673694"],["-111.0985457","44.6673787"],["-111.0983311","44.6674136"],["-111.0981447","44.667476"],["-111.0979264","44.6675844"],["-111.0978416","44.667661"],["-111.0978005","44.6677379"],["-111.0977744","44.6679079"],["-111.0977586","44.6682977"],["-111.0977579","44.6683207"],["-111.0977531","44.6683681"],["-111.0976631","44.6687197"],["-111.0974435","44.6689663"],["-111.0973746","44.6690954"],["-111.0973586","44.6692636"],["-111.0974145","44.66945"],["-111.0975062","44.6695669"],["-111.0976339","44.6696192"],["-111.0977916","44.6696162"],["-111.0979136","44.6695719"],["-111.0979857","44.6694954"],["-111.0980315","44.6693693"],["-111.0980473","44.6692583"],["-111.0980207","44.6691366"],["-111.0978652","44.6689297"],["-111.0976846","44.6687141"],["-111.0977532","44.6683686"],["-111.097775","44.6679034"],["-111.0978007","44.6677375"],["-111.0978412","44.6676617"],["-111.0979257","44.6675849"],["-111.0981419","44.6674772"],["-111.0983309","44.6674136"],["-111.0985422","44.667379"],["-111.0987777","44.6673692"],["-111.0989968","44.667357"],["-111.0991084","44.6673599"],["-111.0992174","44.6673605"],["-111.0992833","44.6673518"],["-111.0993322","44.6673567"],["-111.0993932","44.667371"],["-111.0994282","44.6674194"],["-111.0994307","44.6676588"],["-111.0994479","44.6677466"],["-111.0995576","44.6678202"],["-111.099656","44.6678536"],["-111.0997752","44.6678791"],["-111.0999779","44.6678314"],["-111.0999242","44.6667459"],["-111.0997659","44.6648307"],["-111.0997006","44.6640002"],["-111.0997472","44.6622367"],["-111.1046742","44.662265"],["-111.1049548","44.662282"],["-111.1052127","44.6623085"],["-111.1054176","44.662338"],["-111.1059564","44.662439"],["-111.1074981","44.6627422"],["-111.1082004","44.6628745"],["-111.1090531","44.6630171"],["-111.112114","44.6635218"],["-111.114175","44.6638838"],["-111.181503","44.6758019"],["-111.1846968","44.676485"],["-111.1878522","44.6773654"],["-111.2132222","44.6848471"],["-111.2143823","44.6851764"],["-111.2151316","44.685361"],["-111.2160287","44.6855512"],["-111.2170744","44.6857305"],["-111.2179763","44.6858658"],["-111.2189159","44.6859519"],["-111.2392046","44.6876028"],["-111.2399188","44.6876492"],["-111.2406317","44.6876808"],["-111.2411412","44.6876483"],["-111.2413244","44.687651"],["-111.2414628","44.687653"],["-111.2426843","44.6876364"],["-111.2433906","44.6876024"],["-111.2442011","44.6875525"],["-111.2449505","44.6874783"],["-111.2522573","44.6864343"],["-111.2620793","44.6849568"],["-111.2632864","44.6846857"],["-111.2642774","44.6843519"],["-111.2652078","44.6839367"],["-111.2661738","44.683362"],["-111.2669153","44.6827842"],["-111.2674971","44.6822029"],["-111.2679279","44.6816272"],["-111.2682386","44.6810684"],["-111.2684541","44.680594"],["-111.2686321","44.6801746"],["-111.2687836","44.6797764"],["-111.269123","44.6789182"],["-111.2694149","44.6782614"],["-111.2697782","44.6777125"],["-111.2702849","44.6771707"],["-111.270867","44.6767197"],["-111.2714818","44.6763757"],["-111.2721277","44.6760808"],["-111.2736292","44.6754699"],["-111.2742829","44.675212"],["-111.2743709","44.6751786"],["-111.2748884","44.6749718"],["-111.275774","44.6746056"],["-111.2760816","44.6744722"],["-111.2774222","44.6739139"],["-111.2791389","44.6733245"],["-111.2861002","44.6711465"],["-111.2864366","44.6710249"],["-111.2867432","44.6709063"],["-111.287037","44.6707815"],["-111.2875925","44.6704612"],["-111.2879275","44.6702297"],["-111.2885454","44.6697913"],["-111.289388","44.6692412"],["-111.2900137","44.6689349"],["-111.2903989","44.6687797"],["-111.2909794","44.668633"],["-111.2925262","44.6683081"],["-111.29324","44.6681617"],["-111.2942715","44.6679202"],["-111.2947468","44.6677898"],["-111.2955844","44.6674785"],["-111.2987466","44.6661507"],["-111.2990603","44.6660108"],["-111.2994089","44.6658399"],["-111.2997256","44.6656758"],["-111.3002048","44.6653882"],["-111.3008819","44.6649592"],["-111.3015181","44.6645851"],["-111.302334","44.6642329"],["-111.3070278","44.6624901"],["-111.3074589","44.6623344"],["-111.3077714","44.6621928"],["-111.3081286","44.662018"],["-111.3085079","44.6617876"],["-111.3089274","44.6614843"],["-111.3090828","44.6613373"],["-111.3092494","44.6611323"],["-111.3095346","44.6606817"],["-111.3096805","44.660411"],["-111.3099963","44.6593799"],["-111.3102172","44.6586223"],["-111.3104165","44.6577928"],["-111.3112131","44.6548022"],["-111.3122395","44.6519726"],["-111.3126755","44.6511681"],["-111.313595","44.6496988"],["-111.3143788","44.6485804"],["-111.321331","44.6387672"],["-111.3220669","44.6378666"],["-111.3225733","44.6373693"],["-111.3228774","44.6370788"],["-111.323477","44.6365376"],["-111.3240919","44.6360826"],["-111.3248493","44.6355526"],["-111.3255469","44.6350968"],["-111.3260383","44.6347804"],["-111.3264217","44.6345334"],["-111.3281889","44.6333193"],["-111.3302072","44.631981"],["-111.3311234","44.63127"],["-111.3316974","44.6307905"],["-111.3320079","44.6304923"],["-111.3323915","44.6301137"],["-111.3331331","44.6292804"],["-111.3334266","44.6288761"],["-111.3337097","44.6283917"],["-111.3339574","44.6279688"],["-111.3341191","44.6275983"],["-111.3344503","44.626747"],["-111.33453","44.6264796"],["-111.3346097","44.6261711"],["-111.3346823","44.6258882"],["-111.3347254","44.6254871"],["-111.3347692","44.6249921"],["-111.3349794","44.621455"],["-111.3350809","44.6191217"],["-111.33519","44.6170442"],["-111.3352303","44.6161056"],["-111.3355816","44.6086091"],["-111.3356325","44.6074429"],["-111.33572","44.6056883"],["-111.3357779","44.6044886"],["-111.3359354","44.6012254"],["-111.3360306","44.5991801"],["-111.3361235","44.5965253"],["-111.3361012","44.5886192"],["-111.3361075","44.5878467"],["-111.3361804","44.587074"],["-111.3366626","44.5842562"],["-111.3367369","44.583576"],["-111.3368276","44.5822685"],["-111.337149","44.5767291"],["-111.3372666","44.5723826"],["-111.3372771","44.5708932"],["-111.3372334","44.5699778"],["-111.3371736","44.5691268"],["-111.3370745","44.5682836"],["-111.3366568","44.5660851"],["-111.3338791","44.5529793"],["-111.3335487","44.5513723"],["-111.3326681","44.5472061"],["-111.3319931","44.5440041"],["-111.3318422","44.5432494"],["-111.3315506","44.5418936"],["-111.3312794","44.5407035"],["-111.3310428","44.5394573"],["-111.3308698","44.5386362"],["-111.330502","44.5369185"],["-111.3303929","44.5363686"],["-111.3297984","44.5335669"],["-111.3290207","44.5298752"],["-111.3287431","44.528547"],["-111.3284666","44.5272533"],["-111.3283075","44.5265021"],["-111.3281522","44.5256603"],["-111.3279727","44.52478"],["-111.3276216","44.5230198"],["-111.3274921","44.5223978"],["-111.3270274","44.5202075"],["-111.3270037","44.5198464"],["-111.3269915","44.5196697"],["-111.3269785","44.519253"],["-111.3269698","44.5171938"],["-111.3269811","44.5168662"],["-111.3269884","44.5167434"],["-111.3269986","44.5166036"],["-111.3270441","44.5161833"],["-111.3272205","44.5151065"],["-111.3275821","44.5138459"],["-111.3279397","44.5127017"],["-111.3282405","44.511907"],["-111.3284811","44.5113436"],["-111.3287599","44.5107261"],["-111.3293211","44.5097058"],["-111.3297716","44.5087846"],["-111.3301236","44.508238"],["-111.3309695","44.5071134"],["-111.3316591","44.506282"],["-111.3324786","44.5053627"],["-111.3344504","44.503262"],["-111.3351643","44.5025096"],["-111.3357035","44.5019099"],["-111.3361088","44.5013521"],["-111.3364811","44.5008959"],["-111.3369222","44.5003392"],["-111.3373801","44.4996659"],["-111.3376489","44.4992475"],["-111.3379858","44.4987058"],["-111.3387409","44.4974732"],["-111.3400573","44.4947998"],["-111.3404882","44.4940053"],["-111.3415927","44.4917175"],["-111.3420333","44.4907672"],["-111.3429936","44.4888636"],["-111.343331","44.4882002"],["-111.3437692","44.4873302"],["-111.3442591","44.4863138"],["-111.3448958","44.4850364"],["-111.3454982","44.4838744"],["-111.3473121","44.4802995"],["-111.3491923","44.4766111"],["-111.3521875","44.4706211"],["-111.3604565","44.4541449"],["-111.3607821","44.4535079"],["-111.3626786","44.4496139"],["-111.3657543","44.4434084"],["-111.3663292","44.4422234"],["-111.3665103","44.4418422"],["-111.3667941","44.4410631"],["-111.3670593","44.440245"],["-111.3673381","44.43908"],["-111.3675516","44.4381577"],["-111.3677771","44.4373163"],["-111.3680479","44.4361939"],["-111.3683318","44.4350052"],["-111.3686547","44.4336005"],["-111.3695665","44.4299464"],["-111.369876","44.4287084"],["-111.370157","44.4275977"],["-111.3708729","44.4245494"],["-111.3713131","44.4227517"],["-111.3715679","44.4216539"],["-111.3730971","44.4153281"],["-111.3735508","44.413719"],["-111.3736923","44.4130189"],["-111.373892","44.4120817"],["-111.3744026","44.4099605"],["-111.3745943","44.4092561"],["-111.3749174","44.4083698"],["-111.375029","44.4080929"],["-111.3752917","44.4074872"],["-111.3755978","44.4069287"],["-111.375761","44.406594"],["-111.3759504","44.406287"],["-111.3762794","44.4057527"],["-111.3768585","44.4047873"],["-111.37715","44.4043646"],["-111.3774518","44.4038754"],["-111.3775587","44.4036552"],["-111.3779372","44.4030654"],["-111.3782566","44.4025763"],["-111.3785602","44.4020651"],["-111.3791682","44.4010973"],["-111.3796269","44.4003764"],["-111.3801106","44.3996067"],["-111.3805","44.3989484"],["-111.3809654","44.3981883"],["-111.3813483","44.3975732"],["-111.3816968","44.3970141"],["-111.3820209","44.3964878"],["-111.3824635","44.3957962"],["-111.3831544","44.3946522"],["-111.3835552","44.3940315"],["-111.3837799","44.393668"],["-111.3838611","44.3935153"],["-111.383916","44.3934121"],["-111.3842849","44.3928228"],["-111.3847845","44.3920226"],["-111.3851647","44.3914195"],["-111.385417","44.3909909"],["-111.385763","44.3904264"],["-111.3878267","44.3871533"],["-111.3882935","44.3863863"],["-111.3887476","44.3856565"],["-111.3891799","44.3849762"],["-111.3894637","44.3845"],["-111.3900237","44.3835613"],["-111.3903523","44.3830242"],["-111.3906444","44.3825534"],["-111.3909274","44.3821244"],["-111.3914998","44.381212"],["-111.3922344","44.3800193"],["-111.3929764","44.3787986"],["-111.3943244","44.3766244"],["-111.3946421","44.3761011"],["-111.3949448","44.3756589"],["-111.3951299","44.3753658"],["-111.3954129","44.3748818"],["-111.3959591","44.3740232"],["-111.4008785","44.3660849"],["-111.4024818","44.3634479"],["-111.4027484","44.3630426"],["-111.4032766","44.3622658"],["-111.403691","44.3617147"],["-111.4042453","44.3609933"],["-111.4046779","44.3605008"],["-111.4060693","44.3591398"],["-111.4070225","44.358377"],["-111.419202","44.3492329"],["-111.4271669","44.3432102"],["-111.4307961","44.3404573"],["-111.435732","44.3360478"],["-111.4409607","44.3313455"],["-111.4456538","44.3272686"],["-111.4481057","44.3251394"],["-111.4491112","44.3242457"],["-111.4503143","44.3231129"],["-111.4512478","44.3221735"],["-111.4521739","44.3210442"],["-111.453174","44.3193349"],["-111.4538754","44.3177972"],["-111.4541923","44.3168517"],["-111.4546806","44.3142553"],["-111.4574786","44.2957015"],["-111.458142","44.2936516"],["-111.4587439","44.2923658"],["-111.4689611","44.2733595"],["-111.4695373","44.271161"],["-111.4697323","44.2693657"],["-111.4695079","44.2671822"],["-111.468253","44.2628312"],["-111.4457987","44.1925379"],["-111.4448451","44.1899941"],["-111.4438545","44.1885533"],["-111.4428755","44.1874942"],["-111.4413085","44.1862083"],["-111.4395647","44.1852176"],["-111.4329518","44.182261"],["-111.431626","44.1814315"],["-111.4303203","44.1804078"],["-111.4293883","44.1792408"],["-111.4287204","44.1778397"],["-111.4281634","44.1757989"],["-111.4272112","44.1735939"],["-111.4244178","44.1689592"],["-111.4239096","44.1680107"],["-111.4235451","44.1668394"],["-111.4234129","44.1656121"],["-111.423579","44.1644575"],["-111.4242306","44.1627848"],["-111.4249881","44.1612915"],["-111.4253284","44.1601651"],["-111.4255125","44.158395"],["-111.425387","44.1574611"],["-111.4249866","44.1563783"],["-111.4243342","44.1547914"],["-111.4239191","44.1533404"],["-111.4238944","44.1520364"],["-111.4241106","44.1508682"],["-111.4246602","44.1494785"],["-111.4289927","44.1426122"],["-111.4312536","44.1393593"],["-111.4326655","44.1375747"],["-111.4334995","44.1359376"],["-111.4350468","44.1319479"],["-111.4359798","44.1303769"],["-111.4376671","44.1281876"],["-111.4395641","44.1253561"],["-111.4411563","44.1226865"],["-111.4424436","44.1209613"],["-111.4436304","44.1194513"],["-111.4452525","44.1170941"],["-111.4475353","44.1131347"],["-111.4482807","44.1117287"],["-111.4492163","44.1098439"],["-111.4506214","44.1070704"],["-111.4529629","44.1024414"],["-111.4539552","44.1004722"],["-111.4545959","44.0992251"],["-111.454897","44.0985719"],["-111.4551253","44.0980208"],["-111.4552981","44.0975497"],["-111.4554412","44.0970959"],["-111.4556987","44.0961166"],["-111.4557835","44.095744"],["-111.4558386","44.0953722"],["-111.455888","44.0949979"],["-111.4559199","44.094543"],["-111.4559222","44.0862284"],["-111.4559229","44.0842177"],["-111.4559475","44.079608"],["-111.4559573","44.0785379"],["-111.4559632","44.0768804"],["-111.4559642","44.0764014"],["-111.4559335","44.0754493"],["-111.4559439","44.0751375"],["-111.4559435","44.0739403"],["-111.4559801","44.0718328"],["-111.4559309","44.0714077"],["-111.451119","44.0713769"],["-111.4359043","44.0713412"],["-111.43574","44.0704582"],["-111.4357018","44.0632241"],["-111.4356971","44.0625326"],["-111.4356785","44.0617939"],["-111.4356785","44.0605905"],["-111.4356835","44.0591661"],["-111.4357178","44.0588312"],["-111.4358387","44.0584752"],["-111.4360735","44.0580549"],["-111.4362713","44.0577512"],["-111.4364855","44.0575304"],["-111.4367078","44.0573213"],["-111.4368228","44.0572234"],["-111.4371934","44.0569298"],["-111.4373016","44.0568546"],["-111.4375146","44.0566625"],["-111.4377684","44.0564444"],["-111.4379538","44.0561829"],["-111.4381529","44.0558408"],["-111.4383349","44.0553993"],["-111.4384293","44.054984"],["-111.4384847","44.0543909"],["-111.4385413","44.0479808"],["-111.4385035","44.0470816"],["-111.4384431","44.0458178"],["-111.4384219","44.043741"],["-111.4384394","44.0432752"],["-111.4385","44.0413455"],["-111.4385499","44.0404031"],["-111.4385794","44.0389292"],["-111.438593","44.0357202"],["-111.4386434","44.0328632"],["-111.438628","44.0311859"],["-111.4386513","44.0291863"],["-111.4386452","44.0279398"],["-111.4386731","44.0241075"],["-111.4386649","44.0231047"],["-111.4386244","44.0228766"],["-111.4385994","44.022651"],["-111.4385067","44.0224361"],["-111.4384046","44.0223062"],["-111.4383147","44.0221627"],["-111.4382456","44.0220565"],["-111.4380627","44.0218609"],["-111.4378022","44.0216536"],["-111.4375046","44.0214806"],["-111.4372574","44.021385"],["-111.436992","44.0212914"],["-111.4366221","44.0211803"],["-111.4360611","44.0211233"],["-111.4354511","44.0211472"],["-111.4330007","44.0213502"],["-111.432512","44.0213749"],["-111.431797","44.0213627"],["-111.4311747","44.0213071"],["-111.4305089","44.0212019"],["-111.4284708","44.0207554"],["-111.4281368","44.0206474"],["-111.4279285","44.0205638"],["-111.4274579","44.0203678"],["-111.4270169","44.0201125"],["-111.4266343","44.0198085"],["-111.4261767","44.0193863"],["-111.4258685","44.0189306"],["-111.4246177","44.0168035"],["-111.4243941","44.0163802"],["-111.4242949","44.0160557"],["-111.4241893","44.0154764"],["-111.4241612","44.0141214"],["-111.4242057","44.011717"],["-111.4242035","44.0100107"],["-111.4241035","44.0059179"],["-111.4240867","44.0038745"],["-111.4240725","44.0018019"],["-111.4240096","44.0011343"],["-111.4239531","44.0007097"],["-111.4238849","44.0005056"],["-111.4235917","44.0000559"],["-111.4234805","43.9999303"],["-111.4233465","43.9997982"],["-111.4231729","43.9996448"],["-111.4229558","43.999465"],["-111.4227531","43.999327"],["-111.4224434","43.9991645"],["-111.4221527","43.999041"],["-111.4218727","43.9989295"],["-111.421608","43.9988413"],["-111.4213279","43.9987829"],["-111.4210216","43.9987314"],["-111.4206725","43.9987142"],["-111.4198612","43.9986985"],["-111.3466495","43.9984382"],["-111.3459788","43.9984001"],["-111.3454396","43.998313"],["-111.344747","43.9981748"],["-111.3440778","43.9980195"],["-111.3434176","43.9978069"],["-111.3428455","43.9975876"],["-111.342164","43.997272"],["-111.3417479","43.9970436"],["-111.3412106","43.9967054"],["-111.3407412","43.996354"],["-111.3403171","43.9959883"],["-111.3399069","43.99557"],["-111.3395465","43.9951342"],["-111.3383235","43.9932696"],["-111.3377914","43.9925961"],["-111.3369084","43.9915876"],["-111.3359791","43.990661"],["-111.3353016","43.9901009"],["-111.3343576","43.9893702"],["-111.3336207","43.9888362"],["-111.3316755","43.9877218"],["-111.3292213","43.986552"],["-111.3253851","43.984771"],["-111.3238384","43.9840023"],["-111.3233179","43.9836725"],["-111.3228809","43.9833255"],["-111.3185365","43.9794755"],["-111.3177949","43.9789845"],["-111.3174402","43.9788226"],["-111.316837","43.9786319"],["-111.3162417","43.9785019"],["-111.313688","43.9781885"],["-111.3113687","43.9778061"],["-111.3093352","43.9773278"],["-111.302776","43.9756626"],["-111.3007222","43.9751344"],["-111.3002038","43.9749664"],["-111.2997311","43.9747731"],["-111.2990193","43.9744544"],["-111.2985485","43.9741677"],["-111.2978311","43.9736232"],["-111.2940614","43.9702619"],["-111.2928655","43.9692015"],["-111.2926497","43.9690463"],["-111.2923794","43.9688895"],["-111.2920902","43.9687366"],["-111.2917767","43.9686073"],["-111.2913312","43.9684755"],["-111.2908798","43.9683821"],["-111.2904376","43.9683099"],["-111.2899812","43.9682778"],["-111.2895633","43.9682953"],["-111.2891421","43.9683246"],["-111.2887307","43.96839"],["-111.2883794","43.9684638"],["-111.2879424","43.9686123"],["-111.2874906","43.9687828"],["-111.2870831","43.9689883"],["-111.2858974","43.9697605"],["-111.2852446","43.9701672"],["-111.2837611","43.9712245"],["-111.2827235","43.9719394"],["-111.2816961","43.9726289"],["-111.2814427","43.9727736"],["-111.2810866","43.9729282"],["-111.280611","43.9730797"],["-111.2802093","43.9731599"],["-111.2799145","43.9731953"],["-111.2795637","43.97322"],["-111.2792102","43.9732188"],["-111.2788163","43.9731876"],["-111.277487","43.9729017"],["-111.2732877","43.9719174"],["-111.2716741","43.9715664"],["-111.270942","43.9714822"],["-111.2397022","43.9683331"],["-111.2384658","43.9682214"],["-111.2375158","43.968155"],["-111.2367942","43.9681606"],["-111.2360097","43.9681974"],["-111.2351303","43.9682874"],["-111.23431","43.9684223"],["-111.2296954","43.9694017"],["-111.228506","43.9696228"],["-111.2279204","43.9697059"],["-111.2274118","43.9697556"],["-111.226751","43.9697863"],["-111.2237385","43.9696756"],["-111.2172245","43.9694147"],["-111.216495","43.9694077"],["-111.2160409","43.9694649"],["-111.2144327","43.969711"],["-111.213976","43.9697575"],["-111.2135975","43.9697636"],["-111.2133094","43.9697443"],["-111.2128546","43.9696814"],["-111.211261","43.9693738"],["-111.2107808","43.9692913"],["-111.2104176","43.9692544"],["-111.2100861","43.9692366"],["-111.2097975","43.9692374"],["-111.2092355","43.9692765"],["-111.2081789","43.969402"],["-111.2073809","43.9694927"],["-111.2069154","43.9695295"],["-111.2066197","43.9695261"],["-111.2062755","43.9694903"],["-111.2058887","43.9694244"],["-111.205254","43.9692634"],["-111.2048622","43.9690976"],["-111.20447","43.968892"],["-111.2042673","43.9687723"],["-111.2040283","43.9685806"],["-111.2038101","43.9683638"],["-111.2035581","43.9680142"],["-111.2033628","43.9676503"],["-111.2032819","43.9674008"],["-111.2032035","43.9670913"],["-111.2031983","43.9668608"],["-111.2033059","43.9656364"],["-111.2034334","43.9642526"],["-111.2035564","43.9629193"],["-111.203563","43.962447"],["-111.2035523","43.9621715"],["-111.2035","43.9620096"],["-111.20335","43.9617055"],["-111.2031366","43.9613882"],["-111.2026663","43.96088"],["-111.2021818","43.9603692"],["-111.2002909","43.9583527"],["-111.2002333","43.9582798"],["-111.2001715","43.9581893"],["-111.2000774","43.9580403"],["-111.1999893","43.9578448"],["-111.1998697","43.9574866"],["-111.1996437","43.9562641"],["-111.1995582","43.9559158"],["-111.19944","43.9556119"],["-111.1992326","43.9552905"],["-111.1990378","43.955054"],["-111.1987235","43.9547368"],["-111.198422","43.954489"],["-111.1982812","43.9543932"],["-111.1979809","43.954214"],["-111.1975004","43.9539738"],["-111.1970004","43.9538129"],["-111.1952467","43.9534325"],["-111.1947242","43.9533852"],["-111.1942048","43.9533835"],["-111.1938047","43.9534156"],["-111.193426","43.9534894"],["-111.1928444","43.9536466"],["-111.1919757","43.9539418"],["-111.1914998","43.9540592"],["-111.1909363","43.9541034"],["-111.1900777","43.9541224"],["-111.1844334","43.954151"],["-111.1837516","43.9541613"],["-111.1835231","43.9541593"],["-111.1832845","43.9541491"],["-111.1830568","43.9541243"],["-111.1827716","43.9540788"],["-111.1824378","43.9540138"],["-111.182019","43.9538874"],["-111.1815249","43.9536868"],["-111.1812735","43.9535486"],["-111.1809312","43.9533099"],["-111.1805419","43.9529315"],["-111.180238","43.9525189"],["-111.180136","43.9523047"],["-111.1800528","43.9521058"],["-111.1799982","43.9519609"],["-111.179979","43.9513092"],["-111.179986","43.9499592"],["-111.179972","43.9489518"],["-111.1799691","43.9479569"],["-111.1799618","43.9454119"],["-111.1799697","43.944565"],["-111.1799609","43.9439133"],["-111.1799706","43.9433979"],["-111.1799605","43.9428593"],["-111.1798786","43.9424415"],["-111.1797135","43.9417843"],["-111.1791869","43.9401411"],["-111.1788293","43.9390862"],["-111.1787478","43.9388463"],["-111.178462","43.9378869"],["-111.1776125","43.9352393"],["-111.1775312","43.9349173"],["-111.1771783","43.9330206"],["-111.1770849","43.9324226"],["-111.1770657","43.9321761"],["-111.1770604","43.9318434"],["-111.1770651","43.9314411"],["-111.1771319","43.9305384"],["-111.1772231","43.9300124"],["-111.1773326","43.9295923"],["-111.1776013","43.9287989"],["-111.1789708","43.9252423"],["-111.1794882","43.9239058"],["-111.1797626","43.9230382"],["-111.1798657","43.9224986"],["-111.1799232","43.9220772"],["-111.1799364","43.9201596"],["-111.1798699","43.9102695"],["-111.1798594","43.9090475"],["-111.1798155","43.9042323"],["-111.1800036","43.8982552"],["-111.17994","43.8971427"],["-111.1799032","43.8963297"],["-111.1798789","43.8954935"],["-111.1798019","43.8942692"],["-111.1797836","43.8931885"],["-111.1798009","43.8900502"],["-111.1798567","43.8876309"],["-111.1798885","43.8843626"],["-111.1798991","43.8832258"],["-111.1799956","43.8764633"],["-111.1800018","43.8759463"],["-111.1800039","43.8752532"],["-111.1800261","43.8740092"],["-111.1800424","43.8731181"],["-111.1800643","43.8728069"],["-111.1800788","43.8721087"],["-111.1802303","43.8670357"],["-111.1803311","43.8639115"],["-111.1803592","43.8625689"],["-111.1803823","43.8613487"],["-111.1803639","43.8608945"],["-111.1804009","43.859489"],["-111.1804116","43.8582336"],["-111.1804198","43.8578205"],["-111.1804208","43.8571063"],["-111.1804354","43.8546358"],["-111.1804342","43.853991"],["-111.1804563","43.8525409"],["-111.1804574","43.8516422"],["-111.1804886","43.847015"],["-111.1804933","43.8452114"],["-111.1805532","43.8352131"],["-111.1805607","43.8326421"],["-111.1804398","43.8248551"],["-111.1644421","43.8248656"],["-111.1639628","43.8248485"],["-111.163582","43.8248031"],["-111.163205","43.8247323"],["-111.1627035","43.8245991"],["-111.1623089","43.8244464"],["-111.1619663","43.8242894"],["-111.1616262","43.8240895"],["-111.1613268","43.8238848"],["-111.1610563","43.8236715"],["-111.1607083","43.8232436"],["-111.1604072","43.8227737"],["-111.1602748","43.8224526"],["-111.1601896","43.8221007"],["-111.1601615","43.8217913"],["-111.160159","43.8209096"],["-111.1601748","43.8188781"],["-111.1602148","43.8133225"],["-111.1601867","43.813068"],["-111.1601481","43.8127764"],["-111.1600712","43.8124901"],["-111.1599333","43.8122028"],["-111.1597856","43.8119804"],["-111.1595095","43.8116898"],["-111.1591293","43.8113784"],["-111.1587392","43.8111217"],["-111.1583017","43.8109166"],["-111.1579341","43.8107915"],["-111.1577369","43.8107389"],["-111.1572935","43.8106679"],["-111.1566775","43.8105987"],["-111.1560054","43.8105462"],["-111.1473816","43.8099136"],["-111.146659","43.8098394"],["-111.146177","43.8097552"],["-111.1456568","43.8096328"],["-111.1449163","43.8093676"],["-111.1443956","43.8091251"],["-111.143801","43.8087309"],["-111.1427764","43.8079813"],["-111.1421789","43.807562"],["-111.1418928","43.8073804"],["-111.1416668","43.8072494"],["-111.1414053","43.8071219"],["-111.1410524","43.8069769"],["-111.1407676","43.806872"],["-111.1405289","43.8068117"],["-111.1395253","43.8066011"],["-111.1390432","43.8065432"],["-111.137502","43.8065204"],["-111.1181966","43.8064547"],["-111.1175052","43.806456"],["-111.115742","43.8064396"],["-111.1152744","43.8064114"],["-111.1147979","43.8063575"],["-111.1145561","43.8063156"],["-111.1142965","43.8062579"],["-111.1138698","43.8061308"],["-111.1134713","43.8059893"],["-111.1131147","43.8058446"],["-111.112802","43.8056817"],["-111.1124475","43.8054597"],["-111.1121596","43.8052472"],["-111.1118849","43.804981"],["-111.1116979","43.804779"],["-111.1114809","43.8045081"],["-111.111322","43.8042612"],["-111.1111564","43.8038859"],["-111.1110395","43.8035306"],["-111.1109766","43.8031358"],["-111.1109813","43.8015436"],["-111.1109935","43.7999399"],["-111.1109937","43.7991214"],["-111.110983","43.7981905"],["-111.11098","43.7976852"],["-111.1107953","43.7743921"],["-111.1108461","43.7588609"],["-111.1109544","43.7482328"],["-111.1109609","43.746504"],["-111.1109628","43.7446999"],["-111.1109662","43.7423204"],["-111.1109936","43.734857"],["-111.1109874","43.7337087"],["-111.1109892","43.7321454"],["-111.1110327","43.7255832"],["-111.1110407","43.724529"],["-111.1110742","43.7180543"],["-111.111077","43.7167627"],["-111.1110809","43.71625"],["-111.1110881","43.7158155"],["-111.1110909","43.7148603"],["-111.1111005","43.7113016"],["-111.1110624","43.7107313"],["-111.1109976","43.7103048"],["-111.110854","43.7096481"],["-111.110675","43.7088245"],["-111.1106077","43.7085071"],["-111.11051","43.7080211"],["-111.1104005","43.7071987"],["-111.1103782","43.7066431"],["-111.1104636","43.685376"],["-111.1104647","43.6847784"],["-111.1106086","43.6434907"],["-111.1106109","43.6425981"],["-111.1107203","43.6145847"],["-111.1107246","43.6133623"],["-111.1107577","43.6091108"],["-111.1107887","43.6079629"],["-111.1108582","43.6074876"],["-111.1109492","43.6071614"],["-111.1110904","43.606726"],["-111.1112854","43.6061388"],["-111.1113232","43.6059837"],["-111.1113537","43.6058194"],["-111.1113591","43.6055804"],["-111.111346","43.6050044"],["-111.1113472","43.6029478"],["-111.1113533","43.5997219"],["-111.1113696","43.5988318"],["-111.1113445","43.598515"],["-111.1112519","43.5981125"],["-111.11107","43.5975626"],["-111.1108388","43.59712"],["-111.110585","43.5967417"],["-111.1102508","43.5963412"],["-111.1097776","43.5958927"],["-111.0992555","43.5885748"],["-111.0834199","43.5776288"],["-111.0820488","43.5766806"],["-111.0814403","43.5762654"],["-111.0811953","43.5760781"],["-111.0797412","43.5750784"],["-111.0790227","43.5745929"],["-111.0783859","43.5741487"],["-111.0751507","43.5718844"],["-111.0737584","43.5707523"],["-111.0732208","43.5702465"],["-111.0727045","43.5697446"],["-111.0722293","43.5692317"],["-111.071831","43.568769"],["-111.0714537","43.5683031"],["-111.0710521","43.5677715"],["-111.0707117","43.5672802"],["-111.0703626","43.5667399"],["-111.0697856","43.565699"],["-111.069511","43.565097"],["-111.069418","43.5648959"],["-111.0692811","43.5645474"],["-111.0689236","43.5635869"],["-111.0681658","43.5612254"],["-111.0676796","43.5595938"],["-111.0675133","43.5590219"],["-111.0672476","43.5583859"],["-111.0670387","43.5579151"],["-111.0668018","43.557507"],["-111.0664605","43.5569529"],["-111.0662288","43.5566642"],["-111.0659378","43.5563084"],["-111.0656948","43.5560629"],["-111.0654691","43.5558342"],["-111.065116","43.5555237"],["-111.0642992","43.5549063"],["-111.0635167","43.5543267"],["-111.0626464","43.5536758"],["-111.0606557","43.552123"],["-111.0589","43.5508089"],["-111.057908","43.5501519"],["-111.0563296","43.5491951"],["-111.0498536","43.5457886"],["-111.0484803","43.5450636"],["-111.0472939","43.5444143"],["-111.044032","43.5426437"],["-111.0429799","43.5421329"],["-111.0421809","43.5417878"],["-111.0390225","43.5405515"],["-111.0372777","43.53978"],["-111.036173","43.5391741"],["-111.0350173","43.5384566"],["-111.0337984","43.5376849"],["-111.0277404","43.534018"],["-111.0261836","43.5330865"],["-111.0253407","43.5325112"],["-111.0245426","43.531913"],["-111.0235497","43.5311707"],["-111.0222235","43.5302135"],["-111.0205853","43.5290875"],["-111.0194068","43.5283869"],["-111.0118391","43.5247104"],["-111.0107372","43.5241335"],["-111.0097974","43.5235895"],["-111.0088566","43.5229407"],["-111.0075449","43.5219312"],["-111.0038427","43.5190791"],["-111.0030669","43.5185197"],["-111.0025174","43.5181872"],["-110.9995358","43.5165067"],["-110.9988925","43.5161276"],["-110.9983978","43.5157974"],["-110.9979011","43.5154794"],["-110.9973728","43.5151637"],["-110.996689","43.5147845"],["-110.995751","43.514364"],["-110.9946838","43.5139128"],["-110.9930202","43.5131903"],["-110.9911283","43.512293"],["-110.9888925","43.5113239"],["-110.9860338","43.5101259"],["-110.9852286","43.5096809"],["-110.9847175","43.5092883"],["-110.9820922","43.5069204"],["-110.9816944","43.5064969"],["-110.9815505","43.5062763"],["-110.9814482","43.5060529"],["-110.9813753","43.505794"],["-110.9813476","43.5054851"],["-110.9813676","43.5047442"],["-110.9813687","43.5043014"],["-110.9813426","43.5039728"],["-110.9812386","43.5033647"],["-110.9810708","43.5027654"],["-110.9807529","43.5018831"],["-110.9806048","43.5015926"],["-110.9804056","43.5013859"],["-110.9801617","43.5012356"],["-110.9800068","43.5011751"],["-110.9797119","43.501139"],["-110.9794077","43.5011801"],["-110.9790952","43.5012942"],["-110.9787577","43.5014631"],["-110.9784932","43.5016353"],["-110.9782842","43.5017899"],["-110.9780619","43.5020166"],["-110.9776638","43.5025143"],["-110.9773154","43.5029806"],["-110.9770512","43.5033112"],["-110.9768199","43.5034727"],["-110.9765886","43.5035823"],["-110.9764259","43.503628"],["-110.9761276","43.5036583"],["-110.9758082","43.5036161"],["-110.9755176","43.5035113"],["-110.97538","43.5034277"],["-110.9751767","43.503244"],["-110.9750622","43.5030381"],["-110.9750349","43.5028123"],["-110.9751034","43.5025789"],["-110.975263","43.502362"],["-110.9756098","43.5020654"],["-110.9762519","43.5016045"],["-110.9764287","43.5014622"],["-110.9766096","43.5012748"],["-110.9766901","43.5011524"],["-110.9767759","43.5009119"],["-110.9767828","43.5006627"],["-110.9767121","43.5004317"],["-110.9766328","43.5003034"],["-110.9764363","43.5000964"],["-110.9761685","43.4999356"],["-110.9759954","43.4998698"],["-110.975661","43.4997999"],["-110.9752947","43.4997481"],["-110.9747216","43.4997569"],["-110.9734608","43.4998383"],["-110.9718265","43.499987"],["-110.9698408","43.5002134"],["-110.9675963","43.5004871"],["-110.9672922","43.5005114"],["-110.966916","43.5005209"],["-110.9665797","43.5005238"],["-110.9661974","43.5004797"],["-110.9657262","43.5003567"],["-110.9651829","43.5001879"],["-110.9648733","43.5001084"],["-110.9645099","43.5000769"],["-110.964163","43.500119"],["-110.9638973","43.5002105"],["-110.9636842","43.5003401"],["-110.9634661","43.5005551"],["-110.9631711","43.5009183"],["-110.9629091","43.5011616"],["-110.9626498","43.5012968"],["-110.9624314","43.501363"],["-110.9622821","43.5013795"],["-110.9620789","43.5013749"],["-110.9618391","43.5012909"],["-110.9617005","43.5012012"],["-110.9615844","43.5010828"],["-110.9614733","43.5008754"],["-110.9614075","43.500606"],["-110.9612449","43.4998574"],["-110.9611321","43.4995414"],["-110.9610417","43.4993882"],["-110.9608879","43.4992045"],["-110.9606686","43.4990416"],["-110.9604204","43.4989383"],["-110.9601327","43.4988742"],["-110.9598519","43.4988656"],["-110.9595231","43.4988888"],["-110.9592593","43.4989619"],["-110.9589108","43.499077"],["-110.9583416","43.4993026"],["-110.9579764","43.499407"],["-110.9577307","43.4994449"],["-110.9574102","43.4994541"],["-110.9571046","43.4994073"],["-110.9568425","43.499315"],["-110.956647","43.4992039"],["-110.9565337","43.4991053"],["-110.9563799","43.4989244"],["-110.9562711","43.4987229"],["-110.9560929","43.4982559"],["-110.9559636","43.4979127"],["-110.9558895","43.4977707"],["-110.9557713","43.497653"],["-110.955626","43.4975432"],["-110.9554925","43.4974631"],["-110.9553428","43.4974042"],["-110.9552449","43.4973793"],["-110.9548871","43.4973443"],["-110.9544735","43.4973789"],["-110.9521157","43.497672"],["-110.9514476","43.4977027"],["-110.9506202","43.4976928"],["-110.9493175","43.4976087"],["-110.948706","43.4975118"],["-110.9478598","43.4972795"],["-110.94676","43.4969658"],["-110.9461652","43.4968097"],["-110.9458012","43.4967411"],["-110.945428","43.4966953"],["-110.9450512","43.4966862"],["-110.9445646","43.4967257"],["-110.9442175","43.496792"],["-110.9437581","43.4969495"],["-110.9434332","43.4971004"],["-110.942884","43.4974275"],["-110.9418731","43.498068"],["-110.9414335","43.4983131"],["-110.9408821","43.4985383"],["-110.9396276","43.4989614"],["-110.9393086","43.4991166"],["-110.9391367","43.4992221"],["-110.9388784","43.499426"],["-110.9385658","43.4997469"],["-110.9384296","43.5000226"],["-110.9381312","43.5009081"],["-110.9379726","43.501152"],["-110.9378241","43.5013023"],["-110.9373492","43.5016015"],["-110.9367613","43.5019954"],["-110.9355831","43.5029164"],["-110.9350339","43.5033226"],["-110.9347398","43.5034513"],["-110.9344464","43.5035175"],["-110.9342351","43.5035235"],["-110.9340503","43.5035024"],["-110.9337758","43.5034199"],["-110.933118","43.5031804"],["-110.9329113","43.5031231"],["-110.9327093","43.5030948"],["-110.9324879","43.5031029"],["-110.9322757","43.5031425"],["-110.9319729","43.5032484"],["-110.9310956","43.5037238"],["-110.9307267","43.5038726"],["-110.9289787","43.5044112"],["-110.9282306","43.5046673"],["-110.9278985","43.5048228"],["-110.927413","43.5051079"],["-110.9272823","43.5052054"],["-110.9269491","43.5055292"],["-110.9267714","43.5057655"],["-110.9266046","43.506019"],["-110.9264583","43.5061941"],["-110.926312","43.5063188"],["-110.9261289","43.5064305"],["-110.9259629","43.506493"],["-110.925785","43.506512"],["-110.9255633","43.5065171"],["-110.9253562","43.5064854"],["-110.9251701","43.5064213"],["-110.9249477","43.5062968"],["-110.9247893","43.5061771"],["-110.9246047","43.5060344"],["-110.9243936","43.5058738"],["-110.9242139","43.5057724"],["-110.9239693","43.5056813"],["-110.9237203","43.5056213"],["-110.9229203","43.5055546"],["-110.9226434","43.5055274"],["-110.922419","43.5054779"],["-110.922191","43.505361"],["-110.9220746","43.5052396"],["-110.9219977","43.5051059"],["-110.921968","43.5049885"],["-110.921996","43.5048284"],["-110.9221142","43.504552"],["-110.9223896","43.5042157"],["-110.9225777","43.503964"],["-110.9226905","43.50373"],["-110.9227755","43.5035185"],["-110.9228361","43.502993"],["-110.922875","43.5026686"],["-110.922944","43.5023172"],["-110.923098","43.5019079"],["-110.9233816","43.5014318"],["-110.9236629","43.5010179"],["-110.9240304","43.5006062"],["-110.924679","43.4999898"],["-110.9250872","43.4995651"],["-110.9252944","43.4992739"],["-110.925456","43.4989855"],["-110.9255669","43.4986948"],["-110.9256013","43.4985282"],["-110.9256249","43.4982419"],["-110.9256138","43.4980731"],["-110.9255649","43.4978346"],["-110.9254896","43.497563"],["-110.9253874","43.4973299"],["-110.925248","43.4971136"],["-110.9250927","43.4969156"],["-110.9248622","43.4966861"],["-110.9245824","43.4964777"],["-110.9242079","43.4962062"],["-110.9221947","43.4949946"],["-110.9211019","43.4943103"],["-110.9206983","43.4940764"],["-110.920246","43.4938236"],["-110.9193763","43.4932838"],["-110.9186486","43.4928462"],["-110.9182184","43.4926348"],["-110.9175689","43.4923886"],["-110.9166043","43.4921226"],["-110.9152521","43.4917912"],["-110.9143623","43.4915943"],["-110.9139092","43.4915224"],["-110.9135743","43.4915092"],["-110.9132054","43.4915377"],["-110.9128351","43.4916077"],["-110.9125347","43.4917088"],["-110.9122277","43.4918763"],["-110.9120247","43.492013"],["-110.9118067","43.4921788"],["-110.9115675","43.4924746"],["-110.9112559","43.4930055"],["-110.9109801","43.493463"],["-110.910776","43.4937067"],["-110.9105345","43.4938711"],["-110.9101827","43.4940864"],["-110.9060345","43.4962266"],["-110.9039535","43.4973927"],["-110.9027239","43.498381"],["-110.9022347","43.4987549"],["-110.9017257","43.4990572"],["-110.9013378","43.4992403"],["-110.90096","43.4993984"],["-110.9005845","43.4995186"],["-110.8999076","43.4996663"],["-110.8995053","43.4997298"],["-110.8986069","43.4997883"],["-110.896983","43.4998622"],["-110.896003","43.4999231"],["-110.8954335","43.5000365"],["-110.8951092","43.5001294"],["-110.8948775","43.5002212"],["-110.89458","43.5003462"],["-110.8940984","43.5005886"],["-110.8934085","43.5009729"],["-110.8929402","43.5011945"],["-110.8925928","43.5013215"],["-110.8920001","43.50146"],["-110.891154","43.5015701"],["-110.887892","43.5018235"],["-110.8873713","43.5018346"],["-110.88701","43.5018164"],["-110.8866669","43.5017629"],["-110.8862913","43.5016768"],["-110.8854081","43.5013617"],["-110.8843978","43.5009186"],["-110.8836158","43.5005618"],["-110.8828717","43.5002246"],["-110.882522","43.5001044"],["-110.8819707","43.4999457"],["-110.8815087","43.4998142"],["-110.8810745","43.4996888"],["-110.8806123","43.4995147"],["-110.8800511","43.4992212"],["-110.8795987","43.4988888"],["-110.8788852","43.4983391"],["-110.8786087","43.4981606"],["-110.8784234","43.4980685"],["-110.8782007","43.498003"],["-110.8779253","43.4979424"],["-110.8776569","43.4979143"],["-110.8773986","43.497924"],["-110.87717","43.4979403"],["-110.8761882","43.4980793"],["-110.875918","43.4981052"],["-110.8752654","43.4981189"],["-110.8739799","43.4980765"],["-110.8736252","43.4980606"],["-110.8706882","43.4979822"],["-110.8521303","43.498139"],["-110.8512953","43.4981655"],["-110.8507977","43.4982071"],["-110.8502376","43.4982955"],["-110.849674","43.4984231"],["-110.8486955","43.4987427"],["-110.8464864","43.4995402"],["-110.8457963","43.4997834"],["-110.8455945","43.4998372"],["-110.8453843","43.4998882"],["-110.8451426","43.4999391"],["-110.8449299","43.4999802"],["-110.844564","43.5000343"],["-110.8443642","43.5000488"],["-110.8441277","43.5000585"],["-110.8439126","43.5000588"],["-110.8436651","43.5000527"],["-110.8434064","43.5000372"],["-110.8427172","43.4999406"],["-110.8422718","43.4998386"],["-110.8333598","43.4976168"],["-110.8325808","43.4974223"],["-110.8311306","43.4970556"],["-110.8302133","43.4967473"],["-110.8294393","43.4963752"],["-110.828923","43.4960155"],["-110.8280859","43.4952272"],["-110.8277063","43.4946128"],["-110.8275327","43.4940831"],["-110.8274069","43.4927488"],["-110.8273362","43.4874595"],["-110.8272706","43.4859139"],["-110.8271271","43.485284"],["-110.8266342","43.4844414"],["-110.8261879","43.4839741"],["-110.8257804","43.4836431"],["-110.8254195","43.4834242"],["-110.8250052","43.483223"],["-110.8245496","43.4830443"],["-110.8237765","43.4828087"],["-110.8117466","43.4795733"],["-110.8104039","43.4792188"],["-110.8085306","43.4787047"],["-110.8072234","43.4784053"],["-110.8067193","43.4783185"],["-110.8060079","43.4782444"],["-110.8053258","43.4782193"],["-110.8047922","43.4782313"],["-110.8042642","43.4782706"],["-110.8037187","43.4783461"],["-110.8030468","43.4784836"],["-110.8025415","43.4786304"],["-110.801567","43.4790163"],["-110.7999698","43.4797063"],["-110.7990788","43.480079"],["-110.7987033","43.4801964"],["-110.7983486","43.4802838"],["-110.797942","43.4803591"],["-110.7974987","43.4804259"],["-110.7971023","43.4804503"],["-110.7967112","43.480454"],["-110.7962609","43.4804373"],["-110.7958538","43.4803958"],["-110.7954343","43.4803308"],["-110.7949913","43.480228"],["-110.7944978","43.4800714"],["-110.7940714","43.4798969"],["-110.7936938","43.4796978"],["-110.7932089","43.4793914"],["-110.7930324","43.4792535"],["-110.79277","43.4790288"],["-110.7925221","43.4787831"],["-110.7923418","43.4785674"],["-110.7920545","43.4781497"],["-110.7916455","43.4775215"],["-110.7903212","43.4753821"],["-110.7900892","43.4750577"],["-110.7899356","43.4748905"],["-110.7897431","43.4747158"],["-110.7894412","43.4744829"],["-110.7890054","43.4741667"],["-110.7889094","43.4740866"],["-110.788807","43.4739891"],["-110.7887602","43.4739332"],["-110.7887333","43.4738995"],["-110.7886826","43.4738345"],["-110.7886183","43.4737421"],["-110.7885711","43.4736647"],["-110.7884934","43.4735153"],["-110.7882629","43.4735538"],["-110.7878445","43.4736224"],["-110.7759322","43.4751772"],["-110.7756911","43.4752215"],["-110.7753757","43.4753001"],["-110.7750604","43.4753896"],["-110.7747504","43.4754981"],["-110.7744175","43.4756414"],["-110.7740569","43.4758107"],["-110.773648","43.4760571"],["-110.7712742","43.4776889"],["-110.7708466","43.4779862"],["-110.7702488","43.478401"],["-110.7701735","43.4784524"],["-110.7700634","43.478526"],["-110.769971","43.4785887"],["-110.7698783","43.4786506"],["-110.769799","43.4787062"],["-110.7695692","43.4788603"],["-110.7692925","43.4790312"],["-110.769081","43.4791415"],["-110.768884","43.4792324"],["-110.7686392","43.4793253"],["-110.7683655","43.4794038"],["-110.7680991","43.4794673"],["-110.7678551","43.4795159"],["-110.7676256","43.4795501"],["-110.7674137","43.4795747"],["-110.7672431","43.4795856"],["-110.7669347","43.4795887"],["-110.7623543","43.4795876"],["-110.7623766","43.4818429"],["-110.762378","43.4821054"],["-110.7623775","43.4834156"],["-110.7623738","43.4834778"],["-110.7623701","43.4837349"],["-110.7623716","43.4860613"],["-110.7623899","43.4870264"],["-110.7623858","43.4878881"],["-110.762357","43.4887165"],["-110.7623365","43.4889428"],["-110.7623032","43.4891661"],["-110.7621377","43.4899602"],["-110.7620599","43.4902491"],["-110.7619446","43.4906312"],["-110.7617426","43.4912487"],["-110.759852","43.4970851"],["-110.7592845","43.4989215"],["-110.7591248","43.5001028"],["-110.7589689","43.501502"],["-110.7587951","43.5027541"],["-110.758631","43.5034542"],["-110.7584383","43.5039692"],["-110.7581004","43.5045263"],["-110.757798","43.5049808"],["-110.7571527","43.5057434"],["-110.7522867","43.511348"],["-110.7520195","43.5116963"],["-110.7514116","43.5126972"],["-110.7494227","43.5161459"],["-110.7488444","43.5171095"],["-110.7485588","43.5175028"],["-110.7481743","43.5179967"],["-110.7468126","43.5195053"],["-110.7459977","43.5203987"],["-110.7429499","43.5236729"],["-110.7423578","43.5243034"],["-110.7419825","43.5247395"],["-110.7416923","43.5251512"],["-110.7406597","43.5267267"],["-110.7400699","43.5276687"],["-110.7398841","43.5280489"],["-110.7397395","43.5284329"],["-110.7396348","43.5287999"],["-110.7395672","43.5291032"],["-110.7395183","43.5293966"],["-110.7394882","43.5297786"],["-110.73951","43.5303201"],["-110.7395636","43.5312405"],["-110.7395663","43.5318963"],["-110.7395313","43.5324114"],["-110.7394457","43.5328145"],["-110.7393419","43.5331591"],["-110.7391228","43.5336625"],["-110.7387076","43.5344379"],["-110.7373503","43.5367267"],["-110.7369751","43.5374463"],["-110.7368039","43.5379339"],["-110.7362361","43.5398437"],["-110.7360394","43.5404016"],["-110.7357276","43.5410779"],["-110.7334575","43.5456076"],["-110.7332408","43.5461198"],["-110.7330582","43.5466694"],["-110.7329396","43.5471228"],["-110.7327829","43.547112"],["-110.732655","43.5470766"],["-110.7325749","43.5470167"],["-110.7325649","43.5469127"],["-110.7326732","43.5465688"],["-110.7327954","43.5462119"],["-110.7328562","43.5461339"],["-110.7329433","43.546097"],["-110.7330674","43.5460835"],["-110.7332361","43.5460946"],["-110.733554","43.5454149"],["-110.7357403","43.5410528"],["-110.7360344","43.5404136"],["-110.7362318","43.5398574"],["-110.7368033","43.5379361"],["-110.7369737","43.5374498"],["-110.7373225","43.5367745"],["-110.7387162","43.534423"],["-110.7391206","43.5336672"],["-110.739341","43.5331612"],["-110.7394478","43.5328056"],["-110.7395303","43.5324173"],["-110.7395667","43.531885"],["-110.7395629","43.5312185"],["-110.7395096","43.5303181"],["-110.7394884","43.529769"],["-110.7395183","43.529397"],["-110.7395673","43.5291025"],["-110.7396396","43.5287816"],["-110.7397409","43.5284287"],["-110.7398857","43.5280457"],["-110.7400761","43.5276581"],["-110.7406226","43.5267848"],["-110.7416974","43.5251437"],["-110.7419802","43.5247423"],["-110.742344","43.5243186"],["-110.7428846","43.5237417"],["-110.7460139","43.5203808"],["-110.7468192","43.5194979"],["-110.7481887","43.51798"],["-110.74855","43.5175146"],["-110.7488486","43.5171032"],["-110.7494676","43.5160681"],["-110.7513781","43.5127547"],["-110.7520224","43.5116925"],["-110.7522913","43.5113422"],["-110.7572286","43.5056547"],["-110.7577946","43.5049852"],["-110.7580949","43.504535"],["-110.7584332","43.5039794"],["-110.7586295","43.5034584"],["-110.7587932","43.5027664"],["-110.7589721","43.5014739"],["-110.7591313","43.5000462"],["-110.759284","43.4989238"],["-110.7598748","43.4970146"],["-110.7617559","43.4912077"],["-110.7619483","43.4906198"],["-110.7620609","43.4902451"],["-110.7621372","43.4899613"],["-110.7623034","43.4891659"],["-110.7623377","43.4889319"],["-110.7623565","43.4887235"],["-110.7623866","43.487851"],["-110.7623891","43.4869732"],["-110.7623718","43.4860591"],["-110.7623702","43.483717"],["-110.7623739","43.4834747"],["-110.7623775","43.4834135"],["-110.7623779","43.4820696"],["-110.7623767","43.4818409"],["-110.7623545","43.4795874"],["-110.7670544","43.4795906"],["-110.7672424","43.4795856"],["-110.7674127","43.479575"],["-110.7676325","43.4795493"],["-110.767869","43.4795135"],["-110.7681144","43.479464"],["-110.768359","43.4794055"],["-110.7686386","43.4793256"],["-110.7688839","43.4792326"],["-110.7690793","43.4791423"],["-110.7692899","43.4790326"],["-110.7695776","43.4788549"],["-110.7698028","43.4787036"],["-110.7698796","43.4786498"],["-110.7699732","43.4785872"],["-110.7700662","43.4785241"],["-110.7701715","43.4784537"],["-110.7702473","43.4784021"],["-110.770862","43.4779754"],["-110.771257","43.4777005"],["-110.7736523","43.4760545"],["-110.7740625","43.4758077"],["-110.7743856","43.4756558"],["-110.774755","43.4754963"],["-110.7750685","43.475387"],["-110.7753867","43.4752973"],["-110.7756906","43.4752218"],["-110.7759422","43.4751755"],["-110.7878581","43.4736204"],["-110.7882728","43.4735519"],["-110.7884983","43.473504"],["-110.78864","43.4734626"],["-110.7889191","43.4733624"],["-110.789174","43.4732599"],["-110.7894494","43.4731443"],["-110.7897214","43.4729973"],["-110.7900231","43.4728063"],["-110.7902031","43.4726668"],["-110.7903661","43.4725324"],["-110.7905101","43.4723915"],["-110.79076","43.4721126"],["-110.7909305","43.4718872"],["-110.7910967","43.4716189"],["-110.7913889","43.471042"],["-110.7917041","43.4703489"],["-110.7927528","43.4680616"],["-110.7929871","43.4675253"],["-110.7930704","43.467291"],["-110.793183","43.4669253"],["-110.7931997","43.4668577"],["-110.7932256","43.4667242"],["-110.7933113","43.4661916"],["-110.7933434","43.4659511"],["-110.7933579","43.4657025"],["-110.7933668","43.4653972"],["-110.7933685","43.46494"],["-110.7933278","43.4590153"],["-110.7933324","43.4584007"],["-110.7933028","43.4572169"],["-110.7932123","43.4560891"],["-110.7931083","43.4554158"],["-110.7929824","43.4547537"],["-110.7928518","43.45417"],["-110.7926568","43.453498"],["-110.7923948","43.4526932"],["-110.7911788","43.4497351"],["-110.7903121","43.4474859"],["-110.7892403","43.4444665"],["-110.7881366","43.441795"],["-110.7875827","43.4404966"],["-110.7871405","43.4393131"],["-110.7866811","43.4379964"],["-110.7863897","43.437233"],["-110.7861636","43.4367334"],["-110.7859988","43.4364481"],["-110.7856031","43.4358268"],["-110.785413","43.4355015"],["-110.7847877","43.4347567"],["-110.7844565","43.4343765"],["-110.7841187","43.4340509"],["-110.7813598","43.4316943"],["-110.7806903","43.4309703"],["-110.7800956","43.4301858"],["-110.7796958","43.4294267"],["-110.7792849","43.4285789"],["-110.7757731","43.4208401"],["-110.7756534","43.4205653"],["-110.7749282","43.4189682"],["-110.773981","43.4167848"],["-110.7733429","43.4153804"],["-110.7726541","43.4139091"],["-110.7721238","43.4129329"],["-110.7716311","43.4122721"],["-110.7710382","43.4116052"],["-110.7703963","43.4109983"],["-110.7693039","43.4102387"],["-110.7670729","43.4090804"],["-110.7610183","43.4061643"],["-110.759834","43.4055615"],["-110.7588847","43.4049591"],["-110.7566733","43.4033815"],["-110.755142","43.4022721"],["-110.7532077","43.4008429"],["-110.7527384","43.4005078"],["-110.7522789","43.4001661"],["-110.7516298","43.3996198"],["-110.7508607","43.3988341"],["-110.7503115","43.3982029"],["-110.7498909","43.3976691"],["-110.7493849","43.3968252"],["-110.7491009","43.3962657"],["-110.7488097","43.3956645"],["-110.7483944","43.3948495"],["-110.7478576","43.3934462"],["-110.7475087","43.3920513"],["-110.747079","43.3900698"],["-110.7466784","43.3881108"],["-110.7465221","43.3874704"],["-110.746319","43.3866861"],["-110.745863","43.3857039"],["-110.7449734","43.3841471"],["-110.7446669","43.3836309"],["-110.7444318","43.3831738"],["-110.7442273","43.3826763"],["-110.7440755","43.3821935"],["-110.7440241","43.3813047"],["-110.7441181","43.3805977"],["-110.7444444","43.3790081"],["-110.7448846","43.3771212"],["-110.7449005","43.3760885"],["-110.7447644","43.3754948"],["-110.7445698","43.3749967"],["-110.7440335","43.3739279"],["-110.743319","43.3729897"],["-110.7429306","43.3726125"],["-110.7418783","43.3718275"],["-110.7379416","43.3696151"],["-110.7356938","43.3681525"],["-110.7339664","43.3669255"],["-110.7315222","43.3650736"],["-110.7297766","43.3637275"],["-110.7281391","43.3623102"],["-110.7265826","43.3604718"],["-110.7257034","43.3594307"],["-110.7247962","43.3586773"],["-110.7226079","43.357118"],["-110.7215906","43.3561867"],["-110.7209069","43.3552324"],["-110.7204315","43.3542947"],["-110.7202008","43.3535531"],["-110.7201139","43.3531434"],["-110.7200581","43.3521845"],["-110.7201325","43.351342"],["-110.7205731","43.3500345"],["-110.7213398","43.3485471"],["-110.7215087","43.3481698"],["-110.7219059","43.3471413"],["-110.7221173","43.3461032"],["-110.7221635","43.3457291"],["-110.7223082","43.343027"],["-110.7224206","43.3421681"],["-110.7226854","43.3412727"],["-110.7234282","43.3397575"],["-110.7279045","43.3309198"],["-110.7297221","43.3251559"],["-110.7298689","43.3246502"],["-110.7303008","43.3230857"],["-110.7304522","43.3227444"],["-110.7305092","43.3226143"],["-110.7305545","43.3225444"],["-110.7306177","43.3224943"],["-110.7307858","43.322421"],["-110.7308548","43.322388"],["-110.7309005","43.3223449"],["-110.7309291","43.3222873"],["-110.7309804","43.3221928"],["-110.731041","43.3220755"],["-110.7311258","43.3219458"],["-110.7312259","43.3218046"],["-110.7312735","43.3217667"],["-110.7314185","43.3216732"],["-110.7317072","43.3215211"],["-110.7324451","43.3211967"],["-110.7339021","43.3205896"],["-110.7348493","43.3200257"],["-110.7350189","43.3198638"],["-110.7352034","43.3196382"],["-110.7356497","43.3189211"],["-110.7359244","43.3185374"],["-110.7361605","43.3182386"],["-110.7364885","43.3178985"],["-110.7369029","43.3175495"],["-110.7373248","43.3172578"],["-110.7384085","43.3165695"],["-110.7389828","43.3161966"],["-110.7393329","43.3159271"],["-110.7396851","43.3155978"],["-110.7443527","43.311321"],["-110.7469973","43.3089527"],["-110.7474401","43.3084518"],["-110.7479335","43.3078277"],["-110.7485702","43.3069561"],["-110.7494532","43.3055903"],["-110.7500802","43.3048213"],["-110.7508146","43.3040501"],["-110.7517245","43.3032639"],["-110.7526212","43.302623"],["-110.7536534","43.3019451"],["-110.7543869","43.3015294"],["-110.7548551","43.30131"],["-110.7553126","43.301156"],["-110.7560166","43.3009681"],["-110.7565622","43.3008852"],["-110.7571361","43.30082"],["-110.7581845","43.3008369"],["-110.7590489","43.3008885"],["-110.7597259","43.3009183"],["-110.7602319","43.3009027"],["-110.7638475","43.3006652"],["-110.765332","43.300557"],["-110.7662673","43.3005279"],["-110.7673712","43.3005571"],["-110.7683405","43.3006197"],["-110.7691205","43.3006983"],["-110.7700102","43.3008416"],["-110.7710078","43.3010239"],["-110.7719181","43.3012377"],["-110.7728725","43.301507"],["-110.7753545","43.3022801"],["-110.775837","43.302399"],["-110.7762206","43.3024626"],["-110.7767318","43.3025082"],["-110.7773359","43.3025263"],["-110.7780564","43.3024538"],["-110.7786831","43.3022727"],["-110.7791754","43.302105"],["-110.7795012","43.3019623"],["-110.7805303","43.3013965"],["-110.7815828","43.3008033"],["-110.7824784","43.3002809"],["-110.7834776","43.2998097"],["-110.7851389","43.2991103"],["-110.7864555","43.2984343"],["-110.7870799","43.2980117"],["-110.7874852","43.2976698"],["-110.78798","43.2971409"],["-110.7896022","43.2951196"],["-110.7913626","43.2929075"],["-110.7932004","43.2905754"],["-110.7963633","43.2865025"],["-110.797028","43.2851954"],["-110.7974166","43.2840986"],["-110.7975404","43.283364"],["-110.7975898","43.2827679"],["-110.7975875","43.2820907"],["-110.7975065","43.2813488"],["-110.7973575","43.2806282"],["-110.7970663","43.2797659"],["-110.7966379","43.2788373"],["-110.7958247","43.2775628"],["-110.7947299","43.2761133"],["-110.7932493","43.2743042"],["-110.792587","43.2736774"],["-110.7915072","43.2727398"],["-110.7906684","43.2719726"],["-110.7897723","43.2710417"],["-110.7884394","43.2695781"],["-110.7870869","43.2681172"],["-110.7844937","43.2646245"],["-110.7839672","43.2636685"],["-110.7833451","43.2624446"],["-110.7816903","43.2591336"],["-110.7810525","43.2579352"],["-110.778874","43.2544508"],["-110.7784811","43.253774"],["-110.7783064","43.2533266"],["-110.7782205","43.2529343"],["-110.7781802","43.2524744"],["-110.7782055","43.2519483"],["-110.7784017","43.250392"],["-110.7784072","43.2497244"],["-110.7783134","43.2492436"],["-110.7780861","43.2486747"],["-110.7777587","43.2480783"],["-110.7769394","43.2467857"],["-110.7764156","43.2457021"],["-110.776288","43.2453167"],["-110.7762243","43.2448892"],["-110.7761616","43.2443673"],["-110.7762026","43.2435188"],["-110.7762886","43.2430152"],["-110.7764401","43.2425495"],["-110.7766487","43.2420501"],["-110.7768967","43.2415983"],["-110.7771478","43.241215"],["-110.7781258","43.2400165"],["-110.7790826","43.2389026"],["-110.7795063","43.2382216"],["-110.7796989","43.2376654"],["-110.7797421","43.2370633"],["-110.7796524","43.2364676"],["-110.7790158","43.2344525"],["-110.7789498","43.2339352"],["-110.7789838","43.2334056"],["-110.7791465","43.2328905"],["-110.7793311","43.232529"],["-110.7795419","43.2322372"],["-110.7797731","43.2319939"],["-110.7800243","43.2317577"],["-110.7802517","43.2315879"],["-110.7805575","43.2313972"],["-110.781172","43.2310671"],["-110.7819235","43.230697"],["-110.782536","43.2303437"],["-110.7832093","43.2298543"],["-110.7839697","43.2291201"],["-110.784422","43.2284572"],["-110.7848287","43.227485"],["-110.7856441","43.224118"],["-110.7858076","43.222851"],["-110.7857304","43.2217535"],["-110.7852574","43.2185943"],["-110.7851279","43.2176491"],["-110.7850326","43.2170139"],["-110.7850213","43.2166321"],["-110.7850612","43.2162776"],["-110.785147","43.2159997"],["-110.7853291","43.215615"],["-110.7854917","43.2153812"],["-110.7856759","43.2151593"],["-110.7859438","43.214891"],["-110.7862786","43.2146305"],["-110.7866758","43.2143789"],["-110.7871691","43.214173"],["-110.787619","43.2140282"],["-110.7887517","43.2138219"],["-110.7928778","43.2132162"],["-110.7934055","43.2131808"],["-110.7938908","43.2131722"],["-110.7948411","43.2132425"],["-110.7972055","43.2134688"],["-110.7985991","43.2135638"],["-110.7999985","43.2136077"],["-110.8034946","43.2134765"],["-110.8046818","43.2133943"],["-110.8060903","43.213234"],["-110.8071935","43.2130716"],["-110.8084804","43.2128296"],["-110.8128656","43.2118442"],["-110.8136999","43.21163"],["-110.814565","43.2113095"],["-110.815448","43.2108836"],["-110.8230785","43.206204"],["-110.823898","43.2057729"],["-110.8245469","43.2055127"],["-110.8252229","43.2053"],["-110.8257867","43.2051346"],["-110.8263454","43.2050062"],["-110.827606","43.2048416"],["-110.8282098","43.2048139"],["-110.8288529","43.2047992"],["-110.8303229","43.2048818"],["-110.8382158","43.2054115"],["-110.8392053","43.2055195"],["-110.8399724","43.205641"],["-110.8418903","43.2060991"],["-110.8425441","43.2062203"],["-110.8430191","43.2062698"],["-110.8435294","43.2062788"],["-110.8472749","43.2059644"],["-110.8479443","43.2058553"],["-110.8486894","43.2056725"],["-110.849898","43.2052777"],["-110.8508604","43.2050183"],["-110.8517121","43.2048337"],["-110.8523178","43.2047541"],["-110.8536957","43.2046586"],["-110.857418","43.2044937"],["-110.8583026","43.2044161"],["-110.8590414","43.2042538"],["-110.8597455","43.2040656"],["-110.8604612","43.2037825"],["-110.8630187","43.2023811"],["-110.8649743","43.2014985"],["-110.8672878","43.200422"],["-110.8688377","43.199672"],["-110.8692336","43.1994271"],["-110.8695044","43.1992042"],["-110.86979","43.1989217"],["-110.8701821","43.1984361"],["-110.8706309","43.1976799"],["-110.8710661","43.1971404"],["-110.8715618","43.1967326"],["-110.8722509","43.1963455"],["-110.8728598","43.1961235"],["-110.8735491","43.1959526"],["-110.8743254","43.1958755"],["-110.8762069","43.1959253"],["-110.8777254","43.1959756"],["-110.8788191","43.1961122"],["-110.8806661","43.1964429"],["-110.8820075","43.1966801"],["-110.8832744","43.1968847"],["-110.8838047","43.1969207"],["-110.8844396","43.1968955"],["-110.8856745","43.1967423"],["-110.8864906","43.1966515"],["-110.88701","43.196633"],["-110.8877058","43.1966812"],["-110.9025315","43.1982992"],["-110.9038662","43.1983731"],["-110.9048589","43.1983612"],["-110.9058366","43.1982046"],["-110.9067707","43.1980005"],["-110.9075597","43.1977385"],["-110.9081488","43.1974751"],["-110.9086879","43.1971775"],["-110.9102054","43.1961408"],["-110.9110011","43.1957005"],["-110.9116066","43.1954825"],["-110.912273","43.1953374"],["-110.9129228","43.1952505"],["-110.9136089","43.1952553"],["-110.9144748","43.1953823"],["-110.9153479","43.1956743"],["-110.9168198","43.1964151"],["-110.918263","43.1971582"],["-110.9189473","43.1974709"],["-110.9195872","43.1976335"],["-110.9201554","43.19772"],["-110.9207426","43.1977443"],["-110.9215667","43.1976723"],["-110.9221921","43.1975529"],["-110.9227569","43.1973943"],["-110.9238366","43.1969075"],["-110.9247839","43.1964656"],["-110.9260199","43.1957019"],["-110.926554","43.1952519"],["-110.9279747","43.1937247"],["-110.9286517","43.1932205"],["-110.9293531","43.192844"],["-110.9302624","43.1925325"],["-110.9311572","43.192343"],["-110.9320115","43.1921931"],["-110.9339918","43.1919876"],["-110.9351843","43.1919416"],["-110.9363083","43.1919984"],["-110.9377122","43.1921472"],["-110.9391473","43.192326"],["-110.9404982","43.1924967"],["-110.9412098","43.1925467"],["-110.9419653","43.1925354"],["-110.9426678","43.1924653"],["-110.9434186","43.1923356"],["-110.9465582","43.1914886"],["-110.9501362","43.1905032"],["-110.9512001","43.1901286"],["-110.952268","43.1896268"],["-110.9532808","43.1890254"],["-110.9541926","43.1883498"],["-110.9600597","43.1834374"],["-110.9605062","43.1830917"],["-110.9612238","43.1826856"],["-110.9621479","43.1823506"],["-110.9627952","43.1822105"],["-110.9635365","43.1821752"],["-110.9640888","43.1822093"],["-110.9648024","43.1823225"],["-110.9667246","43.1827032"],["-110.9672262","43.1827501"],["-110.9677895","43.1827581"],["-110.9683168","43.1827036"],["-110.9688779","43.1825917"],["-110.9702566","43.1821682"],["-110.9726978","43.1813214"],["-110.9749707","43.1805186"],["-110.9755236","43.1802435"],["-110.9764506","43.1797659"],["-110.9775495","43.1792292"],["-110.978603","43.1788263"],["-110.9796297","43.178538"],["-110.9845941","43.1775765"],["-110.9853591","43.1774696"],["-110.9865327","43.1774635"],["-110.9909647","43.1776317"],["-110.9928137","43.1775168"],["-110.9962926","43.1770838"],["-110.9978948","43.1768564"],["-110.9982531","43.176807"],["-110.9987046","43.1766935"],["-111.0007268","43.1759648"],["-111.0023483","43.1755303"],["-111.0184425","43.1721295"],["-111.0180915","43.1700155"],["-111.0180425","43.1697861"],["-111.0174212","43.1668818"],["-111.0172678","43.165971"],["-111.0171944","43.1654496"],["-111.0171882","43.1652775"],["-111.0171887","43.1652188"],["-111.0172191","43.1649905"],["-111.0172657","43.1647718"],["-111.0173325","43.1645759"],["-111.0174465","43.1643511"],["-111.0175343","43.1641986"],["-111.0176215","43.164067"],["-111.0177331","43.1639124"],["-111.0178448","43.1637862"],["-111.0180248","43.1636139"],["-111.0182996","43.1633949"],["-111.0185423","43.1632335"],["-111.0187901","43.163099"],["-111.0193346","43.1628506"],["-111.0247819","43.1608333"],["-111.0255038","43.1605936"],["-111.0335407","43.158154"],["-111.0339812","43.1579935"],["-111.0343376","43.1578243"],["-111.0346385","43.1576477"],["-111.0349689","43.1574338"],["-111.0353589","43.1571456"],["-111.0356065","43.1569035"],["-111.0359922","43.1564952"],["-111.0362599","43.1561113"],["-111.0364142","43.1558151"],["-111.0365111","43.1555768"],["-111.0366157","43.1552789"],["-111.0366871","43.1549386"],["-111.0367045","43.1546282"],["-111.0367048","43.1543521"],["-111.036666","43.1539809"],["-111.0366004","43.1537027"],["-111.0363794","43.153011"],["-111.0360793","43.1521298"],["-111.0351672","43.149562"],["-111.0347892","43.1485242"],["-111.0344217","43.1474572"],["-111.0340111","43.1462674"],["-111.0337324","43.1456538"],["-111.0334446","43.1451592"],["-111.0331714","43.1447696"],["-111.0328819","43.1443819"],["-111.0326314","43.1440696"],["-111.0313391","43.1425522"],["-111.0311339","43.1423125"],["-111.030669","43.1417677"],["-111.0300418","43.1410346"],["-111.0292258","43.1400814"],["-111.0282647","43.1389456"],["-111.0276167","43.1381314"],["-111.0274348","43.1378676"],["-111.0273015","43.137646"],["-111.0271524","43.1373375"],["-111.0270074","43.1370191"],["-111.0268381","43.1364927"],["-111.0267414","43.1360809"],["-111.0266053","43.1354743"],["-111.0263245","43.1342939"],["-111.026224","43.1338765"],["-111.0259525","43.1326819"],["-111.0258794","43.1323592"],["-111.0253125","43.129993"],["-111.025044","43.1288334"],["-111.0249284","43.1283369"],["-111.0248316","43.1278882"],["-111.0247418","43.1273267"],["-111.0246559","43.126762"],["-111.0244748","43.1250949"],["-111.0244108","43.1243557"],["-111.0233835","43.1132966"],["-111.0231796","43.1112335"],["-111.0228973","43.1083944"],["-111.0228418","43.1073745"],["-111.0227619","43.1061766"],["-111.0227503","43.1052877"],["-111.023125","43.0972814"],["-111.0231187","43.0966914"],["-111.0230848","43.096281"],["-111.0230302","43.0958257"],["-111.0229126","43.095187"],["-111.0227497","43.0945683"],["-111.0224953","43.0938522"],["-111.0222642","43.0932662"],["-111.0220253","43.0927775"],["-111.0218322","43.0924247"],["-111.0215835","43.0920124"],["-111.0212178","43.0914378"],["-111.0125113","43.0779929"],["-111.0122809","43.0775721"],["-111.0120698","43.0770933"],["-111.0118727","43.0765354"],["-111.0116824","43.0759315"],["-111.0115787","43.0755253"],["-111.0115183","43.0750722"],["-111.0115022","43.0744935"],["-111.0115116","43.0732177"],["-111.0116899","43.0601563"],["-111.0118139","43.0545089"],["-111.011814","43.0544656"],["-111.0120417","43.0455434"],["-111.0120567","43.0447743"],["-111.0121504","43.035516"],["-111.0121506","43.0353644"],["-111.0121837","43.0313272"],["-111.0121994","43.0303676"],["-111.0122295","43.0261701"],["-111.0122312","43.02577"],["-111.0122374","43.0251134"],["-111.0123844","42.9833375"],["-111.0123747","42.9802112"],["-111.0123884","42.9700781"],["-111.0123867","42.968895"],["-111.012382","42.9681427"],["-111.0123482","42.9600569"],["-111.0123552","42.959424"],["-111.012377","42.9588154"],["-111.0125541","42.9561431"],["-111.0126558","42.9544698"],["-111.012651","42.9541547"],["-111.0126331","42.953919"],["-111.0125971","42.9536826"],["-111.0125308","42.9533582"],["-111.0124838","42.9531865"],["-111.0124172","42.9529869"],["-111.0123234","42.9527587"],["-111.012203","42.9525123"],["-111.0120789","42.9522716"],["-111.0106466","42.949759"],["-111.0104679","42.9494487"],["-111.0079033","42.9449392"],["-111.0077395","42.9446067"],["-111.0075761","42.9442059"],["-111.0074488","42.9437673"],["-111.0073898","42.9434655"],["-111.0073651","42.9432573"],["-111.0073488","42.9429629"],["-111.0073391","42.9422652"],["-111.0073315","42.9395346"],["-111.0073302","42.9381226"],["-111.0073345","42.9355856"],["-111.0073179","42.9303259"],["-111.0073187","42.9302053"],["-111.0073181","42.9300997"],["-111.007308","42.9298054"],["-111.0072715","42.9295513"],["-111.0072036","42.9292304"],["-111.0071149","42.9289164"],["-111.0069995","42.9286052"],["-111.006859","42.9283122"],["-111.0066892","42.9279998"],["-111.0065296","42.9277623"],["-111.0063138","42.9274781"],["-111.0061492","42.9272747"],["-111.0060082","42.9271249"],["-111.0058402","42.9269584"],["-111.0039044","42.9252839"],["-111.0032808","42.9247594"],["-111.0030647","42.9245333"],["-111.0028708","42.9243212"],["-111.0027297","42.92412"],["-111.0026611","42.9240043"],["-111.0025893","42.9238596"],["-111.0025314","42.923702"],["-111.0024799","42.9235365"],["-111.0024511","42.9233767"],["-111.0024305","42.9231907"],["-111.0024246","42.9230469"],["-111.002423","42.9220458"],["-111.0024068","42.9198375"],["-111.0024062","42.9196953"],["-111.0023998","42.917977"],["-111.0023892","42.917729"],["-111.0023702","42.9175894"],["-111.0023393","42.9174356"],["-111.0023011","42.9172937"],["-111.0021969","42.9170004"],["-111.0020883","42.9167629"],["-111.0020089","42.9166013"],["-111.0019426","42.9164756"],["-111.001925","42.9164485"],["-111.0017083","42.9161017"],["-111.0014947","42.9157462"],["-110.9997606","42.9129465"],["-110.9988438","42.9114211"],["-110.9981627","42.9098852"],["-110.9976547","42.9082088"],["-110.997529","42.9075791"],["-110.9974488","42.9071708"],["-110.9973936","42.9068541"],["-110.9970546","42.9051197"],["-110.9968405","42.9041914"],["-110.9966788","42.9035258"],["-110.9964724","42.9027067"],["-110.9964186","42.90247"],["-110.9963678","42.9021496"],["-110.9963463","42.9018828"],["-110.9963421","42.9014504"],["-110.9964043","42.9000253"],["-110.996497","42.8977169"],["-110.9965092","42.8968838"],["-110.9964879","42.8962866"],["-110.9964453","42.8957619"],["-110.9963687","42.895191"],["-110.9962929","42.8947466"],["-110.9961945","42.8942922"],["-110.9960555","42.893758"],["-110.9954344","42.8919805"],["-110.9925456","42.8840724"],["-110.991978","42.882656"],["-110.9916357","42.8820595"],["-110.9913355","42.8816666"],["-110.991059","42.8813728"],["-110.9898196","42.8804402"],["-110.9844636","42.8765672"],["-110.9837451","42.8760248"],["-110.9832878","42.8755954"],["-110.9829947","42.8752146"],["-110.9827877","42.8748908"],["-110.9826022","42.8745544"],["-110.9823912","42.8741165"],["-110.9822567","42.8737742"],["-110.9821406","42.873327"],["-110.9820896","42.8728419"],["-110.9820665","42.8722375"],["-110.9820988","42.8717586"],["-110.9821921","42.8713152"],["-110.9822906","42.8710168"],["-110.982442","42.8706866"],["-110.9826071","42.870347"],["-110.9828873","42.8698661"],["-110.9887952","42.8604558"],["-110.9892111","42.85964"],["-110.9892717","42.8594845"],["-110.9894232","42.8590774"],["-110.989543","42.8586104"],["-110.9895981","42.8581749"],["-110.9896137","42.8579956"],["-110.9896176","42.8578207"],["-110.9896198","42.857635"],["-110.9896061","42.8573119"],["-110.9895663","42.8569694"],["-110.9894861","42.8566139"],["-110.9893882","42.8562697"],["-110.9892453","42.8558763"],["-110.9891219","42.8556148"],["-110.9888807","42.8551877"],["-110.9886492","42.8548265"],["-110.9884418","42.8545276"],["-110.9881767","42.8541968"],["-110.9875679","42.8535498"],["-110.9865994","42.8526281"],["-110.9815051","42.8476009"],["-110.9806499","42.8468651"],["-110.9795635","42.8459578"],["-110.976145","42.8434467"],["-110.9749744","42.8425033"],["-110.9744241","42.8420009"],["-110.9737478","42.841338"],["-110.9729423","42.840428"],["-110.9719822","42.8390065"],["-110.9702466","42.8359107"],["-110.9690812","42.8338576"],["-110.9665205","42.8293193"],["-110.9658664","42.8282005"],["-110.9654207","42.8274388"],["-110.9650249","42.8265591"],["-110.9643565","42.8248105"],["-110.9634763","42.8219755"],["-110.9633001","42.8214368"],["-110.9630601","42.8206813"],["-110.9628502","42.8201276"],["-110.9625228","42.819421"],["-110.9623864","42.8191476"],["-110.9617949","42.8182906"],["-110.9608425","42.8171755"],["-110.9574548","42.8142866"],["-110.9570683","42.8139737"],["-110.9564995","42.8135331"],["-110.9540457","42.8114663"],["-110.9343487","42.7951296"],["-110.9340419","42.7948399"],["-110.9338654","42.7946444"],["-110.9336243","42.7942851"],["-110.9334876","42.794004"],["-110.9334283","42.7937464"],["-110.9333951","42.7933426"],["-110.9333857","42.7918941"],["-110.9333877","42.791258"],["-110.9333952","42.7906871"],["-110.9333144","42.7530446"],["-110.9333044","42.7450608"],["-110.9332905","42.7437197"],["-110.9332888","42.743589"],["-110.9332762","42.7425884"],["-110.933282","42.7414333"],["-110.9332863","42.7410397"],["-110.9332882","42.7409597"],["-110.9332876","42.7407883"],["-110.9332867","42.7406402"],["-110.9333007","42.7385166"],["-110.9333037","42.7380434"],["-110.9332533","42.731521"],["-110.9332832","42.7309152"],["-110.9333198","42.7301593"],["-110.9333662","42.7289506"],["-110.933371","42.7288245"],["-110.9334477","42.7267894"],["-110.9334535","42.726646"],["-110.9334564","42.7265655"],["-110.9334925","42.7256296"],["-110.933558","42.7242015"],["-110.9335668","42.7240095"],["-110.9335808","42.7237281"],["-110.9336608","42.7218603"],["-110.9336478","42.7212915"],["-110.9336236","42.7175709"],["-110.9336292","42.7167248"],["-110.9336064","42.7154346"],["-110.9336033","42.7151737"],["-110.9336006","42.7149651"],["-110.933594","42.7144996"],["-110.9335819","42.7138395"],["-110.9335216","42.7109502"],["-110.9334931","42.7103272"],["-110.9334496","42.7084384"],["-110.9333795","42.7009278"],["-110.9333762","42.7004118"],["-110.9333761","42.7001729"],["-110.9333794","42.7001359"],["-110.9333752","42.6997875"],["-110.933356","42.6964909"],["-110.9333496","42.6962104"],["-110.9333326","42.6960084"],["-110.9332912","42.6957299"],["-110.9332343","42.6954051"],["-110.9331258","42.6950651"],["-110.9330074","42.6947593"],["-110.9329045","42.6945336"],["-110.9327605","42.6942855"],["-110.9325205","42.6939487"],["-110.932265","42.6936225"],["-110.9319613","42.6932856"],["-110.9316743","42.6930014"],["-110.9311652","42.6925043"],["-110.9265039","42.6879692"],["-110.925917","42.6873043"],["-110.9255959","42.6868436"],["-110.9251914","42.6862094"],["-110.9249916","42.6858133"],["-110.9248742","42.6855533"],["-110.9245318","42.6843961"],["-110.9244747","42.6829907"],["-110.9244762","42.6822944"],["-110.9244837","42.6816102"],["-110.9245053","42.6796204"],["-110.9245091","42.6788585"],["-110.924485","42.678408"],["-110.9244348","42.6779643"],["-110.924329","42.6773979"],["-110.9240935","42.6765257"],["-110.9237413","42.6752915"],["-110.9235779","42.6745628"],["-110.9235022","42.6739757"],["-110.9234993","42.6724994"],["-110.9235771","42.6587064"],["-110.9235614","42.6573574"],["-110.923528","42.6565972"],["-110.9234605","42.6557218"],["-110.9224213","42.6440608"],["-110.9223341","42.6429824"],["-110.9222922","42.6423183"],["-110.9222455","42.6415058"],["-110.9222203","42.6401554"],["-110.9222023","42.638416"],["-110.9222362","42.6347541"],["-110.9222017","42.6341674"],["-110.9221317","42.6337178"],["-110.9220276","42.6333261"],["-110.9218997","42.6329427"],["-110.9217248","42.6325906"],["-110.9215405","42.6322583"],["-110.921305","42.6319258"],["-110.920894","42.6314396"],["-110.9204602","42.6309703"],["-110.9186201","42.6292346"],["-110.9169365","42.6276071"],["-110.9157546","42.626441"],["-110.9150602","42.6257155"],["-110.9146969","42.6252674"],["-110.9144671","42.6249222"],["-110.9143011","42.6245945"],["-110.9141302","42.6241643"],["-110.9140102","42.6237497"],["-110.9139923","42.6236733"],["-110.9139905","42.6236635"],["-110.9139673","42.6235329"],["-110.9139362","42.6233344"],["-110.9138959","42.62291"],["-110.9138698","42.6217987"],["-110.9139204","42.6182857"],["-110.9139217","42.6143943"],["-110.9139214","42.6142424"],["-110.9139574","42.5977687"],["-110.9138943","42.597144"],["-110.9137918","42.5964154"],["-110.9134709","42.5950451"],["-110.9133726","42.5947124"],["-110.9128765","42.5933605"],["-110.9124656","42.5924881"],["-110.9117931","42.5914087"],["-110.9112924","42.5906036"],["-110.9109497","42.5901086"],["-110.910508","42.5895123"],["-110.9100771","42.589003"],["-110.909588","42.5885229"],["-110.9090854","42.5881066"],["-110.9086774","42.5878002"],["-110.9081608","42.5874453"],["-110.9075107","42.5870257"],["-110.9070861","42.5867565"],["-110.9063848","42.5863135"],["-110.9055432","42.5855687"],["-110.9051152","42.5850455"],["-110.9048748","42.5846922"],["-110.9046739","42.584335"],["-110.9041503","42.5831436"],["-110.903945","42.5827006"],["-110.9037382","42.5823339"],["-110.9034591","42.5819192"],["-110.9032368","42.5816351"],["-110.902915","42.5812742"],["-110.9019324","42.5802051"],["-110.9011407","42.5793086"],["-110.900824","42.578928"],["-110.9004794","42.5783789"],["-110.9003411","42.578078"],["-110.9002301","42.5778136"],["-110.9001289","42.5775393"],["-110.8999953","42.5769379"],["-110.8999769","42.5763293"],["-110.9000556","42.5757022"],["-110.9001695","42.575168"],["-110.9003842","42.5743295"],["-110.9005847","42.5732613"],["-110.9008223","42.5716665"],["-110.9008379","42.5710124"],["-110.9006237","42.5695994"],["-110.9001231","42.5683685"],["-110.8993454","42.5670498"],["-110.8982568","42.565678"],["-110.8978914","42.5652581"],["-110.8975861","42.5648949"],["-110.8973915","42.5646102"],["-110.8972169","42.5643176"],["-110.8971121","42.5641104"],["-110.8970009","42.5638713"],["-110.8968887","42.5636004"],["-110.8967224","42.5631315"],["-110.894985","42.5578442"],["-110.8946902","42.5565638"],["-110.8945237","42.5551436"],["-110.8940265","42.5508274"],["-110.8936144","42.5466816"],["-110.8935068","42.5453738"],["-110.8935143","42.5450554"],["-110.8935507","42.5447376"],["-110.8936368","42.5443128"],["-110.8937049","42.544104"],["-110.8937833","42.5439069"],["-110.8938934","42.543667"],["-110.894052","42.543382"],["-110.8942094","42.5431446"],["-110.8944149","42.542886"],["-110.8946218","42.5426406"],["-110.8948553","42.5424013"],["-110.8951277","42.5421575"],["-110.8953715","42.5419628"],["-110.8956439","42.5417744"],["-110.8968711","42.5410519"],["-110.8977921","42.5405288"],["-110.8981328","42.5403352"],["-110.8987925","42.5399597"],["-110.8992324","42.5396631"],["-110.899561","42.5393109"],["-110.8997909","42.5389838"],["-110.899923","42.5385978"],["-110.8999624","42.5382812"],["-110.8999066","42.5376419"],["-110.8993813","42.5359036"],["-110.8990291","42.5348366"],["-110.8980416","42.5319443"],["-110.8979475","42.531444"],["-110.8978807","42.5310162"],["-110.8978429","42.5305977"],["-110.8978428","42.5297184"],["-110.8978129","42.5288765"],["-110.8977629","42.5284855"],["-110.8976276","42.5279338"],["-110.8974296","42.5273312"],["-110.897105","42.5265714"],["-110.8967469","42.5258165"],["-110.8963744","42.5249808"],["-110.895612","42.5230796"],["-110.8955293","42.5227614"],["-110.8954692","42.5224113"],["-110.8954751","42.522179"],["-110.8955055","42.521947"],["-110.8955827","42.5215994"],["-110.8956654","42.5213916"],["-110.8957621","42.5211703"],["-110.8958868","42.5209499"],["-110.8960328","42.5207445"],["-110.8962812","42.5204569"],["-110.8965753","42.5201708"],["-110.8968301","42.5199708"],["-110.897088","42.5197929"],["-110.8974823","42.5195801"],["-110.897837","42.519434"],["-110.8983364","42.5192603"],["-110.9055763","42.5170886"],["-110.9060275","42.5169258"],["-110.906366","42.5167722"],["-110.9067278","42.5165856"],["-110.9070886","42.5163794"],["-110.9074656","42.516133"],["-110.9078395","42.5158522"],["-110.9082313","42.5154984"],["-110.9085682","42.5151399"],["-110.9088199","42.514822"],["-110.909027","42.5145062"],["-110.9091746","42.5142519"],["-110.9093008","42.5139849"],["-110.9093972","42.5137223"],["-110.9094906","42.5134313"],["-110.9095777","42.5130725"],["-110.90963","42.5126694"],["-110.9096455","42.5123466"],["-110.90964","42.5121107"],["-110.9095112","42.5112888"],["-110.9087423","42.5071947"],["-110.9084951","42.5055742"],["-110.9084714","42.5053516"],["-110.9084481","42.50515"],["-110.9084141","42.5046126"],["-110.9084272","42.5040279"],["-110.908482","42.5032807"],["-110.9085941","42.5023473"],["-110.9088674","42.5010951"],["-110.9094971","42.4991646"],["-110.9103869","42.4965927"],["-110.911367","42.4938914"],["-110.9115331","42.4935774"],["-110.9117785","42.4932062"],["-110.9121118","42.4928037"],["-110.9124846","42.4924301"],["-110.9129049","42.4920928"],["-110.9134964","42.4916651"],["-110.9142223","42.4912789"],["-110.9209499","42.4876073"],["-110.9237157","42.4862246"],["-110.9251448","42.4856678"],["-110.927502","42.4848643"],["-110.928186","42.4846714"],["-110.9285195","42.4846086"],["-110.928809","42.4845775"],["-110.9292258","42.4845828"],["-110.9296925","42.4846116"],["-110.9303948","42.48475"],["-110.931701","42.4850797"],["-110.9365421","42.486394"],["-110.9372586","42.4866428"],["-110.9377702","42.4869362"],["-110.9382773","42.4872979"],["-110.9388481","42.4876718"],["-110.9395589","42.4879429"],["-110.9402586","42.488086"],["-110.940694","42.4881249"],["-110.9438373","42.4879381"],["-110.9444598","42.487939"],["-110.9450731","42.487999"],["-110.9458997","42.4881815"],["-110.9473239","42.4885867"],["-110.9481498","42.4887177"],["-110.9486553","42.4887391"],["-110.9499553","42.4886442"],["-110.954569","42.4881657"],["-110.9562313","42.4879331"],["-110.9574971","42.4875706"],["-110.9583867","42.4872131"],["-110.95921","42.4868032"],["-110.9599207","42.4863398"],["-110.9605739","42.4858651"],["-110.9609918","42.4854662"],["-110.9613949","42.4850469"],["-110.9618115","42.4845042"],["-110.9620464","42.4841619"],["-110.9622923","42.4837488"],["-110.9624707","42.4833318"],["-110.9625766","42.4830365"],["-110.9626461","42.4828391"],["-110.9628091","42.4823567"],["-110.9631341","42.4813893"],["-110.965821","42.4733232"],["-110.9668502","42.4702103"],["-110.9671328","42.4695732"],["-110.9674071","42.4690384"],["-110.9676933","42.4686617"],["-110.967989","42.468322"],["-110.9682923","42.468013"],["-110.9685589","42.4677888"],["-110.9689442","42.4674968"],["-110.9694948","42.4671482"],["-110.9701143","42.4668255"],["-110.9706879","42.4665841"],["-110.9712987","42.4663968"],["-110.9728728","42.466004"],["-110.9737635","42.465754"],["-110.9749357","42.4653367"],["-110.9757029","42.465014"],["-110.9765215","42.4645799"],["-110.9771501","42.4641782"],["-110.9777871","42.463684"],["-110.9783729","42.4631593"],["-110.9788058","42.4626884"],["-110.9792044","42.4622214"],["-110.9796237","42.4615862"],["-110.9799485","42.4609606"],["-110.9802422","42.4601654"],["-110.9836977","42.4478385"],["-110.9841234","42.4463032"],["-110.9851129","42.4426946"],["-110.9852654","42.441923"],["-110.9853665","42.4410611"],["-110.9854088","42.440267"],["-110.9853699","42.4393726"],["-110.9852924","42.4385806"],["-110.9851453","42.437778"],["-110.9850021","42.4370246"],["-110.9840113","42.4338315"],["-110.9837721","42.4329025"],["-110.9835747","42.4316481"],["-110.9834784","42.4299286"],["-110.9834768","42.4288857"],["-110.9837545","42.4267655"],["-110.9842656","42.4236205"],["-110.984683","42.4211168"],["-110.9849012","42.4201974"],["-110.9851292","42.4193905"],["-110.9854494","42.4185828"],["-110.9863782","42.4164339"],["-110.9876971","42.4133765"],["-110.987987","42.4126746"],["-110.9881889","42.412112"],["-110.9883819","42.4114356"],["-110.9885532","42.4106766"],["-110.9887865","42.4093001"],["-110.9891083","42.4071567"],["-110.989588","42.4039789"],["-110.989775","42.4029633"],["-110.9899782","42.4025054"],["-110.9902851","42.4020731"],["-110.9906141","42.4017337"],["-110.9908546","42.4015553"],["-110.9911369","42.4013686"],["-110.9915112","42.4011603"],["-110.9919223","42.4009751"],["-110.9923626","42.4008336"],["-110.9928679","42.400709"],["-110.9934547","42.4006322"],["-110.9940392","42.4006146"],["-111.0004478","42.4009479"],["-111.0021548","42.4009889"],["-111.0035805","42.4009473"],["-111.0042644","42.4009112"],["-111.0059909","42.4007142"],["-111.0107339","42.4000502"],["-111.0116427","42.3999795"],["-111.0124621","42.3999437"],["-111.0133841","42.3999644"],["-111.0142559","42.3999965"],["-111.0154325","42.4001131"],["-111.0176652","42.4004924"],["-111.0181453","42.4005311"],["-111.0186945","42.4005251"],["-111.0192353","42.4005069"],["-111.0199576","42.400448"],["-111.0206131","42.4003931"],["-111.0209912","42.4004023"],["-111.021576","42.4004432"],["-111.0220319","42.400538"],["-111.0224607","42.4006409"],["-111.0228814","42.4008075"],["-111.0232198","42.4009662"],["-111.0235218","42.4011303"],["-111.0238301","42.4013582"],["-111.0242327","42.4017107"],["-111.024951","42.40237"],["-111.0258153","42.4030269"],["-111.0264249","42.4033646"],["-111.0271721","42.4037069"],["-111.0279857","42.4039861"],["-111.0287002","42.4041646"],["-111.029398","42.4042852"],["-111.0299531","42.4043258"],["-111.0305733","42.4043587"],["-111.0312583","42.4043405"],["-111.0319394","42.4042743"],["-111.0332403","42.4040188"],["-111.0439617","42.4017412"],["-111.0458024","42.401338"],["-111.0461846","42.4012188"],["-111.0465108","42.4010898"],["-111.0467581","42.4009615"],["-111.047249","42.4006776"],["-111.0475089","42.4004608"],["-111.0477568","42.4002317"],["-111.0480014","42.399981"],["-111.048172","42.3997502"],["-111.0483261","42.399482"],["-111.050893","42.3940755"],["-111.0515194","42.3927426"],["-111.052286","42.3911593"],["-111.0528507","42.3899756"],["-111.0531485","42.3893142"],["-111.053294","42.3889296"],["-111.0533759","42.3886503"],["-111.0534623","42.3882791"],["-111.0535542","42.3877203"],["-111.0536067","42.3872419"],["-111.0536104","42.387048"],["-111.0536045","42.3868675"],["-111.0535912","42.3866433"],["-111.0535529","42.3863263"],["-111.0531149","42.3839728"],["-111.0529537","42.3830548"],["-111.052919","42.3827405"],["-111.0528953","42.3821675"],["-111.0528742","42.3811041"],["-111.0528616","42.3802273"],["-111.0528949","42.3777016"],["-111.0529449","42.3770415"],["-111.0532606","42.3720381"],["-111.0532343","42.3712788"],["-111.0532093","42.3710668"],["-111.0531441","42.3707357"],["-111.0530197","42.370213"],["-111.0524457","42.3682507"],["-111.052143","42.367218"],["-111.0515343","42.3651508"],["-111.0512826","42.364285"],["-111.0510455","42.3634688"],["-111.050966","42.3630698"],["-111.0509478","42.3627637"],["-111.0509515","42.3625154"],["-111.0509601","42.3623104"],["-111.0510469","42.3618643"],["-111.0511628","42.3615157"],["-111.0513411","42.3611509"],["-111.0516014","42.3607299"],["-111.0518154","42.3604146"],["-111.0519335","42.3602506"],["-111.0515654","42.3600741"],["-111.0513074","42.3599501"],["-111.051118","42.3598384"],["-111.0508929","42.3596931"],["-111.0506139","42.3594824"],["-111.0502724","42.3591867"],["-111.0500805","42.3589899"],["-111.0498415","42.3586867"],["-111.0496921","42.3584662"],["-111.0496345","42.3583556"],["-111.0495532","42.3581896"],["-111.0494513","42.3579475"],["-111.0492979","42.3574718"],["-111.0477003","42.3520607"],["-111.0473276","42.3507162"],["-111.0472312","42.3502645"],["-111.0471651","42.3498596"],["-111.0470943","42.349357"],["-111.0470546","42.3487462"],["-111.0470369","42.3467862"],["-111.0470949","42.3164481"],["-111.0472115","42.2824882"],["-111.047198","42.2814888"],["-111.0471781","42.2812267"],["-111.0471351","42.2809176"],["-111.0470245","42.2803976"],["-111.0468654","42.2798881"],["-111.0467158","42.2794808"],["-111.0464405","42.2789003"],["-111.0462087","42.2785191"],["-111.0458987","42.2780827"],["-111.0441553","42.2758477"],["-111.0439022","42.2755024"],["-111.0437061","42.2752019"],["-111.0434159","42.274683"],["-111.0433112","42.2744749"],["-111.0431955","42.2741983"],["-111.0430689","42.2738326"],["-111.0429429","42.2734186"],["-111.0428512","42.2730232"],["-111.0428079","42.2727003"],["-111.0427695","42.2723098"],["-111.0427279","42.2467113"],["-111.0425611","42.2263245"],["-111.042639","42.2135567"],["-111.0425778","42.2131404"],["-111.0421041","42.2130925"],["-111.0415229","42.2130176"],["-111.0408539","42.2129079"],["-111.0403812","42.2127953"],["-111.0399176","42.212654"],["-111.0394767","42.2124875"],["-111.0390307","42.2122851"],["-111.0386532","42.2120958"],["-111.0382854","42.2118813"],["-111.0379513","42.2116622"],["-111.0376253","42.2114136"],["-111.0373021","42.211119"],["-111.0369803","42.2107845"],["-111.0351426","42.2086235"],["-111.0214803","42.1922954"],["-111.0209668","42.1917149"],["-111.0199892","42.1907012"],["-111.0193083","42.1900319"],["-111.017708","42.1886075"],["-111.0092234","42.1814318"],["-111.0084105","42.1808207"],["-111.0075189","42.1802034"],["-111.0066452","42.1796422"],["-111.0055001","42.1789849"],["-110.9969105","42.1745477"],["-110.9964758","42.1742947"],["-110.9961414","42.1740841"],["-110.9958022","42.1738513"],["-110.9953168","42.1734911"],["-110.9948243","42.1730941"],["-110.9944344","42.1727462"],["-110.9940726","42.1724035"],["-110.9937202","42.1720203"],["-110.993405","42.1716476"],["-110.9931561","42.1713336"],["-110.9926653","42.1706209"],["-110.9748289","42.1434131"],["-110.9744085","42.1428524"],["-110.9737474","42.14207"],["-110.9727787","42.1410077"],["-110.9718069","42.1399341"],["-110.9710937","42.1390338"],["-110.9708589","42.1387156"],["-110.9705663","42.1382499"],["-110.9701679","42.1375232"],["-110.9698468","42.1368868"],["-110.9695794","42.1362238"],["-110.9693963","42.1356621"],["-110.9692248","42.1350657"],["-110.969106","42.134589"],["-110.969003","42.1340755"],["-110.9686779","42.1317682"],["-110.9685798","42.1309915"],["-110.9685009","42.1303269"],["-110.9684328","42.1295389"],["-110.9684171","42.1289365"],["-110.9684449","42.1279566"],["-110.9685489","42.125684"],["-110.9685407","42.1251613"],["-110.9685174","42.1248469"],["-110.968448","42.1244914"],["-110.9683753","42.1242267"],["-110.9683047","42.1240146"],["-110.9681948","42.1237662"],["-110.9680459","42.1234629"],["-110.9678275","42.1230971"],["-110.9676061","42.1228017"],["-110.9673144","42.1224548"],["-110.967035","42.1221627"],["-110.9667536","42.1219201"],["-110.9665381","42.1217507"],["-110.9663593","42.1216115"],["-110.9659248","42.1213194"],["-110.9613401","42.1184274"],["-110.9608715","42.1181118"],["-110.9604841","42.1178148"],["-110.9601417","42.1175241"],["-110.95975","42.1171659"],["-110.9593573","42.116762"],["-110.9590544","42.1164098"],["-110.9587643","42.1160439"],["-110.9585018","42.1156642"],["-110.9582876","42.1153036"],["-110.957578","42.1139331"],["-110.9563709","42.1115468"],["-110.9561184","42.1110119"],["-110.9558966","42.1104652"],["-110.9554863","42.1091803"],["-110.951487","42.0952285"],["-110.9497286","42.0900103"],["-110.9453058","42.0738746"],["-110.9448625","42.0722848"],["-110.9447509","42.0719691"],["-110.9446036","42.071621"],["-110.9444085","42.0712676"],["-110.9441758","42.0709234"],["-110.9438895","42.0705811"],["-110.9436274","42.0702921"],["-110.9433535","42.0700386"],["-110.9429674","42.0697296"],["-110.9388177","42.0668218"],["-110.9384108","42.0665049"],["-110.938047","42.0661706"],["-110.9376933","42.0658001"],["-110.9373568","42.0653609"],["-110.9368229","42.064472"],["-110.9351031","42.061465"],["-110.9348896","42.0611446"],["-110.9345622","42.0607221"],["-110.9339642","42.0600843"],["-110.9333654","42.0594744"],["-110.9327818","42.0588807"],["-110.9325495","42.0586255"],["-110.9322893","42.0583073"],["-110.9320822","42.0580063"],["-110.931879","42.0576549"],["-110.9317045","42.0572847"],["-110.9315886","42.0569677"],["-110.9315062","42.056672"],["-110.9314393","42.05637"],["-110.9313983","42.0560093"],["-110.9313635","42.0539254"],["-110.93132","42.0500467"],["-110.9315757","42.0386958"],["-110.9316037","42.0382693"],["-110.9316408","42.0378797"],["-110.931704","42.0374373"],["-110.931774","42.0370265"],["-110.9319134","42.0364325"],["-110.9322889","42.0349757"],["-110.932373","42.0346116"],["-110.932421","42.03434"],["-110.932477","42.033903"],["-110.9324972","42.0336397"],["-110.9325326","42.0309709"],["-110.9325798","42.026462"],["-110.9326156","42.0238891"],["-110.9326438","42.0235636"],["-110.9326791","42.0232825"],["-110.9327254","42.0229888"],["-110.9327712","42.0227432"],["-110.9328253","42.0224999"],["-110.9329027","42.0222119"],["-110.9330092","42.0218799"],["-110.933156","42.021477"],["-110.933318","42.021086"],["-110.9335422","42.0206201"],["-110.9337476","42.0202454"],["-110.9339793","42.0198535"],["-110.9342688","42.0194332"],["-110.9358488","42.0173812"],["-110.9360199","42.0171512"],["-110.9361858","42.0169047"],["-110.9364638","42.0164365"],["-110.9366191","42.0161257"],["-110.9367299","42.0158705"],["-110.9368257","42.0156307"],["-110.9369083","42.0154061"],["-110.9369826","42.0151797"],["-110.9370516","42.01492"],["-110.9371093","42.0146493"],["-110.9371539","42.0143615"],["-110.9371825","42.0141094"],["-110.9372027","42.0137931"],["-110.9371989","42.0074921"],["-110.9371907","42.0004284"],["-110.9371986","42.0001382"],["-110.9372178","41.9998411"],["-110.9372496","41.9995757"],["-110.9372985","41.9992773"],["-110.9373592","41.9990018"],["-110.9374389","41.9987062"],["-110.9375498","41.9983758"],["-110.9384911","41.9961355"],["-110.938727","41.9956388"],["-110.939029","41.9950781"],["-110.9396513","41.9941015"],["-110.9413129","41.9916552"],["-110.9415632","41.9912128"],["-110.9417445","41.9908343"],["-110.9418728","41.9904651"],["-110.9419588","41.9901149"],["-110.9420255","41.9896804"],["-110.9420539","41.9891827"],["-110.9420777","41.9841827"],["-110.9420945","41.98222"],["-110.9421249","41.9819108"],["-110.9421672","41.9816208"],["-110.942245","41.9812996"],["-110.942664","41.9799351"],["-110.9440028","41.9757185"],["-110.9441715","41.9752786"],["-110.9443388","41.9748911"],["-110.944999","41.9737471"],["-110.9469999","41.9703688"],["-110.9473049","41.9698217"],["-110.9475138","41.9694057"],["-110.9476416","41.9690594"],["-110.9477326","41.9687358"],["-110.9477956","41.9684196"],["-110.9478352","41.968112"],["-110.9478777","41.964947"],["-110.9479366","41.9588467"],["-110.94797","41.9560199"],["-110.9479984","41.9557091"],["-110.9480565","41.9553607"],["-110.9481512","41.9549748"],["-110.94829","41.9545957"],["-110.9484814","41.9541992"],["-110.9492933","41.9528602"],["-110.9517163","41.9489468"],["-110.9523923","41.9478035"],["-110.9525378","41.947461"],["-110.9526506","41.9471488"],["-110.952726","41.9468678"],["-110.9527877","41.9465129"],["-110.9528193","41.9461692"],["-110.9528237","41.9443105"],["-110.9528219","41.9420797"],["-110.9528183","41.9387549"],["-110.9528496","41.9382984"],["-110.9529295","41.937863"],["-110.9532017","41.9369225"],["-110.9537367","41.9351907"],["-110.9543605","41.933156"],["-110.9544869","41.9326344"],["-110.954651","41.9318091"],["-110.9547081","41.9313567"],["-110.9547478","41.930908"],["-110.9547785","41.9301855"],["-110.954893","41.9171951"],["-110.9549509","41.9120913"],["-110.9549985","41.9115442"],["-110.9550618","41.9110545"],["-110.9551424","41.9106039"],["-110.9552452","41.9101126"],["-110.955642","41.908748"],["-110.9705152","41.8616181"],["-110.9706885","41.8609617"],["-110.9708859","41.8600989"],["-110.9713435","41.8573825"],["-110.971659","41.8554759"],["-110.9722605","41.8517417"],["-110.9723834","41.851177"],["-110.9725354","41.8506252"],["-110.9727202","41.8500564"],["-110.9736217","41.8476466"],["-110.9744051","41.8455882"],["-110.9752403","41.8433898"],["-110.9757662","41.841993"],["-110.9768788","41.8394682"],["-110.983562","41.8246538"],["-110.9838573","41.8238094"],["-110.9839772","41.8233884"],["-110.9840822","41.8229729"],["-110.9841902","41.8224533"],["-110.9844457","41.8209037"],["-110.9845256","41.820316"],["-110.9845515","41.8198779"],["-110.9845441","41.8194682"],["-110.9845001","41.8189971"],["-110.9844172","41.8186309"],["-110.9842853","41.8182065"],["-110.9841216","41.8177514"],["-110.9839453","41.8173693"],["-110.9837448","41.8170146"],["-110.9835049","41.8166406"],["-110.9832466","41.8162767"],["-110.9829764","41.8159568"],["-110.9826712","41.8156014"],["-111.0241277","41.7886445"],["-111.0285985","41.785794"],["-111.0303486","41.7848221"],["-111.0315144","41.7842143"],["-111.0334702","41.7833319"],["-111.0348019","41.7827792"],["-111.0371487","41.7819069"],["-111.0386828","41.7814121"],["-111.0415245","41.7806412"],["-111.0432105","41.7802581"],["-111.0459091","41.7797474"],["-111.0464389","41.7796618"],["-111.0495701","41.7793211"],["-111.1219739","41.7725508"],["-111.121901","41.7715936"],["-111.1218814","41.7712318"],["-111.1219765","41.7708023"],["-111.122107","41.7705671"],["-111.1223326","41.7702585"],["-111.122731","41.7698065"],["-111.1274355","41.7650629"],["-111.1283023","41.7642425"],["-111.1292963","41.7634531"],["-111.1312472","41.762043"],["-111.1333126","41.7605407"],["-111.1346265","41.7594797"],["-111.1410876","41.7535573"],["-111.1442781","41.7505492"],["-111.1458794","41.7489709"],["-111.1477483","41.7472163"],["-111.1528767","41.7423043"],["-111.1536127","41.7414833"],["-111.1550213","41.7394173"],["-111.1586935","41.7339911"],["-111.1589941","41.7334851"],["-111.1592422","41.7329123"],["-111.1593524","41.7325544"],["-111.1594179","41.7322611"],["-111.1594589","41.7319437"],["-111.1594658","41.7314106"],["-111.1592102","41.7275669"],["-111.1591177","41.7260255"],["-111.1594676","41.7128768"],["-111.1594438","41.7114334"],["-111.1593877","41.7098131"],["-111.1592884","41.7061383"],["-111.159321","41.7057471"],["-111.1593591","41.7054623"],["-111.1594366","41.7051774"],["-111.1597163","41.704587"],["-111.1614675","41.7015763"],["-111.1618451","41.7010801"],["-111.162203","41.7007187"],["-111.1624865","41.700501"],["-111.1627799","41.700289"],["-111.1631833","41.7000419"],["-111.1636042","41.6998546"],["-111.1644156","41.6995843"],["-111.1687656","41.6983521"],["-111.1697682","41.6979484"],["-111.1706851","41.6974732"],["-111.1715308","41.6969551"],["-111.1721652","41.6964432"],["-111.1728762","41.6958025"],["-111.1731267","41.6955323"],["-111.1734162","41.6951835"],["-111.1740402","41.694223"],["-111.1783073","41.6858695"],["-111.1803801","41.6818181"],["-111.1807062","41.6812781"],["-111.1809418","41.6809784"],["-111.1812547","41.680641"],["-111.1816729","41.6802746"],["-111.18294","41.6793046"],["-111.1835629","41.6787918"],["-111.1839473","41.6783655"],["-111.1842648","41.6779471"],["-111.1845189","41.6775273"],["-111.1846781","41.6771745"],["-111.1848529","41.6766639"],["-111.1849423","41.6762938"],["-111.1849797","41.6760459"],["-111.1850011","41.675264"],["-111.1849581","41.6685203"],["-111.1849459","41.6679274"],["-111.1849492","41.6669692"],["-111.1849233","41.6615516"],["-111.1848227","41.6540957"],["-111.1847839","41.6534755"],["-111.1847602","41.6532239"],["-111.183362","41.643297"],["-111.1831551","41.6419288"],["-111.1830685","41.6415536"],["-111.1829571","41.6412379"],["-111.1828373","41.6409642"],["-111.1827278","41.64074"],["-111.1826184","41.6405324"],["-111.1824763","41.6403019"],["-111.1820745","41.6397916"],["-111.1802149","41.63765"],["-111.1798786","41.6372456"],["-111.1796306","41.6368882"],["-111.1794495","41.6365802"],["-111.1792985","41.6362931"],["-111.1791609","41.6359687"],["-111.1790387","41.6355884"],["-111.1789517","41.6351421"],["-111.1789252","41.6348697"],["-111.178937","41.6341942"],["-111.1792566","41.6223049"],["-111.1792718","41.6163284"],["-111.1791802","41.6127618"],["-111.1791511","41.6118808"],["-111.1790983","41.6113589"],["-111.1789985","41.6107487"],["-111.1788256","41.610083"],["-111.1785407","41.609242"],["-111.1738328","41.5960778"],["-111.1732129","41.5944051"],["-111.1729792","41.5939149"],["-111.1727031","41.5933839"],["-111.1658978","41.581148"],["-111.1649989","41.5794442"],["-111.1600651","41.567807"],["-111.1597451","41.5670576"],["-111.1594855","41.5664405"],["-111.1581087","41.5631532"],["-111.1566176","41.5596335"],["-111.1562734","41.5586542"],["-111.1560552","41.5580113"],["-111.1553721","41.555909"],["-111.1551587","41.5552123"],["-111.1550583","41.5548348"],["-111.1549896","41.5544685"],["-111.1549263","41.5541052"],["-111.1548785","41.5537354"],["-111.1548416","41.5533669"],["-111.1548252","41.5530719"],["-111.1548226","41.5527399"],["-111.1548275","41.552439"],["-111.1548479","41.5520693"],["-111.1548842","41.5516621"],["-111.1549333","41.5512563"],["-111.1550166","41.5508143"],["-111.1551249","41.5503055"],["-111.1552571","41.5498306"],["-111.1553691","41.5494926"],["-111.1554736","41.5492053"],["-111.1556178","41.5488647"],["-111.1590459","41.5415048"],["-111.1593909","41.5408816"],["-111.1595333","41.5406466"],["-111.1597562","41.5403565"],["-111.1617125","41.5380762"],["-111.1620168","41.5376824"],["-111.1621944","41.5374278"],["-111.162318","41.5372233"],["-111.1624063","41.5370578"],["-111.1624886","41.5368645"],["-111.1625988","41.5365755"],["-111.1627019","41.5362475"],["-111.1627698","41.5359554"],["-111.1628228","41.5356011"],["-111.1629014","41.5233954"],["-111.1628944","41.522102"],["-111.1629083","41.5212225"],["-111.1628976","41.5190373"],["-111.1628511","41.5186802"],["-111.1626703","41.5183657"],["-111.1623701","41.5179761"],["-111.1619","41.5176743"],["-111.1615041","41.5175188"],["-111.1610626","41.5174396"],["-111.1443054","41.517385"],["-111.1419663","41.5173729"],["-111.1413117","41.5173064"],["-111.1406954","41.5171922"],["-111.1400479","41.5170291"],["-111.1392378","41.5167425"],["-111.1387587","41.5165215"],["-111.1383448","41.5162942"],["-111.1377763","41.5159298"],["-111.1336819","41.5130172"],["-111.1318666","41.5116637"],["-111.1306191","41.5106429"],["-111.1295735","41.5096596"],["-111.1286524","41.5086366"],["-111.1251428","41.5043572"],["-111.1239712","41.5029094"],["-111.1237776","41.5025713"],["-111.1154469","41.4808012"],["-111.1151861","41.4802417"],["-111.1149456","41.4798331"],["-111.1146423","41.4794116"],["-111.1054778","41.4684405"],["-111.1013932","41.463561"],["-111.0999802","41.4618572"],["-111.0990836","41.4609011"],["-111.0982929","41.4601235"],["-111.0975423","41.459466"],["-111.0557445","41.4270012"],["-111.0545579","41.4260004"],["-111.0536966","41.4250359"],["-111.051322","41.4219502"],["-111.0501934","41.4203937"],["-111.0477036","41.41657"],["-111.0468355","41.4152295"],["-111.0454027","41.412983"],["-111.0440582","41.4109643"],["-111.0378085","41.4020719"],["-111.0371444","41.401034"],["-111.0367862","41.400364"],["-111.0363691","41.399395"],["-111.0361303","41.3987614"],["-111.0358311","41.3974621"],["-111.0357612","41.3969506"],["-111.0356637","41.3959616"],["-111.0349219","41.3894043"],["-111.034015","41.3810942"],["-111.0338537","41.3800126"],["-111.0337522","41.3794933"],["-111.0336485","41.379115"],["-111.0335105","41.3787234"],["-111.0332075","41.3781876"],["-111.032716","41.3774819"],["-111.0321641","41.3768981"],["-111.0315225","41.3763501"],["-111.0308236","41.3758708"],["-111.0298708","41.3753596"],["-111.0265737","41.3737149"],["-111.0259357","41.3733779"],["-111.0245117","41.3727298"],["-111.0227151","41.3721171"],["-111.0218859","41.3718526"],["-111.0205159","41.3715032"],["-111.0180148","41.3710225"],["-111.017671","41.3709609"],["-111.0166035","41.3707509"],["-111.0158863","41.3705493"],["-111.0151791","41.3702925"],["-111.0145741","41.37002"],["-111.0140853","41.3697657"],["-111.0135373","41.3694176"],["-111.0130767","41.3690565"],["-111.0126022","41.3686397"],["-111.0121521","41.3681576"],["-111.0115619","41.3673653"],["-111.0074894","41.3615819"],["-111.0071708","41.3611302"],["-111.0059676","41.3593964"],["-111.0054267","41.3584751"],["-111.0047153","41.3570957"],["-111.0046283","41.3568891"],["-111.0045359","41.3567122"],["-111.0040362","41.3555398"],["-111.0038247","41.3549752"],["-111.003573","41.3542041"],["-111.0032935","41.3531597"],["-111.0030497","41.3518629"],["-111.0027958","41.3506449"],["-111.0023105","41.3480642"],["-111.001442","41.3431635"],["-111.0007812","41.3398207"],["-111.0005738","41.3388211"],["-110.9989628","41.3299009"],["-110.9986708","41.3283181"],["-110.9984522","41.3271561"],["-110.997497","41.3220649"],["-110.9972313","41.3209431"],["-110.996638","41.319536"],["-110.9933695","41.3122592"],["-110.9917707","41.3087825"],["-110.9914085","41.3080896"],["-110.9910408","41.3074679"],["-110.9901334","41.3060741"],["-110.9888791","41.3044574"],["-110.9859001","41.3008315"],["-110.9847832","41.2995412"],["-110.9840625","41.2987907"],["-110.9832509","41.298105"],["-110.9787627","41.2946311"],["-110.9780674","41.2941015"],["-110.9766313","41.2929948"],["-110.9759074","41.2924334"],["-110.9752196","41.2919"],["-110.974329","41.2912236"],["-110.9729115","41.2901284"],["-110.9717542","41.2892807"],["-110.969328","41.2876589"],["-110.9671356","41.286221"],["-110.9655171","41.2851814"],["-110.9645194","41.2844855"],["-110.9639759","41.2841133"],["-110.9636585","41.2839352"],["-110.9633033","41.2837718"],["-110.9628343","41.2836159"],["-110.9623433","41.2835019"],["-110.959515","41.2830599"],["-110.9590429","41.28297"],["-110.9587096","41.2828781"],["-110.9583679","41.2827284"],["-110.95801","41.2825247"],["-110.9577694","41.2823283"],["-110.957578","41.2821397"],["-110.9574215","41.2819213"],["-110.9572996","41.2816903"],["-110.9572216","41.2814398"],["-110.9571768","41.28119"],["-110.9571722","41.2806772"],["-110.9572341","41.2789659"],["-110.9572958","41.2779005"],["-110.9574553","41.2768707"],["-110.957599","41.2759647"],["-110.9576427","41.2750537"],["-110.9576816","41.2721581"],["-110.957691","41.271235"],["-110.9577075","41.2707404"],["-110.9577665","41.2701498"],["-110.9578173","41.2698172"],["-110.9578759","41.2695607"],["-110.958018","41.2691583"],["-110.9582039","41.2687231"],["-110.9583971","41.2683716"],["-110.9585577","41.2680959"],["-110.95873","41.2678396"],["-110.9589164","41.2675884"],["-110.9591435","41.2673197"],["-110.9593495","41.2670858"],["-110.9595813","41.266844"],["-110.9598521","41.2665872"],["-110.9602012","41.2662754"],["-110.9611002","41.2654765"],["-110.9569105","41.2625312"],["-110.9566152","41.2623751"],["-110.9562801","41.2622496"],["-110.9559899","41.2621724"],["-110.9558707","41.2620904"],["-110.9557765","41.2620188"],["-110.9557309","41.2619718"],["-110.9557044","41.2619255"],["-110.9556904","41.261877"],["-110.9556844","41.2618214"],["-110.9556855","41.2617697"],["-110.9556925","41.2617227"],["-110.9558008","41.2615917"],["-110.9570852","41.2605696"],["-110.957451","41.2602902"],["-110.9576147","41.2601853"],["-110.9577759","41.2600958"],["-110.958146","41.2599156"],["-110.9592153","41.2594281"],["-110.9594385","41.2593375"],["-110.959627","41.2592668"],["-110.9597335","41.2592313"],["-110.9599472","41.2591244"],["-110.9604501","41.2590157"],["-110.9611409","41.2588816"],["-110.9616466","41.2588049"],["-110.9620229","41.2587601"],["-110.9658297","41.2583633"],["-110.966602","41.2583005"],["-110.9671264","41.2582811"],["-110.9681568","41.2582988"],["-110.9688894","41.2583586"],["-110.9701862","41.25856"],["-110.9716743","41.258935"],["-110.9728469","41.2593586"],["-110.9739206","41.2598668"],["-110.974755","41.2603748"],["-110.9761055","41.2612581"],["-110.9767571","41.2616192"],["-110.9773399","41.2618951"],["-110.9779898","41.262139"],["-110.9786633","41.2623222"],["-110.9792992","41.2624472"],["-110.9799799","41.2625323"],["-110.9806093","41.2625756"],["-110.9811788","41.2625646"],["-110.9818198","41.262504"],["-110.9823317","41.2624229"],["-110.9828326","41.2623276"],["-110.9832421","41.262214"],["-110.9836625","41.2620769"],["-110.9841875","41.2618667"],["-110.984797","41.2616123"],["-110.9851015","41.2614675"],["-111.0083465","41.2505952"],["-111.0113351","41.2493266"],["-111.0129656","41.2487419"],["-111.0146701","41.2482639"],["-111.0162324","41.2478614"],["-111.0178879","41.247516"],["-111.0197892","41.247234"],["-111.0216224","41.2470106"],["-111.0235282","41.2468724"],["-111.0397494","41.2467016"],["-111.040632","41.2467306"],["-111.0414545","41.2468016"],["-111.0420753","41.2468706"],["-111.0426152","41.24695"],["-111.0431503","41.2470501"],["-111.0438125","41.2472005"],["-111.0445649","41.2473874"],["-111.0452171","41.2475946"],["-111.0486347","41.2487961"],["-111.0498142","41.2491692"],["-111.0507112","41.2494016"],["-111.0523226","41.2497446"],["-111.052991","41.2498301"],["-111.0542614","41.2499585"],["-111.0551734","41.2500098"],["-111.0578523","41.2499633"],["-111.0604146","41.2496428"],["-111.0624017","41.2492251"],["-111.064318","41.2485923"],["-111.066268","41.2477451"],["-111.0678415","41.2468698"],["-111.0692811","41.2459056"],["-111.0704651","41.2448577"],["-111.073132","41.2421968"],["-111.0764265","41.2386824"],["-111.087991","41.2265339"],["-111.0897114","41.2246883"],["-111.0904175","41.2237001"],["-111.091362","41.221992"],["-111.0952354","41.2139927"],["-111.0963792","41.2117729"],["-111.0968649","41.2110234"],["-111.0974834","41.2102404"],["-111.0980992","41.2095949"],["-111.1002393","41.2077425"],["-111.1078492","41.2012822"],["-111.1086673","41.2005949"],["-111.1106762","41.1988998"],["-111.1138513","41.1962222"],["-111.1145679","41.1955809"],["-111.1150301","41.1951939"],["-111.11541","41.1948885"],["-111.1158506","41.1945421"],["-111.1176621","41.1932386"],["-111.1196549","41.1921446"],["-111.1226669","41.1906667"],["-111.1257175","41.189095"],["-111.127452","41.1877834"],["-111.1294456","41.1859089"],["-111.1306663","41.1844371"],["-111.1315965","41.1829338"],["-111.1326019","41.1806998"],["-111.1357526","41.1730609"],["-111.1364803","41.1702986"],["-111.1369063","41.1679648"],["-111.1372982","41.1658183"],["-111.1379166","41.1642189"],["-111.138926","41.162681"],["-111.1413845","41.1596351"],["-111.1426255","41.1580183"],["-111.1433779","41.1566526"],["-111.1437265","41.1558371"],["-111.1444991","41.153702"],["-111.1448775","41.1528716"],["-111.145179","41.1522569"],["-111.1457438","41.1511174"],["-111.1562638","41.1338205"],["-111.1575935","41.1319625"],["-111.1588088","41.1306784"],["-111.160204","41.129655"],["-111.1637139","41.1277365"],["-111.1694037","41.1250267"],["-111.1711076","41.1243639"],["-111.1729749","41.1240043"],["-111.1765556","41.1238026"],["-111.1799762","41.1234691"],["-111.1821879","41.1230818"],["-111.18484","41.1224236"],["-111.186151","41.1220075"],["-111.1880307","41.121305"],["-111.1898916","41.1204137"],["-111.1911237","41.1197828"],["-111.1924574","41.1190072"],["-111.1933001","41.1184482"],["-111.1939877","41.1179599"],["-111.194687","41.1174342"],["-111.1953062","41.1169287"],["-111.1978309","41.114687"],["-111.1986557","41.1139458"],["-111.2016472","41.1114202"],["-111.2047517","41.1091965"],["-111.2068611","41.1075316"],["-111.2087491","41.1058068"],["-111.210138","41.1043348"],["-111.2111472","41.1032241"],["-111.2131068","41.101208"],["-111.2169877","41.0983124"],["-111.2195206","41.0961668"],["-111.2218773","41.0939922"],["-111.2239241","41.0922232"],["-111.2261396","41.0905358"],["-111.231824","41.0870194"],["-111.2332652","41.086342"],["-111.2345001","41.0859779"],["-111.2381586","41.0850198"],["-111.2395569","41.0845091"],["-111.2412832","41.0835159"],["-111.2466256","41.0799345"],["-111.2503461","41.0780233"],["-111.2542751","41.0759779"],["-111.2581389","41.0738189"],["-111.2629614","41.0711846"],["-111.265322","41.0697448"],["-111.2666682","41.0689006"],["-111.2683436","41.0679049"],["-111.2695834","41.067318"],["-111.2707728","41.0669391"],["-111.2734213","41.0664525"],["-111.2767386","41.0658447"],["-111.2790319","41.0652411"],["-111.2807749","41.0646161"],["-111.2833672","41.0631624"],["-111.2891395","41.0594144"],["-111.2913707","41.0578519"],["-111.292521","41.056818"],["-111.2983449","41.0510016"],["-111.3004645","41.0492629"],["-111.3026099","41.0478238"],["-111.305047","41.0465187"],["-111.3070427","41.0458445"],["-111.3094327","41.0453257"],["-111.3129875","41.0446561"],["-111.3159398","41.0438644"],["-111.3200855","41.0425094"],["-111.3234857","41.0412147"],["-111.3263376","41.0397981"],["-111.3294768","41.0377174"],["-111.3311211","41.0362816"],["-111.3325196","41.0344237"],["-111.3339004","41.0326554"],["-111.3345239","41.0320775"],["-111.3353949","41.0313884"],["-111.3363854","41.0307686"],["-111.3371208","41.0303776"],["-111.339295","41.0294933"],["-111.3582923","41.022195"],["-111.3619287","41.0207013"],["-111.3640129","41.0197692"],["-111.36523","41.0190707"],["-111.3664975","41.0180461"],["-111.367318","41.0171048"],["-111.3679423","41.0160521"],["-111.3689327","41.0136443"],["-111.3698317","41.0125243"],["-111.3705709","41.0119057"],["-111.3713479","41.011467"],["-111.3724505","41.0110456"],["-111.3738033","41.0107201"],["-111.3756102","41.0103135"],["-111.3772035","41.0099164"],["-111.3784989","41.0092444"],["-111.387119","41.0027325"],["-111.3891742","41.0013051"],["-111.3940054","40.9981225"],["-111.3965268","40.9962938"],["-111.4002705","40.9929284"],["-111.4013828","40.9919536"],["-111.4019179","40.9914948"],["-111.4022638","40.9912236"],["-111.4024866","40.9910653"],["-111.4026942","40.9909176"],["-111.4038797","40.9900604"],["-111.405407","40.9890637"],["-111.4061584","40.9886009"],["-111.4072487","40.9879666"],["-111.4089261","40.9870608"],["-111.4115966","40.9857935"],["-111.4152319","40.9842391"],["-111.4183265","40.9827078"],["-111.4332138","40.9742724"],["-111.4374219","40.9718883"],["-111.4378044","40.9715684"],["-111.4380016","40.9714164"],["-111.438244","40.9711895"],["-111.4384178","40.9710017"],["-111.438608","40.9707465"],["-111.4388321","40.970392"],["-111.4389826","40.9700896"],["-111.439096","40.9697631"],["-111.4391799","40.9693962"],["-111.4392219","40.9690583"],["-111.4391457","40.9685204"],["-111.439079","40.968178"],["-111.4389689","40.9676827"],["-111.4388541","40.96737"],["-111.4384839","40.9667492"],["-111.4381789","40.9663423"],["-111.4378376","40.9659654"],["-111.4370966","40.9654235"],["-111.4340794","40.9635029"],["-111.4284408","40.9598043"],["-111.4268134","40.9587413"],["-111.4256152","40.9578477"],["-111.4246693","40.9566796"],["-111.4244381","40.9562896"],["-111.4230277","40.9532577"],["-111.4221557","40.9512919"],["-111.4217679","40.9505159"],["-111.42136","40.949919"],["-111.4210066","40.9494744"],["-111.4204875","40.9489248"],["-111.4173965","40.9461573"],["-111.4145746","40.9436103"],["-111.4133575","40.942308"],["-111.4124284","40.9411574"],["-111.4117277","40.9403032"],["-111.4113913","40.9397935"],["-111.4108775","40.9391322"],["-111.4103491","40.938408"],["-111.4098925","40.9374971"],["-111.4095861","40.9363758"],["-111.4095238","40.9357133"],["-111.409621","40.9348269"],["-111.4107058","40.9299197"],["-111.4111838","40.9277771"],["-111.4115928","40.9259159"],["-111.4116362","40.9252246"],["-111.4115857","40.9245645"],["-111.4113968","40.9236954"],["-111.4106732","40.9220288"],["-111.410261","40.9213142"],["-111.4097222","40.9204796"],["-111.4087113","40.9190851"],["-111.4078246","40.9180983"],["-111.4056968","40.915932"],["-111.4036466","40.9136637"],["-111.4030483","40.9129328"],["-111.4018556","40.9112857"],["-111.4010368","40.9100973"],["-111.3987788","40.9062873"],["-111.3973663","40.9032911"],["-111.396145","40.899999"],["-111.3897995","40.8702219"],["-111.3891842","40.867488"],["-111.388824","40.8659327"],["-111.3881186","40.8626875"],["-111.3874393","40.8594607"],["-111.387305","40.8572472"],["-111.3875466","40.8557493"],["-111.3879867","40.854375"],["-111.3885238","40.8533425"],["-111.3890656","40.8523903"],["-111.3894157","40.8515976"],["-111.3896028","40.8508225"],["-111.3896516","40.8503079"],["-111.3896445","40.8496042"],["-111.3895807","40.8491619"],["-111.3894288","40.8485442"],["-111.389255","40.8480444"],["-111.388849","40.8472551"],["-111.3880442","40.8457168"],["-111.3877765","40.8450758"],["-111.3874636","40.843975"],["-111.3873796","40.8424202"],["-111.3875675","40.8412754"],["-111.3916251","40.8283916"],["-111.3923204","40.8266067"],["-111.3933296","40.8245981"],["-111.3948915","40.8220305"],["-111.4023166","40.8119102"],["-111.403233","40.8109507"],["-111.4045454","40.8098847"],["-111.4055697","40.8093158"],["-111.4066236","40.8089356"],["-111.4073294","40.8087564"],["-111.4079981","40.8086163"],["-111.4096258","40.8084887"],["-111.411145","40.808597"],["-111.4125401","40.8087551"],["-111.4138855","40.8088067"],["-111.416085","40.808611"],["-111.4286111","40.8068657"],["-111.4329091","40.8058227"],["-111.4377293","40.8043057"],["-111.4396532","40.8034992"],["-111.4443152","40.799679"],["-111.4468418","40.7973548"],["-111.4481603","40.7957547"],["-111.4490866","40.7944328"],["-111.4499229","40.7932557"],["-111.4505287","40.7925153"],["-111.4507123","40.7923284"],["-111.450868","40.7921921"],["-111.4510457","40.7920518"],["-111.4512362","40.7919202"],["-111.4521481","40.7914249"],["-111.4526392","40.7911193"],["-111.4528616","40.7909449"],["-111.4530411","40.7907801"],["-111.4531801","40.7906353"],["-111.4533101","40.7904844"],["-111.4534345","40.7903111"],["-111.4535414","40.7901322"],["-111.4536045","40.7899722"],["-111.4536623","40.7898054"],["-111.4537104","40.7896271"],["-111.4537827","40.7893005"],["-111.4539333","40.7886519"],["-111.4539912","40.7884497"],["-111.4540596","40.7882355"],["-111.4541663","40.7880007"],["-111.4543216","40.7877258"],["-111.4544764","40.7874906"],["-111.4546302","40.7872831"],["-111.4548418","40.7870415"],["-111.45542","40.7864437"],["-111.4561733","40.7856819"],["-111.4564899","40.7853924"],["-111.4566841","40.7852498"],["-111.4568709","40.7851245"],["-111.4570736","40.7850015"],["-111.4577492","40.7846262"],["-111.4580739","40.7844416"],["-111.4583167","40.7842793"],["-111.4585883","40.7840716"],["-111.4588774","40.7838031"],["-111.4591555","40.7834158"],["-111.4594675","40.7827843"],["-111.4597103","40.7821741"],["-111.4599943","40.7816146"],["-111.4603223","40.7810946"],["-111.4607483","40.7807109"],["-111.461718","40.7799955"],["-111.4633683","40.7790409"],["-111.4660375","40.7783427"],["-111.4668667","40.778043"],["-111.4673197","40.7778338"],["-111.4677475","40.7775522"],["-111.4680117","40.7773201"],["-111.4682347","40.77708"],["-111.4684194","40.7768148"],["-111.468535","40.7766049"],["-111.4686191","40.7764024"],["-111.4686837","40.7761837"],["-111.4687304","40.7758953"],["-111.4687782","40.7755895"],["-111.4688407","40.7752476"],["-111.4688619","40.7751386"],["-111.4688909","40.7749584"],["-111.46896","40.7744916"],["-111.4690476","40.7741037"],["-111.4691624","40.7737751"],["-111.4693083","40.77345"],["-111.4696198","40.772902"],["-111.4701531","40.7720293"],["-111.470297","40.7717182"],["-111.4704019","40.7713735"],["-111.4704762","40.7707059"],["-111.4703089","40.770145"],["-111.4700717","40.7695939"],["-111.4694337","40.7687393"],["-111.4691648","40.7679769"],["-111.4691925","40.7671228"],["-111.4696445","40.7662634"],["-111.4701241","40.7658043"],["-111.4705988","40.7654335"],["-111.4708838","40.765133"],["-111.4713231","40.7642042"],["-111.4716048","40.7609259"],["-111.4719547","40.7594779"],["-111.47235","40.757973"],["-111.4724044","40.7574164"],["-111.4722976","40.7568111"],["-111.4718644","40.7561026"],["-111.4712262","40.755439"],["-111.4706449","40.7547708"],["-111.4703009","40.7539978"],["-111.47027","40.7535448"],["-111.4703501","40.7530087"],["-111.470732","40.7519432"],["-111.4711052","40.7509543"],["-111.4715184","40.7499035"],["-111.4717015","40.7490465"],["-111.4717674","40.7477441"],["-111.4721324","40.7468754"],["-111.4727316","40.7461929"],["-111.4735254","40.745545"],["-111.4743727","40.7446298"],["-111.4755682","40.7431918"],["-111.4762338","40.7424859"],["-111.4768623","40.7419525"],["-111.4774914","40.7414308"],["-111.4788231","40.7405414"],["-111.4798359","40.739953"],["-111.5157745","40.7233061"],["-111.5162493","40.7230768"],["-111.5176235","40.7224628"],["-111.5183625","40.7222218"],["-111.5191846","40.7220179"],["-111.5199061","40.7218576"],["-111.5206946","40.7217472"],["-111.5215214","40.7216947"],["-111.5221185","40.7216762"],["-111.5227264","40.7217117"],["-111.5233038","40.7217626"],["-111.5239548","40.7218437"],["-111.5245375","40.7219267"],["-111.5250763","40.7220376"],["-111.5357436","40.7246158"],["-111.5363297","40.7247519"],["-111.5383808","40.7252601"],["-111.5409874","40.7261728"],["-111.5427126","40.7269746"],["-111.5441722","40.7276466"],["-111.5468764","40.7289191"],["-111.5477109","40.7294022"],["-111.5485217","40.7299443"],["-111.5492143","40.7305313"],["-111.5497718","40.7310816"],["-111.5509258","40.7323227"],["-111.56908","40.7514522"],["-111.5699624","40.7523393"],["-111.5708373","40.7530003"],["-111.5716267","40.7535511"],["-111.572312","40.7539706"],["-111.5735659","40.7546032"],["-111.5748327","40.7551388"],["-111.5761257","40.7555345"],["-111.5775422","40.7558808"],["-111.5791752","40.7561809"],["-111.5803978","40.7562867"],["-111.5818662","40.7563213"],["-111.5834645","40.7562287"],["-111.5850432","40.7560258"],["-111.5862875","40.7557839"],["-111.5872464","40.7555148"],["-111.5914184","40.7538884"],["-111.5962244","40.751934"],["-111.5991048","40.7508068"],["-111.6002079","40.7505021"],["-111.6014082","40.7502627"],["-111.6027731","40.7501009"],["-111.6044238","40.7500542"],["-111.605865","40.7500953"],["-111.6071283","40.7502608"],["-111.6083202","40.7504803"],["-111.609316","40.7507469"],["-111.6103355","40.7510861"],["-111.6114284","40.7515321"],["-111.6139367","40.7527592"],["-111.6146577","40.75305"],["-111.6152182","40.7532483"],["-111.6156844","40.753397"],["-111.6168484","40.7536959"],["-111.6176224","40.7538576"],["-111.6186142","40.7539907"],["-111.6194933","40.7540284"],["-111.6204899","40.7540339"],["-111.6213498","40.7539873"],["-111.6223033","40.7539027"],["-111.6233836","40.7537288"],["-111.6243865","40.7534975"],["-111.6269812","40.7527529"],["-111.6285628","40.7521389"],["-111.6304589","40.7513735"],["-111.6323965","40.7503539"],["-111.6343609","40.7492795"],["-111.6354831","40.7487265"],["-111.6363438","40.7483811"],["-111.637366","40.7480691"],["-111.6386411","40.7477903"],["-111.6452553","40.746775"],["-111.6464321","40.7465355"],["-111.6474321","40.7462809"],["-111.6484506","40.7458771"],["-111.6504886","40.7449871"],["-111.6514735","40.7446846"],["-111.6522683","40.7444887"],["-111.6542015","40.7442995"],["-111.6556491","40.744157"],["-111.6568303","40.7440189"],["-111.6583228","40.7437072"],["-111.6590423","40.7435117"],["-111.660025","40.7431937"],["-111.6609093","40.7428206"],["-111.6660931","40.7404259"],["-111.6681167","40.7395089"],["-111.6688711","40.7392989"],["-111.669622","40.7391862"],["-111.670442","40.7391118"],["-111.6715403","40.7391511"],["-111.6722537","40.7392865"],["-111.6728114","40.7394179"],["-111.6733291","40.7395917"],["-111.6739585","40.739849"],["-111.6747683","40.7403742"],["-111.6768111","40.7419874"],["-111.6774879","40.7424433"],["-111.6781847","40.742805"],["-111.6787597","40.7430456"],["-111.6793399","40.7432088"],["-111.6800784","40.7433747"],["-111.6809352","40.7434929"],["-111.6821497","40.743532"],["-111.6854512","40.7435296"],["-111.6865539","40.7435454"],["-111.687818","40.7437239"],["-111.6888741","40.7439746"],["-111.691757","40.7453808"],["-111.7008467","40.7499461"],["-111.7022225","40.7505018"],["-111.7031809","40.7507105"],["-111.7043966","40.7508084"],["-111.7093004","40.7506729"],["-111.7102694","40.7508236"],["-111.7113274","40.7511105"],["-111.7131385","40.7517704"],["-111.713916","40.7519693"],["-111.7144192","40.7520411"],["-111.7152505","40.7520704"],["-111.7160693","40.7520068"],["-111.7168194","40.7518267"],["-111.717712","40.7515335"],["-111.7186854","40.7510304"],["-111.7193757","40.7504594"],["-111.7206275","40.7492817"],["-111.7212051","40.7487739"],["-111.722395","40.7481358"],["-111.7292424","40.7449531"],["-111.73029","40.7444067"],["-111.7319552","40.7432908"],["-111.7324249","40.7430526"],["-111.7330672","40.74283"],["-111.7342421","40.7426286"],["-111.7380484","40.7422696"],["-111.7393497","40.742101"],["-111.7401861","40.7419048"],["-111.7411108","40.7414994"],["-111.7416963","40.7410489"],["-111.7423148","40.7404249"],["-111.7427283","40.7398093"],["-111.7432397","40.73843"],["-111.7436365","40.7378253"],["-111.7440909","40.7373261"],["-111.7448306","40.7368382"],["-111.7458105","40.7362186"],["-111.7465306","40.7356752"],["-111.7469452","40.7353179"],["-111.7472568","40.7349828"],["-111.7476122","40.7345363"],["-111.7479126","40.7342288"],["-111.748208","40.7339682"],["-111.7485207","40.7337494"],["-111.7488698","40.733611"],["-111.7500245","40.7332668"],["-111.7504518","40.733214"],["-111.7512671","40.7331654"],["-111.7520354","40.7331132"],["-111.752857","40.7329662"],["-111.7543219","40.7325774"],["-111.7557199","40.7323472"],["-111.7569607","40.7321547"],["-111.7575904","40.7320003"],["-111.7586107","40.7316209"],["-111.7589199","40.7314808"],["-111.7593344","40.7312022"],["-111.760137","40.7305826"],["-111.7605314","40.7303052"],["-111.7613649","40.7298521"],["-111.7624546","40.7293667"],["-111.7632133","40.7290956"],["-111.7644923","40.7287419"],["-111.7653525","40.7284882"],["-111.7659557","40.7282183"],["-111.766636","40.727821"],["-111.7679093","40.7266717"],["-111.7684919","40.7261802"],["-111.7692125","40.7258131"],["-111.7701904","40.7254844"],["-111.771375","40.7251149"],["-111.7723523","40.7246299"],["-111.7764523","40.7215491"],["-111.7769029","40.7212089"],["-111.7782644","40.7205069"],["-111.7790411","40.7201884"],["-111.7799353","40.719898"],["-111.7808703","40.7196278"],["-111.7814941","40.7194405"],["-111.781879","40.7192841"],["-111.7823558","40.7190139"],["-111.7831846","40.7184108"],["-111.7834447","40.7181473"],["-111.7838014","40.7175726"],["-111.7843867","40.7160805"],["-111.7846553","40.7155526"],["-111.7849714","40.7151016"],["-111.7853017","40.7147793"],["-111.7858344","40.7143412"],["-111.7868308","40.7136822"],["-111.7884378","40.7126943"],["-111.7890011","40.712423"],["-111.7894998","40.7122269"],["-111.7898389","40.7121333"],["-111.7902162","40.712047"],["-111.7906884","40.711979"],["-111.7912882","40.711939"],["-111.7927499","40.71191"],["-111.7930972","40.7118876"],["-111.7936989","40.7118034"],["-111.7943148","40.7116586"],["-111.7961454","40.7111831"],["-111.7967472","40.7110712"],["-111.7971591","40.7110405"],["-111.7975624","40.7110622"],["-111.7981567","40.7111538"],["-111.7984898","40.7112382"],["-111.8027316","40.7126368"],["-111.8048948","40.7135792"],["-111.805715","40.7138937"],["-111.8063964","40.7140852"],["-111.8070995","40.7142467"],["-111.8078335","40.7143811"],["-111.808655","40.7144669"],["-111.813947","40.7146936"],["-111.8145846","40.7146458"],["-111.8149658","40.7145615"],["-111.8154705","40.7144038"],["-111.8172088","40.7137606"],["-111.8181024","40.7134255"],["-111.8189946","40.7131796"],["-111.82027","40.7130062"],["-111.8207189","40.7129802"],["-111.8211123","40.7129765"],["-111.821645","40.7130037"],["-111.8221561","40.7130633"],["-111.8228615","40.7131867"],["-111.8307829","40.7152971"],["-111.8320531","40.7157185"],["-111.8327833","40.7160317"],["-111.8342273","40.7167307"],["-111.8348898","40.7170132"],["-111.8356591","40.7173033"],["-111.8364859","40.7175273"],["-111.8444181","40.7192385"],["-111.8456492","40.7194404"],["-111.8467848","40.7195647"],["-111.8479998","40.7196438"],["-111.8511567","40.719741"],["-111.8532143","40.7197771"],["-111.8567147","40.7197635"],["-111.8570813","40.719763"],["-111.8624081","40.7196331"],["-111.8643928","40.7195632"],["-111.8656509","40.7195174"],["-111.8674583","40.7193962"],["-111.8689827","40.7192185"],["-111.8736382","40.7185048"],["-111.8751104","40.7183821"],["-111.8765345","40.7183505"],["-111.87729","40.7183546"],["-111.8829398","40.7183495"],["-111.8836351","40.718354"],["-111.8876959","40.7183256"],["-111.8916386","40.7183378"],["-111.8982567","40.7183173"],["-111.9001422","40.7182657"],["-111.9007422","40.7182685"],["-111.9011665","40.7183238"],["-111.9016042","40.7184092"],["-111.901833","40.7184892"],["-111.9023954","40.7186856"],["-111.9027765","40.718918"],["-111.9031388","40.7192075"],["-111.9034837","40.7195342"],["-111.9037832","40.7199318"],["-111.903821","40.7199953"],["-111.9040027","40.7203081"],["-111.9040899","40.7205791"],["-111.90411","40.7206697"],["-111.9041284","40.720778"],["-111.90415","40.720943"],["-111.9041964","40.7218994"],["-111.9042047","40.7222259"],["-111.9042144","40.7226744"],["-111.9041758","40.7244902"],["-111.9041426","40.7251482"],["-111.9041498","40.7259184"],["-111.9043077","40.7284284"],["-111.9044862","40.7350127"],["-111.9044565","40.7364017"],["-111.9041986","40.7397283"],["-111.9040912","40.7410192"],["-111.9039323","40.7431885"],["-111.9039738","40.7437999"],["-111.9041411","40.7444604"],["-111.9043655","40.7450217"],["-111.904535","40.7453396"],["-111.9047044","40.745619"],["-111.9049548","40.7459536"],["-111.9052104","40.7462786"],["-111.905474","40.7465572"],["-111.9057634","40.7468345"],["-111.9082603","40.748876"],["-111.908749","40.7492736"],["-111.9090486","40.7495216"],["-111.9093593","40.7498272"],["-111.9099138","40.7504741"],["-111.9102807","40.7511068"],["-111.9104981","40.7516367"],["-111.9106133","40.7520684"],["-111.9106966","40.7524503"],["-111.9106831","40.7531523"],["-111.9107134","40.7539778"],["-111.9106805","40.754453"],["-111.9105611","40.7547947"],["-111.9103852","40.7550799"],["-111.9101056","40.7553905"],["-111.9098499","40.7556318"],["-111.9094623","40.7558809"],["-111.9092067","40.7559871"],["-111.9089404","40.7560876"],["-111.9085769","40.7561841"],["-111.9081609","40.7562419"],["-111.9076243","40.7563014"],["-111.9025967","40.7562831"],["-111.9024678","40.7562819"],["-111.9001268","40.7562745"],["-111.8998859","40.7562743"],["-111.8939571","40.7563164"],["-111.8939426","40.761737"],["-111.8911967","40.7617131"],["-111.8911953","40.7612503"],["-111.8911939","40.7608278"],["-111.8911939","40.7608201"],["-111.8911985","40.7607348"],["-111.8928879","40.7607141"],["-111.8939378","40.7607082"],["-111.8939512","40.7584871"],["-111.8968384","40.7584809"],["-111.8993937","40.7584631"],["-111.8994468","40.7584639"],["-111.8995993","40.7584631"],["-111.8996259","40.758463"],["-111.8997419","40.7584612"],["-111.8998036","40.758461"],["-111.8999354","40.7584601"],["-111.901085","40.75846"],["-111.9012566","40.7584591"],["-111.9018333","40.7584598"],["-111.9022611","40.7584591"],["-111.902765","40.7584591"],["-111.904292","40.758457"],["-111.9045638","40.7584569"],["-111.905101","40.758455"],["-111.9066761","40.7584643"],["-111.9076058","40.7584563"],["-111.9080118","40.7584286"],["-111.9085271","40.7583256"],["-111.9099858","40.7579608"],["-111.9104436","40.7578103"],["-111.9108955","40.7576362"],["-111.9110595","40.7575477"],["-111.9114704","40.7572712"],["-111.9116992","40.7570651"],["-111.9119767","40.7567263"],["-111.9121711","40.756357"],["-111.9122582","40.7560883"],["-111.912302","40.7557884"],["-111.9122876","40.7554804"],["-111.9121271","40.7549146"],["-111.9118133","40.7541805"],["-111.9110897","40.7524195"],["-111.9109794","40.7519766"],["-111.9108508","40.751566"],["-111.9104655","40.7506983"],["-111.9100014","40.7500393"],["-111.9093667","40.7493343"],["-111.906965","40.7473937"],["-111.9063594","40.7468948"],["-111.9060036","40.7466033"],["-111.905491","40.7461166"],["-111.9051247","40.745698"],["-111.9048013","40.7451988"],["-111.9045337","40.7446415"],["-111.9043379","40.744022"],["-111.9042528","40.7434783"],["-111.9042275","40.7427368"],["-111.9047548","40.7364493"],["-111.9048195","40.7348823"],["-111.9048179","40.7339084"],["-111.9047607","40.7308096"],["-111.9046556","40.7225589"],["-111.9047378","40.7192192"],["-111.9047281","40.7184118"],["-111.9047162","40.7178508"],["-111.9046568","40.7168453"],["-111.9044345","40.7141326"],["-111.9042186","40.7113907"],["-111.9040489","40.7093206"],["-111.9039804","40.7072973"],["-111.9039371","40.7058361"],["-111.9038424","40.7045914"],["-111.9037348","40.7037864"],["-111.9034846","40.7029757"],["-111.9027166","40.7009299"],["-111.9023704","40.7000043"],["-111.9022406","40.6996438"],["-111.9022108","40.6995433"],["-111.9021339","40.699235"],["-111.9020446","40.6988241"],["-111.9019886","40.6984789"],["-111.9019513","40.6981009"],["-111.901925","40.6976672"],["-111.9019316","40.6972446"],["-111.901952","40.6968282"],["-111.9020077","40.696416"],["-111.9020889","40.6959809"],["-111.9022413","40.6953476"],["-111.9025976","40.6943206"],["-111.9028935","40.6936069"],["-111.9031257","40.6928998"],["-111.9033194","40.6922375"],["-111.903428","40.6917015"],["-111.9034943","40.6910467"],["-111.903446","40.6900655"],["-111.9031301","40.6871374"],["-111.9031009","40.6868766"],["-111.9030959","40.6868282"],["-111.9030836","40.6867211"],["-111.9026756","40.6830729"],["-111.9022938","40.67973"],["-111.9016961","40.6750052"],["-111.9016667","40.6747059"],["-111.9016378","40.6739367"],["-111.9016234","40.6722252"],["-111.9016091","40.6699873"],["-111.9015976","40.6690494"],["-111.901543","40.6606813"],["-111.9014874","40.660181"],["-111.9015566","40.658797"],["-111.9016779","40.6570415"],["-111.90192","40.6543903"],["-111.901929","40.6543033"],["-111.9032806","40.6414062"],["-111.9033946","40.6407487"],["-111.9035973","40.6399644"],["-111.9042876","40.6381835"],["-111.9049255","40.636503"],["-111.9050924","40.6359074"],["-111.9051822","40.6352107"],["-111.9051934","40.6349902"],["-111.9052064","40.6346059"],["-111.9052024","40.6344224"],["-111.9051759","40.6339454"],["-111.9050908","40.6332617"],["-111.9049626","40.6326598"],["-111.9047385","40.6319565"],["-111.9045889","40.6315833"],["-111.9044141","40.6311606"],["-111.9042206","40.6306981"],["-111.9040765","40.6303578"],["-111.9039824","40.6301104"],["-111.9038892","40.6298572"],["-111.9036232","40.629133"],["-111.9033931","40.62842"],["-111.9032878","40.6280046"],["-111.9031385","40.6272325"],["-111.9030401","40.6264649"],["-111.9030436","40.6255378"],["-111.9031181","40.6245916"],["-111.903351","40.6235064"],["-111.9052796","40.6177427"],["-111.9058243","40.6160828"],["-111.905987","40.6153974"],["-111.9060889","40.6148855"],["-111.906152","40.6144834"],["-111.9061947","40.6141304"],["-111.9062303","40.6136863"],["-111.9062515","40.6132168"],["-111.9062561","40.6127406"],["-111.9062388","40.6122397"],["-111.9062004","40.6117454"],["-111.9061498","40.6112331"],["-111.9058841","40.6095586"],["-111.9029413","40.5943393"],["-111.9022529","40.59232"],["-111.9014827","40.5906924"],["-111.9010016","40.5895547"],["-111.9006471","40.5884585"],["-111.9004436","40.5876362"],["-111.9003011","40.5865162"],["-111.9002628","40.5860048"],["-111.9002323","40.5846259"],["-111.9002827","40.5810293"],["-111.90028","40.5719483"],["-111.9000619","40.568869"],["-111.899802","40.566659"],["-111.8994137","40.5637049"],["-111.8989846","40.5615927"],["-111.8987595","40.560533"],["-111.8981487","40.5578434"],["-111.8978615","40.5565779"],["-111.8970833","40.5532944"],["-111.8952513","40.5456378"],["-111.8937527","40.5390154"],["-111.8932005","40.5369095"],["-111.8927235","40.5350896"],["-111.8922788","40.5331988"],["-111.8915937","40.5297407"],["-111.8914138","40.5283046"],["-111.8913262","40.5272896"],["-111.8913527","40.5241532"],["-111.8913562","40.5077345"],["-111.8913324","40.5062456"],["-111.8913028","40.4989026"],["-111.8912867","40.4936671"],["-111.8913097","40.4932951"],["-111.891351","40.4930238"],["-111.8914609","40.4925199"],["-111.8915254","40.4923122"],["-111.8916143","40.4920843"],["-111.8917169","40.4918377"],["-111.8918258","40.4915995"],["-111.8918992","40.4914555"],["-111.8919642","40.4913375"],["-111.8920572","40.4911881"],["-111.8921782","40.491004"],["-111.8923925","40.4907217"],["-111.8926774","40.4903716"],["-111.8930826","40.4899488"],["-111.895005","40.487989"],["-111.8993832","40.4837"],["-111.9006217","40.4823643"],["-111.9025324","40.4801071"],["-111.9127118","40.4656547"],["-111.9134892","40.4642457"],["-111.9139771","40.4630646"],["-111.9143492","40.4618149"],["-111.9146203","40.46051"],["-111.9147125","40.4589156"],["-111.9146162","40.4574458"],["-111.9140269","40.4541897"],["-111.9135157","40.4515785"],["-111.9134272","40.451256"],["-111.9133448","40.4510008"],["-111.9132391","40.4507176"],["-111.9130723","40.4503204"],["-111.9128853","40.449956"],["-111.9126557","40.4495628"],["-111.9124492","40.4492712"],["-111.9116556","40.4484193"],["-111.9110273","40.4478199"],["-111.9091041","40.4464251"],["-111.9004451","40.4403475"],["-111.8989693","40.4391745"],["-111.8977455","40.4380493"],["-111.8959101","40.4362482"],["-111.8950523","40.43543"],["-111.8933303","40.4336648"],["-111.8927703","40.4330559"],["-111.8922523","40.4324743"],["-111.8909159","40.4309663"],["-111.8906424","40.4306553"],["-111.889724","40.4297625"],["-111.8859567","40.4267556"],["-111.8850271","40.4260195"],["-111.8830789","40.4243825"],["-111.8828996","40.4242258"],["-111.8828658","40.4241956"],["-111.882738","40.4240844"],["-111.8812164","40.4227566"],["-111.8796023","40.4214483"],["-111.8781528","40.4202917"],["-111.8770329","40.4193731"],["-111.8744491","40.4170684"],["-111.873486","40.4162621"],["-111.872362","40.4153942"],["-111.871585","40.4148751"],["-111.8706955","40.4143364"],["-111.8687526","40.4132719"],["-111.8677905","40.4127612"],["-111.8669448","40.4123049"],["-111.8655947","40.411501"],["-111.848178","40.3998842"],["-111.8461046","40.3986076"],["-111.8433169","40.3970821"],["-111.8392405","40.3949366"],["-111.8384816","40.3945158"],["-111.8379073","40.3941497"],["-111.8373907","40.3937874"],["-111.8369617","40.3934492"],["-111.836531","40.3930173"],["-111.836215","40.3926899"],["-111.8360905","40.3925459"],["-111.8359705","40.3924022"],["-111.8358349","40.3922371"],["-111.8357031","40.392069"],["-111.835488","40.3917787"],["-111.8353576","40.391587"],["-111.8351999","40.3913386"],["-111.8350397","40.391064"],["-111.8348565","40.3907134"],["-111.8333678","40.3873778"],["-111.8331735","40.3869396"],["-111.8330485","40.3866912"],["-111.8329038","40.3864283"],["-111.8327735","40.3862098"],["-111.8326307","40.3859887"],["-111.8324652","40.385751"],["-111.8322972","40.3855235"],["-111.8320898","40.3852665"],["-111.8318725","40.385014"],["-111.8316385","40.3847573"],["-111.8314276","40.3845424"],["-111.8311596","40.384288"],["-111.8309256","40.3840795"],["-111.8307029","40.3838904"],["-111.8302731","40.3835581"],["-111.829992","40.3833578"],["-111.8296969","40.383159"],["-111.8294021","40.3829742"],["-111.8180524","40.3762607"],["-111.8177565","40.376099"],["-111.8175105","40.3759728"],["-111.8170784","40.375766"],["-111.8163961","40.3754693"],["-111.8159313","40.3752911"],["-111.8151115","40.375018"],["-111.8052483","40.3722922"],["-111.8050538","40.3722329"],["-111.804425","40.3720231"],["-111.8038169","40.3717985"],["-111.8035351","40.3716841"],["-111.8029993","40.3714539"],["-111.8027412","40.3713353"],["-111.8025118","40.3712241"],["-111.8020309","40.3709781"],["-111.8014812","40.3706712"],["-111.8012151","40.3705116"],["-111.7308546","40.3253848"],["-111.7304533","40.3251197"],["-111.7299882","40.324784"],["-111.7297952","40.3246297"],["-111.7294366","40.3243282"],["-111.729248","40.3241585"],["-111.7290016","40.3239229"],["-111.728727","40.3236442"],["-111.7282669","40.3231308"],["-111.7280144","40.3228155"],["-111.7277741","40.3224825"],["-111.7275968","40.3222204"],["-111.7274347","40.3219672"],["-111.7272819","40.3217063"],["-111.727148","40.3214556"],["-111.7270216","40.3212023"],["-111.7268865","40.3209099"],["-111.7267585","40.3206032"],["-111.7266318","40.3202509"],["-111.7265153","40.319889"],["-111.7264384","40.3196078"],["-111.7263831","40.3193641"],["-111.7263439","40.3191673"],["-111.726303","40.3189316"],["-111.7262708","40.3186924"],["-111.726239","40.3183962"],["-111.726211","40.3178046"],["-111.7256838","40.285796"],["-111.7256681","40.2855808"],["-111.725632","40.2852226"],["-111.7256027","40.2850213"],["-111.7255238","40.284591"],["-111.7254755","40.2843679"],["-111.7254074","40.2841073"],["-111.7253191","40.2838037"],["-111.7252366","40.2835506"],["-111.7251387","40.2832878"],["-111.7250319","40.2830201"],["-111.7249089","40.2827417"],["-111.7247971","40.2825097"],["-111.724542","40.2820324"],["-111.7243956","40.2817842"],["-111.7242424","40.2815442"],["-111.7240834","40.2813055"],["-111.7239535","40.2811231"],["-111.7238017","40.2809198"],["-111.723494","40.2805371"],["-111.7090332","40.2636292"],["-111.7084965","40.2631209"],["-111.6972816","40.2532071"],["-111.6970706","40.2530014"],["-111.6969407","40.2528651"],["-111.696826","40.2527391"],["-111.6966995","40.2525942"],["-111.696587","40.2524566"],["-111.6964857","40.2523229"],["-111.6963765","40.2521702"],["-111.696284","40.2520301"],["-111.6962037","40.2519005"],["-111.6960353","40.2516037"],["-111.6959387","40.2514113"],["-111.695863","40.2512405"],["-111.6957833","40.2510484"],["-111.6957319","40.2509059"],["-111.6956696","40.2507229"],["-111.6956163","40.250533"],["-111.6955643","40.2503198"],["-111.6955211","40.2500931"],["-111.695492","40.2498802"],["-111.6954677","40.2496349"],["-111.6954554","40.2493535"],["-111.6954231","40.2459079"],["-111.6953934","40.2455716"],["-111.6953607","40.2453579"],["-111.6953262","40.2451773"],["-111.6952652","40.2449233"],["-111.6952295","40.2448033"],["-111.6951906","40.244686"],["-111.6950973","40.2444365"],["-111.6950237","40.2442713"],["-111.6948785","40.2439786"],["-111.6947571","40.2437614"],["-111.6946365","40.2435727"],["-111.6944879","40.2433619"],["-111.6943318","40.2431617"],["-111.6941593","40.2429578"],["-111.693897","40.2426822"],["-111.6915375","40.2404602"],["-111.6842683","40.2331335"],["-111.6766368","40.2253782"],["-111.6758548","40.2246183"],["-111.6751666","40.2239749"],["-111.6743807","40.2232769"],["-111.6728283","40.2220164"],["-111.6672593","40.2175565"],["-111.6669444","40.2172843"],["-111.6666912","40.2170515"],["-111.6662434","40.2166065"],["-111.6658761","40.2161927"],["-111.6570824","40.2052694"],["-111.6546657","40.2023958"],["-111.6494701","40.1960113"],["-111.649073","40.1954702"],["-111.6489497","40.1952921"],["-111.6487798","40.1950335"],["-111.6485383","40.1946477"],["-111.6482591","40.1941613"],["-111.6481585","40.1939768"],["-111.6479525","40.193567"],["-111.6478175","40.1932811"],["-111.6476963","40.1930084"],["-111.6474756","40.1924728"],["-111.6473569","40.1921373"],["-111.6472332","40.1917641"],["-111.6471432","40.1914611"],["-111.6470443","40.1910944"],["-111.6469604","40.1907437"],["-111.6468493","40.1901836"],["-111.6467621","40.1896068"],["-111.6467071","40.1890962"],["-111.6466794","40.1886219"],["-111.6469979","40.1365849"],["-111.6473764","40.1324378"],["-111.6474074","40.1321158"],["-111.6474191","40.1320155"],["-111.6474329","40.1319223"],["-111.6474543","40.1318204"],["-111.6474798","40.1317178"],["-111.6475144","40.1316203"],["-111.6475657","40.131502"],["-111.6475914","40.1314492"],["-111.6476714","40.131305"],["-111.6477367","40.1312093"],["-111.6477938","40.1311318"],["-111.6478567","40.1310547"],["-111.6478858","40.1310218"],["-111.6479545","40.1309491"],["-111.6479925","40.1309109"],["-111.6480863","40.1308216"],["-111.6482045","40.1307029"],["-111.6487016","40.1303185"],["-111.6491562","40.1299609"],["-111.649255","40.1298707"],["-111.6493107","40.1298039"],["-111.6493629","40.1297147"],["-111.6493904","40.1296416"],["-111.6494063","40.1295633"],["-111.6494092","40.1294479"],["-111.6493994","40.1293768"],["-111.6493754","40.1293068"],["-111.6493125","40.1291794"],["-111.6492531","40.1290669"],["-111.6491375","40.1288489"],["-111.649075","40.1287378"],["-111.6483954","40.1274974"],["-111.6482735","40.1272866"],["-111.6480281","40.126915"],["-111.6479358","40.1267875"],["-111.647828","40.1266479"],["-111.6475487","40.1263129"],["-111.6471692","40.1259278"],["-111.6469703","40.1257405"],["-111.6467136","40.1255232"],["-111.6464","40.1253634"],["-111.6440974","40.1235412"],["-111.6437759","40.1232906"],["-111.6436915","40.1232356"],["-111.6434991","40.1231023"],["-111.6403133","40.1206313"],["-111.6399876","40.1203715"],["-111.6398604","40.1202674"],["-111.6389883","40.1195596"],["-111.6385797","40.119206"],["-111.6383612","40.1189999"],["-111.6381027","40.1187484"],["-111.637881","40.1185128"],["-111.6375906","40.1181873"],["-111.6373113","40.1178403"],["-111.6370577","40.1175051"],["-111.6368115","40.1171356"],["-111.6365711","40.1167447"],["-111.6346914","40.1134447"],["-111.6344921","40.1130908"],["-111.633816","40.1118919"],["-111.6337556","40.1117918"],["-111.6336278","40.1115935"],["-111.6335638","40.1114979"],["-111.6334305","40.1113134"],["-111.6333558","40.1112159"],["-111.6332815","40.1111233"],["-111.6330496","40.1108502"],["-111.6328699","40.1106574"],["-111.6327025","40.1104866"],["-111.6324222","40.1102341"],["-111.6321496","40.1100122"],["-111.6318985","40.109817"],["-111.6316866","40.1096743"],["-111.6315042","40.1095599"],["-111.6312202","40.1093977"],["-111.6126611","40.0994588"],["-111.6125198","40.0993838"],["-111.6123256","40.0992771"],["-111.6122708","40.0992473"],["-111.6118735","40.0990355"],["-111.5955311","40.0902708"],["-111.5951282","40.0899985"],["-111.5947991","40.0897433"],["-111.5946073","40.0895738"],["-111.5944097","40.0893794"],["-111.5942229","40.0891766"],["-111.5940215","40.0889257"],["-111.5938456","40.0886891"],["-111.593721","40.0885033"],["-111.5936204","40.0883368"],["-111.5935263","40.0881617"],["-111.5931194","40.0870457"],["-111.5929474","40.0865625"],["-111.5927023","40.0858635"],["-111.5923276","40.084807"],["-111.5922576","40.0846313"],["-111.5921647","40.0844493"],["-111.5920341","40.0842254"],["-111.5919287","40.084071"],["-111.5918285","40.08394"],["-111.591703","40.0837934"],["-111.591541","40.0836264"],["-111.5913452","40.0834486"],["-111.5911757","40.0833217"],["-111.5910383","40.0832289"],["-111.5908789","40.0831222"],["-111.5906993","40.0830241"],["-111.5904944","40.0829174"],["-111.5903233","40.0828448"],["-111.5901478","40.0827719"],["-111.5899266","40.0826957"],["-111.5896967","40.0826216"],["-111.5894838","40.0825691"],["-111.5879723","40.0822631"],["-111.5877145","40.0821974"],["-111.5874737","40.0821161"],["-111.5870687","40.0819418"],["-111.5866744","40.0817381"],["-111.5864146","40.0815731"],["-111.5862064","40.0814264"],["-111.5859252","40.0811482"],["-111.5856184","40.0808079"],["-111.5762659","40.0707019"],["-111.5759992","40.0703673"],["-111.5757716","40.0700755"],["-111.5754124","40.0695235"],["-111.5752033","40.0691714"],["-111.5749902","40.0687738"],["-111.5748138","40.0684085"],["-111.5741637","40.0668993"],["-111.5740561","40.0666657"],["-111.5739788","40.0665132"],["-111.573896","40.0663622"],["-111.5738188","40.0662317"],["-111.5737182","40.066091"],["-111.5734786","40.0657955"],["-111.5732226","40.0655317"],["-111.5731089","40.0654283"],["-111.5729869","40.0653279"],["-111.5728279","40.0652056"],["-111.5726439","40.0650752"],["-111.5715914","40.0643832"],["-111.5711595","40.0641005"],["-111.5706807","40.0637838"],["-111.5704949","40.0636533"],["-111.5703142","40.0635186"],["-111.5702074","40.0634266"],["-111.5701253","40.063356"],["-111.57003","40.0632618"],["-111.5699121","40.0631392"],["-111.569796","40.0630092"],["-111.5696834","40.0628729"],["-111.5696027","40.0627682"],["-111.5694583","40.0625576"],["-111.5692809","40.0622543"],["-111.5690682","40.0618769"],["-111.5688039","40.0614454"],["-111.5685266","40.0610862"],["-111.5682738","40.0607936"],["-111.5680803","40.0606018"],["-111.5678337","40.060386"],["-111.567351","40.0600492"],["-111.5669475","40.05983"],["-111.56639","40.0595934"],["-111.564267","40.0588017"],["-111.5640695","40.0587217"],["-111.563414","40.0583866"],["-111.5630566","40.0581575"],["-111.5627283","40.0578943"],["-111.5623334","40.0575481"],["-111.5620151","40.0572763"],["-111.5616382","40.0569645"],["-111.5613231","40.056745"],["-111.5609137","40.0565081"],["-111.5604345","40.0562641"],["-111.5598826","40.0560668"],["-111.5590488","40.0558698"],["-111.5581848","40.0557166"],["-111.5571606","40.0555488"],["-111.5513951","40.0545724"],["-111.5511566","40.0545184"],["-111.5508937","40.0544477"],["-111.5506308","40.0543688"],["-111.5503903","40.0542847"],["-111.550158","40.0541879"],["-111.5497374","40.0539808"],["-111.5495023","40.0538544"],["-111.5493066","40.0537315"],["-111.5490903","40.0535831"],["-111.5488635","40.0534084"],["-111.5486715","40.0532411"],["-111.5485147","40.0530917"],["-111.5483906","40.0529572"],["-111.5479971","40.0524884"],["-111.5478745","40.0522672"],["-111.5476635","40.0518354"],["-111.5475591","40.0515527"],["-111.5474916","40.0512559"],["-111.5474355","40.0509415"],["-111.5474007","40.0506529"],["-111.5474106","40.0503468"],["-111.5474696","40.0499943"],["-111.5475527","40.0496305"],["-111.5480032","40.0484013"],["-111.5481241","40.0480086"],["-111.5482024","40.0476613"],["-111.5482297","40.0473521"],["-111.548241","40.0470452"],["-111.5482237","40.0466483"],["-111.5481423","40.0462709"],["-111.5480176","40.0458703"],["-111.5478482","40.0455077"],["-111.5476622","40.0451511"],["-111.5471976","40.0445828"],["-111.546708","40.044033"],["-111.5460355","40.0433472"],["-111.5455306","40.0428941"],["-111.5452495","40.0426914"],["-111.5449661","40.0425068"],["-111.544723","40.0423541"],["-111.544361","40.0421479"],["-111.5438493","40.0419035"],["-111.5436082","40.0417884"],["-111.5379424","40.039423"],["-111.5372034","40.0391225"],["-111.536675","40.0389186"],["-111.536129","40.038718"],["-111.5355658","40.0385236"],["-111.5349346","40.0383161"],["-111.5235946","40.0348822"],["-111.522888","40.0346917"],["-111.5221303","40.0345511"],["-111.5217827","40.034497"],["-111.521012","40.0344109"],["-111.5194248","40.0342423"],["-111.5171064","40.0340035"],["-111.5168988","40.03397"],["-111.5165726","40.0338955"],["-111.5161451","40.033776"],["-111.5159173","40.0336908"],["-111.5157899","40.0336396"],["-111.5154972","40.0335146"],["-111.5146797","40.0330493"],["-111.5143815","40.0328289"],["-111.5141538","40.0326472"],["-111.5139129","40.0324427"],["-111.512691","40.0314082"],["-111.5118031","40.0307378"],["-111.5113496","40.0304645"],["-111.5103661","40.0299975"],["-111.5098426","40.0297823"],["-111.5092946","40.0296014"],["-111.5087825","40.0294667"],["-111.5078434","40.0292976"],["-111.505471","40.0289353"],["-111.5052505","40.028902"],["-111.5049427","40.0288497"],["-111.5047669","40.028815"],["-111.5046118","40.0287778"],["-111.5043847","40.0287165"],["-111.5041639","40.028653"],["-111.503856","40.0285525"],["-111.5033775","40.0283621"],["-111.5029108","40.0281478"],["-111.5025167","40.0279442"],["-111.5021365","40.0277274"],["-111.5020751","40.0276826"],["-111.5015647","40.0272379"],["-111.5010247","40.0267314"],["-111.5007733","40.0264531"],["-111.5005425","40.0261111"],["-111.5003122","40.0257362"],["-111.5000828","40.0252377"],["-111.4999094","40.0247964"],["-111.4996852","40.024197"],["-111.4991862","40.0229619"],["-111.498961","40.0225775"],["-111.4985646","40.0220789"],["-111.4979401","40.0213642"],["-111.4974683","40.0208194"],["-111.4972072","40.0204868"],["-111.4967751","40.019775"],["-111.4958781","40.0181374"],["-111.4955834","40.0176906"],["-111.4953448","40.0173965"],["-111.4925756","40.0147006"],["-111.492255","40.0142979"],["-111.4919104","40.0136311"],["-111.4917801","40.0132701"],["-111.4917101","40.0128798"],["-111.4917332","40.0118431"],["-111.4917821","40.0104015"],["-111.4919179","40.0058933"],["-111.4918919","40.0054447"],["-111.4918069","40.0049822"],["-111.4916886","40.004536"],["-111.4915127","40.0041076"],["-111.4912506","40.0036846"],["-111.4910133","40.003327"],["-111.490714","40.0029898"],["-111.490396","40.0026673"],["-111.4900263","40.0023639"],["-111.4897226","40.0021644"],["-111.4894809","40.0020141"],["-111.4891607","40.0018499"],["-111.4887684","40.0016586"],["-111.4881196","40.0014415"],["-111.4875813","40.0012783"],["-111.4871722","40.0011693"],["-111.4868466","40.0011198"],["-111.4837713","40.0007614"],["-111.4833223","40.0006952"],["-111.4829066","40.0006073"],["-111.4823793","40.0004628"],["-111.4812792","40.0000835"],["-111.4806453","39.9998361"],["-111.4785362","39.9988431"],["-111.4771587","39.9981679"],["-111.4766129","39.9979305"],["-111.4763444","39.9977885"],["-111.475436","39.9973589"],["-111.4750696","39.9971809"],["-111.4733421","39.9963892"],["-111.4729481","39.9962425"],["-111.4725838","39.9961158"],["-111.4722081","39.9960141"],["-111.4718503","39.9959285"],["-111.4712538","39.9958021"],["-111.4709927","39.995763"],["-111.4705388","39.9957121"],["-111.4693243","39.9955824"],["-111.4687263","39.9955178"],["-111.4650052","39.9951293"],["-111.4645133","39.9950885"],["-111.4641504","39.9950738"],["-111.4636204","39.9950709"],["-111.4632235","39.995088"],["-111.460055","39.9954262"],["-111.459648","39.9954516"],["-111.4590131","39.995455"],["-111.458673","39.9954453"],["-111.4581592","39.9954056"],["-111.4579581","39.9953835"],["-111.4577079","39.9953481"],["-111.4573951","39.9952969"],["-111.4562094","39.995079"],["-111.4557471","39.9949987"],["-111.4553695","39.994941"],["-111.4546324","39.9948734"],["-111.4544379","39.9948621"],["-111.4541498","39.9948553"],["-111.4538425","39.9948545"],["-111.4535176","39.994861"],["-111.4530326","39.9948852"],["-111.452784","39.9949087"],["-111.452519","39.9949413"],["-111.4521815","39.9949909"],["-111.4517918","39.9950548"],["-111.4514652","39.9951208"],["-111.4509386","39.9952546"],["-111.4493491","39.9957795"],["-111.4486584","39.9959961"],["-111.4483474","39.9960768"],["-111.448014","39.9961557"],["-111.4471948","39.9963078"],["-111.4468915","39.996351"],["-111.4466114","39.9963852"],["-111.446019","39.9964337"],["-111.4457713","39.9964478"],["-111.4454974","39.996458"],["-111.445026","39.9964591"],["-111.4447005","39.9964475"],["-111.4443638","39.9964296"],["-111.4439891","39.9963999"],["-111.4435151","39.9963401"],["-111.440239","39.9958647"],["-111.4398783","39.9958273"],["-111.4395902","39.9958033"],["-111.4392759","39.9957873"],["-111.4390097","39.9957824"],["-111.4386854","39.9957848"],["-111.4383212","39.9957986"],["-111.4336456","39.9960279"],["-111.4310944","39.9960095"],["-111.4304933","39.996037"],["-111.4301074","39.9960617"],["-111.4296833","39.9961254"],["-111.4281385","39.9963432"],["-111.4265164","39.9965809"],["-111.4232705","39.9970128"],["-111.4221508","39.9971252"],["-111.4210745","39.9972241"],["-111.4189159","39.9974136"],["-111.4178983","39.9974946"],["-111.4174134","39.9975106"],["-111.4169241","39.9975122"],["-111.4162801","39.9974889"],["-111.4053815","39.9967502"],["-111.4049651","39.9966977"],["-111.4046425","39.9966286"],["-111.4044118","39.9965534"],["-111.404177","39.9964695"],["-111.4039509","39.9963772"],["-111.4036945","39.9962491"],["-111.4034054","39.9960807"],["-111.4031817","39.995936"],["-111.4029887","39.9957792"],["-111.4027541","39.9955732"],["-111.4021747","39.9949833"],["-111.4017948","39.9946536"],["-111.4015003","39.9944372"],["-111.4012347","39.9942746"],["-111.4009263","39.9941137"],["-111.4005663","39.9939582"],["-111.3967879","39.9923794"],["-111.3963362","39.9921973"],["-111.3959615","39.9920685"],["-111.3956257","39.9919698"],["-111.3953143","39.9918957"],["-111.3948453","39.9918241"],["-111.3943806","39.9917939"],["-111.3917254","39.9917104"],["-111.3895736","39.9919208"],["-111.3888537","39.9919403"],["-111.3885616","39.99193"],["-111.3882529","39.9919016"],["-111.3878573","39.9918356"],["-111.3864623","39.9915534"],["-111.3858811","39.9914621"],["-111.38532","39.9913921"],["-111.3844937","39.9913501"],["-111.3795095","39.9911751"],["-111.3788771","39.9911419"],["-111.3784057","39.9910659"],["-111.377945","39.9909505"],["-111.3775496","39.9908167"],["-111.3772154","39.9906767"],["-111.3768616","39.9905"],["-111.3764669","39.9902596"],["-111.3758099","39.9898287"],["-111.3754283","39.9895897"],["-111.3751961","39.9894655"],["-111.3749504","39.9893568"],["-111.3746423","39.9892601"],["-111.3744058","39.9892093"],["-111.3741414","39.9891762"],["-111.3738488","39.9891711"],["-111.3735225","39.9892013"],["-111.3731305","39.9892737"],["-111.3727442","39.9893536"],["-111.3721028","39.9894687"],["-111.3717803","39.989486"],["-111.3714713","39.9894755"],["-111.371148","39.9894397"],["-111.3708498","39.9893758"],["-111.3704373","39.9892492"],["-111.3698859","39.9890594"],["-111.3692584","39.988823"],["-111.3686021","39.9885676"],["-111.3678178","39.9882647"],["-111.3674567","39.9880948"],["-111.3671634","39.9879112"],["-111.3669037","39.9877084"],["-111.3664819","39.987352"],["-111.3659816","39.9869292"],["-111.3657135","39.9867339"],["-111.3654787","39.9865905"],["-111.3651925","39.9864528"],["-111.3609476","39.984735"],["-111.3603102","39.984427"],["-111.3599704","39.9842398"],["-111.3596469","39.9840222"],["-111.3584085","39.9830463"],["-111.357414","39.9822953"],["-111.3560194","39.9815156"],["-111.3523348","39.9796272"],["-111.3517979","39.9793544"],["-111.3515468","39.979229"],["-111.3509026","39.978928"],["-111.3502532","39.9786333"],["-111.3490834","39.9781259"],["-111.3438965","39.9759872"],["-111.3420553","39.9752454"],["-111.3377634","39.973525"],["-111.3288685","39.9698449"],["-111.3280658","39.9695095"],["-111.3237216","39.9676403"],["-111.3232823","39.9674243"],["-111.3223938","39.9669525"],["-111.3216947","39.9665381"],["-111.3209519","39.966093"],["-111.3204235","39.9658136"],["-111.319868","39.9655937"],["-111.319402","39.9654658"],["-111.3187752","39.965329"],["-111.3181524","39.9652628"],["-111.3175767","39.9652511"],["-111.3172357","39.9652687"],["-111.3168461","39.9653155"],["-111.3161912","39.9654321"],["-111.3134735","39.9659543"],["-111.3130841","39.9660114"],["-111.3126318","39.9660594"],["-111.3121534","39.9660687"],["-111.3117074","39.9660608"],["-111.3113987","39.9660319"],["-111.311112","39.9659959"],["-111.3108793","39.9659537"],["-111.3106154","39.965897"],["-111.3102581","39.9658039"],["-111.309954","39.9657166"],["-111.3097214","39.9656355"],["-111.3094505","39.9655241"],["-111.3091937","39.9654021"],["-111.3086259","39.9650696"],["-111.3082439","39.9647953"],["-111.3079059","39.9645131"],["-111.3068174","39.9635511"],["-111.3061807","39.9629597"],["-111.3060947","39.9628741"],["-111.3059815","39.9627533"],["-111.3056404","39.9623787"],["-111.3055363","39.9622555"],["-111.3051859","39.9617675"],["-111.3035737","39.9594096"],["-111.3034167","39.9592063"],["-111.3029566","39.9586653"],["-111.3024134","39.9580515"],["-111.3020505","39.9577405"],["-111.3017245","39.9574763"],["-111.3012268","39.9570946"],["-111.2991076","39.9556744"],["-111.2984768","39.9553142"],["-111.2978669","39.9550466"],["-111.2963295","39.9545061"],["-111.2902907","39.9524878"],["-111.2898295","39.9523598"],["-111.2893216","39.9522292"],["-111.2889161","39.952156"],["-111.2884299","39.9520841"],["-111.2878939","39.9520317"],["-111.2817065","39.9517396"],["-111.2805909","39.9516903"],["-111.2786121","39.9517066"],["-111.2763684","39.9517421"],["-111.2739426","39.9517916"],["-111.2735671","39.9518012"],["-111.2731431","39.9518265"],["-111.2726126","39.951888"],["-111.2719687","39.9520246"],["-111.2713509","39.9522374"],["-111.270937","39.9524243"],["-111.2704647","39.9526985"],["-111.2689607","39.9537085"],["-111.2684903","39.9539499"],["-111.2681363","39.9540881"],["-111.2678545","39.9541755"],["-111.2675039","39.9542487"],["-111.2669604","39.954321"],["-111.266519","39.9543345"],["-111.2661417","39.9543208"],["-111.2657354","39.9542648"],["-111.2650955","39.9541239"],["-111.2635077","39.9537115"],["-111.2628287","39.9535428"],["-111.2623035","39.953466"],["-111.2618845","39.953431"],["-111.2614764","39.9534221"],["-111.2610878","39.9534432"],["-111.2606549","39.9534853"],["-111.2599462","39.9536307"],["-111.2500103","39.9566574"],["-111.2498642","39.9566479"],["-111.2496047","39.9567131"],["-111.2493553","39.956766"],["-111.2490737","39.9568134"],["-111.2487698","39.9568512"],["-111.2485045","39.9568743"],["-111.2481911","39.9568886"],["-111.2478895","39.956893"],["-111.2447961","39.956855"],["-111.2444297","39.9568421"],["-111.2440934","39.9568192"],["-111.2437976","39.9567897"],["-111.2435292","39.9567519"],["-111.2432366","39.956697"],["-111.2429016","39.9566174"],["-111.2425891","39.9565272"],["-111.2422389","39.9564117"],["-111.2420595","39.9563418"],["-111.2418731","39.956264"],["-111.2416581","39.9561684"],["-111.2405465","39.9555888"],["-111.2401225","39.9553765"],["-111.2397645","39.9552159"],["-111.2394659","39.9551024"],["-111.2391465","39.9549962"],["-111.2388554","39.9549159"],["-111.2385763","39.9548496"],["-111.2382531","39.9547889"],["-111.2378816","39.9547319"],["-111.2375924","39.9547011"],["-111.2373373","39.9546833"],["-111.2370856","39.9546707"],["-111.2365167","39.9546644"],["-111.2354049","39.9546574"],["-111.2343943","39.9546496"],["-111.234213","39.9546781"],["-111.2334836","39.9546561"],["-111.2327887","39.9546026"],["-111.2322628","39.9545537"],["-111.2317529","39.9544973"],["-111.2312476","39.9544233"],["-111.2306818","39.9543225"],["-111.2299212","39.954165"],["-111.2292602","39.9540022"],["-111.22871","39.9538479"],["-111.2281347","39.953661"],["-111.2272635","39.9533473"],["-111.2237942","39.9519475"],["-111.2216124","39.9510744"],["-111.2204651","39.9506423"],["-111.2180278","39.9496941"],["-111.2145683","39.9482301"],["-111.2139118","39.9479633"],["-111.2134503","39.9478035"],["-111.2128724","39.9476437"],["-111.2121761","39.9474785"],["-111.2078292","39.9465309"],["-111.2074733","39.9464423"],["-111.2072402","39.946376"],["-111.2069883","39.9462943"],["-111.206554","39.946132"],["-111.2060995","39.9459434"],["-111.2056852","39.9457269"],["-111.2053561","39.9455364"],["-111.2050867","39.9453536"],["-111.2046394","39.9450246"],["-111.2011685","39.9423277"],["-111.200811","39.941995"],["-111.2005275","39.9416921"],["-111.2000494","39.9410945"],["-111.1997971","39.9407262"],["-111.199547","39.940239"],["-111.1992728","39.9395462"],["-111.199109","39.9389216"],["-111.1989981","39.9383802"],["-111.1989626","39.9378791"],["-111.1989593","39.9375043"],["-111.1989808","39.937246"],["-111.1990029","39.9370295"],["-111.1990371","39.9367769"],["-111.199103","39.9364389"],["-111.1991959","39.9360739"],["-111.1993237","39.9357067"],["-111.1994533","39.9353691"],["-111.1997364","39.9346772"],["-111.1998602","39.9343591"],["-111.1999196","39.9341739"],["-111.1999852","39.9338915"],["-111.2000343","39.9334707"],["-111.200018","39.9331041"],["-111.1999887","39.9328683"],["-111.1999438","39.9326708"],["-111.1999313","39.9326223"],["-111.1998599","39.9323983"],["-111.1997506","39.93214"],["-111.1996381","39.9319128"],["-111.199276","39.9314102"],["-111.1989415","39.9310479"],["-111.1986012","39.9307684"],["-111.1980742","39.9304163"],["-111.1975807","39.9301823"],["-111.1970742","39.9299823"],["-111.1965917","39.9298574"],["-111.1955033","39.9297038"],["-111.1874619","39.9289448"],["-111.1861173","39.9288533"],["-111.1848422","39.9288483"],["-111.1837718","39.9288792"],["-111.1826756","39.9289531"],["-111.1814859","39.9291054"],["-111.1752998","39.9301364"],["-111.1733956","39.9304587"],["-111.1691254","39.9311607"],["-111.168355","39.9312362"],["-111.1658718","39.9314447"],["-111.1650111","39.9315442"],["-111.1646131","39.9316146"],["-111.1642163","39.9316948"],["-111.1637047","39.9318255"],["-111.162904","39.9320741"],["-111.1619503","39.9324292"],["-111.1612388","39.9327057"],["-111.1608163","39.9328661"],["-111.160417","39.9329916"],["-111.1600043","39.9331046"],["-111.1586371","39.9334406"],["-111.1581653","39.9335474"],["-111.1577884","39.9336236"],["-111.1575176","39.9336663"],["-111.1573051","39.9336903"],["-111.1571096","39.9337008"],["-111.1569001","39.9337066"],["-111.1567122","39.9337059"],["-111.1564909","39.9336929"],["-111.1562274","39.933663"],["-111.1544755","39.9333754"],["-111.1542069","39.9333447"],["-111.1539227","39.9333308"],["-111.153623","39.9333276"],["-111.1533438","39.9333456"],["-111.1530665","39.933383"],["-111.1528145","39.9334329"],["-111.1525647","39.9335019"],["-111.152301","39.9335897"],["-111.1519916","39.9337332"],["-111.1509661","39.9342715"],["-111.1505622","39.9344601"],["-111.1501603","39.9346226"],["-111.1497507","39.9347697"],["-111.1494422","39.9348662"],["-111.1489253","39.9349982"],["-111.1485819","39.9350622"],["-111.1480402","39.9351493"],["-111.1382455","39.9366308"],["-111.1377275","39.9366836"],["-111.1373888","39.9366952"],["-111.137067","39.9366846"],["-111.1367383","39.9366613"],["-111.136098","39.9365797"],["-111.1341668","39.9362873"],["-111.1337275","39.9362065"],["-111.1333194","39.9361"],["-111.1331024","39.9360314"],["-111.1327841","39.9359167"],["-111.1318238","39.9354284"],["-111.1310535","39.9350318"],["-111.1307312","39.9348703"],["-111.130502","39.9347657"],["-111.1302635","39.9346724"],["-111.1297867","39.9345399"],["-111.1282519","39.9341629"],["-111.1276199","39.9340282"],["-111.1271077","39.9339527"],["-111.1267083","39.9339202"],["-111.1263547","39.9339073"],["-111.1239271","39.9339067"],["-111.1230183","39.9339164"],["-111.1225926","39.9339394"],["-111.1220691","39.9340221"],["-111.121268","39.9341992"],["-111.1201052","39.9344657"],["-111.1198176","39.9345135"],["-111.1195147","39.9345413"],["-111.1192223","39.9345607"],["-111.118952","39.934566"],["-111.1187138","39.9345541"],["-111.1184699","39.9345309"],["-111.1087409","39.9332523"],["-111.1082337","39.9332124"],["-111.1078468","39.9332036"],["-111.1075952","39.9332153"],["-111.1073714","39.933237"],["-111.1071046","39.9332775"],["-111.1066318","39.9333983"],["-111.1055042","39.9338261"],["-111.1050798","39.9339702"],["-111.1046192","39.9340833"],["-111.1042936","39.9341257"],["-111.1040205","39.9341392"],["-111.1037118","39.9341435"],["-111.1030359","39.9341143"],["-111.0949615","39.9336011"],["-111.0943879","39.9335498"],["-111.094052","39.9335082"],["-111.0936664","39.9334499"],["-111.0930192","39.9333251"],["-111.0926091","39.9332254"],["-111.0920635","39.9330779"],["-111.0915127","39.9328989"],["-111.0908972","39.9326645"],["-111.090155","39.9323369"],["-111.0881593","39.9314098"],["-111.0876881","39.9311466"],["-111.0873415","39.930931"],["-111.086849","39.930542"],["-111.0862135","39.9300146"],["-111.0855047","39.9293997"],["-111.0852218","39.9291953"],["-111.0850228","39.9290636"],["-111.0848251","39.9289593"],["-111.084389","39.9287815"],["-111.0839988","39.9286628"],["-111.0836372","39.9285849"],["-111.0832739","39.9285409"],["-111.083","39.9285227"],["-111.0827208","39.9285141"],["-111.0770548","39.928517"],["-111.076596","39.9284944"],["-111.0763578","39.928455"],["-111.0760676","39.9283951"],["-111.0757066","39.9282783"],["-111.0753749","39.9281479"],["-111.075116","39.9280218"],["-111.0701453","39.9250887"],["-111.0696943","39.9247816"],["-111.0694103","39.9245745"],["-111.0692253","39.9244268"],["-111.0685432","39.9237835"],["-111.0674184","39.9224428"],["-111.0660668","39.9207654"],["-111.0651926","39.9196047"],["-111.0647671","39.9189008"],["-111.0644928","39.9182978"],["-111.0641972","39.9175662"],["-111.0603381","39.9078351"],["-111.0595626","39.9059541"],["-111.0595361","39.9058985"],["-111.0594743","39.9057851"],["-111.0523197","39.8930427"],["-111.0519443","39.8922237"],["-111.051267","39.8904389"],["-111.0499172","39.8868589"],["-111.0496583","39.8862556"],["-111.049296","39.8856231"],["-111.0491598","39.885416"],["-111.0489783","39.8851655"],["-111.0487897","39.8849171"],["-111.0485155","39.8845891"],["-111.0481896","39.8842515"],["-111.04772","39.8837846"],["-111.0474049","39.8835114"],["-111.0463502","39.8827077"],["-111.0371519","39.8761316"],["-111.0370382","39.8760486"],["-111.0358564","39.8751666"],["-111.0354428","39.874803"],["-111.0350941","39.8744312"],["-111.0347562","39.8740028"],["-111.0344057","39.8735227"],["-111.0337067","39.8724288"],["-111.0329215","39.8711505"],["-111.0320531","39.869706"],["-111.0310225","39.8679201"],["-111.0302988","39.8667691"],["-111.0293119","39.8653356"],["-111.0282961","39.8639857"],["-111.0270592","39.8623867"],["-111.0265732","39.8617711"],["-111.026026","39.8610893"],["-111.0255318","39.8605032"],["-111.0251187","39.860084"],["-111.024559","39.859585"],["-111.0239486","39.8591015"],["-111.0232606","39.8586303"],["-111.0226337","39.8582564"],["-111.0202901","39.8569955"],["-111.0187938","39.8561513"],["-111.0177802","39.8555339"],["-111.0113826","39.8512712"],["-111.0067108","39.8480379"],["-111.0044588","39.8465407"],["-111.0030222","39.8457666"],["-111.0021086","39.8453894"],["-111.0008572","39.8449753"],["-110.9987797","39.8444328"],["-110.9984937","39.8442899"],["-110.9954076","39.8435076"],["-110.9950589","39.8434805"],["-110.994154","39.8432113"],["-110.9929006","39.8427785"],["-110.9863338","39.8399456"],["-110.985339","39.8395123"],["-110.9722702","39.8339686"],["-110.9690183","39.8327018"],["-110.9670584","39.8319833"],["-110.9650337","39.8312659"],["-110.9631136","39.8305749"],["-110.9548065","39.8270488"],["-110.9516071","39.8256079"],["-110.9511268","39.8253918"],["-110.9507943","39.8252416"],["-110.9504285","39.8250791"],["-110.9495488","39.8246987"],["-110.9494351","39.824648"],["-110.9479322","39.8239642"],["-110.9474797","39.8237584"],["-110.9471251","39.8235915"],["-110.9466978","39.8233772"],["-110.9463284","39.8231661"],["-110.9456179","39.822709"],["-110.9454099","39.8225567"],["-110.9447322","39.822003"],["-110.94451","39.8217914"],["-110.9442765","39.8215408"],["-110.9439264","39.8211421"],["-110.942162","39.8190873"],["-110.9418609","39.8187513"],["-110.9416378","39.8185327"],["-110.9413561","39.8182937"],["-110.9410854","39.8180961"],["-110.9408597","39.8179429"],["-110.9404666","39.8176942"],["-110.9402806","39.8175717"],["-110.940073","39.8174259"],["-110.9397857","39.8171957"],["-110.9396904","39.8171118"],["-110.9395472","39.81697"],["-110.9394306","39.8168401"],["-110.9393307","39.8167116"],["-110.939239","39.8165781"],["-110.9391712","39.8164697"],["-110.9391026","39.8163522"],["-110.9390319","39.8162219"],["-110.9389717","39.8160981"],["-110.9389097","39.8159318"],["-110.9388668","39.8157649"],["-110.9388371","39.8156087"],["-110.9388102","39.8154512"],["-110.9387934","39.8152783"],["-110.9387896","39.8151306"],["-110.9387891","39.8149691"],["-110.938795","39.8148383"],["-110.9388154","39.814641"],["-110.9388898","39.8143695"],["-110.9389589","39.8141823"],["-110.9390411","39.8140092"],["-110.9391341","39.8138335"],["-110.9392505","39.8136507"],["-110.9393672","39.8134759"],["-110.9394963","39.8132893"],["-110.9396782","39.813072"],["-110.9398613","39.8128265"],["-110.9400316","39.8125937"],["-110.940381","39.8121192"],["-110.9408245","39.8115313"],["-110.9410671","39.8112122"],["-110.9412694","39.8109621"],["-110.9414332","39.8107408"],["-110.942197","39.8097268"],["-110.9425295","39.8092752"],["-110.9430945","39.8085117"],["-110.9432141","39.8083219"],["-110.9433097","39.8081503"],["-110.9433959","39.8079573"],["-110.9434783","39.8077524"],["-110.9435371","39.8075605"],["-110.9436458","39.8071835"],["-110.9436648","39.8069585"],["-110.9436695","39.8067646"],["-110.943665","39.8066022"],["-110.9436448","39.8064437"],["-110.9436196","39.8062876"],["-110.9435792","39.8061301"],["-110.9435366","39.8059888"],["-110.9434905","39.8058514"],["-110.9434227","39.8056976"],["-110.9433471","39.8055438"],["-110.9432611","39.805404"],["-110.9431662","39.8052618"],["-110.9430578","39.8051155"],["-110.942902","39.8049317"],["-110.9427238","39.8047424"],["-110.942575","39.8045949"],["-110.9424468","39.8044736"],["-110.9423239","39.8043723"],["-110.9421842","39.8042638"],["-110.9418399","39.8040212"],["-110.9403184","39.8030608"],["-110.938878","39.8021415"],["-110.9385205","39.8019033"],["-110.9383215","39.801782"],["-110.9381442","39.8016809"],["-110.9379196","39.8015653"],["-110.9376763","39.8014536"],["-110.9372434","39.8012817"],["-110.9370017","39.8012001"],["-110.9365634","39.8010745"],["-110.9363293","39.8010159"],["-110.9358736","39.8009194"],["-110.9343917","39.8006193"],["-110.9341077","39.8005451"],["-110.9339041","39.80048"],["-110.9335752","39.8003625"],["-110.9333751","39.8002649"],["-110.9332126","39.8001787"],["-110.9330418","39.8000831"],["-110.9328662","39.7999664"],["-110.932748","39.7998758"],["-110.9324896","39.7996352"],["-110.9323822","39.7995132"],["-110.9322847","39.7993916"],["-110.9322082","39.7992808"],["-110.9321194","39.7991309"],["-110.9320408","39.7989839"],["-110.9319576","39.7988203"],["-110.931906","39.7986776"],["-110.9318613","39.7985569"],["-110.9318407","39.7984802"],["-110.931821","39.7983807"],["-110.9318087","39.798288"],["-110.9318101","39.7981112"],["-110.9318165","39.7979761"],["-110.93185","39.7978211"],["-110.9320946","39.7970538"],["-110.9321917","39.7967154"],["-110.9322361","39.7965009"],["-110.9322605","39.7963069"],["-110.9322586","39.7960936"],["-110.9322474","39.7958736"],["-110.9322185","39.7956776"],["-110.9321837","39.7954966"],["-110.9321307","39.7952596"],["-110.9319975","39.7947073"],["-110.9319456","39.794448"],["-110.9319197","39.7942754"],["-110.931897","39.7940821"],["-110.9317746","39.7922663"],["-110.9317406","39.7918926"],["-110.9317142","39.7917457"],["-110.9316807","39.7916067"],["-110.9315954","39.7913316"],["-110.93155","39.7912026"],["-110.9314894","39.7910739"],["-110.9314226","39.7909479"],["-110.9313462","39.7908286"],["-110.9312737","39.790723"],["-110.9311806","39.7906054"],["-110.9310466","39.7904463"],["-110.9307283","39.7901193"],["-110.9305956","39.7899864"],["-110.9298213","39.7892338"],["-110.9296532","39.7890557"],["-110.9295282","39.7889132"],["-110.9294293","39.7887912"],["-110.9293103","39.7886248"],["-110.9291703","39.7884163"],["-110.9284957","39.7871997"],["-110.9282712","39.7868042"],["-110.9280583","39.7864419"],["-110.927967","39.7862974"],["-110.9278415","39.7861379"],["-110.9276945","39.7859699"],["-110.927545","39.7858196"],["-110.9273974","39.7856866"],["-110.9272487","39.7855675"],["-110.9271117","39.7854679"],["-110.9269486","39.7853622"],["-110.9267533","39.7852445"],["-110.9223553","39.7829637"],["-110.9221592","39.7828589"],["-110.9220086","39.7827643"],["-110.9218699","39.7826731"],["-110.9217041","39.7825488"],["-110.9215654","39.7824393"],["-110.9213965","39.7822867"],["-110.9212661","39.7821586"],["-110.9210734","39.7819432"],["-110.9207032","39.7814734"],["-110.9205667","39.7813222"],["-110.9204232","39.7811713"],["-110.9202947","39.7810485"],["-110.9198231","39.7806239"],["-110.9191264","39.7800122"],["-110.9160597","39.777323"],["-110.9159438","39.7772316"],["-110.9158045","39.7771316"],["-110.9156553","39.7770372"],["-110.915492","39.7769455"],["-110.915335","39.7768677"],["-110.9151764","39.7767966"],["-110.9149824","39.7767223"],["-110.9147314","39.7766339"],["-110.9140352","39.7764071"],["-110.9137677","39.7763099"],["-110.9135226","39.7762003"],["-110.9132735","39.7760677"],["-110.913092","39.7759553"],["-110.912918","39.7758352"],["-110.9127974","39.7757419"],["-110.9126958","39.7756527"],["-110.9125702","39.7755302"],["-110.9124605","39.7754114"],["-110.9123641","39.775296"],["-110.9122735","39.7751666"],["-110.9121873","39.7750102"],["-110.9121305","39.7748884"],["-110.9120756","39.7747337"],["-110.9119869","39.7744332"],["-110.9118982","39.7741231"],["-110.9118238","39.7738759"],["-110.9117733","39.7737439"],["-110.9117151","39.7736107"],["-110.9116485","39.7734813"],["-110.911576","39.7733562"],["-110.9114769","39.7732067"],["-110.9113592","39.7730631"],["-110.9112128","39.7729075"],["-110.9110404","39.7727571"],["-110.9108411","39.7725973"],["-110.9106133","39.772448"],["-110.9104116","39.7723325"],["-110.9101655","39.7722071"],["-110.9098934","39.7720743"],["-110.9095783","39.7719225"],["-110.9094231","39.7718364"],["-110.9092806","39.7717468"],["-110.9091453","39.7716474"],["-110.9090035","39.7715334"],["-110.9088919","39.7714289"],["-110.9087787","39.7713144"],["-110.9086841","39.7712021"],["-110.9085983","39.7710941"],["-110.9085058","39.7709539"],["-110.9083716","39.7707128"],["-110.9082998","39.7705513"],["-110.9081718","39.7701874"],["-110.9080948","39.7699715"],["-110.908016","39.7697584"],["-110.907949","39.7695908"],["-110.9078867","39.7694482"],["-110.9078048","39.7692934"],["-110.9077169","39.7691381"],["-110.9076018","39.7689672"],["-110.9074833","39.7688138"],["-110.9073699","39.7686791"],["-110.9072237","39.7685231"],["-110.90387","39.7651128"],["-110.9035735","39.7648238"],["-110.9033905","39.7646649"],["-110.9032368","39.7645459"],["-110.9030453","39.7644149"],["-110.9028385","39.7642848"],["-110.9026245","39.764174"],["-110.9024443","39.7640961"],["-110.9022837","39.7640351"],["-110.9021394","39.7639891"],["-110.902007","39.7639513"],["-110.9018742","39.7639175"],["-110.901668","39.7638752"],["-110.9014084","39.7638343"],["-110.9010777","39.7637957"],["-110.9002926","39.7637383"],["-110.8984725","39.7636087"],["-110.8981768","39.7635735"],["-110.8978785","39.7635213"],["-110.897622","39.7634648"],["-110.8973663","39.7634017"],["-110.8971369","39.7633338"],["-110.8968796","39.7632476"],["-110.8966113","39.7631455"],["-110.8963484","39.7630284"],["-110.8961041","39.7629039"],["-110.895835","39.7627493"],["-110.8954982","39.7625147"],["-110.8929162","39.760553"],["-110.8918031","39.7596891"],["-110.8914987","39.7594235"],["-110.8910905","39.7590273"],["-110.8908828","39.7588085"],["-110.8905923","39.7584872"],["-110.8902845","39.7581253"],["-110.8899917","39.7577478"],["-110.8897439","39.7574151"],["-110.8894424","39.7569649"],["-110.8892093","39.7565835"],["-110.8889673","39.7561567"],["-110.8887485","39.7557432"],["-110.8883971","39.7549764"],["-110.8875657","39.7531408"],["-110.8873612","39.7528308"],["-110.8872383","39.7526692"],["-110.887135","39.7525412"],["-110.887017","39.7524189"],["-110.8868842","39.7522909"],["-110.8866498","39.7520933"],["-110.8864127","39.7519001"],["-110.8860674","39.7516771"],["-110.88583","39.7514829"],["-110.8857333","39.751383"],["-110.8856272","39.7512683"],["-110.8855364","39.7511638"],["-110.8854289","39.7510197"],["-110.8853412","39.750881"],["-110.8852577","39.7507417"],["-110.8851849","39.7506044"],["-110.8851326","39.7504743"],["-110.885091","39.7503512"],["-110.8850519","39.7502202"],["-110.8850041","39.7499076"],["-110.8849857","39.7497217"],["-110.8849505","39.7489751"],["-110.8849403","39.7487647"],["-110.8849166","39.7485967"],["-110.8848843","39.7484355"],["-110.884829","39.7482687"],["-110.8847521","39.7480712"],["-110.8846582","39.7478853"],["-110.8845672","39.7477297"],["-110.884474","39.7475915"],["-110.8843404","39.7474276"],["-110.8841573","39.7472356"],["-110.8839967","39.7470916"],["-110.8838133","39.7469437"],["-110.8836212","39.7468151"],["-110.8826563","39.7461821"],["-110.8824209","39.7460358"],["-110.8821765","39.7458572"],["-110.8819669","39.7456924"],["-110.8817746","39.7455141"],["-110.8816329","39.7453695"],["-110.881507","39.7452334"],["-110.881332","39.7450163"],["-110.880876","39.7443573"],["-110.8805543","39.7439011"],["-110.8803258","39.7436277"],["-110.8800889","39.7433816"],["-110.8798683","39.7431944"],["-110.8796263","39.7430071"],["-110.8793907","39.7428476"],["-110.8789927","39.7426071"],["-110.8758638","39.7407519"],["-110.8756077","39.740583"],["-110.8754909","39.7404931"],["-110.8753068","39.7403345"],["-110.8751563","39.7401793"],["-110.8749641","39.7399217"],["-110.8748732","39.7397793"],["-110.874809","39.739657"],["-110.874754","39.7395266"],["-110.8746989","39.7393622"],["-110.8746542","39.7391822"],["-110.874627","39.7389642"],["-110.8746042","39.7387227"],["-110.8745626","39.7381758"],["-110.8745378","39.7379619"],["-110.8744719","39.7375557"],["-110.8743999","39.7371799"],["-110.8743082","39.73684"],["-110.8741978","39.7365046"],["-110.8740553","39.7361491"],["-110.873703","39.7354297"],["-110.873602","39.7352555"],["-110.873459","39.7350262"],["-110.8732985","39.7347835"],["-110.8729758","39.7343619"],["-110.8725095","39.733786"],["-110.8699201","39.7307444"],["-110.8697358","39.7305342"],["-110.8696221","39.7304103"],["-110.8694856","39.7302756"],["-110.8692967","39.7301007"],["-110.8690215","39.7298621"],["-110.8686793","39.7295771"],["-110.8683882","39.7293368"],["-110.8681489","39.7291167"],["-110.8680658","39.7290337"],["-110.8679895","39.728941"],["-110.8679071","39.7288377"],["-110.8678313","39.7287352"],["-110.8677576","39.7286315"],["-110.8677059","39.7285469"],["-110.8676571","39.7284453"],["-110.8676117","39.7283285"],["-110.8675218","39.7280438"],["-110.8674919","39.7279277"],["-110.8674694","39.7278192"],["-110.8674539","39.727715"],["-110.8674493","39.7275791"],["-110.8674479","39.7274515"],["-110.8674641","39.7273106"],["-110.8674756","39.7272383"],["-110.8674888","39.7271593"],["-110.8675345","39.7269296"],["-110.8675896","39.7267455"],["-110.867641","39.7265636"],["-110.8677104","39.7262865"],["-110.8677212","39.7262056"],["-110.8677324","39.7261137"],["-110.8677371","39.7260019"],["-110.8677324","39.7257822"],["-110.867722","39.725687"],["-110.8676953","39.7255032"],["-110.8676784","39.7254183"],["-110.8676557","39.7253469"],["-110.8675782","39.7251593"],["-110.8675331","39.725053"],["-110.8674759","39.7249356"],["-110.8674146","39.7248383"],["-110.8673435","39.7247284"],["-110.8672718","39.7246343"],["-110.8671833","39.7245281"],["-110.8670749","39.7244095"],["-110.8669772","39.7243103"],["-110.8669068","39.7242487"],["-110.8662082","39.723622"],["-110.8658441","39.7232863"],["-110.8656519","39.723062"],["-110.865564","39.7229536"],["-110.8654916","39.7228539"],["-110.8654268","39.7227508"],["-110.8653775","39.722665"],["-110.8653212","39.7225606"],["-110.8652719","39.7224514"],["-110.8652224","39.7223251"],["-110.8651862","39.7222108"],["-110.8651602","39.7221143"],["-110.8651388","39.7220261"],["-110.8651228","39.7219413"],["-110.8651111","39.7218455"],["-110.865105","39.7217502"],["-110.8651087","39.7216267"],["-110.865115","39.7215107"],["-110.8651273","39.7214114"],["-110.8651501","39.7213077"],["-110.8651777","39.721194"],["-110.8652077","39.721085"],["-110.8652904","39.7208633"],["-110.8653419","39.7207507"],["-110.8654037","39.7206366"],["-110.8654634","39.7205374"],["-110.8655236","39.7204506"],["-110.8656152","39.720331"],["-110.8657078","39.7202179"],["-110.8681151","39.7174305"],["-110.8682973","39.7172042"],["-110.8684744","39.7169455"],["-110.8685392","39.7168435"],["-110.8685966","39.7167314"],["-110.8686729","39.7165683"],["-110.8687024","39.7164859"],["-110.8687244","39.7164017"],["-110.8687539","39.7162309"],["-110.868778","39.7159957"],["-110.8687809","39.715813"],["-110.8687749","39.7156865"],["-110.8687625","39.7155491"],["-110.8687447","39.7154243"],["-110.8687212","39.7152906"],["-110.868681","39.7151339"],["-110.8685962","39.7149016"],["-110.8684652","39.7145954"],["-110.8679795","39.7136834"],["-110.8677919","39.7133145"],["-110.8677128","39.7131305"],["-110.8676618","39.7129705"],["-110.8676168","39.7128143"],["-110.8675905","39.7126564"],["-110.8675723","39.7125014"],["-110.8675711","39.7123746"],["-110.8675801","39.7122341"],["-110.8676053","39.7120389"],["-110.867637","39.7118765"],["-110.8676952","39.7116848"],["-110.867826","39.711381"],["-110.8686655","39.7098916"],["-110.869114","39.7091744"],["-110.8693109","39.7088209"],["-110.8694526","39.7085359"],["-110.8695961","39.7081434"],["-110.8696849","39.7077588"],["-110.8697142","39.7073581"],["-110.8697072","39.7069123"],["-110.8695633","39.7061689"],["-110.8692153","39.7046437"],["-110.8688669","39.7031487"],["-110.8680451","39.6995485"],["-110.867742","39.6982851"],["-110.8675998","39.6978484"],["-110.8674505","39.6974809"],["-110.8672198","39.697045"],["-110.8669683","39.6966419"],["-110.8666967","39.6962715"],["-110.8663952","39.6959274"],["-110.8660334","39.6955574"],["-110.8655514","39.6951693"],["-110.8651184","39.694855"],["-110.8647231","39.6945957"],["-110.8644221","39.6944291"],["-110.8641244","39.6942737"],["-110.8638518","39.6941439"],["-110.8633687","39.6939455"],["-110.8608016","39.6930597"],["-110.859326","39.6925043"],["-110.8591819","39.6924439"],["-110.8590067","39.6923625"],["-110.8588256","39.6922708"],["-110.8586434","39.6921712"],["-110.8584855","39.6920755"],["-110.858326","39.6919679"],["-110.8580413","39.6917527"],["-110.8578799","39.6916212"],["-110.857727","39.6914857"],["-110.857492","39.6912582"],["-110.8573554","39.691115"],["-110.8571661","39.6908619"],["-110.8569824","39.6906036"],["-110.8568261","39.6903338"],["-110.8567088","39.6900725"],["-110.8566086","39.6897928"],["-110.8565161","39.6893912"],["-110.8564693","39.6890414"],["-110.8564377","39.6886106"],["-110.8564122","39.6881393"],["-110.8564227","39.6878093"],["-110.8564525","39.6874796"],["-110.8565149","39.6870446"],["-110.8566043","39.6865868"],["-110.856724","39.6861613"],["-110.8568595","39.6857533"],["-110.8570382","39.685289"],["-110.8572141","39.6848888"],["-110.8574128","39.6844833"],["-110.8576913","39.684038"],["-110.8580495","39.6834914"],["-110.8583743","39.6829913"],["-110.8587904","39.6823522"],["-110.8591103","39.6818435"],["-110.8597015","39.6808255"],["-110.8597843","39.6805784"],["-110.860198","39.6798031"],["-110.8603836","39.6794088"],["-110.8605869","39.6789934"],["-110.8608114","39.6784478"],["-110.8610412","39.67784"],["-110.8611786","39.6773976"],["-110.861309","39.6769013"],["-110.8614434","39.6763379"],["-110.8615617","39.6756773"],["-110.8616897","39.674384"],["-110.8616888","39.6737506"],["-110.8616583","39.6729118"],["-110.8602556","39.6514588"],["-110.8601746","39.6501164"],["-110.8601166","39.6487137"],["-110.8601034","39.6485096"],["-110.8600942","39.6472758"],["-110.86008","39.6468165"],["-110.8600506","39.6462516"],["-110.8600141","39.6457409"],["-110.8599503","39.6452824"],["-110.8598965","39.6449434"],["-110.8598913","39.6449078"],["-110.8598471","39.6446273"],["-110.8597785","39.6442946"],["-110.8594871","39.6431441"],["-110.8593903","39.6426531"],["-110.8592931","39.6420389"],["-110.8593724","39.6418905"],["-110.859371","39.6415933"],["-110.8593875","39.6412628"],["-110.8594224","39.6409593"],["-110.8594579","39.6407298"],["-110.8594656","39.6406934"],["-110.8595228","39.6404543"],["-110.8595929","39.6401955"],["-110.8596523","39.640013"],["-110.859668","39.6399816"],["-110.859921","39.6395051"],["-110.8602623","39.638747"],["-110.860823","39.6375295"],["-110.8613055","39.6364892"],["-110.8615515","39.635898"],["-110.8617597","39.6352581"],["-110.8619512","39.6346269"],["-110.8620624","39.634149"],["-110.8621455","39.6337247"],["-110.8622155","39.6332052"],["-110.8622264","39.6326909"],["-110.8622199","39.6319307"],["-110.8621868","39.6313416"],["-110.862126","39.6308189"],["-110.8618642","39.6295996"],["-110.8616423","39.6288896"],["-110.8613121","39.6280337"],["-110.8608133","39.6270453"],["-110.8604562","39.6264441"],["-110.8584214","39.6236419"],["-110.8576689","39.6226304"],["-110.8553508","39.6194875"],["-110.8548714","39.6188543"],["-110.8544491","39.6183891"],["-110.8540823","39.6180429"],["-110.8537295","39.6177559"],["-110.8533272","39.6174591"],["-110.8529142","39.6172098"],["-110.8523647","39.61692"],["-110.851944","39.6167314"],["-110.8515458","39.6165663"],["-110.8511216","39.616427"],["-110.8505782","39.6162759"],["-110.849893","39.616131"],["-110.8492065","39.616035"],["-110.8484933","39.6159676"],["-110.845781","39.6158903"],["-110.8440289","39.6158468"],["-110.8435676","39.6158178"],["-110.8430582","39.6157717"],["-110.8425278","39.6156932"],["-110.8419132","39.6155848"],["-110.841329","39.6154333"],["-110.8407639","39.6152646"],["-110.8401432","39.615018"],["-110.8395831","39.6147504"],["-110.8390635","39.6144718"],["-110.8385723","39.6141406"],["-110.838124","39.6137849"],["-110.8376627","39.6133365"],["-110.8372781","39.6129477"],["-110.8368624","39.6124458"],["-110.8332324","39.6078684"],["-110.8328263","39.6073842"],["-110.8321064","39.6064636"],["-110.8316629","39.6059098"],["-110.8284615","39.6022707"],["-110.8207338","39.5925853"],["-110.8204167","39.5922061"],["-110.8202403","39.5920179"],["-110.8200018","39.5917765"],["-110.8197276","39.5915232"],["-110.8194183","39.5912643"],["-110.8190181","39.5909745"],["-110.8184883","39.5906422"],["-110.817916","39.5903385"],["-110.8171923","39.5900172"],["-110.8129401","39.5883056"],["-110.8117093","39.5878176"],["-110.8106261","39.5873776"],["-110.807828","39.5862849"],["-110.8070062","39.586003"],["-110.8061516","39.5857648"],["-110.8049409","39.5855095"],["-110.8037722","39.5853226"],["-110.8031918","39.5852703"],["-110.8022213","39.5852369"],["-110.8016903","39.5852387"],["-110.8012959","39.585247"],["-110.8006559","39.5852867"],["-110.8000935","39.5853416"],["-110.7995046","39.5854155"],["-110.7988994","39.5855155"],["-110.7983522","39.5856219"],["-110.7977854","39.5857523"],["-110.7972381","39.5859006"],["-110.7941238","39.5869199"],["-110.7937155","39.5870422"],["-110.7928001","39.5872772"],["-110.792179","39.5874098"],["-110.7916788","39.5875048"],["-110.7913868","39.5875436"],["-110.7911589","39.5875637"],["-110.7909348","39.5875697"],["-110.7906497","39.5875575"],["-110.7903522","39.5875194"],["-110.7900588","39.5874584"],["-110.7897836","39.5873718"],["-110.7895281","39.5872718"],["-110.7892922","39.5871659"],["-110.7891162","39.5870678"],["-110.7889534","39.5869561"],["-110.7888059","39.5868402"],["-110.7886522","39.5867028"],["-110.788492","39.5865344"],["-110.7883422","39.5863363"],["-110.7882206","39.5861447"],["-110.7881279","39.5859439"],["-110.7880571","39.5857171"],["-110.7874595","39.5822768"],["-110.7874225","39.5821193"],["-110.787364","39.5819279"],["-110.7872184","39.5815645"],["-110.784452","39.5754177"],["-110.7840836","39.5747138"],["-110.7836219","39.5739829"],["-110.7831869","39.5734137"],["-110.7818586","39.5718569"],["-110.7811941","39.5711185"],["-110.7805016","39.5704606"],["-110.7799393","39.5700079"],["-110.744793","39.5446089"],["-110.7443118","39.5443149"],["-110.7437496","39.5440273"],["-110.7431386","39.5437839"],["-110.7424489","39.5435688"],["-110.7411396","39.5431924"],["-110.7404853","39.5430074"],["-110.7390461","39.5426178"],["-110.7386983","39.5425348"],["-110.7384851","39.5424955"],["-110.7381305","39.5424541"],["-110.7378959","39.5424338"],["-110.7375643","39.5424185"],["-110.7257868","39.5424617"],["-110.7253662","39.5424523"],["-110.7235392","39.5424613"],["-110.7211233","39.5424688"],["-110.7199143","39.5424764"],["-110.7192712","39.542481"],["-110.6892318","39.5425822"],["-110.6889552","39.5425886"],["-110.6886757","39.5425979"],["-110.6852311","39.5426119"],["-110.6847356","39.5426461"],["-110.6843496","39.5427177"],["-110.6838831","39.5428575"],["-110.6834273","39.5430031"],["-110.682193","39.5435122"],["-110.6692143","39.5488906"],["-110.6681038","39.5491934"],["-110.6603503","39.5506782"],["-110.6595204","39.5507792"],["-110.6589302","39.5508143"],["-110.6584392","39.5508125"],["-110.6579139","39.5507818"],["-110.6574439","39.5507302"],["-110.6569472","39.5506465"],["-110.656398","39.550509"],["-110.6520984","39.5492519"],["-110.6510644","39.548917"],["-110.6506343","39.5487206"],["-110.6499929","39.548411"],["-110.6493603","39.5481093"],["-110.6486621","39.547798"],["-110.6480693","39.5475756"],["-110.6474944","39.5473842"],["-110.646868","39.5472192"],["-110.6461636","39.5470801"],["-110.6454774","39.5470058"],["-110.6447164","39.5469444"],["-110.6435398","39.5469115"],["-110.6297606","39.5469862"],["-110.6284646","39.5469501"],["-110.6273625","39.5468792"],["-110.6264152","39.5467993"],["-110.6246138","39.5465586"],["-110.6225403","39.5461774"],["-110.6213713","39.5458881"],["-110.6202137","39.5455759"],["-110.6188735","39.5451685"],["-110.6174181","39.5446465"],["-110.5763308","39.5270319"],["-110.5736377","39.5258922"],["-110.5726606","39.5254704"],["-110.5708972","39.5246895"],["-110.5688639","39.5238142"],["-110.5649332","39.5221365"],["-110.5645143","39.5219575"],["-110.5413194","39.5119302"],["-110.5396856","39.511195"],["-110.5386222","39.5106375"],["-110.537445","39.5099674"],["-110.5365306","39.5094053"],["-110.5358667","39.5089649"],["-110.5351143","39.5084224"],["-110.5347384","39.5081342"],["-110.5340433","39.5075703"],["-110.5329261","39.5065862"],["-110.5319133","39.5055713"],["-110.5108449","39.4817249"],["-110.509825","39.4805872"],["-110.5088595","39.4796105"],["-110.5077684","39.4785805"],["-110.5063841","39.4773852"],["-110.5043614","39.4756593"],["-110.4429486","39.4223255"],["-110.4390922","39.4184451"],["-110.4327372","39.4115259"],["-110.4055163","39.3800975"],["-110.404577","39.3790037"],["-110.4041531","39.3784952"],["-110.4037527","39.3780343"],["-110.3986644","39.37214"],["-110.3977808","39.3711264"],["-110.3779055","39.3481862"],["-110.3774835","39.3476896"],["-110.3765986","39.3466214"],["-110.3756662","39.3454029"],["-110.3749334","39.3443945"],["-110.374317","39.3434574"],["-110.3736042","39.3422915"],["-110.3729254","39.3410997"],["-110.3724951","39.3402861"],["-110.3721423","39.3395604"],["-110.3716362","39.3384468"],["-110.3572322","39.3013279"],["-110.3539327","39.2940583"],["-110.3535932","39.2933138"],["-110.3527209","39.2911258"],["-110.3523761","39.290144"],["-110.348579","39.2787513"],["-110.3432676","39.2648365"],["-110.3427823","39.2635849"],["-110.3406579","39.2580614"],["-110.340354","39.257273"],["-110.3401024","39.2566232"],["-110.3399215","39.2561439"],["-110.3397049","39.2555464"],["-110.3395362","39.2550269"],["-110.3393777","39.2545089"],["-110.3392782","39.2541048"],["-110.3391888","39.2536852"],["-110.339033","39.2528106"],["-110.3389368","39.2516533"],["-110.3381526","39.1566064"],["-110.3381138","39.1559842"],["-110.3368491","39.1427457"],["-110.3368256","39.1419216"],["-110.3368176","39.1410385"],["-110.3368292","39.1401828"],["-110.3368726","39.1395124"],["-110.3369417","39.1388572"],["-110.337049","39.1381077"],["-110.3372155","39.1371119"],["-110.3375116","39.1355058"],["-110.3376024","39.1350365"],["-110.3376606","39.1347003"],["-110.3377005","39.1342788"],["-110.3377054","39.1339189"],["-110.3377035","39.1335205"],["-110.3376852","39.1331328"],["-110.3376445","39.132787"],["-110.3375806","39.1324171"],["-110.3374801","39.131978"],["-110.3373544","39.1315467"],["-110.3372044","39.1311269"],["-110.3370198","39.1306956"],["-110.3368102","39.1302846"],["-110.3365827","39.1298926"],["-110.3363155","39.1294922"],["-110.3326151","39.124359"],["-110.3313403","39.1224246"],["-110.33051","39.1209464"],["-110.329935","39.119785"],["-110.3296858","39.1192334"],["-110.3292254","39.1181242"],["-110.3290457","39.1176359"],["-110.3282012","39.1150237"],["-110.3234509","39.0999092"],["-110.3226144","39.0972472"],["-110.3201207","39.0891735"],["-110.3067638","39.0374478"],["-110.3062356","39.0359181"],["-110.3058286","39.0348998"],["-110.3054226","39.0339846"],["-110.304646","39.0324731"],["-110.3041885","39.0316679"],["-110.3037526","39.0309553"],["-110.3033181","39.0302828"],["-110.3028525","39.0296067"],["-110.3024057","39.0290006"],["-110.3017629","39.0281763"],["-110.3011041","39.0273861"],["-110.3003514","39.0265377"],["-110.2998475","39.0259965"],["-110.2981783","39.0243971"],["-110.2772076","39.0063776"],["-110.2764031","39.0057175"],["-110.2745763","39.0043765"],["-110.2727482","39.0031667"],["-110.2717655","39.0025719"],["-110.2705771","39.0019163"],["-110.2456547","38.989001"],["-110.2375415","38.9842801"],["-110.235155","38.9828551"],["-110.2330474","38.9815742"],["-110.2308554","38.9802757"],["-110.2302978","38.9799734"],["-110.2298593","38.9798091"],["-110.2294871","38.9797142"],["-110.2291253","38.9796559"],["-110.2286881","38.9796319"],["-110.2282676","38.9796431"],["-110.227868","38.9796937"],["-110.2275065","38.979774"],["-110.2272333","38.9798618"],["-110.2270604","38.9799331"],["-110.2267404","38.9800627"],["-110.2264705","38.9802283"],["-110.2262162","38.9804188"],["-110.2259486","38.9806684"],["-110.2257555","38.9808976"],["-110.2255813","38.9811598"],["-110.2253998","38.9815481"],["-110.2252433","38.9819769"],["-110.2250852","38.9823575"],["-110.2249105","38.9826507"],["-110.2246167","38.9829955"],["-110.2243951","38.9831945"],["-110.2241647","38.983371"],["-110.223868","38.9835406"],["-110.2234428","38.9837331"],["-110.2231494","38.9838358"],["-110.2228302","38.9839225"],["-110.2196178","38.9846198"],["-110.219045","38.9847747"],["-110.1853498","38.991172"],["-110.1843183","38.9913221"],["-110.1830157","38.9914236"],["-110.1822717","38.991446"],["-110.1814709","38.9914504"],["-110.1807735","38.9914408"],["-110.1793978","38.9913467"],["-110.1784556","38.9912393"],["-110.1772825","38.9910597"],["-110.1762262","38.9908443"],["-110.1752381","38.9906138"],["-110.1741294","38.9902819"],["-110.1732019","38.9899531"],["-110.172422","38.98965"],["-110.1715307","38.9892578"],["-110.1704492","38.9886957"],["-110.1695022","38.9881771"],["-110.1685465","38.9875689"],["-110.167547","38.9868613"],["-110.1667042","38.9861737"],["-110.1658972","38.9854039"],["-110.165017","38.9844838"],["-110.1643911","38.983711"],["-110.1617445","38.979854"],["-110.1606296","38.978202"],["-110.1599128","38.9774282"],["-110.1593389","38.9769378"],["-110.1588183","38.9765349"],["-110.1583993","38.9762482"],["-110.1579563","38.9759693"],["-110.1575833","38.975744"],["-110.1571706","38.9755351"],["-110.1567097","38.9753265"],["-110.1562737","38.9751602"],["-110.1553563","38.9748538"],["-110.1550587","38.9747788"],["-110.1547202","38.9747009"],["-110.1543314","38.9746185"],["-110.153881","38.9745344"],["-110.1531749","38.9744428"],["-110.1519936","38.9743677"],["-110.1472708","38.9741663"],["-110.143445","38.9740082"],["-110.1424773","38.9739953"],["-110.1410918","38.9740108"],["-110.139153","38.9741467"],["-110.1386656","38.9741963"],["-110.1373384","38.9743605"],["-110.1367832","38.9744442"],["-110.1306676","38.9755557"],["-110.1278512","38.9758729"],["-110.1255474","38.9760164"],["-110.1235507","38.9760576"],["-110.1221433","38.976035"],["-110.1205383","38.9759655"],["-110.1174572","38.97569"],["-110.1170317","38.9756371"],["-110.1164533","38.9755647"],["-110.1153331","38.9753927"],["-110.1132699","38.9750087"],["-110.112207","38.9747862"],["-110.1090336","38.9739454"],["-110.1082873","38.9737084"],["-110.1003369","38.9710667"],["-110.0963193","38.9699277"],["-110.0841856","38.9669177"],["-110.0812306","38.9660176"],["-110.0777464","38.9648614"],["-110.0755229","38.9640787"],["-110.0731681","38.9632772"],["-110.0713514","38.9627538"],["-110.0695556","38.9622922"],["-110.0677523","38.961793"],["-110.0663295","38.9613112"],["-110.0651099","38.9607805"],["-110.0635451","38.9599821"],["-110.0621673","38.9591281"],["-110.0606467","38.9581192"],["-110.0590039","38.9569758"],["-110.0568468","38.955587"],["-110.0547926","38.9543122"],["-110.0524311","38.9529642"],["-110.0503055","38.9517868"],["-110.0461713","38.9494236"],["-110.0434125","38.9476103"],["-110.0410639","38.9459951"],["-110.038548","38.9441061"],["-110.0339805","38.9404242"],["-110.0314997","38.9386116"],["-110.0297791","38.9374549"],["-110.0287556","38.9368417"],["-110.0263057","38.9355971"],["-110.0234218","38.934321"],["-110.0210265","38.9334648"],["-110.0167287","38.9320926"],["-110.015026","38.9314708"],["-110.0132246","38.9306528"],["-110.0080705","38.9281767"],["-110.0065095","38.9275098"],["-110.0050815","38.9270046"],["-110.0033033","38.9265342"],["-110.0020258","38.9262801"],["-110.0008995","38.9261179"],["-109.9997685","38.9259825"],["-109.9982944","38.9259018"],["-109.9962059","38.925895"],["-109.9939819","38.9259185"],["-109.9918143","38.9259235"],["-109.9897422","38.9258661"],["-109.987821","38.9257591"],["-109.9857194","38.9255205"],["-109.9833263","38.9251573"],["-109.9747475","38.9234"],["-109.9685001","38.9223576"],["-109.9647365","38.9219446"],["-109.9462335","38.920447"],["-109.9444372","38.9203804"],["-109.9421429","38.9203554"],["-109.9398606","38.9204636"],["-109.9378097","38.9206464"],["-109.9365398","38.9208039"],["-109.9316983","38.9215315"],["-109.9286983","38.9219798"],["-109.918988","38.9234168"],["-109.846495","38.934575"],["-109.8437088","38.935092"],["-109.8420086","38.9354968"],["-109.8401011","38.9360569"],["-109.827689","38.9402089"],["-109.8263168","38.9406274"],["-109.8255552","38.94082"],["-109.8248177","38.9409861"],["-109.8240856","38.9411172"],["-109.8228459","38.9412886"],["-109.8211222","38.9414333"],["-109.8198051","38.941503"],["-109.8186272","38.9415174"],["-109.8176924","38.9415937"],["-109.8164622","38.9417326"],["-109.8163225","38.9407698"],["-109.8163007","38.9394326"],["-109.8130972","38.8829708"],["-109.8128423","38.8792323"],["-109.8126848","38.8779897"],["-109.8122886","38.8758525"],["-109.8120741","38.8748602"],["-109.8117628","38.8737158"],["-109.811313","38.872244"],["-109.8106983","38.8704166"],["-109.8099802","38.8685879"],["-109.8040368","38.8560889"],["-109.8030467","38.8541869"],["-109.8024493","38.8531273"],["-109.8010358","38.8508484"],["-109.798951","38.8479526"],["-109.791303","38.8377509"],["-109.7605246","38.7966588"],["-109.7587112","38.7940996"],["-109.7579457","38.7929206"],["-109.7574025","38.7919966"],["-109.7567191","38.7907403"],["-109.7556844","38.7887164"],["-109.7428071","38.762122"],["-109.7414996","38.7591123"],["-109.7376724","38.7470364"],["-109.7372008","38.7456539"],["-109.7365273","38.7440647"],["-109.7356142","38.7424208"],["-109.73517","38.7417609"],["-109.7288515","38.7333888"],["-109.7282279","38.7326366"],["-109.7274555","38.7317972"],["-109.7261451","38.7305838"],["-109.7218713","38.7268191"],["-109.7196341","38.7248662"],["-109.7186856","38.7240739"],["-109.7175258","38.7232964"],["-109.7143646","38.7213911"],["-109.7082992","38.7177864"],["-109.7076751","38.7173516"],["-109.7071489","38.71694"],["-109.7067341","38.7165908"],["-109.706367","38.7162639"],["-109.7059643","38.7158635"],["-109.7053539","38.7151392"],["-109.7048729","38.71445"],["-109.7044631","38.7137831"],["-109.7041933","38.7132144"],["-109.7039673","38.7126189"],["-109.7015592","38.7052196"],["-109.6982364","38.6949376"],["-109.6952703","38.6856821"],["-109.6949049","38.6847475"],["-109.6945268","38.6839658"],["-109.6941646","38.6832849"],["-109.6937041","38.6825292"],["-109.693142","38.6817403"],["-109.6927119","38.6811476"],["-109.6922521","38.6805141"],["-109.692009","38.6801717"],["-109.6893177","38.6765046"],["-109.6884035","38.6752772"],["-109.6864456","38.672578"],["-109.685868","38.6716955"],["-109.6847042","38.6697421"],["-109.6746415","38.6525473"],["-109.6732853","38.6503648"],["-109.6725734","38.6491021"],["-109.6683202","38.6421188"],["-109.6678447","38.6413965"],["-109.6671281","38.6405201"],["-109.6634266","38.6361654"],["-109.662554","38.6352075"],["-109.6619352","38.6345776"],["-109.6614809","38.6341638"],["-109.6609767","38.633729"],["-109.6602849","38.6331864"],["-109.659231","38.6324137"],["-109.6544147","38.6289812"],["-109.6534609","38.6283002"],["-109.6494339","38.625445"],["-109.6477939","38.6243022"],["-109.6465568","38.6234852"],["-109.6456299","38.622917"],["-109.6435194","38.621752"],["-109.6405052","38.6203149"],["-109.6395295","38.6198764"],["-109.6350076","38.6178838"],["-109.6267453","38.6142201"],["-109.6260232","38.6139165"],["-109.6257918","38.6138343"],["-109.6256073","38.6137746"],["-109.6254179","38.6137239"],["-109.6250301","38.6136487"],["-109.6248237","38.6136155"],["-109.624609","38.6135948"],["-109.6244399","38.6135869"],["-109.624003","38.6135813"],["-109.6237391","38.6135927"],["-109.6234142","38.6136265"],["-109.6231146","38.6136801"],["-109.6225408","38.6138296"],["-109.6222739","38.6139213"],["-109.621045","38.6143963"],["-109.6200824","38.6147892"],["-109.6197139","38.6149345"],["-109.619342","38.6150748"],["-109.6191084","38.6151536"],["-109.6188438","38.6152352"],["-109.6185576","38.6153005"],["-109.6182225","38.6153649"],["-109.6178798","38.6154187"],["-109.6175272","38.6154649"],["-109.6171147","38.6154916"],["-109.6167132","38.6154967"],["-109.6163256","38.6154941"],["-109.6159205","38.6154703"],["-109.6155426","38.6154337"],["-109.6152758","38.6153981"],["-109.6148528","38.6153236"],["-109.6145173","38.6152361"],["-109.6143424","38.6151826"],["-109.6138503","38.6150158"],["-109.6135905","38.6149223"],["-109.6133372","38.6148185"],["-109.6131457","38.614734"],["-109.6129767","38.6146482"],["-109.6126456","38.6144612"],["-109.6124646","38.6143537"],["-109.6122928","38.6142498"],["-109.6108336","38.6131002"],["-109.6084745","38.6111736"],["-109.6083742","38.6110331"],["-109.6076928","38.6104853"],["-109.6074884","38.6103687"],["-109.6072752","38.610198"],["-109.6069018","38.6099021"],["-109.6048341","38.608205"],["-109.6044382","38.6078652"],["-109.602886","38.6066363"],["-109.6024973","38.6063707"],["-109.6021372","38.6061481"],["-109.6017073","38.6059241"],["-109.6013879","38.6057717"],["-109.6011613","38.605676"],["-109.6008984","38.6055703"],["-109.6006579","38.6054868"],["-109.6003874","38.6054022"],["-109.5997523","38.6052355"],["-109.5994471","38.6051692"],["-109.5991723","38.6051143"],["-109.5988007","38.6050692"],["-109.5984026","38.6050294"],["-109.5977306","38.6050014"],["-109.5974076","38.6049999"],["-109.5967912","38.6050289"],["-109.5962805","38.6050908"],["-109.5953348","38.605232"],["-109.5909679","38.6058836"],["-109.5902614","38.605984"],["-109.5874458","38.606416"],["-109.5868628","38.6064922"],["-109.5863768","38.6065408"],["-109.5858268","38.6065702"],["-109.584812","38.606607"],["-109.5844597","38.6066174"],["-109.5833324","38.6066486"],["-109.5824263","38.6066681"],["-109.5822022","38.6066672"],["-109.581972","38.6066555"],["-109.5817301","38.6066213"],["-109.5814905","38.6065796"],["-109.581223","38.6064994"],["-109.5806396","38.6062806"],["-109.5803342","38.6061319"],["-109.5800417","38.6059319"],["-109.5799787","38.6058357"],["-109.579776","38.6056041"],["-109.5764864","38.6022208"],["-109.5763089","38.6020942"],["-109.5757967","38.6015802"],["-109.5753425","38.6010886"],["-109.5751767","38.6009219"],["-109.5749538","38.6007058"],["-109.5746229","38.6003814"],["-109.5743241","38.6000693"],["-109.5734612","38.5991642"],["-109.5731114","38.5988229"],["-109.5728569","38.5985577"],["-109.5726689","38.5983622"],["-109.5723694","38.5980764"],["-109.5720432","38.59779"],["-109.5713283","38.5972687"],["-109.5653471","38.5930497"],["-109.5648681","38.5926998"],["-109.5645175","38.5924255"],["-109.5639366","38.5918649"],["-109.5628116","38.5907045"],["-109.5624011","38.5902488"],["-109.5616967","38.5895514"],["-109.5611574","38.589064"],["-109.5608523","38.5888157"],["-109.5600811","38.5881631"],["-109.5549094","38.5840667"],["-109.5527969","38.5823516"],["-109.5526319","38.5822015"],["-109.5524556","38.5820315"],["-109.5523137","38.5818853"],["-109.5521621","38.5817199"],["-109.5520284","38.5815627"],["-109.5518759","38.5813703"],["-109.5517393","38.5811832"],["-109.5516092","38.5809907"],["-109.5514825","38.5807854"],["-109.5514124","38.5806651"],["-109.5513224","38.580498"],["-109.5512869","38.5804271"],["-109.5512215","38.5802951"],["-109.5511828","38.5802074"],["-109.5510946","38.5799936"],["-109.5510345","38.5798335"],["-109.5509896","38.5797057"],["-109.5509179","38.5794648"],["-109.5508238","38.5790602"],["-109.5507787","38.5787853"],["-109.5507566","38.5785847"],["-109.5507415","38.5783496"],["-109.5507365","38.578083"],["-109.5507426","38.5768505"],["-109.5507432","38.5767158"],["-109.5507444","38.5765401"],["-109.5507461","38.5763685"],["-109.5507917","38.5732775"]]}};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':'#522A7A','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))); });